diff --git a/src/app.html b/src/app.html index f9e7e389..94364ba4 100644 --- a/src/app.html +++ b/src/app.html @@ -5,6 +5,12 @@ + + + + + + - + @@ -122,10 +132,10 @@ async function handle_get_data_store_obj_w_code({code, data_type='text'}) { {:else if $drawerStore.id === 'sponsorships__edit'} (show 'sponsorships__edit__sponsorship_obj' contents)
- {#if $slct.sponsorship_obj && $ae_loc.mod.sponsorships.show_edit__sponsorship_obj} +
{:else} (fallback contents) @@ -151,10 +161,12 @@ async function handle_get_data_store_obj_w_code({code, data_type='text'}) { Sponsorships Speakers @@ -191,6 +203,9 @@ async function handle_get_data_store_obj_w_code({code, data_type='text'}) { --> + + + diff --git a/src/routes/sponsorships/+layout.svelte b/src/routes/sponsorships/+layout.svelte new file mode 100644 index 00000000..33aa81e9 --- /dev/null +++ b/src/routes/sponsorships/+layout.svelte @@ -0,0 +1,14 @@ + + +

Sponsorships Layout?

+ + + + \ No newline at end of file diff --git a/src/routes/sponsorships/+layout.ts b/src/routes/sponsorships/+layout.ts index e69de29b..d0ea0362 100644 --- a/src/routes/sponsorships/+layout.ts +++ b/src/routes/sponsorships/+layout.ts @@ -0,0 +1,18 @@ +/** @type {import('./$types').LayoutLoad} */ +export function load({ params, url }) { // route + console.log(`page data - params:`, params); + // console.log(`page data - route:`, route); + console.log(`page data - url:`, url); + + let data_struct = { + params: params, + sections: [ + { slug: 'new', title: 'New Sponsorship' }, + { slug: 'manage', title: 'Manage' }, + { slug: 'test', title: 'Test' }, + ], + url: url, + + }; + return data_struct; +} diff --git a/src/routes/sponsorships/+page.svelte b/src/routes/sponsorships/+page.svelte index 98d1efc8..9553959a 100644 --- a/src/routes/sponsorships/+page.svelte +++ b/src/routes/sponsorships/+page.svelte @@ -5,21 +5,37 @@ import { onMount } from 'svelte'; import { getDrawerStore, getModalStore } from '@skeletonlabs/skeleton'; import type { DrawerSettings, - // ModalSettings, ModalComponent, ModalStore + ModalSettings + , ModalComponent, ModalStore } from '@skeletonlabs/skeleton'; const modalStore = getModalStore(); import { api } from '$lib/api'; import { ae_loc, ae_sess, ae_api, slct, slct_trigger } from '$lib/ae_stores'; -import Edit_sponsorship_obj from './10_edit__sponsorship_obj.svelte'; +// import Edit_sponsorship_obj from './10_edit__sponsorship_obj.svelte'; +import Edit_modal_sponsorship_obj from './10_edit_modal__sponsorship_obj.svelte'; import List_sponsorship_obj from './10_list__sponsorship_obj.svelte'; import View_sponsorship_obj from './10_view__sponsorship_obj.svelte'; + +import View_modal_sponsorship_obj from './10_view_modal__sponsorship_obj.svelte'; + +const modalComponentViewSponsorshipObj: ModalComponent = { ref: View_modal_sponsorship_obj }; + +const modal_view__sponsorship_obj: ModalSettings = { + type: 'component', + component: modalComponentViewSponsorshipObj, +}; + + type key_val = { [key: string]: any; }; +export let data; +console.log(`page data:`, data); + let ae_account_obj_get_promise; let ae_sponsorship_obj_li_get_promise; @@ -155,7 +171,83 @@ async function handle_load_ae_sponsorship_obj_li({account_id, try_cache=true}) { return ae_sponsorship_obj_li_get_promise; } +$: if ($slct_trigger == 'load__sponsorship_obj' && $slct.sponsorship_id) { + console.log('Selected Sponsorship ID:', $slct.sponsorship_id); + console.log('Selected Sponsorship Object:', $slct.sponsorship_obj); + $slct_trigger = null; + + handle_load_ae_sponsorship_id_obj({sponsorship_id: $slct.sponsorship_id, try_cache: false}); +} + +let ae_sponsorship_obj_get_promise; +async function handle_load_ae_sponsorship_id_obj({sponsorship_id, try_cache=false}) { + console.log('*** handle_load_sponsorship_id_obj() ***'); + + let params = {}; + + // $ae_loc.hub.sponsorship_id_qry_status = 'loading'; + ae_sponsorship_obj_get_promise = api.get_ae_obj_id_crud({ + api_cfg: $ae_api, + obj_type: 'sponsorship', + obj_id: sponsorship_id, + use_alt_table: false, // NOTE: This will use the table_name_alt value instead of the table_name value in the API config. + use_alt_base: false, // NOTE: This will use the base_name_alt value instead of the base_name value in the API config. + params: params, + log_lvl: 2 + }) + .then(function (sponsorship_obj_get_result) { + if (sponsorship_obj_get_result) { + $slct.sponsorship_obj = sponsorship_obj_get_result; + console.log(`sponsorship object:`, $slct.sponsorship_obj); + } + + // Auto show the selected sponsorship ID + // Is this pushState needed here? + // Set the URL param "sponsorship_id" to the current sponsorship ID. + // const url = new URL(location); + // url.searchParams.set('sponsorship_id', $slct.sponsorship_id); + // history.pushState({}, '', url); + + // Is this postMessage needed here? + // let message = {'sponsorship_id': $slct.sponsorship_id}; + // window.parent.postMessage(message, "*"); + + // modalStore.trigger(modal_view__sponsorship_obj); + }) + .catch(function (error) { + console.log('No results returned or failed.', error); + }); + + return ae_sponsorship_obj_get_promise; +} + +const modal_edit__sponsorship_obj: ModalSettings = { + type: 'component', + component: 'modalComponentEditSponsorshipObj', + title: 'Edit Sponsorship', +}; + +// const modal_view__sponsorship_obj: ModalSettings = { +// type: 'component', +// component: 'modal_component_view__sponsorship_obj', +// }; + +// $: if ($slct_trigger == 'load__sponsorship_obj' && $slct.sponsorship_id) { +// console.log('Selected Sponsorship ID:', $slct.sponsorship_id); +// console.log('Selected Sponsorship Object:', $slct.sponsorship_obj); + +// $slct_trigger = null; +// } + +$: if ($ae_loc.mod.sponsorships.show_edit__sponsorship_obj) { + console.log('Show Modal Edit'); + modalStore.trigger(modal_edit__sponsorship_obj); +} else if ($ae_loc.mod.sponsorships.show_view__sponsorship_obj) { + console.log('Show Modal View'); + // modalStore.trigger(modalComponentViewSponsorshipObj); + modalStore.trigger(modal_view__sponsorship_obj); +} // const modal: ModalSettings = { // type: 'alert', @@ -232,19 +324,19 @@ const drawer_settings_y: DrawerSettings = { {/if} -
+ -
+ diff --git a/src/routes/sponsorships/10_edit__sponsorship_obj.svelte b/src/routes/sponsorships/10_edit__sponsorship_obj.svelte index ecf4748e..112a9132 100644 --- a/src/routes/sponsorships/10_edit__sponsorship_obj.svelte +++ b/src/routes/sponsorships/10_edit__sponsorship_obj.svelte @@ -29,7 +29,7 @@ if ($slct.sponsorship_id) { // console.log(`Sponsorship ID selected: ${$slct.sponsorship_id}`); // console.log(`Sponsorship Object selected: ${$slct.sponsorship_obj}`) - $slct_trigger = 'load__sponsorship_obj'; + // $slct_trigger = 'load__sponsorship_obj'; disable_submit_btn = false; } else { $slct.sponsorship_id = null; diff --git a/src/routes/sponsorships/10_edit_modal__sponsorship_obj.svelte b/src/routes/sponsorships/10_edit_modal__sponsorship_obj.svelte new file mode 100644 index 00000000..9d049c5c --- /dev/null +++ b/src/routes/sponsorships/10_edit_modal__sponsorship_obj.svelte @@ -0,0 +1,244 @@ + + + + +{#if $modalStore[0]} + +{/if} + + \ No newline at end of file diff --git a/src/routes/sponsorships/10_list__sponsorship_obj.svelte b/src/routes/sponsorships/10_list__sponsorship_obj.svelte index 067d9d73..322d1055 100644 --- a/src/routes/sponsorships/10_list__sponsorship_obj.svelte +++ b/src/routes/sponsorships/10_list__sponsorship_obj.svelte @@ -17,7 +17,7 @@ onMount(() => {
{#if $slct.sponsorship_obj_li} - +
@@ -41,6 +41,7 @@ onMount(() => { > @@ -129,6 +131,12 @@ onMount(() => { {/each} + + + + + +
Options +
{/if} +
{ae_sponsorship_obj.name}
Total Count:{$slct.sponsorship_obj_li.length}
{:else}
No sponsorships avalible to show at this time
diff --git a/src/routes/sponsorships/10_view__sponsorship_obj.svelte b/src/routes/sponsorships/10_view__sponsorship_obj.svelte index f38ff24a..6569bcf0 100644 --- a/src/routes/sponsorships/10_view__sponsorship_obj.svelte +++ b/src/routes/sponsorships/10_view__sponsorship_obj.svelte @@ -143,6 +143,8 @@ onMount(() => { // $ae_loc.mod.sponsorships.show_main__options = true; // $ae_loc.mod.sponsorships.show_list__sponsorship_obj_li = true; + $slct_trigger = 'load__sponsorship_obj'; + $ae_loc.mod.sponsorships.show_view__sponsorship_obj = false; $ae_loc.mod.sponsorships.show_edit__sponsorship_obj = true; }} diff --git a/src/routes/sponsorships/10_view_modal__sponsorship_obj.svelte b/src/routes/sponsorships/10_view_modal__sponsorship_obj.svelte new file mode 100644 index 00000000..47e09bc5 --- /dev/null +++ b/src/routes/sponsorships/10_view_modal__sponsorship_obj.svelte @@ -0,0 +1,212 @@ + + + + +
+ +
{@html $slct.sponsorship_obj.name}
+ +
+
+
Description:
+
{@html $slct.sponsorship_obj.description ? $slct.sponsorship_obj.description : '-- No Description Given --'}
+
+ +
+ Level of Sponsorship: + {$slct.sponsorship_obj.level_num} — {$slct.sponsorship_obj.level_str} +
+ +
+ Paid: + $ + + {$slct.sponsorship_obj.paid ? 'Yes, marked as paid' : 'Not yet marked as paid'} + +
+ + + +
+

Guest List

+ + {#if $slct.sponsorship_obj.guest_li_json && $slct.sponsorship_obj.guest_li_json.length && $slct.sponsorship_obj.guest_li_json[0].full_name} + + {:else} +
No guest list found!
+ {/if} + +
+ + + + + +
+ +
+ {#if $ae_loc.trusted_access || $slct.sponsorship_obj.external_person_id === $ae_loc.novi_uuid || $slct.sponsorship_obj.contact_1_email === $ae_loc.novi_email} +
+ +
+ {/if} + +
+ +
+ + + diff --git a/src/routes/sponsorships/[slug]/+page.svelte b/src/routes/sponsorships/[slug]/+page.svelte new file mode 100644 index 00000000..915a8c4b --- /dev/null +++ b/src/routes/sponsorships/[slug]/+page.svelte @@ -0,0 +1,117 @@ + + + +
+ +
+

Information Goes Here

+
+ +
More information goes here.
+ +
+ +
+ +
diff --git a/src/routes/sponsorships/[slug]/hold +page.ts b/src/routes/sponsorships/[slug]/hold +page.ts new file mode 100644 index 00000000..e8c9e051 --- /dev/null +++ b/src/routes/sponsorships/[slug]/hold +page.ts @@ -0,0 +1,4 @@ +// export function load({ params }) { +// console.log(`page data - params:`, params); +// return params +// } diff --git a/static/fonts/gnu-free/FreeMono.otf b/static/fonts/gnu-free/FreeMono.otf new file mode 100644 index 00000000..dc646b18 Binary files /dev/null and b/static/fonts/gnu-free/FreeMono.otf differ diff --git a/static/fonts/gnu-free/FreeMonoBold.otf b/static/fonts/gnu-free/FreeMonoBold.otf new file mode 100644 index 00000000..247d972a Binary files /dev/null and b/static/fonts/gnu-free/FreeMonoBold.otf differ diff --git a/static/fonts/gnu-free/FreeMonoBoldOblique.otf b/static/fonts/gnu-free/FreeMonoBoldOblique.otf new file mode 100644 index 00000000..6174f38b Binary files /dev/null and b/static/fonts/gnu-free/FreeMonoBoldOblique.otf differ diff --git a/static/fonts/gnu-free/FreeMonoOblique.otf b/static/fonts/gnu-free/FreeMonoOblique.otf new file mode 100644 index 00000000..8b6d30fe Binary files /dev/null and b/static/fonts/gnu-free/FreeMonoOblique.otf differ diff --git a/static/fonts/gnu-free/FreeSans.otf b/static/fonts/gnu-free/FreeSans.otf new file mode 100644 index 00000000..062c9395 Binary files /dev/null and b/static/fonts/gnu-free/FreeSans.otf differ diff --git a/static/fonts/gnu-free/FreeSansBold.otf b/static/fonts/gnu-free/FreeSansBold.otf new file mode 100644 index 00000000..3ddde169 Binary files /dev/null and b/static/fonts/gnu-free/FreeSansBold.otf differ diff --git a/static/fonts/gnu-free/FreeSansBoldOblique.otf b/static/fonts/gnu-free/FreeSansBoldOblique.otf new file mode 100644 index 00000000..9a1c0a1b Binary files /dev/null and b/static/fonts/gnu-free/FreeSansBoldOblique.otf differ diff --git a/static/fonts/gnu-free/FreeSansOblique.otf b/static/fonts/gnu-free/FreeSansOblique.otf new file mode 100644 index 00000000..f22e9ae8 Binary files /dev/null and b/static/fonts/gnu-free/FreeSansOblique.otf differ diff --git a/static/fonts/gnu-free/FreeSerif.otf b/static/fonts/gnu-free/FreeSerif.otf new file mode 100644 index 00000000..04a8d84c Binary files /dev/null and b/static/fonts/gnu-free/FreeSerif.otf differ diff --git a/static/fonts/gnu-free/FreeSerifBold.otf b/static/fonts/gnu-free/FreeSerifBold.otf new file mode 100644 index 00000000..681e87ee Binary files /dev/null and b/static/fonts/gnu-free/FreeSerifBold.otf differ diff --git a/static/fonts/gnu-free/FreeSerifBoldItalic.otf b/static/fonts/gnu-free/FreeSerifBoldItalic.otf new file mode 100644 index 00000000..c89cd55e Binary files /dev/null and b/static/fonts/gnu-free/FreeSerifBoldItalic.otf differ diff --git a/static/fonts/gnu-free/FreeSerifItalic.otf b/static/fonts/gnu-free/FreeSerifItalic.otf new file mode 100644 index 00000000..5ead0751 Binary files /dev/null and b/static/fonts/gnu-free/FreeSerifItalic.otf differ diff --git a/static/fonts/gsfonts/C059-BdIta.otf b/static/fonts/gsfonts/C059-BdIta.otf new file mode 100644 index 00000000..b70833d8 Binary files /dev/null and b/static/fonts/gsfonts/C059-BdIta.otf differ diff --git a/static/fonts/gsfonts/C059-Bold.otf b/static/fonts/gsfonts/C059-Bold.otf new file mode 100644 index 00000000..8a32cdcc Binary files /dev/null and b/static/fonts/gsfonts/C059-Bold.otf differ diff --git a/static/fonts/gsfonts/C059-Italic.otf b/static/fonts/gsfonts/C059-Italic.otf new file mode 100644 index 00000000..4bac2d52 Binary files /dev/null and b/static/fonts/gsfonts/C059-Italic.otf differ diff --git a/static/fonts/gsfonts/C059-Roman.otf b/static/fonts/gsfonts/C059-Roman.otf new file mode 100644 index 00000000..310713a8 Binary files /dev/null and b/static/fonts/gsfonts/C059-Roman.otf differ diff --git a/static/fonts/gsfonts/D050000L.otf b/static/fonts/gsfonts/D050000L.otf new file mode 100644 index 00000000..5f49a671 Binary files /dev/null and b/static/fonts/gsfonts/D050000L.otf differ diff --git a/static/fonts/gsfonts/NimbusMonoPS-Bold.otf b/static/fonts/gsfonts/NimbusMonoPS-Bold.otf new file mode 100644 index 00000000..397d4c7a Binary files /dev/null and b/static/fonts/gsfonts/NimbusMonoPS-Bold.otf differ diff --git a/static/fonts/gsfonts/NimbusMonoPS-BoldItalic.otf b/static/fonts/gsfonts/NimbusMonoPS-BoldItalic.otf new file mode 100644 index 00000000..749edb3b Binary files /dev/null and b/static/fonts/gsfonts/NimbusMonoPS-BoldItalic.otf differ diff --git a/static/fonts/gsfonts/NimbusMonoPS-Italic.otf b/static/fonts/gsfonts/NimbusMonoPS-Italic.otf new file mode 100644 index 00000000..109e08bf Binary files /dev/null and b/static/fonts/gsfonts/NimbusMonoPS-Italic.otf differ diff --git a/static/fonts/gsfonts/NimbusMonoPS-Regular.otf b/static/fonts/gsfonts/NimbusMonoPS-Regular.otf new file mode 100644 index 00000000..ff1b79e3 Binary files /dev/null and b/static/fonts/gsfonts/NimbusMonoPS-Regular.otf differ diff --git a/static/fonts/gsfonts/NimbusRoman-Bold.otf b/static/fonts/gsfonts/NimbusRoman-Bold.otf new file mode 100644 index 00000000..cbb68f6d Binary files /dev/null and b/static/fonts/gsfonts/NimbusRoman-Bold.otf differ diff --git a/static/fonts/gsfonts/NimbusRoman-BoldItalic.otf b/static/fonts/gsfonts/NimbusRoman-BoldItalic.otf new file mode 100644 index 00000000..1281bde5 Binary files /dev/null and b/static/fonts/gsfonts/NimbusRoman-BoldItalic.otf differ diff --git a/static/fonts/gsfonts/NimbusRoman-Italic.otf b/static/fonts/gsfonts/NimbusRoman-Italic.otf new file mode 100644 index 00000000..a0ffd968 Binary files /dev/null and b/static/fonts/gsfonts/NimbusRoman-Italic.otf differ diff --git a/static/fonts/gsfonts/NimbusRoman-Regular.otf b/static/fonts/gsfonts/NimbusRoman-Regular.otf new file mode 100644 index 00000000..4588affb Binary files /dev/null and b/static/fonts/gsfonts/NimbusRoman-Regular.otf differ diff --git a/static/fonts/gsfonts/NimbusSans-Bold.otf b/static/fonts/gsfonts/NimbusSans-Bold.otf new file mode 100644 index 00000000..5b1d2982 Binary files /dev/null and b/static/fonts/gsfonts/NimbusSans-Bold.otf differ diff --git a/static/fonts/gsfonts/NimbusSans-BoldItalic.otf b/static/fonts/gsfonts/NimbusSans-BoldItalic.otf new file mode 100644 index 00000000..b820b018 Binary files /dev/null and b/static/fonts/gsfonts/NimbusSans-BoldItalic.otf differ diff --git a/static/fonts/gsfonts/NimbusSans-Italic.otf b/static/fonts/gsfonts/NimbusSans-Italic.otf new file mode 100644 index 00000000..8bf6ec44 Binary files /dev/null and b/static/fonts/gsfonts/NimbusSans-Italic.otf differ diff --git a/static/fonts/gsfonts/NimbusSans-Regular.otf b/static/fonts/gsfonts/NimbusSans-Regular.otf new file mode 100644 index 00000000..9997d291 Binary files /dev/null and b/static/fonts/gsfonts/NimbusSans-Regular.otf differ diff --git a/static/fonts/gsfonts/NimbusSansNarrow-Bold.otf b/static/fonts/gsfonts/NimbusSansNarrow-Bold.otf new file mode 100644 index 00000000..78c3d9cd Binary files /dev/null and b/static/fonts/gsfonts/NimbusSansNarrow-Bold.otf differ diff --git a/static/fonts/gsfonts/NimbusSansNarrow-BoldOblique.otf b/static/fonts/gsfonts/NimbusSansNarrow-BoldOblique.otf new file mode 100644 index 00000000..4f9abd78 Binary files /dev/null and b/static/fonts/gsfonts/NimbusSansNarrow-BoldOblique.otf differ diff --git a/static/fonts/gsfonts/NimbusSansNarrow-Oblique.otf b/static/fonts/gsfonts/NimbusSansNarrow-Oblique.otf new file mode 100644 index 00000000..a64e501a Binary files /dev/null and b/static/fonts/gsfonts/NimbusSansNarrow-Oblique.otf differ diff --git a/static/fonts/gsfonts/NimbusSansNarrow-Regular.otf b/static/fonts/gsfonts/NimbusSansNarrow-Regular.otf new file mode 100644 index 00000000..28f09dac Binary files /dev/null and b/static/fonts/gsfonts/NimbusSansNarrow-Regular.otf differ diff --git a/static/fonts/gsfonts/P052-Bold.otf b/static/fonts/gsfonts/P052-Bold.otf new file mode 100644 index 00000000..e401fb78 Binary files /dev/null and b/static/fonts/gsfonts/P052-Bold.otf differ diff --git a/static/fonts/gsfonts/P052-BoldItalic.otf b/static/fonts/gsfonts/P052-BoldItalic.otf new file mode 100644 index 00000000..74d4a40a Binary files /dev/null and b/static/fonts/gsfonts/P052-BoldItalic.otf differ diff --git a/static/fonts/gsfonts/P052-Italic.otf b/static/fonts/gsfonts/P052-Italic.otf new file mode 100644 index 00000000..1e7ca50c Binary files /dev/null and b/static/fonts/gsfonts/P052-Italic.otf differ diff --git a/static/fonts/gsfonts/P052-Roman.otf b/static/fonts/gsfonts/P052-Roman.otf new file mode 100644 index 00000000..90be9bea Binary files /dev/null and b/static/fonts/gsfonts/P052-Roman.otf differ diff --git a/static/fonts/gsfonts/StandardSymbolsPS.otf b/static/fonts/gsfonts/StandardSymbolsPS.otf new file mode 100644 index 00000000..4ed9b397 Binary files /dev/null and b/static/fonts/gsfonts/StandardSymbolsPS.otf differ diff --git a/static/fonts/gsfonts/URWBookman-Demi.otf b/static/fonts/gsfonts/URWBookman-Demi.otf new file mode 100644 index 00000000..a9bb3ade Binary files /dev/null and b/static/fonts/gsfonts/URWBookman-Demi.otf differ diff --git a/static/fonts/gsfonts/URWBookman-DemiItalic.otf b/static/fonts/gsfonts/URWBookman-DemiItalic.otf new file mode 100644 index 00000000..6aed7806 Binary files /dev/null and b/static/fonts/gsfonts/URWBookman-DemiItalic.otf differ diff --git a/static/fonts/gsfonts/URWBookman-Light.otf b/static/fonts/gsfonts/URWBookman-Light.otf new file mode 100644 index 00000000..6b253b3b Binary files /dev/null and b/static/fonts/gsfonts/URWBookman-Light.otf differ diff --git a/static/fonts/gsfonts/URWBookman-LightItalic.otf b/static/fonts/gsfonts/URWBookman-LightItalic.otf new file mode 100644 index 00000000..8a472146 Binary files /dev/null and b/static/fonts/gsfonts/URWBookman-LightItalic.otf differ diff --git a/static/fonts/gsfonts/URWGothic-Book.otf b/static/fonts/gsfonts/URWGothic-Book.otf new file mode 100644 index 00000000..70dcc990 Binary files /dev/null and b/static/fonts/gsfonts/URWGothic-Book.otf differ diff --git a/static/fonts/gsfonts/URWGothic-BookOblique.otf b/static/fonts/gsfonts/URWGothic-BookOblique.otf new file mode 100644 index 00000000..73cc9d7f Binary files /dev/null and b/static/fonts/gsfonts/URWGothic-BookOblique.otf differ diff --git a/static/fonts/gsfonts/URWGothic-Demi.otf b/static/fonts/gsfonts/URWGothic-Demi.otf new file mode 100644 index 00000000..14a4d40a Binary files /dev/null and b/static/fonts/gsfonts/URWGothic-Demi.otf differ diff --git a/static/fonts/gsfonts/URWGothic-DemiOblique.otf b/static/fonts/gsfonts/URWGothic-DemiOblique.otf new file mode 100644 index 00000000..ae1184e5 Binary files /dev/null and b/static/fonts/gsfonts/URWGothic-DemiOblique.otf differ diff --git a/static/fonts/gsfonts/Z003-MediumItalic.otf b/static/fonts/gsfonts/Z003-MediumItalic.otf new file mode 100644 index 00000000..1f301cbc Binary files /dev/null and b/static/fonts/gsfonts/Z003-MediumItalic.otf differ diff --git a/static/fonts/liberation/LiberationMono-Bold.ttf b/static/fonts/liberation/LiberationMono-Bold.ttf new file mode 100644 index 00000000..b8bedae8 Binary files /dev/null and b/static/fonts/liberation/LiberationMono-Bold.ttf differ diff --git a/static/fonts/liberation/LiberationMono-BoldItalic.ttf b/static/fonts/liberation/LiberationMono-BoldItalic.ttf new file mode 100644 index 00000000..15a6e755 Binary files /dev/null and b/static/fonts/liberation/LiberationMono-BoldItalic.ttf differ diff --git a/static/fonts/liberation/LiberationMono-Italic.ttf b/static/fonts/liberation/LiberationMono-Italic.ttf new file mode 100644 index 00000000..4dc608df Binary files /dev/null and b/static/fonts/liberation/LiberationMono-Italic.ttf differ diff --git a/static/fonts/liberation/LiberationMono-Regular.ttf b/static/fonts/liberation/LiberationMono-Regular.ttf new file mode 100644 index 00000000..a1d70edf Binary files /dev/null and b/static/fonts/liberation/LiberationMono-Regular.ttf differ diff --git a/static/fonts/liberation/LiberationSans-Bold.ttf b/static/fonts/liberation/LiberationSans-Bold.ttf new file mode 100644 index 00000000..b344b384 Binary files /dev/null and b/static/fonts/liberation/LiberationSans-Bold.ttf differ diff --git a/static/fonts/liberation/LiberationSans-BoldItalic.ttf b/static/fonts/liberation/LiberationSans-BoldItalic.ttf new file mode 100644 index 00000000..9cf5e87a Binary files /dev/null and b/static/fonts/liberation/LiberationSans-BoldItalic.ttf differ diff --git a/static/fonts/liberation/LiberationSans-Italic.ttf b/static/fonts/liberation/LiberationSans-Italic.ttf new file mode 100644 index 00000000..45524575 Binary files /dev/null and b/static/fonts/liberation/LiberationSans-Italic.ttf differ diff --git a/static/fonts/liberation/LiberationSans-Regular.ttf b/static/fonts/liberation/LiberationSans-Regular.ttf new file mode 100644 index 00000000..6574dbcb Binary files /dev/null and b/static/fonts/liberation/LiberationSans-Regular.ttf differ diff --git a/static/fonts/liberation/LiberationSerif-Bold.ttf b/static/fonts/liberation/LiberationSerif-Bold.ttf new file mode 100644 index 00000000..2e233255 Binary files /dev/null and b/static/fonts/liberation/LiberationSerif-Bold.ttf differ diff --git a/static/fonts/liberation/LiberationSerif-BoldItalic.ttf b/static/fonts/liberation/LiberationSerif-BoldItalic.ttf new file mode 100644 index 00000000..e36fa0db Binary files /dev/null and b/static/fonts/liberation/LiberationSerif-BoldItalic.ttf differ diff --git a/static/fonts/liberation/LiberationSerif-Italic.ttf b/static/fonts/liberation/LiberationSerif-Italic.ttf new file mode 100644 index 00000000..5268b81b Binary files /dev/null and b/static/fonts/liberation/LiberationSerif-Italic.ttf differ diff --git a/static/fonts/liberation/LiberationSerif-Regular.ttf b/static/fonts/liberation/LiberationSerif-Regular.ttf new file mode 100644 index 00000000..8d273357 Binary files /dev/null and b/static/fonts/liberation/LiberationSerif-Regular.ttf differ diff --git a/static/fonts/noto/NotoColorEmoji.ttf b/static/fonts/noto/NotoColorEmoji.ttf new file mode 100644 index 00000000..cf7a47e9 Binary files /dev/null and b/static/fonts/noto/NotoColorEmoji.ttf differ diff --git a/static/fonts/noto/NotoFangsongKSSRotated-Regular.ttf b/static/fonts/noto/NotoFangsongKSSRotated-Regular.ttf new file mode 100644 index 00000000..bd163381 Binary files /dev/null and b/static/fonts/noto/NotoFangsongKSSRotated-Regular.ttf differ diff --git a/static/fonts/noto/NotoFangsongKSSVertical-Regular.ttf b/static/fonts/noto/NotoFangsongKSSVertical-Regular.ttf new file mode 100644 index 00000000..4f308655 Binary files /dev/null and b/static/fonts/noto/NotoFangsongKSSVertical-Regular.ttf differ diff --git a/static/fonts/noto/NotoKufiArabic-Black.ttf b/static/fonts/noto/NotoKufiArabic-Black.ttf new file mode 100644 index 00000000..edb393fa Binary files /dev/null and b/static/fonts/noto/NotoKufiArabic-Black.ttf differ diff --git a/static/fonts/noto/NotoKufiArabic-Bold.ttf b/static/fonts/noto/NotoKufiArabic-Bold.ttf new file mode 100644 index 00000000..a291ca65 Binary files /dev/null and b/static/fonts/noto/NotoKufiArabic-Bold.ttf differ diff --git a/static/fonts/noto/NotoKufiArabic-Light.ttf b/static/fonts/noto/NotoKufiArabic-Light.ttf new file mode 100644 index 00000000..2d395df9 Binary files /dev/null and b/static/fonts/noto/NotoKufiArabic-Light.ttf differ diff --git a/static/fonts/noto/NotoKufiArabic-Medium.ttf b/static/fonts/noto/NotoKufiArabic-Medium.ttf new file mode 100644 index 00000000..0372d58a Binary files /dev/null and b/static/fonts/noto/NotoKufiArabic-Medium.ttf differ diff --git a/static/fonts/noto/NotoKufiArabic-Regular.ttf b/static/fonts/noto/NotoKufiArabic-Regular.ttf new file mode 100644 index 00000000..8d3a54c2 Binary files /dev/null and b/static/fonts/noto/NotoKufiArabic-Regular.ttf differ diff --git a/static/fonts/noto/NotoKufiArabic-Thin.ttf b/static/fonts/noto/NotoKufiArabic-Thin.ttf new file mode 100644 index 00000000..8a3182e7 Binary files /dev/null and b/static/fonts/noto/NotoKufiArabic-Thin.ttf differ diff --git a/static/fonts/noto/NotoMusic-Regular.ttf b/static/fonts/noto/NotoMusic-Regular.ttf new file mode 100644 index 00000000..f0436dd9 Binary files /dev/null and b/static/fonts/noto/NotoMusic-Regular.ttf differ diff --git a/static/fonts/noto/NotoNaskhArabic-Bold.ttf b/static/fonts/noto/NotoNaskhArabic-Bold.ttf new file mode 100644 index 00000000..9cff8a76 Binary files /dev/null and b/static/fonts/noto/NotoNaskhArabic-Bold.ttf differ diff --git a/static/fonts/noto/NotoNaskhArabic-Medium.ttf b/static/fonts/noto/NotoNaskhArabic-Medium.ttf new file mode 100644 index 00000000..07e2178f Binary files /dev/null and b/static/fonts/noto/NotoNaskhArabic-Medium.ttf differ diff --git a/static/fonts/noto/NotoNaskhArabic-Regular.ttf b/static/fonts/noto/NotoNaskhArabic-Regular.ttf new file mode 100644 index 00000000..2048eb4b Binary files /dev/null and b/static/fonts/noto/NotoNaskhArabic-Regular.ttf differ diff --git a/static/fonts/noto/NotoNaskhArabicUI-Bold.ttf b/static/fonts/noto/NotoNaskhArabicUI-Bold.ttf new file mode 100644 index 00000000..d4938ab8 Binary files /dev/null and b/static/fonts/noto/NotoNaskhArabicUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoNaskhArabicUI-Medium.ttf b/static/fonts/noto/NotoNaskhArabicUI-Medium.ttf new file mode 100644 index 00000000..b245d40b Binary files /dev/null and b/static/fonts/noto/NotoNaskhArabicUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoNaskhArabicUI-Regular.ttf b/static/fonts/noto/NotoNaskhArabicUI-Regular.ttf new file mode 100644 index 00000000..93a4ff91 Binary files /dev/null and b/static/fonts/noto/NotoNaskhArabicUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoNastaliqUrdu-Bold.ttf b/static/fonts/noto/NotoNastaliqUrdu-Bold.ttf new file mode 100644 index 00000000..13122b43 Binary files /dev/null and b/static/fonts/noto/NotoNastaliqUrdu-Bold.ttf differ diff --git a/static/fonts/noto/NotoNastaliqUrdu-Regular.ttf b/static/fonts/noto/NotoNastaliqUrdu-Regular.ttf new file mode 100644 index 00000000..754b292c Binary files /dev/null and b/static/fonts/noto/NotoNastaliqUrdu-Regular.ttf differ diff --git a/static/fonts/noto/NotoRashiHebrew-Black.ttf b/static/fonts/noto/NotoRashiHebrew-Black.ttf new file mode 100644 index 00000000..ec141d2f Binary files /dev/null and b/static/fonts/noto/NotoRashiHebrew-Black.ttf differ diff --git a/static/fonts/noto/NotoRashiHebrew-Bold.ttf b/static/fonts/noto/NotoRashiHebrew-Bold.ttf new file mode 100644 index 00000000..45a1d707 Binary files /dev/null and b/static/fonts/noto/NotoRashiHebrew-Bold.ttf differ diff --git a/static/fonts/noto/NotoRashiHebrew-Light.ttf b/static/fonts/noto/NotoRashiHebrew-Light.ttf new file mode 100644 index 00000000..fed15bc2 Binary files /dev/null and b/static/fonts/noto/NotoRashiHebrew-Light.ttf differ diff --git a/static/fonts/noto/NotoRashiHebrew-Medium.ttf b/static/fonts/noto/NotoRashiHebrew-Medium.ttf new file mode 100644 index 00000000..a6e6c66e Binary files /dev/null and b/static/fonts/noto/NotoRashiHebrew-Medium.ttf differ diff --git a/static/fonts/noto/NotoRashiHebrew-Regular.ttf b/static/fonts/noto/NotoRashiHebrew-Regular.ttf new file mode 100644 index 00000000..636d1260 Binary files /dev/null and b/static/fonts/noto/NotoRashiHebrew-Regular.ttf differ diff --git a/static/fonts/noto/NotoRashiHebrew-Thin.ttf b/static/fonts/noto/NotoRashiHebrew-Thin.ttf new file mode 100644 index 00000000..9d658ee4 Binary files /dev/null and b/static/fonts/noto/NotoRashiHebrew-Thin.ttf differ diff --git a/static/fonts/noto/NotoSans-Black.ttf b/static/fonts/noto/NotoSans-Black.ttf new file mode 100644 index 00000000..4c2548dc Binary files /dev/null and b/static/fonts/noto/NotoSans-Black.ttf differ diff --git a/static/fonts/noto/NotoSans-BlackItalic.ttf b/static/fonts/noto/NotoSans-BlackItalic.ttf new file mode 100644 index 00000000..53cb5d3b Binary files /dev/null and b/static/fonts/noto/NotoSans-BlackItalic.ttf differ diff --git a/static/fonts/noto/NotoSans-Bold.ttf b/static/fonts/noto/NotoSans-Bold.ttf new file mode 100644 index 00000000..785ef8a2 Binary files /dev/null and b/static/fonts/noto/NotoSans-Bold.ttf differ diff --git a/static/fonts/noto/NotoSans-BoldItalic.ttf b/static/fonts/noto/NotoSans-BoldItalic.ttf new file mode 100644 index 00000000..55e9ec2c Binary files /dev/null and b/static/fonts/noto/NotoSans-BoldItalic.ttf differ diff --git a/static/fonts/noto/NotoSans-Italic.ttf b/static/fonts/noto/NotoSans-Italic.ttf new file mode 100644 index 00000000..b7ac1bbe Binary files /dev/null and b/static/fonts/noto/NotoSans-Italic.ttf differ diff --git a/static/fonts/noto/NotoSans-Light.ttf b/static/fonts/noto/NotoSans-Light.ttf new file mode 100644 index 00000000..15b9e9c7 Binary files /dev/null and b/static/fonts/noto/NotoSans-Light.ttf differ diff --git a/static/fonts/noto/NotoSans-LightItalic.ttf b/static/fonts/noto/NotoSans-LightItalic.ttf new file mode 100644 index 00000000..26e2cabc Binary files /dev/null and b/static/fonts/noto/NotoSans-LightItalic.ttf differ diff --git a/static/fonts/noto/NotoSans-Medium.ttf b/static/fonts/noto/NotoSans-Medium.ttf new file mode 100644 index 00000000..0e78b6aa Binary files /dev/null and b/static/fonts/noto/NotoSans-Medium.ttf differ diff --git a/static/fonts/noto/NotoSans-MediumItalic.ttf b/static/fonts/noto/NotoSans-MediumItalic.ttf new file mode 100644 index 00000000..8aa324f8 Binary files /dev/null and b/static/fonts/noto/NotoSans-MediumItalic.ttf differ diff --git a/static/fonts/noto/NotoSans-Regular.ttf b/static/fonts/noto/NotoSans-Regular.ttf new file mode 100644 index 00000000..bdc1ffa1 Binary files /dev/null and b/static/fonts/noto/NotoSans-Regular.ttf differ diff --git a/static/fonts/noto/NotoSans-Thin.ttf b/static/fonts/noto/NotoSans-Thin.ttf new file mode 100644 index 00000000..bf73016f Binary files /dev/null and b/static/fonts/noto/NotoSans-Thin.ttf differ diff --git a/static/fonts/noto/NotoSans-ThinItalic.ttf b/static/fonts/noto/NotoSans-ThinItalic.ttf new file mode 100644 index 00000000..ef5b1359 Binary files /dev/null and b/static/fonts/noto/NotoSans-ThinItalic.ttf differ diff --git a/static/fonts/noto/NotoSansAdlam-Bold.ttf b/static/fonts/noto/NotoSansAdlam-Bold.ttf new file mode 100644 index 00000000..7e6e1374 Binary files /dev/null and b/static/fonts/noto/NotoSansAdlam-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansAdlam-Regular.ttf b/static/fonts/noto/NotoSansAdlam-Regular.ttf new file mode 100644 index 00000000..b8370d74 Binary files /dev/null and b/static/fonts/noto/NotoSansAdlam-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansAdlamUnjoined-Bold.ttf b/static/fonts/noto/NotoSansAdlamUnjoined-Bold.ttf new file mode 100644 index 00000000..868d7b4e Binary files /dev/null and b/static/fonts/noto/NotoSansAdlamUnjoined-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansAdlamUnjoined-Regular.ttf b/static/fonts/noto/NotoSansAdlamUnjoined-Regular.ttf new file mode 100644 index 00000000..4d288ad9 Binary files /dev/null and b/static/fonts/noto/NotoSansAdlamUnjoined-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansAnatolianHieroglyphs-Regular.ttf b/static/fonts/noto/NotoSansAnatolianHieroglyphs-Regular.ttf new file mode 100644 index 00000000..d34482e7 Binary files /dev/null and b/static/fonts/noto/NotoSansAnatolianHieroglyphs-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansArabic-Black.ttf b/static/fonts/noto/NotoSansArabic-Black.ttf new file mode 100644 index 00000000..1efcb7d1 Binary files /dev/null and b/static/fonts/noto/NotoSansArabic-Black.ttf differ diff --git a/static/fonts/noto/NotoSansArabic-Bold.ttf b/static/fonts/noto/NotoSansArabic-Bold.ttf new file mode 100644 index 00000000..c059a27d Binary files /dev/null and b/static/fonts/noto/NotoSansArabic-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansArabic-Light.ttf b/static/fonts/noto/NotoSansArabic-Light.ttf new file mode 100644 index 00000000..8e2e6fe1 Binary files /dev/null and b/static/fonts/noto/NotoSansArabic-Light.ttf differ diff --git a/static/fonts/noto/NotoSansArabic-Medium.ttf b/static/fonts/noto/NotoSansArabic-Medium.ttf new file mode 100644 index 00000000..39e822c5 Binary files /dev/null and b/static/fonts/noto/NotoSansArabic-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansArabic-Regular.ttf b/static/fonts/noto/NotoSansArabic-Regular.ttf new file mode 100644 index 00000000..9a16eb82 Binary files /dev/null and b/static/fonts/noto/NotoSansArabic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansArabic-Thin.ttf b/static/fonts/noto/NotoSansArabic-Thin.ttf new file mode 100644 index 00000000..21e80981 Binary files /dev/null and b/static/fonts/noto/NotoSansArabic-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansArmenian-Black.ttf b/static/fonts/noto/NotoSansArmenian-Black.ttf new file mode 100644 index 00000000..0c5686dd Binary files /dev/null and b/static/fonts/noto/NotoSansArmenian-Black.ttf differ diff --git a/static/fonts/noto/NotoSansArmenian-Bold.ttf b/static/fonts/noto/NotoSansArmenian-Bold.ttf new file mode 100644 index 00000000..1082aac6 Binary files /dev/null and b/static/fonts/noto/NotoSansArmenian-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansArmenian-Light.ttf b/static/fonts/noto/NotoSansArmenian-Light.ttf new file mode 100644 index 00000000..b8287c1e Binary files /dev/null and b/static/fonts/noto/NotoSansArmenian-Light.ttf differ diff --git a/static/fonts/noto/NotoSansArmenian-Medium.ttf b/static/fonts/noto/NotoSansArmenian-Medium.ttf new file mode 100644 index 00000000..a57cc1a4 Binary files /dev/null and b/static/fonts/noto/NotoSansArmenian-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansArmenian-Regular.ttf b/static/fonts/noto/NotoSansArmenian-Regular.ttf new file mode 100644 index 00000000..08069ed0 Binary files /dev/null and b/static/fonts/noto/NotoSansArmenian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansArmenian-Thin.ttf b/static/fonts/noto/NotoSansArmenian-Thin.ttf new file mode 100644 index 00000000..a6da3b0c Binary files /dev/null and b/static/fonts/noto/NotoSansArmenian-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansAvestan-Regular.ttf b/static/fonts/noto/NotoSansAvestan-Regular.ttf new file mode 100644 index 00000000..cc982fb1 Binary files /dev/null and b/static/fonts/noto/NotoSansAvestan-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBalinese-Bold.ttf b/static/fonts/noto/NotoSansBalinese-Bold.ttf new file mode 100644 index 00000000..60a8b864 Binary files /dev/null and b/static/fonts/noto/NotoSansBalinese-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansBalinese-Medium.ttf b/static/fonts/noto/NotoSansBalinese-Medium.ttf new file mode 100644 index 00000000..898d113c Binary files /dev/null and b/static/fonts/noto/NotoSansBalinese-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansBalinese-Regular.ttf b/static/fonts/noto/NotoSansBalinese-Regular.ttf new file mode 100644 index 00000000..e1fc5fd3 Binary files /dev/null and b/static/fonts/noto/NotoSansBalinese-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBamum-Bold.ttf b/static/fonts/noto/NotoSansBamum-Bold.ttf new file mode 100644 index 00000000..ffb16851 Binary files /dev/null and b/static/fonts/noto/NotoSansBamum-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansBamum-Medium.ttf b/static/fonts/noto/NotoSansBamum-Medium.ttf new file mode 100644 index 00000000..54f0dfcf Binary files /dev/null and b/static/fonts/noto/NotoSansBamum-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansBamum-Regular.ttf b/static/fonts/noto/NotoSansBamum-Regular.ttf new file mode 100644 index 00000000..cd754cdc Binary files /dev/null and b/static/fonts/noto/NotoSansBamum-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBassaVah-Bold.ttf b/static/fonts/noto/NotoSansBassaVah-Bold.ttf new file mode 100644 index 00000000..82fa73d2 Binary files /dev/null and b/static/fonts/noto/NotoSansBassaVah-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansBassaVah-Medium.ttf b/static/fonts/noto/NotoSansBassaVah-Medium.ttf new file mode 100644 index 00000000..54b68378 Binary files /dev/null and b/static/fonts/noto/NotoSansBassaVah-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansBassaVah-Regular.ttf b/static/fonts/noto/NotoSansBassaVah-Regular.ttf new file mode 100644 index 00000000..b427d466 Binary files /dev/null and b/static/fonts/noto/NotoSansBassaVah-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBatak-Regular.ttf b/static/fonts/noto/NotoSansBatak-Regular.ttf new file mode 100644 index 00000000..2172d922 Binary files /dev/null and b/static/fonts/noto/NotoSansBatak-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBengali-Black.ttf b/static/fonts/noto/NotoSansBengali-Black.ttf new file mode 100644 index 00000000..9c61318a Binary files /dev/null and b/static/fonts/noto/NotoSansBengali-Black.ttf differ diff --git a/static/fonts/noto/NotoSansBengali-Bold.ttf b/static/fonts/noto/NotoSansBengali-Bold.ttf new file mode 100644 index 00000000..fc6a6dc9 Binary files /dev/null and b/static/fonts/noto/NotoSansBengali-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansBengali-Light.ttf b/static/fonts/noto/NotoSansBengali-Light.ttf new file mode 100644 index 00000000..101c55c5 Binary files /dev/null and b/static/fonts/noto/NotoSansBengali-Light.ttf differ diff --git a/static/fonts/noto/NotoSansBengali-Medium.ttf b/static/fonts/noto/NotoSansBengali-Medium.ttf new file mode 100644 index 00000000..c64066fe Binary files /dev/null and b/static/fonts/noto/NotoSansBengali-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansBengali-Regular.ttf b/static/fonts/noto/NotoSansBengali-Regular.ttf new file mode 100644 index 00000000..756414c5 Binary files /dev/null and b/static/fonts/noto/NotoSansBengali-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBengali-Thin.ttf b/static/fonts/noto/NotoSansBengali-Thin.ttf new file mode 100644 index 00000000..ec8589da Binary files /dev/null and b/static/fonts/noto/NotoSansBengali-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansBengaliUI-Black.ttf b/static/fonts/noto/NotoSansBengaliUI-Black.ttf new file mode 100644 index 00000000..7dbd29ec Binary files /dev/null and b/static/fonts/noto/NotoSansBengaliUI-Black.ttf differ diff --git a/static/fonts/noto/NotoSansBengaliUI-Bold.ttf b/static/fonts/noto/NotoSansBengaliUI-Bold.ttf new file mode 100644 index 00000000..74ef3eae Binary files /dev/null and b/static/fonts/noto/NotoSansBengaliUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansBengaliUI-Light.ttf b/static/fonts/noto/NotoSansBengaliUI-Light.ttf new file mode 100644 index 00000000..9ceeba04 Binary files /dev/null and b/static/fonts/noto/NotoSansBengaliUI-Light.ttf differ diff --git a/static/fonts/noto/NotoSansBengaliUI-Medium.ttf b/static/fonts/noto/NotoSansBengaliUI-Medium.ttf new file mode 100644 index 00000000..57a299ea Binary files /dev/null and b/static/fonts/noto/NotoSansBengaliUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansBengaliUI-Regular.ttf b/static/fonts/noto/NotoSansBengaliUI-Regular.ttf new file mode 100644 index 00000000..135b3be8 Binary files /dev/null and b/static/fonts/noto/NotoSansBengaliUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBengaliUI-Thin.ttf b/static/fonts/noto/NotoSansBengaliUI-Thin.ttf new file mode 100644 index 00000000..1591e22f Binary files /dev/null and b/static/fonts/noto/NotoSansBengaliUI-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansBhaiksuki-Regular.ttf b/static/fonts/noto/NotoSansBhaiksuki-Regular.ttf new file mode 100644 index 00000000..1ced47ac Binary files /dev/null and b/static/fonts/noto/NotoSansBhaiksuki-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBrahmi-Regular.ttf b/static/fonts/noto/NotoSansBrahmi-Regular.ttf new file mode 100644 index 00000000..051bfd2f Binary files /dev/null and b/static/fonts/noto/NotoSansBrahmi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBuginese-Regular.ttf b/static/fonts/noto/NotoSansBuginese-Regular.ttf new file mode 100644 index 00000000..3f8a02db Binary files /dev/null and b/static/fonts/noto/NotoSansBuginese-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansBuhid-Regular.ttf b/static/fonts/noto/NotoSansBuhid-Regular.ttf new file mode 100644 index 00000000..a4ff9be3 Binary files /dev/null and b/static/fonts/noto/NotoSansBuhid-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCanadianAboriginal-Black.ttf b/static/fonts/noto/NotoSansCanadianAboriginal-Black.ttf new file mode 100644 index 00000000..0be9bf4e Binary files /dev/null and b/static/fonts/noto/NotoSansCanadianAboriginal-Black.ttf differ diff --git a/static/fonts/noto/NotoSansCanadianAboriginal-Bold.ttf b/static/fonts/noto/NotoSansCanadianAboriginal-Bold.ttf new file mode 100644 index 00000000..5a94b7a5 Binary files /dev/null and b/static/fonts/noto/NotoSansCanadianAboriginal-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansCanadianAboriginal-Light.ttf b/static/fonts/noto/NotoSansCanadianAboriginal-Light.ttf new file mode 100644 index 00000000..28a96b00 Binary files /dev/null and b/static/fonts/noto/NotoSansCanadianAboriginal-Light.ttf differ diff --git a/static/fonts/noto/NotoSansCanadianAboriginal-Medium.ttf b/static/fonts/noto/NotoSansCanadianAboriginal-Medium.ttf new file mode 100644 index 00000000..29ea25ce Binary files /dev/null and b/static/fonts/noto/NotoSansCanadianAboriginal-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansCanadianAboriginal-Regular.ttf b/static/fonts/noto/NotoSansCanadianAboriginal-Regular.ttf new file mode 100644 index 00000000..84deca84 Binary files /dev/null and b/static/fonts/noto/NotoSansCanadianAboriginal-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCanadianAboriginal-Thin.ttf b/static/fonts/noto/NotoSansCanadianAboriginal-Thin.ttf new file mode 100644 index 00000000..95bfe7a3 Binary files /dev/null and b/static/fonts/noto/NotoSansCanadianAboriginal-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansCarian-Regular.ttf b/static/fonts/noto/NotoSansCarian-Regular.ttf new file mode 100644 index 00000000..b68e57c1 Binary files /dev/null and b/static/fonts/noto/NotoSansCarian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCaucasianAlbanian-Regular.ttf b/static/fonts/noto/NotoSansCaucasianAlbanian-Regular.ttf new file mode 100644 index 00000000..b4717b58 Binary files /dev/null and b/static/fonts/noto/NotoSansCaucasianAlbanian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansChakma-Regular.ttf b/static/fonts/noto/NotoSansChakma-Regular.ttf new file mode 100644 index 00000000..c09c8802 Binary files /dev/null and b/static/fonts/noto/NotoSansChakma-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCham-Black.ttf b/static/fonts/noto/NotoSansCham-Black.ttf new file mode 100644 index 00000000..be686393 Binary files /dev/null and b/static/fonts/noto/NotoSansCham-Black.ttf differ diff --git a/static/fonts/noto/NotoSansCham-Bold.ttf b/static/fonts/noto/NotoSansCham-Bold.ttf new file mode 100644 index 00000000..04f65593 Binary files /dev/null and b/static/fonts/noto/NotoSansCham-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansCham-Light.ttf b/static/fonts/noto/NotoSansCham-Light.ttf new file mode 100644 index 00000000..8e569636 Binary files /dev/null and b/static/fonts/noto/NotoSansCham-Light.ttf differ diff --git a/static/fonts/noto/NotoSansCham-Medium.ttf b/static/fonts/noto/NotoSansCham-Medium.ttf new file mode 100644 index 00000000..8c0fa099 Binary files /dev/null and b/static/fonts/noto/NotoSansCham-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansCham-Regular.ttf b/static/fonts/noto/NotoSansCham-Regular.ttf new file mode 100644 index 00000000..6f1c7081 Binary files /dev/null and b/static/fonts/noto/NotoSansCham-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCham-Thin.ttf b/static/fonts/noto/NotoSansCham-Thin.ttf new file mode 100644 index 00000000..8b13bbaf Binary files /dev/null and b/static/fonts/noto/NotoSansCham-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansCherokee-Black.ttf b/static/fonts/noto/NotoSansCherokee-Black.ttf new file mode 100644 index 00000000..0ccde6d4 Binary files /dev/null and b/static/fonts/noto/NotoSansCherokee-Black.ttf differ diff --git a/static/fonts/noto/NotoSansCherokee-Bold.ttf b/static/fonts/noto/NotoSansCherokee-Bold.ttf new file mode 100644 index 00000000..f3d7627d Binary files /dev/null and b/static/fonts/noto/NotoSansCherokee-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansCherokee-Light.ttf b/static/fonts/noto/NotoSansCherokee-Light.ttf new file mode 100644 index 00000000..399d9d52 Binary files /dev/null and b/static/fonts/noto/NotoSansCherokee-Light.ttf differ diff --git a/static/fonts/noto/NotoSansCherokee-Medium.ttf b/static/fonts/noto/NotoSansCherokee-Medium.ttf new file mode 100644 index 00000000..00295a04 Binary files /dev/null and b/static/fonts/noto/NotoSansCherokee-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansCherokee-Regular.ttf b/static/fonts/noto/NotoSansCherokee-Regular.ttf new file mode 100644 index 00000000..de446dc7 Binary files /dev/null and b/static/fonts/noto/NotoSansCherokee-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCherokee-Thin.ttf b/static/fonts/noto/NotoSansCherokee-Thin.ttf new file mode 100644 index 00000000..e274d57c Binary files /dev/null and b/static/fonts/noto/NotoSansCherokee-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansChorasmian-Regular.ttf b/static/fonts/noto/NotoSansChorasmian-Regular.ttf new file mode 100644 index 00000000..7d93e077 Binary files /dev/null and b/static/fonts/noto/NotoSansChorasmian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCoptic-Regular.ttf b/static/fonts/noto/NotoSansCoptic-Regular.ttf new file mode 100644 index 00000000..95542067 Binary files /dev/null and b/static/fonts/noto/NotoSansCoptic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCuneiform-Regular.ttf b/static/fonts/noto/NotoSansCuneiform-Regular.ttf new file mode 100644 index 00000000..1b8be82a Binary files /dev/null and b/static/fonts/noto/NotoSansCuneiform-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCypriot-Regular.ttf b/static/fonts/noto/NotoSansCypriot-Regular.ttf new file mode 100644 index 00000000..c0c592d1 Binary files /dev/null and b/static/fonts/noto/NotoSansCypriot-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansCyproMinoan-Regular.ttf b/static/fonts/noto/NotoSansCyproMinoan-Regular.ttf new file mode 100644 index 00000000..e8cabb20 Binary files /dev/null and b/static/fonts/noto/NotoSansCyproMinoan-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansDeseret-Regular.ttf b/static/fonts/noto/NotoSansDeseret-Regular.ttf new file mode 100644 index 00000000..a1cfa42a Binary files /dev/null and b/static/fonts/noto/NotoSansDeseret-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagari-Black.ttf b/static/fonts/noto/NotoSansDevanagari-Black.ttf new file mode 100644 index 00000000..df33e9b7 Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagari-Black.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagari-Bold.ttf b/static/fonts/noto/NotoSansDevanagari-Bold.ttf new file mode 100644 index 00000000..177a694a Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagari-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagari-Light.ttf b/static/fonts/noto/NotoSansDevanagari-Light.ttf new file mode 100644 index 00000000..c624a109 Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagari-Light.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagari-Medium.ttf b/static/fonts/noto/NotoSansDevanagari-Medium.ttf new file mode 100644 index 00000000..f5b4191c Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagari-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagari-Regular.ttf b/static/fonts/noto/NotoSansDevanagari-Regular.ttf new file mode 100644 index 00000000..7f44f3ff Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagari-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagari-Thin.ttf b/static/fonts/noto/NotoSansDevanagari-Thin.ttf new file mode 100644 index 00000000..612be6e5 Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagari-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagariUI-Black.ttf b/static/fonts/noto/NotoSansDevanagariUI-Black.ttf new file mode 100644 index 00000000..f972ad15 Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagariUI-Black.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagariUI-Bold.ttf b/static/fonts/noto/NotoSansDevanagariUI-Bold.ttf new file mode 100644 index 00000000..88ffeabb Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagariUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagariUI-Light.ttf b/static/fonts/noto/NotoSansDevanagariUI-Light.ttf new file mode 100644 index 00000000..cf1a6b6b Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagariUI-Light.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagariUI-Medium.ttf b/static/fonts/noto/NotoSansDevanagariUI-Medium.ttf new file mode 100644 index 00000000..ea5e7f22 Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagariUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagariUI-Regular.ttf b/static/fonts/noto/NotoSansDevanagariUI-Regular.ttf new file mode 100644 index 00000000..102ffce0 Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagariUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansDevanagariUI-Thin.ttf b/static/fonts/noto/NotoSansDevanagariUI-Thin.ttf new file mode 100644 index 00000000..c040b193 Binary files /dev/null and b/static/fonts/noto/NotoSansDevanagariUI-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansDuployan-Bold.ttf b/static/fonts/noto/NotoSansDuployan-Bold.ttf new file mode 100644 index 00000000..7246efeb Binary files /dev/null and b/static/fonts/noto/NotoSansDuployan-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansDuployan-Regular.ttf b/static/fonts/noto/NotoSansDuployan-Regular.ttf new file mode 100644 index 00000000..445b57e0 Binary files /dev/null and b/static/fonts/noto/NotoSansDuployan-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansEgyptianHieroglyphs-Regular.ttf b/static/fonts/noto/NotoSansEgyptianHieroglyphs-Regular.ttf new file mode 100644 index 00000000..a55f3e60 Binary files /dev/null and b/static/fonts/noto/NotoSansEgyptianHieroglyphs-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansElbasan-Regular.ttf b/static/fonts/noto/NotoSansElbasan-Regular.ttf new file mode 100644 index 00000000..ec74cd50 Binary files /dev/null and b/static/fonts/noto/NotoSansElbasan-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansElymaic-Regular.ttf b/static/fonts/noto/NotoSansElymaic-Regular.ttf new file mode 100644 index 00000000..ab110a99 Binary files /dev/null and b/static/fonts/noto/NotoSansElymaic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansEthiopic-Black.ttf b/static/fonts/noto/NotoSansEthiopic-Black.ttf new file mode 100644 index 00000000..7635b709 Binary files /dev/null and b/static/fonts/noto/NotoSansEthiopic-Black.ttf differ diff --git a/static/fonts/noto/NotoSansEthiopic-Bold.ttf b/static/fonts/noto/NotoSansEthiopic-Bold.ttf new file mode 100644 index 00000000..f2bcb237 Binary files /dev/null and b/static/fonts/noto/NotoSansEthiopic-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansEthiopic-Light.ttf b/static/fonts/noto/NotoSansEthiopic-Light.ttf new file mode 100644 index 00000000..aba684b9 Binary files /dev/null and b/static/fonts/noto/NotoSansEthiopic-Light.ttf differ diff --git a/static/fonts/noto/NotoSansEthiopic-Medium.ttf b/static/fonts/noto/NotoSansEthiopic-Medium.ttf new file mode 100644 index 00000000..2059de22 Binary files /dev/null and b/static/fonts/noto/NotoSansEthiopic-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansEthiopic-Regular.ttf b/static/fonts/noto/NotoSansEthiopic-Regular.ttf new file mode 100644 index 00000000..8820031e Binary files /dev/null and b/static/fonts/noto/NotoSansEthiopic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansEthiopic-Thin.ttf b/static/fonts/noto/NotoSansEthiopic-Thin.ttf new file mode 100644 index 00000000..6c7c92f9 Binary files /dev/null and b/static/fonts/noto/NotoSansEthiopic-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansGeorgian-Black.ttf b/static/fonts/noto/NotoSansGeorgian-Black.ttf new file mode 100644 index 00000000..998d7ae1 Binary files /dev/null and b/static/fonts/noto/NotoSansGeorgian-Black.ttf differ diff --git a/static/fonts/noto/NotoSansGeorgian-Bold.ttf b/static/fonts/noto/NotoSansGeorgian-Bold.ttf new file mode 100644 index 00000000..2dcb058c Binary files /dev/null and b/static/fonts/noto/NotoSansGeorgian-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansGeorgian-Light.ttf b/static/fonts/noto/NotoSansGeorgian-Light.ttf new file mode 100644 index 00000000..d07a9a14 Binary files /dev/null and b/static/fonts/noto/NotoSansGeorgian-Light.ttf differ diff --git a/static/fonts/noto/NotoSansGeorgian-Medium.ttf b/static/fonts/noto/NotoSansGeorgian-Medium.ttf new file mode 100644 index 00000000..a84c78d5 Binary files /dev/null and b/static/fonts/noto/NotoSansGeorgian-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansGeorgian-Regular.ttf b/static/fonts/noto/NotoSansGeorgian-Regular.ttf new file mode 100644 index 00000000..1c47002f Binary files /dev/null and b/static/fonts/noto/NotoSansGeorgian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansGeorgian-Thin.ttf b/static/fonts/noto/NotoSansGeorgian-Thin.ttf new file mode 100644 index 00000000..dea7e5e5 Binary files /dev/null and b/static/fonts/noto/NotoSansGeorgian-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansGlagolitic-Regular.ttf b/static/fonts/noto/NotoSansGlagolitic-Regular.ttf new file mode 100644 index 00000000..06e7df46 Binary files /dev/null and b/static/fonts/noto/NotoSansGlagolitic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansGothic-Regular.ttf b/static/fonts/noto/NotoSansGothic-Regular.ttf new file mode 100644 index 00000000..c246e340 Binary files /dev/null and b/static/fonts/noto/NotoSansGothic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansGrantha-Regular.ttf b/static/fonts/noto/NotoSansGrantha-Regular.ttf new file mode 100644 index 00000000..7f13cf95 Binary files /dev/null and b/static/fonts/noto/NotoSansGrantha-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansGujarati-Black.ttf b/static/fonts/noto/NotoSansGujarati-Black.ttf new file mode 100644 index 00000000..a552ebe4 Binary files /dev/null and b/static/fonts/noto/NotoSansGujarati-Black.ttf differ diff --git a/static/fonts/noto/NotoSansGujarati-Bold.ttf b/static/fonts/noto/NotoSansGujarati-Bold.ttf new file mode 100644 index 00000000..2d333016 Binary files /dev/null and b/static/fonts/noto/NotoSansGujarati-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansGujarati-Light.ttf b/static/fonts/noto/NotoSansGujarati-Light.ttf new file mode 100644 index 00000000..8127c935 Binary files /dev/null and b/static/fonts/noto/NotoSansGujarati-Light.ttf differ diff --git a/static/fonts/noto/NotoSansGujarati-Medium.ttf b/static/fonts/noto/NotoSansGujarati-Medium.ttf new file mode 100644 index 00000000..5f749494 Binary files /dev/null and b/static/fonts/noto/NotoSansGujarati-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansGujarati-Regular.ttf b/static/fonts/noto/NotoSansGujarati-Regular.ttf new file mode 100644 index 00000000..cf100cfa Binary files /dev/null and b/static/fonts/noto/NotoSansGujarati-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansGujarati-Thin.ttf b/static/fonts/noto/NotoSansGujarati-Thin.ttf new file mode 100644 index 00000000..26903d8f Binary files /dev/null and b/static/fonts/noto/NotoSansGujarati-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansGujaratiUI-Black.ttf b/static/fonts/noto/NotoSansGujaratiUI-Black.ttf new file mode 100644 index 00000000..212e38d1 Binary files /dev/null and b/static/fonts/noto/NotoSansGujaratiUI-Black.ttf differ diff --git a/static/fonts/noto/NotoSansGujaratiUI-Bold.ttf b/static/fonts/noto/NotoSansGujaratiUI-Bold.ttf new file mode 100644 index 00000000..01951ac9 Binary files /dev/null and b/static/fonts/noto/NotoSansGujaratiUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansGujaratiUI-Light.ttf b/static/fonts/noto/NotoSansGujaratiUI-Light.ttf new file mode 100644 index 00000000..42513063 Binary files /dev/null and b/static/fonts/noto/NotoSansGujaratiUI-Light.ttf differ diff --git a/static/fonts/noto/NotoSansGujaratiUI-Medium.ttf b/static/fonts/noto/NotoSansGujaratiUI-Medium.ttf new file mode 100644 index 00000000..619e519a Binary files /dev/null and b/static/fonts/noto/NotoSansGujaratiUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansGujaratiUI-Regular.ttf b/static/fonts/noto/NotoSansGujaratiUI-Regular.ttf new file mode 100644 index 00000000..ee5f329d Binary files /dev/null and b/static/fonts/noto/NotoSansGujaratiUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansGujaratiUI-Thin.ttf b/static/fonts/noto/NotoSansGujaratiUI-Thin.ttf new file mode 100644 index 00000000..a07b813e Binary files /dev/null and b/static/fonts/noto/NotoSansGujaratiUI-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansGunjalaGondi-Bold.ttf b/static/fonts/noto/NotoSansGunjalaGondi-Bold.ttf new file mode 100644 index 00000000..98fc87a5 Binary files /dev/null and b/static/fonts/noto/NotoSansGunjalaGondi-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansGunjalaGondi-Medium.ttf b/static/fonts/noto/NotoSansGunjalaGondi-Medium.ttf new file mode 100644 index 00000000..df00494d Binary files /dev/null and b/static/fonts/noto/NotoSansGunjalaGondi-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansGunjalaGondi-Regular.ttf b/static/fonts/noto/NotoSansGunjalaGondi-Regular.ttf new file mode 100644 index 00000000..7a2eced5 Binary files /dev/null and b/static/fonts/noto/NotoSansGunjalaGondi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhi-Black.ttf b/static/fonts/noto/NotoSansGurmukhi-Black.ttf new file mode 100644 index 00000000..f8c542cd Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhi-Black.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhi-Bold.ttf b/static/fonts/noto/NotoSansGurmukhi-Bold.ttf new file mode 100644 index 00000000..b8f51300 Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhi-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhi-Light.ttf b/static/fonts/noto/NotoSansGurmukhi-Light.ttf new file mode 100644 index 00000000..431769e7 Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhi-Light.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhi-Medium.ttf b/static/fonts/noto/NotoSansGurmukhi-Medium.ttf new file mode 100644 index 00000000..0949f032 Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhi-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhi-Regular.ttf b/static/fonts/noto/NotoSansGurmukhi-Regular.ttf new file mode 100644 index 00000000..3b08955a Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhi-Thin.ttf b/static/fonts/noto/NotoSansGurmukhi-Thin.ttf new file mode 100644 index 00000000..ddaf9b26 Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhi-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhiUI-Black.ttf b/static/fonts/noto/NotoSansGurmukhiUI-Black.ttf new file mode 100644 index 00000000..5669e42e Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhiUI-Black.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhiUI-Bold.ttf b/static/fonts/noto/NotoSansGurmukhiUI-Bold.ttf new file mode 100644 index 00000000..5cedbc07 Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhiUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhiUI-Light.ttf b/static/fonts/noto/NotoSansGurmukhiUI-Light.ttf new file mode 100644 index 00000000..5f015657 Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhiUI-Light.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhiUI-Medium.ttf b/static/fonts/noto/NotoSansGurmukhiUI-Medium.ttf new file mode 100644 index 00000000..dbf60886 Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhiUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhiUI-Regular.ttf b/static/fonts/noto/NotoSansGurmukhiUI-Regular.ttf new file mode 100644 index 00000000..3fbeeabd Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhiUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansGurmukhiUI-Thin.ttf b/static/fonts/noto/NotoSansGurmukhiUI-Thin.ttf new file mode 100644 index 00000000..b4d40c77 Binary files /dev/null and b/static/fonts/noto/NotoSansGurmukhiUI-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansHanifiRohingya-Bold.ttf b/static/fonts/noto/NotoSansHanifiRohingya-Bold.ttf new file mode 100644 index 00000000..9442f4f6 Binary files /dev/null and b/static/fonts/noto/NotoSansHanifiRohingya-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansHanifiRohingya-Medium.ttf b/static/fonts/noto/NotoSansHanifiRohingya-Medium.ttf new file mode 100644 index 00000000..30816778 Binary files /dev/null and b/static/fonts/noto/NotoSansHanifiRohingya-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansHanifiRohingya-Regular.ttf b/static/fonts/noto/NotoSansHanifiRohingya-Regular.ttf new file mode 100644 index 00000000..d6a8fe4b Binary files /dev/null and b/static/fonts/noto/NotoSansHanifiRohingya-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansHanunoo-Regular.ttf b/static/fonts/noto/NotoSansHanunoo-Regular.ttf new file mode 100644 index 00000000..e947a984 Binary files /dev/null and b/static/fonts/noto/NotoSansHanunoo-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansHatran-Regular.ttf b/static/fonts/noto/NotoSansHatran-Regular.ttf new file mode 100644 index 00000000..8479cecc Binary files /dev/null and b/static/fonts/noto/NotoSansHatran-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansHebrew-Black.ttf b/static/fonts/noto/NotoSansHebrew-Black.ttf new file mode 100644 index 00000000..ad6aef4d Binary files /dev/null and b/static/fonts/noto/NotoSansHebrew-Black.ttf differ diff --git a/static/fonts/noto/NotoSansHebrew-Bold.ttf b/static/fonts/noto/NotoSansHebrew-Bold.ttf new file mode 100644 index 00000000..b41ec18c Binary files /dev/null and b/static/fonts/noto/NotoSansHebrew-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansHebrew-Light.ttf b/static/fonts/noto/NotoSansHebrew-Light.ttf new file mode 100644 index 00000000..00839f2c Binary files /dev/null and b/static/fonts/noto/NotoSansHebrew-Light.ttf differ diff --git a/static/fonts/noto/NotoSansHebrew-Medium.ttf b/static/fonts/noto/NotoSansHebrew-Medium.ttf new file mode 100644 index 00000000..6328f628 Binary files /dev/null and b/static/fonts/noto/NotoSansHebrew-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansHebrew-Regular.ttf b/static/fonts/noto/NotoSansHebrew-Regular.ttf new file mode 100644 index 00000000..7a9a4218 Binary files /dev/null and b/static/fonts/noto/NotoSansHebrew-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansHebrew-Thin.ttf b/static/fonts/noto/NotoSansHebrew-Thin.ttf new file mode 100644 index 00000000..89b58154 Binary files /dev/null and b/static/fonts/noto/NotoSansHebrew-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansImperialAramaic-Regular.ttf b/static/fonts/noto/NotoSansImperialAramaic-Regular.ttf new file mode 100644 index 00000000..f28ef0f5 Binary files /dev/null and b/static/fonts/noto/NotoSansImperialAramaic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansIndicSiyaqNumbers-Regular.ttf b/static/fonts/noto/NotoSansIndicSiyaqNumbers-Regular.ttf new file mode 100644 index 00000000..32cc716d Binary files /dev/null and b/static/fonts/noto/NotoSansIndicSiyaqNumbers-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansInscriptionalPahlavi-Regular.ttf b/static/fonts/noto/NotoSansInscriptionalPahlavi-Regular.ttf new file mode 100644 index 00000000..90b9a919 Binary files /dev/null and b/static/fonts/noto/NotoSansInscriptionalPahlavi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansInscriptionalParthian-Regular.ttf b/static/fonts/noto/NotoSansInscriptionalParthian-Regular.ttf new file mode 100644 index 00000000..aafc6d73 Binary files /dev/null and b/static/fonts/noto/NotoSansInscriptionalParthian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansJavanese-Bold.ttf b/static/fonts/noto/NotoSansJavanese-Bold.ttf new file mode 100644 index 00000000..7dea3a2b Binary files /dev/null and b/static/fonts/noto/NotoSansJavanese-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansJavanese-Regular.ttf b/static/fonts/noto/NotoSansJavanese-Regular.ttf new file mode 100644 index 00000000..348189be Binary files /dev/null and b/static/fonts/noto/NotoSansJavanese-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansKaithi-Regular.ttf b/static/fonts/noto/NotoSansKaithi-Regular.ttf new file mode 100644 index 00000000..41f5a100 Binary files /dev/null and b/static/fonts/noto/NotoSansKaithi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansKannada-Black.ttf b/static/fonts/noto/NotoSansKannada-Black.ttf new file mode 100644 index 00000000..6e01367f Binary files /dev/null and b/static/fonts/noto/NotoSansKannada-Black.ttf differ diff --git a/static/fonts/noto/NotoSansKannada-Bold.ttf b/static/fonts/noto/NotoSansKannada-Bold.ttf new file mode 100644 index 00000000..6ee5a85e Binary files /dev/null and b/static/fonts/noto/NotoSansKannada-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansKannada-Light.ttf b/static/fonts/noto/NotoSansKannada-Light.ttf new file mode 100644 index 00000000..3a22df96 Binary files /dev/null and b/static/fonts/noto/NotoSansKannada-Light.ttf differ diff --git a/static/fonts/noto/NotoSansKannada-Medium.ttf b/static/fonts/noto/NotoSansKannada-Medium.ttf new file mode 100644 index 00000000..a5064ae3 Binary files /dev/null and b/static/fonts/noto/NotoSansKannada-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansKannada-Regular.ttf b/static/fonts/noto/NotoSansKannada-Regular.ttf new file mode 100644 index 00000000..6a42ea89 Binary files /dev/null and b/static/fonts/noto/NotoSansKannada-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansKannada-Thin.ttf b/static/fonts/noto/NotoSansKannada-Thin.ttf new file mode 100644 index 00000000..4403cc9e Binary files /dev/null and b/static/fonts/noto/NotoSansKannada-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansKannadaUI-Black.ttf b/static/fonts/noto/NotoSansKannadaUI-Black.ttf new file mode 100644 index 00000000..d2d60998 Binary files /dev/null and b/static/fonts/noto/NotoSansKannadaUI-Black.ttf differ diff --git a/static/fonts/noto/NotoSansKannadaUI-Bold.ttf b/static/fonts/noto/NotoSansKannadaUI-Bold.ttf new file mode 100644 index 00000000..f6d0c0b1 Binary files /dev/null and b/static/fonts/noto/NotoSansKannadaUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansKannadaUI-Light.ttf b/static/fonts/noto/NotoSansKannadaUI-Light.ttf new file mode 100644 index 00000000..31ce0991 Binary files /dev/null and b/static/fonts/noto/NotoSansKannadaUI-Light.ttf differ diff --git a/static/fonts/noto/NotoSansKannadaUI-Medium.ttf b/static/fonts/noto/NotoSansKannadaUI-Medium.ttf new file mode 100644 index 00000000..6b8d00c1 Binary files /dev/null and b/static/fonts/noto/NotoSansKannadaUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansKannadaUI-Regular.ttf b/static/fonts/noto/NotoSansKannadaUI-Regular.ttf new file mode 100644 index 00000000..3ac69d75 Binary files /dev/null and b/static/fonts/noto/NotoSansKannadaUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansKannadaUI-Thin.ttf b/static/fonts/noto/NotoSansKannadaUI-Thin.ttf new file mode 100644 index 00000000..d48484e2 Binary files /dev/null and b/static/fonts/noto/NotoSansKannadaUI-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansKawi-Bold.ttf b/static/fonts/noto/NotoSansKawi-Bold.ttf new file mode 100644 index 00000000..f1ee4de2 Binary files /dev/null and b/static/fonts/noto/NotoSansKawi-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansKawi-Regular.ttf b/static/fonts/noto/NotoSansKawi-Regular.ttf new file mode 100644 index 00000000..165fd53b Binary files /dev/null and b/static/fonts/noto/NotoSansKawi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansKayahLi-Bold.ttf b/static/fonts/noto/NotoSansKayahLi-Bold.ttf new file mode 100644 index 00000000..131663d0 Binary files /dev/null and b/static/fonts/noto/NotoSansKayahLi-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansKayahLi-Medium.ttf b/static/fonts/noto/NotoSansKayahLi-Medium.ttf new file mode 100644 index 00000000..53d33e02 Binary files /dev/null and b/static/fonts/noto/NotoSansKayahLi-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansKayahLi-Regular.ttf b/static/fonts/noto/NotoSansKayahLi-Regular.ttf new file mode 100644 index 00000000..7004d01a Binary files /dev/null and b/static/fonts/noto/NotoSansKayahLi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansKharoshthi-Regular.ttf b/static/fonts/noto/NotoSansKharoshthi-Regular.ttf new file mode 100644 index 00000000..33c01e7e Binary files /dev/null and b/static/fonts/noto/NotoSansKharoshthi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansKhmer-Black.ttf b/static/fonts/noto/NotoSansKhmer-Black.ttf new file mode 100644 index 00000000..da67d677 Binary files /dev/null and b/static/fonts/noto/NotoSansKhmer-Black.ttf differ diff --git a/static/fonts/noto/NotoSansKhmer-Bold.ttf b/static/fonts/noto/NotoSansKhmer-Bold.ttf new file mode 100644 index 00000000..c03a5909 Binary files /dev/null and b/static/fonts/noto/NotoSansKhmer-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansKhmer-Light.ttf b/static/fonts/noto/NotoSansKhmer-Light.ttf new file mode 100644 index 00000000..ed68cb59 Binary files /dev/null and b/static/fonts/noto/NotoSansKhmer-Light.ttf differ diff --git a/static/fonts/noto/NotoSansKhmer-Medium.ttf b/static/fonts/noto/NotoSansKhmer-Medium.ttf new file mode 100644 index 00000000..772a9dd1 Binary files /dev/null and b/static/fonts/noto/NotoSansKhmer-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansKhmer-Regular.ttf b/static/fonts/noto/NotoSansKhmer-Regular.ttf new file mode 100644 index 00000000..5c22ec4e Binary files /dev/null and b/static/fonts/noto/NotoSansKhmer-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansKhmer-Thin.ttf b/static/fonts/noto/NotoSansKhmer-Thin.ttf new file mode 100644 index 00000000..e22f9589 Binary files /dev/null and b/static/fonts/noto/NotoSansKhmer-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansKhojki-Regular.ttf b/static/fonts/noto/NotoSansKhojki-Regular.ttf new file mode 100644 index 00000000..fb761f8b Binary files /dev/null and b/static/fonts/noto/NotoSansKhojki-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansKhudawadi-Regular.ttf b/static/fonts/noto/NotoSansKhudawadi-Regular.ttf new file mode 100644 index 00000000..f2e58993 Binary files /dev/null and b/static/fonts/noto/NotoSansKhudawadi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansLao-Black.ttf b/static/fonts/noto/NotoSansLao-Black.ttf new file mode 100644 index 00000000..1f8f14ba Binary files /dev/null and b/static/fonts/noto/NotoSansLao-Black.ttf differ diff --git a/static/fonts/noto/NotoSansLao-Bold.ttf b/static/fonts/noto/NotoSansLao-Bold.ttf new file mode 100644 index 00000000..73d0426f Binary files /dev/null and b/static/fonts/noto/NotoSansLao-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansLao-Light.ttf b/static/fonts/noto/NotoSansLao-Light.ttf new file mode 100644 index 00000000..3ee6350a Binary files /dev/null and b/static/fonts/noto/NotoSansLao-Light.ttf differ diff --git a/static/fonts/noto/NotoSansLao-Medium.ttf b/static/fonts/noto/NotoSansLao-Medium.ttf new file mode 100644 index 00000000..1e1bccf2 Binary files /dev/null and b/static/fonts/noto/NotoSansLao-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansLao-Regular.ttf b/static/fonts/noto/NotoSansLao-Regular.ttf new file mode 100644 index 00000000..72cb4240 Binary files /dev/null and b/static/fonts/noto/NotoSansLao-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansLao-Thin.ttf b/static/fonts/noto/NotoSansLao-Thin.ttf new file mode 100644 index 00000000..a93496be Binary files /dev/null and b/static/fonts/noto/NotoSansLao-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansLaoLooped-Black.ttf b/static/fonts/noto/NotoSansLaoLooped-Black.ttf new file mode 100644 index 00000000..36b5db2a Binary files /dev/null and b/static/fonts/noto/NotoSansLaoLooped-Black.ttf differ diff --git a/static/fonts/noto/NotoSansLaoLooped-Bold.ttf b/static/fonts/noto/NotoSansLaoLooped-Bold.ttf new file mode 100644 index 00000000..e36a9462 Binary files /dev/null and b/static/fonts/noto/NotoSansLaoLooped-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansLaoLooped-Light.ttf b/static/fonts/noto/NotoSansLaoLooped-Light.ttf new file mode 100644 index 00000000..8aee0957 Binary files /dev/null and b/static/fonts/noto/NotoSansLaoLooped-Light.ttf differ diff --git a/static/fonts/noto/NotoSansLaoLooped-Medium.ttf b/static/fonts/noto/NotoSansLaoLooped-Medium.ttf new file mode 100644 index 00000000..338f2079 Binary files /dev/null and b/static/fonts/noto/NotoSansLaoLooped-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansLaoLooped-Regular.ttf b/static/fonts/noto/NotoSansLaoLooped-Regular.ttf new file mode 100644 index 00000000..19fa4b1a Binary files /dev/null and b/static/fonts/noto/NotoSansLaoLooped-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansLaoLooped-Thin.ttf b/static/fonts/noto/NotoSansLaoLooped-Thin.ttf new file mode 100644 index 00000000..5522aab2 Binary files /dev/null and b/static/fonts/noto/NotoSansLaoLooped-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansLepcha-Regular.ttf b/static/fonts/noto/NotoSansLepcha-Regular.ttf new file mode 100644 index 00000000..818c482e Binary files /dev/null and b/static/fonts/noto/NotoSansLepcha-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansLimbu-Regular.ttf b/static/fonts/noto/NotoSansLimbu-Regular.ttf new file mode 100644 index 00000000..41ec9217 Binary files /dev/null and b/static/fonts/noto/NotoSansLimbu-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansLinearA-Regular.ttf b/static/fonts/noto/NotoSansLinearA-Regular.ttf new file mode 100644 index 00000000..a56ace44 Binary files /dev/null and b/static/fonts/noto/NotoSansLinearA-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansLinearB-Regular.ttf b/static/fonts/noto/NotoSansLinearB-Regular.ttf new file mode 100644 index 00000000..55b7f087 Binary files /dev/null and b/static/fonts/noto/NotoSansLinearB-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansLisu-Bold.ttf b/static/fonts/noto/NotoSansLisu-Bold.ttf new file mode 100644 index 00000000..9b634d56 Binary files /dev/null and b/static/fonts/noto/NotoSansLisu-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansLisu-Medium.ttf b/static/fonts/noto/NotoSansLisu-Medium.ttf new file mode 100644 index 00000000..f57c292d Binary files /dev/null and b/static/fonts/noto/NotoSansLisu-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansLisu-Regular.ttf b/static/fonts/noto/NotoSansLisu-Regular.ttf new file mode 100644 index 00000000..411346f8 Binary files /dev/null and b/static/fonts/noto/NotoSansLisu-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansLycian-Regular.ttf b/static/fonts/noto/NotoSansLycian-Regular.ttf new file mode 100644 index 00000000..85eb2d3f Binary files /dev/null and b/static/fonts/noto/NotoSansLycian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansLydian-Regular.ttf b/static/fonts/noto/NotoSansLydian-Regular.ttf new file mode 100644 index 00000000..0a3a4a7d Binary files /dev/null and b/static/fonts/noto/NotoSansLydian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMahajani-Regular.ttf b/static/fonts/noto/NotoSansMahajani-Regular.ttf new file mode 100644 index 00000000..e041bb30 Binary files /dev/null and b/static/fonts/noto/NotoSansMahajani-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalam-Black.ttf b/static/fonts/noto/NotoSansMalayalam-Black.ttf new file mode 100644 index 00000000..dc2cd737 Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalam-Black.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalam-Bold.ttf b/static/fonts/noto/NotoSansMalayalam-Bold.ttf new file mode 100644 index 00000000..7891b09b Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalam-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalam-Light.ttf b/static/fonts/noto/NotoSansMalayalam-Light.ttf new file mode 100644 index 00000000..e593381d Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalam-Light.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalam-Medium.ttf b/static/fonts/noto/NotoSansMalayalam-Medium.ttf new file mode 100644 index 00000000..af3abbdf Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalam-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalam-Regular.ttf b/static/fonts/noto/NotoSansMalayalam-Regular.ttf new file mode 100644 index 00000000..32dc2c62 Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalam-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalam-Thin.ttf b/static/fonts/noto/NotoSansMalayalam-Thin.ttf new file mode 100644 index 00000000..e5ac841c Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalam-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalamUI-Black.ttf b/static/fonts/noto/NotoSansMalayalamUI-Black.ttf new file mode 100644 index 00000000..742a6a00 Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalamUI-Black.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalamUI-Bold.ttf b/static/fonts/noto/NotoSansMalayalamUI-Bold.ttf new file mode 100644 index 00000000..7464d1f4 Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalamUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalamUI-Light.ttf b/static/fonts/noto/NotoSansMalayalamUI-Light.ttf new file mode 100644 index 00000000..78e9b59a Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalamUI-Light.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalamUI-Medium.ttf b/static/fonts/noto/NotoSansMalayalamUI-Medium.ttf new file mode 100644 index 00000000..87484e30 Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalamUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalamUI-Regular.ttf b/static/fonts/noto/NotoSansMalayalamUI-Regular.ttf new file mode 100644 index 00000000..6cb917ea Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalamUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMalayalamUI-Thin.ttf b/static/fonts/noto/NotoSansMalayalamUI-Thin.ttf new file mode 100644 index 00000000..9fcf3e85 Binary files /dev/null and b/static/fonts/noto/NotoSansMalayalamUI-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansMandaic-Regular.ttf b/static/fonts/noto/NotoSansMandaic-Regular.ttf new file mode 100644 index 00000000..e95e1e32 Binary files /dev/null and b/static/fonts/noto/NotoSansMandaic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansManichaean-Regular.ttf b/static/fonts/noto/NotoSansManichaean-Regular.ttf new file mode 100644 index 00000000..8ec5a8c2 Binary files /dev/null and b/static/fonts/noto/NotoSansManichaean-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMarchen-Regular.ttf b/static/fonts/noto/NotoSansMarchen-Regular.ttf new file mode 100644 index 00000000..3516c968 Binary files /dev/null and b/static/fonts/noto/NotoSansMarchen-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMasaramGondi-Regular.ttf b/static/fonts/noto/NotoSansMasaramGondi-Regular.ttf new file mode 100644 index 00000000..fe3cc572 Binary files /dev/null and b/static/fonts/noto/NotoSansMasaramGondi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMath-Regular.ttf b/static/fonts/noto/NotoSansMath-Regular.ttf new file mode 100644 index 00000000..68bb32b6 Binary files /dev/null and b/static/fonts/noto/NotoSansMath-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMayanNumerals-Regular.ttf b/static/fonts/noto/NotoSansMayanNumerals-Regular.ttf new file mode 100644 index 00000000..8c94b3e8 Binary files /dev/null and b/static/fonts/noto/NotoSansMayanNumerals-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMedefaidrin-Bold.ttf b/static/fonts/noto/NotoSansMedefaidrin-Bold.ttf new file mode 100644 index 00000000..9719ff4f Binary files /dev/null and b/static/fonts/noto/NotoSansMedefaidrin-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansMedefaidrin-Medium.ttf b/static/fonts/noto/NotoSansMedefaidrin-Medium.ttf new file mode 100644 index 00000000..c591b292 Binary files /dev/null and b/static/fonts/noto/NotoSansMedefaidrin-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansMedefaidrin-Regular.ttf b/static/fonts/noto/NotoSansMedefaidrin-Regular.ttf new file mode 100644 index 00000000..6bf52e3c Binary files /dev/null and b/static/fonts/noto/NotoSansMedefaidrin-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMeeteiMayek-Black.ttf b/static/fonts/noto/NotoSansMeeteiMayek-Black.ttf new file mode 100644 index 00000000..ec5b80b6 Binary files /dev/null and b/static/fonts/noto/NotoSansMeeteiMayek-Black.ttf differ diff --git a/static/fonts/noto/NotoSansMeeteiMayek-Bold.ttf b/static/fonts/noto/NotoSansMeeteiMayek-Bold.ttf new file mode 100644 index 00000000..820fc346 Binary files /dev/null and b/static/fonts/noto/NotoSansMeeteiMayek-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansMeeteiMayek-Light.ttf b/static/fonts/noto/NotoSansMeeteiMayek-Light.ttf new file mode 100644 index 00000000..98e1f63c Binary files /dev/null and b/static/fonts/noto/NotoSansMeeteiMayek-Light.ttf differ diff --git a/static/fonts/noto/NotoSansMeeteiMayek-Medium.ttf b/static/fonts/noto/NotoSansMeeteiMayek-Medium.ttf new file mode 100644 index 00000000..be0f5211 Binary files /dev/null and b/static/fonts/noto/NotoSansMeeteiMayek-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansMeeteiMayek-Regular.ttf b/static/fonts/noto/NotoSansMeeteiMayek-Regular.ttf new file mode 100644 index 00000000..7d4bdcde Binary files /dev/null and b/static/fonts/noto/NotoSansMeeteiMayek-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMeeteiMayek-Thin.ttf b/static/fonts/noto/NotoSansMeeteiMayek-Thin.ttf new file mode 100644 index 00000000..3ea5010b Binary files /dev/null and b/static/fonts/noto/NotoSansMeeteiMayek-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansMendeKikakui-Regular.ttf b/static/fonts/noto/NotoSansMendeKikakui-Regular.ttf new file mode 100644 index 00000000..bcf00290 Binary files /dev/null and b/static/fonts/noto/NotoSansMendeKikakui-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMeroitic-Regular.ttf b/static/fonts/noto/NotoSansMeroitic-Regular.ttf new file mode 100644 index 00000000..52a4505b Binary files /dev/null and b/static/fonts/noto/NotoSansMeroitic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMiao-Regular.ttf b/static/fonts/noto/NotoSansMiao-Regular.ttf new file mode 100644 index 00000000..7e8fd2b9 Binary files /dev/null and b/static/fonts/noto/NotoSansMiao-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansModi-Regular.ttf b/static/fonts/noto/NotoSansModi-Regular.ttf new file mode 100644 index 00000000..f5c56520 Binary files /dev/null and b/static/fonts/noto/NotoSansModi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMongolian-Regular.ttf b/static/fonts/noto/NotoSansMongolian-Regular.ttf new file mode 100644 index 00000000..7c21d6ff Binary files /dev/null and b/static/fonts/noto/NotoSansMongolian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMono-Black.ttf b/static/fonts/noto/NotoSansMono-Black.ttf new file mode 100644 index 00000000..a7812e0c Binary files /dev/null and b/static/fonts/noto/NotoSansMono-Black.ttf differ diff --git a/static/fonts/noto/NotoSansMono-Bold.ttf b/static/fonts/noto/NotoSansMono-Bold.ttf new file mode 100644 index 00000000..9218a79c Binary files /dev/null and b/static/fonts/noto/NotoSansMono-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansMono-Light.ttf b/static/fonts/noto/NotoSansMono-Light.ttf new file mode 100644 index 00000000..6e8d6446 Binary files /dev/null and b/static/fonts/noto/NotoSansMono-Light.ttf differ diff --git a/static/fonts/noto/NotoSansMono-Medium.ttf b/static/fonts/noto/NotoSansMono-Medium.ttf new file mode 100644 index 00000000..bc54584c Binary files /dev/null and b/static/fonts/noto/NotoSansMono-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansMono-Regular.ttf b/static/fonts/noto/NotoSansMono-Regular.ttf new file mode 100644 index 00000000..159ca4b1 Binary files /dev/null and b/static/fonts/noto/NotoSansMono-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMono-Thin.ttf b/static/fonts/noto/NotoSansMono-Thin.ttf new file mode 100644 index 00000000..712a44a3 Binary files /dev/null and b/static/fonts/noto/NotoSansMono-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansMro-Regular.ttf b/static/fonts/noto/NotoSansMro-Regular.ttf new file mode 100644 index 00000000..de8dd6cf Binary files /dev/null and b/static/fonts/noto/NotoSansMro-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMultani-Regular.ttf b/static/fonts/noto/NotoSansMultani-Regular.ttf new file mode 100644 index 00000000..fa5856ec Binary files /dev/null and b/static/fonts/noto/NotoSansMultani-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMyanmar-Black.ttf b/static/fonts/noto/NotoSansMyanmar-Black.ttf new file mode 100644 index 00000000..f1cfca63 Binary files /dev/null and b/static/fonts/noto/NotoSansMyanmar-Black.ttf differ diff --git a/static/fonts/noto/NotoSansMyanmar-Bold.ttf b/static/fonts/noto/NotoSansMyanmar-Bold.ttf new file mode 100644 index 00000000..213ff3c9 Binary files /dev/null and b/static/fonts/noto/NotoSansMyanmar-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansMyanmar-Light.ttf b/static/fonts/noto/NotoSansMyanmar-Light.ttf new file mode 100644 index 00000000..17feb441 Binary files /dev/null and b/static/fonts/noto/NotoSansMyanmar-Light.ttf differ diff --git a/static/fonts/noto/NotoSansMyanmar-Medium.ttf b/static/fonts/noto/NotoSansMyanmar-Medium.ttf new file mode 100644 index 00000000..93dcc1f7 Binary files /dev/null and b/static/fonts/noto/NotoSansMyanmar-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansMyanmar-Regular.ttf b/static/fonts/noto/NotoSansMyanmar-Regular.ttf new file mode 100644 index 00000000..5c0da8c0 Binary files /dev/null and b/static/fonts/noto/NotoSansMyanmar-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansMyanmar-Thin.ttf b/static/fonts/noto/NotoSansMyanmar-Thin.ttf new file mode 100644 index 00000000..2fd77422 Binary files /dev/null and b/static/fonts/noto/NotoSansMyanmar-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansNKo-Regular.ttf b/static/fonts/noto/NotoSansNKo-Regular.ttf new file mode 100644 index 00000000..89e5330b Binary files /dev/null and b/static/fonts/noto/NotoSansNKo-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansNKoUnjoined-Bold.ttf b/static/fonts/noto/NotoSansNKoUnjoined-Bold.ttf new file mode 100644 index 00000000..f4f93429 Binary files /dev/null and b/static/fonts/noto/NotoSansNKoUnjoined-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansNKoUnjoined-Regular.ttf b/static/fonts/noto/NotoSansNKoUnjoined-Regular.ttf new file mode 100644 index 00000000..f02b0c87 Binary files /dev/null and b/static/fonts/noto/NotoSansNKoUnjoined-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansNabataean-Regular.ttf b/static/fonts/noto/NotoSansNabataean-Regular.ttf new file mode 100644 index 00000000..4e3ed9e4 Binary files /dev/null and b/static/fonts/noto/NotoSansNabataean-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansNagMundari-Bold.ttf b/static/fonts/noto/NotoSansNagMundari-Bold.ttf new file mode 100644 index 00000000..583ff593 Binary files /dev/null and b/static/fonts/noto/NotoSansNagMundari-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansNagMundari-Regular.ttf b/static/fonts/noto/NotoSansNagMundari-Regular.ttf new file mode 100644 index 00000000..9844b0bc Binary files /dev/null and b/static/fonts/noto/NotoSansNagMundari-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansNandinagari-Regular.ttf b/static/fonts/noto/NotoSansNandinagari-Regular.ttf new file mode 100644 index 00000000..7eda3d76 Binary files /dev/null and b/static/fonts/noto/NotoSansNandinagari-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansNewTaiLue-Bold.ttf b/static/fonts/noto/NotoSansNewTaiLue-Bold.ttf new file mode 100644 index 00000000..1e798238 Binary files /dev/null and b/static/fonts/noto/NotoSansNewTaiLue-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansNewTaiLue-Medium.ttf b/static/fonts/noto/NotoSansNewTaiLue-Medium.ttf new file mode 100644 index 00000000..4a2cb5f9 Binary files /dev/null and b/static/fonts/noto/NotoSansNewTaiLue-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansNewTaiLue-Regular.ttf b/static/fonts/noto/NotoSansNewTaiLue-Regular.ttf new file mode 100644 index 00000000..349db20f Binary files /dev/null and b/static/fonts/noto/NotoSansNewTaiLue-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansNewa-Regular.ttf b/static/fonts/noto/NotoSansNewa-Regular.ttf new file mode 100644 index 00000000..a1941a36 Binary files /dev/null and b/static/fonts/noto/NotoSansNewa-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansNushu-Regular.ttf b/static/fonts/noto/NotoSansNushu-Regular.ttf new file mode 100644 index 00000000..9486fb16 Binary files /dev/null and b/static/fonts/noto/NotoSansNushu-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOgham-Regular.ttf b/static/fonts/noto/NotoSansOgham-Regular.ttf new file mode 100644 index 00000000..c7df133e Binary files /dev/null and b/static/fonts/noto/NotoSansOgham-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOlChiki-Bold.ttf b/static/fonts/noto/NotoSansOlChiki-Bold.ttf new file mode 100644 index 00000000..50502d48 Binary files /dev/null and b/static/fonts/noto/NotoSansOlChiki-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansOlChiki-Medium.ttf b/static/fonts/noto/NotoSansOlChiki-Medium.ttf new file mode 100644 index 00000000..554ef0e1 Binary files /dev/null and b/static/fonts/noto/NotoSansOlChiki-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansOlChiki-Regular.ttf b/static/fonts/noto/NotoSansOlChiki-Regular.ttf new file mode 100644 index 00000000..cec19f33 Binary files /dev/null and b/static/fonts/noto/NotoSansOlChiki-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOldHungarian-Regular.ttf b/static/fonts/noto/NotoSansOldHungarian-Regular.ttf new file mode 100644 index 00000000..0147bc07 Binary files /dev/null and b/static/fonts/noto/NotoSansOldHungarian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOldItalic-Regular.ttf b/static/fonts/noto/NotoSansOldItalic-Regular.ttf new file mode 100644 index 00000000..3b5d80bc Binary files /dev/null and b/static/fonts/noto/NotoSansOldItalic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOldNorthArabian-Regular.ttf b/static/fonts/noto/NotoSansOldNorthArabian-Regular.ttf new file mode 100644 index 00000000..c27dc148 Binary files /dev/null and b/static/fonts/noto/NotoSansOldNorthArabian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOldPermic-Regular.ttf b/static/fonts/noto/NotoSansOldPermic-Regular.ttf new file mode 100644 index 00000000..2cdfcc23 Binary files /dev/null and b/static/fonts/noto/NotoSansOldPermic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOldPersian-Regular.ttf b/static/fonts/noto/NotoSansOldPersian-Regular.ttf new file mode 100644 index 00000000..4e451c0c Binary files /dev/null and b/static/fonts/noto/NotoSansOldPersian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOldSogdian-Regular.ttf b/static/fonts/noto/NotoSansOldSogdian-Regular.ttf new file mode 100644 index 00000000..a928f44e Binary files /dev/null and b/static/fonts/noto/NotoSansOldSogdian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOldSouthArabian-Regular.ttf b/static/fonts/noto/NotoSansOldSouthArabian-Regular.ttf new file mode 100644 index 00000000..4692777c Binary files /dev/null and b/static/fonts/noto/NotoSansOldSouthArabian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOldTurkic-Regular.ttf b/static/fonts/noto/NotoSansOldTurkic-Regular.ttf new file mode 100644 index 00000000..63f5c2e2 Binary files /dev/null and b/static/fonts/noto/NotoSansOldTurkic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOriya-Black.ttf b/static/fonts/noto/NotoSansOriya-Black.ttf new file mode 100644 index 00000000..38eaa034 Binary files /dev/null and b/static/fonts/noto/NotoSansOriya-Black.ttf differ diff --git a/static/fonts/noto/NotoSansOriya-Bold.ttf b/static/fonts/noto/NotoSansOriya-Bold.ttf new file mode 100644 index 00000000..777300a6 Binary files /dev/null and b/static/fonts/noto/NotoSansOriya-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansOriya-Regular.ttf b/static/fonts/noto/NotoSansOriya-Regular.ttf new file mode 100644 index 00000000..20b8023b Binary files /dev/null and b/static/fonts/noto/NotoSansOriya-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOriya-Thin.ttf b/static/fonts/noto/NotoSansOriya-Thin.ttf new file mode 100644 index 00000000..7c085a03 Binary files /dev/null and b/static/fonts/noto/NotoSansOriya-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansOsage-Regular.ttf b/static/fonts/noto/NotoSansOsage-Regular.ttf new file mode 100644 index 00000000..d1770fac Binary files /dev/null and b/static/fonts/noto/NotoSansOsage-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansOsmanya-Regular.ttf b/static/fonts/noto/NotoSansOsmanya-Regular.ttf new file mode 100644 index 00000000..52bf66ce Binary files /dev/null and b/static/fonts/noto/NotoSansOsmanya-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansPahawhHmong-Regular.ttf b/static/fonts/noto/NotoSansPahawhHmong-Regular.ttf new file mode 100644 index 00000000..4ab4d08a Binary files /dev/null and b/static/fonts/noto/NotoSansPahawhHmong-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansPalmyrene-Regular.ttf b/static/fonts/noto/NotoSansPalmyrene-Regular.ttf new file mode 100644 index 00000000..68ce75bc Binary files /dev/null and b/static/fonts/noto/NotoSansPalmyrene-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansPauCinHau-Regular.ttf b/static/fonts/noto/NotoSansPauCinHau-Regular.ttf new file mode 100644 index 00000000..f883261f Binary files /dev/null and b/static/fonts/noto/NotoSansPauCinHau-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansPhags-Pa-Regular.ttf b/static/fonts/noto/NotoSansPhags-Pa-Regular.ttf new file mode 100644 index 00000000..60aa849d Binary files /dev/null and b/static/fonts/noto/NotoSansPhags-Pa-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansPhagsPa-Regular.ttf b/static/fonts/noto/NotoSansPhagsPa-Regular.ttf new file mode 100644 index 00000000..e8a94388 Binary files /dev/null and b/static/fonts/noto/NotoSansPhagsPa-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansPhoenician-Regular.ttf b/static/fonts/noto/NotoSansPhoenician-Regular.ttf new file mode 100644 index 00000000..eb5de935 Binary files /dev/null and b/static/fonts/noto/NotoSansPhoenician-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansPsalterPahlavi-Regular.ttf b/static/fonts/noto/NotoSansPsalterPahlavi-Regular.ttf new file mode 100644 index 00000000..86722396 Binary files /dev/null and b/static/fonts/noto/NotoSansPsalterPahlavi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansRejang-Regular.ttf b/static/fonts/noto/NotoSansRejang-Regular.ttf new file mode 100644 index 00000000..2816e5b1 Binary files /dev/null and b/static/fonts/noto/NotoSansRejang-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansRunic-Regular.ttf b/static/fonts/noto/NotoSansRunic-Regular.ttf new file mode 100644 index 00000000..565fc7cf Binary files /dev/null and b/static/fonts/noto/NotoSansRunic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSamaritan-Regular.ttf b/static/fonts/noto/NotoSansSamaritan-Regular.ttf new file mode 100644 index 00000000..85b42c5d Binary files /dev/null and b/static/fonts/noto/NotoSansSamaritan-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSaurashtra-Regular.ttf b/static/fonts/noto/NotoSansSaurashtra-Regular.ttf new file mode 100644 index 00000000..740e1d43 Binary files /dev/null and b/static/fonts/noto/NotoSansSaurashtra-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSharada-Regular.ttf b/static/fonts/noto/NotoSansSharada-Regular.ttf new file mode 100644 index 00000000..44f3f0c0 Binary files /dev/null and b/static/fonts/noto/NotoSansSharada-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansShavian-Regular.ttf b/static/fonts/noto/NotoSansShavian-Regular.ttf new file mode 100644 index 00000000..9dee5630 Binary files /dev/null and b/static/fonts/noto/NotoSansShavian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSiddham-Regular.ttf b/static/fonts/noto/NotoSansSiddham-Regular.ttf new file mode 100644 index 00000000..543c8cfe Binary files /dev/null and b/static/fonts/noto/NotoSansSiddham-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSignWriting-Regular.ttf b/static/fonts/noto/NotoSansSignWriting-Regular.ttf new file mode 100644 index 00000000..50082e85 Binary files /dev/null and b/static/fonts/noto/NotoSansSignWriting-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSinhala-Black.ttf b/static/fonts/noto/NotoSansSinhala-Black.ttf new file mode 100644 index 00000000..d6ee5735 Binary files /dev/null and b/static/fonts/noto/NotoSansSinhala-Black.ttf differ diff --git a/static/fonts/noto/NotoSansSinhala-Bold.ttf b/static/fonts/noto/NotoSansSinhala-Bold.ttf new file mode 100644 index 00000000..e66a76cf Binary files /dev/null and b/static/fonts/noto/NotoSansSinhala-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansSinhala-Light.ttf b/static/fonts/noto/NotoSansSinhala-Light.ttf new file mode 100644 index 00000000..93149511 Binary files /dev/null and b/static/fonts/noto/NotoSansSinhala-Light.ttf differ diff --git a/static/fonts/noto/NotoSansSinhala-Medium.ttf b/static/fonts/noto/NotoSansSinhala-Medium.ttf new file mode 100644 index 00000000..98f9d475 Binary files /dev/null and b/static/fonts/noto/NotoSansSinhala-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansSinhala-Regular.ttf b/static/fonts/noto/NotoSansSinhala-Regular.ttf new file mode 100644 index 00000000..535e58d0 Binary files /dev/null and b/static/fonts/noto/NotoSansSinhala-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSinhala-Thin.ttf b/static/fonts/noto/NotoSansSinhala-Thin.ttf new file mode 100644 index 00000000..d6d97ad9 Binary files /dev/null and b/static/fonts/noto/NotoSansSinhala-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansSinhalaUI-Black.ttf b/static/fonts/noto/NotoSansSinhalaUI-Black.ttf new file mode 100644 index 00000000..821dffee Binary files /dev/null and b/static/fonts/noto/NotoSansSinhalaUI-Black.ttf differ diff --git a/static/fonts/noto/NotoSansSinhalaUI-Bold.ttf b/static/fonts/noto/NotoSansSinhalaUI-Bold.ttf new file mode 100644 index 00000000..432944d2 Binary files /dev/null and b/static/fonts/noto/NotoSansSinhalaUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansSinhalaUI-Light.ttf b/static/fonts/noto/NotoSansSinhalaUI-Light.ttf new file mode 100644 index 00000000..b68af0dc Binary files /dev/null and b/static/fonts/noto/NotoSansSinhalaUI-Light.ttf differ diff --git a/static/fonts/noto/NotoSansSinhalaUI-Medium.ttf b/static/fonts/noto/NotoSansSinhalaUI-Medium.ttf new file mode 100644 index 00000000..6f393c9c Binary files /dev/null and b/static/fonts/noto/NotoSansSinhalaUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansSinhalaUI-Regular.ttf b/static/fonts/noto/NotoSansSinhalaUI-Regular.ttf new file mode 100644 index 00000000..db5d21e7 Binary files /dev/null and b/static/fonts/noto/NotoSansSinhalaUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSinhalaUI-Thin.ttf b/static/fonts/noto/NotoSansSinhalaUI-Thin.ttf new file mode 100644 index 00000000..3cd4157f Binary files /dev/null and b/static/fonts/noto/NotoSansSinhalaUI-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansSogdian-Regular.ttf b/static/fonts/noto/NotoSansSogdian-Regular.ttf new file mode 100644 index 00000000..31743bc8 Binary files /dev/null and b/static/fonts/noto/NotoSansSogdian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSoraSompeng-Bold.ttf b/static/fonts/noto/NotoSansSoraSompeng-Bold.ttf new file mode 100644 index 00000000..f0974a05 Binary files /dev/null and b/static/fonts/noto/NotoSansSoraSompeng-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansSoraSompeng-Medium.ttf b/static/fonts/noto/NotoSansSoraSompeng-Medium.ttf new file mode 100644 index 00000000..8042ce1d Binary files /dev/null and b/static/fonts/noto/NotoSansSoraSompeng-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansSoraSompeng-Regular.ttf b/static/fonts/noto/NotoSansSoraSompeng-Regular.ttf new file mode 100644 index 00000000..6cd8db7e Binary files /dev/null and b/static/fonts/noto/NotoSansSoraSompeng-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSoyombo-Regular.ttf b/static/fonts/noto/NotoSansSoyombo-Regular.ttf new file mode 100644 index 00000000..758363c7 Binary files /dev/null and b/static/fonts/noto/NotoSansSoyombo-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSundanese-Bold.ttf b/static/fonts/noto/NotoSansSundanese-Bold.ttf new file mode 100644 index 00000000..b88e1aff Binary files /dev/null and b/static/fonts/noto/NotoSansSundanese-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansSundanese-Medium.ttf b/static/fonts/noto/NotoSansSundanese-Medium.ttf new file mode 100644 index 00000000..b66e9520 Binary files /dev/null and b/static/fonts/noto/NotoSansSundanese-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansSundanese-Regular.ttf b/static/fonts/noto/NotoSansSundanese-Regular.ttf new file mode 100644 index 00000000..eba459f1 Binary files /dev/null and b/static/fonts/noto/NotoSansSundanese-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSylotiNagri-Regular.ttf b/static/fonts/noto/NotoSansSylotiNagri-Regular.ttf new file mode 100644 index 00000000..5274b63f Binary files /dev/null and b/static/fonts/noto/NotoSansSylotiNagri-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSymbols-Black.ttf b/static/fonts/noto/NotoSansSymbols-Black.ttf new file mode 100644 index 00000000..12d1704e Binary files /dev/null and b/static/fonts/noto/NotoSansSymbols-Black.ttf differ diff --git a/static/fonts/noto/NotoSansSymbols-Bold.ttf b/static/fonts/noto/NotoSansSymbols-Bold.ttf new file mode 100644 index 00000000..c20f3eca Binary files /dev/null and b/static/fonts/noto/NotoSansSymbols-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansSymbols-Light.ttf b/static/fonts/noto/NotoSansSymbols-Light.ttf new file mode 100644 index 00000000..c690e5a2 Binary files /dev/null and b/static/fonts/noto/NotoSansSymbols-Light.ttf differ diff --git a/static/fonts/noto/NotoSansSymbols-Medium.ttf b/static/fonts/noto/NotoSansSymbols-Medium.ttf new file mode 100644 index 00000000..8cb98151 Binary files /dev/null and b/static/fonts/noto/NotoSansSymbols-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansSymbols-Regular.ttf b/static/fonts/noto/NotoSansSymbols-Regular.ttf new file mode 100644 index 00000000..f39694c9 Binary files /dev/null and b/static/fonts/noto/NotoSansSymbols-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSymbols-Thin.ttf b/static/fonts/noto/NotoSansSymbols-Thin.ttf new file mode 100644 index 00000000..071ed9cc Binary files /dev/null and b/static/fonts/noto/NotoSansSymbols-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansSymbols2-Regular.ttf b/static/fonts/noto/NotoSansSymbols2-Regular.ttf new file mode 100644 index 00000000..a0a8cfe0 Binary files /dev/null and b/static/fonts/noto/NotoSansSymbols2-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSyriac-Black.ttf b/static/fonts/noto/NotoSansSyriac-Black.ttf new file mode 100644 index 00000000..eb638cf6 Binary files /dev/null and b/static/fonts/noto/NotoSansSyriac-Black.ttf differ diff --git a/static/fonts/noto/NotoSansSyriac-Regular.ttf b/static/fonts/noto/NotoSansSyriac-Regular.ttf new file mode 100644 index 00000000..cae88c8a Binary files /dev/null and b/static/fonts/noto/NotoSansSyriac-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSyriac-Thin.ttf b/static/fonts/noto/NotoSansSyriac-Thin.ttf new file mode 100644 index 00000000..b09b04a6 Binary files /dev/null and b/static/fonts/noto/NotoSansSyriac-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansSyriacEastern-Black.ttf b/static/fonts/noto/NotoSansSyriacEastern-Black.ttf new file mode 100644 index 00000000..b3be0035 Binary files /dev/null and b/static/fonts/noto/NotoSansSyriacEastern-Black.ttf differ diff --git a/static/fonts/noto/NotoSansSyriacEastern-Regular.ttf b/static/fonts/noto/NotoSansSyriacEastern-Regular.ttf new file mode 100644 index 00000000..7593f551 Binary files /dev/null and b/static/fonts/noto/NotoSansSyriacEastern-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSyriacEastern-Thin.ttf b/static/fonts/noto/NotoSansSyriacEastern-Thin.ttf new file mode 100644 index 00000000..a2ff33c0 Binary files /dev/null and b/static/fonts/noto/NotoSansSyriacEastern-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansSyriacWestern-Black.ttf b/static/fonts/noto/NotoSansSyriacWestern-Black.ttf new file mode 100644 index 00000000..a220a3fa Binary files /dev/null and b/static/fonts/noto/NotoSansSyriacWestern-Black.ttf differ diff --git a/static/fonts/noto/NotoSansSyriacWestern-Regular.ttf b/static/fonts/noto/NotoSansSyriacWestern-Regular.ttf new file mode 100644 index 00000000..074bd855 Binary files /dev/null and b/static/fonts/noto/NotoSansSyriacWestern-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansSyriacWestern-Thin.ttf b/static/fonts/noto/NotoSansSyriacWestern-Thin.ttf new file mode 100644 index 00000000..8ca6be1d Binary files /dev/null and b/static/fonts/noto/NotoSansSyriacWestern-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansTagalog-Regular.ttf b/static/fonts/noto/NotoSansTagalog-Regular.ttf new file mode 100644 index 00000000..d032d70e Binary files /dev/null and b/static/fonts/noto/NotoSansTagalog-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTagbanwa-Regular.ttf b/static/fonts/noto/NotoSansTagbanwa-Regular.ttf new file mode 100644 index 00000000..c3a342bd Binary files /dev/null and b/static/fonts/noto/NotoSansTagbanwa-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTaiLe-Regular.ttf b/static/fonts/noto/NotoSansTaiLe-Regular.ttf new file mode 100644 index 00000000..54d1271a Binary files /dev/null and b/static/fonts/noto/NotoSansTaiLe-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTaiTham-Bold.ttf b/static/fonts/noto/NotoSansTaiTham-Bold.ttf new file mode 100644 index 00000000..adfb3793 Binary files /dev/null and b/static/fonts/noto/NotoSansTaiTham-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansTaiTham-Medium.ttf b/static/fonts/noto/NotoSansTaiTham-Medium.ttf new file mode 100644 index 00000000..93ce244a Binary files /dev/null and b/static/fonts/noto/NotoSansTaiTham-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansTaiTham-Regular.ttf b/static/fonts/noto/NotoSansTaiTham-Regular.ttf new file mode 100644 index 00000000..c88b1a0d Binary files /dev/null and b/static/fonts/noto/NotoSansTaiTham-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTaiViet-Regular.ttf b/static/fonts/noto/NotoSansTaiViet-Regular.ttf new file mode 100644 index 00000000..e8134124 Binary files /dev/null and b/static/fonts/noto/NotoSansTaiViet-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTakri-Regular.ttf b/static/fonts/noto/NotoSansTakri-Regular.ttf new file mode 100644 index 00000000..712b0131 Binary files /dev/null and b/static/fonts/noto/NotoSansTakri-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTamil-Black.ttf b/static/fonts/noto/NotoSansTamil-Black.ttf new file mode 100644 index 00000000..08f410c0 Binary files /dev/null and b/static/fonts/noto/NotoSansTamil-Black.ttf differ diff --git a/static/fonts/noto/NotoSansTamil-Bold.ttf b/static/fonts/noto/NotoSansTamil-Bold.ttf new file mode 100644 index 00000000..0fde5384 Binary files /dev/null and b/static/fonts/noto/NotoSansTamil-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansTamil-Light.ttf b/static/fonts/noto/NotoSansTamil-Light.ttf new file mode 100644 index 00000000..73b89558 Binary files /dev/null and b/static/fonts/noto/NotoSansTamil-Light.ttf differ diff --git a/static/fonts/noto/NotoSansTamil-Medium.ttf b/static/fonts/noto/NotoSansTamil-Medium.ttf new file mode 100644 index 00000000..a20798dd Binary files /dev/null and b/static/fonts/noto/NotoSansTamil-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansTamil-Regular.ttf b/static/fonts/noto/NotoSansTamil-Regular.ttf new file mode 100644 index 00000000..3999af8e Binary files /dev/null and b/static/fonts/noto/NotoSansTamil-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTamil-Thin.ttf b/static/fonts/noto/NotoSansTamil-Thin.ttf new file mode 100644 index 00000000..76df7311 Binary files /dev/null and b/static/fonts/noto/NotoSansTamil-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansTamilSupplement-Regular.ttf b/static/fonts/noto/NotoSansTamilSupplement-Regular.ttf new file mode 100644 index 00000000..d87ab770 Binary files /dev/null and b/static/fonts/noto/NotoSansTamilSupplement-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTamilUI-Black.ttf b/static/fonts/noto/NotoSansTamilUI-Black.ttf new file mode 100644 index 00000000..d20d624c Binary files /dev/null and b/static/fonts/noto/NotoSansTamilUI-Black.ttf differ diff --git a/static/fonts/noto/NotoSansTamilUI-Bold.ttf b/static/fonts/noto/NotoSansTamilUI-Bold.ttf new file mode 100644 index 00000000..c3b6be01 Binary files /dev/null and b/static/fonts/noto/NotoSansTamilUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansTamilUI-Light.ttf b/static/fonts/noto/NotoSansTamilUI-Light.ttf new file mode 100644 index 00000000..d6bc6679 Binary files /dev/null and b/static/fonts/noto/NotoSansTamilUI-Light.ttf differ diff --git a/static/fonts/noto/NotoSansTamilUI-Medium.ttf b/static/fonts/noto/NotoSansTamilUI-Medium.ttf new file mode 100644 index 00000000..1af86e1c Binary files /dev/null and b/static/fonts/noto/NotoSansTamilUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansTamilUI-Regular.ttf b/static/fonts/noto/NotoSansTamilUI-Regular.ttf new file mode 100644 index 00000000..644ee25e Binary files /dev/null and b/static/fonts/noto/NotoSansTamilUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTamilUI-Thin.ttf b/static/fonts/noto/NotoSansTamilUI-Thin.ttf new file mode 100644 index 00000000..5b53c4ab Binary files /dev/null and b/static/fonts/noto/NotoSansTamilUI-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansTangsa-Bold.ttf b/static/fonts/noto/NotoSansTangsa-Bold.ttf new file mode 100644 index 00000000..faf878ea Binary files /dev/null and b/static/fonts/noto/NotoSansTangsa-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansTangsa-Medium.ttf b/static/fonts/noto/NotoSansTangsa-Medium.ttf new file mode 100644 index 00000000..8c552f14 Binary files /dev/null and b/static/fonts/noto/NotoSansTangsa-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansTangsa-Regular.ttf b/static/fonts/noto/NotoSansTangsa-Regular.ttf new file mode 100644 index 00000000..5fd5ac3a Binary files /dev/null and b/static/fonts/noto/NotoSansTangsa-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTelugu-Black.ttf b/static/fonts/noto/NotoSansTelugu-Black.ttf new file mode 100644 index 00000000..16d631a0 Binary files /dev/null and b/static/fonts/noto/NotoSansTelugu-Black.ttf differ diff --git a/static/fonts/noto/NotoSansTelugu-Bold.ttf b/static/fonts/noto/NotoSansTelugu-Bold.ttf new file mode 100644 index 00000000..324cf7e1 Binary files /dev/null and b/static/fonts/noto/NotoSansTelugu-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansTelugu-Light.ttf b/static/fonts/noto/NotoSansTelugu-Light.ttf new file mode 100644 index 00000000..4f632c5d Binary files /dev/null and b/static/fonts/noto/NotoSansTelugu-Light.ttf differ diff --git a/static/fonts/noto/NotoSansTelugu-Medium.ttf b/static/fonts/noto/NotoSansTelugu-Medium.ttf new file mode 100644 index 00000000..5b75738d Binary files /dev/null and b/static/fonts/noto/NotoSansTelugu-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansTelugu-Regular.ttf b/static/fonts/noto/NotoSansTelugu-Regular.ttf new file mode 100644 index 00000000..d72413a7 Binary files /dev/null and b/static/fonts/noto/NotoSansTelugu-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTelugu-Thin.ttf b/static/fonts/noto/NotoSansTelugu-Thin.ttf new file mode 100644 index 00000000..b4e51894 Binary files /dev/null and b/static/fonts/noto/NotoSansTelugu-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansTeluguUI-Black.ttf b/static/fonts/noto/NotoSansTeluguUI-Black.ttf new file mode 100644 index 00000000..e1c37184 Binary files /dev/null and b/static/fonts/noto/NotoSansTeluguUI-Black.ttf differ diff --git a/static/fonts/noto/NotoSansTeluguUI-Bold.ttf b/static/fonts/noto/NotoSansTeluguUI-Bold.ttf new file mode 100644 index 00000000..d5539cbc Binary files /dev/null and b/static/fonts/noto/NotoSansTeluguUI-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansTeluguUI-Light.ttf b/static/fonts/noto/NotoSansTeluguUI-Light.ttf new file mode 100644 index 00000000..492f113f Binary files /dev/null and b/static/fonts/noto/NotoSansTeluguUI-Light.ttf differ diff --git a/static/fonts/noto/NotoSansTeluguUI-Medium.ttf b/static/fonts/noto/NotoSansTeluguUI-Medium.ttf new file mode 100644 index 00000000..7968b143 Binary files /dev/null and b/static/fonts/noto/NotoSansTeluguUI-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansTeluguUI-Regular.ttf b/static/fonts/noto/NotoSansTeluguUI-Regular.ttf new file mode 100644 index 00000000..034052ed Binary files /dev/null and b/static/fonts/noto/NotoSansTeluguUI-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTeluguUI-Thin.ttf b/static/fonts/noto/NotoSansTeluguUI-Thin.ttf new file mode 100644 index 00000000..1c0c27bc Binary files /dev/null and b/static/fonts/noto/NotoSansTeluguUI-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansTest-Regular.ttf b/static/fonts/noto/NotoSansTest-Regular.ttf new file mode 100644 index 00000000..0352d10c Binary files /dev/null and b/static/fonts/noto/NotoSansTest-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansThaana-Black.ttf b/static/fonts/noto/NotoSansThaana-Black.ttf new file mode 100644 index 00000000..8e506877 Binary files /dev/null and b/static/fonts/noto/NotoSansThaana-Black.ttf differ diff --git a/static/fonts/noto/NotoSansThaana-Bold.ttf b/static/fonts/noto/NotoSansThaana-Bold.ttf new file mode 100644 index 00000000..5c18afde Binary files /dev/null and b/static/fonts/noto/NotoSansThaana-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansThaana-Light.ttf b/static/fonts/noto/NotoSansThaana-Light.ttf new file mode 100644 index 00000000..0ee4f002 Binary files /dev/null and b/static/fonts/noto/NotoSansThaana-Light.ttf differ diff --git a/static/fonts/noto/NotoSansThaana-Medium.ttf b/static/fonts/noto/NotoSansThaana-Medium.ttf new file mode 100644 index 00000000..1c17fcd0 Binary files /dev/null and b/static/fonts/noto/NotoSansThaana-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansThaana-Regular.ttf b/static/fonts/noto/NotoSansThaana-Regular.ttf new file mode 100644 index 00000000..8b15530e Binary files /dev/null and b/static/fonts/noto/NotoSansThaana-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansThaana-Thin.ttf b/static/fonts/noto/NotoSansThaana-Thin.ttf new file mode 100644 index 00000000..7f329ff6 Binary files /dev/null and b/static/fonts/noto/NotoSansThaana-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansThai-Black.ttf b/static/fonts/noto/NotoSansThai-Black.ttf new file mode 100644 index 00000000..fcc2bcc0 Binary files /dev/null and b/static/fonts/noto/NotoSansThai-Black.ttf differ diff --git a/static/fonts/noto/NotoSansThai-Bold.ttf b/static/fonts/noto/NotoSansThai-Bold.ttf new file mode 100644 index 00000000..ca4f10cc Binary files /dev/null and b/static/fonts/noto/NotoSansThai-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansThai-Light.ttf b/static/fonts/noto/NotoSansThai-Light.ttf new file mode 100644 index 00000000..ca314dd2 Binary files /dev/null and b/static/fonts/noto/NotoSansThai-Light.ttf differ diff --git a/static/fonts/noto/NotoSansThai-Medium.ttf b/static/fonts/noto/NotoSansThai-Medium.ttf new file mode 100644 index 00000000..571b540f Binary files /dev/null and b/static/fonts/noto/NotoSansThai-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansThai-Regular.ttf b/static/fonts/noto/NotoSansThai-Regular.ttf new file mode 100644 index 00000000..8e1e6381 Binary files /dev/null and b/static/fonts/noto/NotoSansThai-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansThai-Thin.ttf b/static/fonts/noto/NotoSansThai-Thin.ttf new file mode 100644 index 00000000..396663e8 Binary files /dev/null and b/static/fonts/noto/NotoSansThai-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansThaiLooped-Black.ttf b/static/fonts/noto/NotoSansThaiLooped-Black.ttf new file mode 100644 index 00000000..e700c6cf Binary files /dev/null and b/static/fonts/noto/NotoSansThaiLooped-Black.ttf differ diff --git a/static/fonts/noto/NotoSansThaiLooped-Bold.ttf b/static/fonts/noto/NotoSansThaiLooped-Bold.ttf new file mode 100644 index 00000000..8a0dc245 Binary files /dev/null and b/static/fonts/noto/NotoSansThaiLooped-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansThaiLooped-Light.ttf b/static/fonts/noto/NotoSansThaiLooped-Light.ttf new file mode 100644 index 00000000..12b1709a Binary files /dev/null and b/static/fonts/noto/NotoSansThaiLooped-Light.ttf differ diff --git a/static/fonts/noto/NotoSansThaiLooped-Medium.ttf b/static/fonts/noto/NotoSansThaiLooped-Medium.ttf new file mode 100644 index 00000000..03cd03c1 Binary files /dev/null and b/static/fonts/noto/NotoSansThaiLooped-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansThaiLooped-Regular.ttf b/static/fonts/noto/NotoSansThaiLooped-Regular.ttf new file mode 100644 index 00000000..06268f03 Binary files /dev/null and b/static/fonts/noto/NotoSansThaiLooped-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansThaiLooped-Thin.ttf b/static/fonts/noto/NotoSansThaiLooped-Thin.ttf new file mode 100644 index 00000000..a09fe822 Binary files /dev/null and b/static/fonts/noto/NotoSansThaiLooped-Thin.ttf differ diff --git a/static/fonts/noto/NotoSansTifinagh-Regular.ttf b/static/fonts/noto/NotoSansTifinagh-Regular.ttf new file mode 100644 index 00000000..be0f0bad Binary files /dev/null and b/static/fonts/noto/NotoSansTifinagh-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghAPT-Regular.ttf b/static/fonts/noto/NotoSansTifinaghAPT-Regular.ttf new file mode 100644 index 00000000..03ef4d03 Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghAPT-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghAdrar-Regular.ttf b/static/fonts/noto/NotoSansTifinaghAdrar-Regular.ttf new file mode 100644 index 00000000..7d4e76df Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghAdrar-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghAgrawImazighen-Regular.ttf b/static/fonts/noto/NotoSansTifinaghAgrawImazighen-Regular.ttf new file mode 100644 index 00000000..d9a2e498 Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghAgrawImazighen-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghAhaggar-Regular.ttf b/static/fonts/noto/NotoSansTifinaghAhaggar-Regular.ttf new file mode 100644 index 00000000..668bc8d9 Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghAhaggar-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghAir-Regular.ttf b/static/fonts/noto/NotoSansTifinaghAir-Regular.ttf new file mode 100644 index 00000000..04ef67e0 Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghAir-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghAzawagh-Regular.ttf b/static/fonts/noto/NotoSansTifinaghAzawagh-Regular.ttf new file mode 100644 index 00000000..1dd4c009 Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghAzawagh-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghGhat-Regular.ttf b/static/fonts/noto/NotoSansTifinaghGhat-Regular.ttf new file mode 100644 index 00000000..06935217 Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghGhat-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghHawad-Regular.ttf b/static/fonts/noto/NotoSansTifinaghHawad-Regular.ttf new file mode 100644 index 00000000..e27572c7 Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghHawad-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghRhissaIxa-Regular.ttf b/static/fonts/noto/NotoSansTifinaghRhissaIxa-Regular.ttf new file mode 100644 index 00000000..f26c4eb7 Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghRhissaIxa-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghSIL-Regular.ttf b/static/fonts/noto/NotoSansTifinaghSIL-Regular.ttf new file mode 100644 index 00000000..8135a62c Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghSIL-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTifinaghTawellemmet-Regular.ttf b/static/fonts/noto/NotoSansTifinaghTawellemmet-Regular.ttf new file mode 100644 index 00000000..98864760 Binary files /dev/null and b/static/fonts/noto/NotoSansTifinaghTawellemmet-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansTirhuta-Regular.ttf b/static/fonts/noto/NotoSansTirhuta-Regular.ttf new file mode 100644 index 00000000..6083fa7c Binary files /dev/null and b/static/fonts/noto/NotoSansTirhuta-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansUgaritic-Regular.ttf b/static/fonts/noto/NotoSansUgaritic-Regular.ttf new file mode 100644 index 00000000..d7f93867 Binary files /dev/null and b/static/fonts/noto/NotoSansUgaritic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansVai-Regular.ttf b/static/fonts/noto/NotoSansVai-Regular.ttf new file mode 100644 index 00000000..0e792e5e Binary files /dev/null and b/static/fonts/noto/NotoSansVai-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansVithkuqi-Bold.ttf b/static/fonts/noto/NotoSansVithkuqi-Bold.ttf new file mode 100644 index 00000000..26b5adfc Binary files /dev/null and b/static/fonts/noto/NotoSansVithkuqi-Bold.ttf differ diff --git a/static/fonts/noto/NotoSansVithkuqi-Medium.ttf b/static/fonts/noto/NotoSansVithkuqi-Medium.ttf new file mode 100644 index 00000000..db9c908d Binary files /dev/null and b/static/fonts/noto/NotoSansVithkuqi-Medium.ttf differ diff --git a/static/fonts/noto/NotoSansVithkuqi-Regular.ttf b/static/fonts/noto/NotoSansVithkuqi-Regular.ttf new file mode 100644 index 00000000..33ec76dd Binary files /dev/null and b/static/fonts/noto/NotoSansVithkuqi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansWancho-Regular.ttf b/static/fonts/noto/NotoSansWancho-Regular.ttf new file mode 100644 index 00000000..59e7eafb Binary files /dev/null and b/static/fonts/noto/NotoSansWancho-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansWarangCiti-Regular.ttf b/static/fonts/noto/NotoSansWarangCiti-Regular.ttf new file mode 100644 index 00000000..d02cd9c7 Binary files /dev/null and b/static/fonts/noto/NotoSansWarangCiti-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansYi-Regular.ttf b/static/fonts/noto/NotoSansYi-Regular.ttf new file mode 100644 index 00000000..da4bb096 Binary files /dev/null and b/static/fonts/noto/NotoSansYi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSansZanabazarSquare-Regular.ttf b/static/fonts/noto/NotoSansZanabazarSquare-Regular.ttf new file mode 100644 index 00000000..c18542db Binary files /dev/null and b/static/fonts/noto/NotoSansZanabazarSquare-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerif-Black.ttf b/static/fonts/noto/NotoSerif-Black.ttf new file mode 100644 index 00000000..79bb0df8 Binary files /dev/null and b/static/fonts/noto/NotoSerif-Black.ttf differ diff --git a/static/fonts/noto/NotoSerif-BlackItalic.ttf b/static/fonts/noto/NotoSerif-BlackItalic.ttf new file mode 100644 index 00000000..b64699aa Binary files /dev/null and b/static/fonts/noto/NotoSerif-BlackItalic.ttf differ diff --git a/static/fonts/noto/NotoSerif-Bold.ttf b/static/fonts/noto/NotoSerif-Bold.ttf new file mode 100644 index 00000000..5df10c74 Binary files /dev/null and b/static/fonts/noto/NotoSerif-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerif-BoldItalic.ttf b/static/fonts/noto/NotoSerif-BoldItalic.ttf new file mode 100644 index 00000000..ed149819 Binary files /dev/null and b/static/fonts/noto/NotoSerif-BoldItalic.ttf differ diff --git a/static/fonts/noto/NotoSerif-Italic.ttf b/static/fonts/noto/NotoSerif-Italic.ttf new file mode 100644 index 00000000..e7def04b Binary files /dev/null and b/static/fonts/noto/NotoSerif-Italic.ttf differ diff --git a/static/fonts/noto/NotoSerif-Light.ttf b/static/fonts/noto/NotoSerif-Light.ttf new file mode 100644 index 00000000..5b78692f Binary files /dev/null and b/static/fonts/noto/NotoSerif-Light.ttf differ diff --git a/static/fonts/noto/NotoSerif-LightItalic.ttf b/static/fonts/noto/NotoSerif-LightItalic.ttf new file mode 100644 index 00000000..3006b834 Binary files /dev/null and b/static/fonts/noto/NotoSerif-LightItalic.ttf differ diff --git a/static/fonts/noto/NotoSerif-Medium.ttf b/static/fonts/noto/NotoSerif-Medium.ttf new file mode 100644 index 00000000..bc23da48 Binary files /dev/null and b/static/fonts/noto/NotoSerif-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerif-MediumItalic.ttf b/static/fonts/noto/NotoSerif-MediumItalic.ttf new file mode 100644 index 00000000..35c1398a Binary files /dev/null and b/static/fonts/noto/NotoSerif-MediumItalic.ttf differ diff --git a/static/fonts/noto/NotoSerif-Regular.ttf b/static/fonts/noto/NotoSerif-Regular.ttf new file mode 100644 index 00000000..3121cf5a Binary files /dev/null and b/static/fonts/noto/NotoSerif-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerif-Thin.ttf b/static/fonts/noto/NotoSerif-Thin.ttf new file mode 100644 index 00000000..00b0f276 Binary files /dev/null and b/static/fonts/noto/NotoSerif-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerif-ThinItalic.ttf b/static/fonts/noto/NotoSerif-ThinItalic.ttf new file mode 100644 index 00000000..528b74da Binary files /dev/null and b/static/fonts/noto/NotoSerif-ThinItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifAhom-Regular.ttf b/static/fonts/noto/NotoSerifAhom-Regular.ttf new file mode 100644 index 00000000..23da0b9e Binary files /dev/null and b/static/fonts/noto/NotoSerifAhom-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifArmenian-Black.ttf b/static/fonts/noto/NotoSerifArmenian-Black.ttf new file mode 100644 index 00000000..5a934949 Binary files /dev/null and b/static/fonts/noto/NotoSerifArmenian-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifArmenian-Bold.ttf b/static/fonts/noto/NotoSerifArmenian-Bold.ttf new file mode 100644 index 00000000..6361ce6b Binary files /dev/null and b/static/fonts/noto/NotoSerifArmenian-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifArmenian-Light.ttf b/static/fonts/noto/NotoSerifArmenian-Light.ttf new file mode 100644 index 00000000..069ca334 Binary files /dev/null and b/static/fonts/noto/NotoSerifArmenian-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifArmenian-Medium.ttf b/static/fonts/noto/NotoSerifArmenian-Medium.ttf new file mode 100644 index 00000000..7085a9fe Binary files /dev/null and b/static/fonts/noto/NotoSerifArmenian-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifArmenian-Regular.ttf b/static/fonts/noto/NotoSerifArmenian-Regular.ttf new file mode 100644 index 00000000..49c5726e Binary files /dev/null and b/static/fonts/noto/NotoSerifArmenian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifArmenian-Thin.ttf b/static/fonts/noto/NotoSerifArmenian-Thin.ttf new file mode 100644 index 00000000..451c40da Binary files /dev/null and b/static/fonts/noto/NotoSerifArmenian-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifBalinese-Regular.ttf b/static/fonts/noto/NotoSerifBalinese-Regular.ttf new file mode 100644 index 00000000..9b97f3ac Binary files /dev/null and b/static/fonts/noto/NotoSerifBalinese-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifBengali-Black.ttf b/static/fonts/noto/NotoSerifBengali-Black.ttf new file mode 100644 index 00000000..b1b97368 Binary files /dev/null and b/static/fonts/noto/NotoSerifBengali-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifBengali-Bold.ttf b/static/fonts/noto/NotoSerifBengali-Bold.ttf new file mode 100644 index 00000000..f58ff3b1 Binary files /dev/null and b/static/fonts/noto/NotoSerifBengali-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifBengali-Light.ttf b/static/fonts/noto/NotoSerifBengali-Light.ttf new file mode 100644 index 00000000..edcbf87b Binary files /dev/null and b/static/fonts/noto/NotoSerifBengali-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifBengali-Medium.ttf b/static/fonts/noto/NotoSerifBengali-Medium.ttf new file mode 100644 index 00000000..961d4f5a Binary files /dev/null and b/static/fonts/noto/NotoSerifBengali-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifBengali-Regular.ttf b/static/fonts/noto/NotoSerifBengali-Regular.ttf new file mode 100644 index 00000000..792a0846 Binary files /dev/null and b/static/fonts/noto/NotoSerifBengali-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifBengali-Thin.ttf b/static/fonts/noto/NotoSerifBengali-Thin.ttf new file mode 100644 index 00000000..f587553c Binary files /dev/null and b/static/fonts/noto/NotoSerifBengali-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifDevanagari-Black.ttf b/static/fonts/noto/NotoSerifDevanagari-Black.ttf new file mode 100644 index 00000000..b369d1f0 Binary files /dev/null and b/static/fonts/noto/NotoSerifDevanagari-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifDevanagari-Bold.ttf b/static/fonts/noto/NotoSerifDevanagari-Bold.ttf new file mode 100644 index 00000000..e534330e Binary files /dev/null and b/static/fonts/noto/NotoSerifDevanagari-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifDevanagari-Light.ttf b/static/fonts/noto/NotoSerifDevanagari-Light.ttf new file mode 100644 index 00000000..650f0d84 Binary files /dev/null and b/static/fonts/noto/NotoSerifDevanagari-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifDevanagari-Medium.ttf b/static/fonts/noto/NotoSerifDevanagari-Medium.ttf new file mode 100644 index 00000000..56dd943f Binary files /dev/null and b/static/fonts/noto/NotoSerifDevanagari-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifDevanagari-Regular.ttf b/static/fonts/noto/NotoSerifDevanagari-Regular.ttf new file mode 100644 index 00000000..e04cf7eb Binary files /dev/null and b/static/fonts/noto/NotoSerifDevanagari-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifDevanagari-Thin.ttf b/static/fonts/noto/NotoSerifDevanagari-Thin.ttf new file mode 100644 index 00000000..f094bb69 Binary files /dev/null and b/static/fonts/noto/NotoSerifDevanagari-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-Black.ttf b/static/fonts/noto/NotoSerifDisplay-Black.ttf new file mode 100644 index 00000000..454bc6e5 Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-BlackItalic.ttf b/static/fonts/noto/NotoSerifDisplay-BlackItalic.ttf new file mode 100644 index 00000000..ba14a68b Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-BlackItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-Bold.ttf b/static/fonts/noto/NotoSerifDisplay-Bold.ttf new file mode 100644 index 00000000..ad2b5cd4 Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-BoldItalic.ttf b/static/fonts/noto/NotoSerifDisplay-BoldItalic.ttf new file mode 100644 index 00000000..0f4b0216 Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-BoldItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-Italic.ttf b/static/fonts/noto/NotoSerifDisplay-Italic.ttf new file mode 100644 index 00000000..bf888c94 Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-Italic.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-Light.ttf b/static/fonts/noto/NotoSerifDisplay-Light.ttf new file mode 100644 index 00000000..f7108e0f Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-LightItalic.ttf b/static/fonts/noto/NotoSerifDisplay-LightItalic.ttf new file mode 100644 index 00000000..76922df9 Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-LightItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-Medium.ttf b/static/fonts/noto/NotoSerifDisplay-Medium.ttf new file mode 100644 index 00000000..88ded626 Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-MediumItalic.ttf b/static/fonts/noto/NotoSerifDisplay-MediumItalic.ttf new file mode 100644 index 00000000..95da5c00 Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-MediumItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-Regular.ttf b/static/fonts/noto/NotoSerifDisplay-Regular.ttf new file mode 100644 index 00000000..c41bdebf Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-Thin.ttf b/static/fonts/noto/NotoSerifDisplay-Thin.ttf new file mode 100644 index 00000000..0aa13721 Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifDisplay-ThinItalic.ttf b/static/fonts/noto/NotoSerifDisplay-ThinItalic.ttf new file mode 100644 index 00000000..442141c9 Binary files /dev/null and b/static/fonts/noto/NotoSerifDisplay-ThinItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifDivesAkuru-Regular.ttf b/static/fonts/noto/NotoSerifDivesAkuru-Regular.ttf new file mode 100644 index 00000000..ffa1691b Binary files /dev/null and b/static/fonts/noto/NotoSerifDivesAkuru-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifDogra-Regular.ttf b/static/fonts/noto/NotoSerifDogra-Regular.ttf new file mode 100644 index 00000000..d5b841f2 Binary files /dev/null and b/static/fonts/noto/NotoSerifDogra-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifEthiopic-Black.ttf b/static/fonts/noto/NotoSerifEthiopic-Black.ttf new file mode 100644 index 00000000..52f4c653 Binary files /dev/null and b/static/fonts/noto/NotoSerifEthiopic-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifEthiopic-Bold.ttf b/static/fonts/noto/NotoSerifEthiopic-Bold.ttf new file mode 100644 index 00000000..119677a2 Binary files /dev/null and b/static/fonts/noto/NotoSerifEthiopic-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifEthiopic-Light.ttf b/static/fonts/noto/NotoSerifEthiopic-Light.ttf new file mode 100644 index 00000000..ac9b9818 Binary files /dev/null and b/static/fonts/noto/NotoSerifEthiopic-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifEthiopic-Medium.ttf b/static/fonts/noto/NotoSerifEthiopic-Medium.ttf new file mode 100644 index 00000000..6e9caad8 Binary files /dev/null and b/static/fonts/noto/NotoSerifEthiopic-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifEthiopic-Regular.ttf b/static/fonts/noto/NotoSerifEthiopic-Regular.ttf new file mode 100644 index 00000000..0c5d26ac Binary files /dev/null and b/static/fonts/noto/NotoSerifEthiopic-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifEthiopic-Thin.ttf b/static/fonts/noto/NotoSerifEthiopic-Thin.ttf new file mode 100644 index 00000000..9fc10c46 Binary files /dev/null and b/static/fonts/noto/NotoSerifEthiopic-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifGeorgian-Black.ttf b/static/fonts/noto/NotoSerifGeorgian-Black.ttf new file mode 100644 index 00000000..124c6886 Binary files /dev/null and b/static/fonts/noto/NotoSerifGeorgian-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifGeorgian-Bold.ttf b/static/fonts/noto/NotoSerifGeorgian-Bold.ttf new file mode 100644 index 00000000..97142efa Binary files /dev/null and b/static/fonts/noto/NotoSerifGeorgian-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifGeorgian-Light.ttf b/static/fonts/noto/NotoSerifGeorgian-Light.ttf new file mode 100644 index 00000000..9cea9bf7 Binary files /dev/null and b/static/fonts/noto/NotoSerifGeorgian-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifGeorgian-Medium.ttf b/static/fonts/noto/NotoSerifGeorgian-Medium.ttf new file mode 100644 index 00000000..a15b0576 Binary files /dev/null and b/static/fonts/noto/NotoSerifGeorgian-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifGeorgian-Regular.ttf b/static/fonts/noto/NotoSerifGeorgian-Regular.ttf new file mode 100644 index 00000000..73951e11 Binary files /dev/null and b/static/fonts/noto/NotoSerifGeorgian-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifGeorgian-Thin.ttf b/static/fonts/noto/NotoSerifGeorgian-Thin.ttf new file mode 100644 index 00000000..89e6a8ea Binary files /dev/null and b/static/fonts/noto/NotoSerifGeorgian-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifGrantha-Regular.ttf b/static/fonts/noto/NotoSerifGrantha-Regular.ttf new file mode 100644 index 00000000..7438fb77 Binary files /dev/null and b/static/fonts/noto/NotoSerifGrantha-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifGujarati-Black.ttf b/static/fonts/noto/NotoSerifGujarati-Black.ttf new file mode 100644 index 00000000..175ff9f1 Binary files /dev/null and b/static/fonts/noto/NotoSerifGujarati-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifGujarati-Bold.ttf b/static/fonts/noto/NotoSerifGujarati-Bold.ttf new file mode 100644 index 00000000..a7341621 Binary files /dev/null and b/static/fonts/noto/NotoSerifGujarati-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifGujarati-Light.ttf b/static/fonts/noto/NotoSerifGujarati-Light.ttf new file mode 100644 index 00000000..5312136f Binary files /dev/null and b/static/fonts/noto/NotoSerifGujarati-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifGujarati-Medium.ttf b/static/fonts/noto/NotoSerifGujarati-Medium.ttf new file mode 100644 index 00000000..26a1be76 Binary files /dev/null and b/static/fonts/noto/NotoSerifGujarati-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifGujarati-Regular.ttf b/static/fonts/noto/NotoSerifGujarati-Regular.ttf new file mode 100644 index 00000000..dd518f2f Binary files /dev/null and b/static/fonts/noto/NotoSerifGujarati-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifGujarati-Thin.ttf b/static/fonts/noto/NotoSerifGujarati-Thin.ttf new file mode 100644 index 00000000..fed18e17 Binary files /dev/null and b/static/fonts/noto/NotoSerifGujarati-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifGurmukhi-Black.ttf b/static/fonts/noto/NotoSerifGurmukhi-Black.ttf new file mode 100644 index 00000000..d46fd27c Binary files /dev/null and b/static/fonts/noto/NotoSerifGurmukhi-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifGurmukhi-Bold.ttf b/static/fonts/noto/NotoSerifGurmukhi-Bold.ttf new file mode 100644 index 00000000..a52f406b Binary files /dev/null and b/static/fonts/noto/NotoSerifGurmukhi-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifGurmukhi-Light.ttf b/static/fonts/noto/NotoSerifGurmukhi-Light.ttf new file mode 100644 index 00000000..3fb4bed7 Binary files /dev/null and b/static/fonts/noto/NotoSerifGurmukhi-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifGurmukhi-Medium.ttf b/static/fonts/noto/NotoSerifGurmukhi-Medium.ttf new file mode 100644 index 00000000..5c21ec16 Binary files /dev/null and b/static/fonts/noto/NotoSerifGurmukhi-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifGurmukhi-Regular.ttf b/static/fonts/noto/NotoSerifGurmukhi-Regular.ttf new file mode 100644 index 00000000..cf5315e2 Binary files /dev/null and b/static/fonts/noto/NotoSerifGurmukhi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifGurmukhi-Thin.ttf b/static/fonts/noto/NotoSerifGurmukhi-Thin.ttf new file mode 100644 index 00000000..8e222680 Binary files /dev/null and b/static/fonts/noto/NotoSerifGurmukhi-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifHebrew-Black.ttf b/static/fonts/noto/NotoSerifHebrew-Black.ttf new file mode 100644 index 00000000..e3c318b1 Binary files /dev/null and b/static/fonts/noto/NotoSerifHebrew-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifHebrew-Bold.ttf b/static/fonts/noto/NotoSerifHebrew-Bold.ttf new file mode 100644 index 00000000..3539fb40 Binary files /dev/null and b/static/fonts/noto/NotoSerifHebrew-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifHebrew-Light.ttf b/static/fonts/noto/NotoSerifHebrew-Light.ttf new file mode 100644 index 00000000..5beecdfa Binary files /dev/null and b/static/fonts/noto/NotoSerifHebrew-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifHebrew-Medium.ttf b/static/fonts/noto/NotoSerifHebrew-Medium.ttf new file mode 100644 index 00000000..af204fbf Binary files /dev/null and b/static/fonts/noto/NotoSerifHebrew-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifHebrew-Regular.ttf b/static/fonts/noto/NotoSerifHebrew-Regular.ttf new file mode 100644 index 00000000..ff55a38f Binary files /dev/null and b/static/fonts/noto/NotoSerifHebrew-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifHebrew-Thin.ttf b/static/fonts/noto/NotoSerifHebrew-Thin.ttf new file mode 100644 index 00000000..838c2ba4 Binary files /dev/null and b/static/fonts/noto/NotoSerifHebrew-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifKannada-Black.ttf b/static/fonts/noto/NotoSerifKannada-Black.ttf new file mode 100644 index 00000000..87da4162 Binary files /dev/null and b/static/fonts/noto/NotoSerifKannada-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifKannada-Bold.ttf b/static/fonts/noto/NotoSerifKannada-Bold.ttf new file mode 100644 index 00000000..025db336 Binary files /dev/null and b/static/fonts/noto/NotoSerifKannada-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifKannada-Light.ttf b/static/fonts/noto/NotoSerifKannada-Light.ttf new file mode 100644 index 00000000..a4dcca79 Binary files /dev/null and b/static/fonts/noto/NotoSerifKannada-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifKannada-Medium.ttf b/static/fonts/noto/NotoSerifKannada-Medium.ttf new file mode 100644 index 00000000..a8e0a5d0 Binary files /dev/null and b/static/fonts/noto/NotoSerifKannada-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifKannada-Regular.ttf b/static/fonts/noto/NotoSerifKannada-Regular.ttf new file mode 100644 index 00000000..ce15076b Binary files /dev/null and b/static/fonts/noto/NotoSerifKannada-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifKannada-Thin.ttf b/static/fonts/noto/NotoSerifKannada-Thin.ttf new file mode 100644 index 00000000..1c581a6a Binary files /dev/null and b/static/fonts/noto/NotoSerifKannada-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifKhitanSmallScript-Regular.ttf b/static/fonts/noto/NotoSerifKhitanSmallScript-Regular.ttf new file mode 100644 index 00000000..a96e7ef5 Binary files /dev/null and b/static/fonts/noto/NotoSerifKhitanSmallScript-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifKhmer-Black.ttf b/static/fonts/noto/NotoSerifKhmer-Black.ttf new file mode 100644 index 00000000..a5e95eb4 Binary files /dev/null and b/static/fonts/noto/NotoSerifKhmer-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifKhmer-Bold.ttf b/static/fonts/noto/NotoSerifKhmer-Bold.ttf new file mode 100644 index 00000000..9c143a2f Binary files /dev/null and b/static/fonts/noto/NotoSerifKhmer-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifKhmer-Light.ttf b/static/fonts/noto/NotoSerifKhmer-Light.ttf new file mode 100644 index 00000000..ae20d43e Binary files /dev/null and b/static/fonts/noto/NotoSerifKhmer-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifKhmer-Medium.ttf b/static/fonts/noto/NotoSerifKhmer-Medium.ttf new file mode 100644 index 00000000..36942fcb Binary files /dev/null and b/static/fonts/noto/NotoSerifKhmer-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifKhmer-Regular.ttf b/static/fonts/noto/NotoSerifKhmer-Regular.ttf new file mode 100644 index 00000000..a5276cf1 Binary files /dev/null and b/static/fonts/noto/NotoSerifKhmer-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifKhmer-Thin.ttf b/static/fonts/noto/NotoSerifKhmer-Thin.ttf new file mode 100644 index 00000000..d1e01149 Binary files /dev/null and b/static/fonts/noto/NotoSerifKhmer-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifKhojki-Bold.ttf b/static/fonts/noto/NotoSerifKhojki-Bold.ttf new file mode 100644 index 00000000..4fe590ef Binary files /dev/null and b/static/fonts/noto/NotoSerifKhojki-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifKhojki-Regular.ttf b/static/fonts/noto/NotoSerifKhojki-Regular.ttf new file mode 100644 index 00000000..2fd5eb23 Binary files /dev/null and b/static/fonts/noto/NotoSerifKhojki-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifLao-Black.ttf b/static/fonts/noto/NotoSerifLao-Black.ttf new file mode 100644 index 00000000..ef412535 Binary files /dev/null and b/static/fonts/noto/NotoSerifLao-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifLao-Bold.ttf b/static/fonts/noto/NotoSerifLao-Bold.ttf new file mode 100644 index 00000000..690c3b15 Binary files /dev/null and b/static/fonts/noto/NotoSerifLao-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifLao-Light.ttf b/static/fonts/noto/NotoSerifLao-Light.ttf new file mode 100644 index 00000000..beeb8851 Binary files /dev/null and b/static/fonts/noto/NotoSerifLao-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifLao-Medium.ttf b/static/fonts/noto/NotoSerifLao-Medium.ttf new file mode 100644 index 00000000..7bca463f Binary files /dev/null and b/static/fonts/noto/NotoSerifLao-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifLao-Regular.ttf b/static/fonts/noto/NotoSerifLao-Regular.ttf new file mode 100644 index 00000000..6885c330 Binary files /dev/null and b/static/fonts/noto/NotoSerifLao-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifLao-Thin.ttf b/static/fonts/noto/NotoSerifLao-Thin.ttf new file mode 100644 index 00000000..db916a22 Binary files /dev/null and b/static/fonts/noto/NotoSerifLao-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifMakasar-Regular.ttf b/static/fonts/noto/NotoSerifMakasar-Regular.ttf new file mode 100644 index 00000000..afadecaf Binary files /dev/null and b/static/fonts/noto/NotoSerifMakasar-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifMalayalam-Black.ttf b/static/fonts/noto/NotoSerifMalayalam-Black.ttf new file mode 100644 index 00000000..1a427a64 Binary files /dev/null and b/static/fonts/noto/NotoSerifMalayalam-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifMalayalam-Bold.ttf b/static/fonts/noto/NotoSerifMalayalam-Bold.ttf new file mode 100644 index 00000000..b0792e2d Binary files /dev/null and b/static/fonts/noto/NotoSerifMalayalam-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifMalayalam-Light.ttf b/static/fonts/noto/NotoSerifMalayalam-Light.ttf new file mode 100644 index 00000000..3a5877fe Binary files /dev/null and b/static/fonts/noto/NotoSerifMalayalam-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifMalayalam-Medium.ttf b/static/fonts/noto/NotoSerifMalayalam-Medium.ttf new file mode 100644 index 00000000..8675d514 Binary files /dev/null and b/static/fonts/noto/NotoSerifMalayalam-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifMalayalam-Regular.ttf b/static/fonts/noto/NotoSerifMalayalam-Regular.ttf new file mode 100644 index 00000000..feb046a1 Binary files /dev/null and b/static/fonts/noto/NotoSerifMalayalam-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifMalayalam-Thin.ttf b/static/fonts/noto/NotoSerifMalayalam-Thin.ttf new file mode 100644 index 00000000..3079987e Binary files /dev/null and b/static/fonts/noto/NotoSerifMalayalam-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifMyanmar-Black.ttf b/static/fonts/noto/NotoSerifMyanmar-Black.ttf new file mode 100644 index 00000000..7dc737ec Binary files /dev/null and b/static/fonts/noto/NotoSerifMyanmar-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifMyanmar-Bold.ttf b/static/fonts/noto/NotoSerifMyanmar-Bold.ttf new file mode 100644 index 00000000..a7cf4204 Binary files /dev/null and b/static/fonts/noto/NotoSerifMyanmar-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifMyanmar-Light.ttf b/static/fonts/noto/NotoSerifMyanmar-Light.ttf new file mode 100644 index 00000000..528e5710 Binary files /dev/null and b/static/fonts/noto/NotoSerifMyanmar-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifMyanmar-Medium.ttf b/static/fonts/noto/NotoSerifMyanmar-Medium.ttf new file mode 100644 index 00000000..be76bb3d Binary files /dev/null and b/static/fonts/noto/NotoSerifMyanmar-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifMyanmar-Regular.ttf b/static/fonts/noto/NotoSerifMyanmar-Regular.ttf new file mode 100644 index 00000000..bd4d8196 Binary files /dev/null and b/static/fonts/noto/NotoSerifMyanmar-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifMyanmar-Thin.ttf b/static/fonts/noto/NotoSerifMyanmar-Thin.ttf new file mode 100644 index 00000000..418ff71d Binary files /dev/null and b/static/fonts/noto/NotoSerifMyanmar-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifNPHmong-Bold.ttf b/static/fonts/noto/NotoSerifNPHmong-Bold.ttf new file mode 100644 index 00000000..1f278a4c Binary files /dev/null and b/static/fonts/noto/NotoSerifNPHmong-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifNPHmong-Medium.ttf b/static/fonts/noto/NotoSerifNPHmong-Medium.ttf new file mode 100644 index 00000000..e759bc55 Binary files /dev/null and b/static/fonts/noto/NotoSerifNPHmong-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifNPHmong-Regular.ttf b/static/fonts/noto/NotoSerifNPHmong-Regular.ttf new file mode 100644 index 00000000..16994b75 Binary files /dev/null and b/static/fonts/noto/NotoSerifNPHmong-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifOldUyghur-Regular.ttf b/static/fonts/noto/NotoSerifOldUyghur-Regular.ttf new file mode 100644 index 00000000..5670f652 Binary files /dev/null and b/static/fonts/noto/NotoSerifOldUyghur-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifOriya-Bold.ttf b/static/fonts/noto/NotoSerifOriya-Bold.ttf new file mode 100644 index 00000000..7a6f8f38 Binary files /dev/null and b/static/fonts/noto/NotoSerifOriya-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifOriya-Medium.ttf b/static/fonts/noto/NotoSerifOriya-Medium.ttf new file mode 100644 index 00000000..574a98d5 Binary files /dev/null and b/static/fonts/noto/NotoSerifOriya-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifOriya-Regular.ttf b/static/fonts/noto/NotoSerifOriya-Regular.ttf new file mode 100644 index 00000000..6bb33f45 Binary files /dev/null and b/static/fonts/noto/NotoSerifOriya-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifOttomanSiyaq-Regular.ttf b/static/fonts/noto/NotoSerifOttomanSiyaq-Regular.ttf new file mode 100644 index 00000000..2e647e02 Binary files /dev/null and b/static/fonts/noto/NotoSerifOttomanSiyaq-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifSinhala-Black.ttf b/static/fonts/noto/NotoSerifSinhala-Black.ttf new file mode 100644 index 00000000..fb0cf47c Binary files /dev/null and b/static/fonts/noto/NotoSerifSinhala-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifSinhala-Bold.ttf b/static/fonts/noto/NotoSerifSinhala-Bold.ttf new file mode 100644 index 00000000..6d9888da Binary files /dev/null and b/static/fonts/noto/NotoSerifSinhala-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifSinhala-Light.ttf b/static/fonts/noto/NotoSerifSinhala-Light.ttf new file mode 100644 index 00000000..b4b527eb Binary files /dev/null and b/static/fonts/noto/NotoSerifSinhala-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifSinhala-Medium.ttf b/static/fonts/noto/NotoSerifSinhala-Medium.ttf new file mode 100644 index 00000000..a206edff Binary files /dev/null and b/static/fonts/noto/NotoSerifSinhala-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifSinhala-Regular.ttf b/static/fonts/noto/NotoSerifSinhala-Regular.ttf new file mode 100644 index 00000000..db675087 Binary files /dev/null and b/static/fonts/noto/NotoSerifSinhala-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifSinhala-Thin.ttf b/static/fonts/noto/NotoSerifSinhala-Thin.ttf new file mode 100644 index 00000000..edeff97a Binary files /dev/null and b/static/fonts/noto/NotoSerifSinhala-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-Black.ttf b/static/fonts/noto/NotoSerifTamil-Black.ttf new file mode 100644 index 00000000..01db1ae8 Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-BlackItalic.ttf b/static/fonts/noto/NotoSerifTamil-BlackItalic.ttf new file mode 100644 index 00000000..a404a04d Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-BlackItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-Bold.ttf b/static/fonts/noto/NotoSerifTamil-Bold.ttf new file mode 100644 index 00000000..84865dc2 Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-BoldItalic.ttf b/static/fonts/noto/NotoSerifTamil-BoldItalic.ttf new file mode 100644 index 00000000..db2c529f Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-BoldItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-Italic.ttf b/static/fonts/noto/NotoSerifTamil-Italic.ttf new file mode 100644 index 00000000..d89c7a52 Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-Italic.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-Light.ttf b/static/fonts/noto/NotoSerifTamil-Light.ttf new file mode 100644 index 00000000..4e3eeeb0 Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-LightItalic.ttf b/static/fonts/noto/NotoSerifTamil-LightItalic.ttf new file mode 100644 index 00000000..7abc05fb Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-LightItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-Medium.ttf b/static/fonts/noto/NotoSerifTamil-Medium.ttf new file mode 100644 index 00000000..52b87f34 Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-MediumItalic.ttf b/static/fonts/noto/NotoSerifTamil-MediumItalic.ttf new file mode 100644 index 00000000..b6b6b222 Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-MediumItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-Regular.ttf b/static/fonts/noto/NotoSerifTamil-Regular.ttf new file mode 100644 index 00000000..09e96a56 Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-Thin.ttf b/static/fonts/noto/NotoSerifTamil-Thin.ttf new file mode 100644 index 00000000..470abce4 Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifTamil-ThinItalic.ttf b/static/fonts/noto/NotoSerifTamil-ThinItalic.ttf new file mode 100644 index 00000000..5e15e6d8 Binary files /dev/null and b/static/fonts/noto/NotoSerifTamil-ThinItalic.ttf differ diff --git a/static/fonts/noto/NotoSerifTangut-Regular.ttf b/static/fonts/noto/NotoSerifTangut-Regular.ttf new file mode 100644 index 00000000..08a6b94d Binary files /dev/null and b/static/fonts/noto/NotoSerifTangut-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifTelugu-Black.ttf b/static/fonts/noto/NotoSerifTelugu-Black.ttf new file mode 100644 index 00000000..2399f950 Binary files /dev/null and b/static/fonts/noto/NotoSerifTelugu-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifTelugu-Bold.ttf b/static/fonts/noto/NotoSerifTelugu-Bold.ttf new file mode 100644 index 00000000..502d46a6 Binary files /dev/null and b/static/fonts/noto/NotoSerifTelugu-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifTelugu-Light.ttf b/static/fonts/noto/NotoSerifTelugu-Light.ttf new file mode 100644 index 00000000..51446e4d Binary files /dev/null and b/static/fonts/noto/NotoSerifTelugu-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifTelugu-Medium.ttf b/static/fonts/noto/NotoSerifTelugu-Medium.ttf new file mode 100644 index 00000000..432b1829 Binary files /dev/null and b/static/fonts/noto/NotoSerifTelugu-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifTelugu-Regular.ttf b/static/fonts/noto/NotoSerifTelugu-Regular.ttf new file mode 100644 index 00000000..44be6a36 Binary files /dev/null and b/static/fonts/noto/NotoSerifTelugu-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifTelugu-Thin.ttf b/static/fonts/noto/NotoSerifTelugu-Thin.ttf new file mode 100644 index 00000000..8a0bfceb Binary files /dev/null and b/static/fonts/noto/NotoSerifTelugu-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifTest-Bold.ttf b/static/fonts/noto/NotoSerifTest-Bold.ttf new file mode 100644 index 00000000..98ce6fa4 Binary files /dev/null and b/static/fonts/noto/NotoSerifTest-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifTest-Regular.ttf b/static/fonts/noto/NotoSerifTest-Regular.ttf new file mode 100644 index 00000000..50779570 Binary files /dev/null and b/static/fonts/noto/NotoSerifTest-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifThai-Black.ttf b/static/fonts/noto/NotoSerifThai-Black.ttf new file mode 100644 index 00000000..c4cb9c76 Binary files /dev/null and b/static/fonts/noto/NotoSerifThai-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifThai-Bold.ttf b/static/fonts/noto/NotoSerifThai-Bold.ttf new file mode 100644 index 00000000..e1db6cb4 Binary files /dev/null and b/static/fonts/noto/NotoSerifThai-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifThai-Light.ttf b/static/fonts/noto/NotoSerifThai-Light.ttf new file mode 100644 index 00000000..f2f80d5a Binary files /dev/null and b/static/fonts/noto/NotoSerifThai-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifThai-Medium.ttf b/static/fonts/noto/NotoSerifThai-Medium.ttf new file mode 100644 index 00000000..829f0c86 Binary files /dev/null and b/static/fonts/noto/NotoSerifThai-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifThai-Regular.ttf b/static/fonts/noto/NotoSerifThai-Regular.ttf new file mode 100644 index 00000000..6438c594 Binary files /dev/null and b/static/fonts/noto/NotoSerifThai-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifThai-Thin.ttf b/static/fonts/noto/NotoSerifThai-Thin.ttf new file mode 100644 index 00000000..1e9a74fb Binary files /dev/null and b/static/fonts/noto/NotoSerifThai-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifTibetan-Black.ttf b/static/fonts/noto/NotoSerifTibetan-Black.ttf new file mode 100644 index 00000000..e3e9d857 Binary files /dev/null and b/static/fonts/noto/NotoSerifTibetan-Black.ttf differ diff --git a/static/fonts/noto/NotoSerifTibetan-Bold.ttf b/static/fonts/noto/NotoSerifTibetan-Bold.ttf new file mode 100644 index 00000000..e2d1838e Binary files /dev/null and b/static/fonts/noto/NotoSerifTibetan-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifTibetan-Light.ttf b/static/fonts/noto/NotoSerifTibetan-Light.ttf new file mode 100644 index 00000000..72585e3d Binary files /dev/null and b/static/fonts/noto/NotoSerifTibetan-Light.ttf differ diff --git a/static/fonts/noto/NotoSerifTibetan-Medium.ttf b/static/fonts/noto/NotoSerifTibetan-Medium.ttf new file mode 100644 index 00000000..d532b7c2 Binary files /dev/null and b/static/fonts/noto/NotoSerifTibetan-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifTibetan-Regular.ttf b/static/fonts/noto/NotoSerifTibetan-Regular.ttf new file mode 100644 index 00000000..e4015f1c Binary files /dev/null and b/static/fonts/noto/NotoSerifTibetan-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifTibetan-Thin.ttf b/static/fonts/noto/NotoSerifTibetan-Thin.ttf new file mode 100644 index 00000000..477d2bb3 Binary files /dev/null and b/static/fonts/noto/NotoSerifTibetan-Thin.ttf differ diff --git a/static/fonts/noto/NotoSerifToto-Bold.ttf b/static/fonts/noto/NotoSerifToto-Bold.ttf new file mode 100644 index 00000000..e1e5ddd7 Binary files /dev/null and b/static/fonts/noto/NotoSerifToto-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifToto-Medium.ttf b/static/fonts/noto/NotoSerifToto-Medium.ttf new file mode 100644 index 00000000..7756773a Binary files /dev/null and b/static/fonts/noto/NotoSerifToto-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifToto-Regular.ttf b/static/fonts/noto/NotoSerifToto-Regular.ttf new file mode 100644 index 00000000..66709be2 Binary files /dev/null and b/static/fonts/noto/NotoSerifToto-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifVithkuqi-Bold.ttf b/static/fonts/noto/NotoSerifVithkuqi-Bold.ttf new file mode 100644 index 00000000..d328815c Binary files /dev/null and b/static/fonts/noto/NotoSerifVithkuqi-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifVithkuqi-Medium.ttf b/static/fonts/noto/NotoSerifVithkuqi-Medium.ttf new file mode 100644 index 00000000..c8af368d Binary files /dev/null and b/static/fonts/noto/NotoSerifVithkuqi-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifVithkuqi-Regular.ttf b/static/fonts/noto/NotoSerifVithkuqi-Regular.ttf new file mode 100644 index 00000000..e18be5ef Binary files /dev/null and b/static/fonts/noto/NotoSerifVithkuqi-Regular.ttf differ diff --git a/static/fonts/noto/NotoSerifYezidi-Bold.ttf b/static/fonts/noto/NotoSerifYezidi-Bold.ttf new file mode 100644 index 00000000..bece45fb Binary files /dev/null and b/static/fonts/noto/NotoSerifYezidi-Bold.ttf differ diff --git a/static/fonts/noto/NotoSerifYezidi-Medium.ttf b/static/fonts/noto/NotoSerifYezidi-Medium.ttf new file mode 100644 index 00000000..c1436073 Binary files /dev/null and b/static/fonts/noto/NotoSerifYezidi-Medium.ttf differ diff --git a/static/fonts/noto/NotoSerifYezidi-Regular.ttf b/static/fonts/noto/NotoSerifYezidi-Regular.ttf new file mode 100644 index 00000000..31a88d0a Binary files /dev/null and b/static/fonts/noto/NotoSerifYezidi-Regular.ttf differ diff --git a/static/fonts/noto/NotoTraditionalNushu-Bold.ttf b/static/fonts/noto/NotoTraditionalNushu-Bold.ttf new file mode 100644 index 00000000..d07b0649 Binary files /dev/null and b/static/fonts/noto/NotoTraditionalNushu-Bold.ttf differ diff --git a/static/fonts/noto/NotoTraditionalNushu-Light.ttf b/static/fonts/noto/NotoTraditionalNushu-Light.ttf new file mode 100644 index 00000000..2118bc82 Binary files /dev/null and b/static/fonts/noto/NotoTraditionalNushu-Light.ttf differ diff --git a/static/fonts/noto/NotoTraditionalNushu-Regular.ttf b/static/fonts/noto/NotoTraditionalNushu-Regular.ttf new file mode 100644 index 00000000..68608766 Binary files /dev/null and b/static/fonts/noto/NotoTraditionalNushu-Regular.ttf differ diff --git a/tailwind.config.ts b/tailwind.config.ts index 21625193..937f24bc 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -16,10 +16,27 @@ export default { skeleton({ themes: { preset: [ + { + name: 'gold-nouveau', + enhancements: true, + }, + { + name: 'hamlindigo', + enhancements: true, + }, { name: 'modern', enhancements: true, }, + { + name: 'rocket', + enhancements: true, + }, + { + name: 'wintry', + enhancements: true, + }, + ], }, }),