├── .github └── workflows │ └── build.yaml ├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── Makefile ├── OFL.txt ├── README.md ├── documentation ├── .DS_Store ├── 001.gif ├── 002.png ├── 003.png ├── DESCRIPTION.en_us.html └── images-license.txt ├── renovate.json ├── requirements-test.in ├── requirements-test.txt ├── requirements.in ├── requirements.txt ├── scripts ├── customize.py ├── index.html ├── read-config.py └── update-custom-filter.py └── sources ├── CustomFilter_GF_Latin.plist ├── TASAExplorer.glyphspackage ├── fontinfo.plist ├── glyphs │ ├── A_.glyph │ ├── A_E_.glyph │ ├── A_E_acute.glyph │ ├── A_acute.glyph │ ├── A_breve.glyph │ ├── A_caron.glyph │ ├── A_circumflex.glyph │ ├── A_dieresis.glyph │ ├── A_grave.glyph │ ├── A_hungarumlaut.glyph │ ├── A_macron.glyph │ ├── A_ogonek.glyph │ ├── A_ring.glyph │ ├── A_tilde.glyph │ ├── A_verticallineabove.glyph │ ├── B_.glyph │ ├── C_.glyph │ ├── C_acute.glyph │ ├── C_caron.glyph │ ├── C_cedilla.glyph │ ├── C_circumflex.glyph │ ├── C_dotaccent.glyph │ ├── D_.glyph │ ├── D_caron.glyph │ ├── D_croat.glyph │ ├── E_.glyph │ ├── E_acute.glyph │ ├── E_breve.glyph │ ├── E_caron.glyph │ ├── E_circumflex.glyph │ ├── E_dieresis.glyph │ ├── E_dotaccent.glyph │ ├── E_grave.glyph │ ├── E_hungarumlaut.glyph │ ├── E_macron.glyph │ ├── E_ng.glyph │ ├── E_ogonek.glyph │ ├── E_th.glyph │ ├── E_verticallineabove.glyph │ ├── F_.glyph │ ├── G_.glyph │ ├── G_breve.glyph │ ├── G_circumflex.glyph │ ├── G_commaaccent.glyph │ ├── G_dotaccent.glyph │ ├── G_ermandbls.glyph │ ├── H_.glyph │ ├── H_bar.glyph │ ├── H_circumflex.glyph │ ├── I_.glyph │ ├── I_J_.glyph │ ├── I_acute.glyph │ ├── I_breve.glyph │ ├── I_caron.glyph │ ├── I_circumflex.glyph │ ├── I_dieresis.glyph │ ├── I_dotaccent.glyph │ ├── I_grave.glyph │ ├── I_hungarumlaut.glyph │ ├── I_macron.glyph │ ├── I_ogonek.glyph │ ├── I_stroke.glyph │ ├── I_verticallineabove.glyph │ ├── J_.glyph │ ├── J_acute.glyph │ ├── J_circumflex.glyph │ ├── K_.glyph │ ├── K_commaaccent.glyph │ ├── L_.glyph │ ├── L_acute.glyph │ ├── L_caron.glyph │ ├── L_commaaccent.glyph │ ├── L_dot.glyph │ ├── L_slash.glyph │ ├── M_.glyph │ ├── M_acute.glyph │ ├── M_breve.glyph │ ├── M_caron.glyph │ ├── M_circumflex.glyph │ ├── M_grave.glyph │ ├── M_hungarumlaut.glyph │ ├── M_macron.glyph │ ├── M_verticallineabove.glyph │ ├── N_.glyph │ ├── N_acute.glyph │ ├── N_breve.glyph │ ├── N_caron.glyph │ ├── N_circumflex.glyph │ ├── N_commaaccent.glyph │ ├── N_grave.glyph │ ├── N_hungarumlaut.glyph │ ├── N_macron.glyph │ ├── N_mod.glyph │ ├── N_tilde.glyph │ ├── N_verticallineabove.glyph │ ├── O_.glyph │ ├── O_E_.glyph │ ├── O_acute.glyph │ ├── O_acutedotaboveright.glyph │ ├── O_breve.glyph │ ├── O_brevedotaboveright.glyph │ ├── O_caron.glyph │ ├── O_carondotaboveright.glyph │ ├── O_circumflex.glyph │ ├── O_circumflexdotaboveright.glyph │ ├── O_dieresis.glyph │ ├── O_dotaboveright.glyph │ ├── O_grave.glyph │ ├── O_gravedotaboveright.glyph │ ├── O_hm.glyph │ ├── O_hungarumlaut.glyph │ ├── O_hungarumlautdotaboveright.glyph │ ├── O_macron.glyph │ ├── O_macrondotaboveright.glyph │ ├── O_mega.glyph │ ├── O_slash.glyph │ ├── O_slashacute.glyph │ ├── O_tilde.glyph │ ├── O_verticallineabove.glyph │ ├── O_verticallineabovedotaboveright.glyph │ ├── P_.glyph │ ├── Q_.glyph │ ├── R_.glyph │ ├── R_acute.glyph │ ├── R_caron.glyph │ ├── R_commaaccent.glyph │ ├── R_linebelow.glyph │ ├── S_.glyph │ ├── S_acute.glyph │ ├── S_caron.glyph │ ├── S_cedilla.glyph │ ├── S_chwa.glyph │ ├── S_circumflex.glyph │ ├── S_commaaccent.glyph │ ├── T_.glyph │ ├── T_bar.glyph │ ├── T_caron.glyph │ ├── T_cedilla.glyph │ ├── T_commaaccent.glyph │ ├── T_horn.glyph │ ├── U_.glyph │ ├── U_acute.glyph │ ├── U_bar.glyph │ ├── U_breve.glyph │ ├── U_caron.glyph │ ├── U_circumflex.glyph │ ├── U_dieresis.glyph │ ├── U_grave.glyph │ ├── U_hungarumlaut.glyph │ ├── U_macron.glyph │ ├── U_ogonek.glyph │ ├── U_ring.glyph │ ├── U_tilde.glyph │ ├── U_verticallineabove.glyph │ ├── V_.glyph │ ├── W_.glyph │ ├── W_acute.glyph │ ├── W_circumflex.glyph │ ├── W_dieresis.glyph │ ├── W_grave.glyph │ ├── X_.glyph │ ├── Y_.glyph │ ├── Y_acute.glyph │ ├── Y_circumflex.glyph │ ├── Y_dieresis.glyph │ ├── Y_grave.glyph │ ├── Z_.glyph │ ├── Z_acute.glyph │ ├── Z_caron.glyph │ ├── Z_dotaccent.glyph │ ├── _corner.sharp.S_.glyph │ ├── _corner.sharp.glyph │ ├── _notdef.glyph │ ├── _part.asterisk.glyph │ ├── _part.blackC_ircle.glyph │ ├── _part.circle.glyph │ ├── _part.dotted.glyph │ ├── _part.percent.glyph │ ├── _part.section.glyph │ ├── a.glyph │ ├── aacute.glyph │ ├── abreve.glyph │ ├── acaron.glyph │ ├── acircumflex.glyph │ ├── acute.glyph │ ├── acutecomb.case.glyph │ ├── acutecomb.glyph │ ├── adieresis.glyph │ ├── ae.glyph │ ├── aeacute.glyph │ ├── agrave.glyph │ ├── ahungarumlaut.glyph │ ├── amacron.glyph │ ├── ampersand.glyph │ ├── anticlockwiseO_penC_ircleA_rrow.glyph │ ├── aogonek.glyph │ ├── approxequal.glyph │ ├── aring.glyph │ ├── asciicircum.glyph │ ├── asciitilde.glyph │ ├── asterisk.glyph │ ├── at.case.glyph │ ├── at.glyph │ ├── atilde.glyph │ ├── averticallineabove.glyph │ ├── b.glyph │ ├── backslash.glyph │ ├── bar.glyph │ ├── blackC_ircle.glyph │ ├── blackD_iamond.glyph │ ├── blackM_ediumD_iamond.glyph │ ├── blackS_mallS_quare.glyph │ ├── blackS_quare.glyph │ ├── braceleft.case.glyph │ ├── braceleft.glyph │ ├── braceright.case.glyph │ ├── braceright.glyph │ ├── bracketleft.case.glyph │ ├── bracketleft.glyph │ ├── bracketright.case.glyph │ ├── bracketright.glyph │ ├── breve.glyph │ ├── brevecomb.case.glyph │ ├── brevecomb.case.narrow.glyph │ ├── brevecomb.glyph │ ├── brevecomb.narrow.glyph │ ├── brokenbar.glyph │ ├── bullet.glyph │ ├── c.glyph │ ├── cacute.glyph │ ├── caron.glyph │ ├── caroncomb.alt.glyph │ ├── caroncomb.case.glyph │ ├── caroncomb.case.narrow.glyph │ ├── caroncomb.glyph │ ├── caroncomb.narrow.glyph │ ├── ccaron.glyph │ ├── ccedilla.glyph │ ├── ccircumflex.glyph │ ├── cdotaccent.glyph │ ├── cedilla.glyph │ ├── cedillacomb.glyph │ ├── cent.glyph │ ├── circumflex.glyph │ ├── circumflexcomb.case.glyph │ ├── circumflexcomb.case.narrow.glyph │ ├── circumflexcomb.glyph │ ├── circumflexcomb.narrow.glyph │ ├── clockwiseO_penC_ircleA_rrow.glyph │ ├── colon.glyph │ ├── comma.glyph │ ├── commaaccentcomb.glyph │ ├── commaturnedabovecomb.glyph │ ├── copyright.glyph │ ├── currency.glyph │ ├── d.glyph │ ├── dagger.glyph │ ├── daggerdbl.glyph │ ├── dcaron.glyph │ ├── dcroat.glyph │ ├── degree.glyph │ ├── dieresis.glyph │ ├── dieresiscomb.case.glyph │ ├── dieresiscomb.case.narrow.glyph │ ├── dieresiscomb.glyph │ ├── dieresiscomb.narrow.glyph │ ├── divide.glyph │ ├── dollar.glyph │ ├── dotaboverightcomb.glyph │ ├── dotaccent.glyph │ ├── dotaccentcomb.case.glyph │ ├── dotaccentcomb.glyph │ ├── dottedC_ircle.glyph │ ├── downA_rrow.glyph │ ├── downB_lackT_riangle.glyph │ ├── downW_hiteT_riangle.glyph │ ├── e.glyph │ ├── eacute.glyph │ ├── ebreve.glyph │ ├── ecaron.glyph │ ├── ecircumflex.glyph │ ├── edieresis.glyph │ ├── edotaccent.glyph │ ├── egrave.glyph │ ├── ehungarumlaut.glyph │ ├── eight.blackC_ircled.glyph │ ├── eight.circled.glyph │ ├── eight.dnom.glyph │ ├── eight.glyph │ ├── eight.numr.glyph │ ├── eight.tf.glyph │ ├── eightinferior.glyph │ ├── eightsuperior.glyph │ ├── ellipsis.glyph │ ├── emacron.glyph │ ├── emdash.glyph │ ├── emptyset.glyph │ ├── emspace.glyph │ ├── endash.glyph │ ├── eng.glyph │ ├── enspace.glyph │ ├── eogonek.glyph │ ├── equal.glyph │ ├── eth.glyph │ ├── euro.glyph │ ├── everticallineabove.glyph │ ├── exclam.glyph │ ├── exclamdown.glyph │ ├── f.glyph │ ├── figurespace.glyph │ ├── five.blackC_ircled.glyph │ ├── five.circled.glyph │ ├── five.dnom.glyph │ ├── five.glyph │ ├── five.numr.glyph │ ├── five.tf.glyph │ ├── fiveeighths.glyph │ ├── fiveinferior.glyph │ ├── fivesixths.glyph │ ├── fivesuperior.glyph │ ├── four.blackC_ircled.glyph │ ├── four.circled.glyph │ ├── four.dnom.glyph │ ├── four.glyph │ ├── four.numr.glyph │ ├── four.tf.glyph │ ├── fourfifths.glyph │ ├── fourinferior.glyph │ ├── foursuperior.glyph │ ├── fourthtonechinese.glyph │ ├── fraction.glyph │ ├── g.glyph │ ├── gbreve.glyph │ ├── gcircumflex.glyph │ ├── gcommaaccent.glyph │ ├── gdotaccent.glyph │ ├── germandbls.glyph │ ├── grave.glyph │ ├── gravecomb.case.glyph │ ├── gravecomb.glyph │ ├── greater.glyph │ ├── greaterequal.glyph │ ├── greateroverequal.glyph │ ├── guillemetleft.glyph │ ├── guillemetright.glyph │ ├── guilsinglleft.glyph │ ├── guilsinglright.glyph │ ├── h.glyph │ ├── hairspace.glyph │ ├── hbar.glyph │ ├── hcircumflex.glyph │ ├── hungarumlaut.glyph │ ├── hungarumlautcomb.case.glyph │ ├── hungarumlautcomb.case.narrow.glyph │ ├── hungarumlautcomb.glyph │ ├── hungarumlautcomb.narrow.glyph │ ├── hyphen.glyph │ ├── i.glyph │ ├── iacute.glyph │ ├── ibreve.glyph │ ├── icaron.glyph │ ├── icircumflex.glyph │ ├── idieresis.glyph │ ├── idotaccent.glyph │ ├── idotless.glyph │ ├── igrave.glyph │ ├── ihungarumlaut.glyph │ ├── ij.glyph │ ├── imacron.glyph │ ├── increment.glyph │ ├── infinity.glyph │ ├── integral.glyph │ ├── iogonek.glyph │ ├── istroke.glyph │ ├── iverticallineabove.glyph │ ├── j.glyph │ ├── jacute.glyph │ ├── jcircumflex.glyph │ ├── jdotless.glyph │ ├── k.glyph │ ├── kcommaaccent.glyph │ ├── l.glyph │ ├── lacute.glyph │ ├── lcaron.glyph │ ├── lcommaaccent.glyph │ ├── ldot.glyph │ ├── leftA_rrow.glyph │ ├── leftB_lackT_riangle.glyph │ ├── leftH_ookA_rrow.glyph │ ├── leftL_ongA_rrow.glyph │ ├── leftR_ightA_rrow.glyph │ ├── leftW_hiteT_riangle.glyph │ ├── less.glyph │ ├── lessequal.glyph │ ├── lessoverequal.glyph │ ├── logicalnot.glyph │ ├── lozenge.glyph │ ├── lslash.glyph │ ├── m.glyph │ ├── macron.glyph │ ├── macronbelowcomb.glyph │ ├── macroncomb.case.glyph │ ├── macroncomb.case.narrow.glyph │ ├── macroncomb.glyph │ ├── macroncomb.narrow.glyph │ ├── macute.glyph │ ├── mbreve.glyph │ ├── mcaron.glyph │ ├── mcircumflex.glyph │ ├── mediumB_lackC_ircle.glyph │ ├── mediumB_lackS_quare.glyph │ ├── mediumW_hiteC_ircle.glyph │ ├── mediumW_hiteS_quare.glyph │ ├── mgrave.glyph │ ├── mhungarumlaut.glyph │ ├── micro.glyph │ ├── minus.glyph │ ├── minute.glyph │ ├── mmacron.glyph │ ├── mu.glyph │ ├── multiply.glyph │ ├── mverticallineabove.glyph │ ├── n.glyph │ ├── nacute.glyph │ ├── nbreve.glyph │ ├── nbspace.glyph │ ├── ncaron.glyph │ ├── ncircumflex.glyph │ ├── ncommaaccent.glyph │ ├── ngrave.glyph │ ├── nhungarumlaut.glyph │ ├── nine.blackC_ircled.glyph │ ├── nine.circled.glyph │ ├── nine.dnom.glyph │ ├── nine.glyph │ ├── nine.numr.glyph │ ├── nine.tf.glyph │ ├── nineinferior.glyph │ ├── ninesuperior.glyph │ ├── nmacron.glyph │ ├── nmod.glyph │ ├── northE_astA_rrow.glyph │ ├── northW_estA_rrow.glyph │ ├── notequal.glyph │ ├── ntilde.glyph │ ├── numbersign.glyph │ ├── nverticallineabove.glyph │ ├── o.glyph │ ├── oacute.glyph │ ├── oacutedotaboveright.glyph │ ├── obreve.glyph │ ├── obrevedotaboveright.glyph │ ├── ocaron.glyph │ ├── ocarondotaboveright.glyph │ ├── ocircumflex.glyph │ ├── ocircumflexdotaboveright.glyph │ ├── odieresis.glyph │ ├── odotaboveright.glyph │ ├── oe.glyph │ ├── ogonek.glyph │ ├── ogonekcomb.glyph │ ├── ograve.glyph │ ├── ogravedotaboveright.glyph │ ├── ohungarumlaut.glyph │ ├── ohungarumlautdotaboveright.glyph │ ├── omacron.glyph │ ├── omacrondotaboveright.glyph │ ├── one.blackC_ircled.glyph │ ├── one.circled.glyph │ ├── one.dnom.glyph │ ├── one.glyph │ ├── one.numr.glyph │ ├── one.tf.glyph │ ├── oneeighth.glyph │ ├── onefifth.glyph │ ├── onefraction.glyph │ ├── onehalf.glyph │ ├── oneinferior.glyph │ ├── oneninth.glyph │ ├── onequarter.glyph │ ├── oneseventh.glyph │ ├── onesixth.glyph │ ├── onesuperior.glyph │ ├── onetenth.glyph │ ├── onethird.glyph │ ├── ordfeminine.glyph │ ├── ordmasculine.glyph │ ├── oslash.glyph │ ├── oslashacute.glyph │ ├── otilde.glyph │ ├── overticallineabove.glyph │ ├── overticallineabovedotaboveright.glyph │ ├── p.glyph │ ├── paragraph.glyph │ ├── parenleft.case.glyph │ ├── parenleft.glyph │ ├── parenright.case.glyph │ ├── parenright.glyph │ ├── partialdiff.glyph │ ├── percent.glyph │ ├── period.glyph │ ├── periodcentered.glyph │ ├── periodcentered.loclC_A_T_.case.glyph │ ├── periodcentered.loclC_A_T_.glyph │ ├── perthousand.glyph │ ├── pi.glyph │ ├── plus.glyph │ ├── plusminus.glyph │ ├── plussuperior.glyph │ ├── product.glyph │ ├── q.glyph │ ├── question.glyph │ ├── questiondown.glyph │ ├── quotedbl.glyph │ ├── quotedblbase.glyph │ ├── quotedblleft.glyph │ ├── quotedblright.glyph │ ├── quoteleft.glyph │ ├── quoteright.glyph │ ├── quotesinglbase.glyph │ ├── quotesingle.glyph │ ├── r.glyph │ ├── racute.glyph │ ├── radical.glyph │ ├── rcaron.glyph │ ├── rcommaaccent.glyph │ ├── registered.glyph │ ├── rightA_rrow.glyph │ ├── rightB_lackT_riangle.glyph │ ├── rightH_ookA_rrow.glyph │ ├── rightW_hiteT_riangle.glyph │ ├── rightlongA_rrow.glyph │ ├── ring.glyph │ ├── ringcomb.case.glyph │ ├── ringcomb.glyph │ ├── rlinebelow.glyph │ ├── s.glyph │ ├── sacute.glyph │ ├── scaron.glyph │ ├── scedilla.glyph │ ├── schwa.glyph │ ├── scircumflex.glyph │ ├── scommaaccent.glyph │ ├── second.glyph │ ├── secondtonechinese.glyph │ ├── section.glyph │ ├── semicolon.glyph │ ├── seven.blackC_ircled.glyph │ ├── seven.circled.glyph │ ├── seven.dnom.glyph │ ├── seven.glyph │ ├── seven.numr.glyph │ ├── seven.tf.glyph │ ├── seveneighths.glyph │ ├── seveninferior.glyph │ ├── sevensuperior.glyph │ ├── six.blackC_ircled.glyph │ ├── six.circled.glyph │ ├── six.dnom.glyph │ ├── six.glyph │ ├── six.numr.glyph │ ├── six.tf.glyph │ ├── sixinferior.glyph │ ├── sixsuperior.glyph │ ├── slash.glyph │ ├── slashlongcomb.case.glyph │ ├── slashlongcomb.glyph │ ├── southE_astA_rrow.glyph │ ├── southW_estA_rrow.glyph │ ├── space.glyph │ ├── sterling.glyph │ ├── summation.glyph │ ├── t.glyph │ ├── tbar.glyph │ ├── tcaron.glyph │ ├── tcedilla.glyph │ ├── tcommaaccent.glyph │ ├── thinspace.glyph │ ├── thorn.glyph │ ├── three.blackC_ircled.glyph │ ├── three.circled.glyph │ ├── three.dnom.glyph │ ├── three.glyph │ ├── three.numr.glyph │ ├── three.tf.glyph │ ├── threeeighths.glyph │ ├── threefifths.glyph │ ├── threeinferior.glyph │ ├── threequarters.glyph │ ├── threesuperior.glyph │ ├── tilde.glyph │ ├── tildecomb.case.glyph │ ├── tildecomb.glyph │ ├── trademark.glyph │ ├── two.blackC_ircled.glyph │ ├── two.circled.glyph │ ├── two.dnom.glyph │ ├── two.glyph │ ├── two.numr.glyph │ ├── two.tf.glyph │ ├── twofifths.glyph │ ├── twoinferior.glyph │ ├── twosuperior.glyph │ ├── twothirds.glyph │ ├── u.glyph │ ├── uacute.glyph │ ├── ubar.glyph │ ├── ubreve.glyph │ ├── ucaron.glyph │ ├── ucircumflex.glyph │ ├── udieresis.glyph │ ├── ugrave.glyph │ ├── uhungarumlaut.glyph │ ├── umacron.glyph │ ├── underscore.glyph │ ├── uogonek.glyph │ ├── upA_rrow.glyph │ ├── upB_lackT_riangle.glyph │ ├── upD_ownA_rrow.glyph │ ├── upW_hiteT_riangle.glyph │ ├── uring.glyph │ ├── utilde.glyph │ ├── uverticallineabove.glyph │ ├── v.glyph │ ├── verticallineabovecomb.case.glyph │ ├── verticallineabovecomb.glyph │ ├── w.glyph │ ├── wacute.glyph │ ├── wcircumflex.glyph │ ├── wdieresis.glyph │ ├── wgrave.glyph │ ├── whiteC_ircle.glyph │ ├── whiteD_iamond.glyph │ ├── whiteM_ediumD_iamond.glyph │ ├── whiteS_mallS_quare.glyph │ ├── whiteS_quare.glyph │ ├── x.glyph │ ├── y.glyph │ ├── yacute.glyph │ ├── ycircumflex.glyph │ ├── ydieresis.glyph │ ├── yen.glyph │ ├── ygrave.glyph │ ├── z.glyph │ ├── zacute.glyph │ ├── zcaron.glyph │ ├── zdotaccent.glyph │ ├── zero.blackC_ircled.glyph │ ├── zero.blackC_ircled.zero.glyph │ ├── zero.circled.glyph │ ├── zero.circled.zero.glyph │ ├── zero.dnom.glyph │ ├── zero.dnom.zero.glyph │ ├── zero.glyph │ ├── zero.numr.glyph │ ├── zero.numr.zero.glyph │ ├── zero.tf.glyph │ ├── zero.tf.zero.glyph │ ├── zero.zero.glyph │ ├── zeroinferior.glyph │ ├── zeroinferior.zero.glyph │ ├── zerosuperior.glyph │ ├── zerosuperior.zero.glyph │ ├── zerothird.glyph │ └── zerothird.zero.glyph └── order.plist ├── TASAOrbiter.glyphspackage ├── fontinfo.plist ├── glyphs │ ├── A_.glyph │ ├── A_E_.glyph │ ├── A_E_acute.glyph │ ├── A_acute.glyph │ ├── A_breve.glyph │ ├── A_caron.glyph │ ├── A_circumflex.glyph │ ├── A_dieresis.glyph │ ├── A_grave.glyph │ ├── A_hungarumlaut.glyph │ ├── A_macron.glyph │ ├── A_ogonek.glyph │ ├── A_ring.glyph │ ├── A_tilde.glyph │ ├── A_verticallineabove.glyph │ ├── B_.glyph │ ├── C_.glyph │ ├── C_acute.glyph │ ├── C_caron.glyph │ ├── C_cedilla.glyph │ ├── C_circumflex.glyph │ ├── C_dotaccent.glyph │ ├── D_.glyph │ ├── D_caron.glyph │ ├── D_croat.glyph │ ├── E_.glyph │ ├── E_acute.glyph │ ├── E_breve.glyph │ ├── E_caron.glyph │ ├── E_circumflex.glyph │ ├── E_dieresis.glyph │ ├── E_dotaccent.glyph │ ├── E_grave.glyph │ ├── E_hungarumlaut.glyph │ ├── E_macron.glyph │ ├── E_ng.glyph │ ├── E_ogonek.glyph │ ├── E_th.glyph │ ├── E_verticallineabove.glyph │ ├── F_.glyph │ ├── G_.glyph │ ├── G_breve.glyph │ ├── G_circumflex.glyph │ ├── G_commaaccent.glyph │ ├── G_dotaccent.glyph │ ├── G_ermandbls.glyph │ ├── H_.glyph │ ├── H_bar.glyph │ ├── H_circumflex.glyph │ ├── I_.glyph │ ├── I_.ss01.glyph │ ├── I_J_.glyph │ ├── I_J_.ss01.glyph │ ├── I_acute.glyph │ ├── I_acute.ss01.glyph │ ├── I_breve.glyph │ ├── I_breve.ss01.glyph │ ├── I_caron.glyph │ ├── I_caron.ss01.glyph │ ├── I_circumflex.glyph │ ├── I_circumflex.ss01.glyph │ ├── I_dieresis.glyph │ ├── I_dieresis.ss01.glyph │ ├── I_dotaccent.glyph │ ├── I_dotaccent.ss01.glyph │ ├── I_grave.glyph │ ├── I_grave.ss01.glyph │ ├── I_hungarumlaut.glyph │ ├── I_hungarumlaut.ss01.glyph │ ├── I_macron.glyph │ ├── I_macron.ss01.glyph │ ├── I_ogonek.glyph │ ├── I_ogonek.ss01.glyph │ ├── I_stroke.glyph │ ├── I_stroke.ss01.glyph │ ├── I_verticallineabove.glyph │ ├── I_verticallineabove.ss01.glyph │ ├── J_.glyph │ ├── J_acute.glyph │ ├── J_circumflex.glyph │ ├── K_.glyph │ ├── K_commaaccent.glyph │ ├── L_.glyph │ ├── L_acute.glyph │ ├── L_caron.glyph │ ├── L_commaaccent.glyph │ ├── L_dot.glyph │ ├── L_slash.glyph │ ├── M_.glyph │ ├── M_acute.glyph │ ├── M_breve.glyph │ ├── M_caron.glyph │ ├── M_circumflex.glyph │ ├── M_grave.glyph │ ├── M_hungarumlaut.glyph │ ├── M_macron.glyph │ ├── M_verticallineabove.glyph │ ├── N_.glyph │ ├── N_acute.glyph │ ├── N_breve.glyph │ ├── N_caron.glyph │ ├── N_circumflex.glyph │ ├── N_commaaccent.glyph │ ├── N_grave.glyph │ ├── N_hungarumlaut.glyph │ ├── N_macron.glyph │ ├── N_mod.glyph │ ├── N_tilde.glyph │ ├── N_verticallineabove.glyph │ ├── O_.glyph │ ├── O_E_.glyph │ ├── O_acute.glyph │ ├── O_acutedotaboveright.glyph │ ├── O_breve.glyph │ ├── O_brevedotaboveright.glyph │ ├── O_caron.glyph │ ├── O_carondotaboveright.glyph │ ├── O_circumflex.glyph │ ├── O_circumflexdotaboveright.glyph │ ├── O_dieresis.glyph │ ├── O_dotaboveright.glyph │ ├── O_grave.glyph │ ├── O_gravedotaboveright.glyph │ ├── O_hm.glyph │ ├── O_hungarumlaut.glyph │ ├── O_hungarumlautdotaboveright.glyph │ ├── O_macron.glyph │ ├── O_macrondotaboveright.glyph │ ├── O_mega.glyph │ ├── O_slash.glyph │ ├── O_slashacute.glyph │ ├── O_tilde.glyph │ ├── O_verticallineabove.glyph │ ├── O_verticallineabovedotaboveright.glyph │ ├── P_.glyph │ ├── Q_.glyph │ ├── R_.glyph │ ├── R_acute.glyph │ ├── R_caron.glyph │ ├── R_commaaccent.glyph │ ├── R_linebelow.glyph │ ├── S_.glyph │ ├── S_acute.glyph │ ├── S_caron.glyph │ ├── S_cedilla.glyph │ ├── S_chwa.glyph │ ├── S_circumflex.glyph │ ├── S_commaaccent.glyph │ ├── T_.glyph │ ├── T_bar.glyph │ ├── T_caron.glyph │ ├── T_cedilla.glyph │ ├── T_commaaccent.glyph │ ├── T_horn.glyph │ ├── U_.glyph │ ├── U_acute.glyph │ ├── U_bar.glyph │ ├── U_breve.glyph │ ├── U_caron.glyph │ ├── U_circumflex.glyph │ ├── U_dieresis.glyph │ ├── U_grave.glyph │ ├── U_hungarumlaut.glyph │ ├── U_macron.glyph │ ├── U_ogonek.glyph │ ├── U_ring.glyph │ ├── U_tilde.glyph │ ├── U_verticallineabove.glyph │ ├── V_.glyph │ ├── W_.glyph │ ├── W_acute.glyph │ ├── W_circumflex.glyph │ ├── W_dieresis.glyph │ ├── W_grave.glyph │ ├── X_.glyph │ ├── Y_.glyph │ ├── Y_acute.glyph │ ├── Y_circumflex.glyph │ ├── Y_dieresis.glyph │ ├── Y_grave.glyph │ ├── Z_.glyph │ ├── Z_acute.glyph │ ├── Z_caron.glyph │ ├── Z_dotaccent.glyph │ ├── _corner.flat.glyph │ ├── _corner.sharp.glyph │ ├── _notdef.glyph │ ├── _part.asterisk.glyph │ ├── _part.blackC_ircle.glyph │ ├── _part.circle.glyph │ ├── _part.dotted.glyph │ ├── _part.percent.glyph │ ├── _part.section.glyph │ ├── a.glyph │ ├── aacute.glyph │ ├── abreve.glyph │ ├── acaron.glyph │ ├── acircumflex.glyph │ ├── acute.glyph │ ├── acutecomb.case.glyph │ ├── acutecomb.glyph │ ├── adieresis.glyph │ ├── ae.glyph │ ├── aeacute.glyph │ ├── agrave.glyph │ ├── ahungarumlaut.glyph │ ├── amacron.glyph │ ├── ampersand.glyph │ ├── anticlockwiseO_penC_ircleA_rrow.glyph │ ├── aogonek.glyph │ ├── approxequal.glyph │ ├── aring.glyph │ ├── asciicircum.glyph │ ├── asciitilde.glyph │ ├── asterisk.glyph │ ├── at.case.glyph │ ├── at.glyph │ ├── atilde.glyph │ ├── averticallineabove.glyph │ ├── b.glyph │ ├── backslash.glyph │ ├── bar.glyph │ ├── blackC_ircle.glyph │ ├── blackD_iamond.glyph │ ├── blackM_ediumD_iamond.glyph │ ├── blackS_mallS_quare.glyph │ ├── blackS_quare.glyph │ ├── braceleft.case.glyph │ ├── braceleft.glyph │ ├── braceright.case.glyph │ ├── braceright.glyph │ ├── bracketleft.case.glyph │ ├── bracketleft.glyph │ ├── bracketright.case.glyph │ ├── bracketright.glyph │ ├── breve.glyph │ ├── brevecomb.case.glyph │ ├── brevecomb.case.narrow.glyph │ ├── brevecomb.glyph │ ├── brevecomb.narrow.glyph │ ├── brokenbar.glyph │ ├── bullet.glyph │ ├── c.glyph │ ├── cacute.glyph │ ├── caron.glyph │ ├── caroncomb.alt.glyph │ ├── caroncomb.case.glyph │ ├── caroncomb.case.narrow.glyph │ ├── caroncomb.glyph │ ├── caroncomb.narrow.glyph │ ├── ccaron.glyph │ ├── ccedilla.glyph │ ├── ccircumflex.glyph │ ├── cdotaccent.glyph │ ├── cedilla.glyph │ ├── cedillacomb.glyph │ ├── cent.glyph │ ├── circumflex.glyph │ ├── circumflexcomb.case.glyph │ ├── circumflexcomb.case.narrow.glyph │ ├── circumflexcomb.glyph │ ├── circumflexcomb.narrow.glyph │ ├── clockwiseO_penC_ircleA_rrow.glyph │ ├── colon.glyph │ ├── comma.glyph │ ├── commaaccentcomb.glyph │ ├── commaturnedabovecomb.glyph │ ├── copyright.glyph │ ├── currency.glyph │ ├── d.glyph │ ├── dagger.glyph │ ├── daggerdbl.glyph │ ├── dcaron.glyph │ ├── dcroat.glyph │ ├── degree.glyph │ ├── dieresis.glyph │ ├── dieresiscomb.case.glyph │ ├── dieresiscomb.case.narrow.glyph │ ├── dieresiscomb.glyph │ ├── dieresiscomb.narrow.glyph │ ├── divide.glyph │ ├── dollar.glyph │ ├── dotaboverightcomb.glyph │ ├── dotaccent.glyph │ ├── dotaccentcomb.case.glyph │ ├── dotaccentcomb.glyph │ ├── dottedC_ircle.glyph │ ├── downA_rrow.glyph │ ├── downB_lackT_riangle.glyph │ ├── downW_hiteT_riangle.glyph │ ├── e.glyph │ ├── eacute.glyph │ ├── ebreve.glyph │ ├── ecaron.glyph │ ├── ecircumflex.glyph │ ├── edieresis.glyph │ ├── edotaccent.glyph │ ├── egrave.glyph │ ├── ehungarumlaut.glyph │ ├── eight.blackC_ircled.glyph │ ├── eight.circled.glyph │ ├── eight.dnom.glyph │ ├── eight.glyph │ ├── eight.numr.glyph │ ├── eight.tf.glyph │ ├── eightinferior.glyph │ ├── eightsuperior.glyph │ ├── ellipsis.glyph │ ├── emacron.glyph │ ├── emdash.glyph │ ├── emptyset.glyph │ ├── emspace.glyph │ ├── endash.glyph │ ├── eng.glyph │ ├── enspace.glyph │ ├── eogonek.glyph │ ├── equal.glyph │ ├── eth.glyph │ ├── euro.glyph │ ├── everticallineabove.glyph │ ├── exclam.glyph │ ├── exclamdown.glyph │ ├── f.glyph │ ├── figurespace.glyph │ ├── five.blackC_ircled.glyph │ ├── five.circled.glyph │ ├── five.dnom.glyph │ ├── five.glyph │ ├── five.numr.glyph │ ├── five.tf.glyph │ ├── fiveeighths.glyph │ ├── fiveinferior.glyph │ ├── fivesixths.glyph │ ├── fivesuperior.glyph │ ├── four.blackC_ircled.glyph │ ├── four.circled.glyph │ ├── four.dnom.glyph │ ├── four.glyph │ ├── four.numr.glyph │ ├── four.tf.glyph │ ├── fourfifths.glyph │ ├── fourinferior.glyph │ ├── foursuperior.glyph │ ├── fourthtonechinese.glyph │ ├── fraction.glyph │ ├── g.glyph │ ├── gbreve.glyph │ ├── gcircumflex.glyph │ ├── gcommaaccent.glyph │ ├── gdotaccent.glyph │ ├── germandbls.glyph │ ├── grave.glyph │ ├── gravecomb.case.glyph │ ├── gravecomb.glyph │ ├── greater.glyph │ ├── greaterequal.glyph │ ├── greateroverequal.glyph │ ├── guillemetleft.glyph │ ├── guillemetright.glyph │ ├── guilsinglleft.glyph │ ├── guilsinglright.glyph │ ├── h.glyph │ ├── hairspace.glyph │ ├── hbar.glyph │ ├── hcircumflex.glyph │ ├── hungarumlaut.glyph │ ├── hungarumlautcomb.case.glyph │ ├── hungarumlautcomb.case.narrow.glyph │ ├── hungarumlautcomb.glyph │ ├── hungarumlautcomb.narrow.glyph │ ├── hyphen.glyph │ ├── i.glyph │ ├── i.ss01.glyph │ ├── iacute.glyph │ ├── iacute.ss01.glyph │ ├── ibreve.glyph │ ├── ibreve.ss01.glyph │ ├── icaron.glyph │ ├── icaron.ss01.glyph │ ├── icircumflex.glyph │ ├── icircumflex.ss01.glyph │ ├── idieresis.glyph │ ├── idieresis.ss01.glyph │ ├── idotaccent.glyph │ ├── idotaccent.ss01.glyph │ ├── idotless.glyph │ ├── idotless.ss01.glyph │ ├── igrave.glyph │ ├── igrave.ss01.glyph │ ├── ihungarumlaut.glyph │ ├── ihungarumlaut.ss01.glyph │ ├── ij.glyph │ ├── ij.ss01.glyph │ ├── imacron.glyph │ ├── imacron.ss01.glyph │ ├── increment.glyph │ ├── infinity.glyph │ ├── integral.glyph │ ├── iogonek.glyph │ ├── iogonek.ss01.glyph │ ├── istroke.glyph │ ├── istroke.ss01.glyph │ ├── iverticallineabove.glyph │ ├── iverticallineabove.ss01.glyph │ ├── j.glyph │ ├── j.ss01.glyph │ ├── jacute.glyph │ ├── jacute.ss01.glyph │ ├── jcircumflex.glyph │ ├── jcircumflex.ss01.glyph │ ├── jdotless.glyph │ ├── jdotless.ss01.glyph │ ├── k.glyph │ ├── kcommaaccent.glyph │ ├── l.glyph │ ├── l.ss01.glyph │ ├── lacute.glyph │ ├── lacute.ss01.glyph │ ├── lcaron.glyph │ ├── lcaron.ss01.glyph │ ├── lcommaaccent.glyph │ ├── lcommaaccent.ss01.glyph │ ├── ldot.glyph │ ├── ldot.ss01.glyph │ ├── leftA_rrow.glyph │ ├── leftB_lackT_riangle.glyph │ ├── leftH_ookA_rrow.glyph │ ├── leftL_ongA_rrow.glyph │ ├── leftR_ightA_rrow.glyph │ ├── leftW_hiteT_riangle.glyph │ ├── less.glyph │ ├── lessequal.glyph │ ├── lessoverequal.glyph │ ├── logicalnot.glyph │ ├── lozenge.glyph │ ├── lslash.glyph │ ├── lslash.ss01.glyph │ ├── m.glyph │ ├── macron.glyph │ ├── macronbelowcomb.glyph │ ├── macroncomb.case.glyph │ ├── macroncomb.case.narrow.glyph │ ├── macroncomb.glyph │ ├── macroncomb.narrow.glyph │ ├── macute.glyph │ ├── mbreve.glyph │ ├── mcaron.glyph │ ├── mcircumflex.glyph │ ├── mediumB_lackC_ircle.glyph │ ├── mediumB_lackS_quare.glyph │ ├── mediumW_hiteC_ircle.glyph │ ├── mediumW_hiteS_quare.glyph │ ├── mgrave.glyph │ ├── mhungarumlaut.glyph │ ├── micro.glyph │ ├── minus.glyph │ ├── minute.glyph │ ├── mmacron.glyph │ ├── mu.glyph │ ├── multiply.glyph │ ├── mverticallineabove.glyph │ ├── n.glyph │ ├── nacute.glyph │ ├── nbreve.glyph │ ├── nbspace.glyph │ ├── ncaron.glyph │ ├── ncircumflex.glyph │ ├── ncommaaccent.glyph │ ├── ngrave.glyph │ ├── nhungarumlaut.glyph │ ├── nine.blackC_ircled.glyph │ ├── nine.circled.glyph │ ├── nine.dnom.glyph │ ├── nine.glyph │ ├── nine.numr.glyph │ ├── nine.tf.glyph │ ├── nineinferior.glyph │ ├── ninesuperior.glyph │ ├── nmacron.glyph │ ├── nmod.glyph │ ├── northE_astA_rrow.glyph │ ├── northW_estA_rrow.glyph │ ├── notequal.glyph │ ├── ntilde.glyph │ ├── numbersign.glyph │ ├── nverticallineabove.glyph │ ├── o.glyph │ ├── oacute.glyph │ ├── oacutedotaboveright.glyph │ ├── obreve.glyph │ ├── obrevedotaboveright.glyph │ ├── ocaron.glyph │ ├── ocarondotaboveright.glyph │ ├── ocircumflex.glyph │ ├── ocircumflexdotaboveright.glyph │ ├── odieresis.glyph │ ├── odotaboveright.glyph │ ├── oe.glyph │ ├── ogonek.glyph │ ├── ogonekcomb.glyph │ ├── ograve.glyph │ ├── ogravedotaboveright.glyph │ ├── ohungarumlaut.glyph │ ├── ohungarumlautdotaboveright.glyph │ ├── omacron.glyph │ ├── omacrondotaboveright.glyph │ ├── one.blackC_ircled.glyph │ ├── one.circled.glyph │ ├── one.dnom.glyph │ ├── one.glyph │ ├── one.numr.glyph │ ├── one.tf.glyph │ ├── oneeighth.glyph │ ├── onefifth.glyph │ ├── onefraction.glyph │ ├── onehalf.glyph │ ├── oneinferior.glyph │ ├── oneninth.glyph │ ├── onequarter.glyph │ ├── oneseventh.glyph │ ├── onesixth.glyph │ ├── onesuperior.glyph │ ├── onetenth.glyph │ ├── onethird.glyph │ ├── ordfeminine.glyph │ ├── ordmasculine.glyph │ ├── oslash.glyph │ ├── oslashacute.glyph │ ├── otilde.glyph │ ├── overticallineabove.glyph │ ├── overticallineabovedotaboveright.glyph │ ├── p.glyph │ ├── paragraph.glyph │ ├── parenleft.case.glyph │ ├── parenleft.glyph │ ├── parenright.case.glyph │ ├── parenright.glyph │ ├── partialdiff.glyph │ ├── percent.glyph │ ├── period.glyph │ ├── periodcentered.glyph │ ├── periodcentered.loclC_A_T_.case.glyph │ ├── periodcentered.loclC_A_T_.glyph │ ├── perthousand.glyph │ ├── pi.glyph │ ├── plus.glyph │ ├── plusminus.glyph │ ├── plussuperior.glyph │ ├── product.glyph │ ├── q.glyph │ ├── question.glyph │ ├── questiondown.glyph │ ├── quotedbl.glyph │ ├── quotedblbase.glyph │ ├── quotedblleft.glyph │ ├── quotedblright.glyph │ ├── quoteleft.glyph │ ├── quoteright.glyph │ ├── quotesinglbase.glyph │ ├── quotesingle.glyph │ ├── r.glyph │ ├── racute.glyph │ ├── radical.glyph │ ├── rcaron.glyph │ ├── rcommaaccent.glyph │ ├── registered.glyph │ ├── rightA_rrow.glyph │ ├── rightB_lackT_riangle.glyph │ ├── rightH_ookA_rrow.glyph │ ├── rightW_hiteT_riangle.glyph │ ├── rightlongA_rrow.glyph │ ├── ring.glyph │ ├── ringcomb.case.glyph │ ├── ringcomb.glyph │ ├── rlinebelow.glyph │ ├── s.glyph │ ├── sacute.glyph │ ├── scaron.glyph │ ├── scedilla.glyph │ ├── schwa.glyph │ ├── scircumflex.glyph │ ├── scommaaccent.glyph │ ├── second.glyph │ ├── secondtonechinese.glyph │ ├── section.glyph │ ├── semicolon.glyph │ ├── seven.blackC_ircled.glyph │ ├── seven.circled.glyph │ ├── seven.dnom.glyph │ ├── seven.glyph │ ├── seven.numr.glyph │ ├── seven.tf.glyph │ ├── seveneighths.glyph │ ├── seveninferior.glyph │ ├── sevensuperior.glyph │ ├── six.blackC_ircled.glyph │ ├── six.circled.glyph │ ├── six.dnom.glyph │ ├── six.glyph │ ├── six.numr.glyph │ ├── six.tf.glyph │ ├── sixinferior.glyph │ ├── sixsuperior.glyph │ ├── slash.glyph │ ├── slashlongcomb.case.glyph │ ├── slashlongcomb.glyph │ ├── southE_astA_rrow.glyph │ ├── southW_estA_rrow.glyph │ ├── space.glyph │ ├── sterling.glyph │ ├── summation.glyph │ ├── t.glyph │ ├── tbar.glyph │ ├── tcaron.glyph │ ├── tcedilla.glyph │ ├── tcommaaccent.glyph │ ├── thinspace.glyph │ ├── thorn.glyph │ ├── three.blackC_ircled.glyph │ ├── three.circled.glyph │ ├── three.dnom.glyph │ ├── three.glyph │ ├── three.numr.glyph │ ├── three.tf.glyph │ ├── threeeighths.glyph │ ├── threefifths.glyph │ ├── threeinferior.glyph │ ├── threequarters.glyph │ ├── threesuperior.glyph │ ├── tilde.glyph │ ├── tildecomb.case.glyph │ ├── tildecomb.glyph │ ├── trademark.glyph │ ├── two.blackC_ircled.glyph │ ├── two.circled.glyph │ ├── two.dnom.glyph │ ├── two.glyph │ ├── two.numr.glyph │ ├── two.tf.glyph │ ├── twofifths.glyph │ ├── twoinferior.glyph │ ├── twosuperior.glyph │ ├── twothirds.glyph │ ├── u.glyph │ ├── uacute.glyph │ ├── ubar.glyph │ ├── ubreve.glyph │ ├── ucaron.glyph │ ├── ucircumflex.glyph │ ├── udieresis.glyph │ ├── ugrave.glyph │ ├── uhungarumlaut.glyph │ ├── umacron.glyph │ ├── underscore.glyph │ ├── uogonek.glyph │ ├── upA_rrow.glyph │ ├── upB_lackT_riangle.glyph │ ├── upD_ownA_rrow.glyph │ ├── upW_hiteT_riangle.glyph │ ├── uring.glyph │ ├── utilde.glyph │ ├── uverticallineabove.glyph │ ├── v.glyph │ ├── verticallineabovecomb.case.glyph │ ├── verticallineabovecomb.glyph │ ├── w.glyph │ ├── wacute.glyph │ ├── wcircumflex.glyph │ ├── wdieresis.glyph │ ├── wgrave.glyph │ ├── whiteC_ircle.glyph │ ├── whiteD_iamond.glyph │ ├── whiteM_ediumD_iamond.glyph │ ├── whiteS_mallS_quare.glyph │ ├── whiteS_quare.glyph │ ├── x.glyph │ ├── y.glyph │ ├── yacute.glyph │ ├── ycircumflex.glyph │ ├── ydieresis.glyph │ ├── yen.glyph │ ├── ygrave.glyph │ ├── z.glyph │ ├── zacute.glyph │ ├── zcaron.glyph │ ├── zdotaccent.glyph │ ├── zero.blackC_ircled.glyph │ ├── zero.blackC_ircled.zero.glyph │ ├── zero.circled.glyph │ ├── zero.circled.zero.glyph │ ├── zero.dnom.glyph │ ├── zero.dnom.zero.glyph │ ├── zero.glyph │ ├── zero.numr.glyph │ ├── zero.numr.zero.glyph │ ├── zero.tf.glyph │ ├── zero.tf.zero.glyph │ ├── zero.zero.glyph │ ├── zeroinferior.glyph │ ├── zeroinferior.zero.glyph │ ├── zerosuperior.glyph │ ├── zerosuperior.zero.glyph │ ├── zerothird.glyph │ └── zerothird.zero.glyph └── order.plist ├── build.sh ├── config-TASAExplorer.yaml └── config-TASAOrbiter.yaml /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/Makefile -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/README.md -------------------------------------------------------------------------------- /documentation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/documentation/.DS_Store -------------------------------------------------------------------------------- /documentation/001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/documentation/001.gif -------------------------------------------------------------------------------- /documentation/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/documentation/002.png -------------------------------------------------------------------------------- /documentation/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/documentation/003.png -------------------------------------------------------------------------------- /documentation/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/documentation/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /documentation/images-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/documentation/images-license.txt -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements-test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/requirements-test.in -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/customize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/scripts/customize.py -------------------------------------------------------------------------------- /scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/scripts/index.html -------------------------------------------------------------------------------- /scripts/read-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/scripts/read-config.py -------------------------------------------------------------------------------- /scripts/update-custom-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/scripts/update-custom-filter.py -------------------------------------------------------------------------------- /sources/CustomFilter_GF_Latin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/CustomFilter_GF_Latin.plist -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/fontinfo.plist -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_E_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_E_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_E_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_E_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_breve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_macron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_ring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_ring.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/A_tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/A_tilde.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/B_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/B_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/C_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/C_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/C_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/C_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/C_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/C_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/C_cedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/C_cedilla.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/D_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/D_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/D_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/D_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/D_croat.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/D_croat.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/E_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/E_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/E_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/E_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/E_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/E_breve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/E_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/E_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/E_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/E_grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/E_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/E_macron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/E_ng.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/E_ng.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/E_ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/E_ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/E_th.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/E_th.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/F_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/F_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/G_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/G_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/G_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/G_breve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/H_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/H_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/H_bar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/H_bar.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/I_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/I_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/I_J_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/I_J_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/I_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/I_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/I_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/I_breve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/I_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/I_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/I_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/I_grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/I_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/I_macron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/I_ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/I_ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/I_stroke.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/I_stroke.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/J_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/J_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/J_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/J_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/K_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/K_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/L_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/L_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/L_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/L_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/L_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/L_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/L_dot.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/L_dot.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/L_slash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/L_slash.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/M_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/M_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/M_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/M_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/M_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/M_breve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/M_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/M_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/M_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/M_grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/M_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/M_macron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/N_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/N_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/N_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/N_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/N_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/N_breve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/N_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/N_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/N_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/N_grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/N_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/N_macron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/N_mod.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/N_mod.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/N_tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/N_tilde.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_E_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_E_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_breve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_hm.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_hm.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_macron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_mega.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_mega.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_slash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_slash.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/O_tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/O_tilde.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/P_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/P_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/Q_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/Q_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/R_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/R_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/R_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/R_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/R_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/R_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/S_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/S_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/S_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/S_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/S_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/S_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/S_cedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/S_cedilla.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/S_chwa.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/S_chwa.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/T_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/T_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/T_bar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/T_bar.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/T_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/T_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/T_cedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/T_cedilla.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/T_horn.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/T_horn.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_bar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_bar.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_breve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_macron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_ring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_ring.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/U_tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/U_tilde.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/V_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/V_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/W_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/W_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/W_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/W_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/W_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/W_grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/X_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/X_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/Y_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/Y_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/Y_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/Y_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/Y_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/Y_grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/Z_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/Z_.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/Z_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/Z_acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/Z_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/Z_caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/_notdef.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/_notdef.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/a.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/a.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/aacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/aacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/abreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/abreve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/acaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/acaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/acute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/acutecomb.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/acutecomb.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/adieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/adieresis.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ae.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ae.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/aeacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/aeacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/agrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/agrave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/amacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/amacron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ampersand.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ampersand.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/aogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/aogonek.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/aring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/aring.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/asterisk.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/asterisk.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/at.case.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/at.case.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/at.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/at.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/atilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/atilde.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/b.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/b.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/backslash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/backslash.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/bar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/bar.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/braceleft.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/braceleft.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/breve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/brevecomb.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/brevecomb.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/brokenbar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/brokenbar.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/bullet.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/bullet.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/c.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/c.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/cacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/cacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/caron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/caroncomb.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/caroncomb.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ccaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ccaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ccedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ccedilla.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/cedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/cedilla.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/cent.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/cent.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/colon.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/colon.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/comma.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/comma.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/copyright.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/copyright.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/currency.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/currency.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/d.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/d.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/dagger.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/dagger.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/daggerdbl.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/daggerdbl.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/dcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/dcaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/dcroat.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/dcroat.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/degree.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/degree.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/dieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/dieresis.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/divide.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/divide.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/dollar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/dollar.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/dotaccent.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/dotaccent.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/e.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/e.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/eacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/eacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ebreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ebreve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ecaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ecaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/edieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/edieresis.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/egrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/egrave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/eight.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/eight.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/eight.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/eight.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ellipsis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ellipsis.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/emacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/emacron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/emdash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/emdash.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/emptyset.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/emptyset.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/emspace.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/emspace.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/endash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/endash.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/eng.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/eng.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/enspace.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/enspace.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/eogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/eogonek.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/equal.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/equal.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/eth.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/eth.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/euro.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/euro.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/exclam.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/exclam.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/f.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/f.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/five.dnom.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/five.dnom.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/five.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/five.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/five.numr.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/five.numr.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/five.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/five.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/four.dnom.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/four.dnom.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/four.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/four.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/four.numr.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/four.numr.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/four.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/four.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/fraction.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/fraction.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/g.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/g.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/gbreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/gbreve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/grave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/gravecomb.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/gravecomb.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/greater.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/greater.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/h.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/h.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/hairspace.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/hairspace.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/hbar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/hbar.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/hyphen.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/hyphen.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/i.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/i.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/iacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/iacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ibreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ibreve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/icaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/icaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/idieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/idieresis.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/idotless.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/idotless.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/igrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/igrave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ij.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ij.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/imacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/imacron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/increment.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/increment.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/infinity.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/infinity.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/integral.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/integral.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/iogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/iogonek.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/istroke.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/istroke.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/j.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/j.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/jacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/jacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/jdotless.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/jdotless.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/k.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/k.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/l.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/l.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/lacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/lacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/lcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/lcaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ldot.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ldot.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/less.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/less.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/lessequal.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/lessequal.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/lozenge.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/lozenge.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/lslash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/lslash.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/m.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/m.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/macron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/macute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/macute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/mbreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/mbreve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/mcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/mcaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/mgrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/mgrave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/micro.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/micro.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/minus.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/minus.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/minute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/minute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/mmacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/mmacron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/mu.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/mu.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/multiply.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/multiply.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/n.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/n.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/nacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/nacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/nbreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/nbreve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/nbspace.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/nbspace.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ncaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ncaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ngrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ngrave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/nine.dnom.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/nine.dnom.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/nine.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/nine.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/nine.numr.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/nine.numr.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/nine.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/nine.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/nmacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/nmacron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/nmod.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/nmod.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/notequal.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/notequal.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ntilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ntilde.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/o.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/o.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/oacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/oacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/obreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/obreve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ocaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ocaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/odieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/odieresis.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/oe.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/oe.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ograve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ograve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/omacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/omacron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/one.dnom.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/one.dnom.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/one.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/one.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/one.numr.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/one.numr.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/one.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/one.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/oneeighth.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/oneeighth.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/onefifth.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/onefifth.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/onehalf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/onehalf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/oneninth.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/oneninth.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/onesixth.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/onesixth.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/onetenth.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/onetenth.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/onethird.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/onethird.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/oslash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/oslash.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/otilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/otilde.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/p.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/p.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/paragraph.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/paragraph.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/parenleft.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/parenleft.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/percent.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/percent.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/period.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/period.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/pi.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/pi.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/plus.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/plus.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/plusminus.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/plusminus.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/product.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/product.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/q.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/q.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/question.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/question.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/quotedbl.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/quotedbl.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/quoteleft.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/quoteleft.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/r.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/r.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/racute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/racute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/radical.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/radical.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/rcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/rcaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ring.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ringcomb.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ringcomb.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/s.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/s.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/sacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/sacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/scaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/scaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/scedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/scedilla.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/schwa.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/schwa.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/second.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/second.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/section.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/section.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/semicolon.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/semicolon.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/seven.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/seven.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/seven.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/seven.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/six.dnom.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/six.dnom.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/six.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/six.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/six.numr.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/six.numr.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/six.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/six.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/slash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/slash.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/space.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/space.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/sterling.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/sterling.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/summation.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/summation.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/t.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/t.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/tbar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/tbar.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/tcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/tcaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/tcedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/tcedilla.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/thinspace.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/thinspace.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/thorn.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/thorn.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/three.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/three.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/three.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/three.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/tilde.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/tildecomb.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/tildecomb.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/trademark.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/trademark.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/two.dnom.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/two.dnom.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/two.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/two.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/two.numr.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/two.numr.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/two.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/two.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/twofifths.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/twofifths.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/twothirds.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/twothirds.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/u.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/u.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/uacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/uacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ubar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ubar.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ubreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ubreve.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ucaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ucaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/udieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/udieresis.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ugrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ugrave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/umacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/umacron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/uogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/uogonek.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/upA_rrow.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/upA_rrow.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/uring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/uring.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/utilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/utilde.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/v.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/v.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/w.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/w.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/wacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/wacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/wdieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/wdieresis.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/wgrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/wgrave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/x.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/x.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/y.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/y.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/yacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/yacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ydieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ydieresis.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/yen.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/yen.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/ygrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/ygrave.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/z.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/z.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/zacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/zacute.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/zcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/zcaron.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/zero.dnom.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/zero.dnom.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/zero.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/zero.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/zero.numr.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/zero.numr.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/zero.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/zero.tf.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/zero.zero.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/zero.zero.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/glyphs/zerothird.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/glyphs/zerothird.glyph -------------------------------------------------------------------------------- /sources/TASAExplorer.glyphspackage/order.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAExplorer.glyphspackage/order.plist -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/fontinfo.plist -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_E_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_E_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_E_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_E_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_breve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_dieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_dieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_macron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_ring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_ring.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/A_tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/A_tilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/B_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/B_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/C_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/C_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/C_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/C_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/C_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/C_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/C_cedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/C_cedilla.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/D_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/D_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/D_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/D_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/D_croat.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/D_croat.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_breve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_dieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_dieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_macron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_ng.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_ng.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/E_th.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/E_th.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/F_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/F_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/G_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/G_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/G_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/G_breve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/H_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/H_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/H_bar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/H_bar.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_.ss01.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_.ss01.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_J_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_J_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_J_.ss01.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_J_.ss01.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_breve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_dieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_dieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_macron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/I_stroke.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/I_stroke.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/J_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/J_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/J_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/J_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/K_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/K_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/L_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/L_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/L_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/L_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/L_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/L_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/L_dot.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/L_dot.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/L_slash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/L_slash.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/M_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/M_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/M_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/M_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/M_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/M_breve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/M_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/M_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/M_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/M_grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/M_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/M_macron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/N_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/N_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/N_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/N_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/N_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/N_breve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/N_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/N_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/N_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/N_grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/N_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/N_macron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/N_mod.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/N_mod.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/N_tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/N_tilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_E_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_E_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_breve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_dieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_dieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_hm.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_hm.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_macron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_mega.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_mega.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_slash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_slash.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/O_tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/O_tilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/P_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/P_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/Q_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/Q_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/R_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/R_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/R_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/R_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/R_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/R_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/S_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/S_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/S_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/S_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/S_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/S_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/S_cedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/S_cedilla.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/S_chwa.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/S_chwa.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/T_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/T_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/T_bar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/T_bar.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/T_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/T_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/T_cedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/T_cedilla.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/T_horn.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/T_horn.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_bar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_bar.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_breve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_dieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_dieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_macron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_ring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_ring.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/U_tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/U_tilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/V_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/V_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/W_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/W_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/W_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/W_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/W_dieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/W_dieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/W_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/W_grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/X_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/X_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/Y_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/Y_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/Y_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/Y_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/Y_dieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/Y_dieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/Y_grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/Y_grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/Z_.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/Z_.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/Z_acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/Z_acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/Z_caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/Z_caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/_notdef.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/_notdef.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/a.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/a.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/aacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/aacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/abreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/abreve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/acaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/acaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/acute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/acute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/acutecomb.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/acutecomb.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/adieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/adieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ae.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ae.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/aeacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/aeacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/agrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/agrave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/amacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/amacron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ampersand.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ampersand.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/aogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/aogonek.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/aring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/aring.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/asciitilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/asciitilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/asterisk.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/asterisk.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/at.case.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/at.case.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/at.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/at.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/atilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/atilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/b.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/b.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/backslash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/backslash.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/bar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/bar.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/braceleft.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/braceleft.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/braceright.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/braceright.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/breve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/breve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/brevecomb.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/brevecomb.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/brokenbar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/brokenbar.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/bullet.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/bullet.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/c.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/c.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/cacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/cacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/caron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/caron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/caroncomb.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/caroncomb.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ccaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ccaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ccedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ccedilla.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/cdotaccent.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/cdotaccent.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/cedilla.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/cedilla.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/cent.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/cent.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/circumflex.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/circumflex.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/colon.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/colon.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/comma.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/comma.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/copyright.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/copyright.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/currency.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/currency.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/d.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/d.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/dagger.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/dagger.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/daggerdbl.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/daggerdbl.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/dcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/dcaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/dcroat.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/dcroat.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/degree.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/degree.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/dieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/dieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/divide.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/divide.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/dollar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/dollar.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/dotaccent.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/dotaccent.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/downA_rrow.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/downA_rrow.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/e.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/e.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/eacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/eacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ebreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ebreve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ecaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ecaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/edieresis.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/edieresis.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/edotaccent.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/edotaccent.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/egrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/egrave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/eight.dnom.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/eight.dnom.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/eight.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/eight.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/emacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/emacron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/emdash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/emdash.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/emspace.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/emspace.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/endash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/endash.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/eng.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/eng.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/enspace.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/enspace.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/eogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/eogonek.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/equal.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/equal.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/eth.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/eth.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/euro.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/euro.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/exclam.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/exclam.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/f.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/f.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/five.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/five.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/five.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/five.tf.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/four.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/four.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/four.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/four.tf.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/g.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/g.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/gbreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/gbreve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/grave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/grave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/greater.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/greater.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/h.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/h.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/hbar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/hbar.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/hyphen.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/hyphen.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/i.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/i.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/i.ss01.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/i.ss01.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/iacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/iacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ibreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ibreve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/icaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/icaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/igrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/igrave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ij.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ij.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ij.ss01.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ij.ss01.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/imacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/imacron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/iogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/iogonek.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/istroke.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/istroke.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/j.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/j.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/j.ss01.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/j.ss01.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/jacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/jacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/k.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/k.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/l.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/l.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/l.ss01.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/l.ss01.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/lacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/lacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/lcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/lcaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ldot.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ldot.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/less.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/less.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/lozenge.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/lozenge.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/lslash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/lslash.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/m.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/m.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/macron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/macron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/macute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/macute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/mbreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/mbreve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/mcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/mcaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/mgrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/mgrave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/micro.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/micro.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/minus.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/minus.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/minute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/minute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/mmacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/mmacron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/mu.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/mu.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/n.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/n.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/nacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/nacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/nbreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/nbreve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/nbspace.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/nbspace.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ncaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ncaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ngrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ngrave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/nine.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/nine.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/nine.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/nine.tf.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/nmacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/nmacron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/nmod.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/nmod.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ntilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ntilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/o.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/o.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/oacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/oacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/obreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/obreve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ocaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ocaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/oe.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/oe.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ogonek.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ograve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ograve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/omacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/omacron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/one.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/one.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/one.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/one.tf.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/onehalf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/onehalf.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/oslash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/oslash.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/otilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/otilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/p.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/p.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/percent.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/percent.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/period.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/period.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/pi.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/pi.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/plus.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/plus.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/product.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/product.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/q.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/q.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/r.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/r.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/racute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/racute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/radical.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/radical.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/rcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/rcaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ring.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/s.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/s.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/sacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/sacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/scaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/scaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/schwa.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/schwa.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/second.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/second.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/section.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/section.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/seven.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/seven.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/six.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/six.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/six.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/six.tf.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/slash.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/slash.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/space.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/space.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/t.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/t.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/tbar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/tbar.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/tcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/tcaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/thorn.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/thorn.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/three.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/three.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/tilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/tilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/two.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/two.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/two.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/two.tf.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/u.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/u.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/uacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/uacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ubar.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ubar.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ubreve.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ubreve.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ucaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ucaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ugrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ugrave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/umacron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/umacron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/uogonek.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/uogonek.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/uring.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/uring.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/utilde.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/utilde.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/v.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/v.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/w.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/w.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/wacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/wacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/wgrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/wgrave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/x.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/x.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/y.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/y.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/yacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/yacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/yen.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/yen.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/ygrave.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/ygrave.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/z.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/z.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/zacute.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/zacute.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/zcaron.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/zcaron.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/zero.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/zero.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/glyphs/zero.tf.glyph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/glyphs/zero.tf.glyph -------------------------------------------------------------------------------- /sources/TASAOrbiter.glyphspackage/order.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/TASAOrbiter.glyphspackage/order.plist -------------------------------------------------------------------------------- /sources/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/build.sh -------------------------------------------------------------------------------- /sources/config-TASAExplorer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/config-TASAExplorer.yaml -------------------------------------------------------------------------------- /sources/config-TASAOrbiter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/localremotetw/TASA-Typeface-Collection/HEAD/sources/config-TASAOrbiter.yaml --------------------------------------------------------------------------------