diff --git a/.claude/settings.local.json b/.claude/settings.local.json deleted file mode 100644 index d899315..0000000 --- a/.claude/settings.local.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "permissions": { - "allow": [ - "Bash(grep:*)", - "Bash(ls -1 Formula/*.rb)", - "Bash(ls:*)", - "Bash(find:*)", - "Bash(git ls-tree:*)" - ] - } -} diff --git a/.claude/skills/project-context/SKILL.md b/.claude/skills/project-context/SKILL.md deleted file mode 100644 index e5cb5d3..0000000 --- a/.claude/skills/project-context/SKILL.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: custom-font-tap-project -description: Use when working in this repository, when the user asks about fonts, Homebrew formulae, the font tap, adding fonts, or the folder structure in font_files or Formula. Describes a Homebrew tap for custom fonts and the scripts that organize font folders and generate formulae. ---- - -# Custom Font Tap — Project context - -**Canonical reference: read [PROJECT.md](../../../PROJECT.md) at the repo root.** - -## What this repo is -- A **Homebrew tap** for a personal font collection. Users run `brew tap genet-godzilla/fonts ...` then `brew install font-`. -- Fonts live in `font_files/font-/` with exactly four subdirectories: `ttf/`, `otf/`, `web/`, `other_files/`. - -## Rules -- **Do not edit `Formula/*.rb` by hand.** They are generated by `.fontfoldercleanup/create_homebrew_formula.py`. -- All font folders must use the `font-` prefix. Only `.ttf` in ttf/, `.otf` in otf/, web fonts (woff, woff2, eot, svg) in web/, everything else in other_files/. -- To add a font: run `uv run add-font ` (or add `font_files/font-/`, run `cleanup_font_folders.py` then `create_homebrew_formula.py`). Validate with `uv run pytest tests/`. - -## Scripts and CLI -- **add-font** — `uv run add-font `: add/update a font, runs cleanup + formula generator + tests. Optional: `uv tool install .` for global `add-font`. -- **cleanup_font_folders.py** (`.fontfoldercleanup/`) — Organizes font folders into ttf/, otf/, web/, other_files/. Run with `--path `. -- **create_homebrew_formula.py** (`.fontfoldercleanup/`) — Generates `Formula/font-.rb` for every `font-*` folder in `font_files/`. -- **tests/** — `uv run pytest tests/` validates every font (structure, formula exists, formula content). - -## Quick commands (from repo root) -```bash -uv run add-font # add or update a font -uv run pytest tests/ # run test suite -python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files -python3 .fontfoldercleanup/create_homebrew_formula.py -``` diff --git a/.cursor/plans/tap_refactor_and_font_tests_ebcd5cae.plan.md b/.cursor/plans/tap_refactor_and_font_tests_ebcd5cae.plan.md deleted file mode 100644 index fc5c48c..0000000 --- a/.cursor/plans/tap_refactor_and_font_tests_ebcd5cae.plan.md +++ /dev/null @@ -1,136 +0,0 @@ ---- -name: Tap refactor and font tests -overview: Refactor the tap so font_files is the single source of truth, add a test suite that validates every font (structure, formula presence, and optional install checks), fix formula generation (Ruby class names, per-formula tests), consolidate to one formula per font, and add a uv-managed add-font CLI for an easy add/update workflow. -todos: [] -isProject: false ---- - -# Custom Font Tap Refactor and Test Plan - -## Current state (summary) - -- **124** font folders in `font_files/` (each `font-/` with `ttf/`, `otf/`, `web/`, `other_files/`). -- **250** Formula files: ~125 named `font-.rb` (from generator) and ~125 legacy `.rb` (no `font-` prefix). One formula (`font-acrylichand.rb`) has no matching folder (folder is `font-acrylic-hand`). -- **Scripts:** `[.fontfoldercleanup/cleanup_font_folders.py](.fontfoldercleanup/cleanup_font_folders.py)` organizes folders; `[.fontfoldercleanup/create_homebrew_formula.py](.fontfoldercleanup/create_homebrew_formula.py)` generates formulae. Formula class names use `.capitalize()` only, producing **invalid Ruby** for names with hyphens (e.g. `FontAcrylic-hand` — hyphen is minus in Ruby). Homebrew expects kebab-case filename → PascalCase class (e.g. `font-acrylic-hand.rb` → `FontAcrylicHand`). -- **No test suite.** Formulae have a generic `test do` that only checks share dirs exist, not that any font files were installed for that formula. -- **Add-font workflow** is manual: move folder, run cleanup, run formula generator, commit (see [PROJECT.md](PROJECT.md) § Workflows). - ---- - -## 1. Single source of truth and Formula cleanup - -- **Canonical list of fonts:** `font_files/` — every `font-*` directory is one font. Formula set must match exactly. -- **One formula per font**, named `**font-.rb**` only. Remove legacy formulae that lack the `font-` prefix (e.g. `acrylic-hand.rb`, `idgrotesk.rb`) after ensuring the `font-.rb` version exists and is correct. Optionally keep a one-time migration note or script that maps old names to `font-` for users. -- **Fix orphan formula:** Either remove `font-acrylichand.rb` or treat it as alias for `font-acrylic-hand` (document and point to same font folder); recommend removing if it was a typo. - ---- - -## 2. Formula generator fixes ([create_homebrew_formula.py](.fontfoldercleanup/create_homebrew_formula.py)) - -- **Ruby class name:** Convert formula name (the part after `font-`) to a valid PascalCase constant: - - `acrylic-hand` → `AcrylicHand` (split on `-` and `_`, capitalize each segment, join). - - Class: `Font` + that (e.g. `FontAcrylicHand`). No hyphens in the class name. -- **Per-formula test block:** Generate a `test do` that asserts **at least one** of the expected install paths actually has a file for this formula (e.g. for a font that has only OTF, assert `(share/"fonts/opentype").glob("*.otf").any?` or equivalent). If a font has zero ttf/otf/web files, the test can assert the formula’s `share/` dir exists and optionally that `other_files` content was installed. This makes “tests for every font” meaningful at the Homebrew level. -- **Optional:** Add a comment in the generated formula listing expected extensions (e.g. “TTF/OTF”) so humans and audits can see what the formula is supposed to install. - ---- - -## 3. Tests for every font - -Two layers: (A) repo-level tests that run without Homebrew install, (B) optional CI that runs Homebrew audits/installs. - -### 3a. Repo-level test suite (Python, e.g. pytest) - -- **Location:** e.g. `tests/` at repo root (or `.fontfoldercleanup/tests/` if you prefer to keep everything under the script dir). -- **Single source of truth:** Scan `font_files/` for all `font-*` directories. -- **For each font folder, test:** - - **Structure:** Exactly four subdirs: `ttf/`, `otf/`, `web/`, `other_files/`; no other top-level files or dirs (or treat “other” as error / move to `other_files` in cleanup). - - **At least one font file:** At least one of `ttf/*.ttf`, `otf/*.otf`, or `web/*.{woff,woff2,eot,svg}` exists (avoid “font” with only docs in `other_files` and no actual font). - - **Formula exists:** `Formula/font-.rb` exists for that folder name. - - **Formula content (sanity):** Generated formula references the correct `font_files/font-/` paths and correct formula name; optional: regex or simple parse to ensure class name is valid (PascalCase, no hyphen). -- **Global tests:** - - Every `Formula/font-*.rb` has a matching `font_files/font-/` directory (no orphan formulae). - - No duplicate formula names (only one `font-.rb` per name). -- **Implementation:** Parametrized tests (e.g. one test per font for structure, one per font for “formula exists”, etc.) so “EVERY” font is explicitly covered and failures report the font name. Use the same list of `font-*` dirs and the same naming rules as the formula generator so the suite and generator stay in sync. - -### 3b. Homebrew-level checks (CI) - -- `**brew audit`:** Run `brew audit --formula Formula/font-*.rb` (or equivalent) in CI to catch style and metadata issues. Fix any failures (e.g. empty `sha256`) where possible; for taps that don’t publish bottles, audit may still flag missing sha256 — document or suppress as appropriate. -- **Optional “install” test:** For CI, either: - - Run `brew install --formula ` for each `Formula/font-*.rb` (slow but validates install and the new per-formula test block), or - - Run install only for a small subset (e.g. 5–10 formulae) or on a schedule to keep CI fast. The repo-level tests above already validate structure and formula presence for every font. - -Recommended: add a GitHub Actions workflow under `.github/workflows/` that (1) runs the Python test suite, (2) runs `brew audit` on `Formula/*.rb`, and (3) optionally runs a few `brew install` tests. - ---- - -## 4. Easier add/update font workflow - -- **Command-line tool `add-font`:** A CLI invocable as `add-font` (or `uv run add-font` from the repo). Use **uv** for dependency management; the tool is auto-installed when you use uv to run it (e.g. `uv run add-font` creates/uses the project venv and runs the entry point; no separate install step required). Optionally run `uv tool install .` from the repo for a global `add-font` on PATH. **Behavior:** - - **Add:** Accept a path to an unpacked font (folder or archive) or a name if the folder is already in `font_files/`. If path is given, copy/move into `font_files/font-` (prompt or infer `` from folder name), then run cleanup then formula generator. - - **Update:** If `font_files/font-` already exists, run cleanup (to reorganize any new files) then formula generator. - - **Validation:** After changes, run the Python test suite (and optionally `brew audit` for touched formulae). Exit non-zero if tests fail. -- **Project layout:** Add `pyproject.toml` at repo root with a console script entry point, e.g. `add-font = "tap_cli.main:main"`. Python tooling (tests, add-font, existing scripts) lives under this uv-managed project. -- **Documentation:** Update [PROJECT.md](PROJECT.md) (and [.cursorrules](.cursorrules) / [.claude/skills/project-context/SKILL.md](.claude/skills/project-context/SKILL.md)) so the documented “add a font” flow is: (1) put files in `To Sort/` or pass path, (2) run `uv run add-font ` (or `add-font ` if installed via `uv tool install .`), (3) commit `font_files/font-/` and `Formula/font-.rb`. Document “regenerate all formulae” as running the formula generator then the test suite. - ---- - -## 5. Implementation order (suggested) - -1. **Formula generator:** Fix class name generation (PascalCase, no hyphens) and improve `test do` to assert at least one font file (or other_files) for that formula. Regenerate all formulae from current `font_files/`. -2. **Remove legacy and orphan formulae:** Delete formulae without `font-` prefix; remove or fix `font-acrylichand`. Ensure 1:1 mapping font folder ↔ `Formula/font-.rb`. -3. **Repo-level test suite:** Add `tests/` (or equivalent), implement parametrized tests for every font (structure, at least one font file, formula exists, formula sanity). Run and fix any failures. -4. `**add-font` CLI (uv):** Add `pyproject.toml` with uv and a console script entry point `add-font`. Implement the CLI that runs cleanup, formula generator, and test suite; document `uv run add-font` (and optional `uv tool install .`) in PROJECT.md and related context files. -5. **CI:** Add GitHub Actions workflow for Python tests and `brew audit`; optionally add a small number of `brew install` jobs. - ---- - -## 6. Diagram (high-level) - -```mermaid -flowchart LR - subgraph sources [Single source of truth] - FontDirs["font_files/font-*"] - end - - subgraph scripts [Scripts and CLI] - Cleanup["cleanup_font_folders.py"] - Generator["create_homebrew_formula.py"] - AddFont["add-font CLI"] - end - - subgraph tests [Tests] - PyTests["Python tests (per font)"] - BrewAudit["brew audit"] - end - - FontDirs --> Cleanup - FontDirs --> Generator - Cleanup --> FontDirs - Generator --> Formula["Formula/font-*.rb"] - AddFont --> Cleanup - AddFont --> Generator - AddFont --> PyTests - FontDirs --> PyTests - Formula --> PyTests - Formula --> BrewAudit -``` - - - ---- - -## 7. Files to add or change (concise) - - -| Area | Action | -| ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [.fontfoldercleanup/create_homebrew_formula.py](.fontfoldercleanup/create_homebrew_formula.py) | Add `formula_name_to_class(name)` (PascalCase); generate per-formula test that asserts installed files; use in `generate_formula_content`. | -| Formula/*.rb | Regenerate all; then remove legacy non–`font-` formulae and fix/remove `font-acrylichand`. | -| tests/ | New: `conftest.py` or shared helper that discovers `font_files/font-*`; test_structure.py, test_formula_exists.py, test_no_orphan_formulae.py (all parametrized over font list). | -| pyproject.toml + add-font CLI | New: uv-managed project with console script `add-font`; CLI adds/updates one font, runs cleanup + generator + tests. Run via `uv run add-font` (auto-installed by uv). | -| .github/workflows/ | New: e.g. `tests.yml` — Python test suite + `brew audit` (+ optional install). | -| PROJECT.md, .cursorrules, .claude/.../SKILL.md | Update “Adding a new font” and “Regenerating” to reference `uv run add-font` and the test suite. | - - -This gives you **tests for every font** (structure + formula presence + optional install) and a **single, script-driven path** to add or update a font with automatic validation. \ No newline at end of file diff --git a/.cursor/rules/font-folder-structure.mdc b/.cursor/rules/font-folder-structure.mdc deleted file mode 100644 index a29dcf5..0000000 --- a/.cursor/rules/font-folder-structure.mdc +++ /dev/null @@ -1,60 +0,0 @@ ---- -description: -globs: -alwaysApply: false ---- -# Font Folder Structure Requirements - -## Required Directory Structure -Each font folder must follow this structure: -``` -font-[name]/ -├── ttf/ # For .ttf font files -├── otf/ # For .otf font files -├── web/ # For web fonts (.woff, .woff2, .eot, .svg) -└── other_files/ # For all other files and folders -``` - -## Rules -1. All font folders must start with the prefix `font-` -2. Only these four directories are allowed at the root level of each font folder -3. Any files or folders that don't match the required structure must be moved to `other_files/` -4. Font files must be organized by their extension: - - `.ttf` files → `ttf/` - - `.otf` files → `otf/` - - Web fonts (`.woff`, `.woff2`, `.eot`, `.svg`) → `web/` - - All other files → `other_files/` - -## Implementation -The cleanup script [cleanup_font_folders.py](mdc:.fontfoldercleanup/cleanup_font_folders.py) enforces these rules by: -1. Creating the required directory structure -2. Moving files to their appropriate locations -3. Handling nested directories by moving their contents to the correct locations -4. Removing empty directories after moving their contents - -## Example -Before: -``` -font-example/ -├── font.ttf -├── font.otf -├── font.woff -├── license.txt -└── docs/ - └── readme.md -``` - -After: -``` -font-example/ -├── ttf/ -│ └── font.ttf -├── otf/ -│ └── font.otf -├── web/ -│ └── font.woff -└── other_files/ - ├── license.txt - └── docs/ - └── readme.md -``` diff --git a/.cursorrules b/.cursorrules deleted file mode 100644 index a5df267..0000000 --- a/.cursorrules +++ /dev/null @@ -1,11 +0,0 @@ -# Custom Font Tap — Cursor / LLM context - -Read PROJECT.md first for full project description, layout, and workflows. - -This repo follows multi-LLM conventions: PROJECT.md (canonical), .github/copilot-instructions.md (GitHub Copilot), .claude/skills/project-context/ (Claude Code / Agent SDK). See PROJECT.md § "LLM / agent context files". - -Summary: -- This repo is a Homebrew tap for custom fonts. Fonts live in font_files/font-/ with subdirs ttf/, otf/, web/, other_files/. -- Formula/*.rb are generated by .fontfoldercleanup/create_homebrew_formula.py — do not edit them by hand. -- To add a font: run `uv run add-font ` (or put folder in font_files/, run cleanup_font_folders.py then create_homebrew_formula.py). Then run `uv run pytest tests/` to validate. -- Scripts: Python 3 in .fontfoldercleanup/ (cleanup_font_folders.py, create_homebrew_formula.py). CLI: uv run add-font (tap_cli). diff --git a/.fontfoldercleanup/cleanup_font_folders.py b/.fontfoldercleanup/cleanup_font_folders.py deleted file mode 100755 index a677e07..0000000 --- a/.fontfoldercleanup/cleanup_font_folders.py +++ /dev/null @@ -1,115 +0,0 @@ -#!/usr/bin/env python3 -import os -import shutil -import argparse -from pathlib import Path - -class FontFolderCleaner: - def __init__(self, font_location): - self.font_location = Path(font_location) - self.required_dirs = ['ttf', 'otf', 'web', 'other_files'] - self.web_extensions = {'.woff', '.woff2', '.eot', '.svg'} - self.font_extensions = {'.ttf', '.otf'} - - def create_required_directories(self, folder_path): - """Create required subdirectories if they don't exist.""" - for dir_name in self.required_dirs: - dir_path = folder_path / dir_name - if not dir_path.exists(): - dir_path.mkdir(parents=True) - print(f"Created directory: {dir_path}") - - def get_target_directory(self, file_path): - """Determine the target directory based on file extension.""" - ext = file_path.suffix.lower() - if ext == '.ttf': - return 'ttf' - elif ext == '.otf': - return 'otf' - elif ext in self.web_extensions: - return 'web' - else: - return 'other_files' - - def move_file_to_correct_directory(self, file_path, folder_path): - """Move file to the appropriate subdirectory.""" - if file_path.name == '.DS_Store' or file_path.name.startswith('._'): - file_path.unlink() - print(f"Removed macOS metadata file: {file_path}") - return - - # Remove AppleDouble resource fork files (start with _ and aren't real fonts) - if file_path.name.startswith('_') and file_path.suffix.lower() in ( - '.ttf', '.otf', '.ttc', '.woff', '.woff2', '.eot', '.svg', - ): - # Check if it's an AppleDouble file by reading magic bytes - try: - with open(file_path, 'rb') as f: - magic = f.read(4) - if magic == b'\x00\x05\x16\x07': # AppleDouble magic number - file_path.unlink() - print(f"Removed AppleDouble resource fork: {file_path}") - return - except OSError: - pass - - target_dir = self.get_target_directory(file_path) - target_path = folder_path / target_dir / file_path.name - - if file_path != target_path: - shutil.move(str(file_path), str(target_path)) - print(f"Moved {file_path.name} to {target_dir}/") - - def cleanup_folder(self, folder_path): - """Clean up a single font folder.""" - folder_path = Path(folder_path) - - # Skip if not a font folder - if not folder_path.name.startswith('font-'): - print(f"Skipping non-font folder: {folder_path}") - return - - print(f"\nProcessing folder: {folder_path}") - - # Create required directories - self.create_required_directories(folder_path) - - # Move files to appropriate directories - for item in folder_path.iterdir(): - if item.is_file(): - self.move_file_to_correct_directory(item, folder_path) - elif item.is_dir() and item.name not in self.required_dirs: - # Handle nested directories - for file in item.rglob('*'): - if file.is_file(): - self.move_file_to_correct_directory(file, folder_path) - # Remove empty directories - if not any(item.iterdir()): - item.rmdir() - print(f"Removed empty directory: {item}") - - def cleanup_all_folders(self): - """Clean up all font folders in the font location.""" - for item in self.font_location.iterdir(): - if item.is_dir() and not item.name.startswith('.'): - self.cleanup_folder(item) - -def main(): - parser = argparse.ArgumentParser(description='Clean up font folders and organize files.') - parser.add_argument('--path', type=str, default='../font_files', - help='Path to the font files directory (default: ../font_files)') - args = parser.parse_args() - - # Convert relative path to absolute path - font_location = Path(__file__).parent / args.path - font_location = font_location.resolve() - - if not font_location.exists(): - print(f"Error: Font location does not exist: {font_location}") - return - - cleaner = FontFolderCleaner(font_location) - cleaner.cleanup_all_folders() - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/.fontfoldercleanup/create_homebrew_formula.py b/.fontfoldercleanup/create_homebrew_formula.py deleted file mode 100755 index fe13283..0000000 --- a/.fontfoldercleanup/create_homebrew_formula.py +++ /dev/null @@ -1,117 +0,0 @@ -#!/usr/bin/env python3 -"""Generate Homebrew Cask files for all fonts in font_files/.""" -import re -from pathlib import Path - - -WEB_EXTENSIONS = (".woff", ".woff2", ".eot", ".svg") - - -class HomebrewCaskGenerator: - def __init__(self, fonts_dir): - self.fonts_dir = Path(fonts_dir) - self.casks_dir = self.fonts_dir.parent / "Casks" - self.casks_dir.mkdir(exist_ok=True) - - def _collect_font_files(self, font_dir: Path) -> list[str]: - """Return list of font file paths relative to extracted archive root for the font artifact.""" - font_name = font_dir.name - files = [] - ttf_dir = font_dir / "ttf" - for f in sorted(ttf_dir.iterdir()): - if f.is_file() and f.suffix.lower() in (".ttf", ".ttc"): - files.append(f"homebrew-fonts/font_files/{font_name}/ttf/{f.name}") - for otf in sorted((font_dir / "otf").glob("*.otf")): - files.append(f"homebrew-fonts/font_files/{font_name}/otf/{otf.name}") - return files - - def _collect_all_info(self, font_dir: Path) -> dict: - """Collect metadata about a font directory.""" - font_name = font_dir.name - formula_name = font_name.replace("font-", "", 1) - font_files = self._collect_font_files(font_dir) - - # Determine what types are present - has_ttf = any(f.endswith(".ttf") or f.endswith(".ttc") for f in font_files) - has_otf = any(f.endswith(".otf") for f in font_files) - web_dir = font_dir / "web" - has_web = any( - f.suffix.lower() in WEB_EXTENSIONS for f in web_dir.glob("*") if f.is_file() - ) - - extensions = [] - if has_ttf: - extensions.append("TTF") - if has_otf: - extensions.append("OTF") - if has_web: - extensions.append("web") - ext_comment = " ".join(extensions) if extensions else "other_files only" - - return { - "font_name": font_name, - "formula_name": formula_name, - "font_files": font_files, - "ext_comment": ext_comment, - } - - def generate_cask_content(self, info: dict) -> str: - """Generate the Ruby cask content for a font.""" - font_name = info["font_name"] - formula_name = info["formula_name"] - font_files = info["font_files"] - ext_comment = info["ext_comment"] - - # Build font artifact lines - font_lines = "\n".join(f' font "{f}"' for f in font_files) - - # Human-readable name: replace hyphens/underscores with spaces, title case - display_name = re.sub(r"[-_]+", " ", formula_name).title() - - return f"""# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: {ext_comment} - -cask "{font_name}" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "{display_name}" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - -{font_lines} -end -""" - - def generate_casks(self): - """Generate Homebrew casks for all font folders.""" - for font_dir in sorted(self.fonts_dir.glob("font-*")): - if not font_dir.is_dir(): - continue - - info = self._collect_all_info(font_dir) - if not info["font_files"]: - print(f"Skipping {font_dir.name}: no TTF or OTF files") - continue - - cask_content = self.generate_cask_content(info) - cask_path = self.casks_dir / f"{font_dir.name}.rb" - cask_path.write_text(cask_content) - print(f"Generated cask for {font_dir.name}") - - -def main(): - script_dir = Path(__file__).parent - fonts_dir = script_dir.parent / "font_files" - - if not fonts_dir.exists(): - print(f"Error: Font directory not found: {fonts_dir}") - return - - generator = HomebrewCaskGenerator(fonts_dir) - generator.generate_casks() - - -if __name__ == "__main__": - main() diff --git a/.fontfoldercleanup/tap_config.rb b/.fontfoldercleanup/tap_config.rb deleted file mode 100644 index b67bb54..0000000 --- a/.fontfoldercleanup/tap_config.rb +++ /dev/null @@ -1,13 +0,0 @@ -# Tap configuration for trtmn/fonts -class TrtmnFonts < Formula - desc "Font collection from trtmn" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - version "1.0.0" - sha256 "" # This will need to be filled in after the first build - - def install - # This is a meta-formula that doesn't install anything - # It's used to set up the tap configuration - end -end diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md deleted file mode 100644 index 2d56261..0000000 --- a/.github/copilot-instructions.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -applyTo: "**" ---- - -# Custom Font Homebrew Tap — Project instructions - -**For full context, read [PROJECT.md](../PROJECT.md) at the repo root.** - -## What this repo is -- Homebrew tap for a personal font collection. Users run `brew tap ...` then `brew install font-`. -- Fonts live in `font_files/font-/` with exactly four subdirs: `ttf/`, `otf/`, `web/`, `other_files/`. - -## Rules -- Do **not** edit `Formula/*.rb` by hand. They are generated by `.fontfoldercleanup/create_homebrew_formula.py`. -- To add a font: run `uv run add-font ` (or add folder `font_files/font-/`, run `cleanup_font_folders.py` then `create_homebrew_formula.py`). Validate with `uv run pytest tests/`. -- Scripts: Python 3 in `.fontfoldercleanup/` (cleanup_font_folders.py, create_homebrew_formula.py). CLI: `uv run add-font`. Tests: `uv run pytest tests/`. -- All font folders must use the `font-` prefix; only `.ttf` in ttf/, `.otf` in otf/, web fonts in web/, everything else in other_files/. diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index 4137310..0000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Tests - -on: - push: - branches: [main, master] - pull_request: - branches: [main, master] - -jobs: - pytest: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Install uv - run: | - curl -LsSf https://astral.sh/uv/install.sh | sh - echo "$HOME/.local/bin" >> "$GITHUB_PATH" - - - name: Run tests - run: uv run pytest tests/ -v --tb=short diff --git a/.gitignore b/.gitignore index 6a74f5b..9bfbf58 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,37 @@ -*.ofm -*.cfg -*.g2n -.DS_Store -*.setup_complete +.idea + +# Environment variables .env -.venv/ -.idea/ + +# Python __pycache__/ -*.pyc -.pytest_cache/ -Icon? \ No newline at end of file +*.py[cod] +*$py.class +*.so +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# macOS +.DS_Store +.AppleDouble +.LSOverride +._* + +# Temporary files +*.tmp +*.temp +.venv diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..f136ba1 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "/Users/fishy/git/homebrew-fonts/fonts/font-tyler-handwriting"] + path = /Users/fishy/git/homebrew-fonts/fonts/font-tyler-handwriting + url = http://clancy.genet-godzilla.ts.net:3002/fishy/font-tyler-handwriting.git diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index bd78601..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,54 +0,0 @@ -# CLAUDE.md - -This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. - -## What This Is - -A Homebrew tap for custom fonts. Users `brew tap` and then `brew install --cask font-`. The repo contains font assets in `font_files/` and generated Ruby cask files in `Casks/`. - -## Commands - -```bash -# Add or update a font (cleanup + cask generation + tests + brew audit) -uv run add-font -uv run add-font --no-test --no-audit - -# Run tests -uv run pytest tests/ -v --tb=short - -# Run a single test file -uv run pytest tests/test_font_structure.py -v - -# Run tests for a specific font -uv run pytest tests/ -v -k "font-acrylic-hand" - -# Regenerate all casks (without the full add-font flow) -python3 .fontfoldercleanup/create_homebrew_formula.py - -# Reorganize font folders only -python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files -``` - -## Architecture - -- **`font_files/font-/`** — Each font has exactly 4 subdirs: `ttf/`, `otf/`, `web/`, `other_files/`. No other top-level files allowed. -- **`Casks/font-.rb`** — Generated Ruby cask files. **Never edit by hand.** Edits go in `.fontfoldercleanup/create_homebrew_formula.py`. -- **`tap_cli/main.py`** — The `add-font` CLI entry point. Copies font to `font_files/`, runs cleanup script, runs cask generator, then runs tests and `brew audit`. -- **`.fontfoldercleanup/cleanup_font_folders.py`** — Sorts loose font files into `ttf/`, `otf/`, `web/`, `other_files/` subdirs. -- **`.fontfoldercleanup/create_homebrew_formula.py`** — Scans `font_files/font-*` and writes one cask `.rb` per font in `Casks/`. -- **`tests/`** — Parametrized pytest suite. Tests validate: folder structure, cask existence, cask content (paths, identifier), no orphan casks, no duplicates. -- **`To Sort/`** — Staging area for new downloads not yet processed. - -## Cask Naming Convention - -Cask files use kebab-case identifiers matching the font folder name: `font-`. -- `font-acrylic-hand` → `cask "font-acrylic-hand" do` - -Fonts are installed to `~/Library/Fonts/` automatically via the `font` artifact. - -## Key Constraints - -- Python 3, standard library only (pathlib, shutil, argparse, re). pytest is the sole dependency. -- Casks download from `http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz` and expect the archive to unpack as `homebrew-fonts/`. -- CI runs `uv run pytest` on push/PR to main, plus `brew audit` on macOS (non-blocking). -- `PROJECT.md` is the canonical project description. When updating project rules, update `PROJECT.md` first, then sync `.cursorrules`, `.github/copilot-instructions.md`, and `.claude/skills/project-context/SKILL.md`. diff --git a/Casks/font-abbiescriptpro-rg.rb b/Casks/font-abbiescriptpro-rg.rb deleted file mode 100644 index 24588df..0000000 --- a/Casks/font-abbiescriptpro-rg.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-abbiescriptpro-rg" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Abbiescriptpro Rg" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-abbiescriptpro-rg/ttf/abbiescriptpro-rg.ttf" - font "homebrew-fonts/font_files/font-abbiescriptpro-rg/otf/abbiescriptpro-rg.otf" -end diff --git a/Casks/font-acrylic-hand.rb b/Casks/font-acrylic-hand.rb deleted file mode 100644 index 0aa9492..0000000 --- a/Casks/font-acrylic-hand.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-acrylic-hand" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Acrylic Hand" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-acrylic-hand/ttf/acylicalhand-thick.ttf" -end diff --git a/Casks/font-adelina.rb b/Casks/font-adelina.rb deleted file mode 100644 index 7e84eff..0000000 --- a/Casks/font-adelina.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-adelina" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Adelina" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-adelina/ttf/Adelina.ttf" -end diff --git a/Casks/font-agpx.rb b/Casks/font-agpx.rb deleted file mode 100644 index af0cf4d..0000000 --- a/Casks/font-agpx.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-agpx" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Agpx" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-agpx/otf/agpx.otf" -end diff --git a/Casks/font-airosol.rb b/Casks/font-airosol.rb deleted file mode 100644 index ca4a4ed..0000000 --- a/Casks/font-airosol.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-airosol" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Airosol" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-airosol/otf/airosol.otf" -end diff --git a/Casks/font-alphalyrae.rb b/Casks/font-alphalyrae.rb deleted file mode 100644 index 9c94230..0000000 --- a/Casks/font-alphalyrae.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-alphalyrae" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Alphalyrae" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-alphalyrae/otf/alphalyrae-medium.otf" -end diff --git a/Casks/font-alternate-gothic.rb b/Casks/font-alternate-gothic.rb deleted file mode 100644 index fa1eb89..0000000 --- a/Casks/font-alternate-gothic.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-alternate-gothic" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Alternate Gothic" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-alternate-gothic/ttf/Alternate Gothic No2 D Regular.ttf" -end diff --git a/Casks/font-americus.rb b/Casks/font-americus.rb deleted file mode 100644 index 4729203..0000000 --- a/Casks/font-americus.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-americus" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Americus" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-americus/ttf/Americus Sans Aged.ttf" - font "homebrew-fonts/font_files/font-americus/ttf/Americus Sans.ttf" - font "homebrew-fonts/font_files/font-americus/ttf/Americus Script Aged.ttf" - font "homebrew-fonts/font_files/font-americus/ttf/Americus Script.ttf" -end diff --git a/Casks/font-angular.rb b/Casks/font-angular.rb deleted file mode 100644 index 5111f73..0000000 --- a/Casks/font-angular.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-angular" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Angular" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-angular/otf/angular.otf" -end diff --git a/Casks/font-aquabella.rb b/Casks/font-aquabella.rb deleted file mode 100644 index f70761e..0000000 --- a/Casks/font-aquabella.rb +++ /dev/null @@ -1,16 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-aquabella" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Aquabella" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-aquabella/ttf/aquabella.ttf" - font "homebrew-fonts/font_files/font-aquabella/ttf/aquabella_alternates.ttf" - font "homebrew-fonts/font_files/font-aquabella/ttf/aquabella_sans.ttf" -end diff --git a/Casks/font-arinoe.rb b/Casks/font-arinoe.rb deleted file mode 100644 index 23e329d..0000000 --- a/Casks/font-arinoe.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-arinoe" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Arinoe" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-arinoe/ttf/arinoe.ttf" - font "homebrew-fonts/font_files/font-arinoe/otf/arinoe.otf" -end diff --git a/Casks/font-averasanstc.rb b/Casks/font-averasanstc.rb deleted file mode 100644 index 40c2bb9..0000000 --- a/Casks/font-averasanstc.rb +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-averasanstc" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Averasanstc" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstc.otf" - font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstcbld.otf" - font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstcbrsh.otf" - font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstclt.otf" - font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstcsktch.otf" -end diff --git a/Casks/font-baduy.rb b/Casks/font-baduy.rb deleted file mode 100644 index 7f0ae8f..0000000 --- a/Casks/font-baduy.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-baduy" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Baduy" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-baduy/ttf/baduy.ttf" - font "homebrew-fonts/font_files/font-baduy/otf/baduy.otf" -end diff --git a/Casks/font-baker-street.rb b/Casks/font-baker-street.rb deleted file mode 100644 index fa1b2d7..0000000 --- a/Casks/font-baker-street.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-baker-street" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Baker Street" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-baker-street/otf/BakerStreet-Black.otf" - font "homebrew-fonts/font_files/font-baker-street/otf/BakerStreet-Inline.otf" -end diff --git a/Casks/font-barlow.rb b/Casks/font-barlow.rb deleted file mode 100644 index d2416e8..0000000 --- a/Casks/font-barlow.rb +++ /dev/null @@ -1,31 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-barlow" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Barlow" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Black.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-BlackItalic.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Bold.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-BoldItalic.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ExtraBold.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ExtraBoldItalic.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ExtraLight.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ExtraLightItalic.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Italic.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Light.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-LightItalic.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Medium.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-MediumItalic.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Regular.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-SemiBold.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-SemiBoldItalic.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Thin.ttf" - font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ThinItalic.ttf" -end diff --git a/Casks/font-bee-honey.rb b/Casks/font-bee-honey.rb deleted file mode 100644 index 99ce77f..0000000 --- a/Casks/font-bee-honey.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-bee-honey" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Bee Honey" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-bee-honey/ttf/bee-honey-regular.ttf" - font "homebrew-fonts/font_files/font-bee-honey/ttf/bee-honey-svg.ttf" -end diff --git a/Casks/font-benford.rb b/Casks/font-benford.rb deleted file mode 100644 index f9ff7aa..0000000 --- a/Casks/font-benford.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-benford" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Benford" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-benford/ttf/benford-demo.ttf" - font "homebrew-fonts/font_files/font-benford/otf/benford-demo.otf" -end diff --git a/Casks/font-bjola.rb b/Casks/font-bjola.rb deleted file mode 100644 index 91e3e63..0000000 --- a/Casks/font-bjola.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-bjola" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Bjola" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-bjola/ttf/Bjola.ttf" -end diff --git a/Casks/font-blair-itc.rb b/Casks/font-blair-itc.rb deleted file mode 100644 index eee52a5..0000000 --- a/Casks/font-blair-itc.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-blair-itc" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Blair Itc" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-blair-itc/ttf/Blair ITC Medium Regular.ttf" -end diff --git a/Casks/font-bobby-jones-soft-free.rb b/Casks/font-bobby-jones-soft-free.rb deleted file mode 100644 index 70be38d..0000000 --- a/Casks/font-bobby-jones-soft-free.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-bobby-jones-soft-free" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Bobby Jones Soft Free" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft-outline.ttf" - font "homebrew-fonts/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft.ttf" - font "homebrew-fonts/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft-outline.otf" - font "homebrew-fonts/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft.otf" -end diff --git a/Casks/font-bouncy_castle_free.rb b/Casks/font-bouncy_castle_free.rb deleted file mode 100644 index 0fb9a54..0000000 --- a/Casks/font-bouncy_castle_free.rb +++ /dev/null @@ -1,27 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-bouncy_castle_free" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Bouncy Castle Free" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus-bold.ttf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus.ttf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-sans.ttf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss01.ttf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss02.ttf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss03.ttf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle.ttf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus-bold.otf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus.otf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-sans.otf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss01.otf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss02.otf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss03.otf" - font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle.otf" -end diff --git a/Casks/font-brightsight-02.rb b/Casks/font-brightsight-02.rb deleted file mode 100644 index 19a6338..0000000 --- a/Casks/font-brightsight-02.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-brightsight-02" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Brightsight 02" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-brightsight-02/ttf/brightsight02.ttf" - font "homebrew-fonts/font_files/font-brightsight-02/otf/brightsight02.otf" -end diff --git a/Casks/font-brixtonline.rb b/Casks/font-brixtonline.rb deleted file mode 100644 index f3a105c..0000000 --- a/Casks/font-brixtonline.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-brixtonline" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Brixtonline" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-brixtonline/ttf/brixtonln-lt.ttf" - font "homebrew-fonts/font_files/font-brixtonline/ttf/brixtonln-rg.ttf" - font "homebrew-fonts/font_files/font-brixtonline/otf/brixtonln-lt.otf" - font "homebrew-fonts/font_files/font-brixtonline/otf/brixtonln-rg.otf" -end diff --git a/Casks/font-broke.rb b/Casks/font-broke.rb deleted file mode 100644 index 68e91aa..0000000 --- a/Casks/font-broke.rb +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-broke" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Broke" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-broke/otf/broke-bold.otf" - font "homebrew-fonts/font_files/font-broke/otf/broke-medium.otf" - font "homebrew-fonts/font_files/font-broke/otf/broke-regular.otf" - font "homebrew-fonts/font_files/font-broke/otf/brokefat-black.otf" - font "homebrew-fonts/font_files/font-broke/otf/brokefat-bold.otf" -end diff --git a/Casks/font-buffy.rb b/Casks/font-buffy.rb deleted file mode 100644 index 125e732..0000000 --- a/Casks/font-buffy.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-buffy" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Buffy" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-buffy/ttf/buffy.ttf" - font "homebrew-fonts/font_files/font-buffy/otf/buffy.otf" -end diff --git a/Casks/font-cabin.rb b/Casks/font-cabin.rb deleted file mode 100644 index 4f16d71..0000000 --- a/Casks/font-cabin.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-cabin" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Cabin" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-cabin/ttf/Cabin-Italic[wdth,wght].ttf" - font "homebrew-fonts/font_files/font-cabin/ttf/Cabin[wdth,wght].ttf" -end diff --git a/Casks/font-charleston.rb b/Casks/font-charleston.rb deleted file mode 100644 index 74c4292..0000000 --- a/Casks/font-charleston.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-charleston" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Charleston" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-charleston/ttf/Charleston-Regular.ttf" - font "homebrew-fonts/font_files/font-charleston/ttf/Charleston-Script.ttf" -end diff --git a/Casks/font-cheeky-rabbit.rb b/Casks/font-cheeky-rabbit.rb deleted file mode 100644 index 15044dc..0000000 --- a/Casks/font-cheeky-rabbit.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-cheeky-rabbit" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Cheeky Rabbit" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-cheeky-rabbit/ttf/cheeky-rabbit.ttf" - font "homebrew-fonts/font_files/font-cheeky-rabbit/otf/cheekyrabbit.otf" -end diff --git a/Casks/font-chido.rb b/Casks/font-chido.rb deleted file mode 100644 index c71ca39..0000000 --- a/Casks/font-chido.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-chido" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Chido" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-chido/otf/Chido.otf" -end diff --git a/Casks/font-christmas-picture.rb b/Casks/font-christmas-picture.rb deleted file mode 100644 index 70ccc24..0000000 --- a/Casks/font-christmas-picture.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-christmas-picture" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Christmas Picture" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-christmas-picture/ttf/christmas-picture.ttf" - font "homebrew-fonts/font_files/font-christmas-picture/otf/christmas-picture.otf" -end diff --git a/Casks/font-chrone.rb b/Casks/font-chrone.rb deleted file mode 100644 index be23334..0000000 --- a/Casks/font-chrone.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-chrone" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Chrone" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-chrone/ttf/chrone-demo.ttf" - font "homebrew-fonts/font_files/font-chrone/otf/chrone-demo.otf" -end diff --git a/Casks/font-clancy-experience.rb b/Casks/font-clancy-experience.rb deleted file mode 100644 index 3168d9f..0000000 --- a/Casks/font-clancy-experience.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-clancy-experience" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Clancy Experience" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-clancy-experience/otf/clancy-experience.otf" -end diff --git a/Casks/font-clique.rb b/Casks/font-clique.rb deleted file mode 100644 index 720c3e0..0000000 --- a/Casks/font-clique.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-clique" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Clique" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-clique/otf/Clique.otf" -end diff --git a/Casks/font-code.rb b/Casks/font-code.rb deleted file mode 100644 index 1f3e4ab..0000000 --- a/Casks/font-code.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-code" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Code" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-code/otf/code-bold.otf" - font "homebrew-fonts/font_files/font-code/otf/code-light.otf" -end diff --git a/Casks/font-coffina.rb b/Casks/font-coffina.rb deleted file mode 100644 index e625fbd..0000000 --- a/Casks/font-coffina.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-coffina" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Coffina" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-coffina/ttf/coffina.ttf" - font "homebrew-fonts/font_files/font-coffina/otf/coffina.otf" -end diff --git a/Casks/font-copixel-font-1764372079-0.rb b/Casks/font-copixel-font-1764372079-0.rb deleted file mode 100644 index 43ca8d1..0000000 --- a/Casks/font-copixel-font-1764372079-0.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-copixel-font-1764372079-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Copixel Font 1764372079 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-copixel-font-1764372079-0/otf/Copixel-Demo-BF6873ccc4785f8.otf" -end diff --git a/Casks/font-creamy-dreams.rb b/Casks/font-creamy-dreams.rb deleted file mode 100644 index a878bde..0000000 --- a/Casks/font-creamy-dreams.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-creamy-dreams" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Creamy Dreams" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-creamy-dreams/otf/creamy-dreams.otf" -end diff --git a/Casks/font-cucurucho.rb b/Casks/font-cucurucho.rb deleted file mode 100644 index baf2761..0000000 --- a/Casks/font-cucurucho.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-cucurucho" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Cucurucho" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-cucurucho/otf/cucurucho.otf" -end diff --git a/Casks/font-damn.rb b/Casks/font-damn.rb deleted file mode 100644 index e5fecaa..0000000 --- a/Casks/font-damn.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-damn" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Damn" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-damn/ttf/damn.ttf" - font "homebrew-fonts/font_files/font-damn/otf/damn.otf" -end diff --git a/Casks/font-dance-blues.rb b/Casks/font-dance-blues.rb deleted file mode 100644 index 42aded6..0000000 --- a/Casks/font-dance-blues.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-dance-blues" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Dance Blues" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-dance-blues/ttf/dance-blues.ttf" - font "homebrew-fonts/font_files/font-dance-blues/otf/dance-blues.otf" -end diff --git a/Casks/font-depixel.rb b/Casks/font-depixel.rb deleted file mode 100644 index 7f4ffea..0000000 --- a/Casks/font-depixel.rb +++ /dev/null @@ -1,25 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF web - -cask "font-depixel" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Depixel" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-depixel/ttf/depixelbreit-webfont.ttf" - font "homebrew-fonts/font_files/font-depixel/ttf/depixelbreitfett-webfont.ttf" - font "homebrew-fonts/font_files/font-depixel/ttf/depixelhalbfett-webfont.ttf" - font "homebrew-fonts/font_files/font-depixel/ttf/depixelillegible-webfont.ttf" - font "homebrew-fonts/font_files/font-depixel/ttf/depixelklein-webfont.ttf" - font "homebrew-fonts/font_files/font-depixel/ttf/depixelschmal-webfont.ttf" - font "homebrew-fonts/font_files/font-depixel/otf/depixelbreit.otf" - font "homebrew-fonts/font_files/font-depixel/otf/depixelbreitfett.otf" - font "homebrew-fonts/font_files/font-depixel/otf/depixelhalbfett.otf" - font "homebrew-fonts/font_files/font-depixel/otf/depixelillegible.otf" - font "homebrew-fonts/font_files/font-depixel/otf/depixelklein.otf" - font "homebrew-fonts/font_files/font-depixel/otf/depixelschmal.otf" -end diff --git a/Casks/font-depok-cubism.rb b/Casks/font-depok-cubism.rb deleted file mode 100644 index 87ad22d..0000000 --- a/Casks/font-depok-cubism.rb +++ /dev/null @@ -1,16 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-depok-cubism" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Depok Cubism" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-depok-cubism/ttf/depok-cubism.ttf" - font "homebrew-fonts/font_files/font-depok-cubism/otf/depok-cubism.otf" - font "homebrew-fonts/font_files/font-depok-cubism/otf/kosmos.otf" -end diff --git a/Casks/font-devils-cut.rb b/Casks/font-devils-cut.rb deleted file mode 100644 index f05d5dc..0000000 --- a/Casks/font-devils-cut.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-devils-cut" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Devils Cut" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-devils-cut/otf/devilscut-shadow-personaluseonly.otf" -end diff --git a/Casks/font-dirty-clouds.rb b/Casks/font-dirty-clouds.rb deleted file mode 100644 index 1e54748..0000000 --- a/Casks/font-dirty-clouds.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-dirty-clouds" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Dirty Clouds" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-dirty-clouds/otf/dirty-clouds.otf" -end diff --git a/Casks/font-district.rb b/Casks/font-district.rb deleted file mode 100644 index 4e0e6a8..0000000 --- a/Casks/font-district.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-district" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "District" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-district/ttf/district.ttf" - font "homebrew-fonts/font_files/font-district/otf/district-regular.otf" -end diff --git a/Casks/font-dk-frozen-memory.rb b/Casks/font-dk-frozen-memory.rb deleted file mode 100644 index a53c8cc..0000000 --- a/Casks/font-dk-frozen-memory.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-dk-frozen-memory" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Dk Frozen Memory" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-dk-frozen-memory/otf/dk-frozen-memory.otf" -end diff --git a/Casks/font-domaine-display.rb b/Casks/font-domaine-display.rb deleted file mode 100644 index f40ce4e..0000000 --- a/Casks/font-domaine-display.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-domaine-display" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Domaine Display" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-domaine-display/otf/domaine-display-bold.otf" -end diff --git a/Casks/font-droid-sans-mono-awesome.rb b/Casks/font-droid-sans-mono-awesome.rb deleted file mode 100644 index f456f8e..0000000 --- a/Casks/font-droid-sans-mono-awesome.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-droid-sans-mono-awesome" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Droid Sans Mono Awesome" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-droid-sans-mono-awesome/ttf/Droid+Sans+Mono+Awesome.ttf" -end diff --git a/Casks/font-dtmilagros.rb b/Casks/font-dtmilagros.rb deleted file mode 100644 index 64acb9b..0000000 --- a/Casks/font-dtmilagros.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-dtmilagros" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Dtmilagros" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-dtmilagros/otf/dt-milagros.otf" -end diff --git a/Casks/font-ep-boxi.rb b/Casks/font-ep-boxi.rb deleted file mode 100644 index c3da452..0000000 --- a/Casks/font-ep-boxi.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF web - -cask "font-ep-boxi" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Ep Boxi" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-ep-boxi/otf/ep-boxi-bi.otf" - font "homebrew-fonts/font_files/font-ep-boxi/otf/ep-boxi-black.otf" - font "homebrew-fonts/font_files/font-ep-boxi/otf/ep-boxi-bold.otf" - font "homebrew-fonts/font_files/font-ep-boxi/otf/ep-boxi.otf" -end diff --git a/Casks/font-f37-stout.rb b/Casks/font-f37-stout.rb deleted file mode 100644 index e027261..0000000 --- a/Casks/font-f37-stout.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF web - -cask "font-f37-stout" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "F37 Stout" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-f37-stout/ttf/f37stout-black.ttc" -end diff --git a/Casks/font-flyover.rb b/Casks/font-flyover.rb deleted file mode 100644 index 2ad7ad4..0000000 --- a/Casks/font-flyover.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-flyover" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Flyover" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-flyover/ttf/flyover.ttf" - font "homebrew-fonts/font_files/font-flyover/otf/flyover.otf" -end diff --git a/Casks/font-font-awesome.rb b/Casks/font-font-awesome.rb deleted file mode 100644 index e7a877f..0000000 --- a/Casks/font-font-awesome.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-font-awesome" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Font Awesome" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-font-awesome/ttf/fa-solid-900.ttf" -end diff --git a/Casks/font-fresh-christmas-font-1764370888-0.rb b/Casks/font-fresh-christmas-font-1764370888-0.rb deleted file mode 100644 index 39e6b5f..0000000 --- a/Casks/font-fresh-christmas-font-1764370888-0.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-fresh-christmas-font-1764370888-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Fresh Christmas Font 1764370888 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-fresh-christmas-font-1764370888-0/otf/Fresh-Christmas.otf" -end diff --git a/Casks/font-friem.rb b/Casks/font-friem.rb deleted file mode 100644 index 3c44d32..0000000 --- a/Casks/font-friem.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF web - -cask "font-friem" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Friem" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-friem/ttf/friem-regular.ttf" - font "homebrew-fonts/font_files/font-friem/ttf/friem-texture.ttf" - font "homebrew-fonts/font_files/font-friem/otf/friem-regular.otf" - font "homebrew-fonts/font_files/font-friem/otf/friem-texture.otf" -end diff --git a/Casks/font-funky-round.rb b/Casks/font-funky-round.rb deleted file mode 100644 index 86067af..0000000 --- a/Casks/font-funky-round.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-funky-round" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Funky Round" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-funky-round/otf/funkyround.otf" - font "homebrew-fonts/font_files/font-funky-round/otf/funkyround_striped.otf" -end diff --git a/Casks/font-futura-1986.rb b/Casks/font-futura-1986.rb deleted file mode 100644 index 06de97f..0000000 --- a/Casks/font-futura-1986.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-futura-1986" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Futura 1986" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-futura-1986/otf/futura1986.otf" -end diff --git a/Casks/font-futura-ef.rb b/Casks/font-futura-ef.rb deleted file mode 100644 index 9df9686..0000000 --- a/Casks/font-futura-ef.rb +++ /dev/null @@ -1,30 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-futura-ef" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Futura Ef" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-futura-ef/otf/OPTIFuturaDemiBold.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futura-index-efop-book.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futurablackef.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-bold.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-boldobl.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-book.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-bookobl.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-demibold.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-demiboldobl.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-extrabold.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-extraboldobl.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-extraboldshadowed.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-heavy.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-light.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-lightobl.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-medium.otf" - font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-mediumobl.otf" -end diff --git a/Casks/font-futurama-characters.rb b/Casks/font-futurama-characters.rb deleted file mode 100644 index 1c36103..0000000 --- a/Casks/font-futurama-characters.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-futurama-characters" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Futurama Characters" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-futurama-characters/ttf/futurama characters.ttf" -end diff --git a/Casks/font-galaxia.rb b/Casks/font-galaxia.rb deleted file mode 100644 index 40843e8..0000000 --- a/Casks/font-galaxia.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-galaxia" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Galaxia" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-galaxia/otf/galaxia-personal-used-flava.otf" -end diff --git a/Casks/font-gilbert.rb b/Casks/font-gilbert.rb deleted file mode 100644 index 32d6b87..0000000 --- a/Casks/font-gilbert.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF web - -cask "font-gilbert" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Gilbert" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-gilbert/otf/gilbert-bold-preview5.otf" - font "homebrew-fonts/font_files/font-gilbert/otf/gilbert-color-bold-preview5.otf" -end diff --git a/Casks/font-gloss-and-bloom.rb b/Casks/font-gloss-and-bloom.rb deleted file mode 100644 index d87c12a..0000000 --- a/Casks/font-gloss-and-bloom.rb +++ /dev/null @@ -1,16 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-gloss-and-bloom" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Gloss And Bloom" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom.ttf" - font "homebrew-fonts/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Alternates.ttf" - font "homebrew-fonts/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Extras.ttf" -end diff --git a/Casks/font-gohu-nerd-font.rb b/Casks/font-gohu-nerd-font.rb deleted file mode 100644 index a3b3508..0000000 --- a/Casks/font-gohu-nerd-font.rb +++ /dev/null @@ -1,25 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-gohu-nerd-font" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Gohu Nerd Font" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFont-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontMono-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontPropo-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFont-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontMono-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontPropo-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFont-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontMono-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontPropo-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFont-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontMono-Regular.ttf" - font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontPropo-Regular.ttf" -end diff --git a/Casks/font-graham_hand.rb b/Casks/font-graham_hand.rb deleted file mode 100644 index e65496d..0000000 --- a/Casks/font-graham_hand.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-graham_hand" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Graham Hand" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-graham_hand/ttf/grahamhand.ttf" - font "homebrew-fonts/font_files/font-graham_hand/otf/grahamhand.otf" -end diff --git a/Casks/font-gugi.rb b/Casks/font-gugi.rb deleted file mode 100644 index d7de06c..0000000 --- a/Casks/font-gugi.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-gugi" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Gugi" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-gugi/ttf/Gugi-Regular.ttf" -end diff --git a/Casks/font-gyanko.rb b/Casks/font-gyanko.rb deleted file mode 100644 index 574db9f..0000000 --- a/Casks/font-gyanko.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-gyanko" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Gyanko" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-gyanko/otf/gyanko-regular.otf" - font "homebrew-fonts/font_files/font-gyanko/otf/gyanko-stencil.otf" -end diff --git a/Casks/font-hack-nerd-font.rb b/Casks/font-hack-nerd-font.rb deleted file mode 100644 index 521df67..0000000 --- a/Casks/font-hack-nerd-font.rb +++ /dev/null @@ -1,25 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-hack-nerd-font" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Hack Nerd Font" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFont-Bold.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFont-BoldItalic.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFont-Italic.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFont-Regular.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Bold.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-BoldItalic.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Italic.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Regular.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Bold.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-BoldItalic.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Italic.ttf" - font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Regular.ttf" -end diff --git a/Casks/font-hectra.rb b/Casks/font-hectra.rb deleted file mode 100644 index 4de4feb..0000000 --- a/Casks/font-hectra.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-hectra" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Hectra" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-hectra/otf/hectra-bold.otf" - font "homebrew-fonts/font_files/font-hectra/otf/hectra-rg.otf" -end diff --git a/Casks/font-hello-headline.rb b/Casks/font-hello-headline.rb deleted file mode 100644 index 969351b..0000000 --- a/Casks/font-hello-headline.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-hello-headline" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Hello Headline" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-hello-headline/otf/hello-headline.otf" -end diff --git a/Casks/font-hello-spring.rb b/Casks/font-hello-spring.rb deleted file mode 100644 index 3c7c7b6..0000000 --- a/Casks/font-hello-spring.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-hello-spring" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Hello Spring" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-hello-spring/ttf/HelloSpring.ttf" - font "homebrew-fonts/font_files/font-hello-spring/ttf/HelloSpringExtras.ttf" -end diff --git a/Casks/font-highflier.rb b/Casks/font-highflier.rb deleted file mode 100644 index 2a7a8c3..0000000 --- a/Casks/font-highflier.rb +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-highflier" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Highflier" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-highflier/ttf/highflier_block.ttf" - font "homebrew-fonts/font_files/font-highflier/ttf/highflier_regular.ttf" - font "homebrew-fonts/font_files/font-highflier/ttf/highflier_scribble.ttf" - font "homebrew-fonts/font_files/font-highflier/ttf/highflier_shadow.ttf" - font "homebrew-fonts/font_files/font-highflier/ttf/highflier_slice.ttf" -end diff --git a/Casks/font-horseland.rb b/Casks/font-horseland.rb deleted file mode 100644 index 6030c21..0000000 --- a/Casks/font-horseland.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-horseland" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Horseland" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-horseland/ttf/wtf-horseland-was-habib.ttf" -end diff --git a/Casks/font-idgrotesk.rb b/Casks/font-idgrotesk.rb deleted file mode 100644 index ba5c936..0000000 --- a/Casks/font-idgrotesk.rb +++ /dev/null @@ -1,41 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF web - -cask "font-idgrotesk" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Idgrotesk" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-bold.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-bolditalic.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-book.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-bookitalic.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-italic.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-light.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-lightitalic.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-medium.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-mediumitalic.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-regular.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-semibold.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-semibolditalic.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-thin.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-thinitalic.ttf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-bold.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-bolditalic.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-book.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-bookitalic.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-italic.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-light.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-lightitalic.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-medium.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-mediumitalic.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-regular.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-semibold.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-semibolditalic.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-thin.otf" - font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-thinitalic.otf" -end diff --git a/Casks/font-inconsolata-awesome.rb b/Casks/font-inconsolata-awesome.rb deleted file mode 100644 index 60832ca..0000000 --- a/Casks/font-inconsolata-awesome.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-inconsolata-awesome" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Inconsolata Awesome" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-inconsolata-awesome/ttf/Inconsolata+Awesome.ttf" -end diff --git a/Casks/font-introvert-font-2-1764371655-0.rb b/Casks/font-introvert-font-2-1764371655-0.rb deleted file mode 100644 index dd23dfc..0000000 --- a/Casks/font-introvert-font-2-1764371655-0.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-introvert-font-2-1764371655-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Introvert Font 2 1764371655 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-introvert-font-2-1764371655-0/otf/Introvert-BF691f1a5a2336d.otf" -end diff --git a/Casks/font-jimmy-sans.rb b/Casks/font-jimmy-sans.rb deleted file mode 100644 index f2191b2..0000000 --- a/Casks/font-jimmy-sans.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-jimmy-sans" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Jimmy Sans" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-jimmy-sans/otf/jimmysans-brush.otf" - font "homebrew-fonts/font_files/font-jimmy-sans/otf/jimmysans-rg.otf" -end diff --git a/Casks/font-joc.rb b/Casks/font-joc.rb deleted file mode 100644 index 2c8b887..0000000 --- a/Casks/font-joc.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-joc" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Joc" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-joc/otf/joc-fill.otf" - font "homebrew-fonts/font_files/font-joc/otf/joc-line.otf" -end diff --git a/Casks/font-kitten.rb b/Casks/font-kitten.rb deleted file mode 100644 index b04d959..0000000 --- a/Casks/font-kitten.rb +++ /dev/null @@ -1,29 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-kitten" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Kitten" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Black.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Bold.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-ExtraLight.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Light.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Monoline.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Regular.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/KittenSlant-Bold.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/KittenSlant-Monoline.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/KittenSlant-Regular.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash-Black.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash-Bold.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash-Light.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash-Thin.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwashMonoline.ttf" - font "homebrew-fonts/font_files/font-kitten/ttf/kittendingcats.ttf" -end diff --git a/Casks/font-kompeni.rb b/Casks/font-kompeni.rb deleted file mode 100644 index 6fc9895..0000000 --- a/Casks/font-kompeni.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-kompeni" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Kompeni" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-kompeni/ttf/kompeni-regular.ttf" -end diff --git a/Casks/font-krub.rb b/Casks/font-krub.rb deleted file mode 100644 index 28f94b9..0000000 --- a/Casks/font-krub.rb +++ /dev/null @@ -1,25 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-krub" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Krub" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-krub/ttf/Krub-Bold.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-BoldItalic.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-ExtraLight.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-ExtraLightItalic.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-Italic.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-Light.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-LightItalic.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-Medium.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-MediumItalic.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-Regular.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-SemiBold.ttf" - font "homebrew-fonts/font_files/font-krub/ttf/Krub-SemiBoldItalic.ttf" -end diff --git a/Casks/font-lab-grotesk.rb b/Casks/font-lab-grotesk.rb deleted file mode 100644 index 2a21e26..0000000 --- a/Casks/font-lab-grotesk.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-lab-grotesk" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Lab Grotesk" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-lab-grotesk/otf/lab-grotesk.otf" -end diff --git a/Casks/font-lance-tomchalky.rb b/Casks/font-lance-tomchalky.rb deleted file mode 100644 index bdb93bc..0000000 --- a/Casks/font-lance-tomchalky.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-lance-tomchalky" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Lance Tomchalky" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-lance-tomchalky/ttf/lancerg.ttf" - font "homebrew-fonts/font_files/font-lance-tomchalky/ttf/lancesansrg.ttf" - font "homebrew-fonts/font_files/font-lance-tomchalky/otf/lancerg.otf" - font "homebrew-fonts/font_files/font-lance-tomchalky/otf/lancesansrg.otf" -end diff --git a/Casks/font-larquette.rb b/Casks/font-larquette.rb deleted file mode 100644 index 173c859..0000000 --- a/Casks/font-larquette.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-larquette" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Larquette" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-larquette/ttf/LarquetteTypeface-Regular.ttf" -end diff --git a/Casks/font-latcha.rb b/Casks/font-latcha.rb deleted file mode 100644 index 2bc9b85..0000000 --- a/Casks/font-latcha.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-latcha" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Latcha" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-latcha/otf/latcha-personaluseonly.otf" -end diff --git a/Casks/font-lavish.rb b/Casks/font-lavish.rb deleted file mode 100644 index 859d343..0000000 --- a/Casks/font-lavish.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-lavish" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Lavish" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-lavish/ttf/Lavish.ttf" -end diff --git a/Casks/font-lazare-grotesk-font-family-1764370398-0.rb b/Casks/font-lazare-grotesk-font-family-1764370398-0.rb deleted file mode 100644 index 976cfb2..0000000 --- a/Casks/font-lazare-grotesk-font-family-1764370398-0.rb +++ /dev/null @@ -1,34 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-lazare-grotesk-font-family-1764370398-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Lazare Grotesk Font Family 1764370398 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Black-BF647806db20415.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackBack-BF647806dbb006f.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackItalic-BF647806dbe2cde.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Bold-BF647806db04a12.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldBack-BF647806dbbac82.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldItalic-BF647806dbbf597.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Light-BF647806db1a1e7.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightBack-BF647806dbc68ff.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightItalic-BF647806dbc7770.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Medium-BF647806db24482.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumBack-BF647806db9228d.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumItalic-BF647806dc09b7e.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Regular-BF647806db2b1eb.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularBack-BF647806dba9aa2.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularItalic-BF647806dc0245f.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Thin-BF647806dbadb5b.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinBack-BF647806dbcc22e.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinItalic-BF647806dbe4f58.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThin-BF647806dbbdb3a.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinBack-BF647806db89f02.otf" - font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinItalic-BF647806dbf0c32.otf" -end diff --git a/Casks/font-lexa.rb b/Casks/font-lexa.rb deleted file mode 100644 index f7d2249..0000000 --- a/Casks/font-lexa.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-lexa" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Lexa" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-lexa/otf/lexa.otf" -end diff --git a/Casks/font-love-moon.rb b/Casks/font-love-moon.rb deleted file mode 100644 index fdbdd06..0000000 --- a/Casks/font-love-moon.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-love-moon" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Love Moon" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-love-moon/ttf/LoveMoon.ttf" -end diff --git a/Casks/font-made-carving.rb b/Casks/font-made-carving.rb deleted file mode 100644 index 4064dd7..0000000 --- a/Casks/font-made-carving.rb +++ /dev/null @@ -1,29 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-made-carving" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Made Carving" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-black.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-bold.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-extralight.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-light.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-medium.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-regular.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-semibold.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-thin.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingpersonaluse-black.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingpersonaluse-bold.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingpersonaluse-extralight.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingpersonaluse-light.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingpersonaluse-medium.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingpersonaluse-regular.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingpersonaluse-semibold.otf" - font "homebrew-fonts/font_files/font-made-carving/otf/madecarvingpersonaluse-thin.otf" -end diff --git a/Casks/font-made-infinity.rb b/Casks/font-made-infinity.rb deleted file mode 100644 index bd91544..0000000 --- a/Casks/font-made-infinity.rb +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-made-infinity" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Made Infinity" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-made-infinity/otf/madeinfinity-personaluse-black.otf" - font "homebrew-fonts/font_files/font-made-infinity/otf/madeinfinity-personaluse-light.otf" - font "homebrew-fonts/font_files/font-made-infinity/otf/madeinfinity-personaluse-medium.otf" - font "homebrew-fonts/font_files/font-made-infinity/otf/madeinfinity-personaluse-regular.otf" - font "homebrew-fonts/font_files/font-made-infinity/otf/madeinfinity-personaluse-thin.otf" -end diff --git a/Casks/font-magic-painted.rb b/Casks/font-magic-painted.rb deleted file mode 100644 index 72dee0c..0000000 --- a/Casks/font-magic-painted.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-magic-painted" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Magic Painted" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-magic-painted/otf/magic-painted.otf" -end diff --git a/Casks/font-magnode.rb b/Casks/font-magnode.rb deleted file mode 100644 index 15529d3..0000000 --- a/Casks/font-magnode.rb +++ /dev/null @@ -1,16 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-magnode" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Magnode" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-magnode/ttf/magnode-trial-version.ttf" - font "homebrew-fonts/font_files/font-magnode/otf/magnode-trial-version.otf" - font "homebrew-fonts/font_files/font-magnode/otf/xkcd.otf" -end diff --git a/Casks/font-malibu.rb b/Casks/font-malibu.rb deleted file mode 100644 index 5fc6e91..0000000 --- a/Casks/font-malibu.rb +++ /dev/null @@ -1,16 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-malibu" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Malibu" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-malibu/ttf/Malibu-Regular.ttf" - font "homebrew-fonts/font_files/font-malibu/ttf/MalibuAlternate-Regular.ttf" - font "homebrew-fonts/font_files/font-malibu/ttf/MalibuDoodles-Regular.ttf" -end diff --git a/Casks/font-marker_notes.rb b/Casks/font-marker_notes.rb deleted file mode 100644 index af2e14a..0000000 --- a/Casks/font-marker_notes.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-marker_notes" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Marker Notes" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-marker_notes/ttf/marker-notes-italic.ttf" - font "homebrew-fonts/font_files/font-marker_notes/ttf/marker-notes.ttf" - font "homebrew-fonts/font_files/font-marker_notes/otf/marker-notes-italic.otf" - font "homebrew-fonts/font_files/font-marker_notes/otf/marker-notes.otf" -end diff --git a/Casks/font-martian-mono.rb b/Casks/font-martian-mono.rb deleted file mode 100644 index ad9d607..0000000 --- a/Casks/font-martian-mono.rb +++ /dev/null @@ -1,41 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-martian-mono" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Martian Mono" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-CnBd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-CnLt.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-CnMd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-CnRg.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-CnTh.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-CnxBd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-CnxLt.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-NrBd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-NrLt.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-NrMd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-NrRg.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-NrTh.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-NrxBd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-NrxLt.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-StdBd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-StdLt.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-StdMd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-StdRg.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-StdTh.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-StdxBd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-StdxLt.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-sWdBd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-sWdLt.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-sWdMd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-sWdRg.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-sWdTh.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-sWdxBd.otf" - font "homebrew-fonts/font_files/font-martian-mono/otf/MartianMono-sWdxLt.otf" -end diff --git a/Casks/font-marvelo.rb b/Casks/font-marvelo.rb deleted file mode 100644 index 12084e3..0000000 --- a/Casks/font-marvelo.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-marvelo" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Marvelo" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-marvelo/ttf/marvelo.ttf" - font "homebrew-fonts/font_files/font-marvelo/otf/marvelo.otf" -end diff --git a/Casks/font-matt-scratch.rb b/Casks/font-matt-scratch.rb deleted file mode 100644 index 3fa2bde..0000000 --- a/Casks/font-matt-scratch.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-matt-scratch" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Matt Scratch" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-matt-scratch/ttf/Matt Scratch.ttf" -end diff --git a/Casks/font-mba-slice-mono.rb b/Casks/font-mba-slice-mono.rb deleted file mode 100644 index dd75567..0000000 --- a/Casks/font-mba-slice-mono.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF web - -cask "font-mba-slice-mono" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Mba Slice Mono" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-mba-slice-mono/otf/mbaslicemono-regular.otf" -end diff --git a/Casks/font-miracode.rb b/Casks/font-miracode.rb deleted file mode 100644 index 7db1455..0000000 --- a/Casks/font-miracode.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-miracode" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Miracode" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-miracode/ttf/font.ttf" -end diff --git a/Casks/font-moon-walk.rb b/Casks/font-moon-walk.rb deleted file mode 100644 index a8b7310..0000000 --- a/Casks/font-moon-walk.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-moon-walk" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Moon Walk" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-moon-walk/ttf/moon-walk.ttf" - font "homebrew-fonts/font_files/font-moon-walk/otf/moon-walk.otf" -end diff --git a/Casks/font-moonstone.rb b/Casks/font-moonstone.rb deleted file mode 100644 index f60673f..0000000 --- a/Casks/font-moonstone.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-moonstone" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Moonstone" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-moonstone/ttf/Moonstone-Extras.ttf" - font "homebrew-fonts/font_files/font-moonstone/ttf/Moonstone-Regular.ttf" -end diff --git a/Casks/font-morgon.rb b/Casks/font-morgon.rb deleted file mode 100644 index a72f172..0000000 --- a/Casks/font-morgon.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-morgon" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Morgon" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-morgon/otf/morgon-personaluseonly.otf" -end diff --git a/Casks/font-mustardo.rb b/Casks/font-mustardo.rb deleted file mode 100644 index 741c08b..0000000 --- a/Casks/font-mustardo.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-mustardo" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Mustardo" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-mustardo/ttf/Mustardo.ttf" - font "homebrew-fonts/font_files/font-mustardo/ttf/Mustardo_Alternates.ttf" -end diff --git a/Casks/font-nafasmanual.rb b/Casks/font-nafasmanual.rb deleted file mode 100644 index 8bbb553..0000000 --- a/Casks/font-nafasmanual.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-nafasmanual" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Nafasmanual" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-nafasmanual/ttf/nafasmanualregular.ttf" - font "homebrew-fonts/font_files/font-nafasmanual/ttf/nafasmanualsliced.ttf" - font "homebrew-fonts/font_files/font-nafasmanual/otf/nafasmanualregular.otf" - font "homebrew-fonts/font_files/font-nafasmanual/otf/nafasmanualsliced.otf" -end diff --git a/Casks/font-neopixel-font-1764372129-0.rb b/Casks/font-neopixel-font-1764372129-0.rb deleted file mode 100644 index 67e06ee..0000000 --- a/Casks/font-neopixel-font-1764372129-0.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-neopixel-font-1764372129-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Neopixel Font 1764372129 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-neopixel-font-1764372129-0/otf/neopixel-regular.otf" -end diff --git a/Casks/font-new-kansas-black-wisabo.rb b/Casks/font-new-kansas-black-wisabo.rb deleted file mode 100644 index 3416d96..0000000 --- a/Casks/font-new-kansas-black-wisabo.rb +++ /dev/null @@ -1,22 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-new-kansas-black-wisabo" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "New Kansas Black Wisabo" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-.otf" - font "homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-black.otf" - font "homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-bold.otf" - font "homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-heavy.otf" - font "homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-light.otf" - font "homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-medium.otf" - font "homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-semi-bold.otf" - font "homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-thin.otf" - font "homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/new-kansas-black.otf" -end diff --git a/Casks/font-noto-color-emoji.rb b/Casks/font-noto-color-emoji.rb deleted file mode 100644 index 5086ed7..0000000 --- a/Casks/font-noto-color-emoji.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-noto-color-emoji" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Noto Color Emoji" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-noto-color-emoji/ttf/NotoColorEmoji-Regular.ttf" -end diff --git a/Casks/font-nugia-vintage.rb b/Casks/font-nugia-vintage.rb deleted file mode 100644 index 3b3cb34..0000000 --- a/Casks/font-nugia-vintage.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-nugia-vintage" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Nugia Vintage" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-nugia-vintage/ttf/nugiavintage.ttf" - font "homebrew-fonts/font_files/font-nugia-vintage/otf/nugiavintage.otf" -end diff --git a/Casks/font-open-moji.rb b/Casks/font-open-moji.rb deleted file mode 100644 index 401a546..0000000 --- a/Casks/font-open-moji.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-open-moji" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Open Moji" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-open-moji/ttf/OpenMoji-black-glyf.ttf" -end diff --git a/Casks/font-orbit.rb b/Casks/font-orbit.rb deleted file mode 100644 index 47a0586..0000000 --- a/Casks/font-orbit.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-orbit" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Orbit" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-orbit/ttf/Orbit-Regular.ttf" -end diff --git a/Casks/font-overland.rb b/Casks/font-overland.rb deleted file mode 100644 index da60f53..0000000 --- a/Casks/font-overland.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-overland" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Overland" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-overland/otf/overland-regular.otf" - font "homebrew-fonts/font_files/font-overland/otf/overland.otf" -end diff --git a/Casks/font-parasite-game.rb b/Casks/font-parasite-game.rb deleted file mode 100644 index 4e86848..0000000 --- a/Casks/font-parasite-game.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-parasite-game" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Parasite Game" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-parasite-game/ttf/parasite-game-personal-use.ttf" -end diff --git a/Casks/font-patsy-sans-grotesque.rb b/Casks/font-patsy-sans-grotesque.rb deleted file mode 100644 index 64b11ef..0000000 --- a/Casks/font-patsy-sans-grotesque.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-patsy-sans-grotesque" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Patsy Sans Grotesque" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-patsy-sans-grotesque/otf/patsysans-italic.otf" - font "homebrew-fonts/font_files/font-patsy-sans-grotesque/otf/patsysans.otf" -end diff --git a/Casks/font-petralina.rb b/Casks/font-petralina.rb deleted file mode 100644 index 8992c00..0000000 --- a/Casks/font-petralina.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-petralina" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Petralina" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-petralina/ttf/Petralina-Oblique.ttf" - font "homebrew-fonts/font_files/font-petralina/ttf/Petralina-Regular.ttf" -end diff --git a/Casks/font-pixel-crash-font-1764372071-0.rb b/Casks/font-pixel-crash-font-1764372071-0.rb deleted file mode 100644 index 0386dc1..0000000 --- a/Casks/font-pixel-crash-font-1764372071-0.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-pixel-crash-font-1764372071-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Pixel Crash Font 1764372071 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-pixel-crash-font-1764372071-0/otf/pixelcrash-trial.otf" -end diff --git a/Casks/font-pixel-gamer-font-1764372239-0.rb b/Casks/font-pixel-gamer-font-1764372239-0.rb deleted file mode 100644 index 7c96ca5..0000000 --- a/Casks/font-pixel-gamer-font-1764372239-0.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-pixel-gamer-font-1764372239-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Pixel Gamer Font 1764372239 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-pixel-gamer-font-1764372239-0/otf/pixelgamerpersonaluse-rg61l.otf" -end diff --git a/Casks/font-pixel-grid-font-family-1764371982-0.rb b/Casks/font-pixel-grid-font-family-1764371982-0.rb deleted file mode 100644 index 83a47ca..0000000 --- a/Casks/font-pixel-grid-font-family-1764371982-0.rb +++ /dev/null @@ -1,217 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-pixel-grid-font-family-1764371982-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Pixel Grid Font Family 1764371982 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/ttf/pixelgridtrial-fashionregxl.ttf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlebolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionbolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartbolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownbolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskybolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticbolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointbolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickbolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowbolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarebolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterbolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windbolds.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlim.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlis.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlixl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmidm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmids.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnorms.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregs.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregxl.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinm.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthins.otf" - font "homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinxl.otf" -end diff --git a/Casks/font-pixelon.rb b/Casks/font-pixelon.rb deleted file mode 100644 index 22cf909..0000000 --- a/Casks/font-pixelon.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-pixelon" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Pixelon" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-pixelon/ttf/pixelon-bf663182784222c.ttf" - font "homebrew-fonts/font_files/font-pixelon/otf/pixelon-bf663182783f6a2.otf" -end diff --git a/Casks/font-playfair.rb b/Casks/font-playfair.rb deleted file mode 100644 index 6825700..0000000 --- a/Casks/font-playfair.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-playfair" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Playfair" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-playfair/ttf/Playfair-Italic[opsz,wdth,wght].ttf" - font "homebrew-fonts/font_files/font-playfair/ttf/Playfair[opsz,wdth,wght].ttf" -end diff --git a/Casks/font-plaztma.rb b/Casks/font-plaztma.rb deleted file mode 100644 index 5e3c833..0000000 --- a/Casks/font-plaztma.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-plaztma" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Plaztma" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-plaztma/ttf/plaztma-oblique.ttf" - font "homebrew-fonts/font_files/font-plaztma/ttf/plaztma.ttf" - font "homebrew-fonts/font_files/font-plaztma/otf/plaztma-oblique.otf" - font "homebrew-fonts/font_files/font-plaztma/otf/plaztma.otf" -end diff --git a/Casks/font-plebis.rb b/Casks/font-plebis.rb deleted file mode 100644 index fc8f51e..0000000 --- a/Casks/font-plebis.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-plebis" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Plebis" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-plebis/otf/PLEBIS.otf" -end diff --git a/Casks/font-press-start-2p.rb b/Casks/font-press-start-2p.rb deleted file mode 100644 index 4ce01d8..0000000 --- a/Casks/font-press-start-2p.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-press-start-2p" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Press Start 2P" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-press-start-2p/ttf/PressStart2P-vaV7.ttf" -end diff --git a/Casks/font-prodigy-sans.rb b/Casks/font-prodigy-sans.rb deleted file mode 100644 index 76a1390..0000000 --- a/Casks/font-prodigy-sans.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-prodigy-sans" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Prodigy Sans" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-prodigy-sans/otf/ProdigySans-Medium.otf" -end diff --git a/Casks/font-project-space.rb b/Casks/font-project-space.rb deleted file mode 100644 index 3fbe9df..0000000 --- a/Casks/font-project-space.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-project-space" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Project Space" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-project-space/ttf/project-space.ttf" - font "homebrew-fonts/font_files/font-project-space/otf/project-space.otf" -end diff --git a/Casks/font-provisions.rb b/Casks/font-provisions.rb deleted file mode 100644 index 264c3ff..0000000 --- a/Casks/font-provisions.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-provisions" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Provisions" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-provisions/otf/provisions-freepersonaluseonly.otf" -end diff --git a/Casks/font-qraydom-font-1764371345-0.rb b/Casks/font-qraydom-font-1764371345-0.rb deleted file mode 100644 index 3173e65..0000000 --- a/Casks/font-qraydom-font-1764371345-0.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-qraydom-font-1764371345-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Qraydom Font 1764371345 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-qraydom-font-1764371345-0/ttf/Qraydom.ttf" -end diff --git a/Casks/font-quasimoda-family.rb b/Casks/font-quasimoda-family.rb deleted file mode 100644 index 258316d..0000000 --- a/Casks/font-quasimoda-family.rb +++ /dev/null @@ -1,37 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-quasimoda-family" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Quasimoda Family" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-quasimoda-family/ttf/brother-bold.ttf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/brother-bold.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-regular.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin-italic.otf" - font "homebrew-fonts/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin.otf" -end diff --git a/Casks/font-quentine.rb b/Casks/font-quentine.rb deleted file mode 100644 index 4aef653..0000000 --- a/Casks/font-quentine.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-quentine" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Quentine" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-quentine/ttf/Quentine Stamp Typeface.ttf" - font "homebrew-fonts/font_files/font-quentine/ttf/Quentine Typeface.ttf" -end diff --git a/Casks/font-revain.rb b/Casks/font-revain.rb deleted file mode 100644 index 4b2711a..0000000 --- a/Casks/font-revain.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-revain" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Revain" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-revain/ttf/revain-regular.ttf" -end diff --git a/Casks/font-rigid-light.rb b/Casks/font-rigid-light.rb deleted file mode 100644 index bad3346..0000000 --- a/Casks/font-rigid-light.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-rigid-light" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Rigid Light" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-rigid-light/ttf/rigid-display-light.ttf" - font "homebrew-fonts/font_files/font-rigid-light/otf/rigid-display-light.otf" -end diff --git a/Casks/font-rocky_monkey.rb b/Casks/font-rocky_monkey.rb deleted file mode 100644 index c592192..0000000 --- a/Casks/font-rocky_monkey.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF web - -cask "font-rocky_monkey" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Rocky Monkey" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-rocky_monkey/ttf/rocky-monkey-italic.ttf" - font "homebrew-fonts/font_files/font-rocky_monkey/ttf/rocky-monkey.ttf" - font "homebrew-fonts/font_files/font-rocky_monkey/otf/rocky-monkey-italic.otf" - font "homebrew-fonts/font_files/font-rocky_monkey/otf/rocky-monkey.otf" -end diff --git a/Casks/font-rondack.rb b/Casks/font-rondack.rb deleted file mode 100644 index 86e33cc..0000000 --- a/Casks/font-rondack.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-rondack" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Rondack" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-rondack/otf/rondack-personaluseonly.otf" -end diff --git a/Casks/font-rose-of-baltimore.rb b/Casks/font-rose-of-baltimore.rb deleted file mode 100644 index d618353..0000000 --- a/Casks/font-rose-of-baltimore.rb +++ /dev/null @@ -1,16 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-rose-of-baltimore" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Rose Of Baltimore" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-rose-of-baltimore/ttf/rose_of_balt_one.ttf" - font "homebrew-fonts/font_files/font-rose-of-baltimore/ttf/rose_of_balt_two.ttf" - font "homebrew-fonts/font_files/font-rose-of-baltimore/ttf/rose_of_baltimore.ttf" -end diff --git a/Casks/font-rubik.rb b/Casks/font-rubik.rb deleted file mode 100644 index 6edc4aa..0000000 --- a/Casks/font-rubik.rb +++ /dev/null @@ -1,43 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-rubik" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Rubik" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-rubik/ttf/Rubik-Italic[wght].ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/Rubik80sFade-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikBeastly-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikBrokenFax-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikBubbles-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikBurned-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikDirt-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikDistressed-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikDoodleShadow-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikDoodleTriangles-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikGemstones-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikGlitch-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikGlitchPop-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikIso-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikLines-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikMaps-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikMarkerHatch-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikMaze-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikMicrobe-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikMonoOne-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikMoonrocks-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikOne-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikPixels-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikPuddles-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikScribble-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikSprayPaint-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikStorm-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikVinyl-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/RubikWetPaint-Regular.ttf" - font "homebrew-fonts/font_files/font-rubik/ttf/Rubik[wght].ttf" -end diff --git a/Casks/font-ruda.rb b/Casks/font-ruda.rb deleted file mode 100644 index 8e2b5b6..0000000 --- a/Casks/font-ruda.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-ruda" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Ruda" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-ruda/ttf/Ruda[wght].ttf" -end diff --git a/Casks/font-rufina.rb b/Casks/font-rufina.rb deleted file mode 100644 index 460e887..0000000 --- a/Casks/font-rufina.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-rufina" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Rufina" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-rufina/ttf/Rufina-Bold.ttf" - font "homebrew-fonts/font_files/font-rufina/ttf/Rufina-Regular.ttf" -end diff --git a/Casks/font-ruluko.rb b/Casks/font-ruluko.rb deleted file mode 100644 index 11438f7..0000000 --- a/Casks/font-ruluko.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-ruluko" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Ruluko" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-ruluko/ttf/Ruluko-Regular.ttf" -end diff --git a/Casks/font-runa.rb b/Casks/font-runa.rb deleted file mode 100644 index 6429f20..0000000 --- a/Casks/font-runa.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-runa" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Runa" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-runa/otf/runa.otf" -end diff --git a/Casks/font-rusillaserif.rb b/Casks/font-rusillaserif.rb deleted file mode 100644 index f479041..0000000 --- a/Casks/font-rusillaserif.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-rusillaserif" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Rusillaserif" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-rusillaserif/otf/rusillaserif-light.otf" - font "homebrew-fonts/font_files/font-rusillaserif/otf/rusillaserif-regular.otf" -end diff --git a/Casks/font-ruska.rb b/Casks/font-ruska.rb deleted file mode 100644 index 4e1d98c..0000000 --- a/Casks/font-ruska.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-ruska" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Ruska" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-ruska/otf/ruskadisplay-regular.otf" -end diff --git a/Casks/font-ruthie.rb b/Casks/font-ruthie.rb deleted file mode 100644 index e39f7c6..0000000 --- a/Casks/font-ruthie.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-ruthie" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Ruthie" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-ruthie/ttf/Ruthie-Regular.ttf" -end diff --git a/Casks/font-saffron.rb b/Casks/font-saffron.rb deleted file mode 100644 index dedca69..0000000 --- a/Casks/font-saffron.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-saffron" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Saffron" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-saffron/ttf/Saffron-Regular.ttf" - font "homebrew-fonts/font_files/font-saffron/ttf/Saffron-Swashes.ttf" -end diff --git a/Casks/font-scratches.rb b/Casks/font-scratches.rb deleted file mode 100644 index 5e2eaca..0000000 --- a/Casks/font-scratches.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-scratches" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Scratches" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-scratches/otf/scratches.otf" -end diff --git a/Casks/font-scribblingtom.rb b/Casks/font-scribblingtom.rb deleted file mode 100644 index 97d6c4d..0000000 --- a/Casks/font-scribblingtom.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-scribblingtom" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Scribblingtom" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-scribblingtom/otf/scribblingtom.otf" -end diff --git a/Casks/font-sepura-light.rb b/Casks/font-sepura-light.rb deleted file mode 100644 index 1416600..0000000 --- a/Casks/font-sepura-light.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-sepura-light" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Sepura Light" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-sepura-light/otf/sepura-light.otf" -end diff --git a/Casks/font-sf-pro-display.rb b/Casks/font-sf-pro-display.rb deleted file mode 100644 index 1ba98e8..0000000 --- a/Casks/font-sf-pro-display.rb +++ /dev/null @@ -1,31 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF web - -cask "font-sf-pro-display" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Sf Pro Display" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_black-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_black.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_bold-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_bold.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_heavy-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_heavy.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_light-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_light.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_medium-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_medium.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_regular-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_regular.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_semibold-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_semibold.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_thin-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_thin.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_ultralight-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-display/ttf/sf-pro-display_ultralight.ttf" -end diff --git a/Casks/font-sf-pro-icons.rb b/Casks/font-sf-pro-icons.rb deleted file mode 100644 index 05959f4..0000000 --- a/Casks/font-sf-pro-icons.rb +++ /dev/null @@ -1,22 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF web - -cask "font-sf-pro-icons" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Sf Pro Icons" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-sf-pro-icons/ttf/sf-pro-icons_black.ttf" - font "homebrew-fonts/font_files/font-sf-pro-icons/ttf/sf-pro-icons_bold.ttf" - font "homebrew-fonts/font_files/font-sf-pro-icons/ttf/sf-pro-icons_heavy.ttf" - font "homebrew-fonts/font_files/font-sf-pro-icons/ttf/sf-pro-icons_light.ttf" - font "homebrew-fonts/font_files/font-sf-pro-icons/ttf/sf-pro-icons_medium.ttf" - font "homebrew-fonts/font_files/font-sf-pro-icons/ttf/sf-pro-icons_regular.ttf" - font "homebrew-fonts/font_files/font-sf-pro-icons/ttf/sf-pro-icons_semibold.ttf" - font "homebrew-fonts/font_files/font-sf-pro-icons/ttf/sf-pro-icons_thin.ttf" - font "homebrew-fonts/font_files/font-sf-pro-icons/ttf/sf-pro-icons_ultralight.ttf" -end diff --git a/Casks/font-sf-pro-text.rb b/Casks/font-sf-pro-text.rb deleted file mode 100644 index 155bfd6..0000000 --- a/Casks/font-sf-pro-text.rb +++ /dev/null @@ -1,31 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF web - -cask "font-sf-pro-text" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Sf Pro Text" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_black-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_black.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_bold-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_bold.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_heavy-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_heavy.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_light-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_light.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_medium-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_medium.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_regular-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_regular.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_semibold-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_semibold.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_thin-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_thin.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_ultralight-italic.ttf" - font "homebrew-fonts/font_files/font-sf-pro-text/ttf/sf-pro-text_ultralight.ttf" -end diff --git a/Casks/font-sherlock.rb b/Casks/font-sherlock.rb deleted file mode 100644 index d035d3a..0000000 --- a/Casks/font-sherlock.rb +++ /dev/null @@ -1,18 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-sherlock" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Sherlock" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-sherlock/otf/Sherlock_Pro-Inline.otf" - font "homebrew-fonts/font_files/font-sherlock/otf/Sherlock_Pro-Italic.otf" - font "homebrew-fonts/font_files/font-sherlock/otf/Sherlock_Pro.otf" - font "homebrew-fonts/font_files/font-sherlock/otf/Sherlock_Symbols-Flourish.otf" - font "homebrew-fonts/font_files/font-sherlock/otf/Sherlock_Symbols-Swash.otf" -end diff --git a/Casks/font-sideboard.rb b/Casks/font-sideboard.rb deleted file mode 100644 index 6f7dab1..0000000 --- a/Casks/font-sideboard.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-sideboard" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Sideboard" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-sideboard/otf/sideboard-personaluseonly.otf" -end diff --git a/Casks/font-siesta-serenade.rb b/Casks/font-siesta-serenade.rb deleted file mode 100644 index 4bc1104..0000000 --- a/Casks/font-siesta-serenade.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-siesta-serenade" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Siesta Serenade" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-siesta-serenade/otf/siestaserenade-personaluseonly.otf" -end diff --git a/Casks/font-sigitarian.rb b/Casks/font-sigitarian.rb deleted file mode 100644 index d8cd586..0000000 --- a/Casks/font-sigitarian.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF web - -cask "font-sigitarian" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Sigitarian" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-sigitarian/ttf/sigitarian.ttf" - font "homebrew-fonts/font_files/font-sigitarian/otf/sigitarian.otf" -end diff --git a/Casks/font-signate-grotesk-black.rb b/Casks/font-signate-grotesk-black.rb deleted file mode 100644 index 30b0c81..0000000 --- a/Casks/font-signate-grotesk-black.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-signate-grotesk-black" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Signate Grotesk Black" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-signate-grotesk-black/ttf/signategrotesk-black.ttf" -end diff --git a/Casks/font-silkshy.rb b/Casks/font-silkshy.rb deleted file mode 100644 index ee43e56..0000000 --- a/Casks/font-silkshy.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-silkshy" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Silkshy" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-silkshy/ttf/silkshy.ttf" - font "homebrew-fonts/font_files/font-silkshy/ttf/silkshyoblique.ttf" - font "homebrew-fonts/font_files/font-silkshy/otf/silkshy.otf" - font "homebrew-fonts/font_files/font-silkshy/otf/silkshyoblique.otf" -end diff --git a/Casks/font-skulls-and-crossbones.rb b/Casks/font-skulls-and-crossbones.rb deleted file mode 100644 index ccc6a83..0000000 --- a/Casks/font-skulls-and-crossbones.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-skulls-and-crossbones" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Skulls And Crossbones" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-skulls-and-crossbones/ttf/Skullsandcrossbones-RppKM.ttf" -end diff --git a/Casks/font-source-code-pro.rb b/Casks/font-source-code-pro.rb deleted file mode 100644 index 7b3f2d1..0000000 --- a/Casks/font-source-code-pro.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-source-code-pro" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Source Code Pro" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-source-code-pro/ttf/SourceCodePro-Italic[wght].ttf" - font "homebrew-fonts/font_files/font-source-code-pro/ttf/SourceCodePro[wght].ttf" -end diff --git a/Casks/font-space-rabbit-font-1764372251-0.rb b/Casks/font-space-rabbit-font-1764372251-0.rb deleted file mode 100644 index 22e92a1..0000000 --- a/Casks/font-space-rabbit-font-1764372251-0.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-space-rabbit-font-1764372251-0" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Space Rabbit Font 1764372251 0" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-space-rabbit-font-1764372251-0/otf/Space-Rabbit.otf" -end diff --git a/Casks/font-spencer.rb b/Casks/font-spencer.rb deleted file mode 100644 index 7250a7b..0000000 --- a/Casks/font-spencer.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF web - -cask "font-spencer" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Spencer" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-spencer/ttf/spencer.ttf" - font "homebrew-fonts/font_files/font-spencer/otf/spencer.otf" -end diff --git a/Casks/font-springwood_note.rb b/Casks/font-springwood_note.rb deleted file mode 100644 index 1d12b8e..0000000 --- a/Casks/font-springwood_note.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-springwood_note" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Springwood Note" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-springwood_note/otf/springwood-line-demo.otf" - font "homebrew-fonts/font_files/font-springwood_note/otf/springwood-note-demo.otf" -end diff --git a/Casks/font-spritegraffiti.rb b/Casks/font-spritegraffiti.rb deleted file mode 100644 index f97d970..0000000 --- a/Casks/font-spritegraffiti.rb +++ /dev/null @@ -1,19 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF web - -cask "font-spritegraffiti" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Spritegraffiti" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-spritegraffiti/ttf/spritegraffiti-extras.ttf" - font "homebrew-fonts/font_files/font-spritegraffiti/ttf/spritegraffiti-regular.ttf" - font "homebrew-fonts/font_files/font-spritegraffiti/ttf/spritegraffiti-shadow.ttf" - font "homebrew-fonts/font_files/font-spritegraffiti/otf/spritegraffiti-extras.otf" - font "homebrew-fonts/font_files/font-spritegraffiti/otf/spritegraffiti-regular.otf" - font "homebrew-fonts/font_files/font-spritegraffiti/otf/spritegraffiti-shadow.otf" -end diff --git a/Casks/font-starship.rb b/Casks/font-starship.rb deleted file mode 100644 index 19461dd..0000000 --- a/Casks/font-starship.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF web - -cask "font-starship" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Starship" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-starship/ttf/starship.ttf" - font "homebrew-fonts/font_files/font-starship/otf/starship.otf" -end diff --git a/Casks/font-stockman.rb b/Casks/font-stockman.rb deleted file mode 100644 index 1ac806a..0000000 --- a/Casks/font-stockman.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-stockman" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Stockman" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-stockman/otf/stockman-demo-personaluseonly.otf" -end diff --git a/Casks/font-stronghold.rb b/Casks/font-stronghold.rb deleted file mode 100644 index 2e7a2df..0000000 --- a/Casks/font-stronghold.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-stronghold" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Stronghold" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-stronghold/ttf/stronghold-italic.ttf" - font "homebrew-fonts/font_files/font-stronghold/ttf/stronghold-regular.ttf" - font "homebrew-fonts/font_files/font-stronghold/otf/stronghold-italic.otf" - font "homebrew-fonts/font_files/font-stronghold/otf/stronghold-regular.otf" -end diff --git a/Casks/font-sunmore.rb b/Casks/font-sunmore.rb deleted file mode 100644 index ba31bec..0000000 --- a/Casks/font-sunmore.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-sunmore" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Sunmore" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-sunmore/ttf/sunmore-slant-free.ttf" -end diff --git a/Casks/font-tallow-pen.rb b/Casks/font-tallow-pen.rb deleted file mode 100644 index 3f2863f..0000000 --- a/Casks/font-tallow-pen.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-tallow-pen" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tallow Pen" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tallow-pen/otf/tallowsanstc-pen.otf" - font "homebrew-fonts/font_files/font-tallow-pen/otf/tallowtc-pen.otf" -end diff --git a/Casks/font-tc-grimstone.rb b/Casks/font-tc-grimstone.rb deleted file mode 100644 index 54571ae..0000000 --- a/Casks/font-tc-grimstone.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-tc-grimstone" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tc Grimstone" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tc-grimstone/otf/TC-Grimstone-Bold.otf" -end diff --git a/Casks/font-tc-rampart.rb b/Casks/font-tc-rampart.rb deleted file mode 100644 index 82bd1dc..0000000 --- a/Casks/font-tc-rampart.rb +++ /dev/null @@ -1,29 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-tc-rampart" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tc Rampart" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tc-rampart/ttf/TC Rampart Bold.ttf" - font "homebrew-fonts/font_files/font-tc-rampart/ttf/TC Rampart Condensed Bold.ttf" - font "homebrew-fonts/font_files/font-tc-rampart/ttf/TC Rampart Condensed.ttf" - font "homebrew-fonts/font_files/font-tc-rampart/ttf/TC Rampart Round Bold.ttf" - font "homebrew-fonts/font_files/font-tc-rampart/ttf/TC Rampart Round Condensed Bold.ttf" - font "homebrew-fonts/font_files/font-tc-rampart/ttf/TC Rampart Round Condensed.ttf" - font "homebrew-fonts/font_files/font-tc-rampart/ttf/TC Rampart Round.ttf" - font "homebrew-fonts/font_files/font-tc-rampart/ttf/TC Rampart.ttf" - font "homebrew-fonts/font_files/font-tc-rampart/otf/TC Rampart Bold.otf" - font "homebrew-fonts/font_files/font-tc-rampart/otf/TC Rampart Condensed Bold.otf" - font "homebrew-fonts/font_files/font-tc-rampart/otf/TC Rampart Condensed.otf" - font "homebrew-fonts/font_files/font-tc-rampart/otf/TC Rampart Round Bold.otf" - font "homebrew-fonts/font_files/font-tc-rampart/otf/TC Rampart Round Condensed Bold.otf" - font "homebrew-fonts/font_files/font-tc-rampart/otf/TC Rampart Round Condensed.otf" - font "homebrew-fonts/font_files/font-tc-rampart/otf/TC Rampart Round.otf" - font "homebrew-fonts/font_files/font-tc-rampart/otf/TC Rampart.otf" -end diff --git a/Casks/font-tc_kindred.rb b/Casks/font-tc_kindred.rb deleted file mode 100644 index d712fd7..0000000 --- a/Casks/font-tc_kindred.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF web - -cask "font-tc_kindred" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tc Kindred" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tc_kindred/otf/kindred.otf" -end diff --git a/Casks/font-tcacrylichand.rb b/Casks/font-tcacrylichand.rb deleted file mode 100644 index 9cf19c7..0000000 --- a/Casks/font-tcacrylichand.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF web - -cask "font-tcacrylichand" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tcacrylichand" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tcacrylichand/ttf/tcacrylichand.ttc" -end diff --git a/Casks/font-techla.rb b/Casks/font-techla.rb deleted file mode 100644 index 8576343..0000000 --- a/Casks/font-techla.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-techla" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Techla" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-techla/otf/techla.otf" -end diff --git a/Casks/font-teenage-yellow-star.rb b/Casks/font-teenage-yellow-star.rb deleted file mode 100644 index 71ff3f9..0000000 --- a/Casks/font-teenage-yellow-star.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-teenage-yellow-star" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Teenage Yellow Star" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-teenage-yellow-star/otf/teenage-yellow-star-svg.otf" -end diff --git a/Casks/font-tf-madcloud-teenage-foundry.rb b/Casks/font-tf-madcloud-teenage-foundry.rb deleted file mode 100644 index 968aaf3..0000000 --- a/Casks/font-tf-madcloud-teenage-foundry.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-tf-madcloud-teenage-foundry" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tf Madcloud Teenage Foundry" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tf-madcloud-teenage-foundry/ttf/tf-madloud-demo.ttf" - font "homebrew-fonts/font_files/font-tf-madcloud-teenage-foundry/otf/tf-madloud-demo.otf" -end diff --git a/Casks/font-the-great-outdoors.rb b/Casks/font-the-great-outdoors.rb deleted file mode 100644 index 2f7ccbd..0000000 --- a/Casks/font-the-great-outdoors.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-the-great-outdoors" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "The Great Outdoors" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-the-great-outdoors/otf/thegreatoutdoors-regular.otf" - font "homebrew-fonts/font_files/font-the-great-outdoors/otf/thegreatoutdoors-rough-regular.otf" -end diff --git a/Casks/font-thourenz-inked.rb b/Casks/font-thourenz-inked.rb deleted file mode 100644 index 7980575..0000000 --- a/Casks/font-thourenz-inked.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-thourenz-inked" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Thourenz Inked" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-thourenz-inked/ttf/thourenz-inked.ttf" - font "homebrew-fonts/font_files/font-thourenz-inked/otf/thourenz-inked.otf" -end diff --git a/Casks/font-titin.rb b/Casks/font-titin.rb deleted file mode 100644 index abd57ff..0000000 --- a/Casks/font-titin.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-titin" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Titin" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-titin/ttf/titin.ttf" -end diff --git a/Casks/font-tokyo.rb b/Casks/font-tokyo.rb deleted file mode 100644 index 2508f24..0000000 --- a/Casks/font-tokyo.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-tokyo" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tokyo" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tokyo/ttf/Tokyo-Outline.ttf" - font "homebrew-fonts/font_files/font-tokyo/ttf/Tokyo-Regular.ttf" -end diff --git a/Casks/font-tryal.rb b/Casks/font-tryal.rb deleted file mode 100644 index e91c76c..0000000 --- a/Casks/font-tryal.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-tryal" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tryal" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tryal/ttf/Tryal-Eroded.ttf" - font "homebrew-fonts/font_files/font-tryal/ttf/Tryal-Regular.ttf" -end diff --git a/Casks/font-tt-russo-sans.rb b/Casks/font-tt-russo-sans.rb deleted file mode 100644 index 161b296..0000000 --- a/Casks/font-tt-russo-sans.rb +++ /dev/null @@ -1,23 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-tt-russo-sans" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tt Russo Sans" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-Black.ttf" - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-BlackItalic.ttf" - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-Bold.ttf" - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-BoldItalic.ttf" - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-Italic.ttf" - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-Light.ttf" - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-LightItalic.ttf" - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-Regular.ttf" - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-Thin.ttf" - font "homebrew-fonts/font_files/font-tt-russo-sans/ttf/TTRussoSans-ThinItalic.ttf" -end diff --git a/Casks/font-tt-teds.rb b/Casks/font-tt-teds.rb deleted file mode 100644 index 9504a10..0000000 --- a/Casks/font-tt-teds.rb +++ /dev/null @@ -1,31 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-tt-teds" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tt Teds" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-Black.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-BlackItalic.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-Bold.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-BoldItalic.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-ExtraBold.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-ExtraBoldItalic.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-ExtraLight.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-ExtraLightItalic.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-Hairline.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-HairlineItalic.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-Italic.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-Light.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-LightItalic.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-Medium.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-MediumItalic.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-Regular.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-Thin.ttf" - font "homebrew-fonts/font_files/font-tt-teds/ttf/TT-Teds-ThinItalic.ttf" -end diff --git a/Casks/font-twitter-color-emoji.rb b/Casks/font-twitter-color-emoji.rb deleted file mode 100644 index 15de5c0..0000000 --- a/Casks/font-twitter-color-emoji.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-twitter-color-emoji" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Twitter Color Emoji" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-twitter-color-emoji/ttf/TwitterColorEmoji-SVGinOT.ttf" -end diff --git a/Casks/font-tyler-handwriting.rb b/Casks/font-tyler-handwriting.rb deleted file mode 100644 index 065764c..0000000 --- a/Casks/font-tyler-handwriting.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-tyler-handwriting" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Tyler Handwriting" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-tyler-handwriting/otf/tyler-handwriting.otf" -end diff --git a/Casks/font-ubuntu.rb b/Casks/font-ubuntu.rb deleted file mode 100644 index 97a669d..0000000 --- a/Casks/font-ubuntu.rb +++ /dev/null @@ -1,21 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-ubuntu" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Ubuntu" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-ubuntu/ttf/Ubuntu-Bold.ttf" - font "homebrew-fonts/font_files/font-ubuntu/ttf/Ubuntu-BoldItalic.ttf" - font "homebrew-fonts/font_files/font-ubuntu/ttf/Ubuntu-Italic.ttf" - font "homebrew-fonts/font_files/font-ubuntu/ttf/Ubuntu-Light.ttf" - font "homebrew-fonts/font_files/font-ubuntu/ttf/Ubuntu-LightItalic.ttf" - font "homebrew-fonts/font_files/font-ubuntu/ttf/Ubuntu-Medium.ttf" - font "homebrew-fonts/font_files/font-ubuntu/ttf/Ubuntu-MediumItalic.ttf" - font "homebrew-fonts/font_files/font-ubuntu/ttf/Ubuntu-Regular.ttf" -end diff --git a/Casks/font-untitled1.rb b/Casks/font-untitled1.rb deleted file mode 100644 index c08e229..0000000 --- a/Casks/font-untitled1.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-untitled1" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Untitled1" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-untitled1/otf/Untitled1.otf" -end diff --git a/Casks/font-upside-down.rb b/Casks/font-upside-down.rb deleted file mode 100644 index 890664b..0000000 --- a/Casks/font-upside-down.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-upside-down" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Upside Down" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-upside-down/otf/Upside Down Outline.otf" - font "homebrew-fonts/font_files/font-upside-down/otf/Upside Down Regular.otf" -end diff --git a/Casks/font-valofire.rb b/Casks/font-valofire.rb deleted file mode 100644 index 54cf76b..0000000 --- a/Casks/font-valofire.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-valofire" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Valofire" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-valofire/ttf/valofire-personal-used.ttf" -end diff --git a/Casks/font-vampire-mansion.rb b/Casks/font-vampire-mansion.rb deleted file mode 100644 index 0809ff2..0000000 --- a/Casks/font-vampire-mansion.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-vampire-mansion" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Vampire Mansion" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-vampire-mansion/otf/vampire-mansion.otf" -end diff --git a/Casks/font-vaselina.rb b/Casks/font-vaselina.rb deleted file mode 100644 index 5588e92..0000000 --- a/Casks/font-vaselina.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-vaselina" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Vaselina" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-vaselina/otf/veselina-script.otf" - font "homebrew-fonts/font_files/font-vaselina/otf/veselina.otf" -end diff --git a/Casks/font-vcr-osd-mono.rb b/Casks/font-vcr-osd-mono.rb deleted file mode 100644 index 8e42f45..0000000 --- a/Casks/font-vcr-osd-mono.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-vcr-osd-mono" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Vcr Osd Mono" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-vcr-osd-mono/ttf/VCR_OSD_MONO_1.001.ttf" -end diff --git a/Casks/font-vector-line.rb b/Casks/font-vector-line.rb deleted file mode 100644 index 6620dbc..0000000 --- a/Casks/font-vector-line.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-vector-line" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Vector Line" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-vector-line/otf/vector_line_2.1.otf" -end diff --git a/Casks/font-virus_killer.rb b/Casks/font-virus_killer.rb deleted file mode 100644 index 6d0acdf..0000000 --- a/Casks/font-virus_killer.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-virus_killer" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Virus Killer" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-virus_killer/ttf/virus-killer.ttf" - font "homebrew-fonts/font_files/font-virus_killer/otf/virus-killer.otf" -end diff --git a/Casks/font-walkway.rb b/Casks/font-walkway.rb deleted file mode 100644 index 2cd94a3..0000000 --- a/Casks/font-walkway.rb +++ /dev/null @@ -1,44 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-walkway" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Walkway" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Black-RevOblique.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Black.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Bold-RevOblique.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Bold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Condensed-Bold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Condensed-SemiBold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Condensed.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Expand-Black.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Expand-Bold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Expand-RevOblique.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Expand-SemiBold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Expand-UltraBold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Expand.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Oblique-Black.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Oblique-Bold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Oblique-Expand.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Oblique-SemiBold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Oblique-UltraBold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-Oblique.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-RevOblique.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-SemiBold-RevOblique.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-SemiBold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-UltraBold-RevOblique.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-UltraBold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-UltraCondensed-Bold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-UltraCondensed-Semi.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-UltraCondensed.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-UltraExpand-Bold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-UltraExpand-SemiBold.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-UltraExpand.ttf" - font "homebrew-fonts/font_files/font-walkway/ttf/Walkway-rounded.ttf" -end diff --git a/Casks/font-west-river.rb b/Casks/font-west-river.rb deleted file mode 100644 index c8b8d7f..0000000 --- a/Casks/font-west-river.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-west-river" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "West River" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-west-river/otf/westriver-regular.otf" -end diff --git a/Casks/font-whtpny.rb b/Casks/font-whtpny.rb deleted file mode 100644 index 7942d22..0000000 --- a/Casks/font-whtpny.rb +++ /dev/null @@ -1,16 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: OTF - -cask "font-whtpny" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Whtpny" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-whtpny/otf/whtpny-lcd.otf" - font "homebrew-fonts/font_files/font-whtpny/otf/whtpny.otf" - font "homebrew-fonts/font_files/font-whtpny/otf/whtpnypx.otf" -end diff --git a/Casks/font-wire-one.rb b/Casks/font-wire-one.rb deleted file mode 100644 index cf34b47..0000000 --- a/Casks/font-wire-one.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-wire-one" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Wire One" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-wire-one/ttf/WireOne-Regular.ttf" -end diff --git a/Casks/font-wistonia-signature.rb b/Casks/font-wistonia-signature.rb deleted file mode 100644 index 36cb11e..0000000 --- a/Casks/font-wistonia-signature.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-wistonia-signature" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Wistonia Signature" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-wistonia-signature/ttf/wistonia-signature.ttf" - font "homebrew-fonts/font_files/font-wistonia-signature/otf/wistonia-signature.otf" -end diff --git a/Casks/font-ws-lowen.rb b/Casks/font-ws-lowen.rb deleted file mode 100644 index a7d50b4..0000000 --- a/Casks/font-ws-lowen.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-ws-lowen" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Ws Lowen" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-ws-lowen/ttf/ws-lowen-demo.ttf" -end diff --git a/Casks/font-wt-karsa-mono.rb b/Casks/font-wt-karsa-mono.rb deleted file mode 100644 index 521671a..0000000 --- a/Casks/font-wt-karsa-mono.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-wt-karsa-mono" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Wt Karsa Mono" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-wt-karsa-mono/ttf/wt-karsa-mono.ttf" - font "homebrew-fonts/font_files/font-wt-karsa-mono/otf/wt-karsa-mono.otf" -end diff --git a/Casks/font-you-rock.rb b/Casks/font-you-rock.rb deleted file mode 100644 index 4d60568..0000000 --- a/Casks/font-you-rock.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-you-rock" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "You Rock" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-you-rock/ttf/YouRock-Extras.ttf" - font "homebrew-fonts/font_files/font-you-rock/ttf/YouRock-Regular.ttf" -end diff --git a/Casks/font-youchat.rb b/Casks/font-youchat.rb deleted file mode 100644 index 1684722..0000000 --- a/Casks/font-youchat.rb +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-youchat" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Youchat" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-youchat/ttf/youchat.ttf" - font "homebrew-fonts/font_files/font-youchat/otf/youchat.otf" -end diff --git a/Casks/font-zebra.rb b/Casks/font-zebra.rb deleted file mode 100644 index 53d4daf..0000000 --- a/Casks/font-zebra.rb +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF OTF - -cask "font-zebra" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Zebra" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-zebra/ttf/zebra-neg.ttf" - font "homebrew-fonts/font_files/font-zebra/ttf/zebra.ttf" - font "homebrew-fonts/font_files/font-zebra/otf/zebra-neg.otf" - font "homebrew-fonts/font_files/font-zebra/otf/zebra.otf" -end diff --git a/Casks/font-zipper.rb b/Casks/font-zipper.rb deleted file mode 100644 index 17233f7..0000000 --- a/Casks/font-zipper.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This file was generated by the font folder cleanup script -# Do not edit this file directly -# Installs: TTF - -cask "font-zipper" do - version "1.0.0" - sha256 :no_check - - url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz" - name "Zipper" - homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts" - - font "homebrew-fonts/font_files/font-zipper/ttf/Zipper-Regular.ttf" -end diff --git a/Formula/font-tyler handwriting.rb b/Formula/font-tyler handwriting.rb new file mode 100644 index 0000000..613edfa --- /dev/null +++ b/Formula/font-tyler handwriting.rb @@ -0,0 +1,16 @@ +class Tyler handwriting < Formula + desc "A custom font" + homepage "http://clancy.genet-godzilla.ts.net:3002/fishy/font-tyler handwriting" + url "http://clancy.genet-godzilla.ts.net:3002/fishy/font-tyler handwriting/raw/branch/master/tyler handwriting.zip" + sha256 "b0bf2ac68eaf7ad7e0623b12d0c3661336af1ef3b20157aeb9312322cef9cac1" + version "1.0.0" + + def install + (share/"fonts").install "tyler-handwriting.otf" + end + + test do + # Test installation by checking that the font exists + system "fc-list | grep 'tyler-handwriting'" + end +end diff --git a/PROJECT.md b/PROJECT.md deleted file mode 100644 index 85aeac9..0000000 --- a/PROJECT.md +++ /dev/null @@ -1,143 +0,0 @@ -# Project: Custom Font Homebrew Tap - -This document describes the repository for Cursor, other LLMs, and automation agents. Read this first to understand structure, conventions, and workflows. - -## LLM / agent context files (conventions) - -This repo follows common conventions so multiple tools can discover project context: - -| File | Used by | -|------|--------| -| **PROJECT.md** (this file) | Canonical project description; any LLM or agent. | -| **.cursorrules** | [Cursor](https://cursor.com): root-level rules; points to PROJECT.md. | -| **.github/copilot-instructions.md** | [GitHub Copilot](https://docs.github.com/en/copilot) (VS Code, Visual Studio, GitHub.com): workspace instructions; references PROJECT.md. | -| **.claude/skills/project-context/SKILL.md** | [Claude Code](https://code.claude.com) / [Claude Agent SDK](https://docs.anthropic.com/en/docs/agent-sdk/overview): project skill; references PROJECT.md. | - -When adding or changing project rules, update **PROJECT.md** first, then sync the tool-specific files above if needed. - -## What This Repo Is - -A **Homebrew tap** that serves a personal collection of fonts. Users add the tap once, then install fonts with `brew install font-`. The repo is the tap source: it contains font assets and Homebrew Formula (Ruby) files that install them. - -- **Tap name (from README):** `clancy/fonts` -- **Install flow:** `brew tap ...` → `brew install font-` - -## Repository Layout - -``` -custom_font_tap/ -├── PROJECT.md # This file — canonical project overview for LLMs/agents -├── pyproject.toml # uv project; add-font CLI and pytest -├── tap_cli/ # add-font CLI (uv run add-font) -├── tests/ # Repo-level tests (every font: structure, formula) -├── .cursorrules # Cursor: root rules (points here) -├── .github/ -│ ├── copilot-instructions.md # GitHub Copilot / VS Code -│ └── workflows/ # CI (pytest, brew audit) -├── .claude/skills/project-context/ -│ └── SKILL.md # Claude Code / Agent SDK -├── README.md # User-facing install instructions -├── .gitignore -├── font_files/ # Canonical font data (one folder per font) -│ └── font-/ # Each font: ttf/, otf/, web/, other_files/ -├── Formula/ # Homebrew formulae (*.rb), one per font -├── To Sort/ # Staging: new downloads not yet in font_files -├── .fontfoldercleanup/ # Scripts to organize folders and generate formulae -└── .cursor/rules/ # Cursor rule(s) for font folder structure -``` - -## Font Folder Structure (Required) - -Every font lives in `font_files/` in a folder named **`font-`**. Inside that folder only these four subdirectories are allowed: - -| Directory | Purpose | -|---------------|--------| -| `ttf/` | `.ttf` files | -| `otf/` | `.otf` files | -| `web/` | `.woff`, `.woff2`, `.eot`, `.svg` | -| `other_files/`| Everything else (licenses, PDFs, docs, etc.) | - -- All font folders **must** use the `font-` prefix. -- No other top-level files or dirs; anything else goes under `other_files/`. -- The rule and cleanup script are documented in `.cursor/rules/font-folder-structure.mdc`. - -## Key Files and Scripts - -| Path | Purpose | -|------|--------| -| **`uv run add-font`** | CLI: add or update a font (cleanup + formula + tests). Use `uv run add-font `. Optional: `uv tool install .` for global `add-font`. | -| `tests/` | Repo-level test suite (pytest). Run with `uv run pytest tests/`. Validates every font: structure, formula exists, formula content. | -| `.fontfoldercleanup/cleanup_font_folders.py` | Organizes a font tree into `ttf/`, `otf/`, `web/`, `other_files/`. Run with `--path` (default `../font_files` relative to script). | -| `.fontfoldercleanup/create_homebrew_formula.py` | Scans `font_files/` for `font-*` dirs and writes/updates one `.rb` per font in `Formula/`. | -| `.fontfoldercleanup/tap_config.rb` | Reference tap config (meta-formula); not the main installer. | -| `Formula/font-.rb` | Generated; do not edit by hand. Class name is `Font` (e.g. `font-acrylic-hand` → `FontAcrylicHand`). | - -## Workflows - -### Adding a new font - -1. Get the font (e.g. extract a zip) into **`To Sort/`** or keep it in a temp folder. -2. From repo root, run: - ```bash - uv run add-font - ``` - - **``** can be: - - A path to an unpacked font folder (or one already in `font_files/`). Name is inferred from the folder (e.g. `font-my-font`). - - A font name (e.g. `font-acrylic-hand` or `acrylic-hand`) if the folder is already in `font_files/` (update flow). -3. The CLI runs cleanup, formula generator, and the test suite. Fix any test failures, then commit `font_files/font-/` and `Formula/font-.rb`. - -To install the CLI globally: `uv tool install .` from the repo root; then you can run `add-font ` anywhere. - -### Regenerating all formulae - -From repo root: - -```bash -python3 .fontfoldercleanup/create_homebrew_formula.py -``` - -Then run the test suite to confirm: - -```bash -uv run pytest tests/ -``` - -### Running tests - -From repo root: - -```bash -uv run pytest tests/ -``` - -Tests are parametrized over every font: structure (four subdirs, at least one file), formula exists, formula content (paths and valid Ruby class name). Global tests ensure no orphan formulae and no duplicates. - -### Only reorganizing folders (no formula changes) - -Point the cleanup script at the directory that contains font folders (e.g. `font_files` or a folder under `To Sort/`): - -```bash -python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files -``` - -## Formula Conventions - -- **File:** `Formula/font-.rb` (e.g. `font-pixelon.rb`, `font-graham_hand.rb`). -- **Class:** `Font` — the part after `font-` is converted to valid Ruby (e.g. `font-acrylic-hand` → `FontAcrylicHand`, `font-graham_hand` → `FontGrahamHand`). No hyphens in the class name. -- **Source:** Formulae assume the archive unpacks as `homebrew-fonts/` and fonts live under `homebrew-fonts/font_files/font-/`. -- **Comment in formulae:** "This file was generated by the font folder cleanup script — Do not edit this file directly." Edits should go in the generator (`.fontfoldercleanup/create_homebrew_formula.py`) or in font folder structure/scripts. - -## Technical Notes - -- **Python:** Scripts are Python 3, standard library only (pathlib, shutil, argparse). -- **Ruby:** Formulae are standard Homebrew Formula; they use `share/"fonts/truetype"`, etc., and optional `share/""` for `other_files` content. -- **Homebrew URL in formulae:** `http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz` (may need updating if the server or repo path changes). -- **Ignored (`.gitignore`):** `*.ofm`, `*.cfg`, `*.g2n`, `.DS_Store`, `.setup_complete`, `.env/`, `.idea/`. - -## Quick Reference for Agents - -- To **add a font:** run `uv run add-font ` (or add `font_files/font-/` then run `cleanup_font_folders.py` and `create_homebrew_formula.py`). -- To **fix folder structure:** run `cleanup_font_folders.py` on the directory containing the `font-*` folders. -- To **sync Formula with font_files:** run `create_homebrew_formula.py`; do not edit Formula `*.rb` files by hand. -- To **validate:** run `uv run pytest tests/` (and optionally `brew audit` on touched formulae). -- **To Sort/** is for unsorted downloads; fonts are only “in the tap” when they are under `font_files/` and have a matching file in `Formula/`. diff --git a/README.md b/README.md index 4f4e9bc..5239d89 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,97 @@ -# Repository of Fonts - -This repository contains a collection of fonts that I have found and liked. I have collected them here so that I can easily access them from any computer. They are in the homebrew format for easy installation using homebrew. - -## Prerequisites -You need to have the following installed on your system to use this repository: -- ### 👨🏼‍💻 Xcode Command Line Tools - - ```sh - xcode-select --install - ``` -- ### [🍻 Homebrew](https://brew.sh/) - - ```sh - /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - ``` +# Homebrew Fonts Tap +This repository contains a collection of custom fonts for use with Homebrew. ## Installation -- ```sh - brew tap trtmn/fonts ssh://git@clancy.genet-godzilla.ts.net:2222/trtmn/homebrew-fonts.git # You only need to do this once! - ``` - -- ```sh - brew install --cask {font-name} // Replace {font-name} with the name of the font you want to install - ``` +```bash +brew tap trtmn-fonts/fonts +brew install font- +``` + +## Available Fonts + +This tap provides a variety of custom fonts. To see all available fonts, run: + +```bash +brew search trtmn-fonts/fonts/font- +``` + +## Adding New Fonts + +To add a new font to this tap, follow these steps: + +1. **Create a Gitea API Token**: + - Go to your Gitea profile settings + - Navigate to "Applications" > "Generate New Token" + - Name the token (e.g., "Homebrew Fonts") + - Select the necessary permissions (at minimum: `repo`) + - Generate and copy the token + +2. **Set Up Environment Variables**: + - Create a `.env` file in the root of this repository with the following content: + ``` + GITEA_URL=http://clancy.genet-godzilla.ts.net:3002 + GITEA_USERNAME=trtmn-fonts + GITEA_API_TOKEN=your_api_token_here + ``` + - Replace `your_api_token_here` with your actual Gitea API token + - **Important**: Do not commit the `.env` file to version control if it contains sensitive information + +3. **Install Required Python Packages**: + ```bash + pip install -r requirements.txt + ``` + +4. **Run the Add Font Script**: + ```bash + python3 add-font-submodule.py + ``` + - Follow the prompts to enter the font name and location of the font files + - The script will: + - Create a new repository on Gitea for the font + - Add the font as a submodule to this repository + - Create a Homebrew formula for the font + - Update the font index + +5. **Push Changes to Gitea**: + ```bash + git push + ``` + +## Removing Fonts + +To remove a font from this tap, follow these steps: + +1. **Ensure Environment Variables are Set**: + - Make sure your `.env` file is properly configured (see "Adding New Fonts" section) + +2. **Run the Remove Font Script**: + ```bash + python3 remove-font.py + ``` + - Replace `` with the name of the font to remove + - The script will: + - Ask for confirmation before proceeding + - Remove the font submodule + - Delete the font repository from Gitea + - Update the font index + +3. **Push Changes to Gitea**: + ```bash + git push + ``` + +## Repository Structure + +- `Formula/`: Contains Homebrew formulas for each font +- `fonts/`: Contains submodules for each font repository +- `fonts/index.json`: Index of all available fonts +- `add-font-submodule.py`: Script for adding new fonts +- `remove-font.py`: Script for removing fonts +- `.env`: Configuration file for Gitea credentials (not tracked by git) +- `requirements.txt`: Python dependencies + +## License + +This project is licensed under the MIT License - see the LICENSE file for details. \ No newline at end of file diff --git a/add-font-submodule.py b/add-font-submodule.py new file mode 100755 index 0000000..120ef87 --- /dev/null +++ b/add-font-submodule.py @@ -0,0 +1,269 @@ +#!/usr/bin/env python3 +import os +import sys +import shutil +import subprocess +import hashlib +import zipfile +import tempfile +import json +import requests +from pathlib import Path +from dotenv import load_dotenv + +# Load environment variables from .env file +load_dotenv() + +def create_gitea_repo(gitea_url, gitea_username, gitea_token, repo_name, description): + """Create a new repository on Gitea using the API.""" + api_url = f"{gitea_url}/api/v1/user/repos" + headers = { + "Authorization": f"token {gitea_token}", + "Content-Type": "application/json" + } + data = { + "name": repo_name, + "description": description, + "private": False, + "auto_init": False + } + + print(f"Creating repository {repo_name} on Gitea...") + response = requests.post(api_url, headers=headers, json=data) + + if response.status_code == 201: + print(f"Repository {repo_name} created successfully.") + return response.json() + else: + print(f"Error creating repository: {response.status_code} - {response.text}") + return None + +def create_zip(font_files, zip_path): + """Create a zip file with the font files.""" + print(f"Creating zip file at {zip_path} with the following font files:") + with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf: + for font_file in font_files: + print(f" - {font_file}") + # Add each font file to the zip with its original name (no path) + arcname = os.path.basename(font_file) + zipf.write(font_file, arcname=arcname) + print(f"Zip file created at {zip_path}") + +def generate_sha256(zip_path): + """Generate SHA256 hash for the zip file.""" + sha256_hash = hashlib.sha256() + with open(zip_path, "rb") as f: + # Read in 4k chunks to hash + for byte_block in iter(lambda: f.read(4096), b""): + sha256_hash.update(byte_block) + return sha256_hash.hexdigest() + +def create_font_repo(font_name, font_files, gitea_url, gitea_username, gitea_token): + """Create a new repository for the font and set it up with the necessary files.""" + # Create a temporary directory for the font repository + with tempfile.TemporaryDirectory() as temp_dir: + # Create the zip file + zip_filename = f"{font_name}.zip" + zip_path = os.path.join(temp_dir, zip_filename) + create_zip(font_files, zip_path) + + # Generate SHA256 hash for the zip file + sha256_hash = generate_sha256(zip_path) + print(f"SHA256 hash generated: {sha256_hash}") + + # Create the repository on Gitea + repo_name = f"font-{font_name}" + description = f"Font files for {font_name}" + repo_data = create_gitea_repo(gitea_url, gitea_username, gitea_token, repo_name, description) + + if not repo_data: + print("Failed to create repository on Gitea.") + return None, None, None + + # Clone the repository + repo_url = repo_data["clone_url"] + repo_path = os.path.join(temp_dir, repo_name) + subprocess.run(["git", "clone", repo_url, repo_path], check=True) + + # Copy the zip file to the repository + shutil.copy(zip_path, os.path.join(repo_path, zip_filename)) + + # Create a README.md file + with open(os.path.join(repo_path, "README.md"), "w") as f: + f.write(f"# {font_name} Font\n\n") + f.write(f"This repository contains the font files for {font_name}.\n\n") + f.write(f"SHA256: {sha256_hash}\n") + + # Commit and push the changes + subprocess.run(["git", "-C", repo_path, "add", "."], check=True) + subprocess.run(["git", "-C", repo_path, "commit", "-m", f"Add {font_name} font files"], check=True) + subprocess.run(["git", "-C", repo_path, "push"], check=True) + + # Create a local copy of the zip file for the formula + local_zip_path = os.path.join(os.getcwd(), zip_filename) + shutil.copy(zip_path, local_zip_path) + + return repo_path, sha256_hash, zip_filename + +def create_formula(font_name, sha256_hash, gitea_url, gitea_username, zip_filename): + """Create the Homebrew formula for the font.""" + # Get the font filename without extension (assuming it's a valid font file in the zip) + font_file = os.path.basename(font_files[0]) # Assumes the first font file is the primary font file + + # Convert font_name to CamelCase for the class name + class_name = ''.join(word.capitalize() for word in font_name.split('-')) + + # Create the formula content + formula_content = f"""class {class_name} < Formula + desc "A custom font" + homepage "{gitea_url}/{gitea_username}/font-{font_name}" + url "{gitea_url}/{gitea_username}/font-{font_name}/raw/branch/master/{zip_filename}" + sha256 "{sha256_hash}" + version "1.0.0" + + def install + (share/"fonts").install "{font_file}" + end + + test do + # Test installation by checking that the font exists + system "fc-list | grep '{font_file.split('.')[0]}'" + end +end +""" + + # Create the formula directory if it doesn't exist + formula_dir = os.path.join(os.getcwd(), "Formula") + os.makedirs(formula_dir, exist_ok=True) + + # Write the formula to a file + formula_path = os.path.join(formula_dir, f"font-{font_name}.rb") + with open(formula_path, "w") as f: + f.write(formula_content) + + print(f"Formula created at {formula_path}") + return formula_path + +def add_submodule(font_name, gitea_url, gitea_username): + """Add the font repository as a submodule.""" + # Create the fonts directory if it doesn't exist + fonts_dir = os.path.join(os.getcwd(), "fonts") + os.makedirs(fonts_dir, exist_ok=True) + + # Add the submodule + submodule_path = os.path.join(fonts_dir, font_name) + repo_url = f"{gitea_url}/{gitea_username}/font-{font_name}.git" + + # Check if the submodule already exists + if os.path.exists(submodule_path): + print(f"Submodule {submodule_path} already exists. Removing it first.") + subprocess.run(["git", "submodule", "deinit", "-f", submodule_path], check=True) + subprocess.run(["git", "rm", "-f", submodule_path], check=True) + subprocess.run(["rm", "-rf", f".git/modules/{submodule_path}"], check=True) + + # Add the submodule + print(f"Adding submodule {submodule_path}...") + subprocess.run(["git", "submodule", "add", repo_url, submodule_path], check=True) + + return submodule_path + +def update_submodule_index(font_name, submodule_path): + """Update the submodule index file.""" + # Create the index file if it doesn't exist + index_path = os.path.join(os.getcwd(), "fonts", "index.json") + if not os.path.exists(index_path): + with open(index_path, "w") as f: + json.dump({"fonts": []}, f, indent=2) + + # Read the index file + with open(index_path, "r") as f: + index = json.load(f) + + # Add the font to the index + font_info = { + "name": font_name, + "path": submodule_path, + "formula": f"font-{font_name}" + } + + # Check if the font is already in the index + for i, font in enumerate(index.get("fonts", [])): + if font["name"] == font_name: + index["fonts"][i] = font_info + break + else: + # Add the font to the index + if "fonts" not in index: + index["fonts"] = [] + index["fonts"].append(font_info) + + # Write the updated index back to the file + with open(index_path, "w") as f: + json.dump(index, f, indent=2) + + print(f"Index updated at {index_path}") + +def main(): + # Get the Gitea URL from environment variable or prompt + gitea_url = os.getenv("GITEA_URL") + if not gitea_url: + gitea_url = input("Enter your Gitea URL (e.g., http://clancy.genet-godzilla.ts.net:3002): ") + + # Get the Gitea username from environment variable or prompt + gitea_username = os.getenv("GITEA_USERNAME") + if not gitea_username: + gitea_username = input("Enter your Gitea username: ") + + # Get the Gitea token from environment variable or prompt + gitea_token = os.getenv("GITEA_API_TOKEN") + if not gitea_token: + gitea_token = input("Enter your Gitea API token: ") + + # Get the font name + font_name = input("Enter the name of the font (e.g., FiraCode): ").lower() + + # Get the font files + font_folder = input("Enter the location of the font folder: ").strip("'\"") # Strip quotes from the input + print(f"Looking for font files in: {font_folder}") + + # Check if the folder exists + if not os.path.exists(font_folder): + print(f"Error: The folder '{font_folder}' does not exist.") + return + + # Find all the font files in the provided folder + font_files = [os.path.join(font_folder, f) for f in os.listdir(font_folder) if f.endswith(('ttf', 'otf'))] + + if not font_files: + print("No font files found in the provided folder.") + return + + print(f"Found {len(font_files)} font files:") + for font_file in font_files: + print(f" - {os.path.basename(font_file)}") + + # Create the font repository + font_repo_path, sha256_hash, zip_filename = create_font_repo(font_name, font_files, gitea_url, gitea_username, gitea_token) + + if not font_repo_path: + print("Failed to create font repository. Exiting.") + return + + # Create the formula + formula_path = create_formula(font_name, sha256_hash, gitea_url, gitea_username, zip_filename) + + # Add the submodule + submodule_path = add_submodule(font_name, gitea_url, gitea_username) + + # Update the submodule index + update_submodule_index(font_name, submodule_path) + + # Stage and commit the changes + subprocess.run(["git", "add", formula_path, "fonts/index.json", submodule_path], check=True) + subprocess.run(["git", "commit", "-m", f"Add {font_name} font as submodule"], check=True) + + print(f"Font {font_name} has been added successfully as a submodule.") + print("Remember to push your changes to Gitea manually.") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/font-buffalo/Buffalo.otf b/font-buffalo/Buffalo.otf new file mode 100644 index 0000000..025eace Binary files /dev/null and b/font-buffalo/Buffalo.otf differ diff --git a/font-buffalo/font-buffalo.zip b/font-buffalo/font-buffalo.zip new file mode 100644 index 0000000..af25da2 Binary files /dev/null and b/font-buffalo/font-buffalo.zip differ diff --git a/font_files/font-abbiescriptpro-rg/otf/abbiescriptpro-rg.otf b/font_files/font-abbiescriptpro-rg/otf/abbiescriptpro-rg.otf deleted file mode 100644 index 0462653..0000000 Binary files a/font_files/font-abbiescriptpro-rg/otf/abbiescriptpro-rg.otf and /dev/null differ diff --git a/font_files/font-abbiescriptpro-rg/other_files/eula.txt b/font_files/font-abbiescriptpro-rg/other_files/eula.txt deleted file mode 100644 index 869b498..0000000 --- a/font_files/font-abbiescriptpro-rg/other_files/eula.txt +++ /dev/null @@ -1,100 +0,0 @@ -------------------------------------------------- -Tom Chalky Font EULA (End User License Agreement) -------------------------------------------------- - -I understand that reading EULAs (End User License Agreements) can be a chore but I have tried my best to make my terms very clear and reasonable to keep both parties happy. Of course if there are any questions left unanswered you can contact me using the information in section E and I will try and clarify anything for you. -Also, if you have any suggestions regarding my EULA please again use the information in section E to get in touch. My main priority is to satisfy you to the best of my ability and to make my agreement as real world friendly as possible. - -By installing any font software created by or under the name of Tom Chalky, you are indicating that you agree that the font software remains the exclusive property of Tom Chalky and that you have the correct licensing in place to protect the use of the font software under the following terms and conditions. - -------------------- -A - Number of CPU's -------------------- - -A1 - You can install the font(s) on one (1) portable device such as a notebook or laptop computer and on one (1) device that remains at a single location such as a desktop computer. These devices can be connected to any number of physical outputs. The physical output can be an inkjet printer, laser printer, offset press, silk screener, vinyl cutter, die-maker etc. - -A2 - If you want to license my fonts for more than what is stated in A1 (one (1) user, one (1) stationary CPU and one (1) transportable CPU), you must upgrade your license to a multiple-user license. A multiple-user license includes the exact same terms as a standard license, but with a higher number of devices and users allowed. To find out how to attain a multiple-user license, refer to section F1. - ----------------------------------------------- -B - Standard Permissions and Special Licensing ----------------------------------------------- - -B1 - Use with any software: You can use my fonts with any software that supports them. This includes mainstream software such as Microsoft, Adobe, Macromedia or any other software retailer's programs, or software you or your company may have had custom-made. - -B3 - Prepress Allowance: You can send my fonts to your printing services, but after the job has been completed please ensure that they remove the fonts from their systems as they will probably end up using them on other jobs, which reduce the value of the fonts we created and you paid for. - -B4 - Embedding Permissions: You can embed my fonts in certain electronic documents. This includes PDF, Flash and Microsoft Office documents (such as Word or PowerPoint), or multimedia files, but if at all possible, please make sure that you do not embed the complete character set. Fonts embedded in electronic documents can usually be extracted and pirated, I obviously would rather that didnt happen. - -B5 - ePub Licensing: The embedding and use of my fonts in commercial electronic publications such as eBooks require a special kind of licensing. For more information regarding ePub Licensing divert your attention to section F2. - -B6 Web Font Licensing: You can use my fonts for simple web-related tasks, like making raster images or navigation elements to display on your web page. If you want to use my fonts as webfonts, whereby you include them in your site's CSS code so that they appear live in web site documents, you must obtain a web font license. To obtain a web font license, please refer to section F3. - -B7 Web App Licensing: If you want to make my fonts available as part of a dynamic interface for a server-based program (such as a Flash or PHP/Javascript program), or include them in a web browser-based program, you must obtain a special web application license. This license can be obtained by contacting us, see section F4 for more information regarding the web app license. - -B8 Printing our Fonts: You can use my fonts to print artwork on clothes, cars, mugs, fridge magnets or any other products that you, your company, or your clients are selling. - -B9 Non-Digital 3D Shapes/Products: You can use my fonts to make non-digital 3-dimensional shapes, rubber stamps or scrapbooking alphabets that you can sell. - -B10 Corporate Identity and Branding: You can use my fonts to produce artwork meant to be part of a corporate identity or branding. This includes letterheads, business cards, business forms, banners, film titling, tie-in products, etc. However Logos are excluded from the list. If you intend on using the font for a logo design, please get in touch via our email stated in section E. - -B11 Backups: You can keep one backup copy of any my font you have licensed, but the backup medium you use should be secure and only privately accessible. - -B12 Modification: You can modify my fonts, but only for uses outlined within the condition of this license and as long as the modifications are being done by yourself. Modification also means font format conversion. If you have a Mac and a PC, you can use conversion software to convert the font between platforms. Third parties to this license are not allowed to modify my fonts under any circumstance, unless formally authorized in writing by Tom Chalky. - -B13 Internal Usage: You can install my fonts to be served internally to users at your company, provided that you have purchased the appropriate license for the amount of users who will have access to the font/s. Please also review the Multi-User License section and the pricing structure in section F1. All users must be covered with the license. - -B14 Distribution: You cannot give away copies of my fonts in ways that do not comply with the rest of this agreement. For example: you cannot make any my fonts available for download on the internet, email them to your friends, upload them to public internet file transfer or storing channels. Please respect the value of what we do, so that we keep having an incentive to continue. - -B15 Reselling: You cannot resell my fonts through any medium unless you have written authorisation from Tom Chalky to be a distributor. This also means you cannot modify my fonts then sell the resulting modification. - -B16 Usage not mentioned? If you are wondering about a particular type of usage we didn't include in this agreement, just drop us a line and we will try our hardest to help. See section E for a way get in touch. - ----------------------- -C) Support and Updates ----------------------- - -C1 Quality Check: All of my fonts undergo thorough testing before they are available for licensing, but if I did something wrong and the font you licensed doesn't perform properly or up to your expectations, I will replace it with a satisfactory copy. Please make sure you include the order number or have the purchase receipt available when you ask for an exchange. - -C2 Free Lifetime Support: All my fonts come with free lifetime support. However I cannot offer support for fonts that have been modified in any way as I am not familiar with how they were modified and cannot be held responsible for the aftermarket editing process. - -C3 Updates: All of my fonts come with free lifetime version updates. This is made easier if you register an account with me when you purchase your font licenses as your purchase history is stored on your account and is re-downloadable at any time. All available downloads are updated at the source, and updates will be applied to the downloads available on your account. I promise to keep providing free version upgrades for as long as my fonts exists. - ------------------------ -D) Miscellaneous Notes: ------------------------ - -D1 - If you don't agree with some of my license terms, please discuss the issue with myself. I am always open to new ways of providing you with better service. I am a small independent design studio that thrives only by keeping my customers happy so that they come back for more. I believe that fonts with unreasonable restrictions do not ultimately contribute to anyone's satisfaction, so I try my best to keep my licensing adaptable to as many workflows as possible. - -D2 - My fonts are made to be used how fonts are normally used. I can guarantee and support their functionality as fonts, but not as anything else. I cannot take responsibility for incidental damages arising from my fonts being used in any application or in a certain way. Also I cannot take responsibility for a user's level of experience in using fonts within certain workflows. - ------------------------ -E Contact Information ------------------------ - -Email Tomchalkys@gmail.com - ------------------------------- -F Special Licensing Pricing: ------------------------------- - -F1 Multi-User License: To obtain a Multi-User License with any of my fonts, simply purchase the same quantity of fonts as you need users by altering the quantity section on my checkout page. -For example, If 10 users are going to be using our Bobby Jones Font ($30 with a single user license) you will need to buy Bobby Jones to the Quantity of 10 totalling to $300. - -F2 - ePub Licensing Table: - -Below is the ePub License pricing model, please note that multi-user licensing still applies to the number of users, regardless of the number of publications being licensed. To obtain this license, you must contact me directly. Refer to section E. - -# of ePubs Price x Base Price: -1 (x 10) -2-5 (x 20) -6-20 (x 35) -21-50 (x 50) -Unlimited (x 200) - -F3 Webfont Licensing: - -A Webfont license can be purchased directly through the store, simply navigate to your selected font and select Webfont in the drop down box, the price will be the same as the Desktop license but will not cover any Desktop usage. If you require both licenses, please purchase both by following the same method and select Desktop + Webfont. Available formats (EOT, WOFF, WOFF2). - -F4 Web App Licensing - -Licensing my fonts for web application integration is priced per application, with an option to license for unlimited applications. The price per application is 50x base price. The unlimited application option is 200x base price. Contact me directly to obtain this license. Refer to section E. diff --git a/font_files/font-abbiescriptpro-rg/other_files/hidden-freebies-+-thank-you.txt b/font_files/font-abbiescriptpro-rg/other_files/hidden-freebies-+-thank-you.txt deleted file mode 100644 index adfc6b4..0000000 --- a/font_files/font-abbiescriptpro-rg/other_files/hidden-freebies-+-thank-you.txt +++ /dev/null @@ -1,10 +0,0 @@ -If I could personally thank every person that downloaded one of my fonts I really would, but unfortunately that's just not possible. However, I do try my best to show my appreciation with newsletter exclusive free fonts and limited time coupons only for those that subscribe and follow me on this creative entrepreneurial journey. - -So, would you do me the honor of subscribing to my newsletter (http://eepurl.com/beQLFL), it's completely free and within a few days you'll receive some great free downloads that I think you will love! - -Have a great week! -Tom Chalky - ------------ -Any questions or fancy a chat, get in touch: tomchalkys@gmail.com ------------ \ No newline at end of file diff --git a/font_files/font-abbiescriptpro-rg/ttf/abbiescriptpro-rg.ttf b/font_files/font-abbiescriptpro-rg/ttf/abbiescriptpro-rg.ttf deleted file mode 100644 index 6d11520..0000000 Binary files a/font_files/font-abbiescriptpro-rg/ttf/abbiescriptpro-rg.ttf and /dev/null differ diff --git a/font_files/font-acrylic-hand/other_files/tomchalky_desktop_licensing.pdf b/font_files/font-acrylic-hand/other_files/tomchalky_desktop_licensing.pdf deleted file mode 100755 index 7cdb0a3..0000000 Binary files a/font_files/font-acrylic-hand/other_files/tomchalky_desktop_licensing.pdf and /dev/null differ diff --git a/font_files/font-acrylic-hand/ttf/acylicalhand-thick.ttf b/font_files/font-acrylic-hand/ttf/acylicalhand-thick.ttf deleted file mode 100755 index 35e09b6..0000000 Binary files a/font_files/font-acrylic-hand/ttf/acylicalhand-thick.ttf and /dev/null differ diff --git a/font_files/font-adelina/ttf/Adelina.ttf b/font_files/font-adelina/ttf/Adelina.ttf deleted file mode 100755 index e4d0e13..0000000 Binary files a/font_files/font-adelina/ttf/Adelina.ttf and /dev/null differ diff --git a/font_files/font-agpx/otf/agpx.otf b/font_files/font-agpx/otf/agpx.otf deleted file mode 100644 index 2282a02..0000000 Binary files a/font_files/font-agpx/otf/agpx.otf and /dev/null differ diff --git a/font_files/font-agpx/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-agpx/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-agpx/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-airosol/otf/airosol.otf b/font_files/font-airosol/otf/airosol.otf deleted file mode 100755 index 425e0ab..0000000 Binary files a/font_files/font-airosol/otf/airosol.otf and /dev/null differ diff --git a/font_files/font-airosol/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-airosol/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-airosol/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-alphalyrae/otf/alphalyrae-medium.otf b/font_files/font-alphalyrae/otf/alphalyrae-medium.otf deleted file mode 100644 index 4ade619..0000000 Binary files a/font_files/font-alphalyrae/otf/alphalyrae-medium.otf and /dev/null differ diff --git a/font_files/font-alternate-gothic/ttf/Alternate Gothic No2 D Regular.ttf b/font_files/font-alternate-gothic/ttf/Alternate Gothic No2 D Regular.ttf deleted file mode 100644 index 619b429..0000000 Binary files a/font_files/font-alternate-gothic/ttf/Alternate Gothic No2 D Regular.ttf and /dev/null differ diff --git a/font_files/font-americus/ttf/Americus Sans Aged.ttf b/font_files/font-americus/ttf/Americus Sans Aged.ttf deleted file mode 100755 index 82aae62..0000000 Binary files a/font_files/font-americus/ttf/Americus Sans Aged.ttf and /dev/null differ diff --git a/font_files/font-americus/ttf/Americus Sans.ttf b/font_files/font-americus/ttf/Americus Sans.ttf deleted file mode 100755 index b8a3118..0000000 Binary files a/font_files/font-americus/ttf/Americus Sans.ttf and /dev/null differ diff --git a/font_files/font-americus/ttf/Americus Script Aged.ttf b/font_files/font-americus/ttf/Americus Script Aged.ttf deleted file mode 100755 index 03d8ec2..0000000 Binary files a/font_files/font-americus/ttf/Americus Script Aged.ttf and /dev/null differ diff --git a/font_files/font-americus/ttf/Americus Script.ttf b/font_files/font-americus/ttf/Americus Script.ttf deleted file mode 100755 index 28955d1..0000000 Binary files a/font_files/font-americus/ttf/Americus Script.ttf and /dev/null differ diff --git a/font_files/font-angular/otf/angular.otf b/font_files/font-angular/otf/angular.otf deleted file mode 100644 index 9ad5307..0000000 Binary files a/font_files/font-angular/otf/angular.otf and /dev/null differ diff --git a/font_files/font-angular/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-angular/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-angular/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-aquabella/ttf/aquabella.ttf b/font_files/font-aquabella/ttf/aquabella.ttf deleted file mode 100755 index 111ee97..0000000 Binary files a/font_files/font-aquabella/ttf/aquabella.ttf and /dev/null differ diff --git a/font_files/font-aquabella/ttf/aquabella_alternates.ttf b/font_files/font-aquabella/ttf/aquabella_alternates.ttf deleted file mode 100755 index 2b36017..0000000 Binary files a/font_files/font-aquabella/ttf/aquabella_alternates.ttf and /dev/null differ diff --git a/font_files/font-aquabella/ttf/aquabella_sans.ttf b/font_files/font-aquabella/ttf/aquabella_sans.ttf deleted file mode 100755 index 870f401..0000000 Binary files a/font_files/font-aquabella/ttf/aquabella_sans.ttf and /dev/null differ diff --git a/font_files/font-arinoe/otf/arinoe.otf b/font_files/font-arinoe/otf/arinoe.otf deleted file mode 100644 index a1c6cd0..0000000 Binary files a/font_files/font-arinoe/otf/arinoe.otf and /dev/null differ diff --git a/font_files/font-arinoe/ttf/arinoe.ttf b/font_files/font-arinoe/ttf/arinoe.ttf deleted file mode 100644 index 1db7538..0000000 Binary files a/font_files/font-arinoe/ttf/arinoe.ttf and /dev/null differ diff --git a/font_files/font-averasanstc/otf/averasanstc.otf b/font_files/font-averasanstc/otf/averasanstc.otf deleted file mode 100644 index daa22e4..0000000 Binary files a/font_files/font-averasanstc/otf/averasanstc.otf and /dev/null differ diff --git a/font_files/font-averasanstc/otf/averasanstcbld.otf b/font_files/font-averasanstc/otf/averasanstcbld.otf deleted file mode 100644 index 0c431a3..0000000 Binary files a/font_files/font-averasanstc/otf/averasanstcbld.otf and /dev/null differ diff --git a/font_files/font-averasanstc/otf/averasanstcbrsh.otf b/font_files/font-averasanstc/otf/averasanstcbrsh.otf deleted file mode 100644 index 2de5fa7..0000000 Binary files a/font_files/font-averasanstc/otf/averasanstcbrsh.otf and /dev/null differ diff --git a/font_files/font-averasanstc/otf/averasanstclt.otf b/font_files/font-averasanstc/otf/averasanstclt.otf deleted file mode 100644 index 3bcc8b9..0000000 Binary files a/font_files/font-averasanstc/otf/averasanstclt.otf and /dev/null differ diff --git a/font_files/font-averasanstc/otf/averasanstcsktch.otf b/font_files/font-averasanstc/otf/averasanstcsktch.otf deleted file mode 100644 index 6b095ee..0000000 Binary files a/font_files/font-averasanstc/otf/averasanstcsktch.otf and /dev/null differ diff --git a/font_files/font-averasanstc/other_files/tomchalky_desktop_licensing.pdf b/font_files/font-averasanstc/other_files/tomchalky_desktop_licensing.pdf deleted file mode 100644 index 7cdb0a3..0000000 Binary files a/font_files/font-averasanstc/other_files/tomchalky_desktop_licensing.pdf and /dev/null differ diff --git a/font_files/font-baduy/otf/baduy.otf b/font_files/font-baduy/otf/baduy.otf deleted file mode 100644 index a53c131..0000000 Binary files a/font_files/font-baduy/otf/baduy.otf and /dev/null differ diff --git a/font_files/font-baduy/other_files/read-this.txt b/font_files/font-baduy/other_files/read-this.txt deleted file mode 100644 index 0fd590f..0000000 --- a/font_files/font-baduy/other_files/read-this.txt +++ /dev/null @@ -1,31 +0,0 @@ - DOCALLISME HAS FONT - INDONESIA - JAKARTA - - -Font name: BADUY .ttf -By Ryal Docallisme HAS (copyright) Donationware -Contact me for Commercial Use - -Donate to (paypal) : docallisme@gmail.com -Email contact : docallisme@gmail.com - - -Twitter : @ryalsidocall // Docallisme - -Website : www.docallisme.blogspot.co.id - -Instagram : DOCALLISME HAS // Amry Al Mursalaat - - -Terima kasih telah mendownload font saya. -selamat berkreasi menggunakan font ini, -hubungi email diatas, jika memiliki pertanyaan. -font-font ini gratis untuk pemakaian pribadi, -untuk pemakaian komersil, hubungi email : docallisme@gmail.com -(INDONESIAN) - - - - ----------------------------- - Terima kasih - Thanks You - ----------------------------- \ No newline at end of file diff --git a/font_files/font-baduy/ttf/baduy.ttf b/font_files/font-baduy/ttf/baduy.ttf deleted file mode 100644 index 7e6f81f..0000000 Binary files a/font_files/font-baduy/ttf/baduy.ttf and /dev/null differ diff --git a/font_files/font-baker-street/otf/BakerStreet-Black.otf b/font_files/font-baker-street/otf/BakerStreet-Black.otf deleted file mode 100644 index 5064a20..0000000 Binary files a/font_files/font-baker-street/otf/BakerStreet-Black.otf and /dev/null differ diff --git a/font_files/font-baker-street/otf/BakerStreet-Inline.otf b/font_files/font-baker-street/otf/BakerStreet-Inline.otf deleted file mode 100644 index 7787778..0000000 Binary files a/font_files/font-baker-street/otf/BakerStreet-Inline.otf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-Black.ttf b/font_files/font-barlow/ttf/Barlow-Black.ttf deleted file mode 100644 index 9675b8a..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-Black.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-BlackItalic.ttf b/font_files/font-barlow/ttf/Barlow-BlackItalic.ttf deleted file mode 100644 index 2314595..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-BlackItalic.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-Bold.ttf b/font_files/font-barlow/ttf/Barlow-Bold.ttf deleted file mode 100644 index 28f2d3a..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-Bold.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-BoldItalic.ttf b/font_files/font-barlow/ttf/Barlow-BoldItalic.ttf deleted file mode 100644 index 9dc16ad..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-BoldItalic.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-ExtraBold.ttf b/font_files/font-barlow/ttf/Barlow-ExtraBold.ttf deleted file mode 100644 index 2290111..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-ExtraBold.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-ExtraBoldItalic.ttf b/font_files/font-barlow/ttf/Barlow-ExtraBoldItalic.ttf deleted file mode 100644 index 9e30cef..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-ExtraBoldItalic.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-ExtraLight.ttf b/font_files/font-barlow/ttf/Barlow-ExtraLight.ttf deleted file mode 100644 index 34f0251..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-ExtraLight.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-ExtraLightItalic.ttf b/font_files/font-barlow/ttf/Barlow-ExtraLightItalic.ttf deleted file mode 100644 index 14f2370..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-ExtraLightItalic.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-Italic.ttf b/font_files/font-barlow/ttf/Barlow-Italic.ttf deleted file mode 100644 index dc46deb..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-Italic.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-Light.ttf b/font_files/font-barlow/ttf/Barlow-Light.ttf deleted file mode 100644 index f3c5b70..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-Light.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-LightItalic.ttf b/font_files/font-barlow/ttf/Barlow-LightItalic.ttf deleted file mode 100644 index bf78286..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-LightItalic.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-Medium.ttf b/font_files/font-barlow/ttf/Barlow-Medium.ttf deleted file mode 100644 index 11d4ab2..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-Medium.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-MediumItalic.ttf b/font_files/font-barlow/ttf/Barlow-MediumItalic.ttf deleted file mode 100644 index 62a4fb2..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-MediumItalic.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-Regular.ttf b/font_files/font-barlow/ttf/Barlow-Regular.ttf deleted file mode 100644 index d39c293..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-Regular.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-SemiBold.ttf b/font_files/font-barlow/ttf/Barlow-SemiBold.ttf deleted file mode 100644 index 58a6430..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-SemiBold.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-SemiBoldItalic.ttf b/font_files/font-barlow/ttf/Barlow-SemiBoldItalic.ttf deleted file mode 100644 index 8cbb7bf..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-SemiBoldItalic.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-Thin.ttf b/font_files/font-barlow/ttf/Barlow-Thin.ttf deleted file mode 100644 index a9d7cb9..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-Thin.ttf and /dev/null differ diff --git a/font_files/font-barlow/ttf/Barlow-ThinItalic.ttf b/font_files/font-barlow/ttf/Barlow-ThinItalic.ttf deleted file mode 100644 index 8678b99..0000000 Binary files a/font_files/font-barlow/ttf/Barlow-ThinItalic.ttf and /dev/null differ diff --git a/font_files/font-bee-honey/ttf/bee-honey-regular.ttf b/font_files/font-bee-honey/ttf/bee-honey-regular.ttf deleted file mode 100644 index 8788781..0000000 Binary files a/font_files/font-bee-honey/ttf/bee-honey-regular.ttf and /dev/null differ diff --git a/font_files/font-bee-honey/ttf/bee-honey-svg.ttf b/font_files/font-bee-honey/ttf/bee-honey-svg.ttf deleted file mode 100644 index bc6bc9a..0000000 Binary files a/font_files/font-bee-honey/ttf/bee-honey-svg.ttf and /dev/null differ diff --git a/font_files/font-benford/otf/benford-demo.otf b/font_files/font-benford/otf/benford-demo.otf deleted file mode 100755 index efc1b3a..0000000 Binary files a/font_files/font-benford/otf/benford-demo.otf and /dev/null differ diff --git a/font_files/font-benford/ttf/benford-demo.ttf b/font_files/font-benford/ttf/benford-demo.ttf deleted file mode 100755 index 636aaf3..0000000 Binary files a/font_files/font-benford/ttf/benford-demo.ttf and /dev/null differ diff --git a/font_files/font-bjola/ttf/Bjola.ttf b/font_files/font-bjola/ttf/Bjola.ttf deleted file mode 100755 index 25ce257..0000000 Binary files a/font_files/font-bjola/ttf/Bjola.ttf and /dev/null differ diff --git a/font_files/font-blair-itc/ttf/Blair ITC Medium Regular.ttf b/font_files/font-blair-itc/ttf/Blair ITC Medium Regular.ttf deleted file mode 100644 index 71fd86b..0000000 Binary files a/font_files/font-blair-itc/ttf/Blair ITC Medium Regular.ttf and /dev/null differ diff --git a/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft-outline.otf b/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft-outline.otf deleted file mode 100644 index 033843e..0000000 Binary files a/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft-outline.otf and /dev/null differ diff --git a/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft.otf b/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft.otf deleted file mode 100644 index 5e8205b..0000000 Binary files a/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft.otf and /dev/null differ diff --git a/font_files/font-bobby-jones-soft-free/other_files/tomchalky_desktop_licensing.pdf b/font_files/font-bobby-jones-soft-free/other_files/tomchalky_desktop_licensing.pdf deleted file mode 100644 index 7cdb0a3..0000000 Binary files a/font_files/font-bobby-jones-soft-free/other_files/tomchalky_desktop_licensing.pdf and /dev/null differ diff --git a/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft-outline.ttf b/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft-outline.ttf deleted file mode 100644 index 2bd8ba0..0000000 Binary files a/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft-outline.ttf and /dev/null differ diff --git a/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft.ttf b/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft.ttf deleted file mode 100644 index 6e27fa8..0000000 Binary files a/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft.ttf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus-bold.otf b/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus-bold.otf deleted file mode 100644 index 988d57f..0000000 Binary files a/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus-bold.otf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus.otf b/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus.otf deleted file mode 100644 index 2fb6e57..0000000 Binary files a/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus.otf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/otf/bouncy-castle-sans.otf b/font_files/font-bouncy_castle_free/otf/bouncy-castle-sans.otf deleted file mode 100644 index 252c282..0000000 Binary files a/font_files/font-bouncy_castle_free/otf/bouncy-castle-sans.otf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss01.otf b/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss01.otf deleted file mode 100644 index 62f602c..0000000 Binary files a/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss01.otf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss02.otf b/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss02.otf deleted file mode 100644 index b0e0c69..0000000 Binary files a/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss02.otf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss03.otf b/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss03.otf deleted file mode 100644 index 63e0785..0000000 Binary files a/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss03.otf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/otf/bouncy-castle.otf b/font_files/font-bouncy_castle_free/otf/bouncy-castle.otf deleted file mode 100644 index 7d37063..0000000 Binary files a/font_files/font-bouncy_castle_free/otf/bouncy-castle.otf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/other_files/licensing.txt b/font_files/font-bouncy_castle_free/other_files/licensing.txt deleted file mode 100644 index dc4942d..0000000 --- a/font_files/font-bouncy_castle_free/other_files/licensing.txt +++ /dev/null @@ -1,5 +0,0 @@ -Thank-you for downloading the Bouncy Castle font family! If you have any questions, please do not hesitate to email me tom@tomchalky.com - -This copy of Bouncy Castle is free for personal use - visit https://tomchalky.com/the-personal-license/ for more information regarding my personal licesne - -A Commercial License can be purchased here - https://tomchalky.com/bouncy-castle-font-family/ \ No newline at end of file diff --git a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus-bold.ttf b/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus-bold.ttf deleted file mode 100644 index 0f95ba8..0000000 Binary files a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus-bold.ttf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus.ttf b/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus.ttf deleted file mode 100644 index aef9615..0000000 Binary files a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus.ttf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-sans.ttf b/font_files/font-bouncy_castle_free/ttf/bouncy-castle-sans.ttf deleted file mode 100644 index 344b1c5..0000000 Binary files a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-sans.ttf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss01.ttf b/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss01.ttf deleted file mode 100644 index 3822e22..0000000 Binary files a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss01.ttf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss02.ttf b/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss02.ttf deleted file mode 100644 index 2427b2f..0000000 Binary files a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss02.ttf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss03.ttf b/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss03.ttf deleted file mode 100644 index dcfd239..0000000 Binary files a/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss03.ttf and /dev/null differ diff --git a/font_files/font-bouncy_castle_free/ttf/bouncy-castle.ttf b/font_files/font-bouncy_castle_free/ttf/bouncy-castle.ttf deleted file mode 100644 index 96a1ec0..0000000 Binary files a/font_files/font-bouncy_castle_free/ttf/bouncy-castle.ttf and /dev/null differ diff --git a/font_files/font-brightsight-02/otf/brightsight02.otf b/font_files/font-brightsight-02/otf/brightsight02.otf deleted file mode 100644 index 87d0549..0000000 Binary files a/font_files/font-brightsight-02/otf/brightsight02.otf and /dev/null differ diff --git a/font_files/font-brightsight-02/ttf/brightsight02.ttf b/font_files/font-brightsight-02/ttf/brightsight02.ttf deleted file mode 100644 index b784fd1..0000000 Binary files a/font_files/font-brightsight-02/ttf/brightsight02.ttf and /dev/null differ diff --git a/font_files/font-brixtonline/otf/brixtonln-lt.otf b/font_files/font-brixtonline/otf/brixtonln-lt.otf deleted file mode 100644 index 349c92c..0000000 Binary files a/font_files/font-brixtonline/otf/brixtonln-lt.otf and /dev/null differ diff --git a/font_files/font-brixtonline/otf/brixtonln-rg.otf b/font_files/font-brixtonline/otf/brixtonln-rg.otf deleted file mode 100644 index fbef44f..0000000 Binary files a/font_files/font-brixtonline/otf/brixtonln-rg.otf and /dev/null differ diff --git a/font_files/font-brixtonline/ttf/brixtonln-lt.ttf b/font_files/font-brixtonline/ttf/brixtonln-lt.ttf deleted file mode 100644 index 0e7fec5..0000000 Binary files a/font_files/font-brixtonline/ttf/brixtonln-lt.ttf and /dev/null differ diff --git a/font_files/font-brixtonline/ttf/brixtonln-rg.ttf b/font_files/font-brixtonline/ttf/brixtonln-rg.ttf deleted file mode 100644 index eab0b5d..0000000 Binary files a/font_files/font-brixtonline/ttf/brixtonln-rg.ttf and /dev/null differ diff --git a/font_files/font-broke/otf/broke-bold.otf b/font_files/font-broke/otf/broke-bold.otf deleted file mode 100644 index 5f9646a..0000000 Binary files a/font_files/font-broke/otf/broke-bold.otf and /dev/null differ diff --git a/font_files/font-broke/otf/broke-medium.otf b/font_files/font-broke/otf/broke-medium.otf deleted file mode 100644 index 45bc440..0000000 Binary files a/font_files/font-broke/otf/broke-medium.otf and /dev/null differ diff --git a/font_files/font-broke/otf/broke-regular.otf b/font_files/font-broke/otf/broke-regular.otf deleted file mode 100644 index 1bc846b..0000000 Binary files a/font_files/font-broke/otf/broke-regular.otf and /dev/null differ diff --git a/font_files/font-broke/otf/brokefat-black.otf b/font_files/font-broke/otf/brokefat-black.otf deleted file mode 100644 index d05d1b3..0000000 Binary files a/font_files/font-broke/otf/brokefat-black.otf and /dev/null differ diff --git a/font_files/font-broke/otf/brokefat-bold.otf b/font_files/font-broke/otf/brokefat-bold.otf deleted file mode 100644 index a9f722f..0000000 Binary files a/font_files/font-broke/otf/brokefat-bold.otf and /dev/null differ diff --git a/font_files/font-buffy/otf/buffy.otf b/font_files/font-buffy/otf/buffy.otf deleted file mode 100644 index 95e6d7f..0000000 Binary files a/font_files/font-buffy/otf/buffy.otf and /dev/null differ diff --git a/font_files/font-buffy/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-buffy/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-buffy/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-buffy/ttf/buffy.ttf b/font_files/font-buffy/ttf/buffy.ttf deleted file mode 100644 index b834024..0000000 Binary files a/font_files/font-buffy/ttf/buffy.ttf and /dev/null differ diff --git a/font_files/font-cabin/ttf/Cabin-Italic[wdth,wght].ttf b/font_files/font-cabin/ttf/Cabin-Italic[wdth,wght].ttf deleted file mode 100644 index 5b2a682..0000000 Binary files a/font_files/font-cabin/ttf/Cabin-Italic[wdth,wght].ttf and /dev/null differ diff --git a/font_files/font-cabin/ttf/Cabin[wdth,wght].ttf b/font_files/font-cabin/ttf/Cabin[wdth,wght].ttf deleted file mode 100644 index 27f71b3..0000000 Binary files a/font_files/font-cabin/ttf/Cabin[wdth,wght].ttf and /dev/null differ diff --git a/font_files/font-cat-outline/other_files/cats.pxd b/font_files/font-cat-outline/other_files/cats.pxd deleted file mode 100644 index 00f83fa..0000000 Binary files a/font_files/font-cat-outline/other_files/cats.pxd and /dev/null differ diff --git a/font_files/font-charleston/ttf/Charleston-Regular.ttf b/font_files/font-charleston/ttf/Charleston-Regular.ttf deleted file mode 100755 index 500159a..0000000 Binary files a/font_files/font-charleston/ttf/Charleston-Regular.ttf and /dev/null differ diff --git a/font_files/font-charleston/ttf/Charleston-Script.ttf b/font_files/font-charleston/ttf/Charleston-Script.ttf deleted file mode 100755 index 6b9cd4e..0000000 Binary files a/font_files/font-charleston/ttf/Charleston-Script.ttf and /dev/null differ diff --git a/font_files/font-cheeky-rabbit/otf/cheekyrabbit.otf b/font_files/font-cheeky-rabbit/otf/cheekyrabbit.otf deleted file mode 100644 index 1f0d819..0000000 Binary files a/font_files/font-cheeky-rabbit/otf/cheekyrabbit.otf and /dev/null differ diff --git a/font_files/font-cheeky-rabbit/ttf/cheeky-rabbit.ttf b/font_files/font-cheeky-rabbit/ttf/cheeky-rabbit.ttf deleted file mode 100644 index 8c49fc3..0000000 Binary files a/font_files/font-cheeky-rabbit/ttf/cheeky-rabbit.ttf and /dev/null differ diff --git a/font_files/font-chido/OTF/Chido.otf b/font_files/font-chido/OTF/Chido.otf deleted file mode 100644 index a9bfe26..0000000 Binary files a/font_files/font-chido/OTF/Chido.otf and /dev/null differ diff --git a/font_files/font-christmas-picture/otf/christmas-picture.otf b/font_files/font-christmas-picture/otf/christmas-picture.otf deleted file mode 100644 index ec0855a..0000000 Binary files a/font_files/font-christmas-picture/otf/christmas-picture.otf and /dev/null differ diff --git a/font_files/font-christmas-picture/other_files/christmas-picture.png b/font_files/font-christmas-picture/other_files/christmas-picture.png deleted file mode 100644 index acfb9cd..0000000 Binary files a/font_files/font-christmas-picture/other_files/christmas-picture.png and /dev/null differ diff --git a/font_files/font-christmas-picture/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-christmas-picture/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-christmas-picture/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-christmas-picture/ttf/christmas-picture.ttf b/font_files/font-christmas-picture/ttf/christmas-picture.ttf deleted file mode 100644 index 2ad75b0..0000000 Binary files a/font_files/font-christmas-picture/ttf/christmas-picture.ttf and /dev/null differ diff --git a/font_files/font-chrone/otf/chrone-demo.otf b/font_files/font-chrone/otf/chrone-demo.otf deleted file mode 100644 index 9eab78f..0000000 Binary files a/font_files/font-chrone/otf/chrone-demo.otf and /dev/null differ diff --git a/font_files/font-chrone/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-chrone/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-chrone/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-chrone/ttf/chrone-demo.ttf b/font_files/font-chrone/ttf/chrone-demo.ttf deleted file mode 100644 index 7188366..0000000 Binary files a/font_files/font-chrone/ttf/chrone-demo.ttf and /dev/null differ diff --git a/font_files/font-clancy-experience/otf/clancy-experience.otf b/font_files/font-clancy-experience/otf/clancy-experience.otf deleted file mode 100644 index aee7c35..0000000 Binary files a/font_files/font-clancy-experience/otf/clancy-experience.otf and /dev/null differ diff --git a/font_files/font-clique/otf/Clique.otf b/font_files/font-clique/otf/Clique.otf deleted file mode 100644 index e69da72..0000000 Binary files a/font_files/font-clique/otf/Clique.otf and /dev/null differ diff --git a/font_files/font-code/otf/code-bold.otf b/font_files/font-code/otf/code-bold.otf deleted file mode 100644 index 50dd77d..0000000 Binary files a/font_files/font-code/otf/code-bold.otf and /dev/null differ diff --git a/font_files/font-code/otf/code-light.otf b/font_files/font-code/otf/code-light.otf deleted file mode 100644 index 1ff9d87..0000000 Binary files a/font_files/font-code/otf/code-light.otf and /dev/null differ diff --git a/font_files/font-code/other_files/eula-free-font-license-ver.-2.0.pdf b/font_files/font-code/other_files/eula-free-font-license-ver.-2.0.pdf deleted file mode 100644 index 0211d9f..0000000 Binary files a/font_files/font-code/other_files/eula-free-font-license-ver.-2.0.pdf and /dev/null differ diff --git a/font_files/font-code/other_files/full-version-from-here.txt b/font_files/font-code/other_files/full-version-from-here.txt deleted file mode 100644 index 5765934..0000000 --- a/font_files/font-code/other_files/full-version-from-here.txt +++ /dev/null @@ -1,5 +0,0 @@ -You can try or buy full version from here: - -http://new.myfonts.com/fonts/font-fabric/code-pro/ - -Thank you! \ No newline at end of file diff --git a/font_files/font-code/other_files/intro-specimen.pdf b/font_files/font-code/other_files/intro-specimen.pdf deleted file mode 100644 index d41a5d4..0000000 Binary files a/font_files/font-code/other_files/intro-specimen.pdf and /dev/null differ diff --git a/font_files/font-coffina/otf/coffina.otf b/font_files/font-coffina/otf/coffina.otf deleted file mode 100644 index d90b1f0..0000000 Binary files a/font_files/font-coffina/otf/coffina.otf and /dev/null differ diff --git a/font_files/font-coffina/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-coffina/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-coffina/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-coffina/ttf/coffina.ttf b/font_files/font-coffina/ttf/coffina.ttf deleted file mode 100644 index b326db4..0000000 Binary files a/font_files/font-coffina/ttf/coffina.ttf and /dev/null differ diff --git a/font_files/font-copixel-font-1764372079-0/otf/Copixel-Demo-BF6873ccc4785f8.otf b/font_files/font-copixel-font-1764372079-0/otf/Copixel-Demo-BF6873ccc4785f8.otf deleted file mode 100644 index d8b7b20..0000000 Binary files a/font_files/font-copixel-font-1764372079-0/otf/Copixel-Demo-BF6873ccc4785f8.otf and /dev/null differ diff --git a/font_files/font-copixel-font-1764372079-0/other_files/Befonts-License.txt b/font_files/font-copixel-font-1764372079-0/other_files/Befonts-License.txt deleted file mode 100644 index 979ae73..0000000 --- a/font_files/font-copixel-font-1764372079-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/copixel-font.html diff --git a/font_files/font-creamy-dreams/otf/creamy-dreams.otf b/font_files/font-creamy-dreams/otf/creamy-dreams.otf deleted file mode 100644 index f47f128..0000000 Binary files a/font_files/font-creamy-dreams/otf/creamy-dreams.otf and /dev/null differ diff --git a/font_files/font-creamy-dreams/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-creamy-dreams/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-creamy-dreams/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-cucurucho/otf/cucurucho.otf b/font_files/font-cucurucho/otf/cucurucho.otf deleted file mode 100644 index 67d6cf1..0000000 Binary files a/font_files/font-cucurucho/otf/cucurucho.otf and /dev/null differ diff --git a/font_files/font-cucurucho/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-cucurucho/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-cucurucho/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-damn/otf/damn.otf b/font_files/font-damn/otf/damn.otf deleted file mode 100644 index 910da89..0000000 Binary files a/font_files/font-damn/otf/damn.otf and /dev/null differ diff --git a/font_files/font-damn/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-damn/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-damn/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-damn/ttf/damn.ttf b/font_files/font-damn/ttf/damn.ttf deleted file mode 100644 index 76b00f8..0000000 Binary files a/font_files/font-damn/ttf/damn.ttf and /dev/null differ diff --git a/font_files/font-dance-blues/otf/dance-blues.otf b/font_files/font-dance-blues/otf/dance-blues.otf deleted file mode 100644 index be9532f..0000000 Binary files a/font_files/font-dance-blues/otf/dance-blues.otf and /dev/null differ diff --git a/font_files/font-dance-blues/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-dance-blues/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-dance-blues/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-dance-blues/ttf/dance-blues.ttf b/font_files/font-dance-blues/ttf/dance-blues.ttf deleted file mode 100644 index 6d29b70..0000000 Binary files a/font_files/font-dance-blues/ttf/dance-blues.ttf and /dev/null differ diff --git a/font_files/font-depixel/otf/depixelbreit.otf b/font_files/font-depixel/otf/depixelbreit.otf deleted file mode 100644 index b1c7f4a..0000000 Binary files a/font_files/font-depixel/otf/depixelbreit.otf and /dev/null differ diff --git a/font_files/font-depixel/otf/depixelbreitfett.otf b/font_files/font-depixel/otf/depixelbreitfett.otf deleted file mode 100644 index 2872ff2..0000000 Binary files a/font_files/font-depixel/otf/depixelbreitfett.otf and /dev/null differ diff --git a/font_files/font-depixel/otf/depixelhalbfett.otf b/font_files/font-depixel/otf/depixelhalbfett.otf deleted file mode 100644 index 0ad9e48..0000000 Binary files a/font_files/font-depixel/otf/depixelhalbfett.otf and /dev/null differ diff --git a/font_files/font-depixel/otf/depixelillegible.otf b/font_files/font-depixel/otf/depixelillegible.otf deleted file mode 100644 index 112e642..0000000 Binary files a/font_files/font-depixel/otf/depixelillegible.otf and /dev/null differ diff --git a/font_files/font-depixel/otf/depixelklein.otf b/font_files/font-depixel/otf/depixelklein.otf deleted file mode 100644 index 5548a46..0000000 Binary files a/font_files/font-depixel/otf/depixelklein.otf and /dev/null differ diff --git a/font_files/font-depixel/otf/depixelschmal.otf b/font_files/font-depixel/otf/depixelschmal.otf deleted file mode 100644 index 8a94b16..0000000 Binary files a/font_files/font-depixel/otf/depixelschmal.otf and /dev/null differ diff --git a/font_files/font-depixel/other_files/Desktop EULA 1.6.txt b/font_files/font-depixel/other_files/Desktop EULA 1.6.txt deleted file mode 100644 index f876583..0000000 --- a/font_files/font-depixel/other_files/Desktop EULA 1.6.txt +++ /dev/null @@ -1,80 +0,0 @@ -The Fontspring Desktop Font End User License Agreement -Version 1.6.0 - March 13, 2014 - -By downloading and/or installing font software (“Font”) offered by Fontspring or its distributors, you (“Licensee”) agree to be bound by the following terms and conditions of this End User Licensing Agreement (“EULA”): - -1. Right Granted -Fontspring grants Licensee a perpetual, worldwide, non-exclusive and non-transferrable license to: -a. Use the Font to create graphics for display on any surface including computer screens, television screens, paper, t-shirts or any other surface where the image will be a fixed size. - -b. Licensee may embed or link the Font in accordance with the rules described in Section 4 “Embedding and Linking” of this EULA. - -2. Requirements and Restrictions -a. Products -Licensee may not use the Font to create alphabet or letterform products for resale where the product consists of individual letterforms, including rubber stamps, die-cut products, stencil products, or adhesive sticker alphabet products where the likeness of the Font can be reproduced and the end-user of said products can create their own typesetting. An extended license may be available for an additional fee. - -Licensee may create typographic products using the Font if the product consists of commonly recognized words or phrases. For example: a rubber stamp that has the words "Thank You" or a sticker that says "Great!" - -b. Dingbats and Illustrations -Licensee may NOT use illustrations or images in the Font OTHER THAN letterforms, numbers, punctuation marks, diacritics, etc., in a manner where the illustration or image becomes the primary aspect of a product for resale. For example, a dingbat image in the font can not be the sole design element on a coffee cup, t-shirt, greeting card, etc., intended for resale. An extended license may be available for an additional fee. - -c. Users -The Font may be simultaneously used by no more than the number of users specified in the Receipt. A "user" is a single person or single machine, at the discretion of the Licensee. All users must belong to the same company or household purchasing the font except for temporary use by third parties as described in Section 3 “Provision to Third Parties” of this EULA. - -3. Provision to Third Parties -Licensee may temporarily provide the Font to a graphic designer, printer, agent or independent contractor who is working on behalf of the Licensee, ONLY IF the developer, agent or independent contractor (1) agrees in writing to use the Font exclusively for Licensee’s work, according to the terms of this EULA, and (2) retains no copies of the Font upon completion of the work. - -Licensee may not otherwise distribute the Font to third parties or make the Font publicly accessible except by embedding or linking in accordance with this EULA. - -4. Embedding and Linking -a. Document Embedding (including PDF, Microsoft Word® & Microsoft Powerpoint®) - 1. Documents embedding the Font and sent to third parties, must be read-only by those recipients. - 2. Documents embedding the Font and created for in-house use or sent to third parties working on behalf of the Licensee as described in Section 3 “Provision to Third Parties” may be editable. - -b. Flash and Silverlight Embedding -Licensee may embed the Font into Flash or Silverlight with the following restrictions: - 1. The Font must be subset to include only the glyphs necessary for displaying the work. - 2. The text rendered in the Font must not be manipulatable by an end user. - 3. All care must be taken to prevent unauthorized users from accessing the Font. - -c. @font-face Cascading Style Sheet ("CSS") Linking -Licensee may not link the Font to web sites using the @font-face selector in CSS. An extended license may be available for an additional fee. - -5. Term -This EULA grants a perpetual license for the rights set forth in Paragraph 1 unless and until the EULA terminates under Paragraph 8. Fontspring will not charge additional fees post purchase, annually or otherwise. - -6. Other Usage -Licenses for @font-face embedding, computer applications and games, installable interactive books, software, mobile applications and games, Ebooks and Epubs, product creation websites, website template distribution, website templates, and other uses not allowed by this EULA may be available for an additional fee. Contact Fontspring at support@fontspring.com for more information. - -7. Modifications -Licensee may import and alter the bezier outlines of the Font in a drawing program. - -Licensee may not modify the Font or create derivative works based on the Font without prior written consent from Fontspring or the owning foundry EXCEPT THAT Licensee may generate files necessary for embedding or linking in accordance with this EULA. - -8. Copyright -The Font is protected by copyright law. The Foundry is the sole, exclusive owner of all intellectual property rights, including rights under copyright and trademark law. Licensee agrees not to use the Font in any manner that infringes the intellectual property rights of the Foundry or violates the terms of this EULA. Licensee will be held legally responsible, and indemnifies Fontspring, for any infringements on the foundry's rights caused by failure to abide by the terms of this EULA. - -9. Termination -This EULA is effective until terminated. If Licensee fails to comply with any term of this EULA, Fontspring may terminate the EULA with 30 days notice. This EULA will terminate automatically 30 days after the issuance of such notice. - -10. Disclaimer and Limited Warranty -Fontspring warrants the Product to be free from defects in materials and workmanship under normal use for a period of twenty one (21) days from the date of delivery as shown on Receipt. Fontspring's entire liability, and Licensee’s exclusive remedy, for a defective product shall be, at Fontspring's election, either (1) return of purchase price or (2) replacement of any such product that is returned to Fontspring with a copy of the Receipt. Fontspring shall have no responsibility to replace the product or refund the purchase price if failure results from accident, abuse or misapplication, or if any product is lost or damaged due to theft, fire, or negligence. Any replacement product will be warranted for twenty one (21) days. This warranty gives Licensee specific legal rights. Licensee may have other rights, which vary from state to state. - -EXCEPT AS EXPRESSLY PROVIDED ABOVE, THE PRODUCT, IS PROVIDED “AS IS”. FONTSPRING MAKES NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The entire risk as to the quality and performance of the Product rests upon Licensee. Neither Fontspring nor the Foundry warrants that the functions contained in the Product will meet Licensee’s requirements or that the operation of the software will be uninterrupted or error free. - -FONTSPRING SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, OR INCIDENTAL DAMAGES (INCLUDING DAMAGES FROM LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, AND THE LIKE) ARISING OUT OF THE USE OF OR INABILITY TO USE THE PRODUCT EVEN IF Fontspring OR THE FOUNDRY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -Because some states do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to Licensee. - -11. Governing Law -This EULA is governed by the laws of the United States of America and the State of Delaware. - -12. Entire Agreement -This EULA, in conjunction with the receipt (“Receipt”) that accompanies each Font licensed from Fontspring or its distributors, constitutes the entire agreement between Fontspring and Licensee. - -13. Modification -The Parties may modify or amend this EULA in writing. - -14. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. \ No newline at end of file diff --git a/font_files/font-depixel/other_files/How_to_use_webfonts.html b/font_files/font-depixel/other_files/How_to_use_webfonts.html deleted file mode 100644 index 1f4c2f8..0000000 --- a/font_files/font-depixel/other_files/How_to_use_webfonts.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - - - -How to Use Webfonts - - - - -
- -
-
-
-

Installing Webfonts

- -

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

- -

1. Upload your webfonts

-

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

- -

2. Include the webfont stylesheet

-

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

- - - -@font-face{ - font-family: 'MyWebFont'; - src: url('WebFont.eot'); - src: url('WebFont.eot?#iefix') format('embedded-opentype'), - url('WebFont.woff') format('woff'), - url('WebFont.ttf') format('truetype'), - url('WebFont.svg#webfont') format('svg'); -} - -

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

- <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> - -

3. Modify your own stylesheet

-

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

-p { font-family: 'MyWebFont', Arial, sans-serif; } - -

4. Test

-

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

-
- - -
- -
- -
- - - - diff --git a/font_files/font-depixel/other_files/Release Notes.txt b/font_files/font-depixel/other_files/Release Notes.txt deleted file mode 100644 index bd5ab99..0000000 --- a/font_files/font-depixel/other_files/Release Notes.txt +++ /dev/null @@ -1,10 +0,0 @@ -DePixel v1.0 -January 13 2017 - -files included: -DePixel Illegible v1.0 -DePixel Schmal v1.0 -DePixel Klein v1.0 -DePixel Breit v1.0 -DePixel Bold v1.0 -DePixel Breit Fett v1.0 \ No newline at end of file diff --git a/font_files/font-depixel/other_files/Webfont EULA 1.6.txt b/font_files/font-depixel/other_files/Webfont EULA 1.6.txt deleted file mode 100644 index 1f2b84d..0000000 --- a/font_files/font-depixel/other_files/Webfont EULA 1.6.txt +++ /dev/null @@ -1,57 +0,0 @@ -The Fontspring Webfont End User License Agreement -Version 1.6.0 - March 13, 2014 - -By downloading, installing and/or embedding font software (“Webfont”) offered by Fontspring or its distributors, you (“Licensee”) agree to be bound by the following terms and conditions of this End User Licensing Agreement (“EULA”): - -1. Right Granted -Fontspring grants Licensee a perpetual, worldwide, non-exclusive and non-transferrable license to link the Webfont to Websites using the @font-face selector in CSS files. - -2. Requirements and Restrictions -Licensee agrees to abide by the following requirements and restrictions: -a. Licensee must use the Webfont provided by Fontspring under this EULA. Licensee may not link to the full, CFF OpenType or TrueType font designed for desktop installation. -b. Licensee must include the entire commented header in the provided CSS file. -c. The total traffic of the Website(s), measured in pageviews per month, may be no greater than the number of pageviews specified in the Receipt. -d. Licensee may only install the Webfont on Websites that it owns or controls. -e. Licensee may embed Webfont in reports generated by the Website(s), provided that Licensee does not sell the reports for profit. - -3. Provision to Third Parties -Licensee may temporarily provide the Webfont to a website developer, agent or independent contractor, who is working on behalf of the Licensee, ONLY IF the developer, agent or independent contractor (1) agrees in writing to use the Font exclusively for Licensee’s work, according to the terms of this EULA, and (2) retains no copies of the Font upon completion of the work. - -Licensee may not otherwise distribute the Webfont to third parties or make the Webfont publicly accessible or available except by embedding or linking in accordance with this EULA. - -4. Term -This EULA grants a perpetual license for the rights set forth in Paragraph 1 unless and until the EULA terminates under Paragraph 8. Fontspring will not charge additional fees post purchase, annually or otherwise. - -5. Other Usage -Licenses for desktop use, computer applications and games, installable interactive books, software, mobile applications and games, Ebooks and Epubs, product creation websites, website template distribution, website templates, and other uses not allowed by this EULA may be available for an additional fee. Contact Fontspring at support@fontspring.com for more information. - -6. Modifications -Licensee may not modify the Webfont or create derivative works based upon the Webfont without prior written consent from Fontspring or the owning foundry EXCEPT THAT Licensee may generate files necessary for embedding or linking in accordance with this EULA. - -7. Copyright -The Webfont is protected by copyright law. The Foundry is the sole, exclusive owner of all intellectual property rights, including rights under copyright and trademark law. Licensee agrees not to use the Webfont in any manner that infringes the intellectual property rights of the Foundry or violates the terms of this EULA. Licensee will be held legally responsible, and indemnifies Fontspring, for any infringements on the foundry's rights caused by failure to abide by the terms of this EULA. - -8. Termination -This EULA is effective until terminated. If Licensee fails to comply with any term of this EULA, Fontspring may terminate the EULA with 30 days notice. This EULA will terminate automatically 30 days after the issuance of such notice. - -9. Disclaimer and Limited Warranty -Fontspring warrants the Product to be free from defects in materials and workmanship under normal use for a period of twenty one (21) days from the date of delivery as shown on Receipt. Fontspring's entire liability, and Licensee’s exclusive remedy, for a defective product shall be, at Fontspring's election, either (1) return of purchase price or (2) replacement of any such product that is returned to Fontspring with a copy of the Receipt. Fontspring shall have no responsibility to replace the product or refund the purchase price if failure results from accident, abuse or misapplication, or if any product is lost or damaged due to theft, fire, or negligence. Any replacement product will be warranted for twenty one (21) days. This warranty gives Licensee specific legal rights. Licensee may have other rights, which vary from state to state. - -EXCEPT AS EXPRESSLY PROVIDED ABOVE, THE PRODUCT, IS PROVIDED “AS IS”. FONTSPRING MAKES NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The entire risk as to the quality and performance of the Product rests upon Licensee. Neither Fontspring nor the Foundry warrants that the functions contained in the Product will meet Licensee’s requirements or that the operation of the software will be uninterrupted or error free. - -FONTSPRING SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, OR INCIDENTAL DAMAGES (INCLUDING DAMAGES FROM LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, AND THE LIKE) ARISING OUT OF THE USE OF OR INABILITY TO USE THE PRODUCT EVEN IF FONTSPRING OR THE FOUNDRY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -Because some states do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to Licensee. - -10. Governing Law -This EULA is governed by the laws of the United States of America and the State of Delaware. - -11. Entire Agreement -This EULA, in conjunction with the receipt (“Receipt”) that accompanies each Font licensed from Fontspring or its distributors, constitutes the entire agreement between Fontspring and Licensee. - -12. Modification -The Parties may modify or amend this EULA in writing. - -13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. diff --git a/font_files/font-depixel/other_files/depixel.pdf b/font_files/font-depixel/other_files/depixel.pdf deleted file mode 100644 index e72ab65..0000000 Binary files a/font_files/font-depixel/other_files/depixel.pdf and /dev/null differ diff --git a/font_files/font-depixel/other_files/depixelbreit-demo.html b/font_files/font-depixel/other_files/depixelbreit-demo.html deleted file mode 100644 index ec3ad39..0000000 --- a/font_files/font-depixel/other_files/depixelbreit-demo.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - - - - - - - -DePixel Breit Specimen - - - - - - -
- - - -
- - -
- -
-
-
AaBb
-
-
- -
-
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
-
-
-
- - - - - - - - - - - - - - - - -
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
- -
- -
- - - -
- - -
-
body
body
body
body
-
- bodyDePixel Breit -
-
- bodyArial -
-
- bodyVerdana -
-
- bodyGeorgia -
- - - -
- - -
- -
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
-
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
- -
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - -
-
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - - -
- -
- -
- -
-

Lorem Ipsum Dolor

-

Etiam porta sem malesuada magna mollis euismod

- - -
-
-
-
-

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

- - -

Pellentesque ornare sem

- -

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

- -

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

- -

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

- -

Cras mattis consectetur

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

- -

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

-
- - -
- -
- - - - - - -
-
-
- -

Language Support

-

The subset of DePixel Breit in this kit supports the following languages:
- - Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

-

Glyph Chart

-

The subset of DePixel Breit in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

-
- -
-
- - -
-
- - -
- -
- -
-
-
-

Installing Webfonts

- -

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

- -

1. Upload your webfonts

-

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

- -

2. Include the webfont stylesheet

-

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

- - - -@font-face{ - font-family: 'MyWebFont'; - src: url('WebFont.eot'); - src: url('WebFont.eot?#iefix') format('embedded-opentype'), - url('WebFont.woff') format('woff'), - url('WebFont.ttf') format('truetype'), - url('WebFont.svg#webfont') format('svg'); -} - - -

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

- <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> - -

3. Modify your own stylesheet

-

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

-p { font-family: 'MyWebFont', Arial, sans-serif; } - -

4. Test

-

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

-
- - -
- -
- -
- -
- - diff --git a/font_files/font-depixel/other_files/depixelbreitfett-demo.html b/font_files/font-depixel/other_files/depixelbreitfett-demo.html deleted file mode 100644 index 3e97950..0000000 --- a/font_files/font-depixel/other_files/depixelbreitfett-demo.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - - - - - - - -DePixel Breit Fett Specimen - - - - - - -
- - - -
- - -
- -
-
-
AaBb
-
-
- -
-
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
-
-
-
- - - - - - - - - - - - - - - - -
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
- -
- -
- - - -
- - -
-
body
body
body
body
-
- bodyDePixel Breit Fett -
-
- bodyArial -
-
- bodyVerdana -
-
- bodyGeorgia -
- - - -
- - -
- -
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
-
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
- -
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - -
-
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - - -
- -
- -
- -
-

Lorem Ipsum Dolor

-

Etiam porta sem malesuada magna mollis euismod

- - -
-
-
-
-

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

- - -

Pellentesque ornare sem

- -

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

- -

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

- -

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

- -

Cras mattis consectetur

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

- -

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

-
- - -
- -
- - - - - - -
-
-
- -

Language Support

-

The subset of DePixel Breit Fett in this kit supports the following languages:
- - Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, Dutch, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

-

Glyph Chart

-

The subset of DePixel Breit Fett in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

-
- -
-
- - -
-
- - -
- -
- -
-
-
-

Installing Webfonts

- -

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

- -

1. Upload your webfonts

-

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

- -

2. Include the webfont stylesheet

-

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

- - - -@font-face{ - font-family: 'MyWebFont'; - src: url('WebFont.eot'); - src: url('WebFont.eot?#iefix') format('embedded-opentype'), - url('WebFont.woff') format('woff'), - url('WebFont.ttf') format('truetype'), - url('WebFont.svg#webfont') format('svg'); -} - - -

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

- <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> - -

3. Modify your own stylesheet

-

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

-p { font-family: 'MyWebFont', Arial, sans-serif; } - -

4. Test

-

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

-
- - -
- -
- -
- -
- - diff --git a/font_files/font-depixel/other_files/depixelhalbfett-demo.html b/font_files/font-depixel/other_files/depixelhalbfett-demo.html deleted file mode 100644 index af10307..0000000 --- a/font_files/font-depixel/other_files/depixelhalbfett-demo.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - - - - - - - -DePixel Bold Specimen - - - - - - -
- - - -
- - -
- -
-
-
AaBb
-
-
- -
-
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
-
-
-
- - - - - - - - - - - - - - - - -
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
- -
- -
- - - -
- - -
-
body
body
body
body
-
- bodyDePixel Bold -
-
- bodyArial -
-
- bodyVerdana -
-
- bodyGeorgia -
- - - -
- - -
- -
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
-
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
- -
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - -
-
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - - -
- -
- -
- -
-

Lorem Ipsum Dolor

-

Etiam porta sem malesuada magna mollis euismod

- - -
-
-
-
-

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

- - -

Pellentesque ornare sem

- -

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

- -

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

- -

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

- -

Cras mattis consectetur

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

- -

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

-
- - -
- -
- - - - - - -
-
-
- -

Language Support

-

The subset of DePixel Bold in this kit supports the following languages:
- - Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, Dutch, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

-

Glyph Chart

-

The subset of DePixel Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

-
- -
-
- - -
-
- - -
- -
- -
-
-
-

Installing Webfonts

- -

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

- -

1. Upload your webfonts

-

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

- -

2. Include the webfont stylesheet

-

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

- - - -@font-face{ - font-family: 'MyWebFont'; - src: url('WebFont.eot'); - src: url('WebFont.eot?#iefix') format('embedded-opentype'), - url('WebFont.woff') format('woff'), - url('WebFont.ttf') format('truetype'), - url('WebFont.svg#webfont') format('svg'); -} - - -

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

- <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> - -

3. Modify your own stylesheet

-

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

-p { font-family: 'MyWebFont', Arial, sans-serif; } - -

4. Test

-

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

-
- - -
- -
- -
- -
- - diff --git a/font_files/font-depixel/other_files/depixelillegible-demo.html b/font_files/font-depixel/other_files/depixelillegible-demo.html deleted file mode 100644 index ee448f3..0000000 --- a/font_files/font-depixel/other_files/depixelillegible-demo.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - - - - - - - -DePixel Illegible Specimen - - - - - - -
- - - -
- - -
- -
-
-
AaBb
-
-
- -
-
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
-
-
-
- - - - - - - - - - - - - - - - -
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
- -
- -
- - - -
- - -
-
body
body
body
body
-
- bodyDePixel Illegible -
-
- bodyArial -
-
- bodyVerdana -
-
- bodyGeorgia -
- - - -
- - -
- -
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
-
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
- -
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - -
-
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - - -
- -
- -
- -
-

Lorem Ipsum Dolor

-

Etiam porta sem malesuada magna mollis euismod

- - -
-
-
-
-

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

- - -

Pellentesque ornare sem

- -

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

- -

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

- -

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

- -

Cras mattis consectetur

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

- -

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

-
- - -
- -
- - - - - - -
-
-
- -

Language Support

-

The subset of DePixel Illegible in this kit supports the following languages:
- - Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

-

Glyph Chart

-

The subset of DePixel Illegible in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

-
- -
-
- - -
-
- - -
- -
- -
-
-
-

Installing Webfonts

- -

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

- -

1. Upload your webfonts

-

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

- -

2. Include the webfont stylesheet

-

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

- - - -@font-face{ - font-family: 'MyWebFont'; - src: url('WebFont.eot'); - src: url('WebFont.eot?#iefix') format('embedded-opentype'), - url('WebFont.woff') format('woff'), - url('WebFont.ttf') format('truetype'), - url('WebFont.svg#webfont') format('svg'); -} - - -

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

- <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> - -

3. Modify your own stylesheet

-

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

-p { font-family: 'MyWebFont', Arial, sans-serif; } - -

4. Test

-

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

-
- - -
- -
- -
- -
- - diff --git a/font_files/font-depixel/other_files/depixelklein-demo.html b/font_files/font-depixel/other_files/depixelklein-demo.html deleted file mode 100644 index af8a8e2..0000000 --- a/font_files/font-depixel/other_files/depixelklein-demo.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - - - - - - - -DePixel Klein Specimen - - - - - - -
- - - -
- - -
- -
-
-
AaBb
-
-
- -
-
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
-
-
-
- - - - - - - - - - - - - - - - -
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
- -
- -
- - - -
- - -
-
body
body
body
body
-
- bodyDePixel Klein -
-
- bodyArial -
-
- bodyVerdana -
-
- bodyGeorgia -
- - - -
- - -
- -
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
-
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
- -
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - -
-
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - - -
- -
- -
- -
-

Lorem Ipsum Dolor

-

Etiam porta sem malesuada magna mollis euismod

- - -
-
-
-
-

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

- - -

Pellentesque ornare sem

- -

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

- -

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

- -

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

- -

Cras mattis consectetur

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

- -

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

-
- - -
- -
- - - - - - -
-
-
- -

Language Support

-

The subset of DePixel Klein in this kit supports the following languages:
- - Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

-

Glyph Chart

-

The subset of DePixel Klein in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

-
- -
-
- - -
-
- - -
- -
- -
-
-
-

Installing Webfonts

- -

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

- -

1. Upload your webfonts

-

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

- -

2. Include the webfont stylesheet

-

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

- - - -@font-face{ - font-family: 'MyWebFont'; - src: url('WebFont.eot'); - src: url('WebFont.eot?#iefix') format('embedded-opentype'), - url('WebFont.woff') format('woff'), - url('WebFont.ttf') format('truetype'), - url('WebFont.svg#webfont') format('svg'); -} - - -

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

- <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> - -

3. Modify your own stylesheet

-

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

-p { font-family: 'MyWebFont', Arial, sans-serif; } - -

4. Test

-

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

-
- - -
- -
- -
- -
- - diff --git a/font_files/font-depixel/other_files/depixelschmal-demo.html b/font_files/font-depixel/other_files/depixelschmal-demo.html deleted file mode 100644 index 9634033..0000000 --- a/font_files/font-depixel/other_files/depixelschmal-demo.html +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - - - - - - - -DePixel Schmal Specimen - - - - - - -
- - - -
- - -
- -
-
-
AaBb
-
-
- -
-
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
-
-
-
- - - - - - - - - - - - - - - - -
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
- -
- -
- - - -
- - -
-
body
body
body
body
-
- bodyDePixel Schmal -
-
- bodyArial -
-
- bodyVerdana -
-
- bodyGeorgia -
- - - -
- - -
- -
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
-
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
- -
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - -
-
-

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
-

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

- -
-
- -
- -
-
-

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
-

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
- -
- -
- -
-
-

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

-
-
- -
- - - - -
- -
- -
- -
-

Lorem Ipsum Dolor

-

Etiam porta sem malesuada magna mollis euismod

- - -
-
-
-
-

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

- - -

Pellentesque ornare sem

- -

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

- -

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

- -

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

- -

Cras mattis consectetur

- -

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

- -

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

-
- - -
- -
- - - - - - -
-
-
- -

Language Support

-

The subset of DePixel Schmal in this kit supports the following languages:
- - Albanian, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Basque, Bislama, Breton, Cebuano, Chamorro, Corsican, Danish, Demo, English, Faroese, Fijian, Finnish, French Creole (Saint Lucia), Frisian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hiligaynon, Hmong, Hopi, Ibanag, Icelandic, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Italian, Jèrriais, Latin Basic, Lojban, Lombard, Luxembourgian, Malagasy, Manx, Mohawk, Norfolk/Pitcairnese, Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Portuguese, Potawatomi, Rhaeto-Romance, Romansh (Rumantsch), Rotokas, Sami (Lule), Sardinian (Sardu), Scots (Gaelic), Seychellois Creole (Seselwa), Shona, Sicilian, Somali, Southern Ndebele, Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tetum (Tetun), Tok Pisin, ubasic, Uyghur (Latinized), Volapük, Walloon, Warlpiri, Xhosa, Yapese, Zulu

-

Glyph Chart

-

The subset of DePixel Schmal in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

-
- -
-
- - -
-
- - -
- -
- -
-
-
-

Installing Webfonts

- -

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

- -

1. Upload your webfonts

-

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

- -

2. Include the webfont stylesheet

-

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

- - - -@font-face{ - font-family: 'MyWebFont'; - src: url('WebFont.eot'); - src: url('WebFont.eot?#iefix') format('embedded-opentype'), - url('WebFont.woff') format('woff'), - url('WebFont.ttf') format('truetype'), - url('WebFont.svg#webfont') format('svg'); -} - - -

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

- <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> - -

3. Modify your own stylesheet

-

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

-p { font-family: 'MyWebFont', Arial, sans-serif; } - -

4. Test

-

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

-
- - -
- -
- -
- -
- - diff --git a/font_files/font-depixel/other_files/easytabs.js b/font_files/font-depixel/other_files/easytabs.js deleted file mode 100644 index 167f53b..0000000 --- a/font_files/font-depixel/other_files/easytabs.js +++ /dev/null @@ -1,7 +0,0 @@ -(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} -if(typeof param.defaultContent=="number") -{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} -$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} -function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") -{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} -$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); \ No newline at end of file diff --git a/font_files/font-depixel/other_files/grid_12-825-55-15.css b/font_files/font-depixel/other_files/grid_12-825-55-15.css deleted file mode 100644 index 3d6aef7..0000000 --- a/font_files/font-depixel/other_files/grid_12-825-55-15.css +++ /dev/null @@ -1,129 +0,0 @@ -/*Notes about grid: -Columns: 12 -Grid Width: 825px -Column Width: 55px -Gutter Width: 15px --------------------------------*/ - - - -.section {margin-bottom: 18px; -} -.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} -.section {*zoom: 1;} - -.section .firstcolumn, -.section .firstcol {margin-left: 0;} - - -/* Border on left hand side of a column. */ -.border { - padding-left: 7px; - margin-left: 7px; - border-left: 1px solid #eee; -} - -/* Border with more whitespace, spans one column. */ -.colborder { - padding-left: 42px; - margin-left: 42px; - border-left: 1px solid #eee; -} - - - -/* The Grid Classes */ -.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 -{margin-left: 15px;float: left;display: inline; overflow: hidden;} - - -.width1, .grid1, .span-1 {width: 55px;} -.width1_2cols,.grid1_2cols {width: 20px;} -.width1_3cols,.grid1_3cols {width: 8px;} -.width1_4cols,.grid1_4cols {width: 2px;} -.input_width1 {width: 49px;} - -.width2, .grid2, .span-2 {width: 125px;} -.width2_3cols,.grid2_3cols {width: 31px;} -.width2_4cols,.grid2_4cols {width: 20px;} -.input_width2 {width: 119px;} - -.width3, .grid3, .span-3 {width: 195px;} -.width3_2cols,.grid3_2cols {width: 90px;} -.width3_4cols,.grid3_4cols {width: 37px;} -.input_width3 {width: 189px;} - -.width4, .grid4, .span-4 {width: 265px;} -.width4_3cols,.grid4_3cols {width: 78px;} -.input_width4 {width: 259px;} - -.width5, .grid5, .span-5 {width: 335px;} -.width5_2cols,.grid5_2cols {width: 160px;} -.width5_3cols,.grid5_3cols {width: 101px;} -.width5_4cols,.grid5_4cols {width: 72px;} -.input_width5 {width: 329px;} - -.width6, .grid6, .span-6 {width: 405px;} -.width6_4cols,.grid6_4cols {width: 90px;} -.input_width6 {width: 399px;} - -.width7, .grid7, .span-7 {width: 475px;} -.width7_2cols,.grid7_2cols {width: 230px;} -.width7_3cols,.grid7_3cols {width: 148px;} -.width7_4cols,.grid7_4cols {width: 107px;} -.input_width7 {width: 469px;} - -.width8, .grid8, .span-8 {width: 545px;} -.width8_3cols,.grid8_3cols {width: 171px;} -.input_width8 {width: 539px;} - -.width9, .grid9, .span-9 {width: 615px;} -.width9_2cols,.grid9_2cols {width: 300px;} -.width9_4cols,.grid9_4cols {width: 142px;} -.input_width9 {width: 609px;} - -.width10, .grid10, .span-10 {width: 685px;} -.width10_3cols,.grid10_3cols {width: 218px;} -.width10_4cols,.grid10_4cols {width: 160px;} -.input_width10 {width: 679px;} - -.width11, .grid11, .span-11 {width: 755px;} -.width11_2cols,.grid11_2cols {width: 370px;} -.width11_3cols,.grid11_3cols {width: 241px;} -.width11_4cols,.grid11_4cols {width: 177px;} -.input_width11 {width: 749px;} - -.width12, .grid12, .span-12 {width: 825px;} -.input_width12 {width: 819px;} - -/* Subdivided grid spaces */ -.emptycols_left1, .prepend-1 {padding-left: 70px;} -.emptycols_right1, .append-1 {padding-right: 70px;} -.emptycols_left2, .prepend-2 {padding-left: 140px;} -.emptycols_right2, .append-2 {padding-right: 140px;} -.emptycols_left3, .prepend-3 {padding-left: 210px;} -.emptycols_right3, .append-3 {padding-right: 210px;} -.emptycols_left4, .prepend-4 {padding-left: 280px;} -.emptycols_right4, .append-4 {padding-right: 280px;} -.emptycols_left5, .prepend-5 {padding-left: 350px;} -.emptycols_right5, .append-5 {padding-right: 350px;} -.emptycols_left6, .prepend-6 {padding-left: 420px;} -.emptycols_right6, .append-6 {padding-right: 420px;} -.emptycols_left7, .prepend-7 {padding-left: 490px;} -.emptycols_right7, .append-7 {padding-right: 490px;} -.emptycols_left8, .prepend-8 {padding-left: 560px;} -.emptycols_right8, .append-8 {padding-right: 560px;} -.emptycols_left9, .prepend-9 {padding-left: 630px;} -.emptycols_right9, .append-9 {padding-right: 630px;} -.emptycols_left10, .prepend-10 {padding-left: 700px;} -.emptycols_right10, .append-10 {padding-right: 700px;} -.emptycols_left11, .prepend-11 {padding-left: 770px;} -.emptycols_right11, .append-11 {padding-right: 770px;} -.pull-1 {margin-left: -70px;} -.push-1 {margin-right: -70px;margin-left: 18px;float: right;} -.pull-2 {margin-left: -140px;} -.push-2 {margin-right: -140px;margin-left: 18px;float: right;} -.pull-3 {margin-left: -210px;} -.push-3 {margin-right: -210px;margin-left: 18px;float: right;} -.pull-4 {margin-left: -280px;} -.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/font_files/font-depixel/other_files/specimen_stylesheet.css b/font_files/font-depixel/other_files/specimen_stylesheet.css deleted file mode 100644 index aecc43c..0000000 --- a/font_files/font-depixel/other_files/specimen_stylesheet.css +++ /dev/null @@ -1,396 +0,0 @@ -@import url('grid_12-825-55-15.css'); - -/* - CSS Reset by Eric Meyer - Released under Public Domain - http://meyerweb.com/eric/tools/css/reset/ -*/ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, font, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, table, -caption, tbody, tfoot, thead, tr, th, td - {margin: 0;padding: 0;border: 0;outline: 0; - font-size: 100%;vertical-align: baseline; - background: transparent;} -body {line-height: 1;} -ol, ul {list-style: none;} -blockquote, q {quotes: none;} -blockquote:before, blockquote:after, -q:before, q:after {content: ''; content: none;} -:focus {outline: 0;} -ins {text-decoration: none;} -del {text-decoration: line-through;} -table {border-collapse: collapse;border-spacing: 0;} - - - - -body { - color: #000; - background-color: #dcdcdc; -} - -a { - text-decoration: none; - color: #1883ba; -} - -h1{ - font-size: 32px; - font-weight: normal; - font-style: normal; - margin-bottom: 18px; -} - -h2{ - font-size: 18px; -} - -#container { - width: 865px; - margin: 0px auto; -} - - -#header { - padding: 20px; - font-size: 36px; - background-color: #000; - color: #fff; -} - -#header span { - color: #666; -} -#main_content { - background-color: #fff; - padding: 60px 20px 20px; -} - - -#footer p { - margin: 0; - padding-top: 10px; - padding-bottom: 50px; - color: #333; - font: 10px Arial, sans-serif; -} - -.tabs { - width: 100%; - height: 31px; - background-color: #444; -} -.tabs li { - float: left; - margin: 0; - overflow: hidden; - background-color: #444; -} -.tabs li a { - display: block; - color: #fff; - text-decoration: none; - font: bold 11px/11px 'Arial'; - text-transform: uppercase; - padding: 10px 15px; - border-right: 1px solid #fff; -} - -.tabs li a:hover { - background-color: #00b3ff; - -} - -.tabs li.active a { - color: #000; - background-color: #fff; -} - - - -div.huge { - - font-size: 300px; - line-height: 1em; - padding: 0; - letter-spacing: -.02em; - overflow: hidden; -} -div.glyph_range { - font-size: 72px; - line-height: 1.1em; -} - -.size10{ font-size: 10px; } -.size11{ font-size: 11px; } -.size12{ font-size: 12px; } -.size13{ font-size: 13px; } -.size14{ font-size: 14px; } -.size16{ font-size: 16px; } -.size18{ font-size: 18px; } -.size20{ font-size: 20px; } -.size24{ font-size: 24px; } -.size30{ font-size: 30px; } -.size36{ font-size: 36px; } -.size48{ font-size: 48px; } -.size60{ font-size: 60px; } -.size72{ font-size: 72px; } -.size90{ font-size: 90px; } - - -.psample_row1 { height: 120px;} -.psample_row1 { height: 120px;} -.psample_row2 { height: 160px;} -.psample_row3 { height: 160px;} -.psample_row4 { height: 160px;} - -.psample { - overflow: hidden; - position: relative; -} -.psample p { - line-height: 1.3em; - display: block; - overflow: hidden; - margin: 0; -} - -.psample span { - margin-right: .5em; -} - -.white_blend { - width: 100%; - height: 61px; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); - position: absolute; - bottom: 0; -} -.black_blend { - width: 100%; - height: 61px; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); - position: absolute; - bottom: 0; -} -.fullreverse { - background: #000 !important; - color: #fff !important; - margin-left: -20px; - padding-left: 20px; - margin-right: -20px; - padding-right: 20px; - padding: 20px; - margin-bottom:0; -} - - -.sample_table td { - padding-top: 3px; - padding-bottom:5px; - padding-left: 5px; - vertical-align: middle; - line-height: 1.2em; -} - -.sample_table td:first-child { - background-color: #eee; - text-align: right; - padding-right: 5px; - padding-left: 0; - padding: 5px; - font: 11px/12px "Courier New", Courier, mono; -} - -code { - white-space: pre; - background-color: #eee; - display: block; - padding: 10px; - margin-bottom: 18px; - overflow: auto; -} - - -.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} - -.box { - padding: 18px; - margin-bottom: 18px; - background: #eee; -} - -.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} - -#bodycomparison { - position: relative; - overflow: hidden; - font-size: 72px; - height: 90px; - white-space: nowrap; -} - -#bodycomparison div{ - font-size: 72px; - line-height: 90px; - display: inline; - margin: 0 15px 0 0; - padding: 0; -} - -#bodycomparison div span{ - font: 10px Arial; - position: absolute; - left: 0; -} -#xheight { - float: none; - position: absolute; - color: #d9f3ff; - font-size: 72px; - line-height: 90px; -} - -.fontbody { - position: relative; -} -.arialbody{ - font-family: Arial; - position: relative; -} -.verdanabody{ - font-family: Verdana; - position: relative; -} -.georgiabody{ - font-family: Georgia; - position: relative; -} - -/* @group Layout page - */ - -#layout h1 { - font-size: 36px; - line-height: 42px; - font-weight: normal; - font-style: normal; -} - -#layout h2 { - font-size: 24px; - line-height: 23px; - font-weight: normal; - font-style: normal; -} - -#layout h3 { - font-size: 22px; - line-height: 1.4em; - margin-top: 1em; - font-weight: normal; - font-style: normal; -} - - -#layout p.byline { - font-size: 12px; - margin-top: 18px; - line-height: 12px; - margin-bottom: 0; -} -#layout p { - font-size: 14px; - line-height: 21px; - margin-bottom: .5em; -} - -#layout p.large{ - font-size: 18px; - line-height: 26px; -} - -#layout .sidebar p{ - font-size: 12px; - line-height: 1.4em; -} - -#layout p.caption { - font-size: 10px; - margin-top: -16px; - margin-bottom: 18px; -} - -/* @end */ - -/* @group Glyphs */ - -#glyph_chart div{ - background-color: #d9f3ff; - color: black; - float: left; - font-size: 36px; - height: 1.2em; - line-height: 1.2em; - margin-bottom: 1px; - margin-right: 1px; - text-align: center; - width: 1.2em; - position: relative; - padding: .6em .2em .2em; -} - -#glyph_chart div p { - position: absolute; - left: 0; - top: 0; - display: block; - text-align: center; - font: bold 9px Arial, sans-serif; - background-color: #3a768f; - width: 100%; - color: #fff; - padding: 2px 0; -} - - -#glyphs h1 { - font-family: Arial, sans-serif; -} -/* @end */ - -/* @group Installing */ - -#installing { - font: 13px Arial, sans-serif; -} - -#installing p, -#glyphs p{ - line-height: 1.2em; - margin-bottom: 18px; - font: 13px Arial, sans-serif; -} - - - -#installing h3{ - font-size: 15px; - margin-top: 18px; -} - -/* @end */ - -#rendering h1 { - font-family: Arial, sans-serif; -} -.render_table td { - font: 11px "Courier New", Courier, mono; - vertical-align: middle; -} - - diff --git a/font_files/font-depixel/other_files/stylesheet.css b/font_files/font-depixel/other_files/stylesheet.css deleted file mode 100644 index ffcc4ee..0000000 --- a/font_files/font-depixel/other_files/stylesheet.css +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Web Fonts from fontspring.com - * - * All OpenType features and all extended glyphs have been removed. - * Fully installable fonts can be purchased at http://www.fontspring.com - * - * The fonts included in this stylesheet are subject to the End User License you purchased - * from Fontspring. The fonts are protected under domestic and international trademark and - * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or - * distributing this font software. - * - * (c) 2010-2017 Fontspring - * - * - * - * - * The fonts included are copyrighted by the vendor listed below. - * - * Vendor: ingoFonts - * License URL: https://www.fontspring.com/licenses/ingofonts/webfont - * - * - */ - -@font-face { - font-family: 'depixelschmal'; - src: url('depixelschmal-webfont.eot'); - src: url('depixelschmal-webfont.eot?#iefix') format('embedded-opentype'), - url('depixelschmal-webfont.woff2') format('woff2'), - url('depixelschmal-webfont.woff') format('woff'), - url('depixelschmal-webfont.ttf') format('truetype'), - url('depixelschmal-webfont.svg#depixelschmal') format('svg'); - font-weight: normal; - font-style: normal; - -} - diff --git a/font_files/font-depixel/ttf/depixelbreit-webfont.ttf b/font_files/font-depixel/ttf/depixelbreit-webfont.ttf deleted file mode 100644 index 1a5f5f8..0000000 Binary files a/font_files/font-depixel/ttf/depixelbreit-webfont.ttf and /dev/null differ diff --git a/font_files/font-depixel/ttf/depixelbreitfett-webfont.ttf b/font_files/font-depixel/ttf/depixelbreitfett-webfont.ttf deleted file mode 100644 index a1d74c5..0000000 Binary files a/font_files/font-depixel/ttf/depixelbreitfett-webfont.ttf and /dev/null differ diff --git a/font_files/font-depixel/ttf/depixelhalbfett-webfont.ttf b/font_files/font-depixel/ttf/depixelhalbfett-webfont.ttf deleted file mode 100644 index fd94ffa..0000000 Binary files a/font_files/font-depixel/ttf/depixelhalbfett-webfont.ttf and /dev/null differ diff --git a/font_files/font-depixel/ttf/depixelillegible-webfont.ttf b/font_files/font-depixel/ttf/depixelillegible-webfont.ttf deleted file mode 100644 index 67741ea..0000000 Binary files a/font_files/font-depixel/ttf/depixelillegible-webfont.ttf and /dev/null differ diff --git a/font_files/font-depixel/ttf/depixelklein-webfont.ttf b/font_files/font-depixel/ttf/depixelklein-webfont.ttf deleted file mode 100644 index 6bb1979..0000000 Binary files a/font_files/font-depixel/ttf/depixelklein-webfont.ttf and /dev/null differ diff --git a/font_files/font-depixel/ttf/depixelschmal-webfont.ttf b/font_files/font-depixel/ttf/depixelschmal-webfont.ttf deleted file mode 100644 index ac9f7f1..0000000 Binary files a/font_files/font-depixel/ttf/depixelschmal-webfont.ttf and /dev/null differ diff --git a/font_files/font-depixel/web/depixelbreit-webfont.eot b/font_files/font-depixel/web/depixelbreit-webfont.eot deleted file mode 100644 index e7d5760..0000000 Binary files a/font_files/font-depixel/web/depixelbreit-webfont.eot and /dev/null differ diff --git a/font_files/font-depixel/web/depixelbreit-webfont.svg b/font_files/font-depixel/web/depixelbreit-webfont.svg deleted file mode 100644 index 0c51d0b..0000000 --- a/font_files/font-depixel/web/depixelbreit-webfont.svg +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/font_files/font-depixel/web/depixelbreit-webfont.woff b/font_files/font-depixel/web/depixelbreit-webfont.woff deleted file mode 100644 index a214193..0000000 Binary files a/font_files/font-depixel/web/depixelbreit-webfont.woff and /dev/null differ diff --git a/font_files/font-depixel/web/depixelbreit-webfont.woff2 b/font_files/font-depixel/web/depixelbreit-webfont.woff2 deleted file mode 100644 index fa4515f..0000000 Binary files a/font_files/font-depixel/web/depixelbreit-webfont.woff2 and /dev/null differ diff --git a/font_files/font-depixel/web/depixelbreitfett-webfont.eot b/font_files/font-depixel/web/depixelbreitfett-webfont.eot deleted file mode 100644 index 230a890..0000000 Binary files a/font_files/font-depixel/web/depixelbreitfett-webfont.eot and /dev/null differ diff --git a/font_files/font-depixel/web/depixelbreitfett-webfont.svg b/font_files/font-depixel/web/depixelbreitfett-webfont.svg deleted file mode 100644 index 640ed61..0000000 --- a/font_files/font-depixel/web/depixelbreitfett-webfont.svg +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/font_files/font-depixel/web/depixelbreitfett-webfont.woff b/font_files/font-depixel/web/depixelbreitfett-webfont.woff deleted file mode 100644 index 02f0df7..0000000 Binary files a/font_files/font-depixel/web/depixelbreitfett-webfont.woff and /dev/null differ diff --git a/font_files/font-depixel/web/depixelbreitfett-webfont.woff2 b/font_files/font-depixel/web/depixelbreitfett-webfont.woff2 deleted file mode 100644 index 5cf1227..0000000 Binary files a/font_files/font-depixel/web/depixelbreitfett-webfont.woff2 and /dev/null differ diff --git a/font_files/font-depixel/web/depixelhalbfett-webfont.eot b/font_files/font-depixel/web/depixelhalbfett-webfont.eot deleted file mode 100644 index 39202e1..0000000 Binary files a/font_files/font-depixel/web/depixelhalbfett-webfont.eot and /dev/null differ diff --git a/font_files/font-depixel/web/depixelhalbfett-webfont.svg b/font_files/font-depixel/web/depixelhalbfett-webfont.svg deleted file mode 100644 index d7dff76..0000000 --- a/font_files/font-depixel/web/depixelhalbfett-webfont.svg +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/font_files/font-depixel/web/depixelhalbfett-webfont.woff b/font_files/font-depixel/web/depixelhalbfett-webfont.woff deleted file mode 100644 index 0a879a0..0000000 Binary files a/font_files/font-depixel/web/depixelhalbfett-webfont.woff and /dev/null differ diff --git a/font_files/font-depixel/web/depixelhalbfett-webfont.woff2 b/font_files/font-depixel/web/depixelhalbfett-webfont.woff2 deleted file mode 100644 index 9a29619..0000000 Binary files a/font_files/font-depixel/web/depixelhalbfett-webfont.woff2 and /dev/null differ diff --git a/font_files/font-depixel/web/depixelillegible-webfont.eot b/font_files/font-depixel/web/depixelillegible-webfont.eot deleted file mode 100644 index 3359b86..0000000 Binary files a/font_files/font-depixel/web/depixelillegible-webfont.eot and /dev/null differ diff --git a/font_files/font-depixel/web/depixelillegible-webfont.svg b/font_files/font-depixel/web/depixelillegible-webfont.svg deleted file mode 100644 index e9f4368..0000000 --- a/font_files/font-depixel/web/depixelillegible-webfont.svg +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/font_files/font-depixel/web/depixelillegible-webfont.woff b/font_files/font-depixel/web/depixelillegible-webfont.woff deleted file mode 100644 index c2a4f7d..0000000 Binary files a/font_files/font-depixel/web/depixelillegible-webfont.woff and /dev/null differ diff --git a/font_files/font-depixel/web/depixelillegible-webfont.woff2 b/font_files/font-depixel/web/depixelillegible-webfont.woff2 deleted file mode 100644 index 1773d33..0000000 Binary files a/font_files/font-depixel/web/depixelillegible-webfont.woff2 and /dev/null differ diff --git a/font_files/font-depixel/web/depixelklein-webfont.eot b/font_files/font-depixel/web/depixelklein-webfont.eot deleted file mode 100644 index 04b362a..0000000 Binary files a/font_files/font-depixel/web/depixelklein-webfont.eot and /dev/null differ diff --git a/font_files/font-depixel/web/depixelklein-webfont.svg b/font_files/font-depixel/web/depixelklein-webfont.svg deleted file mode 100644 index 5f2d1cc..0000000 --- a/font_files/font-depixel/web/depixelklein-webfont.svg +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/font_files/font-depixel/web/depixelklein-webfont.woff b/font_files/font-depixel/web/depixelklein-webfont.woff deleted file mode 100644 index 2c5de75..0000000 Binary files a/font_files/font-depixel/web/depixelklein-webfont.woff and /dev/null differ diff --git a/font_files/font-depixel/web/depixelklein-webfont.woff2 b/font_files/font-depixel/web/depixelklein-webfont.woff2 deleted file mode 100644 index 5afa063..0000000 Binary files a/font_files/font-depixel/web/depixelklein-webfont.woff2 and /dev/null differ diff --git a/font_files/font-depixel/web/depixelschmal-webfont.eot b/font_files/font-depixel/web/depixelschmal-webfont.eot deleted file mode 100644 index 0403611..0000000 Binary files a/font_files/font-depixel/web/depixelschmal-webfont.eot and /dev/null differ diff --git a/font_files/font-depixel/web/depixelschmal-webfont.svg b/font_files/font-depixel/web/depixelschmal-webfont.svg deleted file mode 100644 index cddd2ab..0000000 --- a/font_files/font-depixel/web/depixelschmal-webfont.svg +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/font_files/font-depixel/web/depixelschmal-webfont.woff b/font_files/font-depixel/web/depixelschmal-webfont.woff deleted file mode 100644 index 83fabe1..0000000 Binary files a/font_files/font-depixel/web/depixelschmal-webfont.woff and /dev/null differ diff --git a/font_files/font-depixel/web/depixelschmal-webfont.woff2 b/font_files/font-depixel/web/depixelschmal-webfont.woff2 deleted file mode 100644 index 9f25baf..0000000 Binary files a/font_files/font-depixel/web/depixelschmal-webfont.woff2 and /dev/null differ diff --git a/font_files/font-depok-cubism/otf/depok-cubism.otf b/font_files/font-depok-cubism/otf/depok-cubism.otf deleted file mode 100644 index df246db..0000000 Binary files a/font_files/font-depok-cubism/otf/depok-cubism.otf and /dev/null differ diff --git a/font_files/font-depok-cubism/otf/kosmos.otf b/font_files/font-depok-cubism/otf/kosmos.otf deleted file mode 100644 index 2a9ffe6..0000000 Binary files a/font_files/font-depok-cubism/otf/kosmos.otf and /dev/null differ diff --git a/font_files/font-depok-cubism/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-depok-cubism/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-depok-cubism/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-depok-cubism/ttf/depok-cubism.ttf b/font_files/font-depok-cubism/ttf/depok-cubism.ttf deleted file mode 100644 index 5947c0d..0000000 Binary files a/font_files/font-depok-cubism/ttf/depok-cubism.ttf and /dev/null differ diff --git a/font_files/font-devils-cut/otf/devilscut-shadow-personaluseonly.otf b/font_files/font-devils-cut/otf/devilscut-shadow-personaluseonly.otf deleted file mode 100644 index 059bd5f..0000000 Binary files a/font_files/font-devils-cut/otf/devilscut-shadow-personaluseonly.otf and /dev/null differ diff --git a/font_files/font-devils-cut/other_files/personal-use-license.pdf b/font_files/font-devils-cut/other_files/personal-use-license.pdf deleted file mode 100644 index d7dbdbd..0000000 Binary files a/font_files/font-devils-cut/other_files/personal-use-license.pdf and /dev/null differ diff --git a/font_files/font-dirty-clouds/otf/dirty-clouds.otf b/font_files/font-dirty-clouds/otf/dirty-clouds.otf deleted file mode 100644 index 66e70bd..0000000 Binary files a/font_files/font-dirty-clouds/otf/dirty-clouds.otf and /dev/null differ diff --git a/font_files/font-dirty-clouds/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-dirty-clouds/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-dirty-clouds/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-district/otf/district-regular.otf b/font_files/font-district/otf/district-regular.otf deleted file mode 100644 index efd2379..0000000 Binary files a/font_files/font-district/otf/district-regular.otf and /dev/null differ diff --git a/font_files/font-district/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-district/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-district/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-district/ttf/district.ttf b/font_files/font-district/ttf/district.ttf deleted file mode 100644 index f4aef4d..0000000 Binary files a/font_files/font-district/ttf/district.ttf and /dev/null differ diff --git a/font_files/font-dk-frozen-memory/otf/dk-frozen-memory.otf b/font_files/font-dk-frozen-memory/otf/dk-frozen-memory.otf deleted file mode 100644 index eda2a2d..0000000 Binary files a/font_files/font-dk-frozen-memory/otf/dk-frozen-memory.otf and /dev/null differ diff --git a/font_files/font-domaine-display/otf/domaine-display-bold.otf b/font_files/font-domaine-display/otf/domaine-display-bold.otf deleted file mode 100755 index 6aaaad6..0000000 Binary files a/font_files/font-domaine-display/otf/domaine-display-bold.otf and /dev/null differ diff --git a/font_files/font-droid-sans-mono-awesome/ttf/Droid+Sans+Mono+Awesome.ttf b/font_files/font-droid-sans-mono-awesome/ttf/Droid+Sans+Mono+Awesome.ttf deleted file mode 100644 index 738d0a2..0000000 Binary files a/font_files/font-droid-sans-mono-awesome/ttf/Droid+Sans+Mono+Awesome.ttf and /dev/null differ diff --git a/font_files/font-dtmilagros/otf/dt-milagros.otf b/font_files/font-dtmilagros/otf/dt-milagros.otf deleted file mode 100644 index 2e2c3e7..0000000 Binary files a/font_files/font-dtmilagros/otf/dt-milagros.otf and /dev/null differ diff --git a/font_files/font-dtmilagros/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-dtmilagros/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-dtmilagros/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-ep-boxi/otf/ep-boxi-bi.otf b/font_files/font-ep-boxi/otf/ep-boxi-bi.otf deleted file mode 100644 index 79d5cb1..0000000 Binary files a/font_files/font-ep-boxi/otf/ep-boxi-bi.otf and /dev/null differ diff --git a/font_files/font-ep-boxi/otf/ep-boxi-black.otf b/font_files/font-ep-boxi/otf/ep-boxi-black.otf deleted file mode 100644 index 94c8008..0000000 Binary files a/font_files/font-ep-boxi/otf/ep-boxi-black.otf and /dev/null differ diff --git a/font_files/font-ep-boxi/otf/ep-boxi-bold.otf b/font_files/font-ep-boxi/otf/ep-boxi-bold.otf deleted file mode 100644 index 35b3eec..0000000 Binary files a/font_files/font-ep-boxi/otf/ep-boxi-bold.otf and /dev/null differ diff --git a/font_files/font-ep-boxi/otf/ep-boxi.otf b/font_files/font-ep-boxi/otf/ep-boxi.otf deleted file mode 100644 index df1fac7..0000000 Binary files a/font_files/font-ep-boxi/otf/ep-boxi.otf and /dev/null differ diff --git a/font_files/font-ep-boxi/other_files/demo.html b/font_files/font-ep-boxi/other_files/demo.html deleted file mode 100644 index 0edca1e..0000000 --- a/font_files/font-ep-boxi/other_files/demo.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - - - - Transfonter demo - - - - -
-
-

EP Boxi

-
.your-style {
-    font-family: 'EP Boxi';
-    font-weight: normal;
-    font-style: normal;
-}
-
-<link rel="preload" href="EPBoxiRegular.woff2" as="font" type="font/woff2" crossorigin>
-
-

- abcdefghijklmnopqrstuvwxyz
-ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 0123456789.:,;()*!?'@#<>$%&^+-=~ -

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-
-
- -
-

EP Boxi Black

-
.your-style {
-    font-family: 'EP Boxi';
-    font-weight: 900;
-    font-style: normal;
-}
-
-<link rel="preload" href="EPBoxiBlack.woff2" as="font" type="font/woff2" crossorigin>
-
-

- abcdefghijklmnopqrstuvwxyz
-ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 0123456789.:,;()*!?'@#<>$%&^+-=~ -

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-
-
- -
-

EP Boxi Bi

-
.your-style {
-    font-family: 'EP Boxi Bi';
-    font-weight: normal;
-    font-style: normal;
-}
-
-<link rel="preload" href="EPBoxiBi.woff2" as="font" type="font/woff2" crossorigin>
-
-

- abcdefghijklmnopqrstuvwxyz
-ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 0123456789.:,;()*!?'@#<>$%&^+-=~ -

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-
-
- -
-

EP Boxi Bold

-
.your-style {
-    font-family: 'EP Boxi';
-    font-weight: bold;
-    font-style: normal;
-}
-
-<link rel="preload" href="EPBoxiBold.woff2" as="font" type="font/woff2" crossorigin>
-
-

- abcdefghijklmnopqrstuvwxyz
-ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 0123456789.:,;()*!?'@#<>$%&^+-=~ -

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-

The quick brown fox jumps over the lazy dog.

-
-
- -
- - diff --git a/font_files/font-ep-boxi/other_files/stylesheet.css b/font_files/font-ep-boxi/other_files/stylesheet.css deleted file mode 100644 index 542014f..0000000 --- a/font_files/font-ep-boxi/other_files/stylesheet.css +++ /dev/null @@ -1,36 +0,0 @@ -@font-face { - font-family: 'EP Boxi'; - src: url('EPBoxiRegular.woff2') format('woff2'), - url('EPBoxiRegular.woff') format('woff'); - font-weight: normal; - font-style: normal; - font-display: swap; -} - -@font-face { - font-family: 'EP Boxi'; - src: url('EPBoxiBlack.woff2') format('woff2'), - url('EPBoxiBlack.woff') format('woff'); - font-weight: 900; - font-style: normal; - font-display: swap; -} - -@font-face { - font-family: 'EP Boxi Bi'; - src: url('EPBoxiBi.woff2') format('woff2'), - url('EPBoxiBi.woff') format('woff'); - font-weight: normal; - font-style: normal; - font-display: swap; -} - -@font-face { - font-family: 'EP Boxi'; - src: url('EPBoxiBold.woff2') format('woff2'), - url('EPBoxiBold.woff') format('woff'); - font-weight: bold; - font-style: normal; - font-display: swap; -} - diff --git a/font_files/font-ep-boxi/web/epboxibi.woff b/font_files/font-ep-boxi/web/epboxibi.woff deleted file mode 100644 index 09844a9..0000000 Binary files a/font_files/font-ep-boxi/web/epboxibi.woff and /dev/null differ diff --git a/font_files/font-ep-boxi/web/epboxibi.woff2 b/font_files/font-ep-boxi/web/epboxibi.woff2 deleted file mode 100644 index 2f74fe7..0000000 Binary files a/font_files/font-ep-boxi/web/epboxibi.woff2 and /dev/null differ diff --git a/font_files/font-ep-boxi/web/epboxiblack.woff b/font_files/font-ep-boxi/web/epboxiblack.woff deleted file mode 100644 index 383b107..0000000 Binary files a/font_files/font-ep-boxi/web/epboxiblack.woff and /dev/null differ diff --git a/font_files/font-ep-boxi/web/epboxiblack.woff2 b/font_files/font-ep-boxi/web/epboxiblack.woff2 deleted file mode 100644 index c4e9612..0000000 Binary files a/font_files/font-ep-boxi/web/epboxiblack.woff2 and /dev/null differ diff --git a/font_files/font-ep-boxi/web/epboxibold.woff b/font_files/font-ep-boxi/web/epboxibold.woff deleted file mode 100644 index 84a37e8..0000000 Binary files a/font_files/font-ep-boxi/web/epboxibold.woff and /dev/null differ diff --git a/font_files/font-ep-boxi/web/epboxibold.woff2 b/font_files/font-ep-boxi/web/epboxibold.woff2 deleted file mode 100644 index 7b5a117..0000000 Binary files a/font_files/font-ep-boxi/web/epboxibold.woff2 and /dev/null differ diff --git a/font_files/font-ep-boxi/web/epboxiregular.woff b/font_files/font-ep-boxi/web/epboxiregular.woff deleted file mode 100644 index 32d033c..0000000 Binary files a/font_files/font-ep-boxi/web/epboxiregular.woff and /dev/null differ diff --git a/font_files/font-ep-boxi/web/epboxiregular.woff2 b/font_files/font-ep-boxi/web/epboxiregular.woff2 deleted file mode 100644 index 55540db..0000000 Binary files a/font_files/font-ep-boxi/web/epboxiregular.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/ttf/f37stout-black.ttc b/font_files/font-f37-stout/ttf/f37stout-black.ttc deleted file mode 100644 index 8069c8f..0000000 Binary files a/font_files/font-f37-stout/ttf/f37stout-black.ttc and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-black.woff2 b/font_files/font-f37-stout/web/f37stout-black.woff2 deleted file mode 100644 index 2cd0022..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-black.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-blackcompressed.woff2 b/font_files/font-f37-stout/web/f37stout-blackcompressed.woff2 deleted file mode 100644 index 37c05ff..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-blackcompressed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-blackcondensed.woff2 b/font_files/font-f37-stout/web/f37stout-blackcondensed.woff2 deleted file mode 100644 index d843cf0..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-blackcondensed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-blackexpanded.woff2 b/font_files/font-f37-stout/web/f37stout-blackexpanded.woff2 deleted file mode 100644 index 8200e93..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-blackexpanded.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-blackultracompressed.woff2 b/font_files/font-f37-stout/web/f37stout-blackultracompressed.woff2 deleted file mode 100644 index c331b28..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-blackultracompressed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-bold.woff2 b/font_files/font-f37-stout/web/f37stout-bold.woff2 deleted file mode 100644 index 7e5a137..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-bold.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-boldcompressed.woff2 b/font_files/font-f37-stout/web/f37stout-boldcompressed.woff2 deleted file mode 100644 index 9e68b0c..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-boldcompressed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-boldcondensed.woff2 b/font_files/font-f37-stout/web/f37stout-boldcondensed.woff2 deleted file mode 100644 index 802c19a..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-boldcondensed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-boldexpanded.woff2 b/font_files/font-f37-stout/web/f37stout-boldexpanded.woff2 deleted file mode 100644 index 14fa96f..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-boldexpanded.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-boldultracompressed.woff2 b/font_files/font-f37-stout/web/f37stout-boldultracompressed.woff2 deleted file mode 100644 index eeab7a8..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-boldultracompressed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-regular.woff2 b/font_files/font-f37-stout/web/f37stout-regular.woff2 deleted file mode 100644 index a974b39..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-regular.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-regularcompressed.woff2 b/font_files/font-f37-stout/web/f37stout-regularcompressed.woff2 deleted file mode 100644 index 8786cf4..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-regularcompressed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-regularcondensed.woff2 b/font_files/font-f37-stout/web/f37stout-regularcondensed.woff2 deleted file mode 100644 index 23ec305..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-regularcondensed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-regularexpanded.woff2 b/font_files/font-f37-stout/web/f37stout-regularexpanded.woff2 deleted file mode 100644 index 01fd315..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-regularexpanded.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-regularultracompressed.woff2 b/font_files/font-f37-stout/web/f37stout-regularultracompressed.woff2 deleted file mode 100644 index 7732570..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-regularultracompressed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-thin.woff2 b/font_files/font-f37-stout/web/f37stout-thin.woff2 deleted file mode 100644 index 2ebe8b7..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-thin.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-thincompressed.woff2 b/font_files/font-f37-stout/web/f37stout-thincompressed.woff2 deleted file mode 100644 index 9934a3d..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-thincompressed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-thincondensed.woff2 b/font_files/font-f37-stout/web/f37stout-thincondensed.woff2 deleted file mode 100644 index 5e6410c..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-thincondensed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-thinexpanded.woff2 b/font_files/font-f37-stout/web/f37stout-thinexpanded.woff2 deleted file mode 100644 index 7c2e24d..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-thinexpanded.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-thinultracompressed.woff2 b/font_files/font-f37-stout/web/f37stout-thinultracompressed.woff2 deleted file mode 100644 index c47d41c..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-thinultracompressed.woff2 and /dev/null differ diff --git a/font_files/font-f37-stout/web/f37stout-vf.woff2 b/font_files/font-f37-stout/web/f37stout-vf.woff2 deleted file mode 100644 index 6ca72ce..0000000 Binary files a/font_files/font-f37-stout/web/f37stout-vf.woff2 and /dev/null differ diff --git a/font_files/font-flyover/otf/flyover.otf b/font_files/font-flyover/otf/flyover.otf deleted file mode 100644 index 17b8456..0000000 Binary files a/font_files/font-flyover/otf/flyover.otf and /dev/null differ diff --git a/font_files/font-flyover/other_files/flyover.jpg b/font_files/font-flyover/other_files/flyover.jpg deleted file mode 100644 index 89bbcc0..0000000 Binary files a/font_files/font-flyover/other_files/flyover.jpg and /dev/null differ diff --git a/font_files/font-flyover/other_files/more-info.txt b/font_files/font-flyover/other_files/more-info.txt deleted file mode 100644 index ab4d5a3..0000000 --- a/font_files/font-flyover/other_files/more-info.txt +++ /dev/null @@ -1,25 +0,0 @@ -First of All, - -Thank you for download my product. -This product 100% free for personal use & commercial use - -File include : - -1. Flyover.ttf -2. Flyover.otf - -More Info : -khurasantype@gmail.com - -For Donation: -paypal.me/jalembe - -My OnlineShop: -https://www.creativefabrica.com/ref/53/ - -My Portofolio: -https://www.behance.net/khurasan - -My web: -www.khurasanstudio.com -www.mbkaos.com \ No newline at end of file diff --git a/font_files/font-flyover/other_files/read-me.pdf b/font_files/font-flyover/other_files/read-me.pdf deleted file mode 100644 index ea409b5..0000000 Binary files a/font_files/font-flyover/other_files/read-me.pdf and /dev/null differ diff --git a/font_files/font-flyover/ttf/flyover.ttf b/font_files/font-flyover/ttf/flyover.ttf deleted file mode 100644 index 92a5fdd..0000000 Binary files a/font_files/font-flyover/ttf/flyover.ttf and /dev/null differ diff --git a/font_files/font-font-awesome/ttf/fa-solid-900.ttf b/font_files/font-font-awesome/ttf/fa-solid-900.ttf deleted file mode 100644 index cee3c5b..0000000 Binary files a/font_files/font-font-awesome/ttf/fa-solid-900.ttf and /dev/null differ diff --git a/font_files/font-fresh-christmas-font-1764370888-0/otf/Fresh-Christmas.otf b/font_files/font-fresh-christmas-font-1764370888-0/otf/Fresh-Christmas.otf deleted file mode 100644 index 8e50435..0000000 Binary files a/font_files/font-fresh-christmas-font-1764370888-0/otf/Fresh-Christmas.otf and /dev/null differ diff --git a/font_files/font-fresh-christmas-font-1764370888-0/other_files/Befonts-License.txt b/font_files/font-fresh-christmas-font-1764370888-0/other_files/Befonts-License.txt deleted file mode 100644 index 558864a..0000000 --- a/font_files/font-fresh-christmas-font-1764370888-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/fresh-christmas-font.html diff --git a/font_files/font-friem/otf/friem-regular.otf b/font_files/font-friem/otf/friem-regular.otf deleted file mode 100644 index a8bc3dd..0000000 Binary files a/font_files/font-friem/otf/friem-regular.otf and /dev/null differ diff --git a/font_files/font-friem/otf/friem-texture.otf b/font_files/font-friem/otf/friem-texture.otf deleted file mode 100644 index 441d533..0000000 Binary files a/font_files/font-friem/otf/friem-texture.otf and /dev/null differ diff --git a/font_files/font-friem/other_files/info.txt b/font_files/font-friem/other_files/info.txt deleted file mode 100644 index 3a3164c..0000000 --- a/font_files/font-friem/other_files/info.txt +++ /dev/null @@ -1,2 +0,0 @@ -Official website: -https://holisfonts.com/ \ No newline at end of file diff --git a/font_files/font-friem/ttf/friem-regular.ttf b/font_files/font-friem/ttf/friem-regular.ttf deleted file mode 100644 index 0891c1f..0000000 Binary files a/font_files/font-friem/ttf/friem-regular.ttf and /dev/null differ diff --git a/font_files/font-friem/ttf/friem-texture.ttf b/font_files/font-friem/ttf/friem-texture.ttf deleted file mode 100644 index e0a4b7c..0000000 Binary files a/font_files/font-friem/ttf/friem-texture.ttf and /dev/null differ diff --git a/font_files/font-friem/web/friem-regular.woff b/font_files/font-friem/web/friem-regular.woff deleted file mode 100644 index dc3b9d4..0000000 Binary files a/font_files/font-friem/web/friem-regular.woff and /dev/null differ diff --git a/font_files/font-friem/web/friem-regular.woff2 b/font_files/font-friem/web/friem-regular.woff2 deleted file mode 100644 index 15be444..0000000 Binary files a/font_files/font-friem/web/friem-regular.woff2 and /dev/null differ diff --git a/font_files/font-friem/web/friem-texture.woff b/font_files/font-friem/web/friem-texture.woff deleted file mode 100644 index 44e7ea4..0000000 Binary files a/font_files/font-friem/web/friem-texture.woff and /dev/null differ diff --git a/font_files/font-friem/web/friem-texture.woff2 b/font_files/font-friem/web/friem-texture.woff2 deleted file mode 100644 index ba372a2..0000000 Binary files a/font_files/font-friem/web/friem-texture.woff2 and /dev/null differ diff --git a/font_files/font-funky-round/otf/funkyround.otf b/font_files/font-funky-round/otf/funkyround.otf deleted file mode 100644 index c6d3132..0000000 Binary files a/font_files/font-funky-round/otf/funkyround.otf and /dev/null differ diff --git a/font_files/font-funky-round/otf/funkyround_striped.otf b/font_files/font-funky-round/otf/funkyround_striped.otf deleted file mode 100644 index 2e2f071..0000000 Binary files a/font_files/font-funky-round/otf/funkyround_striped.otf and /dev/null differ diff --git a/font_files/font-funky-round/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-funky-round/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-funky-round/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-futura-1986/otf/futura1986.otf b/font_files/font-futura-1986/otf/futura1986.otf deleted file mode 100644 index fb9f6a5..0000000 Binary files a/font_files/font-futura-1986/otf/futura1986.otf and /dev/null differ diff --git a/font_files/font-futura-1986/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-futura-1986/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-futura-1986/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/OPTIFuturaDemiBold.otf b/font_files/font-futura-ef/otf/OPTIFuturaDemiBold.otf deleted file mode 100644 index c01fd37..0000000 Binary files a/font_files/font-futura-ef/otf/OPTIFuturaDemiBold.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futura-index-efop-book.otf b/font_files/font-futura-ef/otf/futura-index-efop-book.otf deleted file mode 100644 index 891d79d..0000000 Binary files a/font_files/font-futura-ef/otf/futura-index-efop-book.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futurablackef.otf b/font_files/font-futura-ef/otf/futurablackef.otf deleted file mode 100755 index dc4b060..0000000 Binary files a/font_files/font-futura-ef/otf/futurablackef.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-bold.otf b/font_files/font-futura-ef/otf/futuraef-bold.otf deleted file mode 100755 index 99ff995..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-bold.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-boldobl.otf b/font_files/font-futura-ef/otf/futuraef-boldobl.otf deleted file mode 100755 index 2c54dbf..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-boldobl.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-book.otf b/font_files/font-futura-ef/otf/futuraef-book.otf deleted file mode 100755 index 552efb4..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-book.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-bookobl.otf b/font_files/font-futura-ef/otf/futuraef-bookobl.otf deleted file mode 100755 index 1b7a23c..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-bookobl.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-demibold.otf b/font_files/font-futura-ef/otf/futuraef-demibold.otf deleted file mode 100755 index eaa0105..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-demibold.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-demiboldobl.otf b/font_files/font-futura-ef/otf/futuraef-demiboldobl.otf deleted file mode 100755 index af27c64..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-demiboldobl.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-extrabold.otf b/font_files/font-futura-ef/otf/futuraef-extrabold.otf deleted file mode 100755 index 0fae3e5..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-extrabold.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-extraboldobl.otf b/font_files/font-futura-ef/otf/futuraef-extraboldobl.otf deleted file mode 100755 index a7d1024..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-extraboldobl.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-extraboldshadowed.otf b/font_files/font-futura-ef/otf/futuraef-extraboldshadowed.otf deleted file mode 100755 index 6dab7dd..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-extraboldshadowed.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-heavy.otf b/font_files/font-futura-ef/otf/futuraef-heavy.otf deleted file mode 100755 index 563bfcb..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-heavy.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-light.otf b/font_files/font-futura-ef/otf/futuraef-light.otf deleted file mode 100755 index 21ce5ca..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-light.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-lightobl.otf b/font_files/font-futura-ef/otf/futuraef-lightobl.otf deleted file mode 100755 index 89ac6a7..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-lightobl.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-medium.otf b/font_files/font-futura-ef/otf/futuraef-medium.otf deleted file mode 100755 index 18c931c..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-medium.otf and /dev/null differ diff --git a/font_files/font-futura-ef/otf/futuraef-mediumobl.otf b/font_files/font-futura-ef/otf/futuraef-mediumobl.otf deleted file mode 100755 index dd61bd7..0000000 Binary files a/font_files/font-futura-ef/otf/futuraef-mediumobl.otf and /dev/null differ diff --git a/font_files/font-futurama-characters/ttf/futurama characters.ttf b/font_files/font-futurama-characters/ttf/futurama characters.ttf deleted file mode 100644 index 52e72cd..0000000 Binary files a/font_files/font-futurama-characters/ttf/futurama characters.ttf and /dev/null differ diff --git a/font_files/font-galaxia/otf/galaxia-personal-used-flava.otf b/font_files/font-galaxia/otf/galaxia-personal-used-flava.otf deleted file mode 100644 index ed4a2c9..0000000 Binary files a/font_files/font-galaxia/otf/galaxia-personal-used-flava.otf and /dev/null differ diff --git a/font_files/font-galaxia/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-galaxia/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-galaxia/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-gilbert/otf/gilbert-bold-preview5.otf b/font_files/font-gilbert/otf/gilbert-bold-preview5.otf deleted file mode 100644 index 14cf0a6..0000000 Binary files a/font_files/font-gilbert/otf/gilbert-bold-preview5.otf and /dev/null differ diff --git a/font_files/font-gilbert/otf/gilbert-color-bold-preview5.otf b/font_files/font-gilbert/otf/gilbert-color-bold-preview5.otf deleted file mode 100644 index f21f9a1..0000000 Binary files a/font_files/font-gilbert/otf/gilbert-color-bold-preview5.otf and /dev/null differ diff --git a/font_files/font-gilbert/other_files/license.txt b/font_files/font-gilbert/other_files/license.txt deleted file mode 100644 index 3e9dfff..0000000 --- a/font_files/font-gilbert/other_files/license.txt +++ /dev/null @@ -1,436 +0,0 @@ -Copyright 2017 Ogilvy & Mather - -The Type With Pride artwork and the Gilbert fonts are released under -the Creative Commons Attribution-ShareAlike 4.0 International License. -Learn more about this license and usage rights at -http://creativecommons.org/licenses/by-sa/4.0/ - - -Attribution-ShareAlike 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More_considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution-ShareAlike 4.0 International Public -License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution-ShareAlike 4.0 International Public License ("Public -License"). To the extent this Public License may be interpreted as a -contract, You are granted the Licensed Rights in consideration of Your -acceptance of these terms and conditions, and the Licensor grants You -such rights in consideration of benefits the Licensor receives from -making the Licensed Material available under these terms and -conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Adapter's License means the license You apply to Your Copyright - and Similar Rights in Your contributions to Adapted Material in - accordance with the terms and conditions of this Public License. - - c. BY-SA Compatible License means a license listed at - creativecommons.org/compatiblelicenses, approved by Creative - Commons as essentially the equivalent of this Public License. - - d. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - e. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - f. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - g. License Elements means the license attributes listed in the name - of a Creative Commons Public License. The License Elements of this - Public License are Attribution and ShareAlike. - - h. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - i. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - j. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - k. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - l. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - m. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part; and - - b. produce, reproduce, and Share Adapted Material. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. Additional offer from the Licensor -- Adapted Material. - Every recipient of Adapted Material from You - automatically receives an offer from the Licensor to - exercise the Licensed Rights in the Adapted Material - under the conditions of the Adapter's License You apply. - - c. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material (including in modified - form), You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - b. ShareAlike. - - In addition to the conditions in Section 3(a), if You Share - Adapted Material You produce, the following conditions also apply. - - 1. The Adapter's License You apply must be a Creative Commons - license with the same License Elements, this version or - later, or a BY-SA Compatible License. - - 2. You must include the text of, or the URI or hyperlink to, the - Adapter's License You apply. You may satisfy this condition - in any reasonable manner based on the medium, means, and - context in which You Share Adapted Material. - - 3. You may not offer or impose any additional or different terms - or conditions on, or apply any Effective Technological - Measures to, Adapted Material that restrict exercise of the - rights granted under the Adapter's License You apply. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database; - - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material, - - including for purposes of Section 3(b); and - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - - -======================================================================= - -Creative Commons is not a party to its public -licenses. Notwithstanding, Creative Commons may elect to apply one of -its public licenses to material it publishes and in those instances -will be considered the “Licensor.” The text of the Creative Commons -public licenses is dedicated to the public domain under the CC0 Public -Domain Dedication. Except for the limited purpose of indicating that -material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the -public licenses. - -Creative Commons may be contacted at creativecommons.org. - diff --git a/font_files/font-gilbert/other_files/readme.txt b/font_files/font-gilbert/other_files/readme.txt deleted file mode 100644 index e315480..0000000 --- a/font_files/font-gilbert/other_files/readme.txt +++ /dev/null @@ -1,15 +0,0 @@ -The Gilbert font family is part of an ongoing project, Type With Pride: www.typewithpride.com - -- The Gilbert Color font relies on a new color font format, OpenType-SVG. -- It can be installed on both Mac & PC but its colors will only show up on recent systems (macOS Mojave 10.14 and over) and apps (InDesign CC 2019+, Illustrator 2018+, Photoshop 2017+). -- On older systems and apps, the multicolored letters will be displayed as a black font. Gilbert Color includes such a fallback solution, so while the font might look black on your operating system, the color font data is still around: just load Photoshop CC 2017 or a more recent version and you will see the colored letters. - -Learn more about color fonts and their compatibility: www.colorfonts.wtf - -License -Thanks to support from the Type With Pride authors, NewFest, NYC Pride and Fontself, all Type With Pride artwork and the Gilbert font are released under the Creative Commons Attribution-ShareAlike 4.0 International License. - -Learn more about this license and its usage rights: http://creativecommons.org/licenses/by-sa/4.0/ -Learn more about NewFest: www.newfest.org -Learn more about NYC Pride: www.nycpride.org -Learn more about Fontself: www.fontself.com diff --git a/font_files/font-gilbert/web/gilbertboldpreview5.woff b/font_files/font-gilbert/web/gilbertboldpreview5.woff deleted file mode 100644 index 8dd9273..0000000 Binary files a/font_files/font-gilbert/web/gilbertboldpreview5.woff and /dev/null differ diff --git a/font_files/font-gilbert/web/gilbertcolorboldpreview5.woff b/font_files/font-gilbert/web/gilbertcolorboldpreview5.woff deleted file mode 100644 index a233595..0000000 Binary files a/font_files/font-gilbert/web/gilbertcolorboldpreview5.woff and /dev/null differ diff --git a/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom.ttf b/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom.ttf deleted file mode 100755 index 9acd4ea..0000000 Binary files a/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom.ttf and /dev/null differ diff --git a/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Alternates.ttf b/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Alternates.ttf deleted file mode 100755 index 7c712a5..0000000 Binary files a/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Alternates.ttf and /dev/null differ diff --git a/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Extras.ttf b/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Extras.ttf deleted file mode 100755 index 2f019cd..0000000 Binary files a/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Extras.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFont-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFont-Regular.ttf deleted file mode 100644 index 4c51848..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFont-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontMono-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontMono-Regular.ttf deleted file mode 100644 index df88b09..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontMono-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontPropo-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontPropo-Regular.ttf deleted file mode 100644 index 98e5c5e..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontPropo-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFont-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFont-Regular.ttf deleted file mode 100644 index 8def9c6..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFont-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontMono-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontMono-Regular.ttf deleted file mode 100644 index f2f979b..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontMono-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontPropo-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontPropo-Regular.ttf deleted file mode 100644 index ae27084..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontPropo-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFont-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFont-Regular.ttf deleted file mode 100644 index d37382e..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFont-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontMono-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontMono-Regular.ttf deleted file mode 100644 index 977aa63..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontMono-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontPropo-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontPropo-Regular.ttf deleted file mode 100644 index 4666c8e..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontPropo-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFont-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFont-Regular.ttf deleted file mode 100644 index da37dca..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFont-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontMono-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontMono-Regular.ttf deleted file mode 100644 index 3b81da7..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontMono-Regular.ttf and /dev/null differ diff --git a/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontPropo-Regular.ttf b/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontPropo-Regular.ttf deleted file mode 100644 index 6c402c8..0000000 Binary files a/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontPropo-Regular.ttf and /dev/null differ diff --git a/font_files/font-graham_hand/otf/grahamhand.otf b/font_files/font-graham_hand/otf/grahamhand.otf deleted file mode 100644 index 174b095..0000000 Binary files a/font_files/font-graham_hand/otf/grahamhand.otf and /dev/null differ diff --git a/font_files/font-graham_hand/ttf/grahamhand.ttf b/font_files/font-graham_hand/ttf/grahamhand.ttf deleted file mode 100644 index ca1b264..0000000 Binary files a/font_files/font-graham_hand/ttf/grahamhand.ttf and /dev/null differ diff --git a/font_files/font-gugi/ttf/Gugi-Regular.ttf b/font_files/font-gugi/ttf/Gugi-Regular.ttf deleted file mode 100644 index e610d01..0000000 Binary files a/font_files/font-gugi/ttf/Gugi-Regular.ttf and /dev/null differ diff --git a/font_files/font-gyanko/otf/gyanko-regular.otf b/font_files/font-gyanko/otf/gyanko-regular.otf deleted file mode 100644 index 820fe6d..0000000 Binary files a/font_files/font-gyanko/otf/gyanko-regular.otf and /dev/null differ diff --git a/font_files/font-gyanko/otf/gyanko-stencil.otf b/font_files/font-gyanko/otf/gyanko-stencil.otf deleted file mode 100644 index 0a19b21..0000000 Binary files a/font_files/font-gyanko/otf/gyanko-stencil.otf and /dev/null differ diff --git a/font_files/font-gyanko/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-gyanko/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-gyanko/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFont-Bold.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFont-Bold.ttf deleted file mode 100644 index 2d2fae1..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFont-Bold.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFont-BoldItalic.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFont-BoldItalic.ttf deleted file mode 100644 index 7607ab9..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFont-BoldItalic.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFont-Italic.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFont-Italic.ttf deleted file mode 100644 index 851db3c..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFont-Italic.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFont-Regular.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFont-Regular.ttf deleted file mode 100644 index 8f4eb6f..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFont-Regular.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Bold.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Bold.ttf deleted file mode 100644 index d1795b6..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Bold.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-BoldItalic.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-BoldItalic.ttf deleted file mode 100644 index c737de9..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-BoldItalic.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Italic.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Italic.ttf deleted file mode 100644 index 83b81a9..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Italic.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Regular.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Regular.ttf deleted file mode 100644 index 2dc643c..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Regular.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Bold.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Bold.ttf deleted file mode 100644 index c75b0ec..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Bold.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-BoldItalic.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-BoldItalic.ttf deleted file mode 100644 index 24676d4..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-BoldItalic.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Italic.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Italic.ttf deleted file mode 100644 index 4ebf9e7..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Italic.ttf and /dev/null differ diff --git a/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Regular.ttf b/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Regular.ttf deleted file mode 100644 index dc47607..0000000 Binary files a/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Regular.ttf and /dev/null differ diff --git a/font_files/font-hectra/otf/hectra-bold.otf b/font_files/font-hectra/otf/hectra-bold.otf deleted file mode 100644 index 26a648b..0000000 Binary files a/font_files/font-hectra/otf/hectra-bold.otf and /dev/null differ diff --git a/font_files/font-hectra/otf/hectra-rg.otf b/font_files/font-hectra/otf/hectra-rg.otf deleted file mode 100644 index f911105..0000000 Binary files a/font_files/font-hectra/otf/hectra-rg.otf and /dev/null differ diff --git a/font_files/font-hello-headline/otf/hello-headline.otf b/font_files/font-hello-headline/otf/hello-headline.otf deleted file mode 100644 index d1e6b2a..0000000 Binary files a/font_files/font-hello-headline/otf/hello-headline.otf and /dev/null differ diff --git a/font_files/font-hello-spring/ttf/HelloSpring.ttf b/font_files/font-hello-spring/ttf/HelloSpring.ttf deleted file mode 100755 index 42d1e20..0000000 Binary files a/font_files/font-hello-spring/ttf/HelloSpring.ttf and /dev/null differ diff --git a/font_files/font-hello-spring/ttf/HelloSpringExtras.ttf b/font_files/font-hello-spring/ttf/HelloSpringExtras.ttf deleted file mode 100755 index 67fc242..0000000 Binary files a/font_files/font-hello-spring/ttf/HelloSpringExtras.ttf and /dev/null differ diff --git a/font_files/font-highflier/ttf/highflier_block.ttf b/font_files/font-highflier/ttf/highflier_block.ttf deleted file mode 100755 index 09cb0f6..0000000 Binary files a/font_files/font-highflier/ttf/highflier_block.ttf and /dev/null differ diff --git a/font_files/font-highflier/ttf/highflier_regular.ttf b/font_files/font-highflier/ttf/highflier_regular.ttf deleted file mode 100755 index fc42894..0000000 Binary files a/font_files/font-highflier/ttf/highflier_regular.ttf and /dev/null differ diff --git a/font_files/font-highflier/ttf/highflier_scribble.ttf b/font_files/font-highflier/ttf/highflier_scribble.ttf deleted file mode 100755 index e346496..0000000 Binary files a/font_files/font-highflier/ttf/highflier_scribble.ttf and /dev/null differ diff --git a/font_files/font-highflier/ttf/highflier_shadow.ttf b/font_files/font-highflier/ttf/highflier_shadow.ttf deleted file mode 100755 index 7a964f4..0000000 Binary files a/font_files/font-highflier/ttf/highflier_shadow.ttf and /dev/null differ diff --git a/font_files/font-highflier/ttf/highflier_slice.ttf b/font_files/font-highflier/ttf/highflier_slice.ttf deleted file mode 100755 index b4ad00a..0000000 Binary files a/font_files/font-highflier/ttf/highflier_slice.ttf and /dev/null differ diff --git a/font_files/font-horseland/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-horseland/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-horseland/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-horseland/ttf/wtf-horseland-was-habib.ttf b/font_files/font-horseland/ttf/wtf-horseland-was-habib.ttf deleted file mode 100644 index 6c77577..0000000 Binary files a/font_files/font-horseland/ttf/wtf-horseland-was-habib.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-bold.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-bold.otf deleted file mode 100644 index e93b3b8..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-bold.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-bolditalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-bolditalic.otf deleted file mode 100644 index 49fe14e..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-bolditalic.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-book.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-book.otf deleted file mode 100644 index 4a63489..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-book.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-bookitalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-bookitalic.otf deleted file mode 100644 index 68e7998..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-bookitalic.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-italic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-italic.otf deleted file mode 100644 index 1a36343..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-italic.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-light.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-light.otf deleted file mode 100644 index 94b87e4..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-light.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-lightitalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-lightitalic.otf deleted file mode 100644 index 6b45716..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-lightitalic.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-medium.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-medium.otf deleted file mode 100644 index 401a85a..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-medium.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-mediumitalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-mediumitalic.otf deleted file mode 100644 index 9081352..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-mediumitalic.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-regular.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-regular.otf deleted file mode 100644 index d9fc931..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-regular.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-semibold.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-semibold.otf deleted file mode 100644 index 8303330..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-semibold.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-semibolditalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-semibolditalic.otf deleted file mode 100644 index 2168ef5..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-semibolditalic.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-thin.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-thin.otf deleted file mode 100644 index 59d2b5c..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-thin.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/otf/idgrotesktrial-thinitalic.otf b/font_files/font-idgrotesk/otf/idgrotesktrial-thinitalic.otf deleted file mode 100644 index 4ea1e7b..0000000 Binary files a/font_files/font-idgrotesk/otf/idgrotesktrial-thinitalic.otf and /dev/null differ diff --git a/font_files/font-idgrotesk/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-idgrotesk/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-idgrotesk/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-bold.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-bold.ttf deleted file mode 100644 index b54f019..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-bold.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-bolditalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-bolditalic.ttf deleted file mode 100644 index 6fe18b5..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-bolditalic.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-book.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-book.ttf deleted file mode 100644 index 1df96f3..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-book.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-bookitalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-bookitalic.ttf deleted file mode 100644 index 0d6e31f..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-bookitalic.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-italic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-italic.ttf deleted file mode 100644 index 399d067..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-italic.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-light.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-light.ttf deleted file mode 100644 index f8e8153..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-light.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-lightitalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-lightitalic.ttf deleted file mode 100644 index a160b99..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-lightitalic.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-medium.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-medium.ttf deleted file mode 100644 index 04327f8..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-medium.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-mediumitalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-mediumitalic.ttf deleted file mode 100644 index b04bd8f..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-mediumitalic.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-regular.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-regular.ttf deleted file mode 100644 index 32e5e7f..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-regular.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-semibold.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-semibold.ttf deleted file mode 100644 index 1a207f5..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-semibold.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-semibolditalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-semibolditalic.ttf deleted file mode 100644 index 4848040..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-semibolditalic.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-thin.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-thin.ttf deleted file mode 100644 index 86fd4df..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-thin.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/ttf/idgrotesktrial-thinitalic.ttf b/font_files/font-idgrotesk/ttf/idgrotesktrial-thinitalic.ttf deleted file mode 100644 index b25725e..0000000 Binary files a/font_files/font-idgrotesk/ttf/idgrotesktrial-thinitalic.ttf and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-bold.woff b/font_files/font-idgrotesk/web/idgrotesktrial-bold.woff deleted file mode 100644 index c782d3a..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-bold.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-bold.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-bold.woff2 deleted file mode 100644 index d69c0a6..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-bold.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-bolditalic.woff b/font_files/font-idgrotesk/web/idgrotesktrial-bolditalic.woff deleted file mode 100644 index d21dbf2..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-bolditalic.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-bolditalic.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-bolditalic.woff2 deleted file mode 100644 index 1b9628a..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-bolditalic.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-book.woff b/font_files/font-idgrotesk/web/idgrotesktrial-book.woff deleted file mode 100644 index a78a6f9..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-book.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-book.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-book.woff2 deleted file mode 100644 index 5e5c021..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-book.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-bookitalic.woff b/font_files/font-idgrotesk/web/idgrotesktrial-bookitalic.woff deleted file mode 100644 index d89025f..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-bookitalic.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-bookitalic.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-bookitalic.woff2 deleted file mode 100644 index 114b992..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-bookitalic.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-italic.woff b/font_files/font-idgrotesk/web/idgrotesktrial-italic.woff deleted file mode 100644 index 763382a..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-italic.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-italic.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-italic.woff2 deleted file mode 100644 index f6bbc7a..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-italic.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-light.woff b/font_files/font-idgrotesk/web/idgrotesktrial-light.woff deleted file mode 100644 index 50171d4..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-light.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-light.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-light.woff2 deleted file mode 100644 index cc74b4c..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-light.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-lightitalic.woff b/font_files/font-idgrotesk/web/idgrotesktrial-lightitalic.woff deleted file mode 100644 index 57bb829..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-lightitalic.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-lightitalic.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-lightitalic.woff2 deleted file mode 100644 index 97f6063..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-lightitalic.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-medium.woff b/font_files/font-idgrotesk/web/idgrotesktrial-medium.woff deleted file mode 100644 index af28fec..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-medium.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-medium.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-medium.woff2 deleted file mode 100644 index 5cdbfa3..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-medium.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-mediumitalic.woff b/font_files/font-idgrotesk/web/idgrotesktrial-mediumitalic.woff deleted file mode 100644 index 683487b..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-mediumitalic.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-mediumitalic.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-mediumitalic.woff2 deleted file mode 100644 index b73dea5..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-mediumitalic.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-regular.woff b/font_files/font-idgrotesk/web/idgrotesktrial-regular.woff deleted file mode 100644 index 6eff435..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-regular.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-regular.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-regular.woff2 deleted file mode 100644 index 601310a..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-regular.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-semibold.woff b/font_files/font-idgrotesk/web/idgrotesktrial-semibold.woff deleted file mode 100644 index 977033b..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-semibold.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-semibold.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-semibold.woff2 deleted file mode 100644 index 0e341a5..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-semibold.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-semibolditalic.woff b/font_files/font-idgrotesk/web/idgrotesktrial-semibolditalic.woff deleted file mode 100644 index cbc8d71..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-semibolditalic.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-semibolditalic.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-semibolditalic.woff2 deleted file mode 100644 index 53ffe7d..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-semibolditalic.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-thin.woff b/font_files/font-idgrotesk/web/idgrotesktrial-thin.woff deleted file mode 100644 index 473b999..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-thin.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-thin.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-thin.woff2 deleted file mode 100644 index eac6ea4..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-thin.woff2 and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-thinitalic.woff b/font_files/font-idgrotesk/web/idgrotesktrial-thinitalic.woff deleted file mode 100644 index 34cb1b8..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-thinitalic.woff and /dev/null differ diff --git a/font_files/font-idgrotesk/web/idgrotesktrial-thinitalic.woff2 b/font_files/font-idgrotesk/web/idgrotesktrial-thinitalic.woff2 deleted file mode 100644 index 7c9e404..0000000 Binary files a/font_files/font-idgrotesk/web/idgrotesktrial-thinitalic.woff2 and /dev/null differ diff --git a/font_files/font-inconsolata-awesome/ttf/Inconsolata+Awesome.ttf b/font_files/font-inconsolata-awesome/ttf/Inconsolata+Awesome.ttf deleted file mode 100644 index 3292fce..0000000 Binary files a/font_files/font-inconsolata-awesome/ttf/Inconsolata+Awesome.ttf and /dev/null differ diff --git a/font_files/font-introvert-font-2-1764371655-0/otf/Introvert-BF691f1a5a2336d.otf b/font_files/font-introvert-font-2-1764371655-0/otf/Introvert-BF691f1a5a2336d.otf deleted file mode 100644 index ee8f455..0000000 Binary files a/font_files/font-introvert-font-2-1764371655-0/otf/Introvert-BF691f1a5a2336d.otf and /dev/null differ diff --git a/font_files/font-introvert-font-2-1764371655-0/other_files/Befonts-License.txt b/font_files/font-introvert-font-2-1764371655-0/other_files/Befonts-License.txt deleted file mode 100644 index e6580bf..0000000 --- a/font_files/font-introvert-font-2-1764371655-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/introvert-font-2.html diff --git a/font_files/font-introvert-font-2-1764371655-0/other_files/Read-Me-BF691f1a59c629e.txt b/font_files/font-introvert-font-2-1764371655-0/other_files/Read-Me-BF691f1a59c629e.txt deleted file mode 100644 index d656cd0..0000000 --- a/font_files/font-introvert-font-2-1764371655-0/other_files/Read-Me-BF691f1a59c629e.txt +++ /dev/null @@ -1,3 +0,0 @@ -ATTENTION!! THIS FONT CAN ONLY BE USED FOR PERSONAL PURPOSES. -NOT FOR COMMERCIAL. IF YOU NEED A COMMERCIAL LICENSE YOU CAN BUY OUR FONT AT -https://www.creativefabrica.com/designer/craftedtype-studio/ \ No newline at end of file diff --git a/font_files/font-jimmy-sans/otf/jimmysans-brush.otf b/font_files/font-jimmy-sans/otf/jimmysans-brush.otf deleted file mode 100644 index 1c37051..0000000 Binary files a/font_files/font-jimmy-sans/otf/jimmysans-brush.otf and /dev/null differ diff --git a/font_files/font-jimmy-sans/otf/jimmysans-rg.otf b/font_files/font-jimmy-sans/otf/jimmysans-rg.otf deleted file mode 100644 index d889b21..0000000 Binary files a/font_files/font-jimmy-sans/otf/jimmysans-rg.otf and /dev/null differ diff --git a/font_files/font-joc/otf/joc-fill.otf b/font_files/font-joc/otf/joc-fill.otf deleted file mode 100644 index 13a63b8..0000000 Binary files a/font_files/font-joc/otf/joc-fill.otf and /dev/null differ diff --git a/font_files/font-joc/otf/joc-line.otf b/font_files/font-joc/otf/joc-line.otf deleted file mode 100644 index 3e7d728..0000000 Binary files a/font_files/font-joc/otf/joc-line.otf and /dev/null differ diff --git a/font_files/font-joc/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-joc/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-joc/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-kitten/ttf/Kitten-Black.ttf b/font_files/font-kitten/ttf/Kitten-Black.ttf deleted file mode 100755 index 021f5d3..0000000 Binary files a/font_files/font-kitten/ttf/Kitten-Black.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/Kitten-Bold.ttf b/font_files/font-kitten/ttf/Kitten-Bold.ttf deleted file mode 100755 index 402c988..0000000 Binary files a/font_files/font-kitten/ttf/Kitten-Bold.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/Kitten-ExtraLight.ttf b/font_files/font-kitten/ttf/Kitten-ExtraLight.ttf deleted file mode 100755 index 97ac9ca..0000000 Binary files a/font_files/font-kitten/ttf/Kitten-ExtraLight.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/Kitten-Light.ttf b/font_files/font-kitten/ttf/Kitten-Light.ttf deleted file mode 100755 index 06d3dce..0000000 Binary files a/font_files/font-kitten/ttf/Kitten-Light.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/Kitten-Monoline.ttf b/font_files/font-kitten/ttf/Kitten-Monoline.ttf deleted file mode 100755 index 816bfd3..0000000 Binary files a/font_files/font-kitten/ttf/Kitten-Monoline.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/Kitten-Regular.ttf b/font_files/font-kitten/ttf/Kitten-Regular.ttf deleted file mode 100755 index 0450196..0000000 Binary files a/font_files/font-kitten/ttf/Kitten-Regular.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/KittenSlant-Bold.ttf b/font_files/font-kitten/ttf/KittenSlant-Bold.ttf deleted file mode 100755 index c34baa5..0000000 Binary files a/font_files/font-kitten/ttf/KittenSlant-Bold.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/KittenSlant-Monoline.ttf b/font_files/font-kitten/ttf/KittenSlant-Monoline.ttf deleted file mode 100755 index adbc7bf..0000000 Binary files a/font_files/font-kitten/ttf/KittenSlant-Monoline.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/KittenSlant-Regular.ttf b/font_files/font-kitten/ttf/KittenSlant-Regular.ttf deleted file mode 100755 index 00c0fe5..0000000 Binary files a/font_files/font-kitten/ttf/KittenSlant-Regular.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/KittenSwash-Black.ttf b/font_files/font-kitten/ttf/KittenSwash-Black.ttf deleted file mode 100755 index 859ccae..0000000 Binary files a/font_files/font-kitten/ttf/KittenSwash-Black.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/KittenSwash-Bold.ttf b/font_files/font-kitten/ttf/KittenSwash-Bold.ttf deleted file mode 100755 index da562f8..0000000 Binary files a/font_files/font-kitten/ttf/KittenSwash-Bold.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/KittenSwash-Light.ttf b/font_files/font-kitten/ttf/KittenSwash-Light.ttf deleted file mode 100755 index f48c4ad..0000000 Binary files a/font_files/font-kitten/ttf/KittenSwash-Light.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/KittenSwash-Thin.ttf b/font_files/font-kitten/ttf/KittenSwash-Thin.ttf deleted file mode 100755 index 5883800..0000000 Binary files a/font_files/font-kitten/ttf/KittenSwash-Thin.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/KittenSwash.ttf b/font_files/font-kitten/ttf/KittenSwash.ttf deleted file mode 100755 index 9f9033b..0000000 Binary files a/font_files/font-kitten/ttf/KittenSwash.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/KittenSwashMonoline.ttf b/font_files/font-kitten/ttf/KittenSwashMonoline.ttf deleted file mode 100755 index 0955158..0000000 Binary files a/font_files/font-kitten/ttf/KittenSwashMonoline.ttf and /dev/null differ diff --git a/font_files/font-kitten/ttf/kittendingcats.ttf b/font_files/font-kitten/ttf/kittendingcats.ttf deleted file mode 100755 index 4324a63..0000000 Binary files a/font_files/font-kitten/ttf/kittendingcats.ttf and /dev/null differ diff --git a/font_files/font-kompeni/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-kompeni/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-kompeni/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-kompeni/ttf/kompeni-regular.ttf b/font_files/font-kompeni/ttf/kompeni-regular.ttf deleted file mode 100644 index e4b92ec..0000000 Binary files a/font_files/font-kompeni/ttf/kompeni-regular.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-Bold.ttf b/font_files/font-krub/ttf/Krub-Bold.ttf deleted file mode 100644 index 9f8b2ff..0000000 Binary files a/font_files/font-krub/ttf/Krub-Bold.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-BoldItalic.ttf b/font_files/font-krub/ttf/Krub-BoldItalic.ttf deleted file mode 100644 index efe2187..0000000 Binary files a/font_files/font-krub/ttf/Krub-BoldItalic.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-ExtraLight.ttf b/font_files/font-krub/ttf/Krub-ExtraLight.ttf deleted file mode 100644 index e1923e8..0000000 Binary files a/font_files/font-krub/ttf/Krub-ExtraLight.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-ExtraLightItalic.ttf b/font_files/font-krub/ttf/Krub-ExtraLightItalic.ttf deleted file mode 100644 index 898c453..0000000 Binary files a/font_files/font-krub/ttf/Krub-ExtraLightItalic.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-Italic.ttf b/font_files/font-krub/ttf/Krub-Italic.ttf deleted file mode 100644 index 90a0c1c..0000000 Binary files a/font_files/font-krub/ttf/Krub-Italic.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-Light.ttf b/font_files/font-krub/ttf/Krub-Light.ttf deleted file mode 100644 index 1c710c1..0000000 Binary files a/font_files/font-krub/ttf/Krub-Light.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-LightItalic.ttf b/font_files/font-krub/ttf/Krub-LightItalic.ttf deleted file mode 100644 index b2fd4f3..0000000 Binary files a/font_files/font-krub/ttf/Krub-LightItalic.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-Medium.ttf b/font_files/font-krub/ttf/Krub-Medium.ttf deleted file mode 100644 index 1e2f12b..0000000 Binary files a/font_files/font-krub/ttf/Krub-Medium.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-MediumItalic.ttf b/font_files/font-krub/ttf/Krub-MediumItalic.ttf deleted file mode 100644 index 0f46ca5..0000000 Binary files a/font_files/font-krub/ttf/Krub-MediumItalic.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-Regular.ttf b/font_files/font-krub/ttf/Krub-Regular.ttf deleted file mode 100644 index d598a87..0000000 Binary files a/font_files/font-krub/ttf/Krub-Regular.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-SemiBold.ttf b/font_files/font-krub/ttf/Krub-SemiBold.ttf deleted file mode 100644 index 3420806..0000000 Binary files a/font_files/font-krub/ttf/Krub-SemiBold.ttf and /dev/null differ diff --git a/font_files/font-krub/ttf/Krub-SemiBoldItalic.ttf b/font_files/font-krub/ttf/Krub-SemiBoldItalic.ttf deleted file mode 100644 index 7659ee5..0000000 Binary files a/font_files/font-krub/ttf/Krub-SemiBoldItalic.ttf and /dev/null differ diff --git a/font_files/font-lab-grotesk/otf/lab-grotesk.otf b/font_files/font-lab-grotesk/otf/lab-grotesk.otf deleted file mode 100644 index 3023332..0000000 Binary files a/font_files/font-lab-grotesk/otf/lab-grotesk.otf and /dev/null differ diff --git a/font_files/font-lance-tomchalky/otf/lancerg.otf b/font_files/font-lance-tomchalky/otf/lancerg.otf deleted file mode 100644 index eef06e0..0000000 Binary files a/font_files/font-lance-tomchalky/otf/lancerg.otf and /dev/null differ diff --git a/font_files/font-lance-tomchalky/otf/lancesansrg.otf b/font_files/font-lance-tomchalky/otf/lancesansrg.otf deleted file mode 100644 index 91afb8e..0000000 Binary files a/font_files/font-lance-tomchalky/otf/lancesansrg.otf and /dev/null differ diff --git a/font_files/font-lance-tomchalky/other_files/tomchalky_desktop_licensing.pdf b/font_files/font-lance-tomchalky/other_files/tomchalky_desktop_licensing.pdf deleted file mode 100644 index 7cdb0a3..0000000 Binary files a/font_files/font-lance-tomchalky/other_files/tomchalky_desktop_licensing.pdf and /dev/null differ diff --git a/font_files/font-lance-tomchalky/ttf/lancerg.ttf b/font_files/font-lance-tomchalky/ttf/lancerg.ttf deleted file mode 100644 index 546c368..0000000 Binary files a/font_files/font-lance-tomchalky/ttf/lancerg.ttf and /dev/null differ diff --git a/font_files/font-lance-tomchalky/ttf/lancesansrg.ttf b/font_files/font-lance-tomchalky/ttf/lancesansrg.ttf deleted file mode 100644 index ea49fc4..0000000 Binary files a/font_files/font-lance-tomchalky/ttf/lancesansrg.ttf and /dev/null differ diff --git a/font_files/font-larquette/ttf/LarquetteTypeface-Regular.ttf b/font_files/font-larquette/ttf/LarquetteTypeface-Regular.ttf deleted file mode 100644 index 84015bc..0000000 Binary files a/font_files/font-larquette/ttf/LarquetteTypeface-Regular.ttf and /dev/null differ diff --git a/font_files/font-latcha/otf/latcha-personaluseonly.otf b/font_files/font-latcha/otf/latcha-personaluseonly.otf deleted file mode 100644 index a8faaad..0000000 Binary files a/font_files/font-latcha/otf/latcha-personaluseonly.otf and /dev/null differ diff --git a/font_files/font-latcha/other_files/personal-use-license.pdf b/font_files/font-latcha/other_files/personal-use-license.pdf deleted file mode 100644 index d7dbdbd..0000000 Binary files a/font_files/font-latcha/other_files/personal-use-license.pdf and /dev/null differ diff --git a/font_files/font-lavish/ttf/Lavish.ttf b/font_files/font-lavish/ttf/Lavish.ttf deleted file mode 100644 index 3e3e01c..0000000 Binary files a/font_files/font-lavish/ttf/Lavish.ttf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Black-BF647806db20415.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Black-BF647806db20415.otf deleted file mode 100644 index 458cbf8..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Black-BF647806db20415.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackBack-BF647806dbb006f.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackBack-BF647806dbb006f.otf deleted file mode 100644 index d65445b..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackBack-BF647806dbb006f.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackItalic-BF647806dbe2cde.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackItalic-BF647806dbe2cde.otf deleted file mode 100644 index 4acc2c4..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackItalic-BF647806dbe2cde.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Bold-BF647806db04a12.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Bold-BF647806db04a12.otf deleted file mode 100644 index f4121b7..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Bold-BF647806db04a12.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldBack-BF647806dbbac82.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldBack-BF647806dbbac82.otf deleted file mode 100644 index a60084a..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldBack-BF647806dbbac82.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldItalic-BF647806dbbf597.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldItalic-BF647806dbbf597.otf deleted file mode 100644 index 18feba8..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldItalic-BF647806dbbf597.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Light-BF647806db1a1e7.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Light-BF647806db1a1e7.otf deleted file mode 100644 index 58f847a..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Light-BF647806db1a1e7.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightBack-BF647806dbc68ff.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightBack-BF647806dbc68ff.otf deleted file mode 100644 index 75a6cb3..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightBack-BF647806dbc68ff.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightItalic-BF647806dbc7770.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightItalic-BF647806dbc7770.otf deleted file mode 100644 index 5c06230..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightItalic-BF647806dbc7770.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Medium-BF647806db24482.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Medium-BF647806db24482.otf deleted file mode 100644 index 17a3fbe..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Medium-BF647806db24482.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumBack-BF647806db9228d.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumBack-BF647806db9228d.otf deleted file mode 100644 index 46d0f3d..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumBack-BF647806db9228d.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumItalic-BF647806dc09b7e.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumItalic-BF647806dc09b7e.otf deleted file mode 100644 index 2226f8b..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumItalic-BF647806dc09b7e.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Regular-BF647806db2b1eb.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Regular-BF647806db2b1eb.otf deleted file mode 100644 index 5632723..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Regular-BF647806db2b1eb.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularBack-BF647806dba9aa2.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularBack-BF647806dba9aa2.otf deleted file mode 100644 index 2adb326..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularBack-BF647806dba9aa2.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularItalic-BF647806dc0245f.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularItalic-BF647806dc0245f.otf deleted file mode 100644 index 8e21bcf..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularItalic-BF647806dc0245f.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Thin-BF647806dbadb5b.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Thin-BF647806dbadb5b.otf deleted file mode 100644 index b4464f0..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Thin-BF647806dbadb5b.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinBack-BF647806dbcc22e.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinBack-BF647806dbcc22e.otf deleted file mode 100644 index 7264503..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinBack-BF647806dbcc22e.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinItalic-BF647806dbe4f58.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinItalic-BF647806dbe4f58.otf deleted file mode 100644 index 3223496..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinItalic-BF647806dbe4f58.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThin-BF647806dbbdb3a.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThin-BF647806dbbdb3a.otf deleted file mode 100644 index 0f4e2a9..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThin-BF647806dbbdb3a.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinBack-BF647806db89f02.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinBack-BF647806db89f02.otf deleted file mode 100644 index 38607c7..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinBack-BF647806db89f02.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinItalic-BF647806dbf0c32.otf b/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinItalic-BF647806dbf0c32.otf deleted file mode 100644 index 41466d0..0000000 Binary files a/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinItalic-BF647806dbf0c32.otf and /dev/null differ diff --git a/font_files/font-lazare-grotesk-font-family-1764370398-0/other_files/Befonts-License.txt b/font_files/font-lazare-grotesk-font-family-1764370398-0/other_files/Befonts-License.txt deleted file mode 100644 index cb808de..0000000 --- a/font_files/font-lazare-grotesk-font-family-1764370398-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/lazare-grotesk-font-family.html diff --git a/font_files/font-lexa/otf/lexa.otf b/font_files/font-lexa/otf/lexa.otf deleted file mode 100644 index 32175a1..0000000 Binary files a/font_files/font-lexa/otf/lexa.otf and /dev/null differ diff --git a/font_files/font-love-moon/ttf/LoveMoon.ttf b/font_files/font-love-moon/ttf/LoveMoon.ttf deleted file mode 100755 index 77e9fac..0000000 Binary files a/font_files/font-love-moon/ttf/LoveMoon.ttf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-black.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-black.otf deleted file mode 100644 index 49395ab..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-black.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-bold.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-bold.otf deleted file mode 100644 index 8af5739..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-bold.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-extralight.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-extralight.otf deleted file mode 100644 index cf7e64f..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-extralight.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-light.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-light.otf deleted file mode 100644 index 21a3ffb..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-light.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-medium.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-medium.otf deleted file mode 100644 index 37ab20a..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-medium.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-regular.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-regular.otf deleted file mode 100644 index 11c4068..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-regular.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-semibold.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-semibold.otf deleted file mode 100644 index 65b44bf..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-semibold.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-thin.otf b/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-thin.otf deleted file mode 100644 index e77aa50..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-thin.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingpersonaluse-black.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-black.otf deleted file mode 100644 index 80cdc27..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingpersonaluse-black.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingpersonaluse-bold.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-bold.otf deleted file mode 100644 index 335afe7..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingpersonaluse-bold.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingpersonaluse-extralight.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-extralight.otf deleted file mode 100644 index 078f11d..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingpersonaluse-extralight.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingpersonaluse-light.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-light.otf deleted file mode 100644 index 08a1957..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingpersonaluse-light.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingpersonaluse-medium.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-medium.otf deleted file mode 100644 index 992d478..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingpersonaluse-medium.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingpersonaluse-regular.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-regular.otf deleted file mode 100644 index db1e3e5..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingpersonaluse-regular.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingpersonaluse-semibold.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-semibold.otf deleted file mode 100644 index 73fd1bf..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingpersonaluse-semibold.otf and /dev/null differ diff --git a/font_files/font-made-carving/otf/madecarvingpersonaluse-thin.otf b/font_files/font-made-carving/otf/madecarvingpersonaluse-thin.otf deleted file mode 100644 index bd0d7ef..0000000 Binary files a/font_files/font-made-carving/otf/madecarvingpersonaluse-thin.otf and /dev/null differ diff --git a/font_files/font-made-carving/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-made-carving/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-made-carving/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-made-infinity/otf/madeinfinity-personaluse-black.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-black.otf deleted file mode 100644 index 0bf60c2..0000000 Binary files a/font_files/font-made-infinity/otf/madeinfinity-personaluse-black.otf and /dev/null differ diff --git a/font_files/font-made-infinity/otf/madeinfinity-personaluse-light.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-light.otf deleted file mode 100644 index eb666a5..0000000 Binary files a/font_files/font-made-infinity/otf/madeinfinity-personaluse-light.otf and /dev/null differ diff --git a/font_files/font-made-infinity/otf/madeinfinity-personaluse-medium.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-medium.otf deleted file mode 100644 index 2605fbf..0000000 Binary files a/font_files/font-made-infinity/otf/madeinfinity-personaluse-medium.otf and /dev/null differ diff --git a/font_files/font-made-infinity/otf/madeinfinity-personaluse-regular.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-regular.otf deleted file mode 100644 index fd67950..0000000 Binary files a/font_files/font-made-infinity/otf/madeinfinity-personaluse-regular.otf and /dev/null differ diff --git a/font_files/font-made-infinity/otf/madeinfinity-personaluse-thin.otf b/font_files/font-made-infinity/otf/madeinfinity-personaluse-thin.otf deleted file mode 100644 index 730bc17..0000000 Binary files a/font_files/font-made-infinity/otf/madeinfinity-personaluse-thin.otf and /dev/null differ diff --git a/font_files/font-magic-painted/otf/magic-painted.otf b/font_files/font-magic-painted/otf/magic-painted.otf deleted file mode 100644 index 47859e7..0000000 Binary files a/font_files/font-magic-painted/otf/magic-painted.otf and /dev/null differ diff --git a/font_files/font-magic-painted/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-magic-painted/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-magic-painted/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-magnode/otf/magnode-trial-version.otf b/font_files/font-magnode/otf/magnode-trial-version.otf deleted file mode 100644 index f64dc59..0000000 Binary files a/font_files/font-magnode/otf/magnode-trial-version.otf and /dev/null differ diff --git a/font_files/font-magnode/otf/xkcd.otf b/font_files/font-magnode/otf/xkcd.otf deleted file mode 100644 index c080ef3..0000000 Binary files a/font_files/font-magnode/otf/xkcd.otf and /dev/null differ diff --git a/font_files/font-magnode/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-magnode/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-magnode/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-magnode/ttf/magnode-trial-version.ttf b/font_files/font-magnode/ttf/magnode-trial-version.ttf deleted file mode 100644 index 6bbc72e..0000000 Binary files a/font_files/font-magnode/ttf/magnode-trial-version.ttf and /dev/null differ diff --git a/font_files/font-malibu/ttf/Malibu-Regular.ttf b/font_files/font-malibu/ttf/Malibu-Regular.ttf deleted file mode 100755 index 6cd3959..0000000 Binary files a/font_files/font-malibu/ttf/Malibu-Regular.ttf and /dev/null differ diff --git a/font_files/font-malibu/ttf/MalibuAlternate-Regular.ttf b/font_files/font-malibu/ttf/MalibuAlternate-Regular.ttf deleted file mode 100755 index 43d69a5..0000000 Binary files a/font_files/font-malibu/ttf/MalibuAlternate-Regular.ttf and /dev/null differ diff --git a/font_files/font-malibu/ttf/MalibuDoodles-Regular.ttf b/font_files/font-malibu/ttf/MalibuDoodles-Regular.ttf deleted file mode 100755 index db2420e..0000000 Binary files a/font_files/font-malibu/ttf/MalibuDoodles-Regular.ttf and /dev/null differ diff --git a/font_files/font-marker_notes/otf/marker-notes-italic.otf b/font_files/font-marker_notes/otf/marker-notes-italic.otf deleted file mode 100644 index 2497d21..0000000 Binary files a/font_files/font-marker_notes/otf/marker-notes-italic.otf and /dev/null differ diff --git a/font_files/font-marker_notes/otf/marker-notes.otf b/font_files/font-marker_notes/otf/marker-notes.otf deleted file mode 100644 index 2c93d3d..0000000 Binary files a/font_files/font-marker_notes/otf/marker-notes.otf and /dev/null differ diff --git a/font_files/font-marker_notes/other_files/license.txt b/font_files/font-marker_notes/other_files/license.txt deleted file mode 100644 index 0781229..0000000 --- a/font_files/font-marker_notes/other_files/license.txt +++ /dev/null @@ -1,11 +0,0 @@ -This font, created by Darrell Flood, is free to use for personal use (tho I appreciate donations!) -Please give as much as you honestly feel the font is worth to you. - -For commercial use you must purchase a license by either: - -1. Paying me at least $20 via PayPal to dadiomouse@gmail.com -OR -2. Buying a license here: -https://www.creativefabrica.com/product/marker-notes/ref/74273/ - -Thank you for downloading this font and I hope you find a use for it! \ No newline at end of file diff --git a/font_files/font-marker_notes/other_files/marker-notes.png b/font_files/font-marker_notes/other_files/marker-notes.png deleted file mode 100644 index ac645a7..0000000 Binary files a/font_files/font-marker_notes/other_files/marker-notes.png and /dev/null differ diff --git a/font_files/font-marker_notes/ttf/marker-notes-italic.ttf b/font_files/font-marker_notes/ttf/marker-notes-italic.ttf deleted file mode 100644 index f20edd1..0000000 Binary files a/font_files/font-marker_notes/ttf/marker-notes-italic.ttf and /dev/null differ diff --git a/font_files/font-marker_notes/ttf/marker-notes.ttf b/font_files/font-marker_notes/ttf/marker-notes.ttf deleted file mode 100644 index ec3801c..0000000 Binary files a/font_files/font-marker_notes/ttf/marker-notes.ttf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-CnBd.otf b/font_files/font-martian-mono/otf/MartianMono-CnBd.otf deleted file mode 100644 index 807890f..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-CnBd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-CnLt.otf b/font_files/font-martian-mono/otf/MartianMono-CnLt.otf deleted file mode 100644 index 6860f13..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-CnLt.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-CnMd.otf b/font_files/font-martian-mono/otf/MartianMono-CnMd.otf deleted file mode 100644 index b965487..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-CnMd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-CnRg.otf b/font_files/font-martian-mono/otf/MartianMono-CnRg.otf deleted file mode 100644 index 4c577c6..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-CnRg.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-CnTh.otf b/font_files/font-martian-mono/otf/MartianMono-CnTh.otf deleted file mode 100644 index 1dae81f..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-CnTh.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-CnxBd.otf b/font_files/font-martian-mono/otf/MartianMono-CnxBd.otf deleted file mode 100644 index 730a7de..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-CnxBd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-CnxLt.otf b/font_files/font-martian-mono/otf/MartianMono-CnxLt.otf deleted file mode 100644 index c03cef3..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-CnxLt.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-NrBd.otf b/font_files/font-martian-mono/otf/MartianMono-NrBd.otf deleted file mode 100644 index caaa9d0..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-NrBd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-NrLt.otf b/font_files/font-martian-mono/otf/MartianMono-NrLt.otf deleted file mode 100644 index f475b25..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-NrLt.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-NrMd.otf b/font_files/font-martian-mono/otf/MartianMono-NrMd.otf deleted file mode 100644 index 7780249..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-NrMd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-NrRg.otf b/font_files/font-martian-mono/otf/MartianMono-NrRg.otf deleted file mode 100644 index 26e3781..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-NrRg.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-NrTh.otf b/font_files/font-martian-mono/otf/MartianMono-NrTh.otf deleted file mode 100644 index beef41f..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-NrTh.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-NrxBd.otf b/font_files/font-martian-mono/otf/MartianMono-NrxBd.otf deleted file mode 100644 index 6c9b7c4..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-NrxBd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-NrxLt.otf b/font_files/font-martian-mono/otf/MartianMono-NrxLt.otf deleted file mode 100644 index 5b76a3c..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-NrxLt.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-StdBd.otf b/font_files/font-martian-mono/otf/MartianMono-StdBd.otf deleted file mode 100644 index d861834..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-StdBd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-StdLt.otf b/font_files/font-martian-mono/otf/MartianMono-StdLt.otf deleted file mode 100644 index 121ff26..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-StdLt.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-StdMd.otf b/font_files/font-martian-mono/otf/MartianMono-StdMd.otf deleted file mode 100644 index c1612fa..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-StdMd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-StdRg.otf b/font_files/font-martian-mono/otf/MartianMono-StdRg.otf deleted file mode 100644 index b85750f..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-StdRg.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-StdTh.otf b/font_files/font-martian-mono/otf/MartianMono-StdTh.otf deleted file mode 100644 index fec8ccb..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-StdTh.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-StdxBd.otf b/font_files/font-martian-mono/otf/MartianMono-StdxBd.otf deleted file mode 100644 index e156f02..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-StdxBd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-StdxLt.otf b/font_files/font-martian-mono/otf/MartianMono-StdxLt.otf deleted file mode 100644 index 2f826a9..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-StdxLt.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-sWdBd.otf b/font_files/font-martian-mono/otf/MartianMono-sWdBd.otf deleted file mode 100644 index 8346b5a..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-sWdBd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-sWdLt.otf b/font_files/font-martian-mono/otf/MartianMono-sWdLt.otf deleted file mode 100644 index fb5177d..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-sWdLt.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-sWdMd.otf b/font_files/font-martian-mono/otf/MartianMono-sWdMd.otf deleted file mode 100644 index ae632a8..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-sWdMd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-sWdRg.otf b/font_files/font-martian-mono/otf/MartianMono-sWdRg.otf deleted file mode 100644 index b56a217..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-sWdRg.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-sWdTh.otf b/font_files/font-martian-mono/otf/MartianMono-sWdTh.otf deleted file mode 100644 index ab548b5..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-sWdTh.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-sWdxBd.otf b/font_files/font-martian-mono/otf/MartianMono-sWdxBd.otf deleted file mode 100644 index dd9a8ae..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-sWdxBd.otf and /dev/null differ diff --git a/font_files/font-martian-mono/otf/MartianMono-sWdxLt.otf b/font_files/font-martian-mono/otf/MartianMono-sWdxLt.otf deleted file mode 100644 index 9d63294..0000000 Binary files a/font_files/font-martian-mono/otf/MartianMono-sWdxLt.otf and /dev/null differ diff --git a/font_files/font-marvelo/otf/marvelo.otf b/font_files/font-marvelo/otf/marvelo.otf deleted file mode 100755 index 27126cc..0000000 Binary files a/font_files/font-marvelo/otf/marvelo.otf and /dev/null differ diff --git a/font_files/font-marvelo/other_files/readme.txt b/font_files/font-marvelo/other_files/readme.txt deleted file mode 100755 index 3da36a9..0000000 --- a/font_files/font-marvelo/other_files/readme.txt +++ /dev/null @@ -1,35 +0,0 @@ -DETAILS -special creative products for you, our products will give you an extraordinary experience. - -the latest style letters are perfect for wall displays, wedding invitations, social media post logos, -advertisements, product packaging, product designs, labels, photography, watermarks, invitations, stationery, -and any project that requires taste handwriting. - -Links for license and contact: - -================================================== ========= - -https://www.creativefabrica.com/product/marvelo/ref/399088/ - -gmail : goodrichees@gmail.com - -================================================== ========= - -ATTENTION: - -WARNING!!! - -By installing or using this font, you agree to the Product Use Agreement: - -- This font has a FULL VERSION and is ONLY for PERSONAL USE. NO COMMERCIAL USE! - -- If you need CUSTOM PERMIT or COMPANY PERMIT please go to : (goodrichees@gmail.com) - -- Any donations are greatly appreciated. Paypal account for donations: -(paypal.me/alfarisix) - - -USE OF COMMERCIAL FONT WITHOUT PURCHASE OF LICENSE -OFFICIAL goodrichees@gmail.com will be fined $3000 LICENSE FEES FROM THE LICENSE PRICE !!!! - -thanks. diff --git a/font_files/font-marvelo/ttf/marvelo.ttf b/font_files/font-marvelo/ttf/marvelo.ttf deleted file mode 100755 index f255b86..0000000 Binary files a/font_files/font-marvelo/ttf/marvelo.ttf and /dev/null differ diff --git a/font_files/font-matt-scratch/ttf/Matt Scratch.ttf b/font_files/font-matt-scratch/ttf/Matt Scratch.ttf deleted file mode 100644 index 73a88c3..0000000 Binary files a/font_files/font-matt-scratch/ttf/Matt Scratch.ttf and /dev/null differ diff --git a/font_files/font-mba-slice-mono/otf/mbaslicemono-regular.otf b/font_files/font-mba-slice-mono/otf/mbaslicemono-regular.otf deleted file mode 100644 index 4cb8fae..0000000 Binary files a/font_files/font-mba-slice-mono/otf/mbaslicemono-regular.otf and /dev/null differ diff --git a/font_files/font-mba-slice-mono/web/mbaslicemono-regular.woff b/font_files/font-mba-slice-mono/web/mbaslicemono-regular.woff deleted file mode 100644 index 2b21aba..0000000 Binary files a/font_files/font-mba-slice-mono/web/mbaslicemono-regular.woff and /dev/null differ diff --git a/font_files/font-miracode/ttf/font.ttf b/font_files/font-miracode/ttf/font.ttf deleted file mode 100644 index c366203..0000000 Binary files a/font_files/font-miracode/ttf/font.ttf and /dev/null differ diff --git a/font_files/font-moon-walk/otf/moon-walk.otf b/font_files/font-moon-walk/otf/moon-walk.otf deleted file mode 100644 index b1f331f..0000000 Binary files a/font_files/font-moon-walk/otf/moon-walk.otf and /dev/null differ diff --git a/font_files/font-moon-walk/ttf/moon-walk.ttf b/font_files/font-moon-walk/ttf/moon-walk.ttf deleted file mode 100644 index 49581a3..0000000 Binary files a/font_files/font-moon-walk/ttf/moon-walk.ttf and /dev/null differ diff --git a/font_files/font-moonstone/ttf/Moonstone-Extras.ttf b/font_files/font-moonstone/ttf/Moonstone-Extras.ttf deleted file mode 100755 index 5969894..0000000 Binary files a/font_files/font-moonstone/ttf/Moonstone-Extras.ttf and /dev/null differ diff --git a/font_files/font-moonstone/ttf/Moonstone-Regular.ttf b/font_files/font-moonstone/ttf/Moonstone-Regular.ttf deleted file mode 100755 index bca2466..0000000 Binary files a/font_files/font-moonstone/ttf/Moonstone-Regular.ttf and /dev/null differ diff --git a/font_files/font-morgon/otf/morgon-personaluseonly.otf b/font_files/font-morgon/otf/morgon-personaluseonly.otf deleted file mode 100644 index 5fac81f..0000000 Binary files a/font_files/font-morgon/otf/morgon-personaluseonly.otf and /dev/null differ diff --git a/font_files/font-morgon/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-morgon/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-morgon/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-mustardo/ttf/Mustardo.ttf b/font_files/font-mustardo/ttf/Mustardo.ttf deleted file mode 100755 index 16b9875..0000000 Binary files a/font_files/font-mustardo/ttf/Mustardo.ttf and /dev/null differ diff --git a/font_files/font-mustardo/ttf/Mustardo_Alternates.ttf b/font_files/font-mustardo/ttf/Mustardo_Alternates.ttf deleted file mode 100755 index a19dcf6..0000000 Binary files a/font_files/font-mustardo/ttf/Mustardo_Alternates.ttf and /dev/null differ diff --git a/font_files/font-nafasmanual/otf/nafasmanualregular.otf b/font_files/font-nafasmanual/otf/nafasmanualregular.otf deleted file mode 100644 index 5dc27f1..0000000 Binary files a/font_files/font-nafasmanual/otf/nafasmanualregular.otf and /dev/null differ diff --git a/font_files/font-nafasmanual/otf/nafasmanualsliced.otf b/font_files/font-nafasmanual/otf/nafasmanualsliced.otf deleted file mode 100644 index 39536f6..0000000 Binary files a/font_files/font-nafasmanual/otf/nafasmanualsliced.otf and /dev/null differ diff --git a/font_files/font-nafasmanual/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-nafasmanual/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-nafasmanual/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-nafasmanual/ttf/nafasmanualregular.ttf b/font_files/font-nafasmanual/ttf/nafasmanualregular.ttf deleted file mode 100644 index 525620e..0000000 Binary files a/font_files/font-nafasmanual/ttf/nafasmanualregular.ttf and /dev/null differ diff --git a/font_files/font-nafasmanual/ttf/nafasmanualsliced.ttf b/font_files/font-nafasmanual/ttf/nafasmanualsliced.ttf deleted file mode 100644 index 060b85c..0000000 Binary files a/font_files/font-nafasmanual/ttf/nafasmanualsliced.ttf and /dev/null differ diff --git a/font_files/font-neopixel-font-1764372129-0/otf/neopixel-regular.otf b/font_files/font-neopixel-font-1764372129-0/otf/neopixel-regular.otf deleted file mode 100644 index e2c2340..0000000 Binary files a/font_files/font-neopixel-font-1764372129-0/otf/neopixel-regular.otf and /dev/null differ diff --git a/font_files/font-neopixel-font-1764372129-0/other_files/Befonts-License.txt b/font_files/font-neopixel-font-1764372129-0/other_files/Befonts-License.txt deleted file mode 100644 index 649a90f..0000000 --- a/font_files/font-neopixel-font-1764372129-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/neopixel-font.html diff --git a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-.otf deleted file mode 100644 index 6d14fc2..0000000 Binary files a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-.otf and /dev/null differ diff --git a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-black.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-black.otf deleted file mode 100644 index 0e0c172..0000000 Binary files a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-black.otf and /dev/null differ diff --git a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-bold.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-bold.otf deleted file mode 100644 index da8bce5..0000000 Binary files a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-bold.otf and /dev/null differ diff --git a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-heavy.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-heavy.otf deleted file mode 100644 index 4b7acae..0000000 Binary files a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-heavy.otf and /dev/null differ diff --git a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-light.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-light.otf deleted file mode 100644 index bb9b04e..0000000 Binary files a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-light.otf and /dev/null differ diff --git a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-medium.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-medium.otf deleted file mode 100644 index ade5337..0000000 Binary files a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-medium.otf and /dev/null differ diff --git a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-semi-bold.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-semi-bold.otf deleted file mode 100644 index 24b2cff..0000000 Binary files a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-semi-bold.otf and /dev/null differ diff --git a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-thin.otf b/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-thin.otf deleted file mode 100644 index 112ec25..0000000 Binary files a/font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-thin.otf and /dev/null differ diff --git a/font_files/font-new-kansas-black-wisabo/otf/new-kansas-black.otf b/font_files/font-new-kansas-black-wisabo/otf/new-kansas-black.otf deleted file mode 100644 index 4666856..0000000 Binary files a/font_files/font-new-kansas-black-wisabo/otf/new-kansas-black.otf and /dev/null differ diff --git a/font_files/font-noto-color-emoji/ttf/NotoColorEmoji-Regular.ttf b/font_files/font-noto-color-emoji/ttf/NotoColorEmoji-Regular.ttf deleted file mode 100644 index 559002b..0000000 Binary files a/font_files/font-noto-color-emoji/ttf/NotoColorEmoji-Regular.ttf and /dev/null differ diff --git a/font_files/font-nugia-vintage/otf/nugiavintage.otf b/font_files/font-nugia-vintage/otf/nugiavintage.otf deleted file mode 100644 index 453586c..0000000 Binary files a/font_files/font-nugia-vintage/otf/nugiavintage.otf and /dev/null differ diff --git a/font_files/font-nugia-vintage/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-nugia-vintage/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-nugia-vintage/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-nugia-vintage/ttf/nugiavintage.ttf b/font_files/font-nugia-vintage/ttf/nugiavintage.ttf deleted file mode 100644 index 22c09be..0000000 Binary files a/font_files/font-nugia-vintage/ttf/nugiavintage.ttf and /dev/null differ diff --git a/font_files/font-open-moji/ttf/OpenMoji-black-glyf.ttf b/font_files/font-open-moji/ttf/OpenMoji-black-glyf.ttf deleted file mode 100644 index d58dd15..0000000 Binary files a/font_files/font-open-moji/ttf/OpenMoji-black-glyf.ttf and /dev/null differ diff --git a/font_files/font-orbit/ttf/Orbit-Regular.ttf b/font_files/font-orbit/ttf/Orbit-Regular.ttf deleted file mode 100644 index 5f7f97f..0000000 Binary files a/font_files/font-orbit/ttf/Orbit-Regular.ttf and /dev/null differ diff --git a/font_files/font-overland/otf/overland-regular.otf b/font_files/font-overland/otf/overland-regular.otf deleted file mode 100644 index cd7f6da..0000000 Binary files a/font_files/font-overland/otf/overland-regular.otf and /dev/null differ diff --git a/font_files/font-overland/otf/overland.otf b/font_files/font-overland/otf/overland.otf deleted file mode 100644 index 102b549..0000000 Binary files a/font_files/font-overland/otf/overland.otf and /dev/null differ diff --git a/font_files/font-overland/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-overland/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-overland/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-parasite-game/other_files/1a.png b/font_files/font-parasite-game/other_files/1a.png deleted file mode 100644 index c1ff76c..0000000 Binary files a/font_files/font-parasite-game/other_files/1a.png and /dev/null differ diff --git a/font_files/font-parasite-game/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-parasite-game/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-parasite-game/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-parasite-game/ttf/parasite-game-personal-use.ttf b/font_files/font-parasite-game/ttf/parasite-game-personal-use.ttf deleted file mode 100644 index 0b379c5..0000000 Binary files a/font_files/font-parasite-game/ttf/parasite-game-personal-use.ttf and /dev/null differ diff --git a/font_files/font-patsy-sans-grotesque/otf/patsysans-italic.otf b/font_files/font-patsy-sans-grotesque/otf/patsysans-italic.otf deleted file mode 100644 index c394b04..0000000 Binary files a/font_files/font-patsy-sans-grotesque/otf/patsysans-italic.otf and /dev/null differ diff --git a/font_files/font-patsy-sans-grotesque/otf/patsysans.otf b/font_files/font-patsy-sans-grotesque/otf/patsysans.otf deleted file mode 100644 index 9b1d703..0000000 Binary files a/font_files/font-patsy-sans-grotesque/otf/patsysans.otf and /dev/null differ diff --git a/font_files/font-patsy-sans-grotesque/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-patsy-sans-grotesque/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-patsy-sans-grotesque/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-petralina/ttf/Petralina-Oblique.ttf b/font_files/font-petralina/ttf/Petralina-Oblique.ttf deleted file mode 100755 index 7b6d2c6..0000000 Binary files a/font_files/font-petralina/ttf/Petralina-Oblique.ttf and /dev/null differ diff --git a/font_files/font-petralina/ttf/Petralina-Regular.ttf b/font_files/font-petralina/ttf/Petralina-Regular.ttf deleted file mode 100755 index d7ac72a..0000000 Binary files a/font_files/font-petralina/ttf/Petralina-Regular.ttf and /dev/null differ diff --git a/font_files/font-pixel-crash-font-1764372071-0/otf/pixelcrash-trial.otf b/font_files/font-pixel-crash-font-1764372071-0/otf/pixelcrash-trial.otf deleted file mode 100644 index 42f546c..0000000 Binary files a/font_files/font-pixel-crash-font-1764372071-0/otf/pixelcrash-trial.otf and /dev/null differ diff --git a/font_files/font-pixel-crash-font-1764372071-0/other_files/Befonts-License.txt b/font_files/font-pixel-crash-font-1764372071-0/other_files/Befonts-License.txt deleted file mode 100644 index dfc7a61..0000000 --- a/font_files/font-pixel-crash-font-1764372071-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/pixel-crash-font.html diff --git a/font_files/font-pixel-crash-font-1764372071-0/other_files/read-me-19.txt b/font_files/font-pixel-crash-font-1764372071-0/other_files/read-me-19.txt deleted file mode 100644 index 15ecf78..0000000 --- a/font_files/font-pixel-crash-font-1764372071-0/other_files/read-me-19.txt +++ /dev/null @@ -1,15 +0,0 @@ -By using this font, you agree to the following terms: - -This font is for personal use only. Commercial use is not allowed. -Non-comercial use for large scale audiences is not allowed. - -To purchase a commercial license, visit: -https://ekobimantara.com/ - -For custom licensing inquiries, email us at -ekobimantarafonts@gmail.com - -Explore more fonts in our store: -https://ekobimantara.com/ - -Thank you. \ No newline at end of file diff --git a/font_files/font-pixel-gamer-font-1764372239-0/otf/pixelgamerpersonaluse-rg61l.otf b/font_files/font-pixel-gamer-font-1764372239-0/otf/pixelgamerpersonaluse-rg61l.otf deleted file mode 100644 index 4dc19e8..0000000 Binary files a/font_files/font-pixel-gamer-font-1764372239-0/otf/pixelgamerpersonaluse-rg61l.otf and /dev/null differ diff --git a/font_files/font-pixel-gamer-font-1764372239-0/other_files/Befonts-License.txt b/font_files/font-pixel-gamer-font-1764372239-0/other_files/Befonts-License.txt deleted file mode 100644 index 21b0fc2..0000000 --- a/font_files/font-pixel-gamer-font-1764372239-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/pixel-gamer-font.html diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldm.otf deleted file mode 100644 index 07b9a08..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlebolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlebolds.otf deleted file mode 100644 index a0faa50..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlebolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldxl.otf deleted file mode 100644 index a756b09..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelim.otf deleted file mode 100644 index 09bdc9c..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelis.otf deleted file mode 100644 index bc21824..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelixl.otf deleted file mode 100644 index 69fe76e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemidm.otf deleted file mode 100644 index a832f55..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemids.otf deleted file mode 100644 index e42ff7a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormm.otf deleted file mode 100644 index d9c8688..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenorms.otf deleted file mode 100644 index 237d79c..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormxl.otf deleted file mode 100644 index 97228c8..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregm.otf deleted file mode 100644 index 98f9f82..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregs.otf deleted file mode 100644 index d422b0d..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregxl.otf deleted file mode 100644 index 75703aa..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinm.otf deleted file mode 100644 index 9b00ccc..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethins.otf deleted file mode 100644 index ee3d269..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinxl.otf deleted file mode 100644 index 37a1b5f..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldm.otf deleted file mode 100644 index 09b2f49..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionbolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionbolds.otf deleted file mode 100644 index 6781c9a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionbolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldxl.otf deleted file mode 100644 index 88933c1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlim.otf deleted file mode 100644 index 0634d8e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlis.otf deleted file mode 100644 index 45ef156..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlixl.otf deleted file mode 100644 index bc2f41f..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmidm.otf deleted file mode 100644 index 5056249..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmids.otf deleted file mode 100644 index 87d9527..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormm.otf deleted file mode 100644 index 6fcf7fd..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnorms.otf deleted file mode 100644 index f982b54..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormxl.otf deleted file mode 100644 index 3d7f6bc..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregm.otf deleted file mode 100644 index ece7f1e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregs.otf deleted file mode 100644 index 7731e14..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregxl.otf deleted file mode 100644 index 46375f6..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthins.otf deleted file mode 100644 index aa5bbdf..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthinxl.otf deleted file mode 100644 index 408416b..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldm.otf deleted file mode 100644 index 4ee3845..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartbolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartbolds.otf deleted file mode 100644 index e71af8d..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartbolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldxl.otf deleted file mode 100644 index b065146..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlim.otf deleted file mode 100644 index c929e29..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlis.otf deleted file mode 100644 index 0a8f1e7..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlixl.otf deleted file mode 100644 index 7eaaf05..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmidm.otf deleted file mode 100644 index 05336da..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmids.otf deleted file mode 100644 index 7bcec34..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormm.otf deleted file mode 100644 index 109facf..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnorms.otf deleted file mode 100644 index bab0525..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormxl.otf deleted file mode 100644 index 36d3046..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregm.otf deleted file mode 100644 index 7d5c4e8..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregs.otf deleted file mode 100644 index 6746f98..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregxl.otf deleted file mode 100644 index a82b69e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinm.otf deleted file mode 100644 index 70cc514..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthins.otf deleted file mode 100644 index 287a20f..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinxl.otf deleted file mode 100644 index a8e3f10..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldm.otf deleted file mode 100644 index 3eb00f7..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownbolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownbolds.otf deleted file mode 100644 index 954479c..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownbolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldxl.otf deleted file mode 100644 index 54c325e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlim.otf deleted file mode 100644 index f495a5a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlis.otf deleted file mode 100644 index 7d1b74e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlixl.otf deleted file mode 100644 index 3a8529b..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmidm.otf deleted file mode 100644 index 0a436c3..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmids.otf deleted file mode 100644 index 0a114eb..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormm.otf deleted file mode 100644 index 2dc80cd..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnorms.otf deleted file mode 100644 index d8b7879..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormxl.otf deleted file mode 100644 index 4ff89de..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregm.otf deleted file mode 100644 index ae03410..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregs.otf deleted file mode 100644 index a09b76d..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregxl.otf deleted file mode 100644 index c41206d..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinm.otf deleted file mode 100644 index 63e3896..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthins.otf deleted file mode 100644 index 4635c1b..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinxl.otf deleted file mode 100644 index 6b061d7..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldm.otf deleted file mode 100644 index e26ec02..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskybolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskybolds.otf deleted file mode 100644 index 80c6187..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskybolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldxl.otf deleted file mode 100644 index a22e88a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylim.otf deleted file mode 100644 index dd96616..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylis.otf deleted file mode 100644 index ada26b0..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylixl.otf deleted file mode 100644 index e2d0621..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymidm.otf deleted file mode 100644 index d268e51..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymids.otf deleted file mode 100644 index 06caf69..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormm.otf deleted file mode 100644 index c728633..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynorms.otf deleted file mode 100644 index 096dc9b..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormxl.otf deleted file mode 100644 index cfd2824..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregm.otf deleted file mode 100644 index 85029c5..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregs.otf deleted file mode 100644 index 1ae3434..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregxl.otf deleted file mode 100644 index fe2fab2..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinm.otf deleted file mode 100644 index 9bb3e8b..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythins.otf deleted file mode 100644 index 89752a1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinxl.otf deleted file mode 100644 index 13437a9..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldm.otf deleted file mode 100644 index ff33fa1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticbolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticbolds.otf deleted file mode 100644 index 07ad7af..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticbolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldxl.otf deleted file mode 100644 index 13bc02e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlim.otf deleted file mode 100644 index 17c2028..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlis.otf deleted file mode 100644 index 286b89a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlixl.otf deleted file mode 100644 index aed0fe7..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmidm.otf deleted file mode 100644 index cc727b5..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmids.otf deleted file mode 100644 index 93e1257..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormm.otf deleted file mode 100644 index 07689a4..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnorms.otf deleted file mode 100644 index 7df850e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormxl.otf deleted file mode 100644 index f4f5f87..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregm.otf deleted file mode 100644 index fee78de..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregs.otf deleted file mode 100644 index 423a92d..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregxl.otf deleted file mode 100644 index 7334b45..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinm.otf deleted file mode 100644 index 2ec56ad..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthins.otf deleted file mode 100644 index 9d20d07..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinxl.otf deleted file mode 100644 index 0dd2825..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldm.otf deleted file mode 100644 index c3047d1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointbolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointbolds.otf deleted file mode 100644 index 51880c5..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointbolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldxl.otf deleted file mode 100644 index 8982a24..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlim.otf deleted file mode 100644 index faa7a36..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlis.otf deleted file mode 100644 index f35fedb..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlixl.otf deleted file mode 100644 index 09eb978..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmidm.otf deleted file mode 100644 index aef86dd..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmids.otf deleted file mode 100644 index 01f4e7e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormm.otf deleted file mode 100644 index fdf9886..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnorms.otf deleted file mode 100644 index 19847a8..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormxl.otf deleted file mode 100644 index 04c3fb2..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregm.otf deleted file mode 100644 index 87640dd..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregs.otf deleted file mode 100644 index a6d46c4..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregxl.otf deleted file mode 100644 index e1c03c6..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinm.otf deleted file mode 100644 index c057040..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthins.otf deleted file mode 100644 index c386882..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinxl.otf deleted file mode 100644 index 67a6a84..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldm.otf deleted file mode 100644 index f80c6a1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickbolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickbolds.otf deleted file mode 100644 index 4cae762..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickbolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldxl.otf deleted file mode 100644 index 1e0af03..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklim.otf deleted file mode 100644 index fc3b2e1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklis.otf deleted file mode 100644 index c3fdf51..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklixl.otf deleted file mode 100644 index d17d28f..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmidm.otf deleted file mode 100644 index 4374e0f..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmids.otf deleted file mode 100644 index 0ae43d1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormm.otf deleted file mode 100644 index d03465c..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknorms.otf deleted file mode 100644 index 4cf785f..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormxl.otf deleted file mode 100644 index 6c29afd..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregm.otf deleted file mode 100644 index e6f0a10..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregs.otf deleted file mode 100644 index 5cccdbf..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregxl.otf deleted file mode 100644 index 0c4e34a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinm.otf deleted file mode 100644 index 7694b12..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthins.otf deleted file mode 100644 index 74bf414..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinxl.otf deleted file mode 100644 index 032e23e..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldm.otf deleted file mode 100644 index 23b077a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowbolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowbolds.otf deleted file mode 100644 index 1297d8f..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowbolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldxl.otf deleted file mode 100644 index a7f431b..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlim.otf deleted file mode 100644 index dd46335..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlis.otf deleted file mode 100644 index 8f4684a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlixl.otf deleted file mode 100644 index 39aab86..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmidm.otf deleted file mode 100644 index 37d31b6..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmids.otf deleted file mode 100644 index 06a4c23..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormm.otf deleted file mode 100644 index dc8d2f9..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownorms.otf deleted file mode 100644 index a53f236..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormxl.otf deleted file mode 100644 index 301a004..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregm.otf deleted file mode 100644 index 32c4dae..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregs.otf deleted file mode 100644 index fab12b1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregxl.otf deleted file mode 100644 index 8b703c5..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinm.otf deleted file mode 100644 index cc3eae0..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthins.otf deleted file mode 100644 index d8d8f4d..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinxl.otf deleted file mode 100644 index ad95e06..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldm.otf deleted file mode 100644 index 33ec5a9..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarebolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarebolds.otf deleted file mode 100644 index 2ac59d6..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarebolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldxl.otf deleted file mode 100644 index faff4ad..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremidm.otf deleted file mode 100644 index 8bb3640..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremids.otf deleted file mode 100644 index 8394b05..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormm.otf deleted file mode 100644 index 147b665..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenorms.otf deleted file mode 100644 index e2a272a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormxl.otf deleted file mode 100644 index 2028e1c..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregm.otf deleted file mode 100644 index b98e497..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregs.otf deleted file mode 100644 index bdd29d8..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregxl.otf deleted file mode 100644 index 517b6b2..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinm.otf deleted file mode 100644 index c95b85c..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethins.otf deleted file mode 100644 index c80b266..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinxl.otf deleted file mode 100644 index 031b863..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelim.otf deleted file mode 100644 index ab78d20..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelis.otf deleted file mode 100644 index 53c7ee9..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelixl.otf deleted file mode 100644 index 087b404..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldm.otf deleted file mode 100644 index f65c3f1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterbolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterbolds.otf deleted file mode 100644 index a9abf1f..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterbolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldxl.otf deleted file mode 100644 index fca2c52..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlim.otf deleted file mode 100644 index 15abae6..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlis.otf deleted file mode 100644 index b33e8df..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlixl.otf deleted file mode 100644 index 3a47e88..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermidm.otf deleted file mode 100644 index c920ffa..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermids.otf deleted file mode 100644 index c7da891..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormm.otf deleted file mode 100644 index 7196583..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternorms.otf deleted file mode 100644 index 00ce744..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormxl.otf deleted file mode 100644 index 1a8d6be..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregm.otf deleted file mode 100644 index 7e116de..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregs.otf deleted file mode 100644 index 31fc266..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregxl.otf deleted file mode 100644 index d03dcf5..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinm.otf deleted file mode 100644 index 9197af0..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthins.otf deleted file mode 100644 index 3e4fd60..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinxl.otf deleted file mode 100644 index f525106..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldm.otf deleted file mode 100644 index cbbcbbe..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windbolds.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windbolds.otf deleted file mode 100644 index 7a1fbe2..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windbolds.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldxl.otf deleted file mode 100644 index e418a71..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlim.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlim.otf deleted file mode 100644 index f48c084..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlim.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlis.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlis.otf deleted file mode 100644 index 1c271ba..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlis.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlixl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlixl.otf deleted file mode 100644 index 6462c4a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlixl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmidm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmidm.otf deleted file mode 100644 index 82a6ee6..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmidm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmids.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmids.otf deleted file mode 100644 index 94b4286..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmids.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormm.otf deleted file mode 100644 index f17da01..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnorms.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnorms.otf deleted file mode 100644 index ee920a1..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnorms.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormxl.otf deleted file mode 100644 index fd3959c..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregm.otf deleted file mode 100644 index 3e9b94f..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregs.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregs.otf deleted file mode 100644 index 4752311..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregs.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregxl.otf deleted file mode 100644 index 03d6d68..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinm.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinm.otf deleted file mode 100644 index 5941f09..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinm.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthins.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthins.otf deleted file mode 100644 index d51b76a..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthins.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinxl.otf b/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinxl.otf deleted file mode 100644 index 4d40046..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinxl.otf and /dev/null differ diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/other_files/Befonts-License.txt b/font_files/font-pixel-grid-font-family-1764371982-0/other_files/Befonts-License.txt deleted file mode 100644 index bfd9e8e..0000000 --- a/font_files/font-pixel-grid-font-family-1764371982-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/pixel-grid-font-family.html diff --git a/font_files/font-pixel-grid-font-family-1764371982-0/ttf/pixelgridtrial-fashionregxl.ttf b/font_files/font-pixel-grid-font-family-1764371982-0/ttf/pixelgridtrial-fashionregxl.ttf deleted file mode 100644 index 4019321..0000000 Binary files a/font_files/font-pixel-grid-font-family-1764371982-0/ttf/pixelgridtrial-fashionregxl.ttf and /dev/null differ diff --git a/font_files/font-pixelon/otf/pixelon-bf663182783f6a2.otf b/font_files/font-pixelon/otf/pixelon-bf663182783f6a2.otf deleted file mode 100644 index ea691c7..0000000 Binary files a/font_files/font-pixelon/otf/pixelon-bf663182783f6a2.otf and /dev/null differ diff --git a/font_files/font-pixelon/other_files/befonts-license.txt b/font_files/font-pixelon/other_files/befonts-license.txt deleted file mode 100644 index 943c438..0000000 --- a/font_files/font-pixelon/other_files/befonts-license.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/pixelon-font.html diff --git a/font_files/font-pixelon/ttf/pixelon-bf663182784222c.ttf b/font_files/font-pixelon/ttf/pixelon-bf663182784222c.ttf deleted file mode 100644 index acb3c81..0000000 Binary files a/font_files/font-pixelon/ttf/pixelon-bf663182784222c.ttf and /dev/null differ diff --git a/font_files/font-playfair/ttf/Playfair-Italic[opsz,wdth,wght].ttf b/font_files/font-playfair/ttf/Playfair-Italic[opsz,wdth,wght].ttf deleted file mode 100644 index 87e12f2..0000000 Binary files a/font_files/font-playfair/ttf/Playfair-Italic[opsz,wdth,wght].ttf and /dev/null differ diff --git a/font_files/font-playfair/ttf/Playfair[opsz,wdth,wght].ttf b/font_files/font-playfair/ttf/Playfair[opsz,wdth,wght].ttf deleted file mode 100644 index 38e7c88..0000000 Binary files a/font_files/font-playfair/ttf/Playfair[opsz,wdth,wght].ttf and /dev/null differ diff --git a/font_files/font-plaztma/otf/plaztma-oblique.otf b/font_files/font-plaztma/otf/plaztma-oblique.otf deleted file mode 100644 index 5557057..0000000 Binary files a/font_files/font-plaztma/otf/plaztma-oblique.otf and /dev/null differ diff --git a/font_files/font-plaztma/otf/plaztma.otf b/font_files/font-plaztma/otf/plaztma.otf deleted file mode 100644 index edcd214..0000000 Binary files a/font_files/font-plaztma/otf/plaztma.otf and /dev/null differ diff --git a/font_files/font-plaztma/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-plaztma/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-plaztma/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-plaztma/ttf/plaztma-oblique.ttf b/font_files/font-plaztma/ttf/plaztma-oblique.ttf deleted file mode 100644 index 9ceb819..0000000 Binary files a/font_files/font-plaztma/ttf/plaztma-oblique.ttf and /dev/null differ diff --git a/font_files/font-plaztma/ttf/plaztma.ttf b/font_files/font-plaztma/ttf/plaztma.ttf deleted file mode 100644 index b6f2035..0000000 Binary files a/font_files/font-plaztma/ttf/plaztma.ttf and /dev/null differ diff --git a/font_files/font-plebis/OTF/PLEBIS.otf b/font_files/font-plebis/OTF/PLEBIS.otf deleted file mode 100644 index 5417b2e..0000000 Binary files a/font_files/font-plebis/OTF/PLEBIS.otf and /dev/null differ diff --git a/font_files/font-press-start-2p/ttf/PressStart2P-vaV7.ttf b/font_files/font-press-start-2p/ttf/PressStart2P-vaV7.ttf deleted file mode 100644 index 98044e9..0000000 Binary files a/font_files/font-press-start-2p/ttf/PressStart2P-vaV7.ttf and /dev/null differ diff --git a/font_files/font-prodigy-sans/otf/ProdigySans-Medium.otf b/font_files/font-prodigy-sans/otf/ProdigySans-Medium.otf deleted file mode 100644 index 011bb12..0000000 Binary files a/font_files/font-prodigy-sans/otf/ProdigySans-Medium.otf and /dev/null differ diff --git a/font_files/font-project-space/otf/project-space.otf b/font_files/font-project-space/otf/project-space.otf deleted file mode 100644 index ecc18c3..0000000 Binary files a/font_files/font-project-space/otf/project-space.otf and /dev/null differ diff --git a/font_files/font-project-space/other_files/ofl-faq.txt b/font_files/font-project-space/other_files/ofl-faq.txt deleted file mode 100644 index 526fba9..0000000 --- a/font_files/font-project-space/other_files/ofl-faq.txt +++ /dev/null @@ -1,436 +0,0 @@ -OFL FAQ - Frequently Asked Questions about the SIL Open Font License (OFL) -Version 1.1-update6 - December 2020 -The OFL FAQ is copyright (c) 2005-2020 SIL International. -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. -(See http://scripts.sil.org/OFL for updates) - - -CONTENTS OF THIS FAQ -1 USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL -2 USING OFL FONTS FOR WEB PAGES AND ONLINE WEB FONT SERVICES -3 MODIFYING OFL-LICENSED FONTS -4 LICENSING YOUR ORIGINAL FONTS UNDER THE OFL -5 CHOOSING RESERVED FONT NAMES -6 ABOUT THE FONTLOG -7 MAKING CONTRIBUTIONS TO OFL PROJECTS -8 ABOUT THE LICENSE ITSELF -9 ABOUT SIL INTERNATIONAL -APPENDIX A - FONTLOG EXAMPLE - -1 USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL - -1.1 Can I use the fonts for a book or other print publication, to create logos or other graphics or even to manufacture objects based on their outlines? -Yes. You are very welcome to do so. Authors of fonts released under the OFL allow you to use their font software as such for any kind of design work. No additional license or permission is required, unlike with some other licenses. Some examples of these uses are: logos, posters, business cards, stationery, video titling, signage, t-shirts, personalised fabric, 3D-printed/laser-cut shapes, sculptures, rubber stamps, cookie cutters and lead type. - -1.1.1 Does that restrict the license or distribution of that artwork? -No. You remain the author and copyright holder of that newly derived graphic or object. You are simply using an open font in the design process. It is only when you redistribute, bundle or modify the font itself that other conditions of the license have to be respected (see below for more details). - -1.1.2 Is any kind of acknowledgement required? -No. Font authors may appreciate being mentioned in your artwork's acknowledgements alongside the name of the font, possibly with a link to their website, but that is not required. - -1.2 Can the fonts be included with Free/Libre and Open Source Software collections such as GNU/Linux and BSD distributions and repositories? -Yes! Fonts licensed under the OFL can be freely included alongside other software under FLOSS (Free/Libre and Open Source Software) licenses. Since fonts are typically aggregated with, not merged into, existing software, there is little need to be concerned about incompatibility with existing software licenses. You may also repackage the fonts and the accompanying components in a .rpm or .deb package (or other similar package formats or installers) and include them in distribution CD/DVDs and online repositories. (Also see section 5.9 about rebuilding from source.) - -1.3 I want to distribute the fonts with my program. Does this mean my program also has to be Free/Libre and Open Source Software? -No. Only the portions based on the Font Software are required to be released under the OFL. The intent of the license is to allow aggregation or bundling with software under restricted licensing as well. - -1.4 Can I sell a software package that includes these fonts? -Yes, you can do this with both the Original Version and a Modified Version of the fonts. Examples of bundling made possible by the OFL would include: word processors, design and publishing applications, training and educational software, games and entertainment software, mobile device applications, etc. - -1.5 Can I include the fonts on a CD of freeware or commercial fonts? -Yes, as long some other font or software is also on the disk, so the OFL font is not sold by itself. - -1.6 Why won't the OFL let me sell the fonts alone? -The intent is to keep people from making money by simply redistributing the fonts. The only people who ought to profit directly from the fonts should be the original authors, and those authors have kindly given up potential direct income to distribute their fonts under the OFL. Please honour and respect their contribution! - -1.7 What about sharing OFL fonts with friends on a CD, DVD or USB stick? -You are very welcome to share open fonts with friends, family and colleagues through removable media. Just remember to include the full font package, including any copyright notices and licensing information as available in OFL.txt. In the case where you sell the font, it has to come bundled with software. - -1.8 Can I host the fonts on a web site for others to use? -Yes, as long as you make the full font package available. In most cases it may be best to point users to the main site that distributes the Original Version so they always get the most recent stable and complete version. See also discussion of web fonts in Section 2. - -1.9 Can I host the fonts on a server for use over our internal network? -Yes. If the fonts are transferred from the server to the client computer by means that allow them to be used even if the computer is no longer attached to the network, the full package (copyright notices, licensing information, etc.) should be included. - -1.10 Does the full OFL license text always need to accompany the font? -The only situation in which an OFL font can be distributed without the text of the OFL (either in a separate file or in font metadata), is when a font is embedded in a document or bundled within a program. In the case of metadata included within a font, it is legally sufficient to include only a link to the text of the OFL on http://scripts.sil.org/OFL, but we strongly recommend against this. Most modern font formats include metadata fields that will accept the full OFL text, and full inclusion increases the likelihood that users will understand and properly apply the license. - -1.11 What do you mean by 'embedding'? How does that differ from other means of distribution? -By 'embedding' we mean inclusion of the font in a document or file in a way that makes extraction (and redistribution) difficult or clearly discouraged. In many cases the names of embedded fonts might also not be obvious to those reading the document, the font data format might be altered, and only a subset of the font - only the glyphs required for the text - might be included. Any other means of delivering a font to another person is considered 'distribution', and needs to be accompanied by any copyright notices and licensing information available in OFL.txt. - -1.12 So can I embed OFL fonts in my document? -Yes, either in full or a subset. The restrictions regarding font modification and redistribution do not apply, as the font is not intended for use outside the document. - -1.13 Does embedding alter the license of the document itself? -No. Referencing or embedding an OFL font in any document does not change the license of the document itself. The requirement for fonts to remain under the OFL does not apply to any document created using the fonts and their derivatives. Similarly, creating any kind of graphic using a font under OFL does not make the resulting artwork subject to the OFL. - -1.14 If OFL fonts are extracted from a document in which they are embedded (such as a PDF file), what can be done with them? Is this a risk to author(s)? -The few utilities that can extract fonts embedded in a PDF will typically output limited amounts of outlines - not a complete font. To create a working font from this method is much more difficult and time consuming than finding the source of the original OFL font. So there is little chance that an OFL font would be extracted and redistributed inappropriately through this method. Even so, copyright laws address any misrepresentation of authorship. All Font Software released under the OFL and marked as such by the author(s) is intended to remain under this license regardless of the distribution method, and cannot be redistributed under any other license. We strongly discourage any font extraction - we recommend directly using the font sources instead - but if you extract font outlines from a document, please be considerate: respect the work of the author(s) and the licensing model. - -1.15 What about distributing fonts with a document? Within a compressed folder structure? Is it distribution, bundling or embedding? -Certain document formats may allow the inclusion of an unmodified font within their file structure which may consist of a compressed folder containing the various resources forming the document (such as pictures and thumbnails). Including fonts within such a structure is understood as being different from embedding but rather similar to bundling (or mere aggregation) which the license explicitly allows. In this case the font is conveyed unchanged whereas embedding a font usually transforms it from the original format. The OFL does not allow anyone to extract the font from such a structure to then redistribute it under another license. The explicit permission to redistribute and embed does not cancel the requirement for the Font Software to remain under the license chosen by its author(s). Even if the font travels inside the document as one of its assets, it should not lose its authorship information and licensing. - -1.16 What about ebooks shipping with open fonts? -The requirements differ depending on whether the fonts are linked, embedded or distributed (bundled or aggregated). Some ebook formats use web technologies to do font linking via @font-face, others are designed for font embedding, some use fonts distributed with the document or reading software, and a few rely solely on the fonts already present on the target system. The license requirements depend on the type of inclusion as discussed in 1.15. - -1.17 Can Font Software released under the OFL be subject to URL-based access restrictions methods or DRM (Digital Rights Management) mechanisms? -Yes, but these issues are out-of-scope for the OFL. The license itself neither encourages their use nor prohibits them since such mechanisms are not implemented in the components of the Font Software but through external software. Such restrictions are put in place for many different purposes corresponding to various usage scenarios. One common example is to limit potentially dangerous cross-site scripting attacks. However, in the spirit of libre/open fonts and unrestricted writing systems, we strongly encourage open sharing and reuse of OFL fonts, and the establishment of an environment where such restrictions are unnecessary. Note that whether you wish to use such mechanisms or you prefer not to, you must still abide by the rules set forth by the OFL when using fonts released by their authors under this license. Derivative fonts must be licensed under the OFL, even if they are part of a service for which you charge fees and/or for which access to source code is restricted. You may not sell the fonts on their own - they must be part of a larger software package, bundle or subscription plan. For example, even if the OFL font is distributed in a software package or via an online service using a DRM mechanism, the user would still have the right to extract that font, use, study, modify and redistribute it under the OFL. - -1.18 I've come across a font released under the OFL. How can I easily get more information about the Original Version? How can I know where it stands compared to the Original Version or other Modified Versions? -Consult the copyright statement(s) in the license for ways to contact the original authors. Consult the FONTLOG (see section 6 for more details and examples) for information on how the font differs from the Original Version, and get in touch with the various contributors via the information in the acknowledgement section. Please consider using the Original Versions of the fonts whenever possible. - -1.19 What do you mean in condition 4 of the OFL's permissions and conditions? Can you provide examples of abusive promotion / endorsement / advertisement vs. normal acknowledgement? -The intent is that the goodwill and reputation of the author(s) should not be used in a way that makes it sound like the original author(s) endorse or approve of a specific Modified Version or software bundle. For example, it would not be right to advertise a word processor by naming the author(s) in a listing of software features, or to promote a Modified Version on a web site by saying "designed by ...". However, it would be appropriate to acknowledge the author(s) if your software package has a list of people who deserve thanks. We realize that this can seem to be a grey area, but the standard used to judge an acknowledgement is that if the acknowledgement benefits the author(s) it is allowed, but if it primarily benefits other parties, or could reflect poorly on the author(s), then it is not. - -1.20 I'm writing a small app for mobile platforms, do I need to include the whole package? -If you bundle a font under the OFL with your mobile app you must comply with the terms of the license. At a minimum you must include the copyright statement, the license notice and the license text. A mention of this information in your About box or Changelog, with a link to where the font package is from, is good practice, and the extra space needed to carry these items is very small. You do not, however, need to include the full contents of the font package - only the fonts you use and the copyright and license that apply to them. For example, if you only use the regular weight in your app, you do not need to include the italic and bold versions. - -1.21 What about including OFL fonts by default in my firmware or dedicated operating system? -Many such systems are restricted and turned into appliances so that users cannot study or modify them. Using open fonts to increase quality and language coverage is a great idea, but you need to be aware that if there is a way for users to extract fonts you cannot legally prevent them from doing that. The fonts themselves, including any changes you make to them, must be distributed under the OFL even if your firmware has a more restrictive license. If you do transform the fonts and change their formats when you include them in your firmware you must respect any names reserved by the font authors via the RFN mechanism and pick your own font name. Alternatively if you directly add a font under the OFL to the font folder of your firmware without modifying or optimizing it you are simply bundling the font like with any other software collection, and do not need to make any further changes. - -1.22 Can I make and publish CMS themes or templates that use OFL fonts? Can I include the fonts themselves in the themes or templates? Can I sell the whole package? -Yes, you are very welcome to integrate open fonts into themes and templates for your preferred CMS and make them more widely available. Remember that you can only sell the fonts and your CMS add-on as part of a software bundle. (See 1.4 for details and examples about selling bundles). - -1.23 Can OFL fonts be included in services that deliver fonts to the desktop from remote repositories? Even if they contain both OFL and non-OFL fonts? -Yes. Some foundries have set up services to deliver fonts to subscribers directly to desktops from their online repositories; similarly, plugins are available to preview and use fonts directly in your design tool or publishing suite. These services may mix open and restricted fonts in the same channel, however they should make a clear distinction between them to users. These services should also not hinder users (such as through DRM or obfuscation mechanisms) from extracting and using the OFL fonts in other environments, or continuing to use OFL fonts after subscription terms have ended, as those uses are specifically allowed by the OFL. - -1.24 Can services that provide or distribute OFL fonts restrict my use of them? -No. The terms of use of such services cannot replace or restrict the terms of the OFL, as that would be the same as distributing the fonts under a different license, which is not allowed. You are still entitled to use, modify and redistribute them as the original authors have intended outside of the sole control of that particular distribution channel. Note, however, that the fonts provided by these services may differ from the Original Versions. - - -2 USING OFL FONTS FOR WEBPAGES AND ONLINE WEB FONT SERVICES - -NOTE: This section often refers to a separate paper on 'Web Fonts & RFNs'. This is available at http://scripts.sil.org/OFL_web_fonts_and_RFNs - -2.1 Can I make webpages using these fonts? -Yes! Go ahead! Using CSS (Cascading Style Sheets) is recommended. Your three best options are: -- referring directly in your stylesheet to open fonts which may be available on the user's system -- providing links to download the full package of the font - either from your own website or from elsewhere - so users can install it themselves -- using @font-face to distribute the font directly to browsers. This is recommended and explicitly allowed by the licensing model because it is distribution. The font file itself is distributed with other components of the webpage. It is not embedded in the webpage but referenced through a web address which will cause the browser to retrieve and use the corresponding font to render the webpage (see 1.11 and 1.15 for details related to embedding fonts into documents). As you take advantage of the @font-face cross-platform standard, be aware that web fonts are often tuned for a web environment and not intended for installation and use outside a browser. The reasons in favour of using web fonts are to allow design of dynamic text elements instead of static graphics, to make it easier for content to be localized and translated, indexed and searched, and all this with cross-platform open standards without depending on restricted extensions or plugins. You should check the CSS cascade (the order in which fonts are being called or delivered to your users) when testing. - -2.2 Can I make and use WOFF (Web Open Font Format) versions of OFL fonts? -Yes, but you need to be careful. A change in font format normally is considered modification, and Reserved Font Names (RFNs) cannot be used. Because of the design of the WOFF format, however, it is possible to create a WOFF version that is not considered modification, and so would not require a name change. You are allowed to create, use and distribute a WOFF version of an OFL font without changing the font name, but only if: - -- the original font data remains unchanged except for WOFF compression, and -- WOFF-specific metadata is either omitted altogether or present and includes, unaltered, the contents of all equivalent metadata in the original font. - -If the original font data or metadata is changed, or the WOFF-specific metadata is incomplete, the font must be considered a Modified Version, the OFL restrictions would apply and the name of the font must be changed: any RFNs cannot be used and copyright notices and licensing information must be included and cannot be deleted or modified. You must come up with a unique name - we recommend one corresponding to your domain or your particular web application. Be aware that only the original author(s) can use RFNs. This is to prevent collisions between a derivative tuned to your audience and the original upstream version and so to reduce confusion. - -Please note that most WOFF conversion tools and online services do not meet the two requirements listed above, and so their output must be considered a Modified Version. So be very careful and check to be sure that the tool or service you're using is compressing unchanged data and completely and accurately reflecting the original font metadata. - -2.3 What about other web font formats such as EOT/EOTLite/CWT/etc.? -In most cases these formats alter the original font data more than WOFF, and do not completely support appropriate metadata, so their use must be considered modification and RFNs may not be used. However, there may be certain formats or usage scenarios that may allow the use of RFNs. See http://scripts.sil.org/OFL_web_fonts_and_RFNs - -2.4 Can I make OFL fonts available through web font online services? -Yes, you are welcome to include OFL fonts in online web font services as long as you properly meet all the conditions of the license. The origin and open status of the font should be clear among the other fonts you are hosting. Authorship, copyright notices and license information must be sufficiently visible to your users or subscribers so they know where the font comes from and the rights granted by the author(s). Make sure the font file contains the needed copyright notice(s) and licensing information in its metadata. Please double-check the accuracy of every field to prevent contradictory information. Other font formats, including EOT/EOTLite/CWT and superior alternatives like WOFF, already provide fields for this information. Remember that if you modify the font within your library or convert it to another format for any reason the OFL restrictions apply and you need to change the names accordingly. Please respect the author's wishes as expressed in the OFL and do not misrepresent original designers and their work. Don't lump quality open fonts together with dubious freeware or public domain fonts. Consider how you can best work with the original designers and foundries, support their efforts and generate goodwill that will benefit your service. (See 1.17 for details related to URL-based access restrictions methods or DRM mechanisms). - -2.5 Some web font formats and services provide ways of "optimizing" the font for a particular website or web application; is that allowed? -Yes, it is permitted, but remember that these optimized versions are Modified Versions and so must follow OFL requirements like appropriate renaming. Also you need to bear in mind the other important parameters beyond compression, speed and responsiveness: you need to consider the audience of your particular website or web application, as choosing some optimization parameters may turn out to be less than ideal for them. Subsetting by removing certain glyphs or features may seriously limit functionality of the font in various languages that your users expect. It may also introduce degradation of quality in the rendering or specific bugs on the various target platforms compared to the original font from upstream. In other words, remember that one person's optimized font may be another person's missing feature. Various advanced typographic features (OpenType, Graphite or AAT) are also available through CSS and may provide the desired effects without the need to modify the font. - -2.6 Is subsetting a web font considered modification? -Yes. Removing any parts of the font when delivering a web font to a browser, including unused glyphs and smart font code, is considered modification. This is permitted by the OFL but would not normally allow the use of RFNs. Some newer subsetting technologies may be able to subset in a way that allows users to effectively have access to the complete font, including smart font behaviour. See 2.8 and http://scripts.sil.org/OFL_web_fonts_and_RFNs - -2.7 Are there any situations in which a modified web font could use RFNs? -Yes. If a web font is optimized only in ways that preserve Functional Equivalence (see 2.8), then it may use RFNs, as it reasonably represents the Original Version and respects the intentions of the author(s) and the main purposes of the RFN mechanism (avoids collisions, protects authors, minimizes support, encourages derivatives). However this is technically very difficult and often impractical, so a much better scenario is for the web font service or provider to sign a separate agreement with the author(s) that allows the use of RFNs for Modified Versions. - -2.8 How do you know if an optimization to a web font preserves Functional Equivalence? -Functional Equivalence is described in full in the 'Web fonts and RFNs' paper at http://scripts.sil.org/OFL_web_fonts_and_RFNs, in general, an optimized font is deemed to be Functionally Equivalent (FE) to the Original Version if it: - -- Supports the same full character inventory. If a character can be properly displayed using the Original Version, then that same character, encoded correctly on a web page, will display properly. -- Provides the same smart font behavior. Any dynamic shaping behavior that works with the Original Version should work when optimized, unless the browser or environment does not support it. There does not need to be guaranteed support in the client, but there should be no forced degradation of smart font or shaping behavior, such as the removal or obfuscation of OpenType, Graphite or AAT tables. -- Presents text with no obvious degradation in visual quality. The lettershapes should be equally (or more) readable, within limits of the rendering platform. -- Preserves original author, project and license metadata. At a minimum, this should include: Copyright and authorship; The license as stated in the Original Version, whether that is the full text of the OFL or a link to the web version; Any RFN declarations; Information already present in the font or documentation that points back to the Original Version, such as a link to the project or the author's website. - -If an optimized font meets these requirements, and so is considered to be FE, then it's very likely that the original author would feel that the optimized font is a good and reasonable equivalent. If it falls short of any of these requirements, the optimized font does not reasonably represent the Original Version, and so should be considered to be a Modified Version. Like other Modified Versions, it would not be allowed to use any RFNs and you simply need to pick your own font name. - -2.9 Isn't use of web fonts another form of embedding? -No. Unlike embedded fonts in a PDF, web fonts are not an integrated part of the document itself. They are not specific to a single document and are often applied to thousands of documents around the world. The font data is not stored alongside the document data and often originates from a different location. The ease by which the web fonts used by a document may be identified and downloaded for desktop use demonstrates that they are philosophically and technically separate from the web pages that specify them. See http://scripts.sil.org/OFL_web_fonts_and_RFNs - -2.10 So would it be better to not use RFNs at all if you want your font to be distributed by a web fonts service? -No. Although the OFL does not require authors to use RFNs, the RFN mechanism is an important part of the OFL model and completely compatible with web font services. If that web font service modifies the fonts, then the best solution is to sign a separate agreement for the use of any RFNs. It is perfectly valid for an author to not declare any RFNs, but before they do so they need to fully understand the benefits they are giving up, and the overall negative effect of allowing many different versions bearing the same name to be widely distributed. As a result, we don't generally recommend it. - -2.11 What should an agreement for the use of RFNs say? Are there any examples? -There is no prescribed format for this agreement, as legal systems vary, and no recommended examples. Authors may wish to add specific clauses to further restrict use, require author review of Modified Versions, establish user support mechanisms or provide terms for ending the agreement. Such agreements are usually not public, and apply only to the main parties. However, it would be very beneficial for web font services to clearly state when they have established such agreements, so that the public understands clearly that their service is operating appropriately. - -See the separate paper on 'Web Fonts & RFNs' for in-depth discussion of issues related to the use of RFNs for web fonts. This is available at http://scripts.sil.org/OFL_web_fonts_and_RFNs - - -3 MODIFYING OFL-LICENSED FONTS - -3.1 Can I change the fonts? Are there any limitations to what things I can and cannot change? -You are allowed to change anything, as long as such changes do not violate the terms of the license. In other words, you are not allowed to remove the copyright statement(s) from the font, but you could put additional information into it that covers your contribution. See the placeholders in the OFL header template for recommendations on where to add your own statements. (Remember that, when authors have reserved names via the RFN mechanism, you need to change the internal names of the font to your own font name when making your modified version even if it is just a small change.) - -3.2 I have a font that needs a few extra glyphs - can I take them from an OFL licensed font and copy them into mine? -Yes, but if you distribute that font to others it must be under the OFL, and include the information mentioned in condition 2 of the license. - -3.3 Can I charge people for my additional work? In other words, if I add a bunch of special glyphs or OpenType/Graphite/AAT code, can I sell the enhanced font? -Not by itself. Derivative fonts must be released under the OFL and cannot be sold by themselves. It is permitted, however, to include them in a larger software package (such as text editors, office suites or operating systems), even if the larger package is sold. In that case, you are strongly encouraged, but not required, to also make that derived font easily and freely available outside of the larger package. - -3.4 Can I pay someone to enhance the fonts for my use and distribution? -Yes. This is a good way to fund the further development of the fonts. Keep in mind, however, that if the font is distributed to others it must be under the OFL. You won't be able to recover your investment by exclusively selling the font, but you will be making a valuable contribution to the community. Please remember how you have benefited from the contributions of others. - -3.5 I need to make substantial revisions to the font to make it work with my program. It will be a lot of work, and a big investment, and I want to be sure that it can only be distributed with my program. Can I restrict its use? -No. If you redistribute a Modified Version of the font it must be under the OFL. You may not restrict it in any way beyond what the OFL permits and requires. This is intended to ensure that all released improvements to the fonts become available to everyone. But you will likely get an edge over competitors by being the first to distribute a bundle with the enhancements. Again, please remember how you have benefited from the contributions of others. - -3.6 Do I have to make any derivative fonts (including extended source files, build scripts, documentation, etc.) publicly available? -No, but please consider sharing your improvements with others. You may find that you receive in return more than what you gave. - -3.7 If a trademark is claimed in the OFL font, does that trademark need to remain in modified fonts? -Yes. Any trademark notices must remain in any derivative fonts to respect trademark laws, but you may add any additional trademarks you claim, officially registered or not. For example if an OFL font called "Foo" contains a notice that "Foo is a trademark of Acme", then if you rename the font to "Bar" when creating a Modified Version, the new trademark notice could say "Foo is a trademark of Acme Inc. - Bar is a trademark of Roadrunner Technologies Ltd.". Trademarks work alongside the OFL and are not subject to the terms of the licensing agreement. The OFL does not grant any rights under trademark law. Bear in mind that trademark law varies from country to country and that there are no international trademark conventions as there are for copyright. You may need to significantly invest in registering and defending a trademark for it to remain valid in the countries you are interested in. This may be costly for an individual independent designer. - -3.8 If I commit changes to a font (or publish a branch in a DVCS) as part of a public open source software project, do I have to change the internal font names? -Only if there are declared RFNs. Making a public commit or publishing a public branch is effectively redistributing your modifications, so any change to the font will require that you do not use the RFNs. Even if there are no RFNs, it may be useful to change the name or add a suffix indicating that a particular version of the font is still in development and not released yet. This will clearly indicate to users and fellow designers that this particular font is not ready for release yet. See section 5 for more details. - - -4 LICENSING YOUR ORIGINAL FONTS UNDER THE OFL - -4.1 Can I use the SIL OFL for my own fonts? -Yes! We heartily encourage everyone to use the OFL to distribute their own original fonts. It is a carefully constructed license that allows great freedom along with enough artistic integrity protection for the work of the authors as well as clear rules for other contributors and those who redistribute the fonts. The licensing model is used successfully by various organisations, both for-profit and not-for-profit, to release fonts of varying levels of scope and complexity. - -4.2 What do I have to do to apply the OFL to my font? -If you want to release your fonts under the OFL, we recommend you do the following: - -4.2.1 Put your copyright and Reserved Font Names information at the beginning of the main OFL.txt file in place of the dedicated placeholders (marked with the <> characters). Include this file in your release package. - -4.2.2 Put your copyright and the OFL text with your chosen Reserved Font Name(s) into your font files (the copyright and license fields). A link to the OFL text on the OFL web site is an acceptable (but not recommended) alternative. Also add this information to any other components (build scripts, glyph databases, documentation, test files, etc). Accurate metadata in your font files is beneficial to you as an increasing number of applications are exposing this information to the user. For example, clickable links can bring users back to your website and let them know about other work you have done or services you provide. Depending on the format of your fonts and sources, you can use template human-readable headers or machine-readable metadata. You should also double-check that there is no conflicting metadata in the font itself contradicting the license, such as the fstype bits in the os2 table or fields in the name table. - -4.2.3 Write an initial FONTLOG.txt for your font and include it in the release package (see Section 6 and Appendix A for details including a template). - -4.2.4 Include the relevant practical documentation on the license by adding the current OFL-FAQ.txt file in your package. - -4.2.5 If you wish you can use the OFL graphics (http://scripts.sil.org/OFL_logo) on your website. - -4.3 Will you make my font OFL for me? -We won't do the work for you. We can, however, try to answer your questions, unfortunately we do not have the resources to review and check your font packages for correct use of the OFL. We recommend you turn to designers, foundries or consulting companies with experience in doing open font design to provide this service to you. - -4.4 Will you distribute my OFL font for me? -No, although if the font is of sufficient quality and general interest we may include a link to it on our partial list of OFL fonts on the OFL web site. You may wish to consider other open font catalogs or hosting services, such as the Unifont Font Guide (http://unifont.org/fontguide), The League of Movable Type (http://theleagueofmovabletype.com) or the Open Font Library (http://openfontlibrary.org/), which despite the name has no direct relationship to the OFL or SIL. We do not endorse any particular catalog or hosting service - it is your responsibility to determine if the service is right for you and if it treats authors with fairness. - -4.5 Why should I use the OFL for my fonts? -- to meet needs for fonts that can be modified to support lesser-known languages -- to provide a legal and clear way for people to respect your work but still use it (and reduce piracy) -- to involve others in your font project -- to enable your fonts to be expanded with new weights and improved writing system/language support -- to allow more technical font developers to add features to your design (such as OpenType, Graphite or AAT support) -- to renew the life of an old font lying on your hard drive with no business model -- to allow your font to be included in Libre Software operating systems like Ubuntu -- to give your font world status and wide, unrestricted distribution -- to educate students about quality typeface and font design -- to expand your test base and get more useful feedback -- to extend your reach to new markets when users see your metadata and go to your website -- to get your font more easily into one of the web font online services -- to attract attention for your commercial fonts -- to make money through web font services -- to make money by bundling fonts with applications -- to make money adjusting and extending existing open fonts -- to get a better chance that foundations/NGOs/charities/companies who commission fonts will pick you -- to be part of a sharing design and development community -- to give back and contribute to a growing body of font sources - - -5 CHOOSING RESERVED FONT NAMES - -5.1 What are Reserved Font Names? -These are font names, or portions of font names, that the author has chosen to reserve for use only with the Original Version of the font, or for Modified Version(s) created by the original author. - -5.2 Why can't I use the Reserved Font Names in my derivative font names? I'd like people to know where the design came from. -The best way to acknowledge the source of the design is to thank the original authors and any other contributors in the files that are distributed with your revised font (although no acknowledgement is required). The FONTLOG is a natural place to do this. Reserved Font Names ensure that the only fonts that have the original names are the unmodified Original Versions. This allows designers to maintain artistic integrity while allowing collaboration to happen. It eliminates potential confusion and name conflicts. When choosing a name, be creative and avoid names that reuse almost all the same letters in the same order or sound like the original. It will help everyone if Original Versions and Modified Versions can easily be distinguished from one another and from other derivatives. Any substitution and matching mechanism is outside the scope of the license. - -5.3 What do you mean by "primary name as presented to the user"? Are you referring to the font menu name? -Yes, this applies to the font menu name and other mechanisms that specify a font in a document. It would be fine, however, to keep a text reference to the original fonts in the description field, in your modified source file or in documentation provided alongside your derivative as long as no one could be confused that your modified source is the original. But you cannot use the Reserved Font Names in any way to identify the font to the user (unless the Copyright Holder(s) allow(s) it through a separate agreement). Users who install derivatives (Modified Versions) on their systems should not see any of the original Reserved Font Names in their font menus, for example. Again, this is to ensure that users are not confused and do not mistake one font for another and so expect features only another derivative or the Original Version can actually offer. - -5.4 Am I not allowed to use any part of the Reserved Font Names? -You may not use individual words from the Reserved Font Names, but you would be allowed to use parts of words, as long as you do not use any word from the Reserved Font Names entirely. We do not recommend using parts of words because of potential confusion, but it is allowed. For example, if "Foobar" was a Reserved Font Name, you would be allowed to use "Foo" or "bar", although we would not recommend it. Such an unfortunate choice would confuse the users of your fonts as well as make it harder for other designers to contribute. - -5.5 So what should I, as an author, identify as Reserved Font Names? -Original authors are encouraged to name their fonts using clear, distinct names, and only declare the unique parts of the name as Reserved Font Names. For example, the author of a font called "Foobar Sans" would declare "Foobar" as a Reserved Font Name, but not "Sans", as that is a common typographical term, and may be a useful word to use in a derivative font name. Reserved Font Names should also be single words for simplicity and legibility. A font called "Flowing River" should have Reserved Font Names "Flowing" and "River", not "Flowing River". You also need to be very careful about reserving font names which are already linked to trademarks (whether registered or not) which you do not own. - -5.6 Do I, as an author, have to identify any Reserved Font Names? -No. RFNs are optional and not required, but we encourage you to use them. This is primarily to avoid confusion between your work and Modified Versions. As an author you can release a font under the OFL and not declare any Reserved Font Names. There may be situations where you find that using no RFNs and letting your font be changed and modified - including any kind of modification - without having to change the original name is desirable. However you need to be fully aware of the consequences. There will be no direct way for end-users and other designers to distinguish your Original Version from many Modified Versions that may be created. You have to trust whoever is making the changes and the optimizations to not introduce problematic changes. The RFNs you choose for your own creation have value to you as an author because they allow you to maintain artistic integrity and keep some control over the distribution channel to your end-users. For discussion of RFNs and web fonts see section 2. - -5.7 Are any names (such as the main font name) reserved by default? -No. That is a change to the license as of version 1.1. If you want any names to be Reserved Font Names, they must be specified after the copyright statement(s). - -5.8 Is there any situation in which I can use Reserved Font Names for a Modified Version? -The Copyright Holder(s) can give certain trusted parties the right to use any of the Reserved Font Names through separate written agreements. For example, even if "Foobar" is a RFN, you could write up an agreement to give company "XYZ" the right to distribute a modified version with a name that includes "Foobar". This allows for freedom without confusion. The existence of such an agreement should be made as clear as possible to downstream users and designers in the distribution package and the relevant documentation. They need to know if they are a party to the agreement or not and what they are practically allowed to do or not even if all the details of the agreement are not public. - -5.9 Do font rebuilds require a name change? Do I have to change the name of the font when my packaging workflow includes a full rebuild from source? -Yes, all rebuilds which change the font data and the smart code are Modified Versions and the requirements of the OFL apply: you need to respect what the Author(s) have chosen in terms of Reserved Font Names. However if a package (or installer) is simply a wrapper or a compressed structure around the final font - leaving them intact on the inside - then no name change is required. Please get in touch with the author(s) and copyright holder(s) to inquire about the presence of font sources beyond the final font file(s) and the recommended build path. That build path may very well be non-trivial and hard to reproduce accurately by the maintainer. If a full font build path is made available by the upstream author(s) please be aware that any regressions and changes you may introduce when doing a rebuild for packaging purposes is your own responsibility as a package maintainer since you are effectively creating a separate branch. You should make it very clear to your users that your rebuilt version is not the canonical one from upstream. - -5.10 Can I add other Reserved Font Names when making a derivative font? -Yes. List your additional Reserved Font Names after your additional copyright statement, as indicated with example placeholders at the top of the OFL.txt file. Be sure you do not remove any existing RFNs but only add your own. RFN statements should be placed next to the copyright statement of the relevant author as indicated in the OFL.txt template to make them visible to designers wishing to make their separate version. - - -6 ABOUT THE FONTLOG - -6.1 What is this FONTLOG thing exactly? -It has three purposes: 1) to provide basic information on the font to users and other designers and developers, 2) to document changes that have been made to the font or accompanying files, either by the original authors or others, and 3) to provide a place to acknowledge authors and other contributors. Please use it! - -6.2 Is the FONTLOG required? -It is not a requirement of the license, but we strongly recommend you have one. - -6.3 Am I required to update the FONTLOG when making Modified Versions? -No, but users, designers and other developers might get very frustrated with you if you don't. People need to know how derivative fonts differ from the original, and how to take advantage of the changes, or build on them. There are utilities that can help create and maintain a FONTLOG, such as the FONTLOG support in FontForge. - -6.4 What should the FONTLOG look like? -It is typically a separate text file (FONTLOG.txt), but can take other formats. It commonly includes these four sections: - -- brief header describing the FONTLOG itself and name of the font family -- Basic Font Information - description of the font family, purpose and breadth -- ChangeLog - chronological listing of changes -- Acknowledgements - list of authors and contributors with contact information - -It could also include other sections, such as: where to find documentation, how to make contributions, information on contributing organizations, source code details, and a short design guide. See Appendix A for an example FONTLOG. - - -7 MAKING CONTRIBUTIONS TO OFL PROJECTS - -7.1 Can I contribute work to OFL projects? -In many cases, yes. It is common for OFL fonts to be developed by a team of people who welcome contributions from the wider community. Contact the original authors for specific information on how to participate in their projects. - -7.2 Why should I contribute my changes back to the original authors? -It would benefit many people if you contributed back in response to what you've received. Your contributions and improvements to the fonts and other components could be a tremendous help and would encourage others to contribute as well and 'give back'. You will then benefit from other people's contributions as well. Sometimes maintaining your own separate version takes more effort than merging back with the original. Be aware that any contributions, however, must be either your own original creation or work that you own, and you may be asked to affirm that clearly when you contribute. - -7.3 I've made some very nice improvements to the font. Will you consider adopting them and putting them into future Original Versions? -Most authors would be very happy to receive such contributions. Keep in mind that it is unlikely that they would want to incorporate major changes that would require additional work on their end. Any contributions would likely need to be made for all the fonts in a family and match the overall design and style. Authors are encouraged to include a guide to the design with the fonts. It would also help to have contributions submitted as patches or clearly marked changes - the use of smart source revision control systems like subversion, mercurial, git or bzr is a good idea. Please follow the recommendations given by the author(s) in terms of preferred source formats and configuration parameters for sending contributions. If this is not indicated in a FONTLOG or other documentation of the font, consider asking them directly. Examples of useful contributions are bug fixes, additional glyphs, stylistic alternates (and the smart font code to access them) or improved hinting. Keep in mind that some kinds of changes (esp. hinting) may be technically difficult to integrate. - -7.4 How can I financially support the development of OFL fonts? -It is likely that most authors of OFL fonts would accept financial contributions - contact them for instructions on how to do this. Such contributions would support future development. You can also pay for others to enhance the fonts and contribute the results back to the original authors for inclusion in the Original Version. - - -8 ABOUT THE LICENSE ITSELF - -8.1 I see that this is version 1.1 of the license. Will there be later changes? -Version 1.1 is the first minor revision of the OFL. We are confident that version 1.1 will meet most needs, but are open to future improvements. Any revisions would be for future font releases, and previously existing licenses would remain in effect. No retroactive changes are possible, although the Copyright Holder(s) can re-release the font under a revised OFL. All versions will be available on our web site: http://scripts.sil.org/OFL. - -8.2 Does this license restrict the rights of the Copyright Holder(s)? -No. The Copyright Holder(s) still retain(s) all the rights to their creation; they are only releasing a portion of it for use in a specific way. For example, the Copyright Holder(s) may choose to release a 'basic' version of their font under the OFL, but sell a restricted 'enhanced' version under a different license. They may also choose to release the same font under both the OFL and some other license. Only the Copyright Holder(s) can do this, and doing so does not change the terms of the OFL as it applies to that font. - -8.3 Is the OFL a contract or a license? -The OFL is a worldwide license based on international copyright agreements and conventions. It is not a contract and so does not require you to sign it to have legal validity. By using, modifying and redistributing components under the OFL you indicate that you accept the license. - -8.4 I really like the terms of the OFL, but want to change it a little. Am I allowed to take ideas and actual wording from the OFL and put them into my own custom license for distributing my fonts? -We strongly recommend against creating your very own unique open licensing model. Using a modified or derivative license will likely cut you off - along with the font(s) under that license - from the community of designers using the OFL, potentially expose you and your users to legal liabilities, and possibly put your work and rights at risk. The OFL went though a community and legal review process that took years of effort, and that review is only applicable to an unmodified OFL. The text of the OFL has been written by SIL (with review and consultation from the community) and is copyright (c) 2005-2017 SIL International. You may re-use the ideas and wording (in part, not in whole) in another non-proprietary license provided that you call your license by another unambiguous name, that you do not use the preamble, that you do not mention SIL and that you clearly present your license as different from the OFL so as not to cause confusion by being too similar to the original. If you feel the OFL does not meet your needs for an open license, please contact us. - -8.5 Can I quote from the OFL FAQ? -Yes, SIL gives permission to quote from the OFL FAQ (OFL-FAQ.txt), in whole or in part, provided that the quoted text is: - -- unmodified, -- used to help explain the intent of the OFL, rather than cause misunderstanding, and -- accompanied with the following attribution: "From the OFL FAQ (OFL-FAQ.txt), copyright (c) 2005-2020 SIL International. Used by permission. http://scripts.sil.org/OFL-FAQ_web". - -8.6 Can I translate the license and the FAQ into other languages? -SIL certainly recognises the need for people who are not familiar with English to be able to understand the OFL and its use. Making the license very clear and readable has been a key goal for the OFL, but we know that people understand their own language best. - -If you are an experienced translator, you are very welcome to translate the OFL and OFL-FAQ so that designers and users in your language community can understand the license better. But only the original English version of the license has legal value and has been approved by the community. Translations do not count as legal substitutes and should only serve as a way to explain the original license. SIL - as the author and steward of the license for the community at large - does not approve any translation of the OFL as legally valid because even small translation ambiguities could be abused and create problems. - -SIL gives permission to publish unofficial translations into other languages provided that they comply with the following guidelines: - -- Put the following disclaimer in both English and the target language stating clearly that the translation is unofficial: - -"This is an unofficial translation of the SIL Open Font License into . It was not published by SIL International, and does not legally state the distribution terms for fonts that use the OFL. A release under the OFL is only valid when using the original English text. However, we recognize that this unofficial translation will help users and designers not familiar with English to better understand and use the OFL. We encourage designers who consider releasing their creation under the OFL to read the OFL-FAQ in their own language if it is available. Please go to http://scripts.sil.org/OFL for the official version of the license and the accompanying OFL-FAQ." - -- Keep your unofficial translation current and update it at our request if needed, for example if there is any ambiguity which could lead to confusion. - -If you start such a unofficial translation effort of the OFL and OFL-FAQ please let us know. - -8.7 Does the OFL have an explicit expiration term? -No, the implicit intent of the OFL is that the permissions granted are perpetual and irrevocable. - - -9 ABOUT SIL INTERNATIONAL - -9.1 Who is SIL International and what do they do? -SIL serves language communities worldwide, building their capacity for sustainable language development, by means of research, translation, training and materials development. SIL makes its services available to all without regard to religious belief, political ideology, gender, race, or ethnic background. SIL's members and volunteers share a Christian commitment. - -9.2 What does this have to do with font licensing? -The ability to read, write, type and publish in one's own language is one of the most critical needs for millions of people around the world. This requires fonts that are widely available and support lesser-known languages. SIL develops - and encourages others to develop - a complete stack of writing systems implementation components available under open licenses. This open stack includes input methods, smart fonts, smart rendering libraries and smart applications. There has been a need for a common open license that is specifically applicable to fonts and related software (a crucial component of this stack), so SIL developed the SIL Open Font License with the help of the Free/Libre and Open Source Software community. - -9.3 How can I contact SIL? -Our main web site is: http://www.sil.org/ -Our site about complex scripts is: http://scripts.sil.org/ -Information about this license (and contact information) is at: http://scripts.sil.org/OFL - - -APPENDIX A - FONTLOG EXAMPLE - -Here is an example of the recommended format for a FONTLOG, although other formats are allowed. - ------ -FONTLOG for the GlobalFontFamily fonts - -This file provides detailed information on the GlobalFontFamily Font Software. This information should be distributed along with the GlobalFontFamily fonts and any derivative works. - -Basic Font Information - -GlobalFontFamily is a Unicode typeface family that supports all languages that use the Latin script and its variants, and could be expanded to support other scripts. - -NewWorldFontFamily is based on the GlobalFontFamily and also supports Greek, Hebrew, Cyrillic and Armenian. - -More specifically, this release supports the following Unicode ranges... -This release contains... -Documentation can be found at... -To contribute to the project... - -ChangeLog - -10 December 2010 (Fred Foobar) GlobalFontFamily-devel version 1.4 -- fix new build and testing system (bug #123456) - -1 August 2008 (Tom Parker) GlobalFontFamily version 1.2.1 -- Tweaked the smart font code (Branch merged with trunk version) -- Provided improved build and debugging environment for smart behaviours - -7 February 2007 (Pat Johnson) NewWorldFontFamily Version 1.3 -- Added Greek and Cyrillic glyphs - -7 March 2006 (Fred Foobar) NewWorldFontFamily Version 1.2 -- Tweaked contextual behaviours - -1 Feb 2005 (Jane Doe) NewWorldFontFamily Version 1.1 -- Improved build script performance and verbosity -- Extended the smart code documentation -- Corrected minor typos in the documentation -- Fixed position of combining inverted breve below (U+032F) -- Added OpenType/Graphite smart code for Armenian -- Added Armenian glyphs (U+0531 -> U+0587) -- Released as "NewWorldFontFamily" - -1 Jan 2005 (Joe Smith) GlobalFontFamily Version 1.0 -- Initial release - -Acknowledgements - -If you make modifications be sure to add your name (N), email (E), web-address (if you have one) (W) and description (D). This list is in alphabetical order. - -N: Jane Doe -E: jane@university.edu -W: http://art.university.edu/projects/fonts -D: Contributor - Armenian glyphs and code - -N: Fred Foobar -E: fred@foobar.org -W: http://foobar.org -D: Contributor - misc Graphite fixes - -N: Pat Johnson -E: pat@fontstudio.org -W: http://pat.fontstudio.org -D: Designer - Greek & Cyrillic glyphs based on Roman design - -N: Tom Parker -E: tom@company.com -W: http://www.company.com/tom/projects/fonts -D: Engineer - original smart font code - -N: Joe Smith -E: joe@fontstudio.org -W: http://joe.fontstudio.org -D: Designer - original Roman glyphs - -Fontstudio.org is an not-for-profit design group whose purpose is... -Foobar.org is a distributed community of developers... -Company.com is a small business who likes to support community designers... -University.edu is a renowned educational institution with a strong design department... ------ - diff --git a/font_files/font-project-space/other_files/ofl.txt b/font_files/font-project-space/other_files/ofl.txt deleted file mode 100644 index 9fd644f..0000000 --- a/font_files/font-project-space/other_files/ofl.txt +++ /dev/null @@ -1,94 +0,0 @@ -Copyright (c) 2022, Alexander Sviridov (https://www.behance.net/verwave | vervvave@gmail.com), -with Reserved Font Name Project Space. - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/font_files/font-project-space/ttf/project-space.ttf b/font_files/font-project-space/ttf/project-space.ttf deleted file mode 100644 index ef4fa5b..0000000 Binary files a/font_files/font-project-space/ttf/project-space.ttf and /dev/null differ diff --git a/font_files/font-provisions/otf/provisions-freepersonaluseonly.otf b/font_files/font-provisions/otf/provisions-freepersonaluseonly.otf deleted file mode 100644 index e2870a5..0000000 Binary files a/font_files/font-provisions/otf/provisions-freepersonaluseonly.otf and /dev/null differ diff --git a/font_files/font-provisions/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-provisions/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-provisions/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-qraydom-font-1764371345-0/other_files/Befonts-License.txt b/font_files/font-qraydom-font-1764371345-0/other_files/Befonts-License.txt deleted file mode 100644 index bebe301..0000000 --- a/font_files/font-qraydom-font-1764371345-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Personal Use -Link: https://befonts.com/qraydom-font.html diff --git a/font_files/font-qraydom-font-1764371345-0/ttf/Qraydom.ttf b/font_files/font-qraydom-font-1764371345-0/ttf/Qraydom.ttf deleted file mode 100644 index 8010b27..0000000 Binary files a/font_files/font-qraydom-font-1764371345-0/ttf/Qraydom.ttf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/brother-bold.otf b/font_files/font-quasimoda-family/otf/brother-bold.otf deleted file mode 100644 index da0f3a9..0000000 Binary files a/font_files/font-quasimoda-family/otf/brother-bold.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black-italic.otf deleted file mode 100644 index d9bd3a4..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black.otf deleted file mode 100644 index 70e120f..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold-italic.otf deleted file mode 100644 index 6ad4bfb..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold.otf deleted file mode 100644 index 78f24e9..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold-italic.otf deleted file mode 100644 index e5c7b3b..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold.otf deleted file mode 100644 index 24e163c..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight-italic.otf deleted file mode 100644 index 3edeb2e..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight.otf deleted file mode 100644 index 0b04aa8..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline-italic.otf deleted file mode 100644 index a39a860..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline.otf deleted file mode 100644 index 0c16376..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy-italic.otf deleted file mode 100644 index 08e1a51..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy.otf deleted file mode 100644 index c3d0ed4..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-italic.otf deleted file mode 100644 index 67d29b2..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light-italic.otf deleted file mode 100644 index 52d2c0f..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light.otf deleted file mode 100644 index 67cc55a..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium-italic.otf deleted file mode 100644 index 87f612b..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium.otf deleted file mode 100644 index 438e1cc..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-regular.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-regular.otf deleted file mode 100644 index 2778b9b..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-regular.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold-italic.otf deleted file mode 100644 index 580b89d..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold.otf deleted file mode 100644 index a065f67..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin-italic.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin-italic.otf deleted file mode 100644 index 05a6e53..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin-italic.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin.otf b/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin.otf deleted file mode 100644 index e67404b..0000000 Binary files a/font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin.otf and /dev/null differ diff --git a/font_files/font-quasimoda-family/other_files/lettersoup-commercial-license.html b/font_files/font-quasimoda-family/other_files/lettersoup-commercial-license.html deleted file mode 100644 index cb39481..0000000 --- a/font_files/font-quasimoda-family/other_files/lettersoup-commercial-license.html +++ /dev/null @@ -1,35 +0,0 @@ - -lettersoup commercial license - - -

lettersoup commercial license

ettersoup Desktop End-User License Agreement

-

This package contains digital fonts (“the Product”), created and manufactured by lettersoup (“the Foundry”) and delivered to you via the Foundry’s authorized distributor (“the Distributor”) as a result of a purchase (“the Purchase”). By downloading the Product, you are agreeing to be bound by the terms of this Agreement. This Agreement, in conjunction with the receipt that accompanies the Purchase, constitutes the complete agreement between you and the Foundry.

-

1. Allowed uses

-

You may use the Product to create documents, scalable drawings and fixed-size images on any surface (collectively: “the Images”) as long as the Images are not used as a replacement for the Product, i.e. as long as the Images do not represent a substantial subset of the Product’s character set that could be used to create further Images with different text content.

-

2. Number of users

-

The maximum number of simultaneous users is specified in the applicable receipt. All users must belong to the same company or household purchasing the Product.

-

3. Third parties

-

You may provide the Product to a graphic designer, printer or other service bureau that is working on your behalf only if they agree to use the Product exclusively for your work, agree to the terms of this license, and retain no copies of the font on completion of the work.

-

You may not provide the Product or make it accessible to any other third parties.

-

4. Embedding

-

You may embed the Product into any document you send to third parties. Such documents may be viewed and printed (but not edited) by the recipients.
-You may not under any circumstances embed the Product, or any derivatives thereof, into software or hardware products in which the purchasers of such products will use the Product. Such use requires a different license, which may be offered by the Foundry.

-

5. Modifications

-

You may import characters from the Product as graphical objects into a drawing program and modify such graphical objects.
-You may not modify, adapt, translate, reverse engineer, decompile, disassemble, or create derivative works based on the Product without Foundry’s prior written consent.

-

6. Copyright

-

The Product and the accompanying materials are copyrighted and contain proprietary information and trade secrets belonging to the Foundry. Unauthorized copying of the Product even if modified, merged, or included with other software, or of the written materials, is expressly forbidden. You may be held legally responsible for any infringement of the Foundry’s intellectual property rights that is caused or encouraged by your failure to abide by the terms of this Agreement.

-

7. Termination

-

This Agreement is effective until terminated. This Agreement will terminate automatically without notice from the Foundry or the Distributor if you fail to comply with any provision contained herein. Upon termination, you must destroy the written materials, the Product, and all copies of them, in part and in whole, including modified copies, if any.

-

8. Product Upgrades

-

The Distributor may, from time to time, update the Product. Product upgrade pricing may apply.

-

9. Disclaimer and Limited Warranty

-

The Distributor warrants the Product to be free from defects in materials and workmanship under normal use for a period of twenty one (21) days from the date of delivery as shown on your receipt. The Distributor’s entire liability and your exclusive remedy as to a defective product shall be, at the Distributor’s option, either return of purchase price or replacement of any such product that is returned to the Distributor with a copy of the invoice. The Distributor shall have no responsibility to replace the product or refund the purchase price if failure results from accident, abuse or misapplication, or if any product is lost or damaged due to theft, fire, or negligence. Any replacement product will be warranted for twenty one (21) days. This warranty gives you specific legal rights. You may have other rights, which vary from state to state.

-

EXCEPT AS EXPRESSLY PROVIDED ABOVE, THE PRODUCT, IS PROVIDED “AS IS”. NEITHER THE DISTRIBUTOR NOR THE FOUNDRY MAKES ANY WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

-

The entire risk as to the quality and performance of the Product rests upon you. Neither the Distributor nor the Foundry warrants that the functions contained in the Product will meet your requirements or that the operation of the software will be uninterrupted or error free.

-

NEITHER THE DISTRIBUTOR NOR THE FOUNDRY SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, OR INCIDENTAL DAMAGES (INCLUDING DAMAGES FROM LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, AND THE LIKE) ARISING OUT OF THE USE OF OR INABILITY TO USE THE PRODUCT EVEN IF THE DISTRIBUTOR OR THE FOUNDRY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-Because some states do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply to you.

-

10. Governing Law

-

This Agreement will be governed by the laws in force in the Federal Republic of Germany.

- - \ No newline at end of file diff --git a/font_files/font-quasimoda-family/ttf/brother-bold.ttf b/font_files/font-quasimoda-family/ttf/brother-bold.ttf deleted file mode 100644 index b76c0ca..0000000 Binary files a/font_files/font-quasimoda-family/ttf/brother-bold.ttf and /dev/null differ diff --git a/font_files/font-quentine/ttf/Quentine Stamp Typeface.ttf b/font_files/font-quentine/ttf/Quentine Stamp Typeface.ttf deleted file mode 100755 index 79b4705..0000000 Binary files a/font_files/font-quentine/ttf/Quentine Stamp Typeface.ttf and /dev/null differ diff --git a/font_files/font-quentine/ttf/Quentine Typeface.ttf b/font_files/font-quentine/ttf/Quentine Typeface.ttf deleted file mode 100755 index dd65ed4..0000000 Binary files a/font_files/font-quentine/ttf/Quentine Typeface.ttf and /dev/null differ diff --git a/font_files/font-revain/ttf/revain-regular.ttf b/font_files/font-revain/ttf/revain-regular.ttf deleted file mode 100644 index 0847e60..0000000 Binary files a/font_files/font-revain/ttf/revain-regular.ttf and /dev/null differ diff --git a/font_files/font-rigid-light/otf/rigid-display-light.otf b/font_files/font-rigid-light/otf/rigid-display-light.otf deleted file mode 100644 index 9e4b358..0000000 Binary files a/font_files/font-rigid-light/otf/rigid-display-light.otf and /dev/null differ diff --git a/font_files/font-rigid-light/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-rigid-light/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-rigid-light/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-rigid-light/ttf/rigid-display-light.ttf b/font_files/font-rigid-light/ttf/rigid-display-light.ttf deleted file mode 100644 index a08c6d0..0000000 Binary files a/font_files/font-rigid-light/ttf/rigid-display-light.ttf and /dev/null differ diff --git a/font_files/font-rocky_monkey/otf/rocky-monkey-italic.otf b/font_files/font-rocky_monkey/otf/rocky-monkey-italic.otf deleted file mode 100644 index 4828d8f..0000000 Binary files a/font_files/font-rocky_monkey/otf/rocky-monkey-italic.otf and /dev/null differ diff --git a/font_files/font-rocky_monkey/otf/rocky-monkey.otf b/font_files/font-rocky_monkey/otf/rocky-monkey.otf deleted file mode 100644 index 485ece7..0000000 Binary files a/font_files/font-rocky_monkey/otf/rocky-monkey.otf and /dev/null differ diff --git a/font_files/font-rocky_monkey/ttf/rocky-monkey-italic.ttf b/font_files/font-rocky_monkey/ttf/rocky-monkey-italic.ttf deleted file mode 100644 index fcb0183..0000000 Binary files a/font_files/font-rocky_monkey/ttf/rocky-monkey-italic.ttf and /dev/null differ diff --git a/font_files/font-rocky_monkey/ttf/rocky-monkey.ttf b/font_files/font-rocky_monkey/ttf/rocky-monkey.ttf deleted file mode 100644 index d1daef3..0000000 Binary files a/font_files/font-rocky_monkey/ttf/rocky-monkey.ttf and /dev/null differ diff --git a/font_files/font-rocky_monkey/web/rocky-monkey-italic.woff b/font_files/font-rocky_monkey/web/rocky-monkey-italic.woff deleted file mode 100644 index c948b74..0000000 Binary files a/font_files/font-rocky_monkey/web/rocky-monkey-italic.woff and /dev/null differ diff --git a/font_files/font-rocky_monkey/web/rocky-monkey-italic.woff2 b/font_files/font-rocky_monkey/web/rocky-monkey-italic.woff2 deleted file mode 100644 index 9e9a2ef..0000000 Binary files a/font_files/font-rocky_monkey/web/rocky-monkey-italic.woff2 and /dev/null differ diff --git a/font_files/font-rocky_monkey/web/rocky-monkey.woff b/font_files/font-rocky_monkey/web/rocky-monkey.woff deleted file mode 100644 index 078fde9..0000000 Binary files a/font_files/font-rocky_monkey/web/rocky-monkey.woff and /dev/null differ diff --git a/font_files/font-rocky_monkey/web/rocky-monkey.woff2 b/font_files/font-rocky_monkey/web/rocky-monkey.woff2 deleted file mode 100644 index 90573e7..0000000 Binary files a/font_files/font-rocky_monkey/web/rocky-monkey.woff2 and /dev/null differ diff --git a/font_files/font-rondack/otf/rondack-personaluseonly.otf b/font_files/font-rondack/otf/rondack-personaluseonly.otf deleted file mode 100644 index e92cc6e..0000000 Binary files a/font_files/font-rondack/otf/rondack-personaluseonly.otf and /dev/null differ diff --git a/font_files/font-rondack/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-rondack/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-rondack/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-rose-of-baltimore/ttf/rose_of_balt_one.ttf b/font_files/font-rose-of-baltimore/ttf/rose_of_balt_one.ttf deleted file mode 100755 index 57523ce..0000000 Binary files a/font_files/font-rose-of-baltimore/ttf/rose_of_balt_one.ttf and /dev/null differ diff --git a/font_files/font-rose-of-baltimore/ttf/rose_of_balt_two.ttf b/font_files/font-rose-of-baltimore/ttf/rose_of_balt_two.ttf deleted file mode 100755 index 3001b8f..0000000 Binary files a/font_files/font-rose-of-baltimore/ttf/rose_of_balt_two.ttf and /dev/null differ diff --git a/font_files/font-rose-of-baltimore/ttf/rose_of_baltimore.ttf b/font_files/font-rose-of-baltimore/ttf/rose_of_baltimore.ttf deleted file mode 100755 index 80628cc..0000000 Binary files a/font_files/font-rose-of-baltimore/ttf/rose_of_baltimore.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/Rubik-Italic[wght].ttf b/font_files/font-rubik/ttf/Rubik-Italic[wght].ttf deleted file mode 100644 index 2d9fcc4..0000000 Binary files a/font_files/font-rubik/ttf/Rubik-Italic[wght].ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/Rubik80sFade-Regular.ttf b/font_files/font-rubik/ttf/Rubik80sFade-Regular.ttf deleted file mode 100644 index 7593105..0000000 Binary files a/font_files/font-rubik/ttf/Rubik80sFade-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikBeastly-Regular.ttf b/font_files/font-rubik/ttf/RubikBeastly-Regular.ttf deleted file mode 100644 index 17b5507..0000000 Binary files a/font_files/font-rubik/ttf/RubikBeastly-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikBrokenFax-Regular.ttf b/font_files/font-rubik/ttf/RubikBrokenFax-Regular.ttf deleted file mode 100644 index 80a8653..0000000 Binary files a/font_files/font-rubik/ttf/RubikBrokenFax-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikBubbles-Regular.ttf b/font_files/font-rubik/ttf/RubikBubbles-Regular.ttf deleted file mode 100644 index dbfaaa7..0000000 Binary files a/font_files/font-rubik/ttf/RubikBubbles-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikBurned-Regular.ttf b/font_files/font-rubik/ttf/RubikBurned-Regular.ttf deleted file mode 100644 index 3a0b584..0000000 Binary files a/font_files/font-rubik/ttf/RubikBurned-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikDirt-Regular.ttf b/font_files/font-rubik/ttf/RubikDirt-Regular.ttf deleted file mode 100644 index 5c8858a..0000000 Binary files a/font_files/font-rubik/ttf/RubikDirt-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikDistressed-Regular.ttf b/font_files/font-rubik/ttf/RubikDistressed-Regular.ttf deleted file mode 100644 index 55f00ca..0000000 Binary files a/font_files/font-rubik/ttf/RubikDistressed-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikDoodleShadow-Regular.ttf b/font_files/font-rubik/ttf/RubikDoodleShadow-Regular.ttf deleted file mode 100644 index bb93afc..0000000 Binary files a/font_files/font-rubik/ttf/RubikDoodleShadow-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikDoodleTriangles-Regular.ttf b/font_files/font-rubik/ttf/RubikDoodleTriangles-Regular.ttf deleted file mode 100644 index 639544e..0000000 Binary files a/font_files/font-rubik/ttf/RubikDoodleTriangles-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikGemstones-Regular.ttf b/font_files/font-rubik/ttf/RubikGemstones-Regular.ttf deleted file mode 100644 index ef7d564..0000000 Binary files a/font_files/font-rubik/ttf/RubikGemstones-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikGlitch-Regular.ttf b/font_files/font-rubik/ttf/RubikGlitch-Regular.ttf deleted file mode 100644 index 01399b1..0000000 Binary files a/font_files/font-rubik/ttf/RubikGlitch-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikGlitchPop-Regular.ttf b/font_files/font-rubik/ttf/RubikGlitchPop-Regular.ttf deleted file mode 100644 index f879b79..0000000 Binary files a/font_files/font-rubik/ttf/RubikGlitchPop-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikIso-Regular.ttf b/font_files/font-rubik/ttf/RubikIso-Regular.ttf deleted file mode 100644 index 50df2a4..0000000 Binary files a/font_files/font-rubik/ttf/RubikIso-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikLines-Regular.ttf b/font_files/font-rubik/ttf/RubikLines-Regular.ttf deleted file mode 100644 index 50c015c..0000000 Binary files a/font_files/font-rubik/ttf/RubikLines-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikMaps-Regular.ttf b/font_files/font-rubik/ttf/RubikMaps-Regular.ttf deleted file mode 100644 index 05b5fe1..0000000 Binary files a/font_files/font-rubik/ttf/RubikMaps-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikMarkerHatch-Regular.ttf b/font_files/font-rubik/ttf/RubikMarkerHatch-Regular.ttf deleted file mode 100644 index c726276..0000000 Binary files a/font_files/font-rubik/ttf/RubikMarkerHatch-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikMaze-Regular.ttf b/font_files/font-rubik/ttf/RubikMaze-Regular.ttf deleted file mode 100644 index 58ee6a5..0000000 Binary files a/font_files/font-rubik/ttf/RubikMaze-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikMicrobe-Regular.ttf b/font_files/font-rubik/ttf/RubikMicrobe-Regular.ttf deleted file mode 100644 index e79eafb..0000000 Binary files a/font_files/font-rubik/ttf/RubikMicrobe-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikMonoOne-Regular.ttf b/font_files/font-rubik/ttf/RubikMonoOne-Regular.ttf deleted file mode 100644 index 1923947..0000000 Binary files a/font_files/font-rubik/ttf/RubikMonoOne-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikMoonrocks-Regular.ttf b/font_files/font-rubik/ttf/RubikMoonrocks-Regular.ttf deleted file mode 100644 index e007c54..0000000 Binary files a/font_files/font-rubik/ttf/RubikMoonrocks-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikOne-Regular.ttf b/font_files/font-rubik/ttf/RubikOne-Regular.ttf deleted file mode 100644 index 69d8ac3..0000000 Binary files a/font_files/font-rubik/ttf/RubikOne-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikPixels-Regular.ttf b/font_files/font-rubik/ttf/RubikPixels-Regular.ttf deleted file mode 100644 index 9b1ef8d..0000000 Binary files a/font_files/font-rubik/ttf/RubikPixels-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikPuddles-Regular.ttf b/font_files/font-rubik/ttf/RubikPuddles-Regular.ttf deleted file mode 100644 index e888b5a..0000000 Binary files a/font_files/font-rubik/ttf/RubikPuddles-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikScribble-Regular.ttf b/font_files/font-rubik/ttf/RubikScribble-Regular.ttf deleted file mode 100644 index e5657bd..0000000 Binary files a/font_files/font-rubik/ttf/RubikScribble-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikSprayPaint-Regular.ttf b/font_files/font-rubik/ttf/RubikSprayPaint-Regular.ttf deleted file mode 100644 index bd44965..0000000 Binary files a/font_files/font-rubik/ttf/RubikSprayPaint-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikStorm-Regular.ttf b/font_files/font-rubik/ttf/RubikStorm-Regular.ttf deleted file mode 100644 index c12b5d9..0000000 Binary files a/font_files/font-rubik/ttf/RubikStorm-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikVinyl-Regular.ttf b/font_files/font-rubik/ttf/RubikVinyl-Regular.ttf deleted file mode 100644 index 168fd19..0000000 Binary files a/font_files/font-rubik/ttf/RubikVinyl-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/RubikWetPaint-Regular.ttf b/font_files/font-rubik/ttf/RubikWetPaint-Regular.ttf deleted file mode 100644 index 9946766..0000000 Binary files a/font_files/font-rubik/ttf/RubikWetPaint-Regular.ttf and /dev/null differ diff --git a/font_files/font-rubik/ttf/Rubik[wght].ttf b/font_files/font-rubik/ttf/Rubik[wght].ttf deleted file mode 100644 index a59aeb6..0000000 Binary files a/font_files/font-rubik/ttf/Rubik[wght].ttf and /dev/null differ diff --git a/font_files/font-ruda/ttf/Ruda[wght].ttf b/font_files/font-ruda/ttf/Ruda[wght].ttf deleted file mode 100644 index 26ec4f3..0000000 Binary files a/font_files/font-ruda/ttf/Ruda[wght].ttf and /dev/null differ diff --git a/font_files/font-rufina/ttf/Rufina-Bold.ttf b/font_files/font-rufina/ttf/Rufina-Bold.ttf deleted file mode 100644 index 89e95e7..0000000 Binary files a/font_files/font-rufina/ttf/Rufina-Bold.ttf and /dev/null differ diff --git a/font_files/font-rufina/ttf/Rufina-Regular.ttf b/font_files/font-rufina/ttf/Rufina-Regular.ttf deleted file mode 100644 index fcf3000..0000000 Binary files a/font_files/font-rufina/ttf/Rufina-Regular.ttf and /dev/null differ diff --git a/font_files/font-ruluko/ttf/Ruluko-Regular.ttf b/font_files/font-ruluko/ttf/Ruluko-Regular.ttf deleted file mode 100644 index 305fdb6..0000000 Binary files a/font_files/font-ruluko/ttf/Ruluko-Regular.ttf and /dev/null differ diff --git a/font_files/font-runa/otf/runa.otf b/font_files/font-runa/otf/runa.otf deleted file mode 100755 index af712ad..0000000 Binary files a/font_files/font-runa/otf/runa.otf and /dev/null differ diff --git a/font_files/font-runa/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-runa/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-runa/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-rusillaserif/otf/rusillaserif-light.otf b/font_files/font-rusillaserif/otf/rusillaserif-light.otf deleted file mode 100644 index d71dcc0..0000000 Binary files a/font_files/font-rusillaserif/otf/rusillaserif-light.otf and /dev/null differ diff --git a/font_files/font-rusillaserif/otf/rusillaserif-regular.otf b/font_files/font-rusillaserif/otf/rusillaserif-regular.otf deleted file mode 100644 index a4518c9..0000000 Binary files a/font_files/font-rusillaserif/otf/rusillaserif-regular.otf and /dev/null differ diff --git a/font_files/font-rusillaserif/other_files/cover.jpg b/font_files/font-rusillaserif/other_files/cover.jpg deleted file mode 100644 index 6ab55f9..0000000 Binary files a/font_files/font-rusillaserif/other_files/cover.jpg and /dev/null differ diff --git a/font_files/font-rusillaserif/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-rusillaserif/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-rusillaserif/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-rusillaserif/other_files/please-read-me.txt b/font_files/font-rusillaserif/other_files/please-read-me.txt deleted file mode 100644 index ac1d2af..0000000 --- a/font_files/font-rusillaserif/other_files/please-read-me.txt +++ /dev/null @@ -1,40 +0,0 @@ -By installing or using this font, you are agree to the Product Usage Agreement: - -- This demo font is ONLY for PERSONAL USE. NO COMMERCIAL USE ALLOWED! - -- Here is the link to purchase full version and commercial license: -https://creativemarket.com/dealitastudio/14474952-Rusilla-Serif-Elegant-Serif - -- For Corporate use you have to purchase Corporate license - -- If you need a custom license please contact us at -dealitastudio@gmail.com - -- Any donation are very appreciated. Paypal account for donation : https://paypal.me/dealitastudio - -Please visit our store for more amazing fonts : -https://creativemarket.com/dealitastudio - - -Thank you. - -------------------- - -INDONESIA: - -Dengan meng-install font ini, anda dianggap mengerti dan menyetujui semua syarat dan ketentuan penggunaan font dibawah ini: - -- Font demo ini hanya dapat digunakan untuk keperluan "Personal Use"/kebutuhan pribadi, atau untuk keperluan yang sifatnya tidak "komersil", alias tidak menghasilkan profit atau keuntungan dari hasil memanfaatkan/menggunakan font kami. Baik itu untuk individu, Agensi Desain Grafis, Percetakan, Distro atau Perusahaan/Korporasi. - -- Silakan gunakan lisensi komersial dengan membeli melalui link ini : -https://creativemarket.com/dealitastudio/10207617-Brielle-Serif - -- Dengan hanya lisensi "Personal Use", DILARANG KERAS menggunakan atau memanfaatkan font ini untuk kepeluan Komersial, baik itu untuk Iklan, Promosi, TV, Film, Video, Motion Graphics, Youtube, Desain kaos distro atau untuk Kemasan Produk (baik Fisik ataupun Digital) atau Media apapun dengan tujuan menghasilkan profit/keuntungan. - -- Untuk penggunaan keperluan Perusahaan/Korporasi silakan menggunakan Corporate License. - -- Menggunakan font ini dengan lisensi "Personal Use" untuk kepentingan Komersial apapun bentuknya TANPA IZIN dari kami, akan dikenakan biaya CORPORATE LICENSE. - -Informasi tentang Lisensi apa yang akan anda perlukan, silahkan menghubungi kami di : dealitastudio@gmail.com - -Terima kasih. \ No newline at end of file diff --git a/font_files/font-ruska/otf/ruskadisplay-regular.otf b/font_files/font-ruska/otf/ruskadisplay-regular.otf deleted file mode 100644 index 21cbbc7..0000000 Binary files a/font_files/font-ruska/otf/ruskadisplay-regular.otf and /dev/null differ diff --git a/font_files/font-ruska/other_files/ruska-commercial-use-license.pdf b/font_files/font-ruska/other_files/ruska-commercial-use-license.pdf deleted file mode 100644 index 8fac6da..0000000 Binary files a/font_files/font-ruska/other_files/ruska-commercial-use-license.pdf and /dev/null differ diff --git a/font_files/font-ruthie/ttf/Ruthie-Regular.ttf b/font_files/font-ruthie/ttf/Ruthie-Regular.ttf deleted file mode 100644 index 108693c..0000000 Binary files a/font_files/font-ruthie/ttf/Ruthie-Regular.ttf and /dev/null differ diff --git a/font_files/font-saffron/ttf/Saffron-Regular.ttf b/font_files/font-saffron/ttf/Saffron-Regular.ttf deleted file mode 100755 index 1c30c9f..0000000 Binary files a/font_files/font-saffron/ttf/Saffron-Regular.ttf and /dev/null differ diff --git a/font_files/font-saffron/ttf/Saffron-Swashes.ttf b/font_files/font-saffron/ttf/Saffron-Swashes.ttf deleted file mode 100755 index cdfeab1..0000000 Binary files a/font_files/font-saffron/ttf/Saffron-Swashes.ttf and /dev/null differ diff --git a/font_files/font-scratches/otf/scratches.otf b/font_files/font-scratches/otf/scratches.otf deleted file mode 100644 index 7579eaa..0000000 Binary files a/font_files/font-scratches/otf/scratches.otf and /dev/null differ diff --git a/font_files/font-scratches/other_files/mjtype-eula.pdf b/font_files/font-scratches/other_files/mjtype-eula.pdf deleted file mode 100644 index 7b9d58f..0000000 Binary files a/font_files/font-scratches/other_files/mjtype-eula.pdf and /dev/null differ diff --git a/font_files/font-scratches/other_files/read-me.txt b/font_files/font-scratches/other_files/read-me.txt deleted file mode 100644 index 034e794..0000000 --- a/font_files/font-scratches/other_files/read-me.txt +++ /dev/null @@ -1,17 +0,0 @@ -Before deciding to use this font for any commercial purposes, it's essential to be cautious and take the time to go through the terms and conditions. Remember, not knowing the rules doesn't excuse any legal issues. - -By installing or using this font, you're essentially agreeing to the Font Usage Agreement, which includes the following points: - -1. This font is strictly meant for personal use only, and using it for promotional or commercial purposes is not allowed. -2. You need a license for any promotional or commercial use. -3. Commercial Purposes License is available on my website : https://mjtype.com/product/scratches/ -4. Violating this agreement could lead to a charge equivalent to 100 times the standard desktop license price. -5. For any inquiries, such as getting a quote for a specific project, feel free to contact us at foundry@mjtype.com. - -Any donations are highly appreciated. - -Follow our instagram for any update : https://www.instagram.com/mjtype.font - -Behance: https://www.behance.net/mjtype - -Thank you. \ No newline at end of file diff --git a/font_files/font-scribblingtom/otf/scribblingtom.otf b/font_files/font-scribblingtom/otf/scribblingtom.otf deleted file mode 100644 index 3b6417f..0000000 Binary files a/font_files/font-scribblingtom/otf/scribblingtom.otf and /dev/null differ diff --git a/font_files/font-sepura-light/otf/sepura-light.otf b/font_files/font-sepura-light/otf/sepura-light.otf deleted file mode 100644 index 9251652..0000000 Binary files a/font_files/font-sepura-light/otf/sepura-light.otf and /dev/null differ diff --git a/font_files/font-sepura-light/other_files/desktop-commercial-use-license-pixel-surplus-copy-6.pdf b/font_files/font-sepura-light/other_files/desktop-commercial-use-license-pixel-surplus-copy-6.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-sepura-light/other_files/desktop-commercial-use-license-pixel-surplus-copy-6.pdf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_black-italic.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_black-italic.ttf deleted file mode 100644 index 992d35e..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_black-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_black.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_black.ttf deleted file mode 100644 index df7a177..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_black.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_bold-italic.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_bold-italic.ttf deleted file mode 100644 index 766ec65..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_bold-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_bold.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_bold.ttf deleted file mode 100644 index 75a93de..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_bold.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_heavy-italic.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_heavy-italic.ttf deleted file mode 100644 index 8b43ebf..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_heavy-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_heavy.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_heavy.ttf deleted file mode 100644 index 288e293..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_heavy.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_light-italic.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_light-italic.ttf deleted file mode 100644 index 7a8b047..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_light-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_light.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_light.ttf deleted file mode 100644 index bbd1ff1..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_light.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_medium-italic.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_medium-italic.ttf deleted file mode 100644 index ee40d0e..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_medium-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_medium.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_medium.ttf deleted file mode 100644 index dc8586c..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_medium.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_regular-italic.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_regular-italic.ttf deleted file mode 100644 index edbc9c8..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_regular-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_regular.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_regular.ttf deleted file mode 100644 index d03995d..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_regular.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_semibold-italic.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_semibold-italic.ttf deleted file mode 100644 index 44ed67c..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_semibold-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_semibold.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_semibold.ttf deleted file mode 100644 index 73d02fc..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_semibold.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_thin-italic.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_thin-italic.ttf deleted file mode 100644 index e443f45..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_thin-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_thin.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_thin.ttf deleted file mode 100644 index 067c652..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_thin.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_ultralight-italic.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_ultralight-italic.ttf deleted file mode 100644 index a227dfd..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_ultralight-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/ttf/sf-pro-display_ultralight.ttf b/font_files/font-sf-pro-display/ttf/sf-pro-display_ultralight.ttf deleted file mode 100644 index e820df8..0000000 Binary files a/font_files/font-sf-pro-display/ttf/sf-pro-display_ultralight.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_black-italic.woff b/font_files/font-sf-pro-display/web/sf-pro-display_black-italic.woff deleted file mode 100644 index b60e877..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_black-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_black-italic.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_black-italic.woff2 deleted file mode 100644 index 858f0a6..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_black-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_black.eot b/font_files/font-sf-pro-display/web/sf-pro-display_black.eot deleted file mode 100644 index bd0bf5e..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_black.eot and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_black.woff b/font_files/font-sf-pro-display/web/sf-pro-display_black.woff deleted file mode 100644 index ea889ef..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_black.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_black.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_black.woff2 deleted file mode 100644 index d39924d..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_black.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_bold-italic.woff b/font_files/font-sf-pro-display/web/sf-pro-display_bold-italic.woff deleted file mode 100644 index 4033178..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_bold-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_bold-italic.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_bold-italic.woff2 deleted file mode 100644 index a65ad45..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_bold-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_bold.eot b/font_files/font-sf-pro-display/web/sf-pro-display_bold.eot deleted file mode 100644 index 8596e0d..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_bold.eot and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_bold.woff b/font_files/font-sf-pro-display/web/sf-pro-display_bold.woff deleted file mode 100644 index ece6895..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_bold.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_bold.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_bold.woff2 deleted file mode 100644 index e4aa815..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_bold.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_heavy-italic.woff b/font_files/font-sf-pro-display/web/sf-pro-display_heavy-italic.woff deleted file mode 100644 index c2214e6..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_heavy-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_heavy-italic.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_heavy-italic.woff2 deleted file mode 100644 index 650381c..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_heavy-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_heavy.eot b/font_files/font-sf-pro-display/web/sf-pro-display_heavy.eot deleted file mode 100644 index 81fd34a..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_heavy.eot and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_heavy.woff b/font_files/font-sf-pro-display/web/sf-pro-display_heavy.woff deleted file mode 100644 index 0563357..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_heavy.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_heavy.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_heavy.woff2 deleted file mode 100644 index 087d4ea..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_heavy.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_light-italic.woff b/font_files/font-sf-pro-display/web/sf-pro-display_light-italic.woff deleted file mode 100644 index 209a316..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_light-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_light-italic.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_light-italic.woff2 deleted file mode 100644 index 4965241..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_light-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_light.eot b/font_files/font-sf-pro-display/web/sf-pro-display_light.eot deleted file mode 100644 index 0ed9b88..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_light.eot and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_light.woff b/font_files/font-sf-pro-display/web/sf-pro-display_light.woff deleted file mode 100644 index 1166238..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_light.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_light.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_light.woff2 deleted file mode 100644 index 2256439..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_light.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_medium-italic.woff b/font_files/font-sf-pro-display/web/sf-pro-display_medium-italic.woff deleted file mode 100644 index 5154c19..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_medium-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_medium-italic.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_medium-italic.woff2 deleted file mode 100644 index 171a91f..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_medium-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_medium.eot b/font_files/font-sf-pro-display/web/sf-pro-display_medium.eot deleted file mode 100644 index 08b2d83..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_medium.eot and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_medium.woff b/font_files/font-sf-pro-display/web/sf-pro-display_medium.woff deleted file mode 100644 index 4e4fe52..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_medium.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_medium.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_medium.woff2 deleted file mode 100644 index 37ce984..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_medium.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_regular-italic.woff b/font_files/font-sf-pro-display/web/sf-pro-display_regular-italic.woff deleted file mode 100644 index 23488aa..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_regular-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_regular-italic.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_regular-italic.woff2 deleted file mode 100644 index e972feb..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_regular-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_regular.eot b/font_files/font-sf-pro-display/web/sf-pro-display_regular.eot deleted file mode 100644 index 862f018..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_regular.eot and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_regular.woff b/font_files/font-sf-pro-display/web/sf-pro-display_regular.woff deleted file mode 100644 index 798fbe3..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_regular.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_regular.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_regular.woff2 deleted file mode 100644 index d2c8944..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_regular.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_semibold-italic.woff b/font_files/font-sf-pro-display/web/sf-pro-display_semibold-italic.woff deleted file mode 100644 index b164379..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_semibold-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_semibold-italic.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_semibold-italic.woff2 deleted file mode 100644 index a5d7dcb..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_semibold-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_semibold.eot b/font_files/font-sf-pro-display/web/sf-pro-display_semibold.eot deleted file mode 100644 index 76546ed..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_semibold.eot and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_semibold.woff b/font_files/font-sf-pro-display/web/sf-pro-display_semibold.woff deleted file mode 100644 index 20dc8ee..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_semibold.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_semibold.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_semibold.woff2 deleted file mode 100644 index 4928036..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_semibold.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_thin-italic.woff b/font_files/font-sf-pro-display/web/sf-pro-display_thin-italic.woff deleted file mode 100644 index af7e775..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_thin-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_thin-italic.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_thin-italic.woff2 deleted file mode 100644 index 91e001c..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_thin-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_thin.eot b/font_files/font-sf-pro-display/web/sf-pro-display_thin.eot deleted file mode 100644 index 314ca18..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_thin.eot and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_thin.woff b/font_files/font-sf-pro-display/web/sf-pro-display_thin.woff deleted file mode 100644 index 34f3c17..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_thin.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_thin.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_thin.woff2 deleted file mode 100644 index 2843a81..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_thin.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight-italic.woff b/font_files/font-sf-pro-display/web/sf-pro-display_ultralight-italic.woff deleted file mode 100644 index a7ead34..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight-italic.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_ultralight-italic.woff2 deleted file mode 100644 index b20f28c..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight.eot b/font_files/font-sf-pro-display/web/sf-pro-display_ultralight.eot deleted file mode 100644 index f77af2f..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight.eot and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight.woff b/font_files/font-sf-pro-display/web/sf-pro-display_ultralight.woff deleted file mode 100644 index b84de64..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight.woff and /dev/null differ diff --git a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight.woff2 b/font_files/font-sf-pro-display/web/sf-pro-display_ultralight.woff2 deleted file mode 100644 index 8496d39..0000000 Binary files a/font_files/font-sf-pro-display/web/sf-pro-display_ultralight.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_black.ttf b/font_files/font-sf-pro-icons/ttf/sf-pro-icons_black.ttf deleted file mode 100644 index 825c748..0000000 Binary files a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_black.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_bold.ttf b/font_files/font-sf-pro-icons/ttf/sf-pro-icons_bold.ttf deleted file mode 100644 index 53c0597..0000000 Binary files a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_bold.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_heavy.ttf b/font_files/font-sf-pro-icons/ttf/sf-pro-icons_heavy.ttf deleted file mode 100644 index 209e6fb..0000000 Binary files a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_heavy.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_light.ttf b/font_files/font-sf-pro-icons/ttf/sf-pro-icons_light.ttf deleted file mode 100644 index c65384e..0000000 Binary files a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_light.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_medium.ttf b/font_files/font-sf-pro-icons/ttf/sf-pro-icons_medium.ttf deleted file mode 100644 index beb317f..0000000 Binary files a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_medium.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_regular.ttf b/font_files/font-sf-pro-icons/ttf/sf-pro-icons_regular.ttf deleted file mode 100644 index d8db5dc..0000000 Binary files a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_regular.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_semibold.ttf b/font_files/font-sf-pro-icons/ttf/sf-pro-icons_semibold.ttf deleted file mode 100644 index 1da8c86..0000000 Binary files a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_semibold.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_thin.ttf b/font_files/font-sf-pro-icons/ttf/sf-pro-icons_thin.ttf deleted file mode 100644 index f710a55..0000000 Binary files a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_thin.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_ultralight.ttf b/font_files/font-sf-pro-icons/ttf/sf-pro-icons_ultralight.ttf deleted file mode 100644 index ba7ee70..0000000 Binary files a/font_files/font-sf-pro-icons/ttf/sf-pro-icons_ultralight.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_black.eot b/font_files/font-sf-pro-icons/web/sf-pro-icons_black.eot deleted file mode 100644 index 1c26381..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_black.eot and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_black.woff b/font_files/font-sf-pro-icons/web/sf-pro-icons_black.woff deleted file mode 100644 index 1ef5a15..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_black.woff and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_black.woff2 b/font_files/font-sf-pro-icons/web/sf-pro-icons_black.woff2 deleted file mode 100644 index 1560e2b..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_black.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_bold.eot b/font_files/font-sf-pro-icons/web/sf-pro-icons_bold.eot deleted file mode 100644 index 67b6afb..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_bold.eot and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_bold.woff b/font_files/font-sf-pro-icons/web/sf-pro-icons_bold.woff deleted file mode 100644 index 9386ed8..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_bold.woff and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_bold.woff2 b/font_files/font-sf-pro-icons/web/sf-pro-icons_bold.woff2 deleted file mode 100644 index 79bef49..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_bold.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_heavy.eot b/font_files/font-sf-pro-icons/web/sf-pro-icons_heavy.eot deleted file mode 100644 index 9e184d3..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_heavy.eot and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_heavy.woff b/font_files/font-sf-pro-icons/web/sf-pro-icons_heavy.woff deleted file mode 100644 index bd2d57e..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_heavy.woff and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_heavy.woff2 b/font_files/font-sf-pro-icons/web/sf-pro-icons_heavy.woff2 deleted file mode 100644 index 91f030f..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_heavy.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_light.eot b/font_files/font-sf-pro-icons/web/sf-pro-icons_light.eot deleted file mode 100644 index 5fe0178..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_light.eot and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_light.woff b/font_files/font-sf-pro-icons/web/sf-pro-icons_light.woff deleted file mode 100644 index 8b5b76d..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_light.woff and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_light.woff2 b/font_files/font-sf-pro-icons/web/sf-pro-icons_light.woff2 deleted file mode 100644 index fd5fd0f..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_light.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_medium.eot b/font_files/font-sf-pro-icons/web/sf-pro-icons_medium.eot deleted file mode 100644 index b5c5392..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_medium.eot and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_medium.woff b/font_files/font-sf-pro-icons/web/sf-pro-icons_medium.woff deleted file mode 100644 index b66e58d..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_medium.woff and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_medium.woff2 b/font_files/font-sf-pro-icons/web/sf-pro-icons_medium.woff2 deleted file mode 100644 index 6c8710d..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_medium.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_regular.eot b/font_files/font-sf-pro-icons/web/sf-pro-icons_regular.eot deleted file mode 100644 index fcc3bee..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_regular.eot and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_regular.woff b/font_files/font-sf-pro-icons/web/sf-pro-icons_regular.woff deleted file mode 100644 index 05afd04..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_regular.woff and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_regular.woff2 b/font_files/font-sf-pro-icons/web/sf-pro-icons_regular.woff2 deleted file mode 100644 index 1ea1489..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_regular.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_semibold.eot b/font_files/font-sf-pro-icons/web/sf-pro-icons_semibold.eot deleted file mode 100644 index ce2d8d9..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_semibold.eot and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_semibold.woff b/font_files/font-sf-pro-icons/web/sf-pro-icons_semibold.woff deleted file mode 100644 index ae34358..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_semibold.woff and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_semibold.woff2 b/font_files/font-sf-pro-icons/web/sf-pro-icons_semibold.woff2 deleted file mode 100644 index 93d2c9c..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_semibold.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_thin.eot b/font_files/font-sf-pro-icons/web/sf-pro-icons_thin.eot deleted file mode 100644 index 11bfe22..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_thin.eot and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_thin.woff b/font_files/font-sf-pro-icons/web/sf-pro-icons_thin.woff deleted file mode 100644 index e5cd8c3..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_thin.woff and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_thin.woff2 b/font_files/font-sf-pro-icons/web/sf-pro-icons_thin.woff2 deleted file mode 100644 index 5c59436..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_thin.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_ultralight.eot b/font_files/font-sf-pro-icons/web/sf-pro-icons_ultralight.eot deleted file mode 100644 index d67a5e1..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_ultralight.eot and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_ultralight.woff b/font_files/font-sf-pro-icons/web/sf-pro-icons_ultralight.woff deleted file mode 100644 index 2c6f2c9..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_ultralight.woff and /dev/null differ diff --git a/font_files/font-sf-pro-icons/web/sf-pro-icons_ultralight.woff2 b/font_files/font-sf-pro-icons/web/sf-pro-icons_ultralight.woff2 deleted file mode 100644 index 90c20ba..0000000 Binary files a/font_files/font-sf-pro-icons/web/sf-pro-icons_ultralight.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_black-italic.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_black-italic.ttf deleted file mode 100644 index 169ad77..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_black-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_black.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_black.ttf deleted file mode 100644 index 2778b6d..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_black.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_bold-italic.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_bold-italic.ttf deleted file mode 100644 index 70eb106..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_bold-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_bold.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_bold.ttf deleted file mode 100644 index 0bb79e0..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_bold.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_heavy-italic.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_heavy-italic.ttf deleted file mode 100644 index 26d8305..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_heavy-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_heavy.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_heavy.ttf deleted file mode 100644 index 449ccfb..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_heavy.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_light-italic.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_light-italic.ttf deleted file mode 100644 index c377f49..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_light-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_light.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_light.ttf deleted file mode 100644 index 4403870..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_light.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_medium-italic.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_medium-italic.ttf deleted file mode 100644 index 218e1e3..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_medium-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_medium.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_medium.ttf deleted file mode 100644 index 0fc5ea9..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_medium.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_regular-italic.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_regular-italic.ttf deleted file mode 100644 index 3f45f51..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_regular-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_regular.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_regular.ttf deleted file mode 100644 index 555332b..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_regular.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_semibold-italic.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_semibold-italic.ttf deleted file mode 100644 index 6f22174..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_semibold-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_semibold.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_semibold.ttf deleted file mode 100644 index 5b8f58a..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_semibold.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_thin-italic.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_thin-italic.ttf deleted file mode 100644 index 94c26d7..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_thin-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_thin.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_thin.ttf deleted file mode 100644 index 076d600..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_thin.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_ultralight-italic.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_ultralight-italic.ttf deleted file mode 100644 index 600849d..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_ultralight-italic.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/ttf/sf-pro-text_ultralight.ttf b/font_files/font-sf-pro-text/ttf/sf-pro-text_ultralight.ttf deleted file mode 100644 index c662834..0000000 Binary files a/font_files/font-sf-pro-text/ttf/sf-pro-text_ultralight.ttf and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_black-italic.woff b/font_files/font-sf-pro-text/web/sf-pro-text_black-italic.woff deleted file mode 100644 index c3d9261..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_black-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_black-italic.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_black-italic.woff2 deleted file mode 100644 index e69a55f..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_black-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_black.eot b/font_files/font-sf-pro-text/web/sf-pro-text_black.eot deleted file mode 100644 index 5346e9b..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_black.eot and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_black.woff b/font_files/font-sf-pro-text/web/sf-pro-text_black.woff deleted file mode 100644 index 2cb9429..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_black.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_black.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_black.woff2 deleted file mode 100644 index 73d3e70..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_black.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_bold-italic.woff b/font_files/font-sf-pro-text/web/sf-pro-text_bold-italic.woff deleted file mode 100644 index e70efc3..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_bold-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_bold-italic.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_bold-italic.woff2 deleted file mode 100644 index c5af411..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_bold-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_bold.eot b/font_files/font-sf-pro-text/web/sf-pro-text_bold.eot deleted file mode 100644 index 931a012..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_bold.eot and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_bold.woff b/font_files/font-sf-pro-text/web/sf-pro-text_bold.woff deleted file mode 100644 index 0171ce2..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_bold.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_bold.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_bold.woff2 deleted file mode 100644 index 2861ac4..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_bold.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_heavy-italic.woff b/font_files/font-sf-pro-text/web/sf-pro-text_heavy-italic.woff deleted file mode 100644 index 448506b..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_heavy-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_heavy-italic.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_heavy-italic.woff2 deleted file mode 100644 index 30356ba..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_heavy-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_heavy.eot b/font_files/font-sf-pro-text/web/sf-pro-text_heavy.eot deleted file mode 100644 index 6a6e4dc..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_heavy.eot and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_heavy.woff b/font_files/font-sf-pro-text/web/sf-pro-text_heavy.woff deleted file mode 100644 index 90b8e2b..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_heavy.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_heavy.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_heavy.woff2 deleted file mode 100644 index 5ecb000..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_heavy.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_light-italic.woff b/font_files/font-sf-pro-text/web/sf-pro-text_light-italic.woff deleted file mode 100644 index 9c892e3..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_light-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_light-italic.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_light-italic.woff2 deleted file mode 100644 index d044ff4..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_light-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_light.eot b/font_files/font-sf-pro-text/web/sf-pro-text_light.eot deleted file mode 100644 index 613a1ec..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_light.eot and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_light.woff b/font_files/font-sf-pro-text/web/sf-pro-text_light.woff deleted file mode 100644 index eaaea34..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_light.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_light.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_light.woff2 deleted file mode 100644 index 2e1e10e..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_light.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_medium-italic.woff b/font_files/font-sf-pro-text/web/sf-pro-text_medium-italic.woff deleted file mode 100644 index c7459a4..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_medium-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_medium-italic.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_medium-italic.woff2 deleted file mode 100644 index f974947..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_medium-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_medium.eot b/font_files/font-sf-pro-text/web/sf-pro-text_medium.eot deleted file mode 100644 index 31f2f1d..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_medium.eot and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_medium.woff b/font_files/font-sf-pro-text/web/sf-pro-text_medium.woff deleted file mode 100644 index eb29ff6..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_medium.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_medium.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_medium.woff2 deleted file mode 100644 index c334988..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_medium.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_regular-italic.woff b/font_files/font-sf-pro-text/web/sf-pro-text_regular-italic.woff deleted file mode 100644 index d34a53f..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_regular-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_regular-italic.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_regular-italic.woff2 deleted file mode 100644 index cfc7173..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_regular-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_regular.eot b/font_files/font-sf-pro-text/web/sf-pro-text_regular.eot deleted file mode 100644 index 8ed488c..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_regular.eot and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_regular.woff b/font_files/font-sf-pro-text/web/sf-pro-text_regular.woff deleted file mode 100644 index b39f09c..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_regular.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_regular.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_regular.woff2 deleted file mode 100644 index 292b7cc..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_regular.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_semibold-italic.woff b/font_files/font-sf-pro-text/web/sf-pro-text_semibold-italic.woff deleted file mode 100644 index f93cb41..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_semibold-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_semibold-italic.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_semibold-italic.woff2 deleted file mode 100644 index cca1a96..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_semibold-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_semibold.eot b/font_files/font-sf-pro-text/web/sf-pro-text_semibold.eot deleted file mode 100644 index 355c961..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_semibold.eot and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_semibold.woff b/font_files/font-sf-pro-text/web/sf-pro-text_semibold.woff deleted file mode 100644 index 262de72..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_semibold.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_semibold.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_semibold.woff2 deleted file mode 100644 index 46d44c9..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_semibold.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_thin-italic.woff b/font_files/font-sf-pro-text/web/sf-pro-text_thin-italic.woff deleted file mode 100644 index 8124dde..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_thin-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_thin-italic.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_thin-italic.woff2 deleted file mode 100644 index a45b885..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_thin-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_thin.eot b/font_files/font-sf-pro-text/web/sf-pro-text_thin.eot deleted file mode 100644 index d95a27b..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_thin.eot and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_thin.woff b/font_files/font-sf-pro-text/web/sf-pro-text_thin.woff deleted file mode 100644 index 7f8c60a..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_thin.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_thin.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_thin.woff2 deleted file mode 100644 index 30f860a..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_thin.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight-italic.woff b/font_files/font-sf-pro-text/web/sf-pro-text_ultralight-italic.woff deleted file mode 100644 index 4f991fb..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight-italic.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight-italic.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_ultralight-italic.woff2 deleted file mode 100644 index 1eadaa7..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight-italic.woff2 and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight.eot b/font_files/font-sf-pro-text/web/sf-pro-text_ultralight.eot deleted file mode 100644 index b61d70b..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight.eot and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight.woff b/font_files/font-sf-pro-text/web/sf-pro-text_ultralight.woff deleted file mode 100644 index 28c8bce..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight.woff and /dev/null differ diff --git a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight.woff2 b/font_files/font-sf-pro-text/web/sf-pro-text_ultralight.woff2 deleted file mode 100644 index e996f36..0000000 Binary files a/font_files/font-sf-pro-text/web/sf-pro-text_ultralight.woff2 and /dev/null differ diff --git a/font_files/font-sherlock/otf/Sherlock_Pro-Inline.otf b/font_files/font-sherlock/otf/Sherlock_Pro-Inline.otf deleted file mode 100755 index 61ee383..0000000 Binary files a/font_files/font-sherlock/otf/Sherlock_Pro-Inline.otf and /dev/null differ diff --git a/font_files/font-sherlock/otf/Sherlock_Pro-Italic.otf b/font_files/font-sherlock/otf/Sherlock_Pro-Italic.otf deleted file mode 100755 index 061817c..0000000 Binary files a/font_files/font-sherlock/otf/Sherlock_Pro-Italic.otf and /dev/null differ diff --git a/font_files/font-sherlock/otf/Sherlock_Pro.otf b/font_files/font-sherlock/otf/Sherlock_Pro.otf deleted file mode 100755 index 7b67e56..0000000 Binary files a/font_files/font-sherlock/otf/Sherlock_Pro.otf and /dev/null differ diff --git a/font_files/font-sherlock/otf/Sherlock_Symbols-Flourish.otf b/font_files/font-sherlock/otf/Sherlock_Symbols-Flourish.otf deleted file mode 100755 index 0ec7bea..0000000 Binary files a/font_files/font-sherlock/otf/Sherlock_Symbols-Flourish.otf and /dev/null differ diff --git a/font_files/font-sherlock/otf/Sherlock_Symbols-Swash.otf b/font_files/font-sherlock/otf/Sherlock_Symbols-Swash.otf deleted file mode 100755 index 7a0a881..0000000 Binary files a/font_files/font-sherlock/otf/Sherlock_Symbols-Swash.otf and /dev/null differ diff --git a/font_files/font-sideboard/otf/sideboard-personaluseonly.otf b/font_files/font-sideboard/otf/sideboard-personaluseonly.otf deleted file mode 100644 index 6fb2ee6..0000000 Binary files a/font_files/font-sideboard/otf/sideboard-personaluseonly.otf and /dev/null differ diff --git a/font_files/font-sideboard/other_files/personal-use-license.pdf b/font_files/font-sideboard/other_files/personal-use-license.pdf deleted file mode 100644 index d7dbdbd..0000000 Binary files a/font_files/font-sideboard/other_files/personal-use-license.pdf and /dev/null differ diff --git a/font_files/font-siesta-serenade/otf/siestaserenade-personaluseonly.otf b/font_files/font-siesta-serenade/otf/siestaserenade-personaluseonly.otf deleted file mode 100644 index 4fdfc21..0000000 Binary files a/font_files/font-siesta-serenade/otf/siestaserenade-personaluseonly.otf and /dev/null differ diff --git a/font_files/font-siesta-serenade/other_files/personal-use-license.pdf b/font_files/font-siesta-serenade/other_files/personal-use-license.pdf deleted file mode 100644 index d7dbdbd..0000000 Binary files a/font_files/font-siesta-serenade/other_files/personal-use-license.pdf and /dev/null differ diff --git a/font_files/font-sigitarian/otf/sigitarian.otf b/font_files/font-sigitarian/otf/sigitarian.otf deleted file mode 100644 index 0513bb8..0000000 Binary files a/font_files/font-sigitarian/otf/sigitarian.otf and /dev/null differ diff --git a/font_files/font-sigitarian/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-sigitarian/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-sigitarian/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-sigitarian/ttf/sigitarian.ttf b/font_files/font-sigitarian/ttf/sigitarian.ttf deleted file mode 100644 index 51559cb..0000000 Binary files a/font_files/font-sigitarian/ttf/sigitarian.ttf and /dev/null differ diff --git a/font_files/font-sigitarian/web/sigitarian.woff b/font_files/font-sigitarian/web/sigitarian.woff deleted file mode 100644 index 798151f..0000000 Binary files a/font_files/font-sigitarian/web/sigitarian.woff and /dev/null differ diff --git a/font_files/font-signate-grotesk-black/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-signate-grotesk-black/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-signate-grotesk-black/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-signate-grotesk-black/ttf/signategrotesk-black.ttf b/font_files/font-signate-grotesk-black/ttf/signategrotesk-black.ttf deleted file mode 100644 index dfaeb12..0000000 Binary files a/font_files/font-signate-grotesk-black/ttf/signategrotesk-black.ttf and /dev/null differ diff --git a/font_files/font-silkshy/otf/silkshy.otf b/font_files/font-silkshy/otf/silkshy.otf deleted file mode 100644 index 79f0fc5..0000000 Binary files a/font_files/font-silkshy/otf/silkshy.otf and /dev/null differ diff --git a/font_files/font-silkshy/otf/silkshyoblique.otf b/font_files/font-silkshy/otf/silkshyoblique.otf deleted file mode 100644 index 0a01c12..0000000 Binary files a/font_files/font-silkshy/otf/silkshyoblique.otf and /dev/null differ diff --git a/font_files/font-silkshy/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-silkshy/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-silkshy/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-silkshy/ttf/silkshy.ttf b/font_files/font-silkshy/ttf/silkshy.ttf deleted file mode 100644 index 33a22c8..0000000 Binary files a/font_files/font-silkshy/ttf/silkshy.ttf and /dev/null differ diff --git a/font_files/font-silkshy/ttf/silkshyoblique.ttf b/font_files/font-silkshy/ttf/silkshyoblique.ttf deleted file mode 100644 index 5789ab7..0000000 Binary files a/font_files/font-silkshy/ttf/silkshyoblique.ttf and /dev/null differ diff --git a/font_files/font-skulls-and-crossbones/ttf/Skullsandcrossbones-RppKM.ttf b/font_files/font-skulls-and-crossbones/ttf/Skullsandcrossbones-RppKM.ttf deleted file mode 100644 index 1904e78..0000000 Binary files a/font_files/font-skulls-and-crossbones/ttf/Skullsandcrossbones-RppKM.ttf and /dev/null differ diff --git a/font_files/font-source-code-pro/ttf/SourceCodePro-Italic[wght].ttf b/font_files/font-source-code-pro/ttf/SourceCodePro-Italic[wght].ttf deleted file mode 100644 index f4321e7..0000000 Binary files a/font_files/font-source-code-pro/ttf/SourceCodePro-Italic[wght].ttf and /dev/null differ diff --git a/font_files/font-source-code-pro/ttf/SourceCodePro[wght].ttf b/font_files/font-source-code-pro/ttf/SourceCodePro[wght].ttf deleted file mode 100644 index 4d66828..0000000 Binary files a/font_files/font-source-code-pro/ttf/SourceCodePro[wght].ttf and /dev/null differ diff --git a/font_files/font-space-rabbit-font-1764372251-0/otf/Space-Rabbit.otf b/font_files/font-space-rabbit-font-1764372251-0/otf/Space-Rabbit.otf deleted file mode 100644 index aec128b..0000000 Binary files a/font_files/font-space-rabbit-font-1764372251-0/otf/Space-Rabbit.otf and /dev/null differ diff --git a/font_files/font-space-rabbit-font-1764372251-0/other_files/Befonts-License.txt b/font_files/font-space-rabbit-font-1764372251-0/other_files/Befonts-License.txt deleted file mode 100644 index 39c2815..0000000 --- a/font_files/font-space-rabbit-font-1764372251-0/other_files/Befonts-License.txt +++ /dev/null @@ -1,2 +0,0 @@ -License: Free for Commercial Use -Link: https://befonts.com/space-rabbit-font.html diff --git a/font_files/font-spencer/otf/spencer.otf b/font_files/font-spencer/otf/spencer.otf deleted file mode 100644 index 0e6efe5..0000000 Binary files a/font_files/font-spencer/otf/spencer.otf and /dev/null differ diff --git a/font_files/font-spencer/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-spencer/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-spencer/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-spencer/other_files/spencer.css b/font_files/font-spencer/other_files/spencer.css deleted file mode 100644 index 432447f..0000000 --- a/font_files/font-spencer/other_files/spencer.css +++ /dev/null @@ -1,12 +0,0 @@ -/* Webfont: Spencer-Regular */@font-face { - font-family: 'Spencer'; - src: url('Spencer.eot'); /* IE9 Compat Modes */ - src: url('Spencer.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('Spencer.woff') format('woff'), /* Modern Browsers */ - url('Spencer.woff2') format('woff2'), /* Modern Browsers */ - url('Spencer.ttf') format('truetype'); /* Safari, Android, iOS */ - font-style: normal; - font-weight: normal; - text-rendering: optimizeLegibility; -} - diff --git a/font_files/font-spencer/other_files/spencer.html b/font_files/font-spencer/other_files/spencer.html deleted file mode 100644 index 3706df9..0000000 --- a/font_files/font-spencer/other_files/spencer.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - -Spencer Regular - Web Font Specimen - - - - -

The quick brown fox jumps over the lazy dog. $123.45!

- - diff --git a/font_files/font-spencer/ttf/spencer.ttf b/font_files/font-spencer/ttf/spencer.ttf deleted file mode 100644 index 6a80339..0000000 Binary files a/font_files/font-spencer/ttf/spencer.ttf and /dev/null differ diff --git a/font_files/font-spencer/web/spencer.woff b/font_files/font-spencer/web/spencer.woff deleted file mode 100644 index 5d1cc0c..0000000 Binary files a/font_files/font-spencer/web/spencer.woff and /dev/null differ diff --git a/font_files/font-spencer/web/spencer.woff2 b/font_files/font-spencer/web/spencer.woff2 deleted file mode 100644 index 7513ad6..0000000 Binary files a/font_files/font-spencer/web/spencer.woff2 and /dev/null differ diff --git a/font_files/font-springwood_note/otf/springwood-line-demo.otf b/font_files/font-springwood_note/otf/springwood-line-demo.otf deleted file mode 100644 index 13ee3f1..0000000 Binary files a/font_files/font-springwood_note/otf/springwood-line-demo.otf and /dev/null differ diff --git a/font_files/font-springwood_note/otf/springwood-note-demo.otf b/font_files/font-springwood_note/otf/springwood-note-demo.otf deleted file mode 100644 index bf662b4..0000000 Binary files a/font_files/font-springwood_note/otf/springwood-note-demo.otf and /dev/null differ diff --git a/font_files/font-springwood_note/other_files/hanoded-fonts-license-&-faq-read-me!.pdf b/font_files/font-springwood_note/other_files/hanoded-fonts-license-&-faq-read-me!.pdf deleted file mode 100644 index b6a12ea..0000000 Binary files a/font_files/font-springwood_note/other_files/hanoded-fonts-license-&-faq-read-me!.pdf and /dev/null differ diff --git a/font_files/font-springwood_note/other_files/springwood-poster-1.png b/font_files/font-springwood_note/other_files/springwood-poster-1.png deleted file mode 100644 index c29d37f..0000000 Binary files a/font_files/font-springwood_note/other_files/springwood-poster-1.png and /dev/null differ diff --git a/font_files/font-spritegraffiti/otf/spritegraffiti-extras.otf b/font_files/font-spritegraffiti/otf/spritegraffiti-extras.otf deleted file mode 100644 index 9757fa6..0000000 Binary files a/font_files/font-spritegraffiti/otf/spritegraffiti-extras.otf and /dev/null differ diff --git a/font_files/font-spritegraffiti/otf/spritegraffiti-regular.otf b/font_files/font-spritegraffiti/otf/spritegraffiti-regular.otf deleted file mode 100644 index e60a8ad..0000000 Binary files a/font_files/font-spritegraffiti/otf/spritegraffiti-regular.otf and /dev/null differ diff --git a/font_files/font-spritegraffiti/otf/spritegraffiti-shadow.otf b/font_files/font-spritegraffiti/otf/spritegraffiti-shadow.otf deleted file mode 100644 index 0e23c57..0000000 Binary files a/font_files/font-spritegraffiti/otf/spritegraffiti-shadow.otf and /dev/null differ diff --git a/font_files/font-spritegraffiti/other_files/ff-eula-license-ver2.2.pdf b/font_files/font-spritegraffiti/other_files/ff-eula-license-ver2.2.pdf deleted file mode 100644 index 9085cfd..0000000 --- a/font_files/font-spritegraffiti/other_files/ff-eula-license-ver2.2.pdf +++ /dev/null @@ -1,1957 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[13 0 R 14 0 R 15 0 R 64 0 R 65 0 R 66 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - License new9 - - - 2021-06-14T14:31:36+03:00 - 2021-06-14T14:31:36+03:00 - 2021-06-14T14:30:17+03:00 - Adobe Illustrator 25.2 (Macintosh) - - - - 256 - 160 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAoAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A8/4smR6z+XPnnRVVtR0S 6iU2sV9IyxmQRQXDskTTmPl6JZo2HGSje2KqUPkHzzNey2EXl7UmvoY1nltBaT+qsUjcUcx8eXFj 0NP1YqmUn5SfmBBr0WjXmkT2kj3VrZS3ro72UMt40SxercwiWMb3EdaEkVpSu2KEFD+XnnWTV20o 6NeRXUc0ME5lt5kSJrlxHAZGKfAJGICE/a7YpVdE/LHz3rUix2WkyK8kKXMC3bxWZmhldY0kg+tP D6qtI6rWOu7KP2hVVDDyJ5t/xIvlltOePXWEB+oyPHG4+srG0QYuwVSRMlQTVa0NCDiqPi/Kb8wZ bKa9j0hntLeUQTzia34LKZFjCE+p9rk67e9emKuj/Kfz7Lfz6fFp8cl7azJb3ECXdmzRyyTCBEek 2xMhpv8APpvirUf5UefpIbOZdMAjv5Ugsy1zar6ksszQIgDSggmSNl38K9MVbtPyn/MC8lMdvpRd 1aND+/twOUs/1ZBUyAVab4fx6b4qs0n8rPPmrymLT9M9eQbFfXt0/bjj/bkX9udB9PzxVGad+Sv5 n6jAZ7TQpHhEIufUaa3QGI1owLyLWvE0p1piqW65+XPnPQrF77V9O+p26JFITJNBzKXDMkbLGHLs GMbfZG3fFWS/844f+Tn8vf8AR5/1Az4oL7fxQ7FXxB/zkf8A+Tn8w/8ARn/1AwYpDFrL8vvOl9oV trljo9zdadeXJsrN4EMkk0yo8jCOJKyuqrE9WC8agitcUoW28n+bbqKCa30W+lhupRBbTLbSmOSV naMIr8eJbnGy0r1B8DiqaXP5UfmTbQ2UkvlvUC2oLNJb2yW7yXHC3ZEkaSBA0sYDSrQuorXbFCjq f5c+crCfTYv0Vc3R1e2hu9Oe1gnkWZZrdbkoh4Dk8UbfvAteND23xSh73yP5qskiludNmitZPq4N 7IjR2yNdxpLEktxIEijbjIpPJhTFUb5g/K3z55egS41fSzb28twlnHOs0EsbXEhlURB4pHUsDbuH Ffgp8VKiqq2P8svO8tu08enB0VXkYLPblwkcayu/piTnxVJASaU+44qpXv5eebrKON7qzSITen6S G5tub+rCtwnFBJyP7p1Y0G1d98VRd1+U35g2txd28+lcJrKFrm6X17Y8Ykl9FmqJCGpIabYqvtfy h/MO6Fo1vpQkW+YpaMLm1o5UyKdzLQCsD7nw9xiqHn/LHzxbywRS6bxe5giuoR69ueUNwQIm2k25 Fhsdx3xVGx/kt+Z0t5cWcWhvJPaiM3IWa3ZYxMgkjLOJOABQ167d8VUD+Un5hLGJG0kpEbZb0SNP bKpt29OknIyAf7vSo6iu/Q4qxKWN4pHjenNCVahBFQaHcVBxVbirPYvzk8yrbXET2to8ssSxW85E ytB/oEemysqrKFcy28C19QMA3xKFxVZefnF5mvLm6mubazkF5DcQTRcJgv8ApGoPqYcEShw0NxJ+ 7+KnEAMG3qqjV/PXzVzlmex0+S4ku1vFnMc4ZOGpjVlgAEwX0vrIPUF+JI5dKKEOfzp80iexeC1s beHTbu1vbS1jScxq9o1w6oS8zyMkj3kjOGatacSoFMUpX5g/MvzNrSRhpFsX4lbuWyaaJrpmEXJ5 6yODX6vGeKBUqK8a4qkcOu6xDePerdyPdunpvNKfVYqKbVk5fyjFU2vfzF8139/LfX89teXM8y3M xuLGxlR5VSSMM0bwtGfhnfbjTl8X2gCFXSfmL5qlcNLLaSoOXGCTT7B4AGWFOIhaAxcQttHxXjRe O1Kmqq3T/P8A5j065W7082dpeJI8kd1BYWUUi+pz5qCkK/AfVPw9AKAUCgYqlGs6xqOtardarqU3 r397I01zNxVOTtuTxQKo+gYqg8VdirsVelf844f+Tn8vf9Hn/UDPigvt/FDsVfEH/OR//k5/MP8A 0Z/9QMGKQkXl38yNX0XTbfSxa213psIu1kt5vWQypem3d1aSGSJ14vZRspQqeoJINMUphJ+dPnJ7 r60Rai4rzDiNtnGq/pgPx58a/WBx6U4bUr8WKq9h+d/mSzv4bpNO094LdYBBYuLowo9rdT3cEoP1 j1S8b3cijk5UrSoJFcVUpvzp80PFDHHZ2MDRwLbyyRpPymWOwl06Jn5zOA0cNw5XgFBY1YECmKoT WfzX8xax5cg0K7t7T0bWzg06C6RZROtrbrEPT3lMZ5tArsxTlWtCBtirHJ/MWv3M3rXWo3NzIZhc s08ry8pga+owcsGavc4qm3/Ky/Oh02bTHv0ksZ0kjkhktraQASxLC5QvEzIxjQLyUhh2OKrP+Vhe Z1WdImsreO4EQmit9O0+BG9CX1ozwigRahxuaVYbGo2xVDJ5u1VRKDBp7etJLMzHTrHmJJUMZKOI Q6BeVUVTxVqMBUYqu82eePNHm25t7nzDe/XZ7WMw27elDFwjLF+IEKRilTiqRYq7FXYq7FX6Cf8A Ksvy2/6lPRv+4fa/9U8WLv8AlWX5bf8AUp6N/wBw+1/6p4q7/lWX5bf9Sno3/cPtf+qeKu/5Vl+W 3/Up6N/3D7X/AKp4q7/lWX5bf9Sno3/cPtf+qeKu/wCVZflt/wBSno3/AHD7X/qnirv+VZflt/1K ejf9w+1/6p4q7/lWX5bf9Sno3/cPtf8Aqnirv+VZflt/1Kejf9w+1/6p4q7/AJVl+W3/AFKejf8A cPtf+qeKu/5Vl+W3/Up6N/3D7X/qnirv+VZflt/1Kejf9w+1/wCqeKu/5Vl+W3/Up6N/3D7X/qni rv8AlWX5bf8AUp6N/wBw+1/6p4qidN8i+SNLvY77TPL2mWN7Dy9K6trO3hlTkpVuLoisKqxBoemK p5irsVSPUvIvkjVL2S+1Py9pl9ezcfVurmzt5pX4qFXk7ozGiqAKnpiqG/5Vl+W3/Up6N/3D7X/q nirv+VZflt/1Kejf9w+1/wCqeKu/5Vl+W3/Up6N/3D7X/qnirv8AlWX5bf8AUp6N/wBw+1/6p4q7 /lWX5bf9Sno3/cPtf+qeKu/5Vl+W3/Up6N/3D7X/AKp4q7/lWX5bf9Sno3/cPtf+qeKu/wCVZflt /wBSno3/AHD7X/qnirv+VZflt/1Kejf9w+1/6p4q7/lWX5bf9Sno3/cPtf8Aqnirv+VZflt/1Kej f9w+1/6p4q7/AJVl+W3/AFKejf8AcPtf+qeKu/5Vl+W3/Up6N/3D7X/qnirv+VZflt/1Kejf9w+1 /wCqeKskZlVSzEKqirMdgAO5xUBgnnTzB5OiubG51LzPf6dDLaT3VvDpzSehLFalZZZ3aCKRqoNq F6EGnE4spwMTRFEMX03zP+WdpYW+of478wz2tuzaeXu3vSZJpQhBkRrZWLgR/CwFN27nCxZnF+av kYafFc/pBvTMNzJxeOQTD6iypOGQjnVXbjWnEkHfAqgn51fls0jodVZONut4jPbXQWS3cIRJG3pU YVlAp9qtdtsVU7X88vyxuZHSHVnbiFZHFpdlJEeVIA8bCIhx60oj2/a9t8VRNp+cX5dXWoyadBqw e7jkELRiGc/GZY7ehIQhf306p8VPH7O+KoK1/Pn8rLswm21eSSK4mW2in+p3ixm4f7MXNoQOZG/6 +2Kphb/m35Cn0mLVfr8sVlMEZHmtLuMkSEKpCtFVgS1OS1HvirUv5v8A5exWpu5NTdbUBz65tbvg TGsruAfS3ZVt3JHXp4iqqb6D5z8ta+ITpN59ZFxALmI+nJHWI0of3ipQ/ENuuKp1irsVdirsVdir sVdiqSa1518r6L9dGpagkL6dbC9vYlV5ZI7dn4CQxxq7kciK0G3Xpk+CXDxVsixdJUPzd/Lw6wuj DVT+kWqRD9WuqUChyS/pcAOLDct7dcglBv8Anj+WgjaRNTlmVLZL9/Ts7tqWjyLH65/dfYVn+LuN 9sVXN+dv5cK0IbUZv9JRJbUrZ3b+rFKI+Ei8ImopaZU+Kh5bYqqv+c/5bpfWlidWY3N6kUtui2t2 wKXEgiiZmEXFA0hC/ERucVdpf5y/lxqkPr2OqtLBxdhKbW7RSIuPqcS8K1481rTxxVqL85fy+e8t 7R7+WGW8ie4sjJa3KrNDGHZ3RvTIoBExo1D4DcYqqp+bv5fyTxwR6jI8kql4+NpdkMqzCByG9Knw SMOXgPiPw74qg7P89PyyvG422qSSMWnRVW1uizPbLzkVF9Lkx4ENsO4HUgYq1L+e35XRrZOdWkZN QUtZslneN6h5cQgAhJ5Ma0Wn8MVV9O/Or8t9SnuYLPVHkksldrwNaXcZi4GhDiSJTXrtTscVUW/P X8rVtvrR1hvqnotcG4+qXnAIswt/981r6ppTr36Yqy3Rte0vWYp5dPkeRLaZ7eb1IpYSsqU5LxlV CeoNRsR0xVMMVcQCCCKg7EHFWO6/5KttWbTDBqmpaLFpbl47fSLn6pDKpKn0541Uq6fD0+ficWUp GRsmyldj+V4tXRm82+ZLoJD6PC41DkGIm9YSHjGv7wH4a/yfCcWKnF+U1tFA0MfmnzGiGee4XjqJ Ur9ZUhowVQfArHmoNSG3r1qqu1P8q4tRu47qTzT5hglhRo4TbXyw8Q83qmpSIM+wEfxkjj/lfFiq 2L8o9Miv4LyPXdbRraQvDEl4EjVCY6xALGp9OkXGla8SVrSgCrp/yltJLQ20XmbzFbfvC6XEOoET orKA0aysjPwZlDsCd23NcVVT+V6lpy3mzzIVnkeQr+kSoUPJFJwQqgZVHocRQ7K7jvsqn+g+Xv0P 6/8AuTv9RNw7OTfzCYpykeTinwrxVfU4gfygDtiqZvDC8kcjxq0kRJicgEqSOJKk9Kg0xVfirsVd irsVdirsVdirsVSnzH5cg1vTri0F5daXPcqkbanpsgt7xUjf1AqTcWIFa1HufHDfRWL3H5RJLcTX a+bfMYunM7RM2oMUj9eNowqIFXikfLkvEg16saDAqte/lWLq7+tf4u8y27mRZWjg1IpEQiKnp+mU ZQh4ljTcknfpRVvTvyu+oWgtk81+Ybj/AEhbmS4uL7nM3EAemXEa1Q8RUEHbbFV1v+WAhnupv8V+ YpGuhcLSS/DCIXPGohrHVPT4fu6H4fuxVNPL/ku30e5uZ21TUdV+s3El0sepzrcrC8gAAhqgZFRV 4pvsCcVZDirsVdirsVadFdSrgMp2KkVBxVvFXYq7FXYqlGuHzcJE/QQ08x+jL6gvjMG9f4fQoYgf g+1z79KYqx4N+dy3jkp5Zks+REY536ShfVNCTxdSfRptT7XemKrlX86hdahyk8tta+k50qiX4kMx pwFx8RARd6lNz4DFU18vf8rC+uSf4j/RP1Kj+l+jvrPq1pHw5et8PX1K0/yffFWQ4q7FXYq7FXYq 7FXYq7FXYq7FXYq7FXYqxDz15g8sfo/VNJ1LWr3RZLO1jv7y804SpcQ2/qhQ6SJHL+1swAO3tk/D PDxdEXvTFpbvyTc+YZRF588wR3hikQWMU0voIeMRZ1RrZlLqJ4yKkjfp9rIpSUeZfyweyuDH+YXm dlntmAk9S8V0QXDVlj52qhX5yelyPYAdq4FTG41L8vrd7oS+fvMIbSEt7i+Rbi4YrGFDKZAtuah1 iLOBvQk9xhVCW/mH8vDBPpieePNDyvbrdRSvJcib6ndJGiXEUjW68kjEoNTVwQSa0OKsg8o/mJ+W tsk7WnmnUNRULbRuNSW8kK/WJHaB1EkKH976wHIbcQvhgVMv+V3flst79Tk1OSKY3H1RedpdBTOZ ZIQgb0qbvC4B6bHeoNFV3/K6fy5Ml1GmpO72j+lJ/o1wqmX95VFd41Tb0Wq1eI7nFVt5+d/5ZWYB n1aRavcRjjZXrVNoaXBHGE/DH3bp132OKqWofn1+U+nvFHea56Mk0fqohtLwnjyZDyAhPFgyMpVt wRQjFVd/zr/LRCinV2Z5beG7iRbW7ZnhuHWOJlCxEnk8irx6g9RirKdB1zT9d0e11fTnZ7K9jEsD OpRip6VVqEfTiqPxV2KuxVgH5meT/PGv3uly+W9YXSra0LS3oa5uofUkiPOBeENUZC/94W3p0xVi Uv5U/nBLpb2L+bBwR19ILe3qCSI8FkjlKqHUcIE4hG25SfzAhVu08hfnFDpga+8xafPIunzK2oPf 6iGW5kkmEc4kQRfBHazEKa/a3IJCsFVc/lv+cE5sba481iK1i04299NDfXn1mW6kaQtICYxGAok+ BuPL4R4YVQTeRvzztNSju7zzZYppxuHklSbUL9SiXUYjkjQiONG9MljAHHwkA4FTBvy3/OKCwj+p +bfU1CCS+aN7i6nEUgu42iiMqRwgFoRxkX4aCTkfirhVAW/5V/nJFeNb3XnG4n03iy2l0moXaXCO sLmJ50K0dfWWNXVX+IFjt0AVu8/Lz85ZdJDr5jh0vUbuVzdFNQvI0Dc4jb+n8M1HkcMj1LfDxArU 4VZJ5Y8ufm3pOnuH1TTNSvr24ka/uriW6kMUYBEawHhxZ0NV+JAKAVG1MVR7S/nSupqok8s/o4SD 1ldr43AR5WCUoFSpTiACOtdz3Csy0xNRSxiXUXjlvAD6skQIQmu1AQO2KorFXYq7FXYq7FXYqkGs t55NxfrokWmrH9UQ6bcXpmPK79Q8knWKh9Lh04mtfHoJ+nh68V/BG9oVP+Vo/Xzz/QY0+jU4/WzN XjFx60X7Xq19uPvkEoC0X87ucX1yTy0U6zeil+DX1AKLyZv91VNf5tum+Koa3f8AP144mlj8rxN6 UomRvr9fXBlEJXizj0z+6Lb1+17YqqwD89Wkt1uD5YjiMUou3jGoOyzHn6JiVuIKD92XDEE/FSm2 KqUsH59sKpdeWlaSOUOgS9pFIvL0TGx5cg/w+pyXbfjXFUVdL+dgkYWknltoy85V5Uv1YIY0NupV WIJEvNZDXdaEAGoxVR1AfnuBatYf4YZhEv1xJjfqpm/3Z6fEMeP8tTtvUHaiqksP54/X7glPLADx 8be+Ed6WCrOvFZRzDN+5Z24r8PPvQ4qr2dt+dCK883+GUvJYn9VYUveDTqkogJc0cqG9ENX9nlSm 2Kuto/zxCWjXM3lsyAn69Gi33E1nH90xodoCaVH2hvyBqqq3U5PzwnlX9Ex+X7SEQo7fXhdO7TF2 qn7l2VV4AVO/Xb2VZR5Z/wAU/opB5n+onVuT+odM9YW5TkeFBPV68act+uKprirsVYF+ZPkCPzPq OmXslpps/wCjUlFtNqMl4hjuJHjMVEtpYUkQ8PiV9zsB3xViR/KfzXe6ZDdXGk+VpdZtZrWXS5Fu NXe1WG0RI4OXxh2ZUWn8rbcq4qqv+TTvBa28ukeXRcxM7ywCbUvTMEl2ZpaKZOXEjj8J+HlUfYYr hVrS/wAlL63VLebSPLqWotbi1uFtX1SNnMkirGamZmHKAfHViwetGPKuKub8nNRn1TVFn0fy1JZ3 AkngMkuqTzie54l3mjeUJxMiNxCEe1N8VUbf8otda5i1CHTfLbXMizNPcLdaqf8ASAkU0QiZHQmI X8JZ0ckhOh3K4qgoPyO1GLSbCC00Ty3c24adtSRbrVWJ9YLHItozysFYonD4yKfzA1bFV1n+Sfmy HVodSOh+UzNHaRwpK82stJG0FuI4EVWlkjpGY409QfEVBPU4FV7r8iru60XSNPutL8vLHZesJFNz rLIklxGqVhb6yjsPUijHBz9nYFT1VTTQfyq1O511bvzRpnl+fT2iQtLpc2oxXAu4mhboz+m6K9su 7HmeO+1VxVP4vyN/Km0066so9G9KxuvTNyn1u8APpHkh5Gaq0PWhFe+Ko60/LD8vI9Rl1O201GvL l7W6ll+sTuGa1YNbPxMjJRSlRQUNN64qy/FXYq7FXYq7FUv1/wDxB+i5f8P/AFT9K1X0Pr/qfV6c hz5+j8f2a0p3xVj9235vm+Q2aeX1sfVT1Fma9ab0eA9TiVVV5868dqUxVV8un80xd2n+JP0F9UMU n139HfW/U9bn+69L1vh4en9rlvXptirJ1urZuHGZD6jNHHRgeTpXko8SvE1HscVXLJGxIVgxGxAN abA/qIxVdirqitO+KuJA6mnzxVpXVhVSGFSKg13BoR9BxVyOjorowZGAZWU1BB3BBGKt4q7FXYq7 FXYq8+/ND/lVDz29t52Rp7qe2mNpbx/Wy7wwMtxIB9WIFeUSkcjU0oMVYrHH/wA43y6fAywM1rFd EW0arqju0+nRW8RHppykPBHhBV1+LY0PXFVCST/nGdZLa6W3aebUDCiSJHqjsyK1qYjJXfgGEFOX Wvfk1VVb1/8AnGsahp0vErfXHp29jRNVDP6KxPHyAG/FPS+J/wBnvQHFVkusf8422017yMnJfrFr eFRqjoqvcVuS1Kqg9af4jselPh44VX3Wq/8AONN1a31tcS/uJoodSu146rHWIpEsUqEBT9lYxRPk RWuBUK2uf84t6FqaurJZ3benNxii1NUQNbv6bemq8AGiuW2A3LVpXcKro9I/5xk0Ka5qDB9ct7mz lt2OpvSGGP1bkU+J1Jj4sGJqRThiqq//AELNq9jea06iS34m2vZEOpinpEXjLwiNDxZeZdAfnvir rTXf+cbJdHZLGNpdKsHe/URQ6kqRyW8qzMUDBTVGnDUXYKaGi7Yqyry55U/JjzZA+saPaW+pRXS/ vWZ7irBXEYZ4ZmU/btqKxX9nbpirIfKv5deTvKkhl0DTzZuYRbE+tPL+6WR5Qv72ST9uVjirJMVd irsVdirsVYn5w8j2Wtw6jJFbw3N/qNvBY3UN7NcC2a0WcSOOEDqyvx5cGX9r6cn4h4eHpaK3tgsf 5L6nd6s99q+i+XZDNYtDPLDcat6huJY0hm4hpeCxmPkoI+Ppv1yCV1/+UGvTB2j0vy2ZvQ+oxBpN WjQ2rRp6igJN+7PP1OPHopHxbGpVA6t+UGsaro8Yl0/yrJrFwzJKwm1Vbd5Emad1iKTCQNyDc2Hx H4q4qq2X5Q63a3UF1DonlttTN2n1i7t59TRIrUxNJOAjyyEO00xoF2KkVoaFVXJ+TWrX9pPHeaV5 YnhvJ5ZLp7abVo1lDXEDFuKTfC7LA3KjUDheo5VVQuh/kl5t0u6juV0jyosiS3E6vHLrPOOSSBUQ o7yu1GcHmp6Dcb9AqvH+S/mu3sJ7a20zyuGiW3Gnu8msNvF6kjc+c0hXhNKxQ1aq1Vhviqppf5M6 jfa363mPSNAGlzXZnuLGCa/+sywxmRommJkaNpYmkUUFVZSVavw0KvUPKnlHyz5WsprTQIDbW08r TTK080/KUURmLTPIa/CAd+2BU5WeB40lWRWicKUcMCrB/skHoeVdsVX4q7FXYq7FWCfmJ+X9z5rv IYja6fPpckAj1AXb3STuYphLDHGYGVVSpYu32ugBxViA/K7ztJDbX02jeW1v7N7tlt421EB+cUwi I/f8QXmnZnBO4atQy4VVdP8AyYu9G9SGw03QrfT5EnguibrV1Z7W7jiS65VnZfiEXQmgotCDU4FU 9Q/JjWbvTLq3k0jy293MkYQvNqwRn+ty3EjNwlV1qsnIcDUtUH4aUVQOq/kh5o1a51G4ubHy1JJP OJniWbWFWZ4Y2S3M5WflGVSQMfSp78tiFU48rflHJa3gk816V5fhsUSFIxps2peoxtoJI4zK1zLx k4LK4BYE8ev2VoqyP/lRn5XiG1gTRysNmkkMCC5ujSOb1C68jKWoWlZuta08BiqKh/KD8ubeZbiH SfSmjMTLKtxchgYFVYyT6v7KxqN8VQN9+Qn5U3un29hLopWGzSRLUpc3StH6tOR5er8Z2H26/diq 6z/Ij8rbW2Nqmjc7f1XmjjkuLh+DSQiB+LGTlRkHQnruOgoqyjy/5T8veXvrn6GsxafpCb6xdhWd g8vEJzo7NQkKK069euKptirsVdirsVdirsVYf53/AC80jzRaarAk/wBS1XU7JLKe7p61LdXLoDCz KtPUFaih265Zxy4eH+G0Vvbzmf8A5xnvr2e/vbzzOv6QurcWkM62KMqK0aQzylDIvxzxoRQfY5Gh OxytKJ/6Fwu5am880+s5sJdPQx6ekAX1C/FlVJgAqIwHEdafaoSMVQ+r/wDOOo1iiT+Z4QJkaL14 rOMNJcqwkkonqbUljmlbi/Is5DfCu5VdZf8AOM8Md0twfMwmuKKt062MaFwzStPGAktI0mW43AFR QEHAqKuv+cabCUxvDrIhnSO6RpTZrIXa5YlXYtLzqiBFJDBnoxJq7YqgNT/5xnl1S/ubu58yxJqJ uTcW8osY5SIVKfVkdHkG0YWRSBs9QWrxpiqtqH/OO8E+otqH+KoreOCd7iaFbJAiXSmWS2cn1xRo frAYg/3nVvtYVTe5/IP61e3d1ca+Xa44CH/Q4wYgJEkkoefx+p6EYq4JHHwNMbVIoP8AnGi5ims1 g80RvBYNzjQ2KVhuUjZ45B+9YvS6lM3pu3Gh4mopgVHj/nHW9+pLbt5pLy2zR/o67NgomhjhdDGj Oky+pRFdST15k06YbVS1D/nHBrpntX1WGbTLiW4vJ0aGWNxfSyOYrj4Jvj9KFxFw5KDTl1OKs3/L b8ur/wAmDUEl1r9KQ6hKLmRWtUt2ExUCR6o7A1I2+GoFASaDArN8Vdiry/zl+Uk1/NZnRrXT7hbO a41GOTWJ755PrzuXiXlC6n0AXJO9agbGpyyeQyNlAFMe038jdesLyGWDTvLkMcEUc9u0T6oHivPS ihnjo0rLJA6I/wATfHVuX2qk1pROnflH5kMlsl5ovl2KKD1Y5pYZtTEpWWMNWBjLJ8JmmmB9TenE 0rhVfc/kfLLptzZfobQDGH46dGZtUVY7dnjmdWMcqvX1vUZQp2qN6EjFWtQ/JXVtRhkivdP0KQzi T6xKJtVBY+vbuihTMaK6WoD0YFTTjtWqqjd/kffSSX93+hPLr308TwWlJdUSMLK8iMZgsy7+g6gs vxdloKYqi2/KXzB+k5UGj+WW0S6uWurmEvqgnMhjX95X1DGWaUfEOIHEdyxoqhbX8rfOmn2F3INB 8sz3U1usf1S2n1NI3kEklQ3rSceHGXmx2Zm5VrscVU7P8mfOFvdpcfUPLLUmiikpJq4ZrSGN4Uk5 GZgJhFKy8OPDepJ2oFRflf8AI+awvbQ6jpukCyUIbyO1uNTZzK4WS4ki9SQULTwQkA/DxU7Ak4Ve yYFdirsVdirsVdirsVYJ5ytPK091rq6l5W1DV5H0uNb2WyidzdW/rVFtCVkjrKrDnRaNQddhlxMv DG+18mO1sV1Py7+Wcmo3t3cfl9r1zdC2uFknSC6IkT6vGjxxf6QBzkjl4JQA1VqHbKmSlrNr+XVs XkuPy58xTt6f6NiS1tpmJt5A/L00juRxUCM7ijAEeOKobVrL8t76KaS8/K/zNOjRJI3C1mV2Lulw yqFulYSCS4q5G5PPc8WwKiNP0v8ALW31oXH/ACrvW7CR4luY9SlhnSJVnrWJi049OX1Z2VoqeB8K FUt1fy3+VJ1l9CP5f+Zk+utDzuLW3uPqrFFEcdxz9dmUQ+p8RCjc/EG2wKm9nonkCcQXk35da9a3 cMdpCAY5i0Rs5BBCiFbj4lj9BXLAUZQrGuFVGwtvKT2I0+f8u/MjQXVx+j9QmnSYv9hbcXBInUmM oq8pIwAN2+aqZw6J5JhmtDD5F1r1LUfDJS44Ri9Z2m3e45SUaLf4Tx5L0B2VUPLl55D0/wAy3Wu6 T5G1+x1CO3jW+1F4pI4VWdEmeKRJLnhzj5Vl+D4SDv05BWW2X5nRXly8EPlrXqxyyRPI1koQem8a 8+XqfZdZvUTuygkDoCqop+aokh5x+UvMbygKXtxYoJFZ/Q4o9ZgqtS5DUY7BXJ+ziqe+VvND6/by TPo2paMUCMItUgWB2DgkcQrybgU5A9K061oqnmKuxVJ9c07zFeyRvo+tLpiJFNHJG1ql0rytQRyE syEekwNVB+KvbFUiufK/5mTXUssfnhLaFopEht4tJtyqSOtEkLSyyM3Bt+NQDtXvVVVstD872+sW s9551W5sYYVa5046faxGbgCHl9VW5oGLA7bCnvirLkkjdVZHDK4DIwIIIIqCKeOKrqitO+KtI6Oo ZGDKQCGBqCCKjpireKuJAFTsBirsVWyTRRgGR1QFlQFiB8TEBV37kkAYq2zqoqxCioFSabk0A+k4 q71IzIYww9QAMUruAagGnhscVbxV2KuxV2KuxVJPN80i6DeC31+Hy5PGqSNq0ywyLAhcDkyTlY6N QqC3fGlYdqGszwagySfmpplpRn/0JoLAuFZDxB5S8/g5q5NOg32xVVtdcaaaOWP8z9Lnt1mkmZI4 rAh7eOL4omcStTg0qOXFNqAjepVZDp3nLyxZWMFpqXmvTr7UYYv9IufWt4WlIlMBcQo5C/vh6dF/ a+HriqLHnnyX6bSHXdPVUXk/K5hUqOZj+IFgVPNStD+0COoxVRg/MTyDPC08XmTTDFGnqSsbuBeC gqCXBYFOJdQeXQkV64qqQ+fvI0yo8PmHTZY5W9OORLuBkL1VeAYOV5VdaL13xVY/5h+QkeSNvMWm iSIKzp9bh5UcKUIXlUhvUWlOtQOuKq487eTTAbga9p31cVrN9bg4fCnqH4udPsDl8t+mKqP/ACsD yJ6Ukp8x6YIoSVklN5AEBHCvxF6f7tT/AIIYqidO83+U9TvfqOna1YXt7x5/Vbe6hll40ry4IzNS hr0xVNsVdirsVdirxL82Py4sluNCGhxalamyuJ9SDadpraoPrHqpIpld54WTdm4Ip33PYZZPJKZs oAAY1fadb6XDpNp+hvNF2sNrBHyg0SrSTQCK4hJ/0lGQwtyqgHGvLqBkEpTZfl8FliS4sNclmttW tLy7tBocyRyykyCd0kF1/dfuaK5ARQwoDUlVWrfQp7qOzS30/WFk+qMIoF0EsbWKCZlZI3a8eU8V t2jRZTVg32ue2Kq0fky2s765gudO1u7eWaa0vk/RbQWt3NI8sk0wle7WeNJEgilLIvGMD4a8+JVU fL35X+lo7zPba41nLA0U1vNpCQyuZ7MxW7hlukUrAbyUu7np8BpxDBVRX8trybzxLO7eYOB1Bbx0 Ojqm1tIqR0H1ks0RWfgsm1QHJHw4qmFp5FsZtZsvT0jzNb3Gp+gkl1LojGOGASkRw3Je7McfpLDD VuFaLyNQxxVLtO/LeYR2UH1LzIIdKMyRepoqOGiubUtKgjF3yUzfE59TdGZY6Yqj7DyDCdLhlktv MNvZXUyWVwl1okVvPHBbQyRxmcmdR6fo3RVZqlqpx3NFxVO7PRPJWnWcc/mTyfr2t3FnbRrBr8Nr JaLJb3EI4qUju0RZI1uBCW+0SORJ4lgq9U8pfl/5K02S11PR9Gm0m7sBPYwmdpDN6CSspQ+q8vKJ 2Xmhr0IIpU4FZlirsVdirsVdirEPPHlvy7c2Wp3813Y6TqE1rFBeapfpHPALVZg6rPDLJHG0bOKf ERXoajbJ+IeHhvZeDqwpfK/l1o20+886eXLnzLLFLF9cfS9IE5Zl5ofQ5GojTj8PcCpyKpRZ+WPK mk2UlqPzG0KWOZCGtG0vRpBJcTArI/oxD1ZA/NAEqfh+GpBHFVG3vlC0a7fh+Yfl+Aai7tokB0fR maNpLiK4rEWblMaqKnuxD9QMCqF1omkQaLAY/wAyPLR+ses4nuNO0VIrmQsjVBHwj0p/UfZTu/xb ipVROp+VvKPLWbO687eWrYzrdvPbnTtIja3N48JieSrhz6ZVRVzVyVqagYqul8teTLae4D+dtAhS Sa5v5kay0tfjcxW/J5A6lPSnQ0KFGL0+Kq7lUTd+W/J316WWHzd5btHWO3NzF+jtHJ9COszLIWPP 03hRCu/w+mGG22KoS00DynZ6VE9z570G4sLhZLczXGn6V6Dz+ikHJSW4gBbeUcakEOR2GKpe3ljR r24t7z/lYnlqJY1uJi8FnpTK90LeHm7KGjST0JYUuCzf5IIAVTiqdyeXNJ0PXF1mLz7oui20MMun qi2Glwyq5LF0W5Zgw4yKT6dNiCPHFWf2nnbylDZiO78y6bc3Fnbxy390txBGgUhV9Z1DssSyM441 PfauBUz0bX9D1u1N1o+oW+o26kK8trKkyqxUPxYoTxbiwNDvviqPxV2KvIPP2sfllrWo6HN5l0DV Jb1rqSy0y4o1s1u6zhHmeMzw1iV0VuTIwGwIrVcsnjMTWyAbY1ps/wCQUK2WtwWGpOmkyW80bteM 8do8sgXhIguyiBJH9WUEftHruuQSgbTXfyLsLfUPqflvVYbR9RjsNQBuWal5wmi5SM90/GJ0mkRp Oe/YbVCq6OT8gNSNrrS+X7545CLtvQnjMcM4jaZ4nVbkOXj5cytDQCn2F4hVE2/mr8lLyJ00/wAv avcjT+FjcXlqw5+ksZs43Lx3PHjcJclFf4S4LUNVxVSt/NH5GJp63a+XdcttO1K+nhmViVjRltfq 8jP/AKSfThSO7anEjid9qDFVS183fkydEnvH8uaxcpNauxTUpQZJYrSl2TU3TnlIbt51PVviI2pi q+01r8gdSsoZJ9L1GJjG7Ri7mK3EgjM0f1aouWZzAh+xX4V4V7Yqo+X/ADh+Rmj2FhJbeX9atbJj LbQJckhEdVhnmldTdUrIssTO+44qv2VAxVE6750/IXTpbTT5PLt9e2VtbRz2V5GA0BtpUUIw9e5S Vl+yKMleXQcsVTV9N/KfXpYPS0DWdbbQLq+RrmD1LsPc24iuZjNKJnq87cQgYgsarQDFXqnlLQ9I 0fRYbbSLeaz0+Ss8VlcGQvE0p5uCJSzgl2LMCTvXAqc4q7FXYq7FXYqwz80bCNPKer6hZx2i6pJB HDzvDaJFNEsqs0EjXqvbgOtQOY608MWw5ZcPDfpu6eQ6IPNEbNf6jd+Xm1CaD05bsDQPUsJbeFlu 5HdFQuqSejyWp4k0+yKktaS3lx5pi0WwltoPLZ1abjFaanA/lmsbW0ECyRxI/FZKuzKVQ/BtSo44 qrLaedZ/MtzbW0uhwQ2M1wvly5efQpZLZ1X07i3CRqGbik4Yo6fBxUe+KtW0fmVobeXVJdBlS5jv JLezmm8uckuRcqskUToEWQyxchLQhXNRIFrUqql7eeYI5LmwubHy1cXcskVkWvLjQFmkKkObpw0b F1ZVhPpUZgOPU74qoeYbDzIjQ30l55dJvdPaDUYriTQBF6s8ck8bR+oEXi93H6oO/N+RNAuKoPW5 /Pxlvr+QeWbe31FEiRnk8tvJEJeQUtI6r6qtBE4ALfZk2rxNFUcn6ZOgWSw2Xlq4sbDjG7pL5elF zNGheK1MfpzL68/qybRvUHmQWqOaqBWXzUtwLCDT/LcaWs5vtQ09ZvLylLW5jYzxNWKMr6KJwd+Q orcSrrirJNP8sfnFrXl+wkgsdNYSXS38GpfV9AvESNpZFCp6aLG7qtJTKtCSaDeuKsr8s+WfO+ia ZcfpTyPpfmDV6RQfWU/RdissMESTRqvpwj4FniSONXAoUV9uwVnX5cx6hHpNyt95Qt/JsrXDP9Rt JbWWObkB++LWoVedAFbkK7YqyzFXYq85/MXSdM1vWNFkPmvStIEUjQLa3lpY3c1w7TKGjt5rh1lh flFw/db8vdRhIIViumflr5dtwUk846DcaddtaTSWiaVpUaTkK0cZZlYs6yznkgrTqvxcicVUB5Y8 us80V7+Y2i3dhOyRXUL6fphM0iXDzxxSzB6GTjK44KFY1LUptiqpbeT9HGmRWa/mBoAF5I92iro+ jwpLbXMYQr6QI3MYdfUBBozA12wKt07yVDF9csdP/MPy5FGxjjijt9G0YGO7FxErF40IVn5KiAde TDaoWqqra+VvKB1+0EfnTy289ugW+tE0vTKz3kActMKyMsMgclysahttyQBQqnflHT/Ien2d3H5g 80+XvMsV7OJQ7wafboJLmP0qALJIh9WNeNO46bbYFZMtn+UcFylosGgRXVoymO3C2SyRPdMgUqlK qZnKU/mNPbFUJ+kPyORorn6x5aU2opDccrACISKBRZOic0IoK7j2xVXa0/Jy4jjnktvL7KQbaN5Y rMfDBKFMQ5gGiSlfh7NT2xVH2PmL8urL6y2najpMJadYbsWktuGa4+wkbiI1MppxVT8XYYqyKGWK aJJomDxSKHjcbgqwqCPmMVXYq7FXYq7FXYqxjzpqyW+mahDNokWqpFDHLDDfywW9ncyvII1g9afl GsnhyX9eLYcY4OKxzquvveeah5v8tS61NZXnlLQF05Q8d9qTavpyemJFjqs0aryX1GjRDzIDBQN9 lwtahZ+a9CeXS47jyB5bt9Hi9Wa3vP0lpZWykSpnpEYV4FJY1V3Q0rQ1xVSuPzCsrS5t1t/InlyJ p6Xt/cS6xpUMcU860d2f06ueLrWVQ3KpArTAq/8Ax3plvDctqvk/y3b3YV5VtZNb02QSmKWND6Uf BipkYOVAX7afEeRGFVW/826c+omS68meV5rSxuY/S1SXU9L/AHLNMkckdJVUrMgUtVTT4eP2tsVQ t55i0q4bT9Pu/JHlNYL140tn/TGmGL0YCPq7JHwje4R+bemigDehpWuKolvPmiQaSJIvJfln60Xt Ik05dZ0gAq0IuLekgj9McHUiMGlePJD0wKstvPejXGvLpMvk3yyLJNRWtydW0kj1jLQTpFxLmeOO QsV48ieQBBHxKrm816M/1drX8vPLlzr2tQsHsF1bRfWnSR1VEDhSZ0mUFhQEfDQ4q9N8kX/mK6sJ l1ryynlcxPS2s47qC7V0NSXrAqqm/bFWR4q7FXYq7FXkf5j+SPOEd7psfkLSrJNPtkuryZZLfT5C uoSMPQkjN4rMjqWZgV2oOPhk5zMjZNoAAYpqvlP8+Fu47TTdH0+XTbezWESyQaNGHukjZkuFQRuU 4SKvFBtWnQVpFKO0v8uPzD1fU723eDTPLVlp92k9tcSaRYXovZUZozckSKHSZo0V2ZWPJiaMvTFW Zf8AKqNVjt7CG21y0jS29NbpH0WweOaNVQOqpRfRr6fwiP4V/lO1FWtR/KB7mxmt7fULC1lnLNNM NFsD6rOVZjKAEJ5SRo5Ksp5Iprtiq6H8p9Qgjv3i1izW9vJZp4rj9DWXCFpKqnGIcVYrH8DM1WcV qelFUqb8kfMQ05LeLzVaJdrNHN6zaBprQr6MYjQRWxAjiZeK0dd9qeFAq6z/ACX1+ymsZYfMGnyP DCYLuWTQbD1ZCorDKslGkrGyRUQtSiDpTFVsv5F382kzWcus6W9zIluEuz5c0z4ZLaRyrmNQFb9w whCnZVHucVTOP8p9X4Um1uwlLIiSD9BaeFbnIsl4StP+Pog8t9ia74qm3ln8t9PsLRo9ej03XLo3 C3UdwNKtLMJKoJ9QJGH+PmzNzrXfFWYRQxQxLFCixxIKJGgCqAOwA2GKrsVdirsVdirsVYr551m8 sdNuv+dfg1i3hFu8KXt1bWtvLM86oqc7gMqshoy1G52G9MWwwjwcV73y/S84vvN+lTTavbt5H8tt K0j20MV3qOlq13NbS8YEdXSrF1+KNSPhp13qC1q9r52tbvTrNk8jeXktdRE4uEk1jSvTjklDOqSc Y25/WUep4qSOR5A4qiv035Xns7T9IeS/LafWYYoYIn1DSpY2UzkejExQc0EcccqAD4iQKAjFUDqH nXSU1i3uY/I/lq4Jic2+rTavpULooaRAnxxGZeVD0GxYg9GwKr3PmHRY7CazvPI2gwHUgZruzj1b Soy84gedxI1IuTJ8HNxUhX5bgblVL/F3lWZAx8m+W7q8s3ji0aIahpIZ3klm9COPkCYGaKCN0rSp agFVpiqhZeatH1HW7dbbyH5eu7m6uYYWjTV9KmmR7dnjglSMj7UcK8lVByKnY/DgVOLGLzS7Xkk/ 5PabaiKt7aQ/W9Mdpr0sFLGRVojlSfjK/wCyxVVjtvM8d9aXUf5S6SGtbdFt5hd2CTW5MTN6ETCJ vhjeqVWg+MECgY4qzHy/rnnW91K5t9Y8tDSrKOV1gvfrsE/qRryCsI46t8XFT8XGnKlNqlVkuKux V2KuxV5l5utvzo099LXy3dvrTC7kn1ElNPtYTberyS2Zpucqko3HnGppT3yzJKJOwpAHekd7qn/O Q9raWEcWnPd38rRrOeWnrEFiKO7Oyq4Rpg5jP7K8aqe5glR1K0/5yRhtpZrSaS8nGplYoFbTImbS wG2bl+7WRmVfiFWAPzGBUf6P/OQENxBbo7zQW8SRPeB9N/fus5hMrROpdawD12Hqdwu5Bwql9u// ADk4/wBd5xCJpGY2TSHS2WIOvqqpEZ+L0jH6BJ+16nP9jcKqWt9/zk1+kUlm02I2MloU+rmXTg0d xGP712VqlpipoqkqoZa/ZJKqEeT/AJyohbVhFbw3PMmHT5pJNOTinNeE0cSgryCK/L1G3LDb4aFV H6xJ/wA5ImC0j063QXNLuae4MmnemjCVhbQsjcS4MUezCn94C1ChxVGaGv5761ea2lzeny/Z1jTS ria3s5jTnzaSNeHMVjopSWNh8WzKy7lWUt5Y/MkW7iPzpH9Y/cmORtLhKkxRcJfUX1f93PRzw48e 2BVtl5c/M76pAl35wiFxHNC87pp8D+pFHGFljr+6C+q/xEhar0GKqmi+X/zJt9Zin1XzXFe6XDK7 PapYwxNPG0QRI2I+KMo4MhZWNTtQLtirMcVdirsVdirsVQup6fDf2htpooJkLI4S6iE8fKNg6koS u6sAQa7HfFWG63pvlaw1DT7G507R5ry/u42giGmxllm+yLg1k2K7Dl1yQFtuPBKUTIDaPNNk8i6N HCII9L0VIFZXWJdMQIHVeCsFElKhfhB8Mi1Ln8kaU8cET6bo7R2zK9sjaahWNoxRGQGT4SvYjpiq 2HyLo8NuLaHS9GitwCohTTEVOLcqjiJKUPNvvOKrm8kaS03rtpujGclj6p0xC9XQRv8AF6lfijUK fECnTFWx5L0wSSyDT9HEk7xSTuNNTk725rC7n1PiaP8AYJ+z2xVq38k6XbXa3lvp2jw3iski3Mem osgeJSkbBxIGqiMVU9gaYqm/paz/AMtVt/0jv/1XxV3paz/y1W3/AEjv/wBV8Vd6Ws/8tVt/0jv/ ANV8Vd6Ws/8ALVbf9I7/APVfFUVCJhGomZXk/aZFKKfkpZ6ffiq/FXYq8082+XPPcH6Nm0+bVPMF xbXb3cv1XU4dHUx+uGjtpojG8c0fGQ16VC02+FcnkkCdhSAEiSz/ADTDmxGha0Ht0i+rXbeY4Ssw t7pFrKwt2C+ojF3qCzKCtOmRSiND8gea767hXV28w6XbvO9zPcHX4rmRFVmCWgCQgtbOqqzLyrU9 6VxVlLflZEU05I/NXmOEacsSD09QKidYhQCccKNX9qgFfuwKoRflDBHFbo3m7zNNJbztMtxJqVZW RwvO3dxGC0LcAePWvQ4qiG/LOeK2mSy82a7FcypFGLma6W5IESlekke/LkSan7W+KrW/Km0+p29t F5k1+EWjSNbzJffvFWQOBGGaNvgQSUXw4riqMb8vI3a6MnmLXXS6ZGMf19kEfpgCkRjVGUNxqwrv v22xVQ038sYrC3SFfM/mCf05WlSSfUC7BWCj0aBAvprw+EUqKnfFUB/ypxBa+gvnXzYGqrG4/SrG QlS/cxldw4BFKfCvepKqdaJ5EXSdbbVU1/WbtW9flp13diW0LXErSlvS4DdOXFKNso+dVWUYq7FX Yq7FXYq7FVsolMTiFlSUqRG7qXUNTYsoKkivao+eEK8C8y6LrFx5/Gl3uoie+uZoVF5wIVPVClaJ y24V2ocne71ulzwjozIRHDHoevLmzvVZ9a8ieS7KytdVsDqcl00UVzqcF3JA5mdnCcbYvIpqwFSa d/bIk2XmdTlGSZkBwjuSHzF+bHmu2VV0q/0D1neFFF5a6xx/eTNbmrJGAC0hj4VO68m3FDgaEiu/ z085RGNnv/L8FrJZyyyStZazyinhHoScj6bKBHdmjLRvg7ksoIVMrf8AOzXYLBbjVNV8vVMcF16t tbay0RtzNEsx3hL8jFcx8BQ/Efi2xVAWn59a+lrqsl3qugOlhcQJ9YitdUIjimkk5euoX7fpxhV4 EjmQGbrhVFWv5w+envrK0ur/AMu2t2WQX1lJaaxz9Nrgxl4pVVo/svEqmrAszVIpiqhqf55+Z2tp LzRdX8sz2du6i6ee21kMiziWa3YoI1NPq8XJ6VIINB0GBUbq/wCc2tae9lM+u+X44ryaWIQS2uq1 K28rhuFI1ZXKtGr8+hBKBj8OFXsGlaxp+q27T2MvqxI/pu3F0o3ENSjhT0YYFRmKuxV2KuxV5P5y W/0m9hW812+lnsrhNQhc6xa6PHNFLJMVt5o3Xi8KSJHEdqtzAFFFMsnIE7CkAJA/mO+tI7KK9ur2 1T1Vhe6l816bXhZujFm5U9RnJkEopWi0PUUglJNTvdStrKyktb7UNVv5bsG/t4fN9krxSySFLbT0 Jjd5ILlEMiR0BI+1uDRVMLfWrhLGONLu+a609BEFj83WBX6jGilL2Vxxjo8bhhyQEgntQ4qssNU1 ea5gtra81jUL3Wb2e1ntbbzTZTyWkV1Gk8ckaxIx/dIsnAAjjxdqleJxVMD5C/MGupPHa+YFE8lt DDBJ5lhdTF6nGS8Q+jyiuYvq8coJLcuZ7grgVGXuh/mjE8V5badr87yW1n61ivmO0CLLAEWRAXhH xP6QaRwSHq+y1xVR1Dy9+alzrc7/AFDzClndI0Ae38x2sMcKJLUOIhHy9WQJUOp2VgpGxwqufSPz Uexun/Quvrc+jCLaJfMtoGJV4lYcjG0YcJCWZyu/Nh9rfAqyw0b81FNo8+l+YJLiwvJJJAfMFssU qWqvcW6kFW5pcPOIWBJFFHIimxV7Bod9qt5YrNqemtpV0Qpa1aaOelVDEc4jx+EkqfltUYFTDFXY q7FXYq7FXYq7FXlf5heQvM9x5lGv6ChuZpGil4o0Ubwy26oEb98yq9eFfwI8bYy5eTudBrsUcMsW UHhlvt+PJkemaFr+veWLKPzLe3+n6rDO8kkllMtrIyhzxWT0B6bKybEU/HISq9nXaoYxMjH9Kk35 WWzXUt1/ibzCJJ6iXjqLqCvqrKq/CoICcSq0/ZZh3yLjqB/KYG3NsfN3mRYeqPHqLpNzLTszNIq/ Fvcjbj+wta71VVYvyotVtJrSXzN5guLeVLdFSW/r6ZtVAR46ItGYoGfsT264q3P+Vwn0+1spPNvm QfVAwFwmo+nNISCFMrpGvMoTUV7gVrvVVR/5VRLI8i3Hm7zA1qPSFrHHetFLGiBfVV5wC8nrMgLH Y+FKk4qiovyyhiW9WLzJryLeLCgpeisKwJwUQsYyy8urVJ338cVZHoeiw6RZvbRTz3PqSyTyT3T+ pKzytyPJ6CoH2V8FAHbFUwxV2KuxV2KuxVh/n6C9Ecc1h5JtvN1w49N0nmtICq15ULXStVaqOnft iqtonlrRtW0OC48weTtP0vUJllF1pckdpeCMPLVh6sacHEnBZDTvSu4xVMIvJPkyGT1IdA06OT1h dc0tIFb11rSaoT+8HI/F13xVcfJvlAyXEp0PTzJdqEun+qwcpVC8Qsh4fEAu2/bFXWnkzyfZXKXV noWn21zEUaOeG1gjdTEhjjKsqAjgjFV8AaYqnGKuxV2KuxV2KuxV2KuxV2KuxV2KuxVL9fvdWsdH ubrSdNOr6jEoNvpwmS29ViwBHrSfAlASanwxVAeXdZ81X91dR6z5d/Q1vE8i205vIbr1lUqEfhEK pz5NselN+uKp/irsVdirsVdirsVdirsVdirsVdirsVf/2Q== - - - - uuid:31742449-230b-fa46-89fd-837557e570d1 - xmp.did:b0b8f1db-8e21-4efd-b279-c5a7c55c74db - uuid:5D20892493BFDB11914A8590D31508C8 - proof:pdf - - uuid:16f65f2d-1aee-5f4e-b9d7-82f1c4a20117 - xmp.did:570bc408-ab3e-4108-9d30-1dafed74bac9 - uuid:5D20892493BFDB11914A8590D31508C8 - proof:pdf - - - - - saved - xmp.iid:cc1e6923-242e-4802-916b-1a35d5971060 - 2018-12-04T12:31:06+02:00 - Adobe Illustrator CC 23.0 (Macintosh) - / - - - saved - xmp.iid:b0b8f1db-8e21-4efd-b279-c5a7c55c74db - 2021-06-14T14:30:17+03:00 - Adobe Illustrator 25.2 (Macintosh) - / - - - - Print - Adobe Illustrator - False - False - 1 - - 210.000000 - 297.000000 - Millimeters - - - - - Squad-Regular - Squad - Regular - Open Type - Version 1.000;PS 001.000;hotconv 1.0.88;makeotf.lib2.5.64775 - False - Squad-Regular.otf - - - Squad-RegularItalic - Squad - Regular Italic - Open Type - Version 1.000;PS 001.000;hotconv 1.0.88;makeotf.lib2.5.64775 - False - Squad-RegularItalic.otf - - - Squad-SemiBold - Squad - SemiBold - Open Type - Version 1.000;PS 001.000;hotconv 1.0.88;makeotf.lib2.5.64775 - False - Squad-SemiBold.otf - - - Squad-Bold - Squad - Bold - Open Type - Version 1.000;PS 001.000;hotconv 1.0.88;makeotf.lib2.5.64775 - False - Squad-Bold.otf - - - Squad-BoldItalic - Squad - Bold Italic - Open Type - Version 1.000;PS 001.000;hotconv 1.0.88;makeotf.lib2.5.64775 - False - Squad-BoldItalic.otf - - - Mont-Regular - Mont - Regular - Open Type - Version 1.003;PS 001.003;hotconv 1.0.88;makeotf.lib2.5.64775 - False - Mont-Regular.otf - - - Mont-Bold - Mont - Bold - Open Type - Version 1.003;PS 001.003;hotconv 1.0.88;makeotf.lib2.5.64775 - False - Mont-Bold.otf - - - - - - Cyan - Magenta - Yellow - Black - - - - - - Default Swatch Group - 0 - - - - White - CMYK - PROCESS - 0.000000 - 0.000000 - 0.000000 - 0.000000 - - - Black - CMYK - PROCESS - 69.531250 - 67.187500 - 63.671875 - 73.828125 - - - C=52 M=43 Y=43 K=8 - PROCESS - 100.000000 - CMYK - 51.989013 - 43.469900 - 43.469900 - 7.913329 - - - C=0 M=90 Y=22 K=0 - PROCESS - 100.000000 - CMYK - 0.000000 - 89.999998 - 22.000000 - 0.000000 - - - C=98 M=88 Y=3 K=0 - PROCESS - 100.000000 - CMYK - 97.561604 - 87.942320 - 3.210498 - 0.103761 - - - - - - Grays - 1 - - - - C=0 M=0 Y=0 K=100 - CMYK - PROCESS - 69.531250 - 67.187500 - 63.671875 - 73.828125 - - - - - - - Adobe PDF library 15.00 - - - - - - - - - - - - - - - - - - - - - - - - - endstream endobj 3 0 obj <> endobj 5 0 obj <>/Resources<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/Thumb 71 0 R/TrimBox[8.50394 8.50394 603.78 850.394]/Type/Page>> endobj 17 0 obj <>/Resources<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/Thumb 73 0 R/TrimBox[8.50394 8.50394 603.78 850.394]/Type/Page>> endobj 72 0 obj <>stream -HWms_qt/ /mԶۑ:ɋH!@ʯDJf:Ip{{5X?|~|nno,6/A0b7d7L'X֐쯃u*4Bs#2@*4Q|1ez vX;`X ۂOS]NhږxjkyXh.\C\@-Ji6@=vw8Q| ޿ m? o݂{^(%/ p;Xn~9aK_\p;C@&~nIݮO7W%NL #62[y l`jpވi݀cq#ɏȆ1?Itg=x-ηHw_kI6[(ټ/N>ZYTӢHX -bq źbJ[?)I+H jH.&k1 -}W{Y HUl%3:[5{c/+S;p*k\u-(ڍ&?(8x޲N~~#/NTf#](6:3]Piъ{]k`|~ҮkECsvZGf Ij6Y B能;#kRℚ0+TAd͔iMNY@3gkbt!XVJRV,GB Tb@YnTsEGSS?'f(LlBSj)'p4cZTNfRc+IWGUQ="'%6HUdPwSS U*4@2ɠ-Frfx jڬ(~Ʌ=0'vk4e n$ /-dgSɂ e:FnC(uwYH(: sI|3+NdwI;˾Bj]E҉]YMȇYt8]Ȩ'0qC纃iJSS y\wZ'GX"IUVP%"]5Dh \W&J5{)SfU6徙T`Gѯ( ,"]#{ alt҄0Gu`ְt1bkM! L-VI"yxi&KBW Bl3ֹ,b=kllRu'X 횫$sJ홼"p[Q,$}YrN*PTB35q:-Ü>V 0VX#jYr7?!s9O7}A,Tnzlrys)#1@UMt7W-M('/&bSS5bR&T¯p _m9F(oDYr7P9 hJ 2{hgN]9WVyݴm⨇_4 MoNJ<@prW`6ɻsr |[4{@8Mj4nSUTc unjRgoP0|et0{Zy;wV{Bg α)1ϒ\4m,Ep6_h7⊉Y7,KD2<9aݲX+m%_)|YKjͧ3Eq\+kS>?"Eƒҩ!^j~h1Z3_W͔ >(-ɫWXBoړv2tPyKʹ֣T#?\ax:ziO<`|pM{Z,-U gp3x/7 Оx Ci2J]oχOL%pT8L:y<4x5-iն6rD7!%¸Oeʥ%{-zzA -$h e;ITEaӷӑ&"T,q,Ht ,Q0B|t SW|}/'!{!{o&]r4z94>W( X:l0bjT9tӹՙp B-71uf -N)&qf-A1U 1En+MTM/rFg& -/h8y%䝣KWwP,_(]nϵA&B+[ܰ|L.l.Ά .#sru5CXh/wVHد0ߝSfʎ̷gK[ضsNZ[shm}(jk CmuOFI_)/_^ݼz{\mʜ#]f/M[RzCR[1[l lFz=L[jV*9&KNʦڔʡ?z9>ek:mm.uջi l+= -!fnt]c !g+XEX#gzQzwb:/Mf>6k}AuWhjEhfb&a6Bk%  K~N}^Ž~RicrUrp2Utn{‚z|Y3s6,VP1 ZK[~8T8Glјg< s'fMV4! 5б,nEM0M31 T ^ȟ5,iByh, q jζ-4Ih:^*DՑjN1+gj ?B'%̕I,"ae#%o}Q@=q%7k<ߐ%OR"FGP,;מr pO%ŪG Q,!(te-'x& -O.5}QC<=Ȅ:bբ rZ)zV⨶vEՒMch ~ Q -E!Ά0$=)BX0(L>O=zSgR䔛3s~{+%.ۧc*/>խ[L~ʁw8|, Yȕ U5OGް%Qr?Q(\2@ΈD'z^.Km'OA{C\,`ENu`7$n%G6 y"c+>P/pVGOH8y#bÌ0rP_GbP.oSc5Z CNJ1]bL4݉fЌ溶 5~vZXҲD1&O٬ ψX9 qy`4JK$h݃RIS,Y.I,Er &f4:4+a6WO -;]eY,,mD[B5^u=gN gDvf\ kY@RÏ_rWs}9OgZ1~ۼgդ`>T ߐY@piVb$"ёDBHR?x9$I&Bh{KMTC`$F! n`G^:xwuCG"wZ0]A-.M&HqB!&7/;brs;ZF6 5c%Xp;!%xYEA"‘HR$]&/pWL[Ǭw endstream endobj 73 0 obj <>stream -8;Z\7;3lhW%.r#^8,mg]EEW9'N/,Js2G2b1,X.;1eEo"L[G'5S#f@41E%hCZTYVIt -#pcPfB7+^=E&JuXG"0+U[g#l#J^$,k^7(V5eD -:fjal.Q:GuJR!i3<7WO?=1H_dA+^?DH7Yib;f;Y1=2ddh!S(36g*4R8h!_lT0Q0E"LF -fb)8>X];N%"fWKf+KATTUoTMb[-gLHrW#+e!#QPl\,~> endstream endobj 74 0 obj [/Indexed/DeviceRGB 255 75 0 R] endobj 75 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> endstream endobj 64 0 obj <> endobj 65 0 obj <> endobj 66 0 obj <> endobj 80 0 obj [/View/Design] endobj 81 0 obj <>>> endobj 78 0 obj [/View/Design] endobj 79 0 obj <>>> endobj 76 0 obj [/View/Design] endobj 77 0 obj <>>> endobj 58 0 obj <> endobj 59 0 obj <> endobj 60 0 obj <> endobj 61 0 obj <> endobj 62 0 obj <> endobj 63 0 obj <> endobj 57 0 obj <> endobj 90 0 obj <> endobj 91 0 obj <>stream -HlV{P.fCW]Pa؍N$<`PJ -y1cESPG HHLa*#hccP:E[㰥>ZSaA{;.{w~JE!$I&&lcAɹye2Kx֨4:e]gkץYkukG:U($)0rƜܒBCfa!wCn^fۆRCinI`Z1 Y"坢\C!'($f,Brs%aJ+b! BTI7!XQRr pŨT=OB &uzb{3M˦y5j&mN1J0;$IV8W5I"f% m:de-vΌ.vٰoN&RҐ޴bHz|Qy$ȂUTYH;E:x!@f7"s{)nNYʺ.V}wF=cE9dISX`&z*G&;Cp]PMlVGv:6keHJty4ka|i"ǩpb?WfӜ*D2jCjոtx}RJGm\3ojtrU_*!9\xwsND[*-W\3+:ʻ6ъDTR^[{_%šN%)"߮3%B[/KɆ/fP++r%)ј.{.7IҐf|LSCdDf^%{D 7^ǯH?UEr*  {(&u\FϦQNb0{TM6 il.\o4׌"e/-񈫎;7)ͤ$1e,mm폖xp,H q&EŎ`@s2c9)ZjO>GR#H 7{MFSs_f(B:_h/!;9+':}د18MLx8I$ b-| ΍|r$=}^2h2{BRGOJ1bJ<8W>{rj*TЛVNt]^9)I 3itUuecd\,8oGF,f=U?n-%4 4Kal` ̷@vT!|ڋF?0uպdzGeO:|rnBD32<#\*,I.Y|p^^%^ gQ -w{&00YTcG4܄썞aG#Vcrћm`3ܥ'j*jD`V@DD Qه(P-|o?E0+Jx%Qu/G&Қaã߼"p!*(!?`KEV›gV&ڋ:`!D'a5,?WQq۝H_yt<:g< Yn ! FH8j q6 ]ȝ rqrf({r^ ANw8ZGK0pSWO4KYh.Iǜg/m03\XH H~bVFUj% Idx0}t`;vYY, -M$r88ۦz$`E2ID%`$QЄԯpf0#(C,!LP<WIkQ 9qv8>8McK/y=[)sN"%E` WHϐff#9 3#,$sbiiD> -Em|ī.k@ 5 p'K%8:0b8amD"ʜF%){3#Į7fk!>O3:S~ lP5~m{Ԭő8zj)j GwEsLK;r7Ķh^ 4 t\KHڛ'l낹%]cnï繑L"lv .LS0ƒװ]-x~\<](k㢘*,!P; ٲ߹)t9Q&ϣ(q̭ōDS͔_ AU^Ƚ!| -Y3@v]~F|HSa|'$hO$pYw``nB7pEV y`:˶fuSR%y;х2tkׄk\eKjYdPA Y.Z/kPc\V\ La)ØMXcCgtU[,d3]4nfw<_۟s<ϋkd%k5JK],]@s8&8lY;q;y)֕~1QCO*VnQ*_Ǣ@q/:T1!/Djmt&7j>u;w R-ENd>C cvk}1Y *U/rxW1o5L~HfC !Gb˃lYX> rAVF^" S0vLC5Kai6h8![ojThl joiMw TKt嘊o@[! ҒEͬխ-v/hćVd+8BB'ۡf4tAVA0#3JڍԪ v,ȹK'ůfFxIg-Ȯ9'0 I´b+OөT},X$bzmjU ![NR$_#:^OTl76IV:dӄ.t+cJS=º"*a.GȯZFYn街L DF{#E;|9_n1n_ː]ˀ`~ͥmŜfgnׇQ^eZ7~ 7Bc!4nlK:֧۾|{l;Pԣmn]6},[*վp܂]`: R'y&EcӘyڅ&.s-haesn;̟I0) -}V\s?@p~XTQ|mGe"oJ%酸HK]D?=%TGRފGWG_w9x\}LJ05A(&PMŴ ?4vWΥyݣ/kƶ'˨'&1 M=4-$` endstream endobj 89 0 obj <> endobj 92 0 obj <>stream -H4P{lKa{b܆˲e62ل [7Z]{n An{6b^3xL"D<]_Jw99 .ۼËlRQQ=W_;(Z[BMN% ]HxC\^W5 ׁj. C,0\7$pI$NA l=eʹ {35+O^cS8V5{Ե^ }WזpԖ&:*u՜WU/$ 2 :2~oT8V-c+4z[ endstream endobj 87 0 obj <> endobj 88 0 obj <> endobj 93 0 obj <>stream -HVmPWo `&[Hv$fCYЏPavQ)6g:"-֭-0V ۲uMkdj]lGG[.L팖Fs7],\ǹ<9Ϲ/HIҗ~jǷzmm<%GRCw$hٿK.Hg$IJ-,m^q6ot?ks{kmu uf|uMm6篗jk=l߈B<&VbxUMӘ-yamX+)咽FT'Qj Cb,ν1!1{(f_! 4pW&N6\JvahYDbfYzښTc-?AMRIEe&7鍊5 uDA_%m$\B4 7yDɚ^ؿa(̸'6}N\/⋩DO3{qxE׈OG - -!-;%_ĩ |u-ONSqxc&zH03O5wHW׷(֐9 0n:Dd95xt;g}v_s>D͹QX%QU7ڸkt˖Q6'圝CCsM}$ŦfHFGk+#ECDOwu8r`3sXaQc-ee?/HduvDHgSz}>5sA9.?C[!UǠVY -ãlGWoƯŸ߮<(ϑ+[3"]oj'F6=QNe2c%h/_V.Fҹ VjM'ϻx LR3C(C#CnE@-G8g\+ Ď,Uv $*EI$ ]@`J j n'iDם \J$.ei6hjO чpK9ynKse%>|Hّi\WIbŐ|ʭRWiuƭLN|Z "@ȅv>T?ՠ~5^~\\j3{87ʭV5n2xNAp5e }WmuXiqJ{5u -YQD4U;SLHZ[nSN=P*]VS -e yXoc|xbȒ Q.% 6+ T+4zrOfP,yZ0}͍ -KfOዥ1oi!5R pTe?a >@ţ Ax=`QƔFfu$1y6IdMW>]+tR\i"q>MWjё;{ (}蟾B=ѽwW"ݯأf^K_}Nge$GA dB+\dz_ %N!幮?{{5=Ww*^y^ޔTedH=`u-MΟu mOc fl endstream endobj 86 0 obj <> endobj 94 0 obj <>stream -H4UiTWyTbѸ"wˈ"#h@AV"HQAP. ⒌DvaFrLbLέ6)49}_26 ˲O$n w]=64;%46:l ܤn/%%p VS[jONֶ8Y78h,(s;U*'=fԨBk u(,258]{w-Ċ>bԅf!  -sӚEU3Qݨ, 0,EgayJ(ڝar2(UDL*N bj0qz\^r/+Xz8bЏH`= TQ:V@Op^(eۥm -M |ONt讀B -~dQ"#_;H\-=x{h%(~#no pwZCő̧\Smr2LFQ|JDuZWP1^t:4V*Bu9V=Z,FqH KJO3Ne7f6%M.nٯHVtBaJX4N`.z2Ef~@;M|BK3+gYT^gI -s k(\I`-EŠ2 3> =|>i/'I^h' -;3pA-yʶe$7./!Q0ZIWw& -?"iN4a:Y9'?l%)])&YՆԭ!ewKnk2> -ْGe]UCe|Ew~Na!Ě}Ж/0EpL8=;&>nG"tqw w(Z^zO 3ysgCyrf.XEn\U,'™Y^h۶tӷށѪ=9ŭK>}UwK J -)ﺙTwyJĢcYLi0\ktc؜Y%lk* (jW :Ҫɩ:$p$M7 R/= -hߺ!z$dZBxpi6q*V2]>Id* j^x~Wޠ/𕿃5ߙYlgZR.ElU~#[EXSh+fi=bC7fh0d=M|Co>}-!/biE]iL/C'w*'0ށ8~=Gɂ[`.wņ?<ޡҏ^|$*嗸t4ǼoK f+ -HSrAT2XMDa:9Y7d4{c3 Y&vE12ߦ۴XgR_ω)D#&]L;+l7v_̢Ϲ( G'@2!rGt_޳r!%v\(/ꖋ >sTN&p79J jup˔e.^|M09.L>%9X|$>OnrU:ZZf*+իeItʞ֕xj:-{wڷ>/ BK%!*L^`~1jF!}n@;;kՂ!l,gckjLHbjdftv:ʆJ} k锍mTj0!,ѳt[BGTP\щ;04(B=#ݥҮ(`T)$~|%Y+yPj%) DŽDA)ZWQe2kU0D}$AUM,U4MVFĀ/1 -P j~jJ.28H 獈XG:~Pc*UUfrFsm6'lLpPᬼ RKH.F0& Ylŏ.*y) z? endstream endobj 85 0 obj <> endobj 95 0 obj <>stream -Hd{PWƻgnAViJ@4Qw+/2Bx% 0*5ň >6<Qר!F&Uxݽ*鮺nQ*eQ:̜x߈XІaeW=>!aX歡c`qe<Sx `? 3ӍIalšL0IgZLbeDv[Ś -Eg˅se\wK9FLTUSRUĎ#qdkm86mm;;vk+C :u`6|X_!W8%uG>/c=p`oum\% ]19NK}P'_7N5b)H\QwԻb% ʦw5 xKr,l`wPؠJ \- b|=57 ,N6c5٪ ͼN?n3z4aA1ԙ9Zu39y&q)'{K3L.pg7ڤޡQh0'Ga5m| xxfz}%fa2B7U9H>-Z 'D,:6lʿ-OX}ILl%=閹ǷT%W%NOzfl i%i-dMm~e9>CUk RSR[|@[JdWgk -jn317hx -J?hc×!+ on)ŧ;nF ^ŴB~:'2Rt6O"zeJ<P)Dr%SwϬϾE>SN!sQ1sIO@(f5sէ*q B"L6̺b&D Cz=:-.&~I=[ BC%Ssxųٟ;~~\dc -2rjd1ʠ8f]4ko(uS3,׻( BuL;c0/<3F(wI~mkBv3,GyL'Op'FSuY}`T`Q nsK~Fζ)囓E(&PpAK vK18XOWmVS.26Z\7$0v]&lTjʲpeJK'c?2^7nz!9z ʘ ~ԸV[Z[^`Mïɋt)k0(ѕ#r&w(?N{Je*THWSRi)sK$7\_7/lyq&z_3v+p(0D0B]&VHⳑī% Wܿ{[Eg#RC(&aA}h`5k?`@L0=n%k(XFv6 s%AMb*9['ssJdR -V)?,$/P Rt\}tVޫ bm(-nIHk閮.8^[W¡CB8PbW(VC̹(Z(_6&j| :Y7C> endobj 96 0 obj <>stream -H,T{TeaF,ڔaљC5 4*yx( qTD<\vafR! ay "BEkeQi)=옧c}tj?~I$Im[u}n>=e6̑{Г)CQ] )O/$W[`1Ln}:e -@mE#r1YD?m^}Pcu&Qԥ=.&biA*AZ%0 (7"֍'̈́) #a" ȽnKrΫDUgrÇnK$ -A -rf&vc9ԩn'A֑"S?6H;Ϯ7,qqd0Lj$u8xh2KFAt*HvRf3}o{IݐNk\08U}8*?6dY\za!QX)`.aO69:@̺zʊ:ȡOuq(~ӗԓ(8e`uxZ/>[u8բ: ''/ z>tR>W?j\Q*? -(ۧ`br7b/8vu{]*xYpI[qd8[`P_pSF͑ \nfVGqY񩻭VAvrM$sf=ӓf\WU;y$,uSGxe +"kDهKڦj[Ejnnˮٶ'f - A_տ($VQ,yɏ۽@_j"<;j7rMSj @5UOx#=z _NC5r=<$B8H`oNޟ|"_םkYƧ^VNcDH \~LQon̎$(|7 v" @lG8G <^3ɷ쫵 -v1hhkk_u%<,47] UuuDH -aζ'XOm#1!^^LLᜱ+_Ϧgcx/2QEN->K~ Z40+ssc(2dlE6=Ob_9籾>kɳ]G@J$h!XVL~|o e|ZqZbֆrn<|>ķMK싧SyP%t -4v25km4<\!7"ZWK-{tM szM9U>l.  N$2[ &Ѫ/(oRfr6`mavf-@lCjCw@1Aa1Ej,;_snOOH3K endstream endobj 82 0 obj <> endobj 83 0 obj <> endobj 97 0 obj <>stream -HdTiTW^54C($(Bu5&Q¾5.4(9qA0 UиD2'wFMp4ou.&S?s=~}wiJaF4mక6;2WE]gj}F,Hc%.)(_'_--.ZUYN 쵔|6?~zw!㭇p}3pVe>s:MAK5N:rD{:Nm[_ѭq5oEr5bjjjʇNk\CS[[sSkksAN Wä1)@W&3"aZ$j% &[P/٩BjkS/lG !#at`/R -v_`Hn;,N%kwqa޾Ԙ؃iC"?n*haӎ*99 ,Z % L'd -0 _sraP@zg5QRE~@oʙ!(ěYR2&LԀK= J`'8|\7|@SD~8 "E{Mop4ED̜¢uV]UVf3rxi=(h8 L - F"cEXYvF5X|vpWNc˯zҢP-܁v^3ҞaԺH&.J*32f}Z FoB 7f2V+d$6nlޭ;~p9.75^>?C )X$Yac66N"}-g.bsX(>%5m82Pק~6vP_2nLy g 0|?)%.~YO񽗶,,|,*5yH 'ٔNРM*qhwcWvwhKdӀ]P?,&l6c6PQ\\ t BN7%/q[ߊ5UՍץ!;͑S !yF#(AHK$09X_B^A19w7 p+Mrc -kQx b&׺R]@CZk\L8sf^x./.jS1`.c/ME=usC/E(Nȟ02P-' -4 -c"`a,I%EJ@@tEC\JD Y-`.@TҨ' i$o0xwYu5>( ,[r\M2PIy`52b =gp= ܇~\%%א^JH;b A u-ExIyMMA%|A$F:xA'\ UnjGƮnm59(#|1n+-$D&YiL;.pOn9B|%2Y5nk'AW,H,L*W-8pq1j;A`{ ԰vR[pjqqERE,p`v=ze١},ryyFwm>W'$:BMzm$DFnB-.=; oFqք或Z+VW /y>(h@"R@ `QDKGZKXԺrEyaމgf2w{zі0۽rXBM% .ߕq5lOJ nDr[ojo,LAJl5ټ\r/E^PtƏ%iG)]c؄\O 1qck(iT/C'F=c>4'.\,CIs/XJJl2Cu&GAxRčlBP0~O}}ڲg+ q_^[<>y!hŒr^:_aǟ b@Iը(ߠ$W&ɒ_ށ 7˥SrDi}7ayQpiQ:SIwa qEbƝ1kma+ϒ.=B?VΜu(d#Ww1W.Tv[`lCg-Ⱥʀ2%ʃHI:ۣ8Q"Ga*o{#D%yh+M0nU/DWYWPɽ3R Ye2;;b!=gN -_8bGNԭEHTFW_|J%w?hp>So)RlNeS6 S}xo|#&nsFS{ -:x ;&OfhwFФX VLeCx|&K{U672^imh=iLBtu{Nk,adV6%ٕv5|Wdr!H[znu4+Wg$*Coub:qS/fg|Ng::jfP;q9W`@di/tɲ~1ByqCC4:dL #X=vGJ捖t럵FuX4(hSMzl0<($d♏ .lѯ+ -*P|)qP` m^$3]@_iSk"[OЅO^dԷTEy|>bP/?Yߔl܂xa_!4餺 bɥ-MqlqګBa{ #^mL z5|$J=P>uQRo%BRyb~q(Q*Tm\ |L?ScQQ"r۰^|Du0jYGU0*IzGsfA\$(HђkޓK]'.rNv\d{ /ovK&[btZX(І"Xl(:]4&VLq-6ʧϙ -0N endstream endobj 70 0 obj <> endobj 69 0 obj <> endobj 98 0 obj <> endobj 99 0 obj <>stream -%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 24.0 %%AI8_CreatorVersion: 25.2.3 %%For: (Plamen) () %%Title: (FF EULA License ver2.2.pdf) %%CreationDate: 14.06.21 14:31 %%Canvassize: 16383 %%BoundingBox: 0 -802 1294 0 %%HiResBoundingBox: 0 -801.5380859375 1293.93304184252 0 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 14.0 %AI12_BuildNumber: 259 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%CMYKProcessColor: 0 0.899999976158142 0.219999998807907 0 (C=0 M=90 Y=22 K=0) %%+ 0.519890129566193 0.43469899892807 0.43469899892807 0.079133287072182 (C=52 M=43 Y=43 K=8) %%+ 0.975616037845612 0.879423201084137 0.032104980200529 0.001037613488734 (C=98 M=88 Y=3 K=0) %%+ 1 1 1 1 ([Registration]) %AI3_Cropmarks: 698.657451291323 -841.8897637795 1293.93304184252 0 %AI3_TemplateBox: 298.5 -421.5 298.5 -421.5 %AI3_TileBox: 593.295246566922 -998.444881889751 1399.29524656692 156.55511811025 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 1 %AI24_LargeCanvasScale: 1 %AI9_ColorModel: 2 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 3 %AI9_OpenToView: 47.8313235110154 27.5286634642825 1.33327449988701 2548 1333 26 1 0 17 45 0 0 0 1 1 0 1 1 0 0 %AI5_OpenViewLayers: 777 %%PageOrigin:-8 -817 %AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 100 0 obj <>stream -%AI24_ZStandard_Data(/XN:G+l ꊥAºhxa ħ)SIa:3 w rATEbA.zwH~U"jArq^2\ws3qf SQ~d1bʦFoE)iFEwB5d\DwQ#=(pLfc:zx1ġfhZ84Zt {[p*-G.FgF c3Ɍݯ>D4OH7T; հ6)>F.yFչU!ɝO4f]Ʊܙ}FͮqU4^Arw"58ҡ# _'a5dgȰ嵻\[Z?G=EjuʰT>j񉋦ޭvvEo=~|k nJ2.^-W2nI"2DFT{E5]t;A6'̘T:t9pԼ ͎dԹtWzX/"ٱW#f't.5c5ewr2K]l£MEcif< $D ^NlWS&"1 ):*ra=fnT0b 'sy6K?3J,ey;rN$DHr4G{y)2-;TiyT9'$RP]ꭢqN1Qnws}SPl,s00R2Ss2cwtS?XS\͢EdQBA̯1¬ѩk2DGwKZx#VĪ>\C:xhBqpd ARJ%5\ŔC#spRPێb!amHȃ5¡Gnh@``xh`xQ e(A  oeb @xpH840 , ,q;3+#B(z`h8' - QB @@xxxxpxhx`x=C=Ѓy;99ءtqАk8zI$ xr?#a&ā% ~fddVZQP uuUjuj P T@0!`\&'lB! -ч:0*U -:<ĄiPa a^C  L!"$Hsf6xRmd*A 7\5TC6L4@``x`p`h```81C1@apw{AqTvghpxp$`H0H  0H4 njkhphxhh @:0|A 0AA!    @@`CLa du28@h]ox(xj퉆!Dubp D墫7<\fO49tu O TH<@@İNP}D4АAnlFmLR5! 0 q .(q/*$Sѐ @22 r8;$Ѐ$$@H!KX(G H, !2T,$%&'iy 230 01F8$KX4BSuUehCPBxL6l> n aJJ&"5=A )VEUeubr(%6Fn k0{0`rsp pqN>{^78 0$X@§'TvghpxpaaH k*348<0$ 0Ȱ{CCCB k*DHhP"!)6(40A -2(DH Ph(j ` (@`@(q#@*".H (H.D.DP0(H (D @ -p A"*\D 28"2 a„,0\0 *@*0B LP8BCa!…D\ "TH8A )a DBE "؀ "X@B2 A(Ph *\ BHT -@AL@Hl@A -,TB `@ B`\ '8AbPhA <,"\> -*X8 "a )8E>O(jt ۹*:G~"Q -R( -@! -p@!M>Rs4e!@$p6 … DlpA8@8uX :$tЀ $.D0 -"&H9A ""& @„APp &tAp &Th0 -$P *@(A&4*0aBD(DlA,p( -*8pAD,TtA}ci?zNAɕpa > -) - P*4\pAך-R@!$Q2<".DxPAD -DBD"P0D (1 \pAB(@!&T ,Tpbq -$p`!B. !,`Xp! t0a*\a  "4`0* k7=W\=zFve^ mcuQ15D#9$Ht?6EZ>q{Zbj+sQE4cn^Q2f,oE*g튜JjI$$vz,Q\F1TKW5ӭ6Ea5決rO]]Պ^S8##ҨUMqwDyU:;z ])MIF ky5"^oDNR%C.tOh.çyMdžH72v~zw<NNqМ&3=Oݗgw?<%}[o.[U?6ְ*|\%+ƉϮeъNhʩ+]SQ:*Zhi3eLUtN;:#*<2O:fԈ VqNkʪ56Һ"':r;TSE>Uū:wF  -.DP& Pl@A xP %#ޖ>5tbhGedƈ(ХZu^WGs_?U"_YU%:tKMq7w㜋 JJu%aqI՝ )| :?Z:kJP3,$+ٷ "UjyHEhlPQϧaq&HLCAhX鞹a7]TT-<|^)=Rn.%'FOhzSc fs:e447Klc3 5I'Y?+qlN:xɧr:aD=DX螪FJtg -NKݦOq.bb*FM];,74^I̎r*)3_Xr3NHj.wRl Y~u316򘴢*-j -"J'6_nagE;]J VoaCdBU3CwEneF$I8hvSb*zY5FnECQl+^j*;³!b:gNĴэDg35dxީyF%6lS 8rܐ:"OS1 w^2u:/a3<9<.of}浯.8e4TdFD.>lJȴ)լ2IMW2 VvG nfllwBcװmWbC#5\VDVMc#e:D?;fSϯƱl.C*t{ضrGtkdXSneWs0QщEW" }vۊĬ>VWu*+!1*" MiNb۠5Gƙ qR>5ю'y1ֻڕմt;V7!)z3}3lrPfE,Tk$uC.LWN^mPGWzPtŚX4TUQc8ݳooCH=NKk؝(vG λGUACeh솘 ^QdB[i'&sAgrE2xU \1J.CB^ՉoqXXjS fC*BZX')ݨn3qSM~tDxVRCwu&F&aagw)u,!6itn6l }Lgn] -ڤ qq>C׉AdxZW%w s:3˻sZ'54^A}0"ՙţ%*5 Y׹稡e94heʔ=^Ǯb\I3C(eWV$3 PѢ2S5 *'v53;haTД}]8l+Ǖ}WּlnWw(*fQT(*$4tfgCՌ~LS$2 ݍLnlKtL}|a"Vjbϟ_d4,Ƴg [氈6Khy%zF]ԥUBES-<}=MڻXw9y5Aż*`Tp"D p p@(Δԃܒ摈qšh "UL~1F bi4|jN=d|:۝wޑ=}Rwr/1Y/UtaՔ<ɝLEq}P[;=c<1UŚЮ*ɽ.1Ľ>*UNluynT#+ӎ3E̼ shϪS놮q iqFXlĪEvcl0=iˆgA7% -iٴngf*2h$$T2dsٹSf^+qi#{qڕd~S1Za LmfG꜍r|wЋܯf3Z/!g+̎sg_aͿ Y:V.S%HY623+322;2+;K}evg\|jRśsHi[h5 .UPcRGeM8tc/LggJ9Z>=!!U=m d:gUyVěէ0ZCUY^E47T׬.BfPn#C8:.ĢўNkJŤƊx)2+uJM}\ve3Bf[fBGt.HƕEzdmsxLW.HeTئW|cZ26r&^Vw!29/C +a6DXO7C1wlӬhHi&r4n"Vw2D8ؒIHv#K-J^Ÿ4t93|7yorS onl}̰lyyUo$[bW68sSZJ(EWbq۽>OMj䓟|7>xslWS}km[ΦUO?_+f/muR i7vE#W_]g Y',ңQEІU~i|/CPό=r{#}dt/3\ΤyF~^=7zn8X)vScKl#ޠRHDW#\fU5Ky] S_LW3;ZUG̶7v>b4wي|8+uԚr+>DOQgL;\u:{\bwrs+{\gWRE2V+iRDU/sQjA#%=LHj;Y;&EɘMPo/6 %.Wb4q%Έyrp箏>.wVĻD!Tj4t%US;qS̸gtsK2AdRQ$E4TT$B6h -" X3zLCC_:eDWAkIOFZd~=JwWG6Ttȹot2)![*5d+:s7\#)xEs幒NG󑜿+ J{6A*ו;5Jh&id K!=>O Q̞;l:gA8" HII=rsm.֜y:"1*Yt-qe/tɐ[ɅNfi:IPOx*^ьvef3;NFXw5jOX[,tQ8##"lqg7Tg7x+'rۑy 0m WUNF,UuU*H8,QYDtnh|JLfTǜ1YݴNEt=qjJ~!֑^*uVyׇFɰRqcI/TW3Kj ]gA7VZS֑f!dCr1diXI7$s3bu Yd*lREcT2I5TpjJ[ѥTrUwCn\/bvbv]'z5:\hx<uʼnT,ѫZErDFH q赳Q:y)nWɮ)ƆiNUTZ=&)&KF+!5S {6碌gb5exVfw"&5c.[qksYUs7R}627 M5Uk12(ď3Dϸfj- -ٹsR?b3u^ɱ㑍Yn"l)Tm#fzPAue'JΎF9ŰyShZ/ ڔt's]է1Ϯ#:y\+U]+:}x%֓o\W{7ź]| jurk&&vt?:mXgqgNźe:$;QϪsgU4OjteWgHb)wmIil~g5~$SnlSvHXhj,E:;nfN^9;'-qY^Cf;X٨*J*̙1yuȜ WuB}IEF._MneI>r'3>ƹk'ypШd!9)9ŏ5jZ)kAzKFLNnlwT_3|*VlmfEgyY9>ZGnג}w C.\m܅I_al3|lI._e U(k9zaBD{Ǽ +C"Uay -Q=%S143BG+ -V%%jKM5UͨhiLvih?F%X.㏥JȽl6.VCz [#E5>8hu%$2 %Py&krs8FH u>~ -ɩz&KFe4Wru)m<*9REgs!9Y:</?.7]6C$吧hE*rsfmnLft[ lF QCԮ6-)W)-fsFX;coiluz&|4LoXHKOTU6ffwJW5>#OF^YVx&ߜ-_XޅW>|gfKK\ZiZ5vnZinˈ:h unwMVYU}M^Urҵ|VMqm&T׹/]U5?KG:e=ds^7j"#t}Ϳm}:d.P̾a݉4&&iB^M;M;bfR/jK)6d1""bGLۗ^rӿx#G(8IiDzn|v{9LJgY}M!s*!z!RobdXƷ]߿O\E\4>Lˏ۞_ks= y.lؑuInϯ5qCRfjwO?r^|xv(4")iUZscgCN4FeW\,7VVbr%jZ=<5O~_jyY|ֳ%k]&ُ*skŨ佚5jAaW}犵g,+)i}jYZhk>\/WPB%UNXķC#ՔW펟̅ʹݫWf[k^Z䙑yͼٲys"$<LyKKȗ?)ORCRR!=ozsFi/SZRRs**}qyTT%D-4Hsj9pnni87wssldҟk=mRɛ% Kx)]W-Y]{,T*k-sriB\ߝܢqN+K -/lUxZg 4)dH~J2o;ܷ'ۼX/i)K OSUfQOQJ{%V$-SCJ?_I/-ŷ[l~y3}' -6ˬ/Sx3kI#}eh]=G:ƻYCDCu$:/gMUr_h1!WΫY5x"W$hz[I5bZ//"EzW*EڋyzƼHx1}o<Mz۷l,=%v?&|K}?Oi񩴏9~ŧSy:֭YY|*=T|iHi9 {͍4w9Gi4glX"6R5SeϘr|pLtxX6vNk]6/X:977~i???],SE*͌A@`@<B -ؐ< LCI"YRSwGoPS:B=)IfDa;RAbrO!b@TT)KLuTCq<>e@?"2(ٳ@ܣ_nqcC*wϝ2;D*Orb -1)ThPIiT @-󢙪2]rS:42Fmc_YHu - -V-8*H`:8j`'Mq!ݭǕ4+¢Swpw'oTRg;"׾N/ß JJ7V_ieBT?b\r -Tu 76y4`0_F.m(üƋ|f[6ZI[oH -uH9РҺ:&Y:Tk@$*917fIT.BTs`$[.0!-HUfGyuȃTgtɅToV0B&O8PD|T];GuBi"vkbNe邙q>E\/PE/$Q-\CE{?i=*`%g WfSInQ>E@yN7f*"G\~#l;#0PVUn|C ,@Y(:Beb ἒVQɤGjteQlȣCjGnLUalc_pwTXʩ;* qD%4樂йrT:Lߛ^K*\ݠ% XǍIS;SUN!s@ -.fxj-ipqT0CqTA)i y6U-2*w5A9 ܨ<^FuvlxU J\KQD`{jlvZ١[ܨ6fhO旿Q1j7*ɱXyh"%`cKG(C덪*Y̘k|o%|lbm8IP*_}5mT{0 Ϫ<ب,L F,ǻQ%F1FPUJ EF݄@!%"|}(7*ӫ*o6o¦S`eci}( 2){oTq1F#s˙ldo7H W,8kj#ZI\X\UL]&hGL3zu!PIl>n*95Z2R<k5m먤V8`x:0x7Fk1*T=?.5Sf8(##g0:}GfAWoЍT?¾hcxT?-zo)/aUFvo"jqEEE.>ڟ/k%5jϸw.L \nWQUZɈKTI~5Ī AD+*+s -i9gCE% -tdjؙn)2ETƣ9tEm^YGQQ@-5oe+q/HQTQIM'((\rx::-hђ|}$jd᪢UTZ.^QB&UTz9)(jW -mՁUk×jt]܈.i,u{.'O>Gѡ'C_-+G+GQp o(*~bmioQT0knbnj*'lhۺ{,td tĴ,]z,FsK똉 ^%ډycZv`RY M']&*F( &ƤD}fL2QfX1! &1kjh2hW4 -}*bJ(HUu"yk -I[~Z -?Q)H-|Yp D04[BqtZ@J>a쉊hp <USC&y&+ #+-w~yS)A&*)VMTa[6JPS&*LRg'p̎şۢQw0fIEM;Q'yX5 -Am)S E JqŦp?CQIj]߀x]}T$Ar@ufEQ%{U xH `?r Eո'7mUo}8pWTN(*r)w(@']1R|@QG$ȢH&zp\Ht1Du'*t$0Սk$'1'g[ ]"Dz}H'*vm NTmcOO~\zVsmAq5\;Q  uD^wȳGq2Epa;<;J=N!v}'qgVf@jBؼw) P5e٣B!;qT E:ap9%sړ,EE={zONz*4S)RTi2<* [BSBr_kRT+/8ZEE9 Ti[,"9@';Ŋcdz}eEOp;**Eٍl8& -'oga- `PZQa13;hEJs XHWT1) -(eE%sR%ߝ|+GzՓVJs߱VTRȥ"E0ՊhE8QM> -- jzH5QTVh5 -n LuTTi}=]U\l' U,Z6q©DžuLG -UD*x))*ʦ2gMQ'/OU^@Q<@Q$UA<(*'FQ?GO O5CQT;3CQ.(aU$\ υxSd'FnJ;`aoEkcq'eQXTҲ+,&!}ŢjǧE+*"BXz2 -Plci+9#Sia aFJbQy6~EQ -"+MJؓ#k3_TTs@OL~SkoE%71LWVTVTgNVTْU~zBop2A"VTEjarBYoE}E uX'*2EE[ O]U7ժHQ1ĶdK%vҿDIRHQAϑ 2׬g -B0FNȈkTmTֱ᧊tJޥlYF%NW<`liB h$wĂmTHeY""^4eh_s-a -Q?/|3LRǔ)j2K*c ̨@nZ,e:+~ϨvshTީ@JP  iT#{CpU# Ʊ<56*?⡍< JMȘ dF@_aлi6*H-'i#JE@.i$*$~T,iQ,<^T*B%JvsqQyL)]Rm -j'(U'lT4 -QQ.& >!iڀ)RQ p QCũY'BȎZ*lF%8hUkYm}B"AuiFm5*K9)@4/BhQ YSn4QH  Ƴ.>wy>98jrFբ9'UjAJj'n5ʨJ|/(KA+ a" bT9ɨ?s $"Ѧ -",r .rYt?Ї~eA2%Ũh d2eʩ RSB(wE gY\,Bfè]Q-| bW/*G 堗.kΣ¨] !Q5ӑQ5ekY5*:!V6UFب ˍ*DқFUmA6*>)0tahuwѢt.A]J%mTe$:`!gU,ר+4֧ɡj?(KiTx}|?. fp] %Z YR3]ct‡DD3@Oc,4m\XC5靼y*ڕQv !Yw}FՃa싰}0jfT5 &m vrv|h Qn3\<18M -Ue6NX -'pHCdbV~C=bXY-l..>:/t<=Ut^@x -Pbw60BN1֔jS 0m -+%r~7nTz7νɋ|jl6*רrӨ:BjX-\rK:<;Qxَ˘uWw>:{4MQE,4e?ęYP4y1FRLt֨ư)獊#xlT}!RߛEQt'*B}=uWrQ5#PP*:OF7"Qq㪂@$ BaQMiq,`gj #*bjB͞&[KQ)ǥ&M*7yOU#E+.%Od+v O] q GUs eKdqTK7%DO4"H&# $@t\y=4X3F7KQ! -"\XW7ShCxHQIb&={0#{cP7*i2 8,Iרx6G呓lF b[KQ2/D/^C†8(jhT?lQ8C ,Q( G=J:xյQKEPW؏յ6[Jn}bF/ŒF}gG9@{٨_E':cp΄Q@8'pMUpTꗬlT -*FGIb7oT\FO_rät )>U0,v7(Z:ƹQuo&`0GE#"'낸QI?A"DQ8p -` +D +- rTdɘA*%[YI -lKo0֛Mu ]93/{sTqg9L"!G'. M7Gz*= H̛_Y 0}KrTJPUީ>)lhdIZ^pt8S(S e -` G} EGBaX͍xT(#BkB$yKn@\ 1qqPTeM -FD/!X1fS@8}7Jд \fh{0QT;=ݳ~F[=nYFtײ88!_3LX?336v?ߢ4b*8Cg*0>ˡ)E+2rI#x~!X6uC_ $WGPW´ IMj Q_I$;^\4+[{m]B!#F3( 5 oĤZvS"-d*\3$ [#FMf't6eSpEax턷EyUA#j6 4?0ʶt SHFFVKc脨6M(Ms@H7@S$Ѹ y̦hGGieK?;LU;L}eJgtϔvdb䳌of J0gA {X 뮆U%Q9ʝ/;! `Xw֯SJ?Isk+<?úɒ:aڳZFWsZliL! IF h6}fīa>*F!A1"{b7+5\UnE:􍞲[61Tyt@N.؛"+ ZQ)Y<fI^Wk|=*Z=CX+Hw[|c w~H"JF FuqtUt(>*x^bYalje;fOSQoƜj͖$9R2vWvfʛhe$f]MePvc[ --Oj ;~$WBcG)2-``G a"[/-rhCM+?P%'ӍQ+FUŃ*)bo 纃r|3 %Y =dpnAe"ƹFo߿}2  AX#yI+…L/t - uQ@M 9{q & S:Ǯ -<*`?>c{9`>75?^YQYxzϢ,J?xyR2wrg(BSRpq/8a^rY 3gDt1p;7m ❢wdnX2 %t^8ɦSτ%l8@ { tyK% PmnZĦ4 Heőn J H> -tYU¡i d~/+1[1+3'GǸC̳ߔ.Qv92/NPb&] 8 -5~LdMvfx?eV5BRUi҃FdȟtM/`vVzPUr!/ogEVY }h mNBo֒QxmIjխ!fKݑgTVx'oZeᶐYO1^(Jj\mJJ#fenyH5fD -b2qXTڵ؜&*H -dIfVupZ=Nl P\xp O) -mjrhu>L ^ofg2)0L?4v)-RF)n@Y)×o6Ų '/#E"SDUX -Bg{1ȜƣN省HL?Zqy.6x+hP3K%؋2cJC"m`{`ySG>o$x%ү -I*Zg~{}`"hK0Dh(au3VܺLYH9젵ޔyA̲3qݗ QH~wҦ~b`SNѾH߯v%٦jʳ9" ńT7Ӟ}>QZѣI^h/] RPo1s)aN}IT=V>]*_IW/5.*JЈgf1mzuh! -7=\az@7/%#wm4 -,VD'm =-&VՃ$ ^˃B<咅݋_bus?u~R$ |4_1OH"=kΝXjGhU:Jܾ|ғ r. Sð;e! k!j`Q$ OG -{e^ r_x/ΚLqё> JDZ.?\`1x ەamDz?#Hb/a$Mb,ҸNr,°nC-oX#盈}t?CSΠOB/%3~>Y@m\8h -LI4 _jO6ق386 -G151-e:TC8?7FhNb(яi 7%TzE.GºmJҧ SQG鯬'`thwop<~5+ƴ80x*3UiBև=b񡅠C&k!E $ܚ)Wvlf,<MD\!ڻ`V|:lSʀJ - Oyc%-sޖB>g7R68 3&aǵ(HQ!NeaqChh`$GE%،::8[|)#2eXS6Y9R"*do0[*(drkyR>\u47#@-OwbW?#&EV(yJ?&+f1K)lˆ!S!PXoż)]`A~p=OK|7@{vo}Sizx-Q۴͵'ufbBB.%^r, Xׯ\8]V~ ïkR^N2q|.]ބ_2}yqzM^hx"*x튞ArG&2.W+\t Nv&+.i h5+[Bki6^ -E2t_ JV4| -DG)}5j5dA>Y6p$ <Iءڦj[Q(c)P鍬gH+P]>iWp`53$bJ*2JF͵`;k|`/8?Vѱ`}ǷbVl77)/D b$>X16Mⶫ̕_8;l"EI"+$#8#f(&LnU:_1`? $^ʀ *ƋBڵ fV+Y Mo!Mt-ݶPQ]{ >`.3\\a)zi.ߒ,K{BOD &P6u`УF<7ܦYSڔz79C@{]/w9e5ͬP? Ȅ>'[g7#yuwdE Қrn3"'S˾$D NUeb?bGgmĜ d¢pFTCSƉĄ(鐼8JtmeMZlBbO.ꂀWⶥ,8[$/8 -x] )wǍbd1\'JoPR'w<wƥB] {'̛fb+f_訒EQEifF81KD|EK քQV M%+aEU cE_'#=)w(7SvpzKo*@H2 ^ /K-CqR)Q콰A~5ڷ~WtԚ(M^ڶDҦZ*ZPէ&6Vp5(H*b(sxX ֒<@э3Y<^c%g`XRF_JXq慱WMK[.@øtK_9 ֈZ^:'p! o\Qi@;Vĭ9MT)i*;A&RLЂnű"lD. C|G?{xT-r3FbTFI^KYM|n;R+G#K|A,C}jRelp AN#?P;Z G]s"k2y%m_Gn8;OkW ]ॗљ!1l]P{&Ӄ1v[ etauT Z]>;֯[Nw*.XM?B!- -5Z ڑ2( ޮoy Ÿ|6m~J6q[݆8I8 -SbG>C{Eh9鳫$'* FwIqh H b{y$HMK&[kOրjl{3WtRl*x~1}/Cfe%,Cv&r^rx -&>3K+]&)ȦWew_[d N![uJKӣ (ad.QfTsI=W9T{YE{rx0 ւ&IN : -gt=/qv/ @26nlKh;yt9tX m"tAjsX4l[7eWnE -p8YKVpu;Ib VH!X!KcVY9099RY@h]-".(Ұ3byQ Y$J`'# 'mr$˄qjiPb9i%,󄁝l+"y7;$%*y!_`yp)[坻Mn^@V Wee逐1:ׅ;ĿZdb4s+ᇠh4I${ }gɎTY/`26=ECqJ݅VmTY' պyQx[>X8@V:\C|dBm'KWf!`hjOku;&kSdڷF -.eZBE0=>$$`kR@d,'o2J&;48A3UƱ 'f5@{a37d{a]f?},w ,[\(r[-V8 uvkeQKha&ނM]{뱺duN1^o0SR=Df}4yn ɵo;<({NKv!I) -$:E.P,)ht5Fg'T] 0%GUʗ"|΂ҝ˨FR2{O =̤4ِW-niyG] \T:ޢ9d[OGV#Ը> !ItOHpQ|}R{UǪQ8K/4g -2f̵֮ 6, %M'؉d*78O7Ľ3'5]MJÚ L -%7&Dvi:9ݤRG} #I Hgv:PϸYJ"W ѢJFroЃbU@m7hRtK*Iۡ 6_g,_S2z׀L }ɯF -78=S, zΠ0dEJ"dX[Pp`0:`nSgt|`ztYH@(JGb JBvYl9 JZ=G9nxt\̌O.pD8Bj!0T7ZⱙEr4cs,T)"]BRr@ы0,'՗{좒)ԁ2 -G]˟㡚$֮ᆱk e >6; -(֘ZGTgd3|HGv9lgivfޘԞ{k8 $Mf6V!. v~$ c -whluWI` D D_/X%)ԟ䎡; - cnma?[wݰəPo {1>w"̕.]_D9Ƞ>d"W%*e W;96y:k1JhU%,RyUj:rC$5 kMJ2bL'FU0E! U# -SJ ߞfV-%E!4 eyh5;rettp\'iLPP4yOL &d.[lp:bCNm}25)<`,.+<[VE:€nTpE気`0's⼔ݠ5@V[ 'I"wP7:\DSdD`E^p -=ؔ"A1 x_t+TRIE k"y\ul.1|eұƌ-7S$@T'iꍴ1m/B>G3Ǖ 4xj*Gid٠ lFXDb(0M1AD</)CN - 'MxJNG BP^h'P1ڡ4j4B0T?vobޥ1-)4"#뗵Aioq625)42283*K(n¬<Q \(- .n!rw>[@΀NE ũ"Yihx8m6˔5N66;T7׫JnpHo/&"B -Y!ϹtTNw#zIK.Zz{TߒXYn6vii绦\xig, 3RS$ -II[f緶LR`ق[w5d!mdfd#&IwbVWJ-y~̋Rc[دWȅ q=lG.ǭ?[LѯoaAatH 8LsˀJ= dOo8s7*U}79_ ]|iY"-S9eԒݷ` &bA(:0VDem}MӞ&kO<%7`+% 7R)GIΣ O+Qۿ |qhnU`KM\b<0jb<@퍡X{܀ITsCuBGlNƉʱ?aGŽr:ITP/_ 0h3QxjZ4^_ZV;0e!}20zN TF',l6K |-4ѣFaGYCvD}ZZ'zwb /\=KcLI&еVΐC5 _T (.fȌ[>IԠ&SmiC<B| e+WlR2 -O-k~p<H~(aN)zp@ z!.BFu̗erT!evO;&Da&;ꌶ`=VxЇfкk\K;1',e$ٔk_}/ ^CD~dXsH2>SߓyCqC_SN` |)!4~7r@ AJ<.S#*>dVMr'ɼDxysׄ @kcyu`$nӧ"`2 ; 9mtiuOA ^DK\A Cq-|O.@tԟI]a)T:* ,g&oF K@5!%NE^i۵͊{W#^3eZb]g҄k&#])+UJ1u6nnjCcl(<+U=|a;OKeAaXv;?}y,FkjlɫFFEf~ V"aä'7Qp,Y-rx|Q^S̒@N3̖/(U+;!=|ufX8p]@i;+J%H/:7yGKL¯P8K -jS'P_5,rR RK+atQH&g:U $P0\pV[Q߷'z K_jLzAݖUD ȿܬFdM6v%hAqW,ej1' UZ( -a]˜~5%07d]F)ՑJ'S`ƦjwPP:g+!c u,9!kea*QpS.>&8\#VdֱGC꛱u;Z@ydMYYs3?j3#pec$,}x넞mDӞ7Dw(?T͡3+ uQVPv - -ʲT0̮YgzʖvJxo`lxr 7EI$^@ 5ґ$ Wm_CIc􏓁h,].m[vtr r\<щy5]v}  M%ɲL -|m7@+Xʁ@'CF5b6Nj_ oqη兰rMe_&roX;ǂ9aH1;縧tqDЏ<( σ*)EIP@х!D9[(-Ku -a2l_lROr3q9:iZYGF5gpRz<0r$I2l"J~/J(|E3"$j me衃MnEUS\l+J`Q/52#! iqJ8?dZW[EIZPKbP *"K]0!$'$=pA;L -Jiz]w3țlD_+ HVUk{Vӳ/$dIkz%.[< f - |]H7-$T#UֹI)hp&;0hrnPP|NwcG` pcڨm6,waؙ㞾H}jkLpY\$IgւBCJ=aTܶ- vlFǭ@z#L={a@,÷K=X2Oʙ7\Õ%Z'0𐭖\o0/7GCm_  X>Pb"_7Yqr( dTkڈgd$GER6mfaqh5 o^N0CTo0E|^ǹa)bw]a!]qSC(Y Hy@TG㣲̻*ԝ}a+zRbˉ^x ~R":)^,T"th1\7\).uR$|Rb\tZ`˻I&w Hp巀qq)PFnq6ЕmEnSR6)Ź)FYqWY=)-uɖ /?(qDJObl$ RNzݯ3"tQ"~_ T33+]D>a&!wh9Lp$&'9[+!rj3R!25S7ʐ -|rٌ mi#P5}?MF6dBbԼF ~嗨co!rJHF -S8>s"ȪV<z8E]Z-;cX݌MxdKU8ޝr o h<'B`'OήBXO\!07!5#CMcTx©J oaa+篆|-bOp[rc%ԏ281Ila4SQNO&o X. E9 cȲeXjKs9Fi)t&e=c]#V#+˄tOܰhl J Yd0협zީ}?>yb% -,ڃ 7ry?pΆ{iH-Y .\05 t<iyJJ| -Og4Y&%m=ͅaed"%fM ~4"[J$vל0;Mwv2íүX(35/ܖ\UTrPr>B/;OGάKp&"S1㵎ݥ/bgcg$n1qa_o7n\B`pRB9@/)%1r:(itGh4ݲsԛD-|us -H"3ȧ%IJpNICKĊM!K1b7t73jV{` 7o&?~ 'bp8Hi -glgbPF ,/\z&oHcx!4ڬOby!y9-7 -%AɈF ExsƗʜW`)G Qxp+ ܁tU!T0*)@'Hb2p&<f!':2 X8[[}xs/]YW8kS`ԏvMԠ]u"D==l~_.u&][ J𔵂=" x +rxx0w}g0ɗ}gS~EhJ5fHJ m= -9C-Do@Oyo|_J'B9OQOdZݗ|]Ki.^H ez"c=fHPKksm̫c0@\MPq7bBK0VpJ0zV4 Y!--El 5E̢ذ}Ia㘦xXewxܚtjPEz@?0aՌa2&-`V40*bc {if8BzL[-.O,e$_.ʹɽVo/FH\dXɎC5n8!tP9)"=?f;woYx=qG,&+\Lr̶{I_DMCvKc,/u7c|^3^x_Q - 2'7e0ސ|fi*PMD -.zX7@ ;~%O; 4HD\9G5)(2'wA4F*T. VL܈0RߎqۤqGĸ:몧O!e9{>H)39u[M >?b5bE (v]h,/ -=<Ǘv %x0R:P(E0A1D8l ĆLA VY?fE@N-ETZݐWq>iqzyܐMv{|1j.L&qʋ8f{9}rڟ=IUi<ؕw8H8)j]ٔ^~=L1s 1lnrj_{dkE\6XD|-#Վl[`+,O\^Nlme7:X&{KX˱tהOD/A+RKw=Ed  "ԾJ PP" B= D!0p?llK 8Ų N]_+{kYVi:Y?ժu~6I?QBΩt:%c(vP{1yWdbCZYw[ʰE5}b; Z o?\ZXu cm03> Z1P;i dow1oX={my.^Ҧ1(n-JIRwЯX/F?N4!?I:v6d #,f-/BVg;rUg. V:1e\Z;q)ZPB7'H+'^zOvߚ P ה͗Sb@jPM34*F8E%)L)IʺBAnVΚ -Z4 y* jQUJf5Š 2*N6'9p,΋[JgB*x(x>xH(w({ĮZTD pa>_]ZAWI}wtjobE8LgN}9)sFzFZL&|q&l6Oj"H y MeK0Mꊨ O$Z y71-8-(#S!dRd+o uQGP Gbd*!|9]wrQ?htR;VlxJ>|,I![#M}Wb4AP=KHr}BCUPA=4u -/B&ȏ 1ZІFư<6E3FF>4*HG8铓hCxA+!<'o fA:6!  R@̄|(pz!:*>9 (ζuF:9DjQS)@)6sn̚S8UT!I#&vfYptɐ*xDn:SF_E7\ f^͹yݻ^Wcn&:8bAgIb NPMgFP+Ȥ Ė֖.]uӌAb.IMBRRt"Ot>3t %}L!b0AR^2҉K JPdZʡ_$dը9F[]")vh͟kEOky|}l*RҬjZ)UT|g"'Y1^3#QKԏ(9Cd1m1bZQO3~f.C4AWmkQR-Ю2&zʑNG֟}Y|&L;g^ f}JECI.уbU r1[P8P3(O)p -JaeH4IU*i0:W̴YuRUdq}7dcncV,ykQf #BSeڝ"tYPeZAp8na2ZB9HYsH%HNh,J)J,bKسjTeeDB=/ɶ×{s8 aFvN/T(%~&)wnQWg8ٿUWظQ'[ľK3ʹ91 6+ [Fji߇VrN!yJLrM9y(4#w7(n5[}.%W())) y::M[K^'(jUE$_IcXC!$r - #TDho"NWIHF o7qጴFF#BZK`y!O!ݨܛzdEI㕌HIUɼZ$ -cHxbeI\n4ot4Gn&1**#wDPG~{#84bѥmn}׍jo2_/:%fEӇ#tyQc!C'ƯќK͉ QEzaG0AzG F_"Zw}<M8eFK0ƗNRe_cIҍ) NSBʜbDK-xO$5P7ɅV35 6|fyf*9% @\b4M|,᪄skn:1g}onytv3쯙Ռ6׆u*c?A"1RkQZaFahVM U-"TS"ai QS*4TN`2ߤuQ0.).I޲. -n6 (^%bm&! -vI[xR[LE JxܥHzlZ\8Y!*yp"iL̼Ś3ؑ}xxb$R1$E?a x\[ V|+D(j8nD8UeL:m{kbh**6M+6REzI9!+-*XA -\2dix(ڼZH-!GS&mbgШ1St: j9:E2,$>QT˘*LӘTROҍQRj}PI.zTl*( -<nHSq%^s%cOֺHG>GXYQ4bizF\j%?uHЧebI/DP6tA-bd}IHôւ$nfit8ai\DhG+^H.-mi +馛Jͭˣ ;[}Ƞ2׊(\NJ8*BN莄`ebS 3\DP7òz5ȉPşR)4۸%X#NNRr~ - -r7op55!grFA -\mH~:&-$6UVI& -U'oIW*W.Λ)3K/ZnKӃ&[ҬL.OP;3!64L=4FQh 7.t{E6MtH|;3Hc]z3ltarr1*|"gL=&[Q'~*% QZ8Yig:[I4DjWkdi^FhMhž&44aUs+%JIN[1-忖po[UIΟ=Rh+oJCT6SHQ=xDS#bД\J`xUDEEPD^ݒGG_WC3y6U'+PRHBdb*RHTp19W#\R34LK'j8*/9FuO)8\|uv6[+ uwteVX5RNLAk$I֌Lh4meUffl])|2,QqGGDԚ#;I&֛WX3ɤKȒ&E 4+7m$#GtX6Z3hgUjVltO ᣳ9jeKVJ"FԊ!ưxF+ƞLƝyT,iZɊJ[!QIױ5}_cZGQ)OjfgOB~䌰+4$NȰA\H9,Gg1h'*A " zVhķĝ\E 3pg(E"C,(3.H*[|ͅ\,32Ihh~²8 -:Y`q[O&!,-<(E0V Y.:rًȘ]@zo\W HPӗtjg$}h - GmKf.ϚIJ'\@태N o߅Ÿ ( $y@-:ewf9`}ƷO z5e M'|}Z['jt&j Y{ܼ }a&7gS GNg 0k.8 $>tְ*3?XA! ۇPGi @`,wJcv,e `ABnGpGeB>}û["[fDp#_J6>N@#)@}-&x6 6ڄ` 6ӦK}Oh434~eIpqb)p=v8%K@.!&.l TZc80w=Btx}WBJ0mQ Д -D O谓`NhI}TLki_ђה%A!I+)]@ui$V$d3 NvAHzc="#:9œSm!G0G#HIQlٗa|FXCUc!܋`̾{EC*h*l'>; ֟}p ԼeqRVqL_3!96t a!&dNRY6'BP}SQn !5wAꃐt` Bd g vYA ] -/i! -[ϳFx{q!?P}33{#ʾLbp@?(S>}sA$`êl RKܓ}dO>ع-?0k0?`Pg)@>Xzw d7 YeFZ>6{pSD#z]Oᥲ'W APDA@6,⍬AG g}WO:ϰnG9zGeb -(='=hF -d_eeJ6/=Ԋ8ߊɚo>MFiEϋ^!H%ɴvnTE& 8N\$em==SZ9=ʅd19-H;}P:iR:{SGZꠑF> (r0A9@feX`B0**988؂8Xa4r@t)k@a4Z7}7xys( r -78ru[Ac|cMc:Q) TJAzc ׀H՝YS%]jF`!G-i4~hР h}4Z3gL3> pw\3 }#43[3wY \`2`$L}{ Ƞd4dYc1Ⱦf1Ob}ZaP~†U`@0`NR`Wdkԭ_}6s^@q!ClP vA5<>}ogi ȁ.t?BTiU}LNه{> vjQ2 g~p}'CuO& B:P} -4 ²~ 0}T]GQDH( ax oBB >|K tAT8|/6M.'eqfoB-ЮOׂS-^h,0#cY,4,`>`H, WoW$FWp4r^U -g4fa+Ȫǜ+fQof REW@ a -2f\\a1[Z[u -<;I*rn)?a\xI?-+Ov* U+ -߰}MA>YW} -`^`W$aUҭf_Mw0 ->ξ3FnL^و#A@l!^Kq4UrSʼnӥHj!a@0UQ׽^zMUc*$i;?/Fӯ׵dڗվTl ˯U@2R\XDgQ9C /MS-mIѧD9bC` -@)ϖ@PADȊl$F$K('8R`)1d_Xqڧ̪P8vJg< `9*8Yc*t Rsk -D׾Iڧ(Ϟ1 -xO' >9JtL;NӾ[XoӣM`? }z^^13f 42hӾ00BxK{¯?Nڧ{/%PMZ}>,_% ,P/t 4 ЕIpŔ+D[%[~ 0$$0P - ⭒yZnA@bMAZ0% -\FF"KT}āڗ nE<;!kfhjM}Z -sB}ʻҟ H,׾ u隂 U  )6jI&Y7yQzH|`ET) 'J4D(3ѣ@>V ||[C4C 8@kG@]sXS2kLv x_p j‹bat& -g" ms h ~э/@K'. L$o7[WZ@s5@&ka +t;+`l0kԊA* Sg grh&)D#/.oP B -բ` 8@dHM@}g `ya\x%hQ 0M> X%V%H@GpK QVE `Kb"/DCZvlݰ^  vL@:y(-./{@z%>*|ϭvi }I`5s vkhf΂ Eqc>~k^(G:n>e˵oxK? -$q%b]qжqe&7}|7`k/n@ HY2Bd_7tҵ`i }Q z XZyDzqfflS&=naS=;wbnlnw`tjw4} 0d/b"Jl@ajQ7 @g @:ۀ@ -|Q)b=2XE3j 8ɮI#ﹻ=b)vUQ}52wGb Virπ܌I߻VN@,iˀ؀M~Ѧ\ U{26V@+H@^,Xϥ̕;rF`@X;:V/B4Α62L ,z"](|.lR@Zbi})טs8WA\.^|D%#D,JHi5׫K<~.uAmJq>kQaxo;'էJW -{J04A#@-eVKط΍>ba mIͣ- kd G'N#¦/e^c%fJUx4*;diP#b BJF?N1[삩u@_.(H2tq:`nPJ0nC+{`}|J3(7bg~~-%U'HUA,߆%YދFKHBv>oN0ُ攬7i)[[R\z6Εwɸ'ObS#4j&&?8# Sש8[,GBde3ijJ=>cDlX\"{j sQgj,俬N% -ό~RG`_x( -Dym~;h1|zRmV`-^BCP2n Ȥ;2(;V BQ *ޜ&9xY#֑Ɉ P;nI3^6ɹhK*|{Ajv1: e¿C y+#r12j ]?E.,MZF/.;GT=OySLrRwa 9iG:g<>HžKH,._=?Aj<-@uR%/6E++[`:/ȵJ2': -u71E>WK+}{ѶK!U 9P[HGE g'!MTQd8)W,ZЬܐ=7j7-b(ȳ)LO. GHP(t S?oPӨQl_jQ<1 qz,[7;L_RI MwL8D@4.%wJN'5hgog;bZ1l_+ D)W]\60\V --KO, s]SS9?=:?s`5GIo]tL(")_6LPm'=P|3z4]XZ <XkGKjmINǟ9󧺬)UpŢ$Y?laIJ8Ğ)͌7 rPhkw\E,o97݃>&5?T&o(:$I<$#+lXjFEӶ+8vAAI (9c&O5wt ;pyFmlVhG;pPJY' 7&P? W{~gX$Af),DNײ. Obu.Yo?#NSB^=nI? ~p*v 1[D-c}x2cwe㩖,˗oŨ/ዝz˷?y 7; x0bgщu| Rpbf w`TҳbH+/7n/.ԕ{1Ё]I'6Ęt9`gcl'b Fa4k8~¢!?`:WBpLAK ),BOF 7E: Fݏ%$Co?uosq ˛|,Xq_99On4%/]~9b+۟!Nk3 -a)P 8Y:Ah2كL!vǵZo Vꗱd_oX֯$r)XE&:;?HaSP&AtBħaEoApHK]4:ӿ#3?P5{'GW7Rs釯}.0xiEJaAty"i>#-P^]cآ +ȃ~$珀˿o)\;E!u4οjV!,z1HÌ+HdLDQ 9ayW?_It X+qYF=zMU#.?XfD~\:?~?1{Ogb9S;@.O~9*'?gX`L-~aٱJ# ]XMIgTG@KL x}K=.x…{ߩa3}NP~BjDU?\)=P6BCN{~Ȗ -\8:Ir>[xW*L~ tb[;hYr0W+/'bQ?O^?DqG} -GƬVG~# -ݝKl1Ld5k#j2!E4K kJ OoldzeҲvc?B -vJӗzEO4R h2Z=A`Z%ȑ>$ 9#b5>ap; p-Kq>Q \&@MOhXic6j7DGr;Ԉ㣳h_ArFqB2f#[;d~zCyYtSHOe+ KUe??3,,=DŽΌ:Pٯ -r*~j)TRDp_4_=q -ȼ,\dnʞ'T~"7L|Q0WqI~OX׿.G)OUB{Z,d;f_;D|-Yt!|1VыZSaCdnPՠn>:vӅ۟ SZM1XP/ -Q4I"&:$JO VSfءIlm?V+Ru -E*/8a&<쨷[ŭ>u{#R 2ԍQ_zq5x|>"HIJ@NPۛA A颫Ԩꗲׅ>>J[W+}(;ir2+_)HW+?/(VRrYاDg@O`?ڥpuS:/C!]"pSVi=1qBz*KԏL4+"GН1˻M|3}*(u|~8#FK"RY6n*cJƫ&Eap''D8>Q2LxY +%2;L><f { }R`KC ,Ph߈@a,^ob9^>_Z.JχEmd(t75}C_,:l.7(/wI0wbrq`B>Q'}h|XGl ײF*"yi|mi+-9;?|bbY/?/+ЙxOR-?,W+gH,ŦjLlD\ixqw' -o s(?NɆl"V(2T:3LN܊_w?E%bg lPCOHD@!_9F -jyPT -Q 3E?'3w-=ޖӛ_)7 F!%G -08I6=J8R]RN2RvzqGE~?3P! -*"3X-{"u35߇t{%>XP*Ǖߏ\=p>%d{{-;^=P(r]IT%)QCHgvGp_ xli3}a(D@4ufEo\jJ##H 負g;'jrrbS.N];3u 8{%PSʜł>{3$O{B vfHIbիpcUq Ggd -/ᴷ4/̓{uqNJ~Ux5ޝ0ڳ.x4 ]r}xt% -1ˋ{L$ǚY瘋*Įު6ҖSYS>A A=Ya]hE -,Rc[cRPՙpxmR,m}\N_>.=̜*K^BfŸbޯ 3.~؁xGʌ qOV%69#p=q~cQedtfF˸~6Hcv N?=)}1}qUGIy - UdˮE񻱸/ۡ&I\L " =(6xR{CS方d|X\^̜wq~«[*iq"hBw3I >|K+cm ę>$c^qTr+s|j֘t=xp{f17fc*8D4Miɳ>Vyq%1}}b!֨[9XkB (]^6xg>y.Ӊu-@Pjm?:! ,=~4lO}:YK=7Z;ѽ@Yt/j(_P-z'e^yE|]S>{0(@UB ʿ"C*U;JAꈅx0Ȟ{@FLrpm $PуEމ,,8@r/;-/d{Iɋapr Nyum?=pmdF?]|%V"5ŐV~q".uB C'P03y~׀SG0Ѩ# {vżȷVBȞjqdoM֙"LЃG2:P$tW <>j|Ny:,Xbz${(* -b,﷽hBѮMA eV[qDα§'7?KLpqRFWo~^όW/T^_C -|=v%}|\"aze OƮX%zNP=˖ސG5NtvG6a-Bwӿt~xaʧ %dY0Jg/18-) 2ư|ՄfJAc>f93M8Q=)B7ɖa78q$歁v~ow؛O8SeQa`I| oEP KG`(A4\QYXC^tzIJd2Enh:#r;j/Wᷣga߰?p-.>{?a ;_~(m(yNNq0z78;yGw2Ip][O7tu5^YzaowNMdow",X>BקlI[RpU[pewSQPUaz t8A[o:xI s5fj"0kz*7Yid(7T-EjHnolEԬޑ.ncJp_B쯸(0vX$St@ o)wqx7zg,ar:ᄬo,( ;3jWvIo]=X-!Y @4< et>Ϋ٩z;?U%S__c^kPbh90x-?@K=eVْzyX(GUy4 ;xa9FTjŗ{G9N),7p/_8ϑ@#N#!B8 >Hó89/}yOږ^ -##Et(צI)ҿc_ްpnHd)9qG/b]WF¤ތ~T蟅X,h T+_Q ROZh,z4buy$n)a4cS2=I -35wYcn*\6f|^ -}c> l*)zE_ XXBԷFΔwbo<]Ez~%و?/i>Yr3j :ȁ߫lnbHPQITy G(SH.QRG =L9:YPrA,'|Z`<++M7I]QbI3L܀餫77G9'Qqb6i"$ºRbH% XzK)HmɇRC&%z\bH'*ɕOIyftAa/r-Ə "Bec=s)ѭQԱ$Vm 8/Zn<$^!k2grxKj+D-xhu2,,q0JW'cʲQxIDi[*)5|41B|t#ں־ikb0w͊?ȴ5﫭8M\`=>~mZ#:-~#VgF>M+HGʵku#~~!XBN_ef( >{xR?rugv*x;7+2Ψ=k)B@| -KgKs# -Us ɷLؕl)ٸXnJ ʢ - ߟ)"%MSj*)5[=ߞW+xEXcTRX+|;ĚGZqИ-Fr[. K %,P!'X:>~AW!ĀO?bKX3 q/f7YJ㺕wDBKK>Rز5jSi^;YVMPWT|~}$2~Gy0otDp,[! $'WߣdT)wt#6]ڏO?1V*VgwE߇|ױDO~pdd:neP/ye䂞.Br%b-4@N#iwwNb^L䝘q^wߝ};jfA1:' MBaPu0k:]>{E!ڝ.a=}TilY v˃X=QBkJHk(;UZd:Jd`x%/ k;SMki òv9Ȍ42L'aKӺ doi]R<'ڝ9ɓi!X)Z@{9!#-LU!|syVJٓ`92e{ -q4<%{57 ',v>.jI5*t^᭚io_M} Y4 ERct*lF@C$kP,L@b3 iy-(8rPW@bo5gg=qLhNCQW QL% SRj]5!Pu@n{'%]}U#K׉t8e||UC%8ܽtܪ `5 Io_^AHLTTcJ!0Mab9`'%6% zj%SsQujԴ%OMdq٢:Ը ]':5[[ e(?5O{ -zdZx\&)A2W d*zAP1 Q VsUX  ʂݥkv@PgQu?^yɯO<XҺ8HlnS+i Ҕ s8ZJ"hzf2y6u6my"0cE*=F8;J(!Q[dB+].LlA'YA-ύA"0kFh0GusFx;/Ͱ714-M.#eFF>Ӏa|H?e@@%" -x5RdᦥESelyՏa=k C  D5j$4qFo&-чqIƹU84H9F:w!79iz#&V+: \b/S@wˑ1.Ho$ՊXfh0ީ5K#PfCxrd| %R;jtQy\GznTk4B 􀹳ⲩ.zwHFIĊݹ% FBO;e H x }aGsUc'/0w!VG:i3@px#q@! PYHj8 !=J< "zYHl)K,O|^Q901$m^K|t ;+xS&鵎,7 *O\<چIsj@jHW;+ ml<琧VkHHf$*.X]xH#Đ8Y> 숓! ?S n\b2w(zG \nR͇sAM7jgSJnn>H?bUJ<@r(5| [jz LV yN=Qlt</b&XǙڃIaҾX+f5.N̑c%HÁ$/qI+P_OeP|ǒ m>$rpK'<ˤj0󒸤= Ϲ$,`TkƾGԂB"޼ eJBc/WEJyj5A;AvpSGy?t, O!wXcZ{0Wf= 3p(ϰ .NH{4LjfSy:>߭{N5Ӧy(tey?yj-ya&5ީyDEDX]ɍC\Q -&ƞDj1X3&- գ0yẓps[I -䅸2J 湴u>+< W? -[XG \QQ+)?ḤOl@Da CdJ+ciE  Q,ƪ C`XO4m8Gci,nQAJ{ uIߞ~+HOA)P}QP{;ey,a)QpD*DuBYd#i %=<XdsHȎyyL UEE\5A{*I(8%Dj,x̚H']_:%VDA: <=`' endstream endobj 101 0 obj <>stream -޹g -fqV ciԳ㢉>Q HpRfV)>?U/y FyzOV~o~h"0]~xVMaD*2+ҡ_y/ VF$=V{vzicϼ{("z.bzD-:J؊īlLIi,2IV!}Z"Uǩf wHDVⷾC'I8A>k_"|]Jŷtfч|u-@V ǟۏcGeLBoާi؅|=/Tn}7ޞ~Vb̜$^=_u^OCܭ?zk7nK(,)Jz(!D 4EVq HCRd9FB`ɜt@g!PC2=/#jxJ8]Jw|k@W^p&7(6tbDyS9R d@@dS* J"Wjtcs"VoJ-v%I7ڠIqPR0 D4ɺ0,eDm$ᙧ@#B󒌥ˆ`"B9?K.ogim_TҺUFD$*m0XcڣڍaI^E ڦ']G0Eb@HW v&zRq'H+I TPF$ʥR ( ~;ϒI˛EZB" `#Ĥ$4$#M -&׿a:aМO|h9jZ~Nq?6W`© C&?lI`mDB5ɉ5r`EF&p#[FUEvGőuV_^p6v$ &GH2; cAu:޵hsDYq]JMtc*IA>r.Dkx:p;R -lM8sW"n @.2hu,̑EM7w g`mgݢy$I9WMpRL7}#xPIH޾sBctr+c4JHP7 M?Q @ Щ2Ms, bs4OG~m_4X -2xxc)m3R$.8ak,& 8ya] -#ndb-cٔq,Q$F˙w#;Z7KѮ+dnc$ &)f>CY6.|nl\𙷲?sR1xrf׈`_?5oMla4p_a77%U'6[P –k*hwkXh[ۓkD|hiKɃIQpjFgDMꌶl@}ѲfG:و [װ-,AdGV?ا -3f{AFnKhzfs7nM> -B#̦2mz]Ц}ĕS mM$ahMh;9ы( bd4I^Vm"Zбa~,GRx0.e#z /6!xIpO]0nbD4ߍA*pt{GKm,6B ox| -p@kvW(f6Irc%̳GHl>lrfĭ'P$m&9LMDT` 6$lӕ^WW@B7lIG"<P[cզmhG#ż[DTBNc n>(#,~3m!SZHYxRt*,f6 8 - 8KGl!] I -[ $SNj%*=`O¡Q"; D&&"iU$!תSNډn?qh'kLdI/ }FkL$VJ'~JR-ŒYOZ9ʐ,H9/ww"ԅ_; r/d`h˳$X'f#Yx -4?OL%7ЌI0V$"L%캘g_R^+)f8OwF`ǾbrSx7K*(iG"m{Ҧ'`bY@fY^s%k0ѿ]qiE^`\(c4`s1jT3 QƉ&&;v>SL"zYlM׾3`:rD$E``_!aI(G£T8T*-LD-gPZ0 Aag``>KM ߡsH?\ -Ȑp64A]mw%h*Db`2*b pb:a`g,R 5E]G{NIt<~ a$đ"X1LuZA]N1)C1^->&(R3)?!e0Ѕ2eg=̞LpnɣFդ H0SCPXeC3EwHg"M%4lF=#g@Tnp9S'ք:F2lºی(/DyO|sވlxD1$ #i`p3N|8it=Zox+ S"I(8ޯ8"gg=uHfkTͨGQbYi(\ 8* .*tovT+76Qژ~Oy xAؠ'9]uII|v"Gz ɤLD) S|48"q&:~屰‹A)|]/)yDoUB,?!8\"eH1҄rbNeH;0GI&N4˄\Hos&9> ]r3^7-*z'&q)z0)TG!՚) !%xsCBxg8!yO'LytOfHY'dL&o)L۵KOXtbau: 4Pt<|AcXz]x qOӊ@R7;=R-'ULW*rbX?z J9p.Rx -*y -!w$(Q*i:RK)#oRTՁ<5=tacK.̢\q#Ee~2:bK}4n6)…)}j15i2ϫ\QUl.y͒EJ:"1/HI )2< -D`^wS$ TcSO]2rpGa䂧d>=^CL3|:ݰyAG-Ʉ'11ߥh'UĤ -v(օv& $[tjeDrzbLB(=sQ0N2 -[t)far0klBoamIa?ˆJ~BqP ~hr"bD{DdB QB/ -2'm>"(*YáKD}赔)HH* s\f% j<SB *7X7F3f, Bnf0avcƷ]o~VE0Dh ZT`ZF,P+? %\-ðH2Gb!}V2)N9g'S/g c֠S9aؒA0!0tx20ۧ -CY_x]I[HJ"8q1`K܎7:q|Z 6m9G/.%2\?`.B}<|9N> -N9߰܈F|u[G)j52͘J\ӶsWTer\A( aAțo>Q<YyND# at>B2{cr /;GmY:rV.rg9YMnW -+m!3Fޚ񉖗+TB-oh~DAkh˥Cc=maZP!z/(@!!jUOC<aol ABcEG}2n4P9 ~(UxJA2l䃶?1${]f ?eoUF|Gs3 'n;c7<*뇡Sa+~AgCPL4|Kt~* j js"0D8)GtU-p_S!|/0?.9LaZgN\HIb ~>}! @F?2?!Ze\_e(YABe3y5.d -eBr+aɰ$(yc"U`yE(I.)}L=(vs*U*CO5"T44r~|[Ao(R4E5m0VW>&B]Ü%pAG !L5h7"Dd3EӍH5%U^TrP e,b - -! ލD}׵$H:Dx6EN83 q5(14(AO -7D 4+cSBu)$g&If4sx~ 8,W|ɏlBn]*$Sp,#"KHkߥ*CƩ er:.)2!#ot e&_XMҜB$Gf-oQ0@CJD,Qn-6Dg.~40s]9V||qe%,'QI韤9/cЃ)zy*kg4ܖ/TY^? m>>2a >UJh%6(:zgQ(DM&uP0B8ES0O "y!94gpp@l p.b -H\a %$dAWYȂ{Ák6 Y! 썪Vy,!"[+4NelVGa~ Y>62-` Y^3}4pN}HȂadF,d\JӶ,:(ʏE($8~.?V=],غ.g @ X %ȓ4>K|ElX pAfdX@ak`ie_KL4w."F4+T G ZF,|JYpA(& dɤYși #o̕7%"Y/IUdO d!OjB2&L'ȂGG@h*@Sp˾ 6`(ʲ>?kʿ.X4oPݧǢ\X8p 9e_ Ԥ٧L* `vA lсug_H3} -fB hE¥q^Q 5;8>=KcA!}C9I}V_70p0 (=𱐏;U'}cAZ1=R- -=*`$$UN>Jl<~,V}um9>EA/=^6cY4ZΔϦȩ66OP ,)}xeI{}aEXX4}O{,| Gz,`k>뉵 [ԓlL4ׄlxcnEOg鱠N2,z6$ı}=ZW!mOվ-z>|Eڷk^H 7 vB)Iy#X(eL[.,<ݱ<o -I<Qx,cViki | X:t{,&}]}5cq. E-ڷ̀X0S -Бf=}ElgP|j_pw,pO -iRakX]{xx,(iUx q|}?3yX(|,xjڧSJRK0*;~ ؾy}|H.n&~+"}Z'_-ۇZcA_Xca|qWx3g[ԵOE6pl,Fmc}ƍb -VKX$}j[7GO}' پD@X"O|ca;kzJ۾ɋI_OiJD^,/~ctca8˱@lͰ88ǢXRǢV8.zi[ Abc!x,zw,@{>5cUm 4Ĕ$? {ǂ}0cAC <ѱGTE]% V1X"l/KX E\>Be@2Gl_ٵ}a)X) YhoɰHRǢQŏ/>Ev,~Xѱu,ھfǢO+! -cǢ ీr>ϖ15;N۷X}Y := S\K ."t Jx P:"wmNH ArEhMUnEZי~cNnjkb1+ ڱ֥Jgib3J.u,ҽpbՔ1{[zI_gt,޼YĚƥ򢾑4ZZ\ 8 ] -t"pʮ, : 9SƯ uFm4Sʱ]~pFX<]0ܧic Bb,<mٱʹ-uaqi ?" -{l%Ġ^MIǢd "lH,@@7{~|9>ױĢXM0q;'- qu*HDKt]/-KێrXJ^[b~eɅ?{Ġh&ĻR3x -k%S1 `M;WByLtL&p";.f+c 57p;شiG May,MaXHa$"R1~6#%Dū*,j. %$ -W/J1Ek Ga%X\`GPhrXDHvXXDΆdfqh!1#t#[j܎ςe" y,:tOLQ -*I²1$(ItIXx9#ERHQ(R Q".I e dD(mN24A -y}%C]2_[rU mGaϿ -sy_bOh` .c+ Y{p_ 4W|Y,`FԿC+-xNK,p:ЛA\0Yf@lYZ连YB]2Ȣ)9^n5^6(x0;Aa,.J <tk#W)"K7Xhb(CbZ`!k_A#ud {%pY%ri a -"lyIn#gpCBpw WpjBPǏpC%d!M2iq(B5/d115=RtH~SD0 %.++ {"+Ew!py 8| -YӓR$ʾB vƫlKr4 -Y f -n3(T‚oк݀yXSCKBmzu!CXőT.+3h+p@"(cQjlt(<\AXC0d>-͕AeTp!g|e&! lI X#N]j#Q/r:Å DEے8$lEg1ysQKhbyVW"Dd,2E,~-Ɲ7[{+ WiwpFחrC1 <@Qd%muVe:t۱%[? -&el,te8l$DUHĩd+(? !Yl8De= -IС!, b3V@Rkl2 \ { Yt*8E! ;;EJĄ`[q1L\Bt|L-se"b+pnP\, -$.@N - dwPn: 6dyj<&ab} -]x^dH> - qԛȘ&c+hWM^c,d >0c+D˄-NVH*O.8?=4/ؠ@Jr -YB8S</ +nB aV(y_'uj4qB!Vp)d5茝,lbV -𔎭CLPԫnZ*_祖c+DAбdN8d.d ض)?CuPUaT$E dA٦\n)ʱh ʄdQ䍂ɳ;BAT"Y& -Д'1览ƞs@|[Tv80% e\z~~,(drT]1 -Q-x {#VhE7-8I@7QY 6O< ^A+V8O") -.yQ] Hm٫9j(mIF.U_g<~uASh)l'. oݩtY|_Y -Vh;Uf=, \r^7"a$SAWe$zd|b~^éb+VulT0ʴX) -9{GFQQh"9?Y|UR[}hk\(-^ kGNB.iX~3sGB%VTOf\F5$I?(,Oy,Q(ܰ#Rd׵ƣb#Do'2?Mrv>i,dTŗXzqĐ)i0,dJީcBE[W3~QbMU`Pf{8Bmg%_LpzSl5L;: BԗW%qX75jPD+*wYؠ(qTd!ڒ!ܮ4!7vybIIdݙѦą8! tf`-dC@+ִ[ٌ.v}l M m!RH7BNj0.>o}ՌIr`!jL)d! -qB! 9h8vV-E>n-\zF3}oSD)~HȢA;/\H3 O|Xͤ',ڋ> RzImA@?XqBS }¢QE"0CXD*nC> IOp0ϒBt$)lt! 2pBWB_]o DY1ljNՌ.h#I!mʖ/<&7',b0&!iey3/R2>!S!+!qgmK%՞2>X~`@v,b1)˖Ior! >`'L4 }מ`#RL M.4YH($ȝ,Fo 9Pp֑JȂY'86 ƐYmG"=%dn }#VO8B4| -@]&:Y}@mi $!YAp (P i\dwRgnb_A+|4`Br Q.e,•i;a&WxGmBvaIX}AM%U^I ,:Y.?; &dqst\q8=Tx &dq Z8~y;Ӫ#+q,R\qqsEa]U -B2{T ~%&ܜ}#d,Hʡ `27'thoSdK8f0"CqV C> Խ57'Q/\.9h"IQ eY8MpY׬޲Ԕ& *\"-\6E],Xp Uu%'y{pX;Sjd?XnQ$rӲBkw3Coޟ0yK4 @@ϢF>-%'B",DKN"X^dʧdX -o43B=Q$EDBSUO"l(@ #`dj?)%/~,?XX(w$@C/{~`ƥh\X%'@J=W8%'Qy~0Ҋ=(^)sd-,X <:b29]UljhLNp'p֪vp9%z5&'de*,mcmc3=eHX'Xx]kXA"T⌏Ż'{RFi?|q .5]g''t5Nd|,](9yPǢS/4 ǢW7IW}ξ Sqe~TAWZ M[q7B`c'|*&+{ !$ǏE-(@VWrU,fc $n>ng6ey*)5nN6b+SN̗.>_5`Q},Zro }ȩvqȒh:cQ mm H^}KqCJX4\r02@lYYDpP'aP|K6wX0͸uFCftRc? C%ɿT,$_-} ߫Xc19u*B tE}uac\A_˞P;Hה.D^wR?.w׀" h維3K8u6j0>)Tx@Tj@HU?9i%,2#z T -|,1쌉a1mM**iG='a(E74Ȣ'7m )Ax@/dA@ M !<uorj? %PCYP:@ ΁_d!:Jg,PqQ0&!lWf!֔3BD ;(W]Fy-$8Hq]2\EgL!d1-yG!YO3$_)C퐉0Pi4 isnY0tf>""{nAL,́d?H(L4X"(ezYl{G$q),-BG7,(%ׯ4[lhZi,N_JZjvG#\Z 3@Qc)6 Ari=0P/E@8!P>GPDCc\BSirl d,F"L4QA Ȣ0?L -~rrLj aߌ#cG]Jydo -?,x kd!Ds=  N(o| @1395)q~"9?4489BSվ`4lHR O͇"br@ ")(IMo!M(G秀N!!8[̛A?7c!P jЀtѽGOǢd0ó~,^V0[cfqsQT؏خ95=z! -ݱ#{^AH@#'؛uc -Tb=H s.f5ux#+BWq|x/֭Ǣb7cSa>^h#4=ע8 -[]1~&9Bq,"YϏcM^22!KLصݏ(czڱ8uz&7 nc1G!QTXȩ+zE+?(@uUxdycnȉ~wwk;~07!U4XTz>Wdh_TI[߱!4K&Zndp[)=A{cqBG|y_Hx,T1w_#ԋd?=hީ´ǟx6g.OrHTEZ'z,)cAԻ l!"ϚV3:BNKa˄^<(bɖE VOX7M DX4o`x[Vtǂ2&C|O…mhOAfD=LnF(=XlLT f,tLE>9+] b[dcXnrAGP@lݜɯ5cNfđ|,r #]},&oqqF6 +j/+*t,z8W+»AmGsfz_B3AwD 6ZHkB}d5~E01e:na?"O=կ㗐|OAqsLEy0*m:Ż@+vO*ŒHHe?n#4&Yek^Ogh"sdӸ)+!@%[4A AX!g|=p:dp۠Hw,!j +ӌv, >Le Rj@v,p=X~cq] v,DADBCxB"(Kެ!kmЎExf+5 1续.B k|%n 6B+G6F>߱C@}+'coxTp≮/FԓcϬa'IlbYq;d~R:N Ž#w,X To= EuԔ GqS)&ѤP<+*<) )C4]bXLT&p2c+d{.A(-SKw"\c9u{N}UZŴ;=~/ -P*\ cp=W1t{F"/thaBrX-9t0TEzG#VUX8/x,(M9ɉ)Ꜽ?x,~ -"j @hW.DHw5l䀾,G KXu%BӪlQԡn C$|cLَE0c ۊ)Vm˱BM]WKwJ3Ǣyq*8AB bCIeIv(`C]2n,cY@Pp (q<7I>#YY=ɬ7$e)> ևGK`w(>+?{'&)V}c& 17+"ˈG=ՈuS^U>OXµ8z‡2XnB;b)vE8E!ַ0h-ҀS*izj2eAm,9"],GfE.,>k,[ !t~zIhb€G+C֎؃#ncMNz#L|Bd4G}WiaYJX7o_ 6=' 9~х|b6;4X[l,v~vj~2IT=6{ -uJfccwexr354v5!VUB`c!̽EೈҟNWlX0a`u,ԃƲ @#T'빈qkEdc6)9XrA2A,V "VQ@ Ȩl1.m6]^I`b2\ny^lUwlcQ@ 9D|ŸXPwCzB'Tޛ~ eJ%ĺH,irʶ8Fica8 /3H"3>a)1 -#4b/麽LN̈́00s pYۨ8-s*rpc=?X%]YT>p,zc! חe9$ DAGh`rw)Θs -?4U$%ivcrsfޔЎNf(i6=~;3>Bd?A7@8{4L*h#+`^MjtrAh2fKdwҦ;Bu,[$te`J/QpxkmqW'eQ':f`(vc?SB`N, g`ìc-ya58A.# ԨshQWeeLOnX̚6BM D3M%:eR t$D"74pUM}{#Ud jE(w( t,5芼Ƕ /}vH6S߶Nn+;Ldc){[K 'o y[=Dhª8Om2f_ ⱘ8y6"p؊Kl ;$~vxuTiۂJi -?p'ͺ"*m8 Eޱȸ G&m`wYtMސ@ld8Ӣ)%mpQS"^`1F0:x,% {o7I&ю< 9s=S Aev,T($RfheNQŜ҂Š|eE|xt,^9EE@ -S6KS ?.SɁ h V ) -J1 HRE4ľCQHF ^cHL;ҢYH;D!_GG|RY_N@&~ǢDg=cSclwڎIgק{Dm -}O2њ8;Znǂ;Ɩڱol%hYaՁzjz菛\F2EEҎ c}%]ǂ]etwӱc\9:t+ó,RemmHەѹcq.]wG_1Y,V@}X WTuLÍ/a"~Ћ`X`!1L^zWZ"Ҩ, 9[ƞXZ"|Pv=6?!^+Bx=)HO^u:H֜^7˦JMQW^4)IL3bc -|WgLaɻWKAZ_)׷J6J1UK)RRLm'8)uMx-R)r j!4PgwJQdd@GsxoDQ$N^yazuQPǢ> D!DѳMB=xˑCR慨Py11ܲP|Bz"\uנ@aA1RxP)$兠̫FPx̉yWFPve`Dy@1<P^<^}ȋTWP]E/kܫ{ -kFRH/uY_upLW -A,]A_fMA?P40uCAO,X@`{ )15rL@DL?'_3EQD 3@!yFsǶ1zWՆ 8LjvXM(a@PNkFYD9\!4DvcNY^Hf$qd;Li"8DB~zc:# r0*̑(韐WllSY '|~=e?<OOD~cGDyv -8Yޝ;d'PdJNN{%Xd<."lJ<)H9Ae$E!rr0'N(h#&ĵa27nDe&R$v8M`l(o!6qm;ZMjfR&h%Ne3A)(3v&xm&HCfB'LLH$X$uP?&&1C=&o%(3%a-&Z ػU% /uv$t@Y\((2e@[k%2'%A,mJlJ`2D|W97VbU"9D,H%r?%D@YGZI6%w% Rq)!.e4{ \LRRF JS&,'@ C2mOb!I$n W֩I/Љa?]e%JbD-kAnYewxD~G(Qø -62b/GƮ2ez;L!# ٪bYE4ʭHUV<=x{%<[ğ ('EzX3uEh"t!ͶoPmANi۹֠Lm/fڌ-Hlca@?H޶CrLm}5߶­Qqc̀7r6[nh!"XVnC[P[}pPo:}lR}S7oSR7ۿO)ySތ8샓}}&|߶B,%>2s@kz>o=ǵ'Cz$|Ḟ n8xaMnJO[ 6ɏGa>Hp7%O \0`v6 \,"p]: 7+Nzq8¯c>qa%$\0Rtv͇ίP6>g6@C 7@Wk&Vj>,F\Qzt#hS]h>@tk>SpǓ7#@ru@%w-'. ͇XI{P(GSc.HI&w|Hz%;/0K_<(g=ko,ߧ= Po0&們ru= _X|ĉo - {H( -@?L+pH-wWIUtuVh.>{Ƞ;yCMDSc3g=>⚃җ8U=`9ꁕa0۹уO5|cuPpCj?E!( u$[;-H;mv uJvpHK PY ;;:DЃ'능LW`V7uh:N6:9: Co[1u  E(% dQԍ>s89/ss`Sw9M^s4sx|9$r[^S?~rf&Υ{H hwye8E+qx'yV8q&K3$<@jgJs8=2kEa|CܦAmH@5CC 86ߠvozC2c/o07S7pT`tõ 5Vr XuO;$}ujC$64چ uƺ/%BOig OhSt(RtwcSؐꖑ6Pi| x tk(֐$vuf |t5j@ UCp:LK |vQ ƧӐ!A>sSO:Ƒ D}GF}Y4u # #4ȋ@ɺvU;CY3Q0uXp7C]^3 @Zn]lnpd~"6fuf *;tM6_x< Η_[ϻ_@_ b_@*noǃ,ȑGsq7 @S9[¬? Z|Lz6z 7/4I^9Kf] K߹ tX5UsBG&|.d}Ps% !ȅe AE<{ 2],s OS[h,[(,l\ հI+/ =F - YXgacK,<>U,lgju,$kR,\́<,Pa`|BK -qŅ^` YtZWxKHU2D Wحn}k9Җhuc>5 |p*'2~꣡^c@"Plm0UF.w̄@D@.ifmUg UHj[2w' -v@3?H *؀LxRA-@X@. -P62AF 2!x8iJ90ElBkR``qMcIfN{<T@!Y7 *!UA*hj [9x`A0 ”S#PCX܁ -.Ԙ!SCPvOnjwi(z Eυ hoLD~=Z w/uXZ>P>ߏ%wYC7QEzNc\7CZ+埦?nJ1JZg%/KLM7QSZMMPg2#4%)ǑL@JIk3P>t:Jƴ^pPRRm&L2` @  @Y@,x@   F|@ B@)ȀH">@$4x2h6A - < l @(6Ȁx42á -Wjp[ZuB)KHzʩJpTx~1iAE3" 5HbTE3 9*fTTPZmB2z[ҥSԖ|r}JS$|KL^>i<0rkrz!|n$b+y^ w `Ap< _ I%qlQDX0|7 -1* d #o |d/țs8wL{D(Ãf=s\ -LPS [7L>DB9E)f -%!%H#T251nG%!c\bYѡ%T*BWufkJR$S0H,Ԛ!2/1|\wt˦ZR!|T!sDm -n/}={TkYҧ-eM%Az&CH%)^~;m4cvZbwB]\$Nn/Y}sVSR3D5RNY~]Yp4X:R2(IQNՃ 8Hee1CVlHSbIsT8a ] 08 BHLHx@"h - DNXP!,#9{'Cnus0l/J&1c'얈yDvGN6dYŭV#0t5m0<)c'pd<~?nN>"=NHˁ =َsy 4ˠŔFNݱ)񗗒T4W)8U~9l!K/XaBz\m-? q$l8kQU?CǂwrC0zrgbKWy*, q;k݃$ ɦ{`;;* j09o_r̹~ji܏K{`e!Yᅜ)\^![^nġ'r*Ae$RF.'jyy. vyrf |TPy *GCwkzZvq2i{q8[~%38}+xZF$͝񇌉& VEupV8QuA UؘmOl9}lnظK$4ʼn [k醨)rU$^qAX 2yaBR9Cjr=S`}47C,ZO\ܹT!Np):$g29릹@zptHQ)(M\ɒCsY38$m3Ù Lg8aC8(.XYߩzrܚLlhLw@3Ջ,Nѡj=edNB PLQ:`kJkBɢxPB_b8b "I_QTIWk "NoiPS;l耟^mkXgm^",ݑnj8;PQ g[[53F$ ^86jv&7OyᜀW{pC|!q:TM7c#d8+706 SRp1W1]>m_[b~{?%.)XTZ4+cȐVKi=mP݈pw> -|r:lOG]Ş(RH3}I.%A9քxj - -'ʤ;&ra!1W٤B^>QRs72Q -Z@XIp{_D L,4zǵlHb8}G.YpH>-Y%N._I_8QSd#6%޸$]zS7H MA_ Gf?;I꾿+el}ANơ"IUDFUd ˦gC lGzd"$|:&x‡*ۓ0Ni&J$>l. y b"8>p=5Ȥb`0!;ᄆ\Vt1u:VV~4H CA72Rp&Spe0n[&P%uoŌ0 AȘyu]d t 2%fzuLЌ Ylaˀ d {{@" :ʘ!ɨ &n|fCyk3~+Q iO_;]mĹtl -8y.Vƀ(! <]O 5{ %; ?N9ݏǥyQ=&]vSLU3+xA@g14^-_뒝#=7b) b %ywON ?z~ <}F!vR@&>~3_$ 5JHR-!YJJq:lh~]YpdbB+hO>[ b˫`2Б BV.wWI ~7zg w{Ņ) L[~]?\;Dw;dwG` tjer,0] Gb!x *thcwdAw*Է  Iv30,2֋#쁭n66,BR:n{W.ĥg5ϋaAq;@$~=P8-4C_݁>; ? ߊ@4[} -YR0;8PX#P!`1b*@&ks7QOǝ}Na8ֵy0"a4gIhf2<L[x>2  0liRc^jwYIN~YN!`g9C2ܱ1ʼnPWྍY|-XCc#nGK YYW.âpMu=jTǵ[>MGG? h6'bý䎂E^"I+ZI酨rBvZօ (Cm7G8 ܟ'&$@ SpÇe c/B X}eĂقSVu"4T:ƙaЉ&z S aO:"C"m 9MhY&/|*% %R2Dx_u#sK`u/sdUVbv !Z+DmeJ,9P٫;ctD4{eUNxPWv$`P6h_AjQT-}3 iaW^D~ -K()k,kdҳQU2&} f0&g42@G*P? ӆ$;OO8ߞ@9tW^3s,VZ 2Lyqx\4PYLd1r3:vȾ {% -gF= :4&")CbYȴ2D$lf>#*]a0Yd> 9Y(#\ĀRʡjYK%: D -n,&hvXrdAqD+A߀v,-].4S9aa-"ph8uG_ȯr9+]*=tQ -)HQ]ܔbXihc Om9[ )XXa[?6pEʧu2v*P%!,+HCY,7TGnmZìpl,X@;TWFA+E -+_V/ nj`A̞ǮU7tjH -s>D7JRd*.5:p`E+ Q6 R<ٱ( w.#3 uphc{=y}ETk5N AoQ@qB\ 6DHB"-Ȇub"9¯1mq]x3zٲ*΁j,z%J*,p;f"sW -3Ȃ;bnx-"rPC=D Ļ/}V|eh@3+͋ҙj6:'=E$lI,2]HqWR]|fxQpKը&ݏP7Lr Id:jd_~hLFsW3FEV(p -=="Hq0Btс|@G}? }:( o;+.(~_[nsOM_n!a:{CG$Sal«x.+Y*ۡ NWoyNS*Wf-b{% 6MJmԜ$1J"EDf:WdQɰd屲\R?Li+]Bb8w( ;">٨yՅQhWnqEruR%:(*Q)⭔c(ar(sUx%OnI ɥ $zrח>J.9 8F$jPUhGcTD,aQTDlKP&©Eʪ,ؘwx,i_k/s7t[xM8+q-UG/߬k (VTUU'$* -e|R tCvoO&yvjdT%>$<ױd+dMDWY48ݬ0:ĨMZ @&T<>1(R c?ufּjyt~m=G$<p]dQ%S;܁aCܥ!^)o,D03+H.ctșCwGx5>!i -ߖzVDzUo,܉rN:)e%/֝92^Kg0]Ԃt&m0&b?,䖗g  Xq%*͟A(Zla06#`n&E%vS[J~>v9DkL}kf+L\S AQ0(~S{lceۙl`7 u$aė ;M@I}dÕT%2j+TȽpc.d@S -i>,%rtr{6CkNίFX+t9Y*?6縣WD#XALcBf\W%9gkH0J=bE2R׵ -v泝'³lM?œol\-F Y<-83z1塲2aN!pݽHfŒEH`vVJ7ebեpgW/Xk+rg7&f#z֧PY)ENMGawqZmzDUtq]g@@Ά#x'|٤X`8HdZ#n*IXJUlgbe+1f,M~>V!(٘^TXeQLyXTȠ'E̍.1{hmOȢ=bj|+"'JaSzoR)얦 -g̦\&1{"!9ނRn*UM10̜PyƽN& t>Ocy T --BoBu1œ2LsBavZ0uF!ηYD5I'dzy2_L2Xaҕ#qٗG_'bYTR ɖCG-m,Hv/l4t'9dV&2+\@ѵ"LjshȜC%2˝}}w܈DEG*'0t\ -_{4G6IN迷D0тP5پo}!N@ SDLYZ=d6{O0,gvL̕c ar3W^( j!( !N&O4\AT|!?JOhFof4кImf?F (=sń==A ɹ^'OܷĠ\c-dl,aV؝t$9܅ܡ$5If֭]:P3qgft胇%ȼ\#˭ -͊\O&R@b0uR|1!fY=Y:D'$f;S]W>o9y}'o`" {'=}Ds#:1;NHQҖ'hIj%%:,}A ~J 0lp~:7i}KHF GO? -{O"=~  -p'HPO{7#5WIKR4V;"l6<#DV#z1j=G_"G荻+yn#O 8WC'm7x0Kk=ztA;AX ̬`%y㷆8z^^(0^ >_o'kzl!}l¥\KH[k\r@'2F$[5-WɰKV-1{T洞&BXXZH/,)- |ȇiaR;"BfHiDram}r]"o"B)lL)i.w"qp). &zafb22+kx0 N$Ly8 !\DLQ>0(g\1L Y"#׮`NA+#bCT 0$z~ !`2ԗaLPc9dxC61PG'T<o,7 cx4drg` ÝFWi!T]W>N OjQxp:3egLXMbA -@$ ب3 ¤hp0)h&u*z70F[@2Rpd ;4m' -]DVHYYA% 9|M.8^6O,Fia,,cS~K$%$sRHEܫIߧrU8`g](}.e#B+RnuK4*Dk ѫe8EUѸ)w0ź{*߉n[' j7Ssyޜ 6hCr"-.C_cK,C)I^@ds-W!VDޅԆ@֍hU'fFFщil'!mMSYKrL}!xQ38zA3؎F -VM8pEt$y1*t -VH ;lj7#0;YvUG)y_J/1z&DVöDɝ`-)qu7"2$=("B(1  Oh3oʵ^I5r~Um -^i^0vKm,bv9c7a0@/425vv ᡌkMo};ߙo(UlB'ϯF%en@I?h .͝>m@SA{Ye4Cv" LLM--- -A\pHA:B/m=+–O\G.~Y7؇ٺdo,FpdsdyሢZ o8_'-ȃSd S0 BS ԛ]!R{X?=NYT/%Rh1PD߈UTHM  tDi aE |1\*~)&]G -_[qt=}/eN:> -p H;:EU -F V/!4|(H-g>8|b+"FnMͳ?2W)0$5ə*K \pչpwc%xlYI9&^G;#4b@Z}P"n$$4SC"'xPpZ =lrEpǘSA;``(FGb[҆L֥4YALtBb%\x'(1*_+9`f(#ew -,P>_0k+"`ȭRV軔:[ӊrД%W+ -XʃNOsh(&G}O@EF , NNWy0)pm{DVj}S 6s$ux69 ΈC K0RE}@D2zV[pك!+ƻ80 T3<e D#a+eBɺΘ˼D[=߁r ^)-bDd^D ;=F{/VKm =Wute[\ƩZo"H_:N4HFt+>b# I7\ 0n uD}G3H7yKR36*mndUaroې_%ԨQ@H(֬FA1TRV_9cD t!& ٪* ZhWH I2 Ts)<àj"J!-QGfVjυCwKu);µ<|I#Q&sZbELj[VxJ@NL>'Π̾" }ʔ>vKR6 2409C),d)v^\d^!شo.A~DE x[.{#HPbb! Ϲ~c([4 a-/8\ړy:>|7T(בZ\\C ! Fl!-r}vCÃ/w -,j9VVHT o/Bbj҄uJ߈֩+C4UȢy2!My"YS ]Wԛ/~35Wq7$ZN]S.^DxFC{Js./nPH@d^>`GB&ӓ?n]g@eI2^k@ -TA04n5vMgrsn܌qA]ͦF!{8A-,fx;7u5fa٦FES̅(M|H: .>HTgR1h#JI%scv#XT-G7  AO2?!׼ =XڢG/(˙.8( cMdƹ|A5L.iP0AeqHޘi䦮bL'@,^ -;rՆ6X]cz 6U$ʮ<!!f[ -"".4Sr:XD_mQ KnF~Nz3u@4`+zfB^D V]k4oqn΄A! Rby[)2EK)"xF: rlKs@2/r_(Riix#4M.EIDP:s -BIA̒~4]OCt1jsz4)M6gfe sEL6b6T 僐ژ0BxܯJ u!"r9Ac-3cQFf\n*"K4@4҃?&ninc +l8JJ̕8ޖ4G%a] hxP 3l։&A>&T"sZvԦ}+[,an ڗ 8]ػn&΢( 5CЧ0q6e5on%0ᅳ|BGm>\WxmP -oP-~&varhL%2bj ʭ= Ij\Ѯ?ŗB@HVG)`o)TwMFDDt+ح+w/ŐTO;:ͧ{ѵ 6nW9<(9mIANvQMxofE@-!a3T @6d`*YI@mى`nh gӵ=_X$\C8QBy4 M3Mg92sJNE6_,"0GRcZ Cכ4|X -5 2}tr#9M. #k,])TC9ןv&5Ѭϩ*Q:)wA:yBʏGu+n .ˀZ%908iE3v+*wkA -}]ջTle€Ak>.{2jjTc0 l\iȁuϡЭw1B,ݩ!vsVH/`%bUFU7 ^do]TJs\2E]4vjPG5SIL\/V%Woljz :bM4ďe1gP)Ej,RsRлpOs3MC5GD8_L6ȸp8P^c%^g{#H&(77[S$lkQmE\ AQ A,=Y?"]X ۀ(gYʑ壣ihW ү0XBIrԻA^ޑGxz| fPk`x( tR^>\=4곶F̉ )Aꩵa͚];WVwj:|ۥPj*Z)G{dֵ$# ]pݺfTwhB1]*stlWqiίPpQqixlEUAЪL*Mx?wZ45U\uDTޗ9bPtj!س? -fﴙ\U"O$ˣ˕@Or*@+UܕKw:Bl^ 5m}m9r[ &s$L7z rW͛f:G3$ͅ/ өnͦ{n,Mc ہǥ񏺃w=5Mf&}#>IǭHrž.GP`o%r 2hswP $^iTG@ŁTU̠\|]EZS\ncQa:SVx<;i(MNz7'8(rX#*jP>l?,p,.3wS -nq )VvhnK> ȢRl=z=JȐ -㶃A:Ϊ$$oeq$;@j۝QW|AӨʻ`B'&I>cM/>NM\1}F4bw>pXT4Ȣ_5A{nY퐼9#;pUXGGyPCc+kr[\7U/Oڭ ef{,,Zۿ]NrcɦZ=af[t;ZhCYm J[DO2I-37"0:18eRZ"1)ΟL1(tK.LSGɊmI2d@NPD,[Vci9ɀ2b+cͿ`RrhGY<x- !eI~ f,xiZ:;f)1AtJl$(W/.y|ul~ JZ*)AEZ 7DWXҒ݊2@{$Dv`{? =R(slbwY%󽧗l[䡂pY2JU9A$%2ْ"々}fdd2 = -cs;!H\~W$ y&?MѮ=ს$gf+2Q{,.㓿K\uo" ޷tP䕖Wo j= (֫Ed,f^Y'8BQ*58:W,G/Y16ԋ-Ha?tNCEIu'4 zEm^mIT>",Ee퓅[;%AYy=Jf~^KKg -K=E#9, z))q|DZļNhG/JNμ,?RH Ĥ, -Q!|e^SM0V -W)S%#V+)󲛔]DR) (^?P`'ܒָ^ -J /u*lKC** ; -@z!CJ^43Dz]e1SRz1+Tb Q/^kOzĜ^nmX[֋1W. l^uPPW9$M^"DI6CKVoXx + -t{i?׉ WlrѰ//WF1W/nN+H0}V!;ApLVh,|+ K+ 6]0 &` `s^0>1DSacrt,B֓Ae`&&ea2o$aT :lAM>CL1 eObe)&滲^@Lfv^Yb,‡!2\1) &Cw1P@b`b&sfL#,XW}ɘcw, <9d1vXcò@cpǗ;dExe#Qe(ɤvJ4]6%7dʼc ⯤lx2,^*C{*+IJ),pwe,Hl#LrEXױC˜:$'ٹԜ-kuA2e- ک9I,2B}eìZuE*[ꠔ4!k*[#( NEh鬲殨5zUpTL+K>YYd -C,zt`z`=wQŚ5)kc2E)js0fT巩mR9UY<ńN+oFz0p8ToVh4?h*;* M(XĒi0TeҨJPYP)Se/LJ\ŀVsVFciLi[ B@JUQ+[QTTWVx{K$< -K2y!^Yo,Գ(L7E+paٕе/(Ve\YLe%v]|^v+ Qḹ+  *]ayAy_UVDS-ǁ#tݾ0y/`/󸾲 |2\i4y|f<,\zsPdȯv,T Iw("vleQ,Q٥reV%:op$2kN;DY|kpe,P-kpVN'5`w|p,  GY2*e[mp?S}OԺ|l0Tn!ó, jIM-h I˥"'[KY6zM"|pP"0# e%>AYu;,]kx~"@7p6l.386QhDpNPV,(ӹɤΩ圢8*e9zqAbqu4M\ -!)s簉@w8 giӾJ(P,0F0yHy/hӍ OWjA E](u{vӽ:CY`ua|,,CZ~bAY P}F_ucBD&[ -^,q':ҕn=JZX+euO+L8YTXX"pXGq!<N]]2X -ͺD[r3\E,l֑X("{Dݦ~8G2u ! d,:fͻmea1:|dy[p=c,|uC+Y|p`fu]~R>],ijJr:vJyhE&!.:ڮKSTMd+Y$% 29Ϯ&Kz_%^)yWߒ_(+^tK( ]1YAV$dЁkי-rn]py\ MoDlA:Ϥv>sjcPkd1_'w 7ۍ3Ɯ,⸅N'wKE;;s2G"3PVxP=ZPnco="V(d4_oQ5^ ! 䥔@WpRkdyB:K/8+ʢ1=PSHU=,lB?Y=|uO2d[ {!|7 nz?YM -U.O(Js*vlO^=f}o>( QlhXM%JP 8( n OsCY6y~|„QrUǪ%~b>X oaRC }5gt@YV?Y ZKncZ=Y^ i c 9:^\09XWšXLh#7u, `AO d4UJzAl)m ʺ :ho(D;caYME乯}% Zv,Z{3%B}R~X\L辦AjP-辤`BZr_}x5*ɍF e.AG17cQVXO!N rS;f}8r_h1uw2Ix i0 <OFJBz ܗb}F܇]1WH1%oU --}AND٪K"s_Qj)F -m-rjP/OTCa`bIZM " GMopPNs,BPc}>?! ПBsCL>d -ABb!}Ep X)P yq"peF7Yŋ)z rpپRy!>d|4MdG3 -6Y`a,\QؾL50WẂ,}+2 u }(xda1#@ssu xVJӅkY=RK}E7Y.~*/ʖ(%K/a6qBLNʾd8IgӀܝ [4l +cVE[ }mH<8YS6CN9fe1U YЫc)-2}Wϝ,s,쉞,j=Ƌ1]9,gB YڐY=' -Y0¥θRP"L ,N l'd) 9cA쯻jj$]}&ɫ9*AsdLUE -j)$VaBb9| Hv᪝Z3 +lDb(-/X3-^\)Z1|;X{18kVvZ{@r>[I-sۮZvc񾖃J b/*kqg+Sqs߹j{V:Xgz}z3ߚ9<3[׻oyyqWk{[Ζg}jX{-_g]jǜZvn>ﳷww ɚg;ruŘwsw'o3zHs]$<3Vg{ռ{wͽkWou{^\;Nҽ͸w [g-87g|/k{wsc?g~~kr7}9n/Ǹg|v5sjrml3vwݱ||s\_o{׼_5"g9ּow]85s nn[s컶I;[?{j=cΘg-z_[mo{ޟ{~wusz뭹׶oomhk:w_8o߽xglq6}[u*YK{_sks߼{>L[{$|f̽b}3 f/${3_mα}wo?${z7Ν5g3_mmyzwfmlmx~ߌ;ϖw=s -7_Z7IgZ;X9][wszۛ7lݗsl=㻻{ߪw=n{;_3q8c3|߬uojzs_-|{wͭ<~{_ߌ5뾹:gly~}]n]owۏ;޶{x߳ryǾ{}}ysי9km՜[s[~on}v{qco-s/}[~ۏ;buw\o}bjo۽ϳ}5o|7}mq{k/~̵c[Xc֖5Μݻnwϭn^y9oZ_o9g{fmnսm?\sk_9cܹ<Y}oYy⛵kz59s}svo9m뭷_oky{z?{{6}7?n/1}=?-k}s|o|[3|o绷yguvǺZv;^~~gny_ϳyv{{r}swk3v{>oZku[kl7y5=gۭ<뿵o-]ߝ}wV5ֶg8/_{-Ʒs|5Ͼ[L^[v$ꌽgwܿ:7_7w]cm;og?ǟ{v}swk37?{댱s7~1Wuޙ_uk|s޼sۏ*?k|ݽkoWm??v;)EȀJ Ԋ&dh\]a46c:C) +CL5ijA)u-MX'IbU|ّ5;fGQ4tĊs\u8Fh ;JSqՎ5TSzюO# 2ytG929#G)WoKLo+^KhK7pHQ1[q[p,j39E17pG-0ZFMAeh?)M)cnΗ 9t#Fmn¨ -%zO#j~pT|pdJcQ.'h~p| 烢 a@0@ l(  @Dj(_.l) "?F5?H,FJlv) U1O!^= $>(UNekn&'_Ӥ %6katヂВA2Rʫ4i%Ar@U#%O`A JbB$ / /kh)O`@I6:T7X=rA(-'|NL+dMΈy"DC"i-hE+36\zKX,'x&5@ -#:F$^40>=@Pp/=9 *S\eS ,09+xQXO-W0h0-`GGT BFdd+"&)!3;06ǨJ413dЄNARJSYYC3r['.#lbhڂ0bCA 7t 3 ,3u#txHY[Pӿ=zLVmSI)Myp>9HQ$ PV@AVbf3Bw9$(RtKZ[5"S[l ͧ\zKXηLzJWm[AvŪ ӈnz,OB.)&8U~7nidZCI*07>%ǜݎ(RPӊiBtz=KxNR}`58fKЌ'.#% Ah@ܒɋ FՁ̍ @Bю '*!e ɬ9 D`RA)bl/< SLi+lzΓVoA#ȋ)StY 9}ņRˇR\ k 8#3)B>pP:*301as+OXqPpb gRpz fXFJƒ Rr鰢C LA}vF \rJY2shA}lALmقM'\w9g짤:GQSUʗ5xMbW:GS̸jI:HTA4DFR7f b ,04%Q%(h^%[ЀLٍȉ`ŪAfds~ W|-M}r}t7,fF\e㳦\h W\a9sVt9nNN* W ЄϘ)CEE-MjzLL)S|kJ+Lq64qA13sGwіMȜ43'hZ >[ƧL~̖-z2AK jb$ $È d  ^B(QCR~x@ 1@ -J%0!! V:v?98b$'2Ŏ"'e41i9jD8M5E-S1;2a3 L  '؏y)4. }e߈"!d$f|IVBO 6w9$vl :DL4q=lf3B_b¦ DA\dC |~n|3|΀!dzțNlل1&7FM/j=ǸpR;#2vH7hƨ-CYJIE :eh@K,ȀΛ. ',2&6txO%VFH ,ZQzc39Ac$-ER!JĄkFL43*#'i:&jbhd 4AK G&Z@Ddh>v|nO)ꇉPYDŽxKC>PDe1ca7~zB@G -y"z22B@#%l1뭩`T|KOn~Vv5tDNSxLT =Oz,=dTCm!H X)/X/7l56x 1o J\brabRLL'ȹw\$ ZPW,ҁlA%Snuu1WbEʘoTۅ AH9@#u2RlFt^%OjN* Vn/9P(9B손^1,pgKs֎T'S)VdmsJ!FyO/)S9K"f -V7`5 #Bfl=(r%VBJ䌘*2+ZphAӣ3;`cԲ ,0_ҤEB$BDa )^Rl -X&1&ru1UbDO¡c= /$hoIL -%ᘄEcՒp8B2 .Zܸ"RH, FE 43"\V.w]H.ߟ{5{:k\~+} lo߾ - &ٷn{W9 Zg~; V砂;;ɷwUB{'$\C mwǾw`DH䒐 Fuy$^H aG|R@t=_߹ʽϝgUo￿߽sZ[͛՜y|k޿kַYZ[:뫳˯y39\vռK\_vU3kֹg88sU;ߘߌ=׾kYWcU7\E 88Pwߪ\s7k眹]o!Hzƚo;/qZ{wr}*W*~UVX}Ukvе6owyϽx9/ڪs???߿y__sUU_Z*ƖsUso{?[y|_;\m]vzq*oV|Z!ckuzkuܭZ{kno칷7cU[;` [;\͡]߫_z=_goﶫ1kVjo?wޫxjw^U;wVy޾Zqc{Wqwvsl?fWsbvU*W<[sνn<naucUwWWw{|{ڷ_Z[rU7|}ުv߼;7*{_VUAh֪7sv1V/zslث>n?j__ ڱw}Z~՝WwZyb3z⮿z?تgskgUf}\[?_*ֹw5WkW1XϵY[U;䭯֚nUr{_o[u׾{UkA]jjnƛՍUvww*;Y_wjUUzݵ{U?W[n7nozͭz-\gUs}/xU1zfn}XzUqV7wobg?_jkUΙl;9{y*[wUݷ٫۵jb߹o?wP9Wq*ϚU{vg߮n?_ucurwUݭ;W͵Vw7sU=W~un=^~rݱ<j{8s š_{gmjվw~}ڿ3ygڹ^߭n-jnss? b뼵W9[^g voZ9>EIѓ˷Dy!K~)r (aB )Z2#JpU#ZpV7ޓQr )9L&|ȚZp9s+J 9Yt'I:cUbc -Pӌካ1)>k8ctALq!#BnHxTÆb @n02,ґ:GQzOt2`Ј -=C("JzN9nGӛMi!IytGS~ )-2%#6[2:k8s"ԄYr.- eje.wrHNqΙOY"*35r>(+?Ld#f[rHRZp/1aUFwxx^8pQS *e8!sNqZnQA5kp26#OT˫:GPz&Q#Hf=y=֍'t1JEs==dQ!sz2q!S_S*6P6gnEIP , -2[1aNXb'b:h7 fRzDaU -L`_73Fє66aC~~TlxO,d=d/1ba #h$*dTf[wtНbNَ "c(lx[O93#2a7>0rKQd-lقj6\_|I!-/A$G V<L jS#No8C-glǧ  åFgLhZՔ$h NNq}|P<<>匞KduShKӝ(+pWOS+s̄Wt13;>YLqm݀P&xFT!2o9⺒%=ebGIiT -!Z~ЂVT.[ЌxtNn:[QRTመ/]jRSpKȊP:rHSN9Hps:!2e3GfG^$f5&Tሖ,@!(Z23Z'+/t;0zP4z -VBL%O1[ຳ6o;EI[P2g-8Z+"% ׋7]pC)""&i %Ƞ[vIɈ6lGit&CH6|P9aln-g<p -V8&pyA,~` CH`)S4%ƃ~𢇲+6xa kf$Aia$+65(Mi"LZDP6"Z9x4.fBBpΛN݆O jvPqR=HR%krMpk̀HlzI2O-TтLm+nvAN;_I2ae:o:$<=&H %,YnȜai -DFn(BAԄ S sQN(FY9J}vFiʫGn`n|PRN)Jtѩ0c1gcGiZc4M~Koi"Br:!!e B5 ,7lp.)E3F_6SŦ4S>%o:a%TfHQ8f0%EjHӗ؏ +4z˙ηlzɝ!>o9)FO^DO)255a9%f;9Eh ґ\(mق+VrGQ2vGil~U3vIQuUi,.5CtF 笹3\9c)an~ȖM3v+N|Ob +eJ5@ENT`Fʞ]֓L6_Tf,ה)u8g謩.7= 1 ')a`s3JuP\mt!+.rG;)F8 #p[؀NՒtC9Jw;asU.s$i$uy4maGiBBO9(Z=d gt9hBLTi aS 4xPϙAF>p!dd\Yb= )W4!Sc|):P(3rX+BY\ĵU|TS|ڐ1t|JQ3_VIB{Z1Y"T%; #(ZEN0[1 -;1ʪ -u$MBȐ11C)Ji씢f쒦71zBC\Au=]!*YBY34vKrhKP%5)FlTx˟"5v;:r)@f&\chf LՊϩVܰ0)ZIk5\%M\AP#XMN0=  2enKXʣ3tAZSU JB/1ʣ3ĈōlxL0p,ZQ #TF+#' |WЊ)Rf3NYdELS3/1 (hDfl~N5@M%4䊍i2RzxT"#h'XBN(0!dʫ$!|XgPb"+Ebu%|̄ЗSk L dT*dBH-TmaR`hţ) #8BHh0(ddRSl<'Lgb -kRvXɮ!IPB`B ~hA'!"jvݎ48HȰ!'Z?N'XBO+$LHA)API%Z@ ?:x1*aAx,3K Wo"dņjūfl$*;FiIorSp !SxJOoفL&hxJLju+>ytGQ#)(ړqgg\[)>s#vKZu謖UŎ04wKznH|юRAhAfV/-KhzɓIE >U^eʫQVm)FO,.sS:҃1Zt5#:[9r )U 3;Fs$ivOXh- ٰ)E^JhzN&hzN"TCL*6L0M|+Ϯ8uy(VC& Čo>Y`? -P.68%>KČO 6a4%)й0Sv#BO|4AI-C#hfjd}01f/ D R{7)( -h2H EHTDC@q*aAp !ahEC>ܰL* 'TO endstream endobj 102 0 obj <>stream -!dFX-}L#!V=B~\@`pjXVJHhxzK2ʃAjj& ZPR}GP`I=})E'.s`Ӄ׎ )0P2AK G hrQpZRp%On  -K v ?[6asCt莠ZYC+>]lKϩDi3d6yt}ՈИ3s",քlrF)VqDDT"h -y!Ma!Eshn'tߺkΘp14&V|K%[pCL4jaH!'d||+MOG36dअ% N^X,jU=;` D@A < 1@FR\fL812ԃL"%ĄzJb~E詃 - J.Jd' p٪ '\<@Td4 iDMd -X*T8!ă!%jB!r*2zzH -hi[`=NZ='3EH3EO(lٯYs5Y`?gH`HfD #(yAct'Ϯ%3Mp-)MX<(gWpC H))EDq/a[` !_nz̜ rnK711a1KZCɒ׏.L)Zd1 -FK/nDP.JZЃ W7S<r-nƆ -X

;#4&1S2BfIS#) F0;9Ĩ.g(]1mjM.(E!Zp-W|+ђ%sjՄ69|+ 39jGM(Zoy1rKQ O%eYv 5o AxJlv IՌ`9s|fB;#U+6[*)Mu77Ȓѹ;No Bv>eavClc|142SpN1z"z*y!"KLl͎ >o9cTϮu؏HT )5*]xN0\p6]`&|~E - 3`*Zy!E_L1>[lٚMOZdK̷<é 1Q`5B`SRA#*pQLa ,Zq:-lBCb;";g 4#47GiFh0QDf&Ub)%\Mz7 'ޓKG >eNJ~M-[*;:)Ϯ8u8M~ ͧQjGqنpK%i v>ab¦j6nǩ.w4;;UTc 2{rGj4E=f3r|닛arf;Zsu&Tj& -:d xxV< W\e7sC~L$ QTTli47G lu͎Z^E -bxY7a2.o%h# -Ώ -:IR9IRv~Huَ&*<BP31 v-)B5Ԅ6e$MUq\}tM0K]ə3tJb$`Pc!w:cT3|IP=AvgMFێ#P! Ƶ-ـF4]фY -&k5Sz2`/nʛm )MSN3? ^ٍ0#( -U4C&u9CT̗ -:cl5t *d=V~n?oi*7pCNxtSPAu:Jl Gk f\u`n -(!"tn~O/ LiB\zIRDN# -lm!#h5 1DF\n(8 -"TCkD˗Xp;:'p튘1f(  CF5~%6:X~lvBHd)C!Ud=pG,ct W!naK 4xR ,%MXFZnP)f;zY:%Mk&\U -'ist&&tĆ̘o9G)*;Fa5zW;Jij?' -Vِv5vOqUa'ieTX0E;\*$p BPw긖@s$m:QXæ -;h'ȋpٔ-q]͊MٓUϏ(x|LOI12y,@rP\ytG3hE*c^JМmi!IS7ITC3;;ZS:U ӄ{ƸsĄq3"5re -\Qb=rC) > -1~ΘZTɄ{,?FHLO)-єnݎ:KRMi2YՌ\8݄M(k (25> EhIQ,/aS%l̚o9*ZyY(]PZM(eـN"h0sh*iݒ'44ZBQaK#i%'^+-ʚut8m,d= 3f[X9%ad@ G|TVo&S!$ V(Yh:i*Zj*r E)pyلf %.:hhBhʋ !0vQD[-o;DMHBQl厤yA !V@L'/Nϒ׏pM"ZH ! P~8p-Wnx$J N^EEv:cd=>bƨ 79rõWuٖ0rKQq%!UZ%͌5 -Wl')O;J(IKP &kݐ'$AuasF\̆NZ!ҋv|f>jI IґmلMN)*&6\rG -:I EgAytGPbW_ -&G].)5yvF' !RbUuR#tp.rC)>kjC ѹ#dəsN+ƎqyAiz-W+6lAL0^a&\aE$dM!4%Js)th=awJ.IESffFL5?SEIY!R؄fnEO5vNP%UZ5Mй2r,Qt8Іq1 - +^f re|莢+8Z_xP*0^2FSaFN(a| -u>@˗3h5abgM+4 /PFSN~/eˌ(Y*JRt#)6EL`ʍ !d$`xM- !0Ngpat&|f |1]fE`DN,2#eT`R/,} "#(5) T|NfAO&`5yQArP2?CX`?fo 1^r'nHК#hJF\KT$qՒ<(Ϯ*$Mw9C)͌}Պ+v#T>!:sf;BEIq}юў#4v ' 1"68&zЕWpEr)Ig씤4t4t'ZBBhS 2g⌝:c+ \f$ -9JkCej+!&/)3FY"U+V4*!II17?d wdHѹŽsCtf?&\G!?bC>gL(UŎّ4S\yx|\p3FQ\<N -2a`Di*f1!sE*[9r *}x~P2]/#=yXRµ).U2W2aCi3Jop#Hy2bdd&gĜ;0z˚ "JxQ젅P1)]HaI͎ jC|v;`p%KE CZd$ d7R1a V(UɎRT,iz!Ber3Rv= 5a04qAx %s_4Ia!TE :mp?hWPDXa -פGjrF 2"(`=Ȇ:z /)-[pєnو7v ?CE I%Fei*6,!̩S8x-49R^3V|KYNQrU*S2%60SCS7JZBC^xO3!NNɃٔ Gd#FT~JYc8+Zgζt$S\S7BeLlȬc|clQYcјӤƗ<1c\srI^ - ->B'/5ϩBg8be56Gwui]QZ&79V6_E;JosGwrGNpClv -MGAKEUC#&w;҆B9V7bhENr@&(/!5!3>k  oNU(* !̈zNzzO(eqW|-M\AH Ma$I` D >GTh F -V6`6#E+B]`B&LlT͆Ϙo9CxD7$+| G 褩\8MzINj3M|Ċqڃt eqS J ' %gXЄVf?Jj=^; (X& -=ħlG)ALaـOYQ2cv@+k EBzXI?PB B 郗!Nmp' ̗T5haweGX?O+lzNXωbC-`HRjp,:ǓX\P-r!Ct=ȀKnM ^lCP.4)AP($ #rH"r:8 -@@`f9w?ʌ}~k4>cF|wGN۞>]wq ۍ׼|&>`jp;x~ ww ǽG= o: gb -s" [6P:(G&L*,%w/~ 2aXAI͕Qbyf`W}#B*=ORn$EّZ{՝˟}ڿc -um7"k ;A1qcbOǿTPEp( Pok$ SUk.&4#t#Iũ}>3,D#ϞԾ>1P#E pq 8 D %랡/$ 18#1F:t2#kɔUr]q?u>f*fcO*!5YE'Y<$rF4b@,Z b|ȉ3Ln,yt¢|͉ο=0>ccJ@zW@DԴ% -:Xu}JjzU=B5U"u0ҝEq . ͣZqhG/{'dJd;9D+/p z~?XX Y )!2l -YaDPKH@3#3 - :YB#Bϱn/%\=D3 d-rxزGoFHh ^W4')u=2YFlj4E]&W|9&ũ)#o0҃?D#1x*pF[֞bΣ*&fmq&<ѱ?K6Ÿ]ib~9G70*0ƙtTvVrR.c?! 樧V"eP%*!;ȎĨ*RgIL5 b*u2 JHkp[T^zP"BsԇДU bwH9bpÑ'x& YKM:%{5W׸]!pTôrDPp큋C'$xӈc8Jpb}|s EEd萛D9^T8*]fʙVäAt$Bj 'CbqؤKj!@}0j0VJ -cQn I%9|.Rp֒Sj- %K)Oi4ܔѩ#ބ! \YEh+/WƏ~ibq%,MӺ͝H(ϲyQ9B tk걪PK>VaAy4hZKߴs=<& }G*cL$%l;y;K ZM 1ttHIl\}wuSb.-Ѽ|f$gY꾎UiSaeb.4ȇFZV2%*K(!24L݈] -_P4i,9zW}ޓ7ghǐmv ԝY;jpuPU>O.#D3ovdbdʸStPޙR*UDf; VS0Yz--7 BLD=lڤ\'ҷ1D 3SsF`1GSLWËzu[lsE<7NFRnvK3SQ+ȉ/"X Qo#R kTC&p/&C<74K*YEBxX=,0W~d=e./a+u<&{*f/w?gYA+ } -z'޺AOL%{[ArߢYGNH 5(ǹdOn '}} ncK'+~x!ٟ[ -ߪ51~s-IAR LD -n/Շ=`苼!|l̍bb_ݶO@q^4~͇Y,F(gw$;* ARsX -s)u]xН6cDc_?Ӡ=Y}PJJл -35qnG[f%߀A$\^ a:&4n~rv!Z{a_سwKm,CTzrM@hS7Vevz5DR?B$H" *4WQ9l8YM,o.!z@5l]MnJIV|PK8e4Xکm@=dR#fڰAvwqI1ӂm@{cZϝAŨEfn04# 35Y];Zg\I&҅Ĵ}PC?E`A 昱^aSJ㞆\{h֗Sv3GN']L nloq2ѵy2/_BMH鳀\&yb;};]$vyYRI|mߑ= [ Cw{@¼:҇ÝІ1[JBs}zX*cI#Q5%`"̻G |pg}03ٽeBLu\ $呖WTuv*Ί% > -S-."x-lZ)Y^cFY;nee,/]yO\~ dMꤰIs,:L(4AN5_C q,l1aYG+^p֭ƃqelD V8b&4!Ÿ3YQk *A~/&hTN-8F 樁Lwm2e}FT\/PyahUtQGQTF85X-^_L۲_p4( ]_*[E-] FҎ[%Jל1RU31uu{|BŢ1>Nj6yrOrJdhRbNp`?fWXDGtC&E}eY. -H0~,wn#0ʘŻ+ZW"~ y_p^/^ȟzMH{rB=f|.&FGAV +( 3=(AmVRe?] -A35n@XT_ k'X)خ Pt]PNn-E<4}; $'@d̵@h^F{A{>Z ƚ.'\/b ̠fYj.Kj-6kuU.Gy؉ \-eDJ,@j4nd)Gf\#Q*觃M?r +0s}],r#MB]z6Rpr*iSTyl/IQ*/ )Q؄ \ܲ 7$2IWg˦yB`+L862/#F7ia -䵕TBR(i U ?@<`=2;B?@0GنJAIafWR4^X8 kbi cAxkBX - Р-&0߀;g9gTɈ悋&Wfdr: - -QҢӀynY%@8GэX -^+{Ye[h"۾7x --|J8trjpL&VK7&l{`n#‘P[zoFWw^M8\ ;Ga=sF)lMbͦ?ja UZg avdf -u8eԳ< /pTX)A]sBd -ahರE6ÀN4$"-&^1f|9*(htWv>86!mz'@BIa3in| ܒ2YvOdZƢKC"$H0eڌ=C,0S?s;.-~ߎ3~N5#@OX}Yn|[kmg4k6eGl?]=EMq$T ?N> -8^62n%AFlkCהf!^3ZؓH7X_,WV_Cet3ABЁjR*0  -%PCA$na\Ac\,6GK=28׵e~GuNe^1:^k\S&m %/t+0@1TBp^=Aр`nNwm)l][! YWu+tV%So4A/ӧC  -@r2 {ɰ,AVI(_s虙2w~%?륪מA"ďlL.ǫ^/;aF G48OuVcϥ܌uQ~ء6>5ëUFZ Oq# }=1m&C23,Ǽ2|G :4?t!} 6w\LjK/(uy4}b\ -{soUwT?%"GE&t>RB}DG -6;Lg"XIvGg^s#lJӫZj]%>s? -iujsVY*^s="8B*ؾQ0s.dے&`e.y2cDUlfՑEԘ wQ7L&SW*?M)|77.ˀQ2Ptqrk ƾD mk*Dj*Y3 gjט)ӄV zmy͊7<@s𞍔0!_rţB㩻A:m]zPB' 8ӫEClS˴yQh;@FT"8!~s#Nd2fI0wcqa]BZM)6bSbVnM-B -8a"]iİ(PDȖ>9%I(7ma vI(տ-(NfBf9FXYp>P)7Ml$:8bM̓Lql#.l^(z@*X+sGCvrgXćpmNhTu-.7~٠塿P" %r'C!jC|wJi]w/Pzp{B"[ֲhN\ q _s4DӵgZjn/COШol }^Q3?Im<X:hYr!B6EC 5VHR5%9QI);G11ip0y]h],F!w.لbR\CB5cGxtɢč=dwKhXD!(< -i{ 6F92s|IgĂ O-hQe&@2۫fChes'Sa~tt]?zUc0l50-ɯ Cy(?ʮ IlDslw1(r(ʸ N߉=BJC\(Fϭ} )/rCvN\ PdHI -ڛ(Tc#v]*Nlttja?n]r$MpGfG>dGRLvy)jGs3S S -*6A$&. @uTq\\A;x-N1y8 N,YrY2}jMBҘCn'*@X.cz]/úHĒ/*>" >vۖxzx $׻#ujkD}Fxebg*.U3kcT[>OβI@K/1ӅY;Aq8}Q‰࣫=#\P*.#|*1fw.P(1S${a+]'v;Ծ{?E2fDZ*MI{1O2 ^}}}VElL:ZaImCI9/*=f\Mz>2ez] `y7hh|o5&5\8ZYasteTphܑ̥ nLB(DOԟFݖ>c,I+*"vgJՇCx1\"*\g$al@EbSze/r&!KnKO2ƍcv (OpKi(͏^z?) wZ*>d!}~=؝877+i/ICw8 5e9>taB3Mu^и 06'71fx[K͟$"K4z匳ak0W(H8 REY1-ޙRZykP0hvaS"*o■|?V%x7Z*ed- 1v& ˂g,p),Ǥu|ܣ dYZj}0=lkԓ"Qt,S <8Ja|aΈKoi.)0'+B/Hk L _a61:&1QCkj@Ciқ9rͣ 06e;b*8rrcsfĽ6Ɔ:kXbPzWm_H+X_aQyd5.(HRg|n&6V6{f<{|VlnYqx$Ft̺LkB U<{U&cw?PMcۖq0~8Br$g#63JY -SC<@6?{R+r|0 ~5k?3qQr0O&W\zezוʢb*SKXbU@|3oV1 KXX,C|_}| w}A<_B,13,ӓ+286 wOcT[@ALQenԈϮA|LVLZ; @@K贁SjYR޽¸8ަA~7f%.l.p-d z;:AoT:mԵvW^(:%.u_a-3/!&<Z#{YBnNwAh~+C=/v1;g ΓH -zl[K*h)55_oa7{<jy"R7܎R3/_X|ÄL]aL8Dx,fkȴCP=%2"!hFF(Y!M!kΐTh9gdjh7=KpYiVUBY*GCG-3z daKXDF<&2E!%@:lT{i/@k<\[3^4QvQSbDŽlt EbB~ ,h&T8 ި0T'( L5f\iMhDf5uu&\{& EG j VP&8IߖMBo*"Vhx? -ȾIr{\`؄V.@clcF * -onzE7ɧmtT1L bif0EҘŽ:jo/f04't}; %zRě vkʯ}L(9܎s/'(nrߤˮ |OT.bb}(g<zl; -p;;^rrBn ) H%jޑ y*N `(t@xiD:)&:FxE.}FBaV3bÑS\od()1<Vt"_[ " ak2[Ҳ -tEI -mhϰ i@֟`j*G>j 䵷A'o8E,8ݐjf\i̐[-DgmշLK}3'm|aЏ6(\!Pm9Ocm d2N@/.P`J߽ +HG~oQ zT 7[bUG 틻ۮ7Vtzɟv pMUi ߆i>rᛑ >5-~B7HBZj)H'򳙚H>V#l!ƷЦ&ob> -|a]oMxdQ5xQf'5ʷ"xY|SPUa|(0[5*@ -7sX S*8=JD-'eMkI (]nP򗂘Cz1C,*&@3\D(AO+Bۛb% "&Q]*_XAM~e#I>4.o+?wz㵧ܽuXBZ4^[ =Bbe(Uy ygf1~j >{^ƘNQ{3pY -@ыwI#W0Unr@@$n -3Q#[M(HrXPBp鑵!"GEÔ;w$Ni.?28fNEقV(GwJLq k M-߹0Kp"+Zr! i4@i&cٸ ,3B?}[PD-8Иbom0z5{q[omO7 f/jnIlT):l#czktcp.Uoi.ZB2B.rb;v7M XsyNFZ-^+N$v ^XYj$fi'8̬v~Enθ%FO &T4s]i$Z_i]}w^FhG4WT0-35R*-g_"p Y(6X(5 EnM?5I CɘI=u-|P^R{c^_ 怛kcŬ=J*zSQJV %S >}8a -fނ%V03$-i10iS19gx -3* 0"_sOp\qRW)T/` a~aFgfJjqR_~CK領:s岿eaPsukL>pPIlfũA2LT]Qa[-Z>cŬC&QNoB*lÍl!3 0dESP ][465i#Zw|WLIeI(({}T5B#}|0Y4~Y>/pS.-k&5Zumj96Zkϵ<rM=42)P36H`UF -8ڇAP,7y={@!MFu  '?yEՄ -fׯiN{ړn9;m ʁ œ4MB!&شLH1M RS{Q}y] 6x߲I{w_8K ]1a>χA&#pYAޏbeppyخs8] (BE0/ 6CG5k :ڸ#lS%N(L O L&B {afnMJwtǥ - Ma4ؠNKU==Z_8bU ϟ;CN8L*/ nXn8c"60\ҟǘ>/-\<.ev5v |m.Jc -le J$5eEҢ/QeW \sGCh< ʃL$Q"T 1\.&Vs7Sg6"W "aR>5e*XAd)@Sw,|E=&C퇓9qmLdh6cVZ^6S -PRARFŘ HKE1ӟ:S^BSG9B?U*Tc2v"WU!|Afp` -xZh%]3pD -ne:ZWm`P xLO zW*xEoJ^8!vjE5XXM NYpw[1-8-}![}ZpkL:#P,NnʱHA7|c x|"sG}7O{ah^_a.n5(KLy˱w~ tP0!Sx/o+/~wc3nh́+~|KDi9OhLe3|wr w1YgPQʐb{he- WkC9/sn.X9/U КiAgkR -[ 1#?Y1.`d>c^H1YW z=je*XFX$x&4&8N:ㄟ|7Y&Fަߩwalg7UqO@xHllE3\'`뮮NɰUȑ0%A)Gٵ0ttwȥDd{&4b+gmL5e `D;6LZ1^SjAoTÅ/W/waFoO`WaA$LB'6{23)OgKe_ ؟ꢭ ]~!6 -NIjwRrz/eaG耋66Bth#| Y%A$>Y*WC͡2U#Ɖx }Iu1nEh)MA# *v &b*kQa ->[=Au }iadnB*a9/.0Rm.=σZ2`{Ϟd2 fYYQ.< GEz9[Wڶ$,#L96ońXI ^w;V &G?*_#m&27VI? ~X{qSiHU#wF#J$" .W<h;VdnEesTPɉ\r:Ϳ19<-ltfuUIdε1 nNd DS{j٥ͯRNqbص(S8 rtsA>i (ϑB_iU푅]L.Um2Q8&RxϸċQΦyv0n*d֭Bx,E$BPVCXbyJ[V_8{!\W bqMԍa>h,tْj=:vUlvsQ<.sMlaK+7gr@\ȱ(y8q90W 'DHñYI '%)8!Ϲ;~ߎwMd#~o[kSv#Vۑ#"8MWě]PFa&"{{Bx4Lfx˓׬ -PEؗ%1cY~ BU:,)J/C No&}b*[wfB ӵ)4p\LD/$[.9eb}dZvQP@^tw xf~WbZ'=?IX%G^B9چSy~'#'<:HD,2Dµ`&Hա"T=`ZT /[ H\hQ1s#C/餦>zPb`v| -&/_Xb']M _Fa{π(dc]=T#8 hh(KPJ ҝ-<puƉZei z;֬~Xl="ᚍ^)j׹*IZkՉwWGӒzMOh`f5{@QIqH8q"0Z>^t"ow)jwn -+%52F77:u V,st2Ǯ_&x~EIy!Ed(\:\C\"ԃ=sAsPA/ik]d R^>s^J|!(XKS玅؊z˶ [J&us>&=؏P /"vDj>){%wEE;F/(nULtc,~oP9'R6]rzRi |dĢzݹW,WZI\졳Bsr +Ià|*DR`k-zi -=ˁe7GWGKͳ6F 3ƊJ)tp92ܶuoAbc򗡛 rr*gTd[";[y$<(‡&#ok޿JR@)y=ٵC揪cTukX@^bJfl)2x -%PBS[4l%ʺn©6[u̟ 8$)μ^[c U)A ;FPrTRch~50JgS3@56W߮D`o@ZP V -T(*9àè*#,4;K?H)kIp^qܦcfWMdeYXl<]`^[UYg6Xԩ.-hu/N|H*MAGT}G 5DgC4 RAv&f芒["S1"&b!S؆p'<4 -]+SJ >WxUmz[h@bC#4| WӴi{h@"gPT<LELRnyꖧ.Pm–ɞ㇜PHluCoݚ]{=ccH-uT%ـښOE%QVs~\%f- ָ {)>6a=ayRdu2"'vɭViqhja$S`I -lWˏpW,Nń'[=-rw4x!6P+V+ÐyA c׾J;x81߶a -0-ҙ/TʤBX dmϓ!V~;,POZu@1eΐGtV䛒tЂ?\( q.Й[k%Oi,ԛmey'vK M׊NLéC< Na< -`J- 9_}{^OTBvt?f?3a'֊ɿc)tpr`_ZFd7n\[ 9;^]n %1tkAH)X+kL%){hΎr4# nr- -Э\6#}_ʯܙa"PW-B*JBc^]%*wKXb@@rrQz<+!N[ 9_9J)|?{}QeG{`Ûsם\\cQq6f{ۅ3Ug@^NeXu2j#Lx0!¥c4UNs/QwMS>[%lZ ~3=qy]]Q _LTͥ%<{h jFVФ6ƗpEI~l;ϡB5BnIX;X[p9$C\?\UiAB*1% -sd ֒bcq;H.ee{0ܠb0IiyfpNmstÄUDRoeW% 12J'G[DcfKw=BrS,'tci7isDȟ" $/_Vi͕<:~iϜ - F\eSiؾF}F[v*P 8ϘO5e=c8\ -gڥRTXV6InmDt :\ǽH2Bv)0joOb\ #'9*:Y|xv݂x)kw!Eju|f]XjvN#r5uGu;ia ;d^]؊Fo_01aއreI2P懄=Yԕ;;u#_ObaIJ/bAQySA|aŽT{sqI|8W\$phG=&kGc+ꤒ+EP;bg.Uꐮ/;юV &]SW7IEtRq~<k[$1'D1 &Fі&QGѮL\(5+NtLz ڟ誣NSj5j[9oseGjo..%ǵeS)x@P6W}'v !v,~T1i[ӷ®l![&Qشҹ2/Jft {ҁ6dA. bO *C:SCce=brL@^~]d2[JkkZ?^A+_МW)'z)Z%/BGfd҉ R"U>"_19QF=мL~ -)c2L*5mL.+eV2L7t n&$66įg.7xU|& -(_Hj\Y bis]3qТ#}ɵ9fɋ˂a` ӾCO]^DՔB!y0~Mu9 {xu˥ú&9BohGoq.uL'4dHrwmz)B}@ T :3S-,ʆ˺ =VFAtҬ `O9<zrMnF3z k3G>˜HwYiI< -27?aƇ砎WT .='ٰ;vĹ\۴ڇWlܻ}`1}P 2xM9~3`ItmtOZK}N<[XY:1<"f0=`l[j ov/֋niH#\y3jF$1b'#8=ƍǃY5Hy9F65O`[l؝кA"!lØX#ڌf3}dbHnc=a'`F˵<W6rEϣ&݈zPvX-l*C[yq|&MUU2B+ 2OD4 -U=5XBہD]ۓ}n J2 uҰXzoP;K{.xhCkbo:#ƭonyn|^VRUaݎk$Nq)XWUp bk2` `'n'7|7au2@O< n6+RgOrvlp馥 - tKہ[is'UQw-2L#?6*H'XbW)5,Kě9 =c]s2d%۞OK}xG D(rY>\[NO)ZuUVfA{8-O.*a6`Vd% ^kf20uqZ{rmWjIA&Vq: v'l>&TuN4oF}&k/cЭ'I87pۋC>/9 h q -QR*zyy#eiqmU֚^C|ƓbF5F C 0vnPfmea2F჻oA6`eN*UX:'9pzO]>Me={Xzlj'8#OW~@/~p/)LpzR,)B-\=}uk -^)`\=]ZLDޟ=O'7M?O35dEw7Up<\mH򽉔BiLj2Er]F8gh,b$):3-܌NlG]~|nFKXe>@1T?u%c%ܧa- 1c,͖} -+Nu;z]CzA-Tn/$4&D/'q.m099=י"J4T냴oGLҲ29Wq89(btft{lͰHvLAp;Kޢ+q&N!GW39$P<a8w5딈#fY'}Xvh>LШ:Y)СN)(txj)e:jE-DQ烙z̖,o\K|ssa-O2c`XVy@" NmT Ѕӗc}$ن:K gؘ2'x2ig&den! eE" kBgl)tЍJlz=xme-SxH% -J a0HwÕD(.#v7~o1Ij:!Tl?X*[V:-#$5-ڎЩ8\̰tEZ϶e?%l\魦2Z7i Ě<2rS[>ldFu8wݦVvX/7:42|P0X%;\C,6z.zΑ mpc?MqX&t%8>'Sr_4B`Y)EW\g\D6]ty,MkKBHYQBW y} ޡED*'ΠEqNVxNIElӽ93r?[ר96ܵg17gu8j5F~s^LOMi*W+$t -bYC7T8g]>X>*> `yoʈ~)w6)GG~r] +V ϩ'S5!:O3Zvjjǭ~zdf]JzVv?]&9γ+x%#i~$6O6T=N2~Z6w,(~l 4ݵD`bY=Rsy|2{ohL9U !*r okM$4pB}{ĖRzG;d[^Q`7Iь7!be8blw&|rNPXH11QpD1~ըGK_ljU)fck1F |-!r+1HW=WQfT9][cXd<duj#uK O-Ki?L?݉eY7U(bjl[!չ q p Q{t6'W}IahHHm9@ݹ*Z(3 3Si%z\m/~^mG+_5*>LoscN=e{`jԦflGZ.8f-٪|٪MjUSރ[Wjv;V<ܤ8@whʎê#kV*V_i~`b:]*߱Lbu$nZo42G=t{uyo#VKm"42>zd a)ϭWnL˃H_j`rkܤבԚ41O]z4rtx.,2!个4I$繖ab#tcmy r7>$g:wZb=DWsZ#!Dֱ}S Yo<`o-L7%6' -0F qFQ~dr[~r6ރC/7+HԢ2Y-7fr{xT_sPǘE)$#jBX5fy({~bb?_nVvH}c=flH[e9=#EPb(+ LjnRlTR\=қ_:ׯP *TXS5v7Uóq#:E&1E.A.ϓZtR\3>ioGm=PT}Y9E87 C5"K1u:ElD9ѕQu҂v)IWhb߽8uA'G $1&1$-W#a2LPf Hh7u+UP8Qc=;ϹzpV_4ј~]l~qz%'hɌ?6uRfȩL!S+KZ/%H s:q6*5Uq+Cav,Gb:׻&Ӊ-冮9gܧlrMuauό|RUkTzh]L - ]q!2k~ c;,z`nD.M"ߛܰ}+RiɁPTiY/jOQT -IyjdZǰ(.$y2r.xXÁ1[ʼn$%4JD2iu~<߯״?W{FH+-Nx MݚLr -^\rx749 ~6? -4x>$QxDt hQ6 lJ1"'4U -(5Kdӑ۱ vi@X87B2Jx);bx9nf;1BOG ::G;;=iB2Ze"2Xv@.t6mzIe'% "D'e"Ep@ 7x'9bx1)=DC -ŨgWJǙ-i~p {=E_r=UQՊS\[,#ВW" &x#/Hx,Nf Il81uj ]?t-{aoΣ2ƒ ¨6 <"%fJhx8f` 0Ёw" ދ@jiSi*B Ći8.\{#jjXhe 0ej0!ûA!x TKaB$(AOL(JAhVHZs:ƘvɔN_7D*=tȮ<V boh6 x|D@ )x\;`QC&ER  i4r*4-w~UHq+n2ɕTXf?[LOE_},V mE%eUgQ*DՉ#e!=BLzvn1W~QPy4\,LÐa3`A< PZ8H;BAK_ԆնJizh,gI[#̀!$ $x2@`!^ h5H x8ULQsJ=*+qfig|.cJ\J'љLH~x0] ރ(hG!Bޅ -)x0k@^ (x)Rb( r,.H.yr)/6?Z{iѻŶ~f=1/Jo d9pgC  -$x 4[@ 'x+VX`ŠP QjX墱j0Nsk$. t wCYf@/  )< F,!,K  NVXigb /Bu!vPrLsL'D!rD)ށH gb:,DAx$P:,TS$MR!@@$pQP.FvfB#?'Vˇ  j!PyJN*\x @)(rp0Zx)*H|Nׯ D/$ %V + g -5Jgs!D ".ykoDs@  &DЀނ PC< ^$P8+qOIgBdpCTr.c^q! g5㏢x5%# -/2$(@< -J0A% l"@ s-jx*&HJA1jEɬ#aᄦ}h=ĦYmi!ixs!π0,`k^<D({A/B)Px+bl!`y92ZcRuf2TA)#Km1`A `)  G - )xLjjr4"6@"}LDٍzcqbuTq,71lJ'P1Ɒ[A`@o< -RP`xk†b -OBC' D DΣɕj,Պ R)Mż&E /x -0<Ox.i0£0OxL0ckٌUkn#YcicH"۱lR T&Vx\at@d(!HYFT<~ǩ Dw6D1)B$fA:8oݳzd$}Ыl@y6 pÇ<*fx"7~<(>fUguv㸵v'Es}Vڄ*B]gDfWŴbә :Rev9amGٜ{/ժ23ō߉1e&tzQEHxMou,t$rdĉ%W!rDڌY=4Ə1RcPR$^6?1>7I~K^u>.;'57&yKVuyɛ/bqK - !QmBszߋTX]ڶIŐ~%rZEaOQ~L8yObǢ= G qbr K͟,Irނي.DL^jmF1L.L0~Wն "Q~GQĦVJ9-Xmc轊_ -9&5 4Z:h8,U6S4lT\gkvfR#:id"d"9r߂JZ1~ +?cՆch>$ JcxVJ}G[lۍ Rډv SD~"zSmbk>MQyFXIJh} i,(#'Fh2 g >sPHt*Hix4Jm ^#IuՊasv|8,hZ VUS%>#>zDZQ1 5=BYUWr/M/>:WoI|r%b,CAе~Z䮻qbbvf̚8m\FZ̿5Bk^8O3ݩ=׍Ԯsil60,2͢@+X6aZS`lGK7fwi(x%DXӠnFknBS`h,EPVU硆LJlz_,Jq\VVBXwzߐtzOlm 4 7Nd#/Qlj{& -SQB8v阾i8L8p"KfK##[`wx}p ~ ߜ);,18$u?d5˹@T֗u@Yo]|wI,ُR -xJ*aS1:+3`YzL,d-S-*2cQO}:ґ)ּ_axXRCl :10qmM]eB;FbY(ױZ[JkI;ivш[0%mR~i]q'.~҇쀗ԫDzu{Q:Q2ZT)8d˽jz i,4Qk1Pi8X:iK?e7y^Hf`n[]tx/d%ٱ=RŐ|5g~d[:`%CB+.ĖMJ+O&Z<Cx Zoj%^NesCE=>n אΧu$,wL AU I(kڏH8IKMẼ[E'd%Ay|"ֳBRi)혊ɐG17]3dKd^Vۉ,#>t-F= "-4Nd -Ma"Z#!Xd=2n8~p~ff{BP~1Fw.E 5Jif99ΓS/8bɃVJ1@ӱ|4K6'J7嗎bȇ̒E%I/K̚(ED\fܖބXc5SgZ0$Ho(2La1U -\f0*]]sјw ǩ$o1aJ3)pi?ϲMB) XBH6H -Ij)aR*`Q2{eq4\AYmlzT `$~Qf:.͕mf.Jê4l?Qk1/)Omkל%eyO$z#e_ے4v6F -v+n;δ9Xza_BtvJ*% .'nmB?yku;hzgZbqAߡ,ixMujRr>4 gԊڰc.ͯ -Y`2+5wȱRAzQ$?дŐ9DRl_0 ~0%R;ByW$KkNY~G`wBVXs9]CYg8M8՛PCa'LMX,oS֯ b+8!* l0K1~~W1&Eh 0Lp>QlMOC)eVʰ)DZ $=Enbr|-y~)4Աᖼ;?A("#%0'~~2x']њs^yc[1,Itn8[r"p!)>P'Y1Ik4Zsx5/-E*س}ˑRC"kjvE,txDuބT܅pjbbHI8.-K1AhY/#usF0#XFЇ#P/r0jL6Zx 6X2 -9YÏ,ht)z -_w^c}#AzJ]!3/I.eVE*Fp-Co ނ#mS -̆ѣY2ȰK Jϥ}^,:Ig9I*7F/J2ރWa-5 % "]gvC#(i/-lh 5r!9ìxH2~`znI1,E-j"hZan.\*7 P>JbhK4=mbg9C2sRB(v{d~ka0V?1)3ʂOirٚy"zzQpD`{̲'R3AFPn'~Tr 1Kn;Ym n:XXB/[.ddb۠u@L'W7[H7,y(m~5Q0̮CN6efd㙿$'R:Њހu͠$+-Yu9]~dE#E)Q&EI:NgҞ Y1T%WE1)X܍b~ص@v/Trw Kvf^!R]K)BvՀcf[8bWoz[ADQ2aW"l /lF5i(}]$\ϔF*`c5SѶGl`< ,ŐV[Yr/Uknxl -7H<"B,g|GJ)!W0"tKL5M Agꬆ1kiY1h P(Mf5VyxOd$λnp,$z&,N 4WĂpyʬBď܆P9i8 ~߶#u;`U& ,.Fpnr 9@4ԙ+E.'2W&$3F0Pjf6,P)1^O}(ـU*5,He Yap'Nh;|2LDkNA&*KT4bZYnDb4Y @Y905S1`cbaxg.:6.W5{*1fW2Wr'?Êg69Wa|GyVԼl:'!.[j⦚!', -;@v,6AwQ~ 5Th4v|U!Ԣ+RM0C92V^UȰK!ԪUm7R|iݡT|,ˉ 3o1Kik$EkbePB=+qJI"#jgɌuWU@I@Kl!'iA]F}bhKy2~ `r4N-(9z`"Qv XxR0`35@S=bBsAT%7Z{֥EeBn()R`LA5/TF )͂ΑY$vNtgP+$4#<S[BLS{ŒSyVM*Q\t;S "r2 &7L5ktw4d/Ht^͔$wX. Z bw.ĖBW>G ](IpQ&4 9Lq >Ip"X=Fk"F`dTc(L7!(*(IQzxVhT?9 rC5Ak D]u ;LqA,yCŦ3Nڇ7>; !pF x*Ӥj1obfh@a|܇YS`ha Շm '@=@p ?H'&W2JdUfe .-'8 ?,UqBTi*Ukz:@rnh1:?)* >@n<5Qf|(M\D ћUSZ&E8M B۳ u84 -4Kq -2PjcZp6 Ha<.B]$ʰ.Qs%4p؎%V܈ kj'1VY"13".$-BMp/S8z zy-bzZ -aTNl"d6H u[*MJ2CAu:"|ODZs.FhDVk20CѺ=쾥]E]uD^. `ڊ_ә ᔜP7 {gI;51Lo#=a §-]Dϕ[ -_fy`=dCE E:ְӄfێ scz@AT2?i/0΂n[BT&;G](z4 -HRU12cQb{=q-Upf "(2Gd\tNaWd uwP3~3Yq`[V!t"H1bKYv]4Zn|Go BTb6ZvmDۉ+׽g*ޓ8-KnɪRn7\AW 5IX_zc^PdXiQB̖RY \ kyx-b$^PR Ca!'2BAfz(()s^~вT&!\[GRZc9NY5˱8Wm`>x nh4]Q 9 @PmeyD|CNTŐTZJ&WcbA8c~ .ǐ?PvHՌ B!a+I){q0vhj_V\ Xa :Gf:_J2CKV'MaE-egwDSvT NZ(fd0u;QqBYt.Ћ_Q(rE] ejY@9SH`{/zcVAJ}+6.KedzEJb} o v8΁Y B}A',OT|$}ñvՉฑeewib*8Kvp*J0~G:f:B.,MQCOV[ - .@Oռ1 -A §  B m"JM&"BE-; !6:U =Lg/Uj5Zs'x'-Z`s`T&c5~p}l(%_C րZ[zN;)yZ0jN%06v!`1R`cDo$ֲ%/gC}Ƈ|Nng4K1^0u 7J1Y2>Us?,7?q.(?4]Fg@ji7Zk:X=E .EOXM1!/:/M_{Ӛ'Ȱ\czDYm/Yr8)3 v4u&F1?R@Ti"D^tY.8U VuJ"s1%}SAb’  q &?I&VQE^7!腿1§ egˆCЫ0Z<-=\20WFTu20 Ua24o̒I}OiAR4ye(zz"zTjvhy"n}e 0s&oZEAJא6GK^M,}%{Xz(t}wc0}Wg%ㄶGFҊmD5]=2]xǙ@qF,祏ᚏ y=dQHVڌXwŸqS`dEA}`#% -;Eo(z6β7=@ *yBA% -mCVCԚFq % ΏzD]41VX;Wi+~Zm/>yR<WkW1$vèEWb{1j{1(J3/Otl,R3!AβL=$bRː!Ld^TEǁ1J3_DU1ԭ q:@q刞YQ]/91LYr\Y}-W{k_tAb#ዊ}OaM]Oaoq$|Qjl/6cXUG }d(γq@MN`as2Xn)~Xr=*5C:79Mb=:igm'/,N_B(ޓl.IuMjB|u -GN@v~0Zv4sA+9R4kBf y_ ^gsY5$K'G1G omC^1|7):MH{sFYzM_.R]&4$H}Kc[AY#D0 '[ȎTwY8e P/ W2|癎Dֱ>sk4R]dLN8mqg?r2 @(5a I?j9.ȮRbTGGcKe4j/Sj8]m.3&hv'ڝNmg a,ʲ?s7NBP 3eY]MrAfJ1w91tܱM#iyuz5˱9xK`M~x#(Xců~ynǙ[MN1~,t` cPe~A9.%'tY,1 ,rD("4- {9fAzjPʮcZˀ0gClldNds,uDxUtE_I 5D}4m$=?wARcs&DsgIVcXӭ{f,yIQQ.F5 #(D耞dw)ɰ|3$؎r a鹕br4c} -ak<'#UGR SoI} R=gr ˻^leb ӓ#9ƏAp?J̗A%/^ZQl/'n)D/K4|x/#}C1c FzG8r٦>Cյ!+ܮiuQvgi~P fwSkZ|ՑڝSVI'U8ɀu*CXf@UxUMLSLD(w9A71zvg riEjUan>O=(mw~3:_2b!tF[]$$v6]OyfW΅`m h@Uݒdi}N|El@q!L dj= :帘.T @D Bu=Ϥ=k^wAi 3$ۮFAv)\HZĜ 5τ,u@Na-$ئ)\d8uR:ΥCqPjF4 ?hXQjBP`98'R$-Ix3Hժ&TmH --2S^?f<\@aܗ!zAEz_mPLߣ!Bӄgw*펈0q;JN]g4Q}4!ڐ(#Hu!e&, Ts1@~ηq -b'm5J:Z~4iv(Z]ٞ^׀XmAq!)ezPm]2 >ꂚoQw8?m' 1@ճ;'*u.D4t1gAi?S6 XHTv.j+bmB?=iBo >H9|!Bڏ&#$$}ƅ(ƛveUnCFkBN9?Fi<КK9J~\p4N"$WrXOۅp3:k -@nL~'<𱒃q"錧dQ&AO7<4E 0x @IjC3V zI.ӱ+Ȭ\`@QpDSq+> XƱzkI:`BbR`㨕DŽ#2;M,;X=Lh^ -9Gge#ӥZu6?{+{XhUg9$-NDZK^+yVtŰmBR{Γd60MlDbJ\j(&#X|3 S:'ޠCT\^5jIJU($]W -CWҜ&Fwq~AW9L^$5:,]TvC(OglMG ׇWޅ~A䍟p1D5y\;^gkۿ EH5Pc#Z9BL}NeU3`̿WzƷ^W7nI8co8kכH1+Πm8>V %q9z79.D|D]6ʬ5m -6 Ӆg<3}QMŪ9/D=c^kI+{nkf,rdhIl?5?/NJ85o S+Nt5ef6v4m{CFỎ![MgCe7I~0jo.sNsE[1UG ůkn,ճZW{mȑ!˺]ߩ ?Nc|0N0:4ooEesQ~Z3parjTy5p(w\60ݴ~kC\lr+Ϯ:_הּmCH`, y%4­ 2moMN۩E[ \È%_1D c׈_w `,CU0>8Zr =JehcL -a*jijdl_o2p[UdNB oDb ".8ȬzуJ1ܪ|%Ǎ`΁@[uxXC=2p2So$HƐ.GfA}gk*N&5C րf >`eH}a稝5Uy֜_qz'd3Yd?ͮH]F6F Ũ)4 -fO -O/DV<0S3R=U]x/V q8hb5Yʭp ZJ{f;\9uF7iuHFi4o‡6]n|ӕ?zYHkug+%xUeRc;ހ*潸):iai}‡!HA,8 ӻf"*.Wu;QzwfO_ :sB=C͕.`kH]!@❸ad8} 6Pj;M8ZJ 7Mf?P5DW"0@bXh 7P|XE}lQ <\$+]"_N T{$*Gf>rhBD >Jn^]:Yj8ZIg%V_7@Jh?wSi~O0j6G$m8E+s8v"إi,],Ǯ6 -8[u#4N|@5.7b9?-r!aՀLiArl%YbHafn"ybz:]NjKع~ie-'H[QϢ2*mƇ\iJ'0jV]jޫi5.5|lMTG*\ b$)yHa\dX2,#ms|Hz$Od;˰g42q -;Rt |= XK[='6p/Ys7DWIf#lZ(nuajs)ExWњ%`~8/9 U__Ҙ_ bLԫmzt3(Xi[bu6\ 6Ugj`(p^iWBs~H's&/+E1HD`ݞ*$ 46ݻK+AIo Ղ"A,įF -8in瞐uW,NGY?Ca_yz[wf1*A$2BV1H%/R] ^bzI+6rb#Mm,y'jke0[o%HzcwӺưmE ƸgvRҼK .GŅFec ?27#=Y~2 XWhjVyD[:cIRbZbRM e:yVc(cAM3"ǍTƮ$6=y0~%f6I(HeRF;"2r -ۊyR$8LD\/Q/VW dr86"i{':?1lR`mku]i{yY5 !,Fe4=_<2N+Qv>e.(v)>xz!$o8(w QъꬁiA `*T;]zm^7['"$cy'!΁8EJgTvQvy6ρٽKp bV< Pv/),eki~dav&^rm)Ԗ#ͫ6Y3%$6%'ERˡZKfUS 끪b{ JBq5rUv>Y5Oi?E9ԯEkf샏*8_WM)%:azS@Jl kB %}~B02{Se`$;vbcj?Hum(ɪN~Ojj5> -LN+-D:XMӡ>9}5 -y12%IHnDjd = ~ J)8Gt6K_(5^Մ,ft"9Y3ϕZs]9(uX\u9ɊDvr]ũ38Zlzzs91nP/1ȑN~ Qڵ kY_imնܵd(fgkAˇsZƓ,N =K 5ETLA& -`*5Ns/Af=΀?ZӑT.9 -bqk%Lxҫ#5ہfh^CSu^'ZSdyVϙR:hUDCAZizNm+4=GH0sDy62E0 ,jK^AHI+.Rojw+ߋH|{L9MwT$f㘕V߉~;SSцY`:/gW܆Q3nLS>6G%Y$\A$fO!B(.< jAN(5qj`=;QGl/㝧:QraD}A9/ rph` vXr5h#EHZ)1`yR(rc΅Pw<캧-$,ȋRLob-0?Ddn519z[j ZH~rozb{.yfͺ'YoR9t\0O rY[.?/|I|WI9Q18ecS@DŽ,;AM BaʑMYBlI,A'K (]Y#l[0i+${Vgj3.E\O*yŵ\ \O+.h)PB S 6вS$qJC0bSe' -5Kб1a,H`'Y].ZLuZ~dsI]PGE -NfGKNuTV؝$,(&rP25+=o؁J+D&Cv]|gio1*wa7ss`={5\.擝f`yT<::"Ij i k< ^pQI9#ߤճe~Π]YTlzz5Qn ZۙN#2KԊѻj.ʢi4Sq).5MbeH3. <,0Ot,FK&_5Y5_AYrݾ&\?@y!5AŁms0q9ʹ>Y-+i==YҶen25@2b:q[m.QpX5Xf,Gs`9"KNʥYvѻR^F9q태ebkb5gI8Nt]PT2X 16FBYj>/܎f*HHƿ0yCSq )>U61oΒT nY 4:{p;2$ n)rUam<1:7=srݹ5w,%Ojԙ1Q1/L71^.¨mMReb|OY~هi>^&nbљ_zijS\Г=$EL ԣ4>Ms:j12WmDh *Yg8&ic=E_5"m)vˀUA~{AZOuE -Hj]g/ѮX̎%LsmRޔso\*;x%S!e{7ioxeHQ -Î "/Kr\QKk,dLe47ERہEJd8\w^z1]LnMD#xN N" -ޢ/9 >Lc Db6@%RtfEˮqTp8V^6BRASBVp$X[݇QI6 5^h$t$llo+{!YJMԆ6O4Fb0` *Sg0QN! 44m Yj(VUZtuKωdrD|>C #8^4 p7d㤮1 G5k`p-M]XME-Xg5[kt`aZk6x&k` NP[XԀ[PQxĪOYTfWͽ4"w?%V\?-v}2 W޷"B)^" $7V `rf}ǧ3>#5 7Qq"/zըh s5y)wv2Lgwi*{ n̦:Yo[2#EW &xQ:SƷ bKE(j뚐8N ~gUBȫE BJ[7ƳbShB㷑|P[ !|Z2}LHe:p[z+zh^ {y"omlCf/1g'~Tg#Glzc Qc-wM/1y[ҢFNEef s o,y%6~*h00q(r&ɞ9vIk K,lɬ6DXoz|' r:+l:ࣴN1DuvFKG)fi~Z6w1cl ݿn=51]6ϵSKY+|z_-zhb܄\ET 2Fe(Z?R kqᘰVyy,z< 9M66AⷕƋ 6Ѫ-Rh ;Mi5]7jZxMv?&cz<'bjIv}MA -6EqЙ:Sytk3QW#35SɊk9OVA z%]fW52tQ2KV'E<uؕ +Wi<^y$Iq酢m=lh5߁RŸb}$ȭ#3paJ:i߼wWI0ʀՂ"hZ]~X1hw @Cb?}F9_^rH[J=ݮ캿ݖaA~ͳ.E9i'̮8JT}U"W1: cYOz,s9L2~|DAj*{q%Py-tx.|z4`3-F;-ڏ/&xnYmuKOR nw4E\3IF4"-XjB <혅 -5=R^`zI#u z炞쾴R}J|1KM'Jƃl -Z=sʲ az{Ɛt&"9$-K)kwCRxZ;cƃ~r|u;pzWm۟Yb!ҁղ\Oj |Eo}Nlg+($d8޺ MOk-X>4 'ժ6R0ݧִN{.f[FYzɇV4_A RDe:G^4p} H5۲OTfWTvIJ:`As{]XIJ:S1?Q~/Woj̀eՎd7QH.Pm8Zqz·}>r@װ W24AXYϓ_Rh]O-GKd_f9z=TqB{&@+4(.bf´ЋRkYR+  5@j$g#Q<: ~vY=V5^z$g:zYILaA)ۯr4UanCձљ3%qai%z "/ۉ-%)l@HZ̨w[ObsFc:g'ʯ6Q#5igm9km-鴘=樖ᴭg9t r<`n'Ip[|zyJ@U1{\pcEkЁz=sLxM'4Em`m-YZtƏX>|3= 8U@ -NC]/(-;zL P|!|F߷-WWzz6JB PlV!+Xr 刲 OH^8\] -P6P-p„@A~F0<dK.$]bE0-ּX]RK|ORt+?jEY-)~Xr…DiB$0B*t`S&2,|c3G#Fx1E٦y&`t2$הb=հۅ$2#1e["HKEIE~(jt0/Ԩ?,ذ0YZ?@J#fy:#-oj?i5o`q3.: ڄ+v*$e$}HV%.;Ӽo^vۭٟ#RDݴݧ:JB;RéY_YIjږ+V|Xiޣq26HX]M_ 6Oq?z7 5Qq^ݪ:RĐgil QѲp:05-V.(R744w>Zo:aqE+ -'* g'uǔZӂAm"D6?ZrcGK1g@RdF51 u1|`>Ul%~>zv`!+9.GnoOyinGb'k$Eh]pPBdi}(As4M$fB2X㙠A8Y*0Nq؉B ٣5?IߐX>y&zߴEj8Z )HŶb^jgxߠej汰&!Fз#-WFAdf%,)9Do*m1̾ݖI{&^WND(lgzcrCm1#e~`wv\E+IRQ%\ɚ%h\h l P <dlfjd =#Kԫ^$'.!ʱ'1/Lq\J2#yYmYǎ$e,~9}OTDT7A.5lFptI5@ w`ˮ?P!#03.8|F$N2AGmb 5Io(]i?Aun^T7 q=BԞ##s)44xMu6-i]},|]XgFݷIuu2㍰FhwY3 Gi -=0&8B[E ~6f5UdX>%ȯ?_si?OwN\j[ըc΋ZcAGJmŒ1=BT}f@e=7T[a~(elR9`ٮOրR}yv,e!g`=#L;0=k9~PVeMU -/z-\)۲9[3%0:L%˭:q -9Y;r%FqlxSj?gѪ#AvEYr"׼HeYNyOSxM1H[q t^@)_ĊK衂iЉz{zr8S#*ԹDE_@F*Ix"j!P9kO͂ -MPN0Qg19в{DVĪ낦f(ewg9\t ppmbMWݪ/Ug$ZѣRpĦpdVKA >]r1S 9Z/n2ٜ\n Lض+^RY|PT='C*5r4t5/!3ʱ< cr4u34?j(}U7NE'!t >Uq@Xl.q\Tl"ᘖp"|Dn~4jOG:i Yp0Ykxd #ɮ[J2lOIvo9Xj@0~H`3FaI ߂,kcr@ϵdd}$-jTF͒m: }gB$_<լ~IZs-8%?Hz#P@27cPeo!W^ro`yu%p<@\P?UkխZ{ͮ5[l*̯fCU*->3?_N/ՙb^L)p)N .{!/]p sD:3eG&wcZIKQ(^4m*ͮ -^{}끞2JGQCMJ bG+5B"@HK@y)y-q t>XpB#>C)1RfP-gVZ)b`j0v -=EgѪ3k[ =MgכȜ l?M|;1Ŗ&4E녬;蜗8x-pz1'*bEʍ1~_1dK5O4Vy?IJh}9o"r^wf<cw蝗o,3\rJJUu_Kj䞳aSc8#Zr<ۗhtQl[Nz-r%9I/6tbs(;Ps\?Ah9 gW>b.mOH;Ob}T`ϔOyoK~QԚ(z8QѪq4Yg#{ءbK`$LŠ 0W9MtMYۍ`;MV\d^rMpE#2?I >ԋ^r/,+l T \*MV\ P,Cz$q-J1SJBrti#GyN:Yu)X]Q;tekѣiK|Hs./d>i`q*o':yF9y%`Z_q~guvC4sGiԚV,/ftO.{Ğ>LQm "9梴lwQxV[Gں)q}P<9פQ\v21Q87qc41e'$%!oQzx(t,ژES_G:4tdNG?x)n!MmḲhͿQM`g7O2$qRawC0FL욋#A>O-!H[7O|Q-J1QTj}pJ"V`r -T0Xl,pe9#mr>}v-͒fI򫮢q?R^I>stream -,g{U,f)\ -g9>>ZdfV 0-CU{"| @x/V~2Wl'ů[m;PsԶ-ð5k0p$H&I)&2La? Ff-nnG`&Yn+2r@EPM§F‡KM5ב8RW#ggU -9vIIS}3-al()F#3^$uT4zoTsb(횐Υ֫q.n@){I kJCY~1@r@}Wv_hDBtWm[l ; Y/J+.ܞPmZϢ k$r^(5QrSJ5z>04=Lyࡂ8ସp%g:nVբ^v>ϴBMYa7+N0d:`td9_O:Iz(K, 5d?@(.D(. ~zSưF<! :F -@nq-?hv".; cڍ4쮢s0S(ZP)QzXz< 0i5@S-4ǭ52Hd X5ץ(y?,P l/;p. M)v6,E~Q^l@U1cXуBk̒$y?8dXMac|8_v9 6Ujfn-|-|/܋}/_@F -n`r{@.)4]8w#I:α+=ZfP}$2*T 4Zt=`~,8Uf>Xghz^I-]cwjpi&޼7Y`8!́gh.n 8\NtW@2l*(Ʉ*0%+`G.(6> @Qz)8:5`cˠԆ EDy(r0f|s  -7Ih,Ujq1i <=(=p1бEKxr Lq+zNjYNr Ős:Y`rMqbvx`;O EI+8}ZAM2c%iAR܈)I+kx BbApgg%9? _B\UiCGk:.R8a&ɖkFp&|D-+/75#&G5KauSm p~H՜mxA'kN#ע&ӫ NT |#CqV !^V.V3Q9 嶡FNA&*HJRw$3@YY*dv#E84Xk~@0T߀3FʞCi5A%gQU b M3 -4N/7Άrm[ɮa th swVc=@%)>G⧋7۲emd9[70G,5Fk.#hWr½4x :` 9V\N'uJ;&I=A['8ڰ?*x§ !&x<(8KXLzCLJV,Yf7Zt^c~!U_Q%/4Im>V.{7cH)bq )0|mzCO)ٝkI3 c5Cɚ)l$|Sh3WO0J'"W\DHj 4Wl[m3|/ - /8D0>eX6Vr,́ - e^6"G,񪭆K.X=A'{sVAm/(Y@Y"+㥻K`w؝h[RK11r\S=wTM6#N}sLmd}LHy$9)< 05d慞eBR4Lu$AgNCB {OI.J{UBR 蹦уՆ ]@8꺅lPJD &A/Id̎Ű;!LF>2 RS+ڐzS UL]7"{B%@BQ,"HK( chLc\j&v]A -mW&s#Ńɚ{aΒ۫AYm;δ7Em}*~p+~\D/8XՖ՝tj2fI^Natb^a<NNU|DzC0!.-4 D-u=_@d~"~%o^wAQPV ם l.oiFCF`r)%PݶDZn&#'~Sh3aɎ%1l2!4evc}[D1ďď|PTGھ:r}< gF8(,.kJZ E cv7|>nZaɡꮡRSI]Ϲ$OSv0uMύJzsvwfkJ>bkPC5G)z:gY$e Ж|d ~$G/GJZ2~ -V 9͆ ů=9et?Pu$ nXa#Dc0L?[ְ1Eq: y]~И>EO>rb ^wjYբ炤 Qٙvd"Dn6H.^ 1[j(|\8lڏېc4_婶:?fLB_o\I.zm?Rm5.! 6UjjrRiMI"Dnê$GM+ 70M ٩`]fRH)Y/cȫM Tdx?c1 sA$m2͟1ܒ$5Ѱ#M)@2h(pw 6Rf:]޴|ftVJn!뙏Dmi=Q-'*Ċ?F_k,Nd -n?py_m떬_,:_Ni~ʦR2Jrt%)05M߷M巪q=1RE.leXe"He#oz<\h8/yuLV}X^fi4s>ѱt4I]  UZcw ۦ0gOR[a~b^qɩe\Fmø&46QK^tX}e ygNS?)9an4˳y5{{$X=s/J2E9K)CQE6 ;E`(J02̾y$zYrC`MGsF^2W.黦s2ÐԦA܊PnDnWH-+UKB~ʳZ3Ngyq1k ʚy_`XUv6.WV,2˛1929oI:N4 ͏tTvCsv6Ww UU.Ǡ6i$WցhsH.tMAeqॸt-B+mFk4Ho2Qp\Uۙ5]4&%U>#lc6'Y4=ӍEi{\?\$3I m+%V+5XxN3>lUq:)-IJIVa1O`PpʔˆQLmi /(;SnJ7f`E)Bk~;Ps\󜧡vMָNJJŖDʔ.0,AV)+4F~j*:ViY| |Nf|b2rs6R0* '+U@AՃɤ˔Cjݰu؊6]XNg .+JV)(%+&OaU廵IFe]dCP\c$0D!$,%.7 m -{+^]Q <-ow*rLͺz<2ӝH4̶ -ÅO]3QS(k<ĕ4ʲRkL{wX}i[c5/\hMGc}jW[&D=㗒|R9}2ew̾-( ufZbRIBi9m{=.ɋ <]^x :Do*!&a}(CbiCL%,覢*I+'jX2]\Q鹹Gߊ{y#Bs]H衎bՒ&Ն1V*rк"sMYbRUkj U᧥1)y%YM{Ƨav~SQ*QQ>LPzhDMu[_]H^J%3jo蔮nA5;lT - YZ6YU=jRVdWAEz:ZtM5UN5&qӏ* 'ED\jDZp;GX /6ÖQsqxs@ hĹZ6Z*W\OPO'HTYO%4@o5βTJ궗q%EB-%6i -x$`1A-Ul'78 0b1Gf9D"LDu>= H\0lA56Š(ojlF}=V/T)%O=lPȢJ9P5IU挮,& %Ucݢnyy Yc()/9ҋE)fa}k~TDuĴ*$rr%032A)#;(vĀ}VWz@%_R[(Z 6gBgzԪ/25ͅV;{U -f[=zXx<xW+QqA!Vt$qeeB|hHzhXP]' /b*cCO ., ykda6J"Aɷ."HJJ*eDaCIͲ]f0TY5ۆ Ոr 9Jk=.@E@Go—2k[*ؓA`aMO4+.#+0Gp - Ųg*6ϩ7NRтI0,ja5UyRP/)ǔagG^D -/jBވ@I'Y4B~%%AwP[ꊙ%fRrNY&EJ C^t/& jRl.% |2O!LFF5eE)wCP|IPr0P07*Ƣ]K01dվY5ȴRb]pk!uIhTnz*f'K -σn4@ aീAƄ -$B8K@TOqS8Rv/ˠSYiֺŚEv%ՔEi,>~BX9sNMwP0E`k4Q`QQxdK!QiTM\tWQ7-̒Ӡz٠N)b&ygtECމ - vb0x^x@PP 7UI8A"]U氟T\uE%֡̊0ԂЃry:}tW dx,.D$Ub)h-(8?1RzBrlQPϷCm&"[IɞimA,nT{]fF H,"<!\2*Y|]l/U "`ZWZkr)"fźN5&,nxE!4'&/XOEx>&26V5\^ӂ"kxMgx#,*)miCVvG= -sb(JR@iU м R ;F@*1?pG1L-^FP,\LP8YT>^]X5fϣH纔[V>}PXcJFVGiN72G 40 ^d4x(xHMaS$`FN%aFL4$kZe&J,'튔n>*0DGo@zK1#@֧KjeshX9U@*ZEd1Al&oӔT lS -7(E6Jq][ nڌc]f=snZ ӑ”#\JB+Y^HR`p$,/Rʌ#k# i+GWW|uF*H1c)WNk8. ۭJC!y&-G NS -%S6+ - ņ-PN^n׌*+i^V.RLݝ+[${gPVYxC9px&\jP)UNOxͅ*)_XtA$qGˊ>W/VE52sV7ӕXV`e9={497毡s=q Sk"EIԻÙ#Z.au\FSd-W+*榤_{|N+J vku2PepNGp>Ø갖$)vT}^5K ʬa内LnEÑ%J+X%)jTιb0]U-m:,Zk̎kr8_DGĢ,WWU<F%뚳ȯ(ԒgevDTVe!:׳w'4CQ NPpm2Py~P -0Uqb>I F}$ZB3) -؍\XiEU-Mn?&{3)LF˅Nzѱ|4Up6U/K,*Peq>_RxGڑכkO:u+JMfU˫`DVmlXvǕ\0k&lꮡP_n-{-Ӂ94<7IAGS+ fjq,[զPJ) &Yu@Q֚GQTŚŦ~GS;L-7ĊyhLn15^; 1la@VqM](U:Cr"22 -ys稲pR{Fl>9izOvqՄEf2Hn)]Ж[pݔTZo=R3HM7^=U1jj8T"nzobkBXIj{/ZUR&5TK̢E[6hUǵ0V_9{v*}]u٫;%}͎J`o䖼Fݦ,-'ʊUKfq#ݘ-sĒY$5\tܶ@ŴDFr*#%3/6O 3#3=Cx%6MyC_s 3^62~-FkM9@S3+1bqW3s[3r#8 *,{2ߊ[11kgoQ -A~hَsR˱~٤[4GjγBӄV1def^@o%NiʵNn$X`:bLXm}LKЪjYHkw+>4*˝4X]u_9j LꂣH&K$,2N-E8bM*]g;f(pWh̦3Ht8` Fꅷ@FAh^8H sZ#PqSTj tYPzS:=bQ1:VF9TBLߡ4Gnv0+=%\Q(\҂۶Pc5YҚ?M*ױHG.5Ĩ2D,bw % ֵ3---'fHdq[$=-GJӉJhv=OJ 'Zu<=4}HڎkBr}(オf6V݇R>(fDN ϟG淓flLĞݤYXn]i,jSu}i wqX5~ufL/d-kao71](,WMeELeQI&d^8/i7m -^rx&TQܖ@S3܍LMpB$ESiG^'5ܐL#-(o4Ls\Gn]Z[tvJ Yp1Uog~4j|Y?h[% vH恞>6?&!:Yhj4UٍQ5fbb߇R3~ # sG!T։+~]xVj'|Vg#|Kd ~Y\5ar49j~'Pl^ye㑎⌒pZЕ棞CS5*#bOlITqՕmbfȒ -FU{A\$b_hU$t}}D'. ԋĉcʍZqQڹ=_dכ 3ܶC ǥ[t]emx%2(%_p;T;V05l3 -ӬHcp@Ur= n#h Pb+%9 fk\_df\aL?-zm/V5S\EiJnM1Ff0|Fr(dzOR:KI31\gI: )q'ô\+5>I+A(-Ǩ -@F[;ׯ8Il_u+d5@e@Xߴ- -;evCb:әIyL;WQq?Qtu-73Śvg_ $;W#t==FREn_0$GhyzIOY} $o iCOB <Qx4 Ƈ8eن h>K'rIzefk'A~dcz SbVN_s0I+nTģp쭄P2\hTntjbp`F% Vg⬂8`J"|PmfNB(j}@LGx -f'Fe -~Aơg -b y)U'X=zM4"Xk>E`h+M^;ynPj:T0}PݢQz7iz p!V=ЉXNY\rwcl1ZSA|R@V嶡Z$"Em GͶHxlA3I5bخ"Xq'H06$mԷݑꦻq>ѱ8,4vݚjH P]#jRKsQTe3-Dzy#tܶCr' ϝIy~G+-2+RT=CO@Ծ0 `T܀cXÎ{Ő.t߃Fc{&Y*nbueOs}rDe| mpK>rjcn gylr. aIĚt45z [V7@/lIC5emevU(3^ )O$GT`i"YBb|+7`$ nqh`%RcvAMb$پYEmuQGi@:jdKl18LTjQ8"z' 1B!H'*;kqsTRKA~4Mgx1h3Hīe<?)Edb$znSk!u/eŋQ#B9 eEBTH Yiz Zx0@z%~RV]%FYdi:Wk5b|TT5VHxA\ .U׍@?0H"M),N k~v(&$x7l]~ (:dA6 e4Inva(jRXm SFJ&=T]d+廍l=bY8rQJ[Yv}ըDU1BYgFa&CfW&q5 A0,.jƩwV3[9"$Zcp)ųHeٷj_K軍$;[=jZ7ӗt0Ii 2K0GA3V WC )Bq̚_qzWi2Ћz4m=d\sV;YA%At"'ዊby璌Ԇd~8Qڵ Oڵ+Fgw[l<( HkZt42GeCw]89^n&Z11ږsl&:(Ƌj[@I#m[!fyvHzYA2;4mKe|x%g*}8&" A0=kc]g\I\ -=Fi|F$q,hbT]t_"Ex)DX$ }7@Vv|d&=UEK s1X`xt<+0$wm3C dք$TtEs8[g</ėlզYKx`Mvղ鐴 b^<+J+6M\]7z- If5 W .'2Koeʳ@arHh!H;Ue2DRUe;~SJEiQ"/PnB&&U$JuvCH%o}J-ÏBi-Zi DS'JgD&vgeT˵JMï\@ - 9Z1ˮʳ+牖%ŰS}ZJ׬,Z2\P\W^?23(Ub \DjE0k 6"h7YS -4>.9UE1ʌEŦDfl,em1R=EEqၞ .T,.3hFrH4dxO4}?0\C(Ɛ --jF _!_ /^0Y9}&Q!Ƌ!`RhaD45.`P1TCE -Tjx1><!B0%|3@a'wP05bdF9?񫊳(z(N׺ElBTb}ؾ)U Ҍ.#.T2tZ@‡/"D^mBً :1=sl3!4ϰ0԰B5-ې D7;(Bb<#*&0X@Ղ"> 4׮v}g!UېʖCښ%l:p\5sHEr!MY5;f%gvثZlcW+ -0 -r߁'ȰJq Q+Z0ZFEMbu '7Lam:&ۮEwgXQ‡ A@xHx.G4G٦yfZ6Eg6]7=Yk,K0=JĎ[7_\gCZZnPVŒڎ.l3@4tmǡe#A4?\GYD\:@0Z/{ ? 1 wcH .}1al؄eu0ȱʱO^_p5 -޺ -rI#(eۭqM.u+m+㝷ul185cw* -Hxc3[ini$yo yJ> )Q "ZK,'*MGDW=yUQhX!>xRcrh.y,`s-DGYRP9ɵu[~ϹL=znfrChmv큜8nd(οh.{Mu.J1f9&GDUIePQ/CEbA2Izʳ ;0ڦ!੒'P3}Q7HE]Ae> sYٶih:mN Î]#*>)&y.EP~S·4o6׆$q,Ye=7?$Y턞!B1 N#%ڿM+Jt>4%Y Ki6.D8m]rsLd2 iJB\d&{I:-{km;>b> |߱:el\ȵQ S#y;dy<&<#A47;Pj.F_Ur -r,طV>Dk8|쯳dil娎R@pl~Lof_G5^yG1dc.S;TzK" "$(t)ZFjB Ի<S!0N'2㇪cq.3iv4=,cXYuMȑZg|czbDg }j:\͕8_{僜fr.Eߥ#F@TӌlִꚐBr]eȖtd9vBioB,W|-h?Fv&DDNN[aѺ++=0B}*!5:t]a -dEi@նŘErթ[6$VgBaB_n;MIf;J?&$hdùai Szey?2 >BM4 &D8@HnǙKg>hꢿ ~ۄh=V۶ R?`e .-6=DHypWg}oBlyЩrK@eJF*wĚ _9'#hO[n8-r*D CQgZ(emy0n9ޛ 7Sp>Wpٮ r(t0.J&D}ߕ{yq -177d)8%±o z%I[t.ktvw-B\ 6^X\ڍ[qOf|s@NE+LPmh,4YVG%|2;> 2\ol0ȱ}J~ O_k Vv$ǯ%԰^;`'bxŮaG,D2 3Vk|Fp!-K1P-ǐYSl$?f:xjb|]7-rID|"j;cF_RvDGQDndH_p7R$9Vuuْ B -‡ ' Z@t$X oJ1Vπ0X}nx̧̲ʇ8|%?qs7YqFJR\W NzRbH[A;?c8atw1zV=sҪIJX#2/6q)DަY OZ!+.kt#j=Ҝ|)%0:tJ%fr73\3ӵ@M?& vW}жh]UJ_n=yNJ~y(-Bt3d4tuIzT`v&K9L]۷\ڏ='4cj@d74 nTAX:#  LUv4# c?LId -5Lf1u=^0>Qx 8zy#E'Z{I&dz,W~=#5udwBz=n Uf/R-ĢCձ8qnzYqv2D82 4bSus.EK^v1rk؁b~vcq;48Mebx9nYN6ݚIRv@5]̒_96Hs FRl?B9?2ai~LqA)$;["@QX9>N1z@ˑP̎F9C(LPCvjSIDQܓQې(/eT9 Na `e^)ހ3$Fh@bes+HڞaZl)Cu )\ȓ6dYtq~?&?VU [(#{B\8r;`$2JO.qi;bzadhYV_o)Qe@E`]ˍNUZ -!He|) s+N#9ҷr Xbcb!ۯ[SA 2GHpl$+j SeV/#us!u1䵗 {eAjߴveCNּF\qϫ8󚦹?RP!fG^F\3k|ryM%)vRZNMD*-08m1(t0ze~!| e&ifC3#ƊU{cs"Bo2 ǩ+)'F1%iqыW0ڦY:K6 rD˝vv8W,?DM8xbg|c%`a).Ďn1J3isŖI"] 8vY$;X]z rKaziOTEFb&2]m9%chѓ%a=(ǩ4_Raf}OJ22S|ӆπBt.T ѥ(e!f? &IJ$867+{jpLtpkUbįێḾ\5j@i>KoZwWY{~NIl$fAQbIeBC9vG*Vy*I1}&(sj4- z :u&i}7 :(k);_n mɚ(CO iu=b2ʳƋ>& oBZ !Ntُg -U\G:_KQx}DJy#\pF]5_AF 4xBg~5bzl_fw$D} 7;`86ߺqaƇ0Īf[.M bƅ$~䙐^2-O_^)D4e%!噿ItGt9Ns?yeӹV8l7N3~xޯꚿ -At+T⴬E)wI)2Krli(*OAԍe(73\4灞$E0JRLWW -rÊ0~qf~BfGKÿ(/ -,5]%)hl?v|궻 Rw)0\J2 ǒ$M8f9g%FѨ̟Y634bӄ㞶ivDN8PgPs4yT͗q/;ag5Ӆe@/J2POJv)i_Z*K Q:o=Jムr-|9-oWHϜw t 'dsjQ_ADpZrLx‡,B=p=8֯ dt$1FKJӀ4~A10 ΆyM{"]yγyhN<B"l$Mն琲i?b -o0;hC|Nw嘜J2/᫂Hp77;UipzKavA1$m~ -r 1eCd9El7Tq%-qњu55J܏Rs^ P(N/g*&灎k0~`8!lahЁH2ZkU.I&m#b+=N\#T[2L2\D/|GD[vrTA"3ÔQƱEiBC3 < -L(uMrXme$ŎAԍ0rZ֯,o4rGiFF`e"AG`w՜ס2Zl+~\> NY3ŭ6F.)><σI޵#fOeKQg .Q/f˂F7#h@ei}#әZsQ5-g"DϷ(ڎD7v4Meuɢ41e1$ o 9c9nx=瑒$7]̲|VR](~(b:.)]lAu$hb5wkVwDPJU $Ѳ7;|n338IZưK5:ZAv?R7!7:WdEj9Į4Wm-ld8DUZVŰ,t8lcy=zJ"3Fy ~#d41>%4w -3P 5>#vayF+t`o9y>\r#ZD{:.bDߧ4 AJ_uDuA -AE<jb|5]m:|^WENi-y3,E_w"h+okϲDj{*5^Ru#ZnǙ0M]=.Km;0ڶKFՆ$|#}oj,O4?tZ,|>]KwQbn1YhDT2|QccKC1 z𢤾1}Vr>%Aa>aV\5S23xَ(j(HYj'ЬT=ΫY6݊or3GSMuFʁ07m|cVA쪏Zk!ն[`9$bCu U8؞Ciɭ zD0\IY2~8ݶA`9xUFdfX:-K\2N5 JvV~s5`zp}'Vsl<)݇"(\F{Nt_InB~T:Ԭ.-Kiz2V`RZԛVҴܒS2R{Uc淭}0'Gq'M mE* Oyss:U0x!th$ okASx?>EKSP΃V󜉡;/GR̀8+q!؛2i=O4?eef1LDGW_Cgu9 [5^XcXfBR` -5t|OI]?]t`8b$O h/Ug؜L7Ƈ+Y23FkZ>Zl>3_(5Iz\t:\n Ц%h%8Ɠ h]O܏?xQJ7P1"wȱRy{h sgܷ˳u#,A`yBKb[^g@L"u5!nqe 4Yqb4" "(J@SN6=RA8cТb^A"FQ~߈_d_%sSvG&BvR$U_s+5N((TCpqx=5iT_{712| 0׾c-Iaih~iqi9QK>-ht9u>%(vɝ6ǹZᣵcdU8^&jOg$4:#:_8R(̭yOw*5#+8NbA`a'r~h| $G%ϱْ9ďCNYk9(J&G]WY>L_bd8ϢmaR%bK%} ?1' 8Hahv79s)z_vXyec0plcwUmH(3-O -1T=q Q{MhBTzaԨm|;^ 5\r!{퀬c}1;ί(:;Gz(u0:SjnL/~_pkNыEPLZ~ Js0ʲ(6bTR]4Kc5fy4 ys] w1EzAwec!%G~! 8~yc1ѯi$|Sh?gEg"-#*`GQCwai^Bv,mہQ1$|Z/Il׭WDML,l2P3\a&ǛX4cVA$s1Le!X^DeqW_o/RwU]:,7 --YR%z\m3^k3^kC~IF'eBKGlF9RwAQ2 Zti#D{2dKX~;!Dhڏ5.]3`BUvb~i%j m=[901~J̇0%pcdFIsi p=!1~8?oXcab`($b u)T~FM]nۇA5i KY"q>uxJ`D[f@{ih~0jwҪy$V7]cX3U4}wYgVMbj͂ M 9\ZUg(|M]5-cF1vc:_e*ct,ɱOoݥOjCY56鼧&1Vh0p`='*ާ CXC^:OV9^y SY<BMS[֬<L*~Yr#y3ݶc9.!5N19A=|XZ3b &F֑ܒ,v 7Ke!~&HpE]߽U0q$/}jԶv^\ (Kx1+vbz%MHJNs(XH٪U+dz]u'|ybo# [#mWwl9#m=9=a-Sd"Ŭ-fIyO4bLO3SO)%28qDWs O4W.N -!hLD -mO/ v"؅gv54'ӱ3L`|/m Ǖr30>OPʀa7xϐeB -/Oˉ4W+^$hb;Rhd 3J1Ip 6Pj(C4]1[1OŊ 9i]!^:.KS8$4= }sF Gdjロ~AjsLm~/Ϯ*X!qPV=F~ǫC-DNכ?b41Ԕ~1JGcr0Я -Ԩ}wղnd xx3`\wղl龋_WyF%AZr{Z.z "m^t(Ri|Kd"|E޹ab 8Ln;Qg)I_ØUO{q;`EOA:_ - "SkG9ウ !rh*yNWE^eN֚%$Е<#%5̲ߤ(&"[1KAL_\|Qjr[)j\;w6G F9^TY{L_M -rL}˴ KSд.^GYP+_^s4]k#~x\9`y4^Cn ~OR+P{B"CdsS%I{p@_OIzKaBsUOIN 0sRuD1=)4P`F/ - іFp Y WHzi;䘟F~cJs0c!>XH‡-2VO1Rb=K2Ԩ0Aa@c(fP13^@I!$I3vQxc.:M(|hiE9i$P2Ol*جWRy FKT/@GlP -֛LbP*Dv{lknsP='ғmb^[&(a,.-)-/q,=_ '+ɈW*O[;rhP_ zzd=WcwX~O%]~%6(8q\g>e"ձ'JXGe#^!׸IBH2]2\)JZ/FyZYtBTo Ye4$lA;Þe -SBGw;<Ƒ;g`~;d#&G "\H?ʙtmk9=sMw#ۉ8f,~lfݱN.tj+}bz~2JCC_]g.}`mʿ3=ޝF|r߿|Mr}؊W~Kyn@Қ#'RfQ-H Ft34g7`qgQP1=O~~%-rg? =hO$9 cŻ>F;sAB1눽33,[$tyw|hp${$fa58efe2e-a7aa-47b5-896b-6a35a8a0bbfc1fb9989c-8a38-47a4-8582-456808453ee9-7845.100894 77548l56.209602371h W n Q0 8MtQHXFU+T7Eu.pv530)U)w|1)]`H`0H3thKCYj80+!Wd50cb6118-1ff8-4a41-b026-9d1df1a4d48ecee69d35-9c2f8-9596-7bb6209ea9d5657739258681.5570Pˣ:p<)$BGtP\@oF)AjLЁè!]T7hDL,gd`119a9f4e-9a23-4e18-8c39-b657c875a29de2ad65d3-f732-4db5-ad67-5df47e861c81566 77973153530502354998874633.382977-84c31d60c7-12b5-423d-a9bc-cb615118edf608f4a4d2-a6e3-4c32-9a1e-27e77543858c4588m10SVGFilter / : /XMLNodeArray; (xmlnode-children) , /attribute2nodet(resultnamturbvalu; ,numOctaves2baseFrequency0.0turbulencstitchTilnoS,1feT2ope(ininSourceGraphiCompositx0%xfUnitobjectw(1018:f&n`A!dd(@$F!(B`Z -v ܣWX!l ?JZdZ V{XUP*x_ތyx;j)1 - 62_>ٝ}ꇾ@y YuFt,_EӽEz箐*ɱlKSǽI˕,7bqX˸qw' -~qV[btG|).t",0L,ap}~W,E\W?Ք~1'Wsx_%aGe~|tSUl9vfÈt .ˣj5ih6~Bmy47nxUW#ݮ&@v ;ʷ *lhs L-%=xA;nDd 8C Qc1@b&("H=` A<0p8XX xh@q -Xtf!q:`<4("4y<<$̂yQ(G11JXnj. f, B XEA4 'a<Xg@x -g@0 β0$xfEȵ\YY,pK_u55E5WC\\WEPS4 c<4âp 0#ƒR NyuUgEQEE)(qoNbea00B88 - EIcX(ID"0Gca$` 0Ȇea `8[-,J<4 D0, 0$`V'wAsabH0 "Q$` W$40K`$ ΢eq8΃0BY -(CcQDÁ0QY84,Lp8gA#4{ -&P4B dh@$0 cip4x`0E B'鹛q)ϵ5)aZzK!z|؊==VM lT)ZzQMY۟zP>&ky|i}\ -7\~HA*lKC}|OPzPSvR>>g7ݧ`!$L7&|=EmŶizKg2⺞=&jVrL(+JCVճY{uΊƼiLg/cE.D s[S"D qT[c횦>5J|aw'qJSDi\1MuUTcc5uƒ2?'c]gI!}̗nukjEKyQø0ȆԏmQOQR S+z$깰FUŘ]'b)-n̉ -5*!XcM  e3%uM4ɛlUNHӷv7RCJ =*E m]E6V\Tka2WsϔķWGJbIRՄjQ.ŤhpU6REUԨ%S[nBPﲕ%+]Tʚaj(QS|MM/Cs.5å~V&M2|cĈUPj;Ԕ-W7VeJY[-c]uu}S16ݗKֺjg)'l^r/I˖SuOᲴoLשZ͉Ɩ^Js< LMסjl-{^ki\iJZtPiR|[BfKSӔC]ΚzJRR޹~Z)+tΙУYIe²6EUյzBO!B )ltn1Y+Tk8!+{?2Jgk^薪*%O UM!{Qm{R'LNjqM{-o*Z):KJADAI\WA-W3OC+Ɋ;) 7!3&B2l)tIQ1П!er^bO==T:u{RIȬ46 STRձH7)SwE5:JDce$Dd7ChE4: Hց:î 8E`r ՑBgac;h0|EtK]=cT9b-FfQ(3WG%ØJ W$'(;?z.%:fg,=Ba80 8ePvۯX;#w҄/W-|-ܘM$y5 + D Oԕ[#R1@aw6 >z6%]TIN+]R> ^tqVG0lݵNylp@`|VrEXC3BIjV2 J\?Y66AyiI0,V]6ǥsSSSĄ@)KKvkaa)CDc.,]o*20 v\fjԦ)5UuY@u+]d m7j׉u \%#9T^"e"BDvx -B)˲ͨwIv0.&2L~ Ab"ʶؠ~9TFF}O>3o]Nlv"a3(s ٓ buCUGp@Ρt"q -6Ze( VH2wRH.^eRƖq{d5D)ڱVjs<;D˪l4,R _mT XuMaotw,6sip-t%GwgsUxIdhMi4fs5>5{EWnA_ ݏ̪#5*"oEJ hW_i,evǦ -^-Yk:~F◅Ҳ: -V6he*Xʸ>KC9B3s= AwjAN.ECJc1@⧿s䖷|~%D0(ƧQC'[Z  Sc2Dp}#'RQG~(HUegX-VF^0.Aid b ɼ\s >N:E$ȓ|W2D)W*,A/{3JCt ,:e|-GwbLɏ zZϓ4!7KOB^XLfzY@Fv)]u~E!9ic3Rpj)/ঠ-({L1m1G",E[% j1q.vz \[35cBu+! ؎ ;+/: WSB @;: p. fkEhlz&k1sI,yK-1jUNО(QEQ6bq{k)0jF3/䥆hc@\*uRt_Wl7dwaNe _ HA_D@.Zt,g0`w|jbp.qbܲ'yJYh48oDL߾QlԤ<, -C A)=0H)a"2/WqQ'*ωQ`xűLWVr\5,^RFI.G2:\ ,&4w_Y-GK%T89vg c>1)at_П2x_db` -v~zY\xQD!J$[ҭxhܨm :&N{M"5%VVf*XtmHr]a[I~uXH{gw O/s$nXѬHI8M8S,XѺ;xؗW c[~qǛRx?E1u]Q)L¸] -@rk -ZކÛp%J R:/*kCdiF,iSt4CL -Z`+`[g4Z2ΣbDZ@ʥfXV4|ԣZh}DsBo+^adI%|'@ i%!\01; x]Jc}iκti1uɷ+C!v2pI'Z'5Ԫ -e:ədgA0~dZR~]"}bPZ3 R/g!/,_L0ztT|s]lpÖ6G0z0/(ĭ5`/N'ʣeդvD5 ZZQ 62#0#ãSA|87v bWM8&0%Y\g)_RIkx&oAI" -K)-`˨" , -@*/-0(iv/ O+֕nH_e뇁B`$(Ee<ʱJj[0jR8(MA+YsP9,:1%Ը(%e{!ty&CqKD}xZ*2 PnU/Z´.ʂf'adaT7h{1N%y !V K]۱ Ѳg;HHB9fv6⃂#s*`H>V,?Y$?OCQ& E`ajSW [U aLgCB?:,I͐O}(o7Iݐ5ؓrr#2ȍګ_1^RPDDLVm5'GkX-e}iȋg%͜H>VыY;l.>S'Hp\A* dFXCD#LT=6ft2 h2g$dSƃnH/P5ȓvـ)q]l煰OMH$)1n D4܂Yl eΊ9$cXlM1Wh=Rл$ "RȤ@]]A<{JQg(2͵,Lb9QY͜s9ZbR$ ! -ycmk}.#E{$Rb 7Ґ t߅K*4S2}e+sR%-F)VyZ5w]1q[Hv&,1N#0=}EzWQPDj禭[P^/ԏ$^MQe KNm)Yb.gGbwYdٖ7>Ғ1I^s"rIڶ)VTX-SRad dYBU:RI=@uTCѬ%ՉDĵ:EI -ذw`^tHfPr/v|)⫓F~|Eڮ A{d a --rU0D;ݧ/0`f–w쀣@alWcJCkL͘aqrs\Gv )S(v`W.þ4@RWy;y2 wUPത{֚ÂPR!`y Ȝ8 @< dQyӰ9$]G|A8/&.dz4|Y]e+T++X GcM[Bc2[tmT;E0J+^SC ?~@?ڎ4gQN@roouU8B < IBZsN0bvY (hg-`d[Zq(mu3̋ %m%RUw5}$t<'fkz3X;P{'yii+j)&W/\ 3Ṉ T']S  42~Z٘isD:ĸs=]#1rtTɑbF!2f Z[< MWq[Cަ@s4VlxnZǭR.^nV`+2#<$(U(Ґ0 JgyC݅0BaQc(7|I<|PaȨ`21VJ&rtB"bpyN-QD<5r뽝n0:)>>PjkxR;YR˂I Gq"\'pU7HqgNfhFDݙ|]ƇDdq+Ft(U])*M&n?o522\L@(j 3ފe`ᑼ. U_®`YOƹ9[?<䖞oSi}o?+=>;'n-J" -c`>' kU}tq2{J6ic'3ooQEPoM bZH,Qn& _ڋxd; fvCh&<1nh]wL -2CTPբuFA2Pwۥl h!kuzn gb)ra0AFVGN׶ӕɐ* -aL-v'ew3d)ݸhUӜ[EA*u\'ʄGVOȤKW@|(? /*ݚK -WG[]bozejV>re;28a y.x*?]*')E^2JdHº3#Do20 fĐ9DyeqDbJL3zJޫv=b[ w9ecyi(E9]r -w9YU54>R#5~ !bF"-8@H͓MC~qF (Ge hUCq'}9r OBW#ji_J|s3A7޸FRr xǵwDv;-QxnT R.ZyᯓPAл ^'"z 6}\`Nކ;Hݎxi(  f`N{4Ɛ"vF`(RHЌKq%0r(-dp}7" krmvvg9= e뜲NRfҕKa3{B-oF%my2;;8Cg;=:SJV}Oe/+ӧ\L%Rw7t2txyaKι+wyalѝ&KˤN3 -k}1C0TIw`i8xkTC)|goro+[V7}GS={wqJYC^]~56CSe9]ܟѦ]a~T -;BGڵ{Bw])wG-ƷLe >OtIrמbNw_S:!}/qM{mWJ畾G&_kls[PVB_c_,{._/\130(Һ1.K')r%MyTYV(_>s+_7_B0κ0J(;NkKD'ِos]y>c~{J\ -ɍ}d cp~8Yzy8e󓻵eXeO<ou܅-g_}:ez2Bs䕰g? -V~pO;':ΏR8)PR[)L[ž24;+!Ilno2oǔR)zb؜T^HrtJQ2'ܷK B\Ծ&ORo]{]H󜔥*6R6L[R},';!ؐ?7#qQ IeJ&rRuT(%N<RƇIwC997(alv[ʗΗ*KIivs/R~ؓTLWFNL+G?+0J(Wes|ye̓mF'Tz;g,3v:#$8g_w(W2ɼIf΍M#eZO/ʭ%]7Ǧ>?\o0n߿i,%﫾ZkTS))K-#iL2F PY6M$wiVH*$xxIG|䐔!icуUVZdN)Q25)ɦ48!>ΖMWNd2sS^*{B63[Ǐ;!W85;NRgJԙST!WRhlRTͮ0J**(UT|?_޽UE+qNJJJzХJJTQ_q5tgG -YNzjR5RTNH߾Z>ZJJ/t {UJJ JR9O8ʕ*+*!(S4\R5FHt_{t+JIRhJ%FJ.i2ܕ^ǻR(G[ cl~*)i=[J.}Io|\vI㾰}7Ɨ % l>gmIS;y+/4One36d(+qٓWGk\,il=J|-iOvB-% Z~UFٵ_|etR>S˗:glI#g?M*i"3[7'=\;[_]^q)%ʵ\9+uJpNOZ%\(#Si3mNz9IW̲28RMjG~riۏ}]B|GM#q 幰N|r2BI儲iƇθ{FX{Nss'YTYΩ[\aSҎTƺOL+6>>Isa]xz==T!SdIv3qe0և>{ukڒfl=pJwgR'aF6?Ms)-!T6+<ߜyҞGtuNSI -eݧt|O~ҥ ݳԔɲ)}v=R_ ڧ-'اt9vK?G|yRgvw(; Y6{(Ϗ)W'͟$iǟ<(+|>O}z=~QK)'uv#RBrt%V.f Y}|ϗ4OO5}wI'h!uU7V9*Uʯf>vPJoed(΍w_3}+\:=}zrVNNtzҧ'T)}UzNNYsZ(wN/N*M)ߡSiN[R/PUu!*'ކO%P5yQ=l]uebtUYoqc]Uy*Y))s[_ʟwZ'GoŎQY;[}Hr.Ō{vwX_+;z -e˖풲l]^]OЗtgOgns=;CՔRnTvSoM}jvS2SdcՙykէЫ{t;O}K}zN+ե*WWwV^?R:t>=*^yNkwwݔwC_Ζ.#˧+'ON)Sz:: ݝgcС;c^n^9cOщQY ƹ:*>#^ޫ2 4jtG*2weƍ*X DQ6 nÄ-cqTZud%c2BF˴G6 ˄"+D!k8k3 %=*ўōFelq;Fܫ.L$^7&Pأ,+{#m¦eeb]^DoM8z,*yL+^fY,:Xׁ㨌xmfE"j!|n`:$ F2dl>x70"o`dWaa y. =-{u=K.L`̻ 60ǻXō`IA[&*(]mU@Dړ,h*Lt} 'J6frDV -r'(UANtMDVA[qJ0첒ݰj(! D)׶y>deWlg0-˨L2G`u[E.J,HA$,Jti" Fh 7!T JȤ۬LHBJ`8+(8ȉR m9ѧˮDY" (!Um"RCKM>=Ѐ mIn"QeֵiU 0,nRbP" \.GuH*7snWF;%h` 4%VGnӷ_g"Mηu;Q؇IvpWFR¬8}KW]˛.k{,LtaF}Rmj",jdQmhYHhtn$Fbgxu6+=6hys70NaVy F $2kcaJ -Q0:fcl6Y˛]X7"G].feVQXɓ2Iv`]ۺD^Ͼ: ]աSNnβJ?_ne4z0tpmwWf`(caеq̲6M2kDn`u# 2 <0F{%Dn`֍0ocQ"$)"U܅QbT4yW_T60݅]`<+e8kxKYFmecU>Ɲ4?ӴOEi#%ҪW g P5}V~ Ji?T5S6Jtfa -}XIE -D0+bTG -P@ וXug-WBs.,ϒT,J٨P0Q$R6Eۨq,)$umT#Xl$B0a -i" 23ٔ"I I:o`*qWGT@|ĥxB&o[Y%(e, -K!}>0a LeG:lDX#dDY٦i4% -i+FˆpH,´ۿguIƷVatnC - -i. 2LFF] *NhdH**Ȯk>HX)Z( шCV=p#n('DflX d:uE6e@/E4wEc`2*= :qז!< hDZEr~/닋Q)w{_"9X$.!ЕY.P@3Thp^r uP\%6J@q2q4"FQ1Q\pL - -IȁEADqp BA&Ba'8*RG; ' *|V1RB;0HBDž"!f4 -WDe D@QEw'mЀ -5, -/Ldu]R`z>2u-s[_Q!rpQ - O& -- m( t X4 -ArX ĉG4xoF"@W$X@?&: 0(0y9 -`micddAIE>TF 0DPxT_bhPxԡ? Sm,"m:bH8p+RDej$" bElFbB;D$H$ Sq@Dvx*Ƶ!`qO`)BrhXthac:"eZ&#6:QC$ 運9, @iq zpP(pDDH-~ApdB1X M qppiTB\&\L@D!s`d``)*@GEMP},8f;t4NHQe,T$HFlL rËT,FãH RD2@\l 9I c%z|Ll m: X09c8iD; `;!6D eB(+ "TQ(0DH Q EEmh(s0i Ш+ DSa. bSx g,D`"#.6 - hLB.0 D $b3g0kmHT /8i f&υCbqy@[gaf"c2A.,`#hb2 j7 &b P3jضx@]mLbu\4*j5)21].HBj`8tlD .`A:.r!qq>)xPtp#\4p24F/&$>"J>[- 0Dx:<("aHt\D~#qq'Sw' vF"s!0H`L'cfq 踊mX$⁇cx:,p|\0 ,4"t\28؈6#7pEc@ͦ n"K p"ƈ",,qR!1auL4h8#4ԨޠAq6}o td.@Qc -_'[ P# .sS z3܏%آ}tq&j?=A;.~]֟={qںM/+Mf.Ա^uY0$2l8:A]}))~spkS 3Jk۠A37'X5m.:L9~`) 2RM[D eVg`._[Q`6DE>dhc~+?qBG(7+Ȩ3KP­y2w`\r!Jvk?wLv}Äq{m0yLr@KӞ -?xZM2Ph0 @2Q -+W0݇ܓIqlpRT2;n ~;,*Y@ntݟ :L<1=f4FܢILN>1hKw=L2j4kn ;Ac7aR$9zl(FRI$DqYy6 )t1O+t33M [Toi1 ~d(r*bJ3dYP{U%x^tQ]7YThF Ph_Wҍ“Zh2-^!m<)a6 -or)aw-I[fR6'̴X~ Pc@d@8d7' l >Y`yNp*/^G`@*;vteUQ1LP -xln߃ e&+uGFy%dguB'p 0@ĶzL`3@y j3쬚htR+heSâx`SKN1=u"_dWdM߀݊V#gaڹ0) 8Dj ܶW3x_{΄1GgK1hIF*5ޢWMf<ޔ R,/u ~uj$ RdޜôÜ1K:@F' -?aGʐ;rX IGt؄ڻ@S65ҊB!?/ds(_ݢSЍZۏW>Ng סVgO&GŁxc-k.;,wǞT!;բ, ݫU^ X ޠ - ’JsS궯bC_mUP_0V% -eU^hrn z?6eY\*C$-d>nLϋ%/Y`IMG`B&(_m{` _ܾJp[uBJEüŌ*Uo<mPD| -0(gtmhz^;wD/`gNݾ@@XxXCʼnJ/L)cYƟ -#ֱO#(sZT ь@,\ -a[QήCk] ?Nt+Bv1Y -ofEy{U|Q9:RMOqdA'w<4N|a}@ -5P(l -jPyA/u\UVsNؠ(x{_1 CJSCM1Pgf"yEF^l yc-H UVУHNr]V0^,?߽t,zCPCe+Xt63#Ƕ[BRWVv8u(NEtK#kX .Psf~rW|(:e%b?0{$E0xJvt -z?d -{@@%, 0:u]j%4ހ)baeoĭ -BîTyX(ü6dr}IT]93H) \>K()SY9?ܣ/،fv\+EIrt}-{i?Bg=؎?ǁNb?dnX5{c/ih㵟Z+{Y}2!>("[0!½ٹgIdw^°oЮڠԶ,1G)8fO, f1q~żMbNi0 ?1waݦ$b>7hsqBW Wq"q/2.w$Ez{OsnG(| nm3&ØXzWOnMzb%L-UoL̛O 0ˤcRbb ƁQKhk;:0 c,Q!B;xdբ+ʦ tMu2>A+hXYQ>yp*G8*Bb\vK)gJa@nf%\z1;|^쇗@+#uPﲔk֬8GޱD= -"meE** @&"UA' DAgF} - bDPnm-(ĉ;`>IWV}'T֞i`hez,n%fA } -됃 (l:m[цu#(,d пȿ=2ne7= Agb/p4ѥ!W^Q)#q?Sz0!8ȧv5>õ^/_Nbbtbll{,[ ?XVUF9XJf З(}^hTDu# -+ݬa/A78tV'9Lo܈ 1)wa$j7.sB#'v*F&|3Y,x1PY ttCuRnǑ́M:sA/=͌đBoyz:uzsps͇Q}0:/Lnrj:Eb4vߏED94;WAZnNS/gәVtK W -pgR\Gz.RJ&ؘ!6pn܌|%&= ->p}?:т\1c̄jPef%`YoPG -S m2DU{g"$el$h`!H~ -~Asd1pBZh 4o{; -+47:;[I/@Gr׏V`/N!NTL<VUbUi'(.X/X;7gP'ő9kN]r@ɿCrzX#|SQdcfUG(pφ՚7&'(X;R<|#S -/vG,'i!1(#\;m*t%8~kO|!rbb%>|}=Ȱ:(Z ;X9z|`Т'Kwxa0/Ttυx.81ϑM"QSr砰5P@Ov9o\OOQg8y|՞*'o/;@8ZDŽ_PM$6\;Mr&l7xK04\~a1hsu#HtqPˑS %|_BkitgN6BIߌbJOu?B@LSO$Cj o MI u_6m)6g9َb),yIi-;PɒQ_UyPKA@wPh?㞾\ HONݦ;gʤAVYtm7b7|!h'r6򒾟-!kqa^ zu{(@j ~!7?89ѲB/oQdVWE R6,I+HUg;5N:q.[r 5˒ǾV[p*:L7oy蓅2&@x6ɖ3}pB9mJRw=P=+%&Yr.zbtXAvtKDŽhyqorĜ>2 I3%1ǩeє'-;8 r68ғDL=C5mu w: #. -Byș΂Ra ҦS!!n,Z#$D@wHp^mXik:(g$SDXn 34E +o쨳 Z8Hu>EA#;Ѥ=uԸ@e 2byq /IWԊ:.*7veKAFY »1n|nPtӣo=%bMMsR$,ܒ.4TN&U ҝ/C KOzeuJ8.є5=F2Ukm5Cvh:^dnKv;\&E;س*6e *.ǯ+!';bŬ*F?*MscAb'xH -qZQ9Ϗ!\ӆFIW@I*v[ $cܖ}9VBM\$xC&uU3l]wLd+)C;hvj}ޯg;ȒqBgةּ)bO|˭P$:94>_oG_ӜEgKS)38yOs*5]0)25ԫXї,{+Y+zi /k/~Z˰/N!M(O?; M 2OSԢqЍ|j=Wk̓Q==^%x&z$[)Rh$lK e-;Jߔ q) -6hJ4U9LV*VN$A648Hg`^buTzw5.{ s2[ئƜg&6rP , @a;fߛ3@7$ 5~8Дc'J!^K%=:.qRO[3" iڈ:+??3Kf,whtl9ruinlg ļnL"J3ވq -=V+ P|a[36ωI/{E9rikh(F -= j?t9.u! -VR1vA?%9@tEAҜ%:Ep3 9Ym[W8RFŶx.ӷp^\ne8GmkpUJ;85@Ѐ4-~l|[Dʣ:RUvBt*ώWķ -Y8J@]ZWui̵bJQina|zeCNFS=FT -zX$ ɲ7C:<0'52,<3,:)5M%gUN*FT ?SJbVEqXlJ*f6eCL9B8K5ѳ\!^K<0 mY -Tbգ)x(4+㩯EnsO }< i=bY&CO3{RxuUY Q kue&N3"ԍ7Rĝ'q)` ?c9?/&)O+) N5BqI+!9'hOo:>$`K08t yɖ0]D5c^n رUq/e1*ƴ& 7is?0CX#Vk|R^3 !PMI˜E{_GO dޖ$ M[i<6:0;Oh^#3>Rј| Ȱ1vYHfA4&l{Yxn u#&û1>ܸCؖOnh!B1ͧNz -u'hI$Wn]"hӏM)-r!C`0V^Rj^8зM10qޯ9O)= nT1*˘xe"spfoޕ6MϜ#D| ς.hԾ*4 >XTWϑJOͮr9%ZXX鵎4XG k@|~unQ.6(Be! hЩ*_ bU/͛]{CV2.0^eA"t-<Ÿ &| jr;4bnmN 咿p(0rS[C/xP,=V|O=Mѡᯱ+m'ϔ-H~d]3Efb}!mbR9r?HNb \7av~~49Y+d\| -͚8|'W^5 |2ie2r^a$!p؛Y(v69yI -O>9p[4k=(,5Yv##?`BIu|W êMf~BΔS8d.lV#ԟYĬwvݓ飫0π>1P*.`moK:!Rf;a老|[KaX^ -UaL/gQ^bqQGp endstream endobj 104 0 obj <>stream -$Ikm6miTz ӫ=}"爓7SzfC9Oasw}*BőH]NA-^Lvw&vNK?OFC?>U=M-Yn6Xi3S)`T -^iiID)ևT`ɨ[y GBۡkF(VFlV/Nh68"M9z5MSBF;," H9h] -S}w H }ɜ5@F*L/֋#Q{}o|?E)gA p4Ѓ[$Stpe/R:ۻΞaxH XaCaaoP 8Y0"oA Rh,p$~`"/ -fs0#c ?ՑHYDWM-hm:tT1z ܫ5I#sOxg\^]4&ռ/5A?>Ƭq3˛/|HlW]mL"P(Of)D0N`4;+SeXB 6r]b 8oT8-mrI 2fQjMͻ ?TNNr}WNfFƳ 85yrI<d̉ -^prx0ڰX>vjz ɜߎkAKZ&ʐס/D:㧐{7!d13yd6x.d`b%t̽{ߵڿ,2)=vVI#ѽγ3-9juIZT.1 ebЍ}f8I[ǩ8Os - zJrA mM;("ʿ:=YO- -pSu_<} B޶e㛝_uW-dh -B8:Y8|x,|^B8z'~@]Y"k'W䴪uXt,UݜRm#\Az -Q y[mk$@<0g;T*G]}aDn/I`u[B=OFt >ƶ#6Zp -!#E[\!FF-s \2{y Xz\M3XD -˶;{5f %k CHmoRRB7Y<6 ' $% -]unEQoZcز7#y"T4үǖ|lBխG1W1fbB:\u?gt6N.(O 5>3hl 6I JNf'eѭ \*b~!i^6OjlDou/\r&ݡoD١9=l|ۈsqᇰTB] ,*R/uL2D8G߈C~R7HQS.z8'!L AF`PhTWK1[BЪ] -"-8'Pd {ZQG4y X#@X doۻ=ehN"0 2-SqP!p\ R\_ -dJ_Ra=/lN*%9CQjtY(=nqh{O~rzvH7D1̠V#y,:0 (Ue>6p2-M~Uz3gX 7G:%@Z҃+H@Ѥ>/4VDV2 a|w2V[Yu -DRɵ$bXOӯbQ5_"ÆRQʀGpn~Vt\1/t򶮂oԥYޱјBEMd-uy%Āa ح@0d!/_e…~z-(`3<@ -^Ty(0[ȸ; -Wi kQv%e;Wq ?Va ke5[ `[Dw -j4tf - y4b:_" 'KͪeZx\ BZWoXeljeӇɸj-RҧmWRgU"(<.ĺ&EܮP, =ԧMM$Q |QWRut`Ip-U]P2}?~3pGqd;~u ^|,w6$ԕ`a,mWKp&]?U=Rs&W > 3 -r&,׮+[rb$W$$N*ʕQί5:ۄGxx6]X1,):>Y5KVv] C -F:}GDa$8IxApMUmաwoބEʚ9V31ac=C?7<|E~JN\Yㆶ˝Ә{f5:J^h_QC`̄8e=sgщDX7c(6Bj޶_ijR*vM!5klˊ5jl"TWuFslڮ*̿e|~nve%¶wCS#ǞL]`[^M z -Ŋ/~CżMWd{,| N!wI6B^v#\}}`ڕה< o3,8 -^&+(-*?֖q 4`zX#4ҳ,U6!,vɽɝh;bJ+ظ#,Wv0!z)#Ն0=>KlnL{;%+qti13}3$8&笎C-,Gqsd-N2Am0&$À|e*`/$\ڵqj5kW|!q aCuvP1_BU,0A2EOx:{6lmO9oPjՍQJ䪢2Okܚ^M#!$Tŧ63C2ZTSTmZF%e2WC}^N6 Dm`ɦ؜SԾ?\ kKx[ I A/j!aa+,92{Em!VSqeXc˚* N9heIc'HZwԙHEK'*GC޸A3MIՇ0ZmxaE12(tհNYe YPu1 o2`Oى?y2ebiT)V!@h&$z "6WХNJʧ:?^FօGT -PCEȋquv  kFb3% Tl8GF|]"LL*e0 -dFZ(C*7|r"x@K*RdhiI\mQ+g&̝[nL $; -ڏ$@y -eb⩋^>~af rľjOA,3KCbmu9J:# Iq{,[@elb"%uG ox3hƘKiUӞ#Tu, -YR:D mzsC `P]+)ce1KJ;j|n4G䲒 A n{q%‘# ZhLl3Ҫ -.S ڕ,eu4<)[Ills8h^bAUffeFN0[O -ׇx;$*7q"ΆZ="/Du+36}3C,wTAnaJx~y*{)wvde~ &3~uAdvkp؏F_YP ΍`?'B!B6sFKg/E@\ʣϪ(,OTacdM;Rets͛S'F+yU;JjJ"^r*ڞGq>>p9z>#G!Җ[dfVL5 -0L/VpiօoAu?-A¦ -@ș+`wOe~+d&/ m?}U,5Q_AHPߘ(nFP8).KV;9b7,BD9dM lޜD#Br*n>Ktco#J,Q6WD +(!'e yWQn!Ol3^b1QqTŬTf*dišnĄP9cWKZ:_ -xYYCQB>H e7%HY9MTPltohbBZ$5 me R spktl(CazbAdo yI*8aP$'e% - wb64ԓrV?먲@$~DںUBz lo7﭅]}~4':UuYu|gbXE<]t{̢cIY#qxzaK%sR]{DPOkMEBdž;m޻D -Z9}3Q0%ZA-SKi’C -TSw.ߞOޚ<&h 5XrGS$`cʙZn|_)e'G)A.aEa:ٷP4B8kR\rlK9jsIG/J5TFq,:/]sΫgӒDTA& |K[:2S;CX?Hmԟp*O*< lw[Xvj09WSte[o.lSe؎%zw L "m!H @bV䖌91P[47 /ֵq>+Hh(LkNZAXVݐIюfy;_$*AkXMHйv<4jk~_lMR߈9!khO<-1<05<`B M@".nuڎ֜=~LezALU +@gBq72ˏʄFs84C -ƒ2fvX d3l">91}+7M -YgfcT~VE`H˨W b؄kk>WbBXlk=y>r 2fr+nEOOt8"# n38%s)[?zM0qI|eObH% wr0LWgY+Ru.qZ7m,tCCհkm -K1DTTb aP"o8pe^jnUC譺Wu>MeNUV!11\BƳĘX8/8aD*׹ ~Ra3X*©$~ lݮ6<> OQw,-S-r+O""`J7 (,aqGˌDx Jp,R?V-eOSr@5Ff^["r{F hC$[ 8 L 5p؏6D"y3| HZLDQ/ "<:G]0aEf"?߼)0KN F)*#3)ʋI9ֶ?.;vts]񰾮}pػ/Ǧ[اk.|SWX!UǺqȁ^w7Jv5W7(EכSV0ph1˥)}^ȼdt@kpLk 'k4">~f%i~*?7,-Uk\_mV,)J*xo!GUTǟtCTbCyj0mCpn̫;==\¸gܯX6~~W -eT -$C]'60N[wnU n6xVlAy >z{eOGN!h2L#-e@D+g3] G,q0.%>rQxqM-vv": lM@t.Ա|Jآ\ZΩz9mMuk 7B,&CtjR\tpϮ)ԽhDdU)zLn! ^;zRNcZ)q5F¾pMUmN?øEIG8'49jTݟhoP8} -3ޗ1HtfU3tMmXw2,«sY\Q6"1U <~22Ғx0uҝ^!ǃJqg2S] h|N:[X%ߜ9 ip@0z[t򼒾wn!JF\uW *o,.23>&D 5(Qct4uJ[ҽ*/)sݱ]L5+MI%Jڎо˙J\,ƭ~0ZJQ]8q?XVݔ+- }+\`Bt+ #yªn& iH MꬢΔN+Un?2$*A~>:o/N1ٞ>@ϻi5os`6DRoŭm؅4-٢y&ۑLT܋ K2H0s(1ϕxgNڏl_3E =*&,9~+!ϖzjp@ŚyF |g=(rE E"L= boUՋ"F.q|h2F; + tV6dn uFN%/E^c? ߸wu=B-ٍKX:TJ'eϽb*hs 9'r6G]ҏDڈ9RҌHUԖ2 ,uZBèC_x7=M*z;e/]Uzk>;@vSs tej-f׸C&Nt~5Ϊr)f5f8s5F˷ҔQYU! -\|/U4Z +Re]W%(oLOٷtI9Ѝm/ U|)Y[jm2Y[6 i $U{Ze şa:Ȯd/AbzɁL^)H fX@.;`UcXLiNTЖZ_U&aLiosw Kh ũG;AVڷTyR4"jya;@#Sas5իJ2AN6 JAfE@4OaVQAPp- ۊUOӈ ·%P }M1li /)l=\w^ -&¦X!j -X9[;=-YpKGKoH'遇0UCd$\+Br}GQk T fϽn3ΏjE!AKH41`5.`CF]H{R]/]3YuP@KԄȐ8u8#DAﱴ WIqqΒʋbek lRgWZ-,PYvj+plnK/ yEnO^Ub[4Eqj. ț ̼~+'z94op‡Xeq- wa8:sRc2'> ҠJV= E5&IAMϰ14C%`"rF|(GLr6u)t{8v^N9E\ڽح_nЦiZx -kΤW -Ӫ^C͍(9N82ϣEeBA,QBa2".蚮gh}gqu5c}3OjٶЮ8v& 6j[ (u~_DlcF>%uB -W}pb҃K:VqDZ,2 &c>ب\<Q#K#yPq)X4u - -Ǚ]'@ LɘyW&\Un]x쉨nLϭp ~s[$};YBKnC5!"&UOt꿛i>0 ip-Y[hR%hX0Y9ly+tL~SOo,V%HSuN>Y:*S|'}UQ7Pdz*&}Eڷd=AD`'@'n'+K.bHJy@NrآoUQ@BAH=UjUk<$km.rW?:  -@8M4'9KJA ^AmF5x-n R7oD~F! 9.Lk4hFHuLrNTff(x8UĊ<ύےC?!LE5}U(fv`X}h+N1Ie\۞*h[^FP;rw2=~.QUo WQ}& hTslUFͥ+QT%5vV'CKSj6Yy~Eﱞ$ES(*N)AQQw:itM0/Y*NߛQZEɞqofvmI\D~l=Xr@~k^V&|SO{hƔJԝBeBW!HrRHzia74B'M NgM2ꝓ5@(d֚EeN}J<A h~r!b 2/-P5R|G!$lbsn 0 fwVː=&&,1HPdb+~3w|M{ڦhɂGS/mS6^d&X zS.kV/YvRwI`VU8}^LM#„ہ ?TftJS cQ. -dPRa y yE-c[]-yƳ0 -uLJX1/EKR)<e"$^靁]_r4gE\ z࣏N$?0-DbnzN?Pd/~^}>)tL#[+]>O@֪DgL L Bg$&G1kLc!@%cf0(0'HZsC-gOAw4z:}9~~Ε<.qC^xnqxX;~)"`}Đ<ƹGOqaY.c2/xK8t2g8 7Ê(UaQL+BXUy8nQ WKWr$$S SOީQeO ϶-ȎT0tAYU"k1rQ_S?+@9m4hFz˄i8r<8 Rz!22+8xfz>ݏ^ZTs zHP2t?"H[<`q {Av)&ǗiK~0;w_v ?(U 4gڻ -슄35+Qè"?Le~&W3xQ1%et2JԛuN{31j]Gca!*@v$T<]q3Q7t>P9tWZ [? 5w]9͠Z=,L-{-y(q-7pm]z)QW#duN G>ߍkRڸ% ~8VJDY9/FZQ4e^\F:k6*lnz͘ -hՠ8,W 3iFX44}[4ah^x*7A~^A]Dv$.\q_dz]u$|RW?ө\2YKvffKX?l!XKׅDGFyK$ -NUs8fX)J`e -3:xP!R<Ϩ5%ijoA4Q\+Nk[Ք|O@˜GՁUq&Qp4p&Q0j9]?qgEؕ|nih{a -E"$ -23$ -!'SsNK8.! -n **57 vl-XD#F1HuP@欆}/T(N F$ۀ7u) ly ՝Cre;vSm2OA{Je#M -/ :q#C}Y$QafW [Em d -=2p{UH; $ -A-jF+r:U_*h \/Q)RCRU"el\TT3ly@Ⳋ<)]ߺϚіg 7@UfBmqFB-3 +X\q,Jp~]q(];S#Y$ -~񜒖K 5R=w@Q6S]f91+gT&C ~or!z|fH6QI=$ۼl4fd#S[{R/Y*`>^I*q?"Ee hg:Gx:ψ6m) $(Hc0U\^8أZa#rG؜pP((Jyd. xlb^J` Rl lR;Ji3%xZDeˀ?)1s\s[Xx}!RGS`>hubx$ "pjլKѵbҳ`)pYsべ0姨P01ξT]j%l=yOf-="spyDc6?#LLQ0i|n bc*0GSs0J7H6ə`nG4v -l -Ln@W%HԤ< -^ ;P@puK̦ PrfZ$zT"p @Ź ,?[`3ट(ɄЬX+ =>afA -Y!#_!KDȠRd%~$J Բ3eA% ^8kgA- :bW`(Po_r{ҴZKؾ#U2F16T,I~NcIb B%(Tr8K.i؍g FKe0e0Sa%1eèsZ *r/Usz,><|0{li(`uE"Ps撉MR|KiKAUAU[KƳd,N]޶.K|TkT*B)U, K-hs'-JY/i|iFO`s= VVi [H[(xb)n.l14zY jR*CAN}2 1RJű;P LUL*D S2 !T]h:oD1:]JkcQf #ׯf+kz~437 "B|_1iqF\C&u\pHP)RC%Gy=9&(L[kVx' VCyg -ʁ)@heӎMp9 b"G )Vs"[,~eV`Z>bxir);}MOҁ7.dm``[TPH̔8v*$V[e/;VV(U9V́lB6d&kq;hE2\.&FʤQqfdܘ]2Hc^6 )ъ_g9fw:TFIr)2Z&&G–^0/J [M -+CBfPm6U&w]결)`sPZuRqlqȶ -Ce1&A^7L 9΄Jb^ LIi+o&? iE; 98TNkT:0h9+ֱwF,DAMFlGM+0HhL,*΂7#ckG״Ԫ. x$FrFo\M@33R*޸3;Rz% wRȅż WV%u)`9|`o[U<1o\ o̯p}Z7nEFD}1D06PE 쥬 OKJNh澢l >pjJTR^V5Q /f0iS,ZI{1lZ#FUN1f0gVi#}^gQ[+'B31bd_BQ!gUm NEWBL_<}P%y@Z. G+GQ`%F OiFȶJ 4pI8Д=^9ِ5)cEjya.j M0pFYy)M 4Q@HV'T(2,qU," 3|@wV"\0DMc MbmIlXO 3SǁF!O^e0A -5)M&"Њz@4=JB:mE']?$5ԧO0-EvJNaWpd3ܨXxu?`gXPԞi̗=YIqKv|K ^_HPP.)wSP:8HLA0 g9֜2/kVh=zX!pQ,>hau=$ -G)s'T힂ä~jj-J9&*2KaOeOF{Uw25gT)&?TЊCJ î[W6B ٞ,Jua)W-sTFpa?OIK@z5⾂R0J,4ǧn71 - 'FA_(8n$(=1 -J*Fs(xQeT VUQR$!,6w!\h7\nvI?AQ -PIt| oXiNr -Ψ(hpAh!jC,%TJՏzL_ Ŷ: ϴ$1Ca -\f͙V`RLH|#$IIZ&i2$iO˞ы>( l! ߝoNýi9-e -%v1ACNa$ ai`=zAN7ס Deg^9~ҳ֫MiSa/:1WܖDavK*0zd᱙ oqbmņ@{ $"J=W@=~PDD-hjd2 8 q_c|:hSIY.1(kN%e"Mmt=#~ -'G7 {H9MmAF!?T٧cH4XoxeXO1@s͂y?<ʰ~Dׯ8~i-O?[ɹw '6QNk2OI>oD]Ĩ 18 OwKr^6c#ezo&j3ʿ/̷_LCnWFڽQpUz8 Ԏ\0C{O-``c0Ab71 CHIM oJyQW]IK W{pXc?|qOΚ:o}o,=m{ YsOv~ښ)gՈeirZ@?z&v~jOyQԛOW# ? }֜{q"[JSv[1OX)H>PqX|␺HBuNUУ -qȩPr.dO&t]3AW^-ZSGoqapQQ.O9-6z0} -~&z)Zl"V:)w}ql/. o ũ8b?Gʉ:{&]2& 3X-ۻrA6!a@VnOՃ!+ed.Tg: lGfzL.VJ!k,@dun[߸^iXM,ntZrY>1k - | -^\g̬J=y2oB)"]zŐUv$j({PF9&(&QeaiU`N|uN\* 5 8΁&g'7`8F:oNc>*D}vO*5<ğoI3cVkb;wy:pQR [T+2~]Ti>թR_i}E -q D_/Rbx:(ylጓ{@C ;FwꯂT9Mٞ߰$%PrW +c/j@h![ʼnEB:1~3Ar;׋KM-41Kq :K <Ҽxu!Q]۬eAt@~QA gC%8 {@k@2vNtSglo1 ,VS1`g.޼vPC/ P'G#x\*;X-QF :AtXB قT}dJuU/U]D1Y] -P5utr}#&z>9 !<.wp?b(u5 P`fF],3 --5O ˣT9UnaYS<^aW!X .&+jȎt9+}>i X<%+z}QO%~ sX ʧ':o؝˜{ϠD˧:UJ}mQWdYv^xiY&Qǀ/UV>FUrk֐X.J~C`@J$jQ'*ݩȠGM«ʟ(+ +@-1tݏwJ)Ew`Z?᠎:{_,Z%ʼnJT\Bmr- ;|`B+"3fT5iza+Uu?`oXbi9 I ULmAvWԜṚKUGV5?POjXI){WMVzy8ДY |$*a( jb'. -rb/öp 1IeIo<Þ1LSg<7+bU#z\vNHv;@@[ ?J̫"|Tc<*V,:Hg| d}qX`:q*$5~DQrZ .(3o|Z>n#Ȑxq ikh6:׷ qGvF?2'K 7lQt\,}dT8U,Sf  ǁbR,q^+kT<^ΠQKݏM* qO1GN{7EUrHOqw0/6%CJqQOchkIJQ !,?` -i:y:~F',8(MT7 I<4'ánPsO^7x)Ѭ -7b'$j3}s$ bi]Go%w3 }t:$z_[ݔRiⴿj2obũ'ٶ% QX)kzC{O{v 63xݏ9M -~[f(ijˎw`~=ƝӶNdEӅ_x^~y+p<( C.1 -P[1j>i0Jl/G~=KV؃I{8eSA -ƶn+@6tӺ=#UC$(rXh="yK&QWo>gg푈ܨso)ϧ]E2ə+ Eڱu0iI^[.  *buG~y/ZRΗCh+1J@}i9=pFδDjZ| 䝻Κ ^Ja0!Dm;w*54_aO*sB1TOIdz rg[i.23w7C='#BmsAU5w`r\‡8q<8uY:G1I 6ڻ,fv;UP|pY&SxYG}e=BN8`w4$z3ƽ[X zէ̴_3Tꪢ4wwTNq~f790鬹i;"*Y¾x/=HLe,BU o7BA0T=E%OKMq Cu_5a/B_~Ky_x1)u}]\ q#7xxx^SU4҆W6xCr/"q9DmN= -in'27:AT∂GƮ{NоlQՁGN{NTqfyԖDTt?>țf ɿF$g_vcкΚޞ^Q;Qsh:Fzׯ9FBrXR ȗO6\uq~$m9-sV0}0a!}S#ĮRC.QgYg[NڎW}NQ_ JY2e:ĝmm0wC&g,58o&4#1#2O3RAQ}ᐩ9j?x --Ox+'9~9N?b0sZ:9m[WČ|{ 5~| -3j''G㿊{]F9@uP[aq Gr@H")hvN[9QO?5ҭ>e{|¢?>a3p+=i-dO }ލ^zK{؁}Yy~Z]/5o/Q[)1ύ~wK{y{; -YoYo_1_8<<<y CB27_`HPӠ ~:msZu7Oڏ` -Sx#!1TPAAE\]pwNR N=T jէ(FTz3!qw3CWG6 ((OIg2z[FQ<_j SݖDmDFzۏu4VCܺP@>mU`OlhA9%]f_ۣeN5?S#)C>t9]oBuCWaI8t=#|C\m<=D?w @jn+ %Tz9e|u>ҞCzRdd ̴gY׳ ]hP[(X[ ݃ e:Kn׫OՓDmMtڒt}X m90Ym`MX=T,&QzQlqxHf0Z"hrD2$i irDȬ%ikZa$63[} -Nj.aY&Q?%g yBD; go0Ɲ --Q'@@ϡupNC1j7ĭzd{mgdzH|2  -r,Őy ~חk^ 5^R9kkŝ7bOK`A({l8 Zޏ}t&f!q=u$=Dm3u<&E1w`5V8J2|| -FOC@c ;)˰^Ri [ f冡9}w&ytp*+qjA C3͊oj>D;}K<棔{W(h g/ -)3'#hf0 -&DP/C;xʰ-B}{H0̜Q_tI{m҉4x - -PӼ_yi`1Ã`YipOg91ƌ~b8-3MڂP>$TUDUH9HU0(  ->f>(VDZ*( E@aIAbB)ÐU,6On(4ĺ^\y^TN뻺\,BoS[{0-wI\<MRjK K3{lyJd5q Kci7LovQ!^UT=VsTTh/rSˑ$ԋ!9cMIT||$}džpܣ?^7REiAL݃nebC>G)W{B`ee(4 ώ\ك/+Җ8?~$qĎ unwLzAVt:LFQ`F8-%.k:By$mFMZ6<=PYG؁[Xftw܁3YzΤ of֛ѸkKX|_vQ@w m/u[ELiq1,]aC~M\C0 \Ug= %x6~DAQxk|X묓gcRtJ6uƱL4R!Dz\Q@=]n:B.Q궁%_@і`xFXcpev9#уqku[ -.(W E@A#̰!M%-4@37Y˾ɩ jlN*}L"3aaޘ0j9 Y4c gU85hEV遍ر3Ic&1</~9U}ƾԾ'UЭ&tB{n+YmD~~&NnEV{tyPZRgKG -)dS@j\&w G\bd+jcOTc)ؖwEXwȘ.!3~e[=xC&T'T0YLwWP8ZEM34;˫vuԞ@LEg~y'UA䚶SE3l\>Q_oza+HrdH=@.jC6<$gC[ dѕ "c@X'E@ITUPYUF#bl 9 V=v4/3w !B!&r$ uEPחZTeedR~6'Pj[{c j劲#A BĤ@bQ|"xD7m4݀ahܲzFVy#u m먉`3?V7 w +˟Zs4ptZF>TSmZ(52X)&'OxIhm/݆B p~^K1ZnVN@)Vq4һ[pOǎQ.yhGXʣ?2&*Eد[Aqaa̟Zg0e#pxkXX \˙#/>]wS1;/hV Ap8XzzQ!!|0w`qyY8,?_A"BdBX _ 'D$9C{jJ"'֢~F娸y@=M?Ni>ءP\09D )K-jIF!ʩE[2`%TNnz!ymLZ8e^Jra -.yt!GľU32*`g'LA&@,"փX-%pEh9)vo ï70&B1%ށƉR -aԊ -$v ў-~Bǔ×6t"!ɕN}Vs* {y vAD}xrpxG%M)/@>v٩V CTΣ:/k= -/4Mz iBHMoKFJvgT3 IGu$ ]ޞV70AO;6n 7Iksw'Vdv"br}\FA*m8>u=Q8OEF6e $QuؽoDj0 {2UЏ[t+$mͨ -icPt}v(>hEbo.>#',p0:8wWQWǀ$wgDq D'E`Pc jۜZ -_rΏPDǎCh:Y#*#;F B26IC.'mL?"D>@W3ל?0)`ۨQQ -˗ H"> -^*PeZ8[$.)ko>+oJB6_X lo~ {/}GG!, #fm-_1EU♕Hb)$\ԹG#F-{Zk@UsnH0qFzʝcv-AG˹yeY毳Uq$] m.yM5V $)LZn -'@zA&d-Spv}/ 0Dp,vBw 2ȸfI{QSO~yz ?f!DASLlfoT D@la"#:sYK1&řC3M߂8LskC5RUXJ&XS8m'#q[0|X2x<LYn_X_Ǎ4qgio:PE͐%a^p!Cqd 3IS W!._kp0h%1dOe9 v %;^$)=)\%g; ؁Q\D)@:_ejӦG])ԋPl+į7RFu},JzQcf,PZ6.=,qvESc3cE&{dxͦ~ -aw2sK+VZBIOdL]f~ 9`DN*R0&&IJ?n3FЏq:moT7cv޻2z_RU\![@}itʸ]e&8u40Y:ڎTEjV[uk%Ńh.Θj xS PX8 '%0/d~7rٴMu??EG=M_EFm: -rz;#C01 c /3P 031{& .Ūpq)J  Ayb.&UH0!_oߕ Cd 'i;K\Nz5SyT:$FjlHZ,7Œc}:ƘV+AԻ4I%icO?S=HZ" ZVn4#1&8 ]m͔\!vi#O!V&'$M=R{MEIYy-~WŔe(+ {uSo"R\%捳L`_&AL]aW2q\u -38:G1ZIT+24[!'ĒrA.:~:&E6} Ė61|nAd\ -gXuA#k;'>7)zArѨA93LI8p1\ x!&B?dhq DNWgj. # wOq3&3t=`"+p4cYRnܵ@$C - 5#y`i+M%0ǹQ=A"!U@Bl|G@ )䐜2LJm`.~XmކPPJ,J\7V#g-q+s^WˆB#6~lwHrG.1;_,O"Naܑ+hǪ\LVF&JxK!2F3!#,1m'M5U ].y6\&A6>5{TN_IMA>:"ҼŨxL&f&GSF 3Y8*Ɠ7 Ip1Upؙ_HG6_G~fЀk0; -YEXG/0Nk3fN_ dndN{k]O9E+-cǓZ8E*d7h5'7c ^J#`?atiȄm]d,ѳ%bGpO]UώyٜWXNSlot5V BX .NcQncU#x|Bz* 'A݆2{Jtt eCɫ,4 tpO2ZlorAް|׭T#ͫ =u#E>Dm>'b?JJ p !YEM(&uHâK, /c;nLrֽn4kt?o5Ivnjb(/^4O_-S= }8 -e~U5 s;ia/D>?/?USP⌌"wX}A.꟎}r@^{j%vVVJS@^>vCm#JZ-WGZT9R $Nk_v08TbWnBZCs%,C15Ns} ī-]vafA]0橾L}{xs)ssV(ǮJ]Jg3ӀDM6:>dRۈ GPkYC$yJ66sU+ANhc @9N5 yE*>U7NX%uVLY\yi燌Dx>l2x34Ĝ 䯵qǑX,džv )IFh KR#{oh@eq}mRݫE g"G੟W/?&$]dJH' \ᮂ,c0]X6BB#*j\[yt=#8b*lSLygĭ2(Cn9emaITJx16Jژ>XNQRyf!r6Y#q͌yqEV]=Q" v(Tܽ(XZBqGMa.7+] kKJ;KLcoPE#u D =Tjb|с,r% qI9R'AGbQǓ.Ff.m<$W'/{?-X7"/F%{bzjlw̎#2{?/|Ov靚V 2ݾY ]05i*TK9Dz׵ -jւGbTF?dJw7hL{؈pLXw^* n}Ɣ=O@ގaO+U+xVrRhg%? D)0,${AA$NP -ֽ% @@^{IY&H -xNL٥֍.!{PyӼ+cl 8*;SgZ?`38۪?:\Ȳ}ˑGZ2WuQ٩,u1G]CeJ - @t`]XzhTLP9xh,k44b] +CrT3q@ 1T?j{x W*W>>\ݴ2*Y<>o2ᱨ%2>1몧Džf='6խm#tUJ[z@ Īq] -OQ(Z5r[䞢C5SޛmIJ'\W7Ϲ5Mn7x7]>:jm LwD]h=}-g."zF%4-S+Κ1t RxTWFoi/we(5CPȠz|mђ}fJߒ! \3_4W<_7>D$ɀG֙+Iq)Iد2B,̉4b|i:HabD -4O/xѕuꙣR6qbNb^~񺱺E2y|B88}%P -qV+s𒧍6RE8!K߀0X5(3i1¯FRЮ&PU(Ͽ BOmCpABN6%ΪT3 7K:Q/ ̂sA-WTUlä -=vx&YL~Jk\&Pb$ Ag 8UFֲ3= Ҟa@vѷ{ NMٮn5ĜŻg!Suatb4e7._l@6J'N! 0^X&f!5i5 $ʧ$ t*IQVxhLգbUM,] -(^}q6sd_bB6:BtGcDAr>t&w?cǷ/G.%7 57J{}ּFȔD8ӜŔj-T1TO!bNC0@qi+I/ -M8mjPD"ɲN b^Ŕc5*^L _hUV"q :v(b^*JfߠnXdB@1a C/z!Oo J`\#[9k;5~Jxj1,Sڔ6\5HɹEC7q^t7Ks5?} x5eƬGArFRsW{[fՊ?c:ݯ{ -Pe!*[;%pR=' -pA<ŋWM!/g)#BHz5Ixq\w@ <2c9CB<# -Zn?b%c-c"kP*U#)Smh`U 7=Sū*FMVIR&GPi BQ Co`MVDɖZu`9;Fb$uz1[j+Qa2کux2hc¡hܡVavE ]fLfk/=0Vq҄;s*}ݓh)6˛UW:Q{Zye>K4rGQʙ5bQ<Ұ5oqB}ZrG,bOŴaV$8yd|1(7+z!cl\YA3&񮗰 76F8f^սA Pxh-9ss5*-RG,wԀ/ny$Y~& mҿ- (6f7}N 8egG&o2x,0VZ$WbߑyhKl 93.v,]v&ɎF|w`]ҥ H]!lb>ԮK3?2W5sQHK~4W)3JYV2?|AMom~jbz{:jydRˋ4lr{fƅ\!جLi b b>0`d Њ=0#kĽ_vѹ@"S Cb$FEWE.oJ%JC>O׵_ծ<;9Kq5xc3mt(w=!ChxR ೶1ժc=?Y{Uw@-%Xmϓ M3*4y ! .X( -T_P4*$1$u ۽p*Ŭ*?FēiO3bBckxI9DIaZOW|;&vyυHp]FI,4е%@W2y;\ֽGӯgT=*SOdť2W-cD;wB8Z6~hF |2>Nb\ Vh~hi8tGTf>~م)<%^62v@'%&+CS/:bqa oF۬tcVD;G: ^ƛMMʴ*IaT){dtlcHT3n~,OPt9m"<6٤d=.QKO8*9_7^.DKZeiʉZ0-.Ռ3*P^LD6x@Qƿ?x B*l*jEJ;k?vI&| -"[s5'@k{a:OP:&R+xz lgilsl3h٪`QU59V x/WJ^aŤw3\ #˹LN52vzn4$ȴl'Ć$ "^R^Y+K .Zt-O~8;,%:1fC2SNHT7JĐO:ϥY^۵.@68CxZs_IQ~Z9+rf;uE[Kx{$ 9Fo18.*̀dg@Fj4(?FWSMn9_6̉7z LXSH9z4f!4y@NhJ2CF=?1QvqIr%bS6fzߘ0a)/t}7dm:,d, `! 0#Ɩl 9X<;aOgp>,lg ->(|'?+,S08\_%$6s6ƟP%fA$jv#V\0C "P7U)5v s/jU+.Q|PPc(.-dҏlMݖ"K>Ǖ\}]HAa el\j16N׊WfVCH1N@gNy-%_f^q!(}:>EqǢIN=Lp'm{{/kXK =]NIgt?;r:6$,y<#[i߃u|oONߋqt$ Y!>yB[j5]@#"p(b$g\&A=AKfНS Bo@p0Y_)܊X>b2C\H'AL*h79F R4& Y%2%9IF0Y49mp[J KeWP۬h_w/*;*5w ;E]pT* UD%E9@ڃN#e߰䉘0:if ҤߨEj2(PJ0V,7g"#M$=iZ{@!dhH3SГ` -D\V!ws N7!ppF5d_B-Z [àqh -H,| k9`IF%(@<$[N~IT~ -qņF]Po+]|pȅY0.QyDrqIxΑ<Ї'+Bn<ޭJI@TREiYFb>D1ڔ3f@xb%FmͲkҖc5EK4w<}Lv&r3u8 ]#!M\YiH1I|\+ 6~}IDŽXJ($8hftjy+́`Tzofo8p$8wKStv,_?/ׅ[=kDG@ - w{[e혓f}&ּ0$9n)P"S  i L\1%SA'> XæS4aFU(!mun?ԠIsL#v!`\KJ?u뇽QG/>RRSi2ieKn,Yrwj#͟@ ,S/X!4@>b?"Uvz,J=UJXsq8s@m+ٖUiwxݠү-.e@q7ct1]D ,} nC1x2ޱ˿Fm1X?Kc3h -Slcݯ6D?,]{5a/|A#JC"q4N8*C C܋/Ã~ x'C(`ъ(JE'jo&t oEzD "EiCS|.^D}B1~6(/sOyCT\ij)f SOZ+b 9ۆHVpDR>k!x)h OLcCl9O.ʛf+Xrl =G)9y?/힛(y9aP\SAEĉ,5_Hcw7p!w,pGϣ }g?3(ӊS=vrB8뢡IW`=U2J,'mE˘9XcЩ)OZ[ё]LohEQTX?Nh 2#1[l|0(kuVTښ$t(nƼuml'-wU['zF{@saI`l28jfdNc`n4b9ѿǮ'V;N['/& @*!u/;t)Qfpn4e{-%V+!\Β1~ ͫBoR$@`W.gmGNQb+C4>?3; lA،V {_A;Pl`ַt\JA Ps'odMICtk>= 5A_(c9֯%ˌM!@ݯFoI/ -a%&-MuS*&]D[6 * 1/Kߋ z&$!eYw,_Ӓ)#E7Ր_Xho yu1V! oe 8-}>66rK"Uq_#F4:%:ÿesƫon"gWY>^5H_Lz\^gV-21:W5qD4RDZDDžcpX96t,r`wXPZMeІNdsx`+ԏĬre"Yc6S ۔ Lf;MN9v_Υö2>.Փ=3;sh|?pCV:¼iڮ>')<}X~o (7)t3+Vh/JY. R@=4eWVW)kvh(x\U;TPL^_q.Cڄ4ێ Eu5DTgU+%0& -׹rf*lpKsgưxY'M)o6xi?m<iՠImmr2^Nr1cd4Z3#i)61{a`*ȕ[YF{~zb?zz&RjՌ]A ޴/GƢӡ8ތY^%8- GlGPM%6R@R3T7?_njάzl{BSI"q"m/d'~GH!4Q(⏝0XOnk܏>@%$)DC[> (,e)cđeW~b"-S>k}Ċб(,%Gd1&.9 , beaY?{Z| P;ܔ2j$ϱY&?JAAJ,Ma.ݼrKmҁ{+ZyٳE9Sx=Ab!jy-R W6&&lˉ]HsczglI%'Zc_ʏMу2O -zi]D>Ջ3z;~VOIwP )~ջ% 29mhxu*3L21R5$#uHxSj_;.ijs5Sވ}C'cfM(]g[U:sK*QZn'7ՈAdBLjv7\7tэVn±uOjL^ 3V\d@ԖɖAk@ѿzE]: #%ǚz|^&A4dؗ׻1P 3%xxh!hXA|W)UƀJũC]$1No 3y ّ3H,38~j b m0Gel$>KUP"MKR+o+耣p{-\yw5WkWGS\BPC$y% .f{7|\\t;8{$w$9Mv|wIC}c.ȠOwpbDd'ݨ!kwPk^+*+=wE剪c/bht5|#t7țy?t{ѭn~ }Ң\=6i(ޱ}̠QPx)> |Xmxݟ)T}?^j4bXè8(irVWoGA.5\})n>0j؞MZ7q XAAZ+{:N!v<eiYνu1Uj39T6 oxۃnicTO_܇A1}4_N`Nh!X;|ytbzﶲ䎷ȡu58fPMlLzy\*Lz^2*BK Dz^zIbY@5}c{[RYXWǭD>;~g4¬` -fZfW~(Gw.Bzia)ؕ>ޮRi6ڣke)2SbTMX -+ -jK޽{ FIcjOa;>Gc_ -,!G܈9`1X}v}+@ä:>"w#Gr{"Fhp1*ÅL塰лtC2k^]A/G7vU5u{V7a R2p497)C%Z _2vaF7ޅ^ `XӳelhthT#Nv96sK+%6Jcξ~3nS@^R90)W/ q!xv4[y宀tnfRݽh[礞 -^6IVV, -Or_F=+3ȼcCmYݕ9Bpҁ%+jִGqfbI4{\|$1KU~ggFt0u7چ7Vxe'gx F0fW?'a{Y>3~ҭR()AQ.63MSvBUXMy;F/AZF&64ے@i(/*wq"찂_Dz1.H8FeЬP3cR4yC.6.`eQ4eKr ] oc"^SZ+HЉ>zAg+;1]ВwAr5_E)#eD*=kO)3c<*\gTDu|!n0 -VSyOة=βM1W`u>X[ra9L9QvE ,x0ɲ>Q[&D,fdw  U4ro+qV*`z;46?t:~)hF҇99}!6#>.Q*/wWj:I_%@[US2"e`C5o{ -X ?W0MPN=_s߿iit{rޓ>55ėʬZ@Jx6{= ־Fqe4N⻞V0Zzr@~}Jz-˝^pv:d&iLoeR{;#0^upՌm+gUO:gxKcAJX12]EbXh o`Xa 4j.vƀ]p4:vwN)DaHbD"8 W ^ -/szA6O -i@1qOfJ6@[BA֬M07L X*U -)`®h@_ :R E'!GWD`։F`5Gʳ5d4D8ŧ#8/T'8(Q@Ww 1Gh I\aL4` z&:1cixXVwNx'RQ Z}0=HPcbp%`JK&qɶgġ["QJCuB#ZtPd+l`R,M:L\p`eq6A!`jaxoncOSV9Y4hd- jX8$n{ -Ěeu K$*AtW(<(P)DTN;L[ y]: *#g@Ld )&LZH;ikgVyYy RVHTnq%hP&ۚIII %a>(ΝR 㠡&986BB[s.6 dZ" d{q_)E>=|q 4 iG?A&>&_$SsXbVb:-,I2H͉hP!Wg6`M,Tc %_`qpL"=?WB@cϫ5d\ 44LJ>"rЀg@q7ǥ)= ZxIA"6#{W//L3' wcP"rtu^=H,.dI+g4d -K[ l#}uͱx4YiSG1΄&Df<"ځ9{,ψ搭Y7*[TdcF &YV n Au ,n#_G -{_ak -ɪӀBFl&M6W4:ڣHQ R"IZSA>dHwPJ}i؃ PEC2ͺ8Pa?PW9YW'L]sLM2bO DlDpkf]7ƀrE$6q y ՜ݾD]ìOXl|:у1ZJ"BĚfuP~7zTؙUt)GhBZQ*j#g&T[PS E iѹQ'ʬ@#0ޜdgT1&QTq׈T$Ca=@a<= F;Dy|1pq𠃔2`<9E| 6PjVG X`TF,Ӭ qasQx:KDX!𗖋FE#,=7DjAğeapi -&0"P| a0wXYJEksu- :kKJqH0ޠR"Tnqԁz2 I3jbN.aiP>P"_@8Ց@SM0v\#_sxyAd#kLML|nDGɭJ+H ,Xb=5'F^s0o a|4ns՟GHӧJj(8XfY$2C +); fֹaR\@uAƜT c" y*Qa4Gfcmph`rVِZ"8 t&[OpȀ>Efݥ֟\_HfDP˂gKب`<V m2VgkN"p,Ha5p}Ή19:՝ OC\;5e(!'^fa - -#PBg$1$ Qmݱ j)b/H/$ C9yiȋE{2hfDf5:neٺ⒈mu,𠸉0KeC]LBjLɴD|% O 0x%\yo4\H|OLߝ&ظQƃ5 DI]`p, - '@8ɋ. nಐb,R ҭ9*dcSd ",4ly]]pSV TUa!Cm6*0Д\M!Œx9Ӏ5Zхp4ly(2߈>:V;+E S瀣9MTںqPyGZP,ym2hN1\*9"ruFE$32Q~94ǦDIY<&+R{Q5F:|Zg3.Z/k *0 _YGBPH[h!`@}~`@mHuMtCD^a[H cX,>rvWPXB^sLIC]J+-i j?M`b"PT4.eIL4 ΂aLưL0dL\<睅Ea.Z j0`AZ0P<K B?Kf1P5 -H3L?]W -H~>)՚At”IZ=0@2s(80: u?m((DBtl*3Eh:Rhxl  A'C__x -g]cmB?vHftxYȢEjyD> F -N拠f$΃})(8H/dylNl:.=tC -Dh`xbyRO }(E^spl1Mp24PO X";!R+N`AtkЩ&g0.ž0Q5z]{, B7l%jn`5hXyN՚c484\o*F%aV5FQB[w8$u,ÇFP{F/R-NA^ADxP"; Me4߼P1Pg'M"ѰF%oy7%F&@1v 26@`2:k7q'M0:YAG5 j@%9\lxVyFq{ -ͺdHb5r1$0"yBWA&lNa01@C]9 sqì2bxLHag,0FP =;'W4 ѸhtWL΄F޳HTv>P>p>oVH:܀+iC啮rR σB+5GGbpDyd$ ou}m֑0Hգk+HTV$lx8>ަ  Fqu'zex:#O9Om&#ZVRIFlO YA仓8<}i Ki\35'TGۆGRHFyP\sHT`q#' 9CtқDm\w֑1!LɈFjYV\ $#&5dk9|W{6 :*aHr@};9P׿N\r۳u*>l (՟jk6Q3{US&5&R*EcIX ՚u Lܾ=.~kh  }7j /@'A AxeQfDCu5C>sM;i4q/9jEƃSuqۆ'QwEk'L* -5T+%{k'QT.ok՝%)$!d5GFZ@t Hl=Jm=| ELͬ3A)/dwcх.\X 5v`@ކj* --! k.xș"vay[C:@S EӬ;}E -:=E, ԌHohAB [ -غZ.xY'X2[25UsЮv@|ǦHse.pa@NtϙxQVJ}6D8 byfyo*%uG28'|\_6ΰǁ"P9>n)'c3y xevaZŘI :iCpֹk y ˳Ni\{H",[:f x 60"4Nďrɲ5FVLf:Y5)K{.($Nv s&ie?a}2$Nܓ&lD^c(6%m8vPy$QKL{n7߈9͂8D!x29 -%d@+B'kͺIh*4 rtQf*UGiBںr"<["D.#ʭG6>Svδ߳Vt:S{Knv}^VUX+uz*ecNl;SNwβ:w\~W|gH鬵8iSgFJZi޶>LRSҶgJ+WF;۶)5v׎?[ʯi}yrl9+ȴm{y{d]ktJ}6g[{˓o-)mﱾ?J(OJgx~/zZII'$edJ9/SZg/ Kz{ۿVT*ldRVeۑOK,Jf鵿K3nS;'`mY)~VqJK@Rk ̶lp |=糝>]OwiǞ:ku;Fn;;uMޞ1u7V`v2ǗRKgSR::&Fvt9٩RJo2Fʗ[:'s^);Vmhx -lx]Vް0Y9BPylJ4|*LMe\Ś)!C +LM%f@o -܁c!y=T$QNa\ WT ; ->R-/MMK8z5jm<e`b@d<8d{TI,T d2\g+zH׃ I O ߐ431:&.Y"dyWo}QZTԐ 68\RSaE -[ XST9GIhdhA칰=FElq7.rqX4Q*$,N60V +ѐ(.ӨRa00$(ͬ(p]# 10R)Cx;)b 7*C31<6lT$ J6>R, "a2JtBB5 +8PCb%eVjIPaij*p&(({'œT -E9*ry nlBoZ alR lj@ 0qHgbS(x/#Nh*o *JyxP dr20 xU.M)Á"Tyq-Xl<P5he' t hr@2.Pʋ$bװ iuME"1>SfJ7T>6L5 2 M2 PD % -a( * D|!<{N -LAa";)u &2qIQDWQ1@#N+`mҦV?#(|'eaS) ;8 Թ+eb :(P/rj*pj<(A=<$f P]g#!/!㽦EX8dģKr4 L"ނK&YFFі4q<.X9Xh5<0Icv.+6A"5<ŶN[[--( tfWM W4ȜVג 1eFt@!.&À{Gsp,1Nax]z`@?%ziv[үkO3[k9){Zez,oS;e[rU^n-VJ}%k*凌VNKmJj}׶{I[ -TgwN|{+צͶ+mwZfDŽ@sf+?e{rVK~}ʯwzu*%߾:jkW[[u֦ZKoi>_uws{jl+}Z{RrZ*+WvOR6@[{%W~;dyĕ4Y,]V-ܷV~Yk˖'u)*g[e+gj}67W3Y9}Fz3S_Η-ZONJJR~W[ROK.V^׭KZvsJ -Pk?L+wSN?i9oru?)[ ky, - R++tzk| -xKrBlYfu-IkӲ뭵J\N^;YڟJ:'%Urٳ-zg;߻r-]Jg9iOڶZIWuζ7η޼@Zͳަ4[z>ݾؕm_i}.~IJ][csd:{ؗrJd4JSi*M4J;md0]?zl}Kcg:HJ[6m[Nmd+^emT7^^ln/#MOZ)xo3sSF-ځRiE9b*M4TB9$TcҖY^봵:u{W:JY<.=c:oWvlG;k*>➲rϵ)mZR:ow i_Ҕo%m -rXeNϷ?)' [Wүޗ[KQ>\]V϶rdp ܖFJoto'ߦF+>'Kŵ|zSNJ'儀i%X+k/2w_zO+sRJiNe]r^Qrߊ׻6?%V?erҦ־ru9cI%rfkN֥-geJ%_,%YsZ.Y/1X5+}jfqy9yY؜Y,Va.ʂA"QiHkLߥN~{'mki:dJ~w䯶V̂"u1cʕ%`N9rLr'-Q10,4 cUQ0> - au{[J;JYre?oջ/;Nvse\ҧzt)پ_)ڵNRlz-rVzjJZs絓JYs{˵fy^Z|y~׾~/\\z.%K+m{^|mS9]~׶wV*)mnϷ֧3uOeS~S|mQ6/{v3[)M*]VlkJUM_NJ}J[X*M}vL-ď]2HIR_GW * u -~fvFSD1if>@n=,t3D\P̘!6-$AKm\&v6HXH7dJjTl4g!Q[t֮T\1Cpyl3Ol)ZnFבAaA C ̣P]~Uu#le:h9[ƞ1$~~A”td7 SO7#g,Ɍ ]̅Mt=ij ;XB[$ Q{A3?\G4w+Z6;~"aT?Ѝ6ӄ<~)6cAdĻhӋṽA3W:WBrA/+U kDFJI^^< #$;}l@G@{ 2 P%T|87^/%~W*i-NY!}a9{AZ=6C+.gm1:]39`2B-:(`#dE*VE14pGُ%((,4 &B  E-1`W\$.U7, >rzvtizd9ajߐLHVe% :>=;@dE>xbݹI4B"ZH$jQבCH9@C*f2ZHgcZ(`)U&L*U 7@Hz4T-f}o|̚3ʧ:7ahyWrT0H5M -z ?j?ф)Â4p(mlJB#0FWD čxSc:BC!K 7濾&Ǎxo*Z/3vA7P 0A-9̧oㇾ_^I#YܛDxNbt;xBYPe]t勊}{U.MZ኏ʛkrzُ_&aw]] NUa$UYn!&@.Q8C{ĤaG sbR%1v[t9bib)3E&3CY[ `GJ5 -T -{oV.KD,9FF*NJ `WI.bDAjq{pčz54]{: LzeIp_5l+[*Yr5jTnY>`2g4M[_z v4]9N-LŕjX8vzw1XVN=0d$)giW ~h4 ؟Q*JL5lѻ-v8c튮0Umos?'9|[ۘ?Ob*)LŊ11^&=]9rW.c-v)#(*۳/q#Z#ПdA{|fk`TYtk}d;gZFY$jG/$Giۗl%,l1&?d;]BTQgڱxϯWד[Ml/QZ_#x˞|=G-#H!;DжTr6'}E.4(Ԭ`%vUt\`mTce-h<]ȦH;=H<\5y4p@LzNWOK5!<c^Z835k~C!ATsͅлFS2+5+m OPW\*g!]7a':@y0ѵV]i!ӛhOx'֭0 -q8}0D3u}L'qDbo޸`]L} 1]1l_$tOdr"ZZIP#aryQ|JQZS`Jd!G/.!~}b6gUOF*. r&rAުPW+SrI=ZĄ*L{~"&TmPz4AiqǷ)iz6~RGW !W.JJb]![q cn4P9'Rr3Es%RrnXg® ɼ;,^=9ؠH P7R؁-#%Kk.`]􇦋oX $3j˓ʥH1x5RVDFVs b!E]4(נi;]@Ђ@OӎlV3 PYO1q'(+ܯyS/#Ntٔ1zAu2#A9Av %&`Eʺ_YNdBw`bvSۇp9%r>`͡musln#]Kwt.C衎*[eWqdȴ3ک]|wJSĬSmgk,G`62hm $):h3cp~.ObQ>R2C ϸVq ?FL4\N:QM&#&[TJ,C:^'jѰp!\"Ky [z ! L#pk̹ -n'@€QWfPx,͈؏&Xܝ^!tpG{ Up@ʏE>`!jX4i #)wBf٢x,ޱC;~TRT#-(Mj&ZV@!:w0$!B d3l) rrCT;tˁї% ĐF uLgR 뛔FEaɆd!Qe*M! EGEC;ZPL0~xGvHjCCfnD3Gl"eQUtH:WpĐ4\{t(_Xf%4dI1 Y/JTYGw8v,~G> 9Uo4w2E1U?UTx)Jx䷌6*)— TjwѸϰI(ę"R5>ht̍RNG[[Uub^2§ҬM) evse<^s@ӄRtO)XhΣ=elKq52f$@d -[ڠ5MkRr$,QF * -=O 5FS"+QGĵЃɶ6mnhmVt#ztou#ښLy3Y#ى?Ps4KmiBi ũ!E癇xRXm#&'z$A5ScyNJOWJj@Ə0Cf% A&jύ;~Ey!@S)mi1e̊SF%I?,@W}rPq -)m\XP ^O@Ni4cQ"#0&5.6r9X#6E 7KFj0?S#q$rTU AߛsFҕUqk*%oy9gTE |xfj*,n^t#$"j`l+(O('Y̼^?0tecmppҚٮp3@.3 z\֑WP[!E,O@P뤶>^ȦΜ),r^d$b0ߔ57-4C,I} qI= 9V g CR5{;Z8Џ~d΋@I.8Y衔Ҧb#ʈ^=0.;Dl?HyM+O77n#ɵ.42xv+ *'; nn 1஠v1;HOGbB?jF;6Gx0 7SFOC --R*6&"гvk U,FzeF 4hT$:RGaYYyCSvA<4+#-VuB/5#z,j7f&` T!Ұ<^jMZbbkmLQv 8ȦQ<eR蕅 ,27h>@c3<;`R - ts((ZS"7|PЙ -6kL/+s~@'ĪW>p~pv#k^\#: @a * ptb)DE&|`cFT/4,&+:ƴSYӣ'6ӒƂL@]Q%Zny8'm<< yA`#bC麌x߰UcA)80Ck!6pT%hGd9{ĶFy#QPuyR2EXf9xQnOrjQ)xv*ȩJ)ݞg/׮$G}/J1M7*7NCj#}CG*yČ%2ɘRGh2ߨ3r@Q̢s4Cd +TR/O\Ĺ^kIje&&VoX0Bw>stream -^2s-Kp] T5"|'AcT\ -bֻ$ HkZ^&lW 3M""Ȣo^eZ7 -[[OCoEia]daIA9 -%^9 L .7PT{הõ1<3ɇVjp+%m` K)\L:c|ǜ1S5BT @'( k`={=~%L*YODW?miӚ"~3*ȩP@0 -ajQW9t-brr]fc}HUUX|%xNa,?.rbHωGOu(?*>npaS[pbSyJ5Sڼ|{L4 ?::2WifϬFs@w)6B4 =9MG^ >ޛXs$|g#wNFaK - O{7N0% LVn7ĶriJlQHc;8|Gѱ1 Br/ܮGj5QfQę0@O$n9EdXȰL}UEBu0 pnR ^Xtk+xVa Ap<4FwcJl F=-;R>pL0+_q]w)Xr@Vp|ef9^0[bQE† 2*YlV {Ru._Y ÛI䞬Xr@nWϕw:??R8m@]cȹ4T(8q5@&- ("GUrXΰQd;DOYXB&@ %bJSK%N(\=hc -h#tG-XfB[ZX=B•)'7-zS 1lCDC !yA!aCStٷbJtc`NϠ.ԃV.8zlEߟlG%*,AH>#R"rx[/7\jއJ\鸐880m H)_c_ -{v -+j>[7xJ~>D/[wbYwl\`*rwvv2!Fec.xG -C#QN } iɲ6NԸD/VGxʂqKIpu`ۨ &F KcdEz8geUƣk|co$cmGl&LJ{/r+WDC)2+%(fSԘdb .Yu[)r,QEbuU֙KXHac#M(1kž(0OKS @yoQSPYVMνR@[ Ep G]CW]b7}c p0U/[lq/$CRxZoIuŁ9`hbN ~E@ `v\Ǐ=wTZi  q wpL2 -C"zR.sj̜ <&'y,VL#z2OOԩ %iwݛ)lM{0ƗA$`Ln_$aC|w%j^ev;fDMإ'j2.>[&Q]9y4?RɌ{,ԯ+/Ei6xN/Cq -:z(UHŎ [ }?֟C0@4$ {l -( FT4{91axk'ޢ=YC {Ae1$MMߒҋ* -M׸5?JdR@\U -^f)v<.,5alpE1MMdɿ:<8,ϙË6' OZkeyR]k4q 4)Beb&^o9 Β8T5A]f\MaD9M?:=5BmZQp Tt8HSy8Y}ns*ĵiH% ŀoYkp, <ACA[Ŀ_*&SRiAv OA;}d $Cx8d3]<r: e<Lo& GK14/"O<b*I=Qy8@§<<>um`_i<5p5ٍL l IswbqGffLa(_-"<`@T5AJ G?|9>b8.-Pݚ=@qZҙt!gQN}nS`OlueMYԉ!! @C#pAKD|\*%VD, -c;&V,rh@rZj-juE~~TbG\ &oی:h$٬+m$L7[cc3Ilؘl4 p .d,=2csl7~o>9HFtkbNvUd~XC 3G[}V9jW'$qbGg  8+Hړ[.PT1RI|``[8]~/B# ͸hMeUrdSM5_}NP"DR{Bc)`4 Ct2U,K\`7C[jޅ팀VD3'fI0j>BEB!Δ:)B\󗛻|p6=w?/ E*bY1X=igj;ى&>21:ЋE\cU|P>m"vӠ[F+|S6q~B -i񳂙 /z%AH)$ wE>#_S7R&]9=GZ^ReaF&S]=ɩ&g?A052/==m0fx vR3[TRvD-!o 2u44Ls6_ֵ{_~5ƤmI/Su]Jw.w-R46'٠N6WφZ@`)R*!8-7f C;{O9hU!sȬLLHs u<;Cy6+7ve+M h2F?KnS/?d."UД!^cGV0^ːTD <,d*K:""ҝCg: 6͞" / ߐqY7ՙ|'8B9r",cVȝIpdE;3=nZN.fOe@-YT5dCްf y-_=M 3w@cd2m P+ ԃ%F_tױߍX>sI ֽ.Ȯt5Ɨ! `ICCvAusD}Rmn&;{y(!rTe2Vݟ;VRK4{A؄hfXPDsR ӟAߗ+ijџn;y) -ިJ vī^@,I+rŅlb%VO^Q[h2E@޸hr׶}W!_S{Vc 7'w8QB3?9 fg_E[mv&eijS sĿw=JD !t-KJf7#̴DƮ[qš,I?ԧۇ$*|\{>TIJ6{QkSՌN"pY+x GؠCtD%qG؎EGiԸ0C ֞- îcNA%!Nq4o+u.ƫ8mVE6~Oux.|WsDh?De~iTd5 XDw+z'-WS|,pY s}˹dPfECJ[H8, CbV4#rtN;)5{"%HegdH6&S$Nto=`ik(W_Q' Q\gP0[<{O4tl@De 7پp7$6VGMKvŇĆY5'?݌v`P+ ג 2/JS<Ҹ2K9]$jN.ُwhdTl]fݠï.CbwQɘ}jr`-},("lk.$>ח=l}V&QQjK+^nh{!?rsιcޮqCw\o侀O5NHA#BwYkŀ}ה/L*M>`H$['RG#G)yӂxZ tm -(aa(b8>zG1/`S$:#ئmc3c0kFpJG@ --g]r#17}SnD~,# -@*0ؽmetв5l[-- - iBWXqN4+ewܠAHNX(y3 RrϳBCK;ӴOnp(PjvŃpCvMf@1tgT ]s;=Y]B@&77ZzZ>b2d8[I>T VjuǺV lғʳT `#{ӡIРgg$\حI79cK4Iv|UuEu䞤vode_v r%Yݕ1ۏV1 z;%/Hv^+e*(>5/.qLs Mվŏ2Csȯ@.۹ȟ#S]y -G u߾EPvQ _v`k,-fm lmSH)ᱳI4o#g+yg%b%[hR 8BPLd8Ŕ^Kíj(~=/ jLA*OWmaQS♑}uBPLt+.\Ay,^/ߋ~x#/dՁg&N@1bn3?"B'3_azcÍc:QK: |/|TH7Uʥ2 5t)Wy ]@Ybʈ#GՑ'd8]?8|Ϝ -"Jeѹ2,:(pUT)z rYSπ+YWM-${>MVWim̦͗v`Ԫqall6pDB\Ƨ I^$Cs4 WFNDv񷎦}pNЍ <2o>>mU=" wHkNoY>խ}Y/jDEJdְ3 =bJSE:;kqA::_ -|/&Hk?&xi-ll`fR ->_n$;fDpwm`uϬst6 -D(.JKELt f _kE%h=McbN"V;XF5zJY\%A5ʩ-!Ԟ bQsb:fZ%<5f-S X=(+5RSeC> -y" 9!H]/IV:BQ4G3q؁Fm> hT+:<+E"1~# - MUaԱa^@V\_\[pr=VTg α*I^ԓi}s\5*I*WQi=(ǸI..5 \9*y^E#+%񁢑B;Dl);n-;J{ 7m(խ``}h(/\kڦ_F|ky PWdؒ./mⵥ4nx6hgM$v]9$6U= {({Wk_d#BԐ3Ę!Ƨ3fmҦH!wXis0nHtX밉A# -lMJ)Z{LrX0)%u[n"׮31} ?a_"r\x}7N]81u*0D'WCKrȁ~d!q!~)(u@3q Ksݚ-|LL'ˊ=g7 bȩzC΢4 2٢~|RSo $C4M̼^S -*O&@=i -ҺX -T (h aSw3z0냡a h-"_ -%I gtVU@LjIxag5?G^yP&nI.ZhprhB @cTZ\!`[ $Λ`rڶW@Нv?ϻn1qJ-ez -^ES*$25y ϚM>"9L1-b[Oo"2X74YF"J7E'xU%,nS<`WY A~б\~TڭWqvu}Yݝ H+~ƞ~ ,dR|b LL{ʲЕ- 6yP,79G]I3ĢU6ҙ9{dJ줚<04q=@և-XM[S*ykRW1j"T|}d;,TI[A9w5SK WE=Φ -ƕ-de!8-;(Pzݎ1oA$;iǢ9g-( $ ][DbFbKU6S;2O(h6&&FP?E e qlnc,0t6 ݜHm&5f)uc{YRJ+(ᖆT0։w=B?;ZnYϷmlRzlO>=u(kd<1tf^,h0'AV@6^ӊ8N|_p͇͜VT#fb,u~6/*s/!\)kqQ\70F6c732n'2^Ԍ 㤒a<4u7ٝ:\ 1abήhs_ZrޮuOt&`uRp crte&J6?w10{ЄU~&_|!\#ARX)7MSl#or.[pv>3l%4UqNî -JN1׌X49ZV`Pd Xdހ|^,m3 tb GV ր.PV*v+?XF% -LF0#"Dtx"'L{NiuVz94rI{or9k@ޫ\ʍSly.}4hlW-^r`te!j1!_>yƨ+s\}&-aDVP|ƭdrL:!3hz̗6CYD%u, -ARZ4Jg9x\~cd=?^U>@d֍UHA= ~T:[ -5(`./T!?/PԂ4ذR e…> -UL'h0T`>0cB oѭ:v,t4eIMfȌEB"8Qsuvڃmtη)54>=2N0~cQ&+,Y]s@*I]䊂pk(,_#D_#H嗉6${@&!5UO>kWJ" O0 -]s"U:㦂&th;C C}A$! -?BWa`I>2 #yk(8hZy_@P]\dⵁjoE'՝Î[F}kt&+ md}u̮w"F{-3dou1x@'Cۏ)kل[q:})x닼шo?$ݞE<5j'u*jf}2>Y?wj @st˙O!J翑.%.=ҟerS&u.H-ImgbV -juuzt)asPZ{B+eWVQhMl^-@*ʶנ`h;HZۼ4Z>1YpB}UfD)Jo0,~u[" 3ds.MCZ8:۪tS D#Ȯ2Ywr*Vɍ`\T导@Md=mH#T]` Z\T82}d.U`ᡋt򌦨LF) -SO" NVLF9C%LZ6ڞs2qrRJH,5׺x6,D Os1^PtVB@_-b>5!t8rqD!>6;L:@]dY;>z!C;ݲap2L@3掁TS|yJ?B h E! .e Nl K6ܔl htdPydTWID$<Χ䔘^ȃHYI$è(فEHQ=5eCdb,h,0ĎhIyǙ9pߤﻍ%=TIY"~K~#UXZzlDGTJJUɘ{t|:Q2M h~·~X3vQ.p2\D:1R*Q>5J5A <׉A{qOdZ;x !0-W@5[=;ˑ QPSEk:8dDT8Kt| \B_ĸ|*H5P -@(ؔ|w:Ⱦ2? @|nBb~F#덡].LedO]fn\4sL.%rtIrj:ӈ8,ĭ9Ż=7s <Jnǽ˂lsk5^N.}P f++/!ʅx] {Gg.^)*c+i`0v`/v.RY]{PV(37#*R3~& $@E/?a{,OMi0&"޷y]r1 -f F!|WaG&v Wg"]YT`^Sʀ֜`LݸgVV ueSH⭒؃%SK [Mx:lɃLCxC b Tc\XEgVtx{ -tvnvQS^f.LaM{sS]ugҨ6j r Po -bRv SO|YGFytc X+xeVf}"46 lԭ3 ,Nx2vCq/cc86 $#vQ 9Ctz7,#\2!M} -n4 -͵%e{,u6; - -1 ‘U;@{kK'q|IA6UE?aUnnzi"d%Apv|Ei@aeh~6Z$x#:X!<\PdiX' -,v9SKhbq -ǧC/iuo`H(Ž9UM -"0*P -k="vZ[GpGIeJwؕJ~GrH RRn~hu.6~QV1ȹ/ !wOY=++}B; oO}sWO-$f8_Wi39ʕ:mv>m{ԩW>9_e[ٷ:?)Ͽ<)tҎiXaXhd0d0Ұ` ʐ90`3L2i-Z+Krz]ʖ\/ Va~ZӦyc-k],wqr,LX5ektr0c{_e9^1\f,&9dYŪhKuNvR5zA!cSAK0C J`$Z|Pb|(P\AMBŊ?PyѼi' _*@Ġ[5n`zPVMhET ۥ&r7i5='jϕ!MeU v+^pE.XBN?N b<1lļG'8])k$)r99e?גVHn^e) -ѹT<,q+nǶ -6c&"8poa{_Y^ (X a3 W}@A ~< -=ɉCa$Zm9tOdK@>T/G|V׊vxly@da^ 8zߎě -F8WG!m)6 1<ѭԚm{K7 3pd(0h8}]̿b\[;.uXi3Vry5'=6Ե1290xM՝C3Vơ^ΑPfAV@lu!%6PAG6K9{0%z<DzҜ/,D KamptV`: -wS?.qS@3%LJsd/ynE9nN͐45$-`7&iO%{ig 8c(9W/[9RڻD<}ZqE3e+sɏPeuŔ63GO$6+E[8Ֆq$\Æ -LSp> ==$2cv-HVRB1>" -!]$r k&$Fƺ""g YicB7Ce<1?+ю(ӝX& `VdR -4Tgɔ$C#B(.Us'sЃH &uBJ80cmNOV*!'-)+5+9TU!(DPy[gZnq~QҸ~[ 7O3/R+la^dD'E endstream endobj 68 0 obj <>stream -HWsH~_1\o:rʱr- -H -d_w $ۊϗVR=_wxbN4o`_'/7oL6A0d2zx, et0`t- 0dev0]EY H044-0Of1Yj{\5;X1,wyn"'%vݲ ǁ㚧xw?-!O+_<o}6, =\"]nv[|v;X'yb P~4V(wfIcH5> w]֏=  -a 8$1RcdyM[н'Aw '=8Ϳ? -/?5KU0E>]~=ߙ]A`tZ/]$;`8X0I6BgeT [픇Lr^?zPc -v,>Q~K@^FLi46x>݌fĸCΡhA1PB)=;&<[>4h0-۰٦-Y(KPFFd -[ ˂| ,L-P:?:0C؄x`چ+/ eN['f(LlBSj('p4c:TNfRc"LbzEX!N+ldW1D˲>{@x*OMe4T h c: 6 3Hie*dXiА&Q;,lcO% .q;pO\7Gf4A?f!A jH̡$yʊ@8eBAjM%ﬨM.BU\.NDj*D>LNڲ й si'q5W;-5#o, $;G(( -[~4Λղ|s.R(BikÔYF5hk *[F/ -wLXQ*噽 al Qappva@s1bkM) ZFA?&Ԓx ,M3YXcd,V{ζU"߁uЮ*^wA=uSn+EX޾.W9A,*PTA3qŜ㜬>W 0VXj]r7;!sO]}A,TT>)>K)a8n=_晚~m95LG]INH >J Ԥ%T l)<._ĜJ#aVr;wPy*ٝф PIe8(2vzw8'cgm5⨇[4ๆ AŊ<NjW`6)\9h/7f&xyYFT5X'H]o7 )Ӆc7(bDei-)1n6w\;BeG ֱ)8˓B4M"Ep_h7򆉾Ur'",y\-hܥe7sRWڼ`lML3ׂ%YQ㌲xm]c!תÿ/ϸHtvY=gtb/^ȫIvJ_–䵷\lB3t'#2tP(WXkɞnڌR||٧rIECtO%Bj7ch3xpʖƂ軿B%ˏ Ee$/Ȓ%T~N]0$USTa-Wyl)f|ʡ;?is;)cKECAONyb @~ ?3|/B;ZxXQ(ǟm!r$#9O<%=EA9AdS`MrrR" SWО#IǠ UCv_jµ0QI?L PͰHL hfPfNc8m5T[$Q**qEæjv@6o Tkg8MbTk([vWV)` -LJhR%)W|OqoQNhwʡP}Y~xE ݵ:MJα6A}6lh_qPDVZD#N y^6od_qX:yfƣ=fwX4!گV d;l%]R./o>\9c\gŚ9\]U#4U/#cț#nr ry'W67YAwOs-utVv& rmܷ9뼧m$"TwG4EL|,vj8z`J6'',]&GؘԱ[5j][S[9IRsKݽ2ze1B5Q!F=(Q-9V„F?Z5\`cLFv#զbT+,GwK -t@XCEL0k%IYWy84fuqףMЬ& N`[[;+n>0F"^,+ݘDIz1`t0?Y2*>:Q@}9}Gv$*,>MblT\5IF7ҢJGf*3vnNC1n#p qc]/^79 -*>stream -8;Z\79,>Ae%.(:VUH;d`]khm6`^AfJ7YnHMOH5%`.T<*O'o"F<8;)U6:_sR5.?#EQ -9g%IS1R_B6@f-NO.CgO1L(tCL$s4=2B]6q_DeQi8gCZ6:plp?lSXrjHZ'-0J?cRirH#.Nkp,K -qC*V>CPDi5=-qU:EkCnqpI_dGWL_bB86,8HT@F!Q`G/3:)SB!oeC3BlBsW+U4RN:O -/XAKo~> endstream endobj 13 0 obj <> endobj 14 0 obj <> endobj 15 0 obj <> endobj 30 0 obj [/View/Design] endobj 31 0 obj <>>> endobj 28 0 obj [/View/Design] endobj 29 0 obj <>>> endobj 26 0 obj [/View/Design] endobj 27 0 obj <>>> endobj 67 0 obj [66 0 R 65 0 R 64 0 R] endobj 106 0 obj <> endobj xref -0 107 -0000000004 65535 f -0000000016 00000 n -0000000217 00000 n -0000039350 00000 n -0000000000 00000 f -0000039408 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000424921 00000 n -0000424995 00000 n -0000425065 00000 n -0000000000 00000 f -0000039930 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000425368 00000 n -0000425399 00000 n -0000425252 00000 n -0000425283 00000 n -0000425136 00000 n -0000425167 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000050430 00000 n -0000047866 00000 n -0000048372 00000 n -0000048741 00000 n -0000049257 00000 n -0000049751 00000 n -0000050160 00000 n -0000047303 00000 n -0000047377 00000 n -0000047447 00000 n -0000425484 00000 n -0000419709 00000 n -0000073792 00000 n -0000073679 00000 n -0000424310 00000 n -0000040453 00000 n -0000046094 00000 n -0000046742 00000 n -0000046790 00000 n -0000047750 00000 n -0000047781 00000 n -0000047634 00000 n -0000047665 00000 n -0000047518 00000 n -0000047549 00000 n -0000069000 00000 n -0000069091 00000 n -0000067068 00000 n -0000062735 00000 n -0000058860 00000 n -0000056474 00000 n -0000056563 00000 n -0000055332 00000 n -0000050889 00000 n -0000051232 00000 n -0000055632 00000 n -0000056862 00000 n -0000059239 00000 n -0000063205 00000 n -0000067369 00000 n -0000069532 00000 n -0000073866 00000 n -0000074152 00000 n -0000075660 00000 n -0000141249 00000 n -0000206838 00000 n -0000272427 00000 n -0000338016 00000 n -0000403605 00000 n -0000425523 00000 n -trailer <<865DD221A8414A02BED54B93928A8085>]>> startxref 425716 %%EOF \ No newline at end of file diff --git a/font_files/font-spritegraffiti/other_files/how-to-install-your-fontfabric-fonts.pdf b/font_files/font-spritegraffiti/other_files/how-to-install-your-fontfabric-fonts.pdf deleted file mode 100644 index 2ca523c..0000000 Binary files a/font_files/font-spritegraffiti/other_files/how-to-install-your-fontfabric-fonts.pdf and /dev/null differ diff --git a/font_files/font-spritegraffiti/ttf/spritegraffiti-extras.ttf b/font_files/font-spritegraffiti/ttf/spritegraffiti-extras.ttf deleted file mode 100644 index 0930a45..0000000 Binary files a/font_files/font-spritegraffiti/ttf/spritegraffiti-extras.ttf and /dev/null differ diff --git a/font_files/font-spritegraffiti/ttf/spritegraffiti-regular.ttf b/font_files/font-spritegraffiti/ttf/spritegraffiti-regular.ttf deleted file mode 100644 index d0084ff..0000000 Binary files a/font_files/font-spritegraffiti/ttf/spritegraffiti-regular.ttf and /dev/null differ diff --git a/font_files/font-spritegraffiti/ttf/spritegraffiti-shadow.ttf b/font_files/font-spritegraffiti/ttf/spritegraffiti-shadow.ttf deleted file mode 100644 index 941351a..0000000 Binary files a/font_files/font-spritegraffiti/ttf/spritegraffiti-shadow.ttf and /dev/null differ diff --git a/font_files/font-spritegraffiti/web/spritegraffiti-extras.eot b/font_files/font-spritegraffiti/web/spritegraffiti-extras.eot deleted file mode 100644 index b017961..0000000 Binary files a/font_files/font-spritegraffiti/web/spritegraffiti-extras.eot and /dev/null differ diff --git a/font_files/font-spritegraffiti/web/spritegraffiti-extras.woff b/font_files/font-spritegraffiti/web/spritegraffiti-extras.woff deleted file mode 100644 index cb57e3a..0000000 Binary files a/font_files/font-spritegraffiti/web/spritegraffiti-extras.woff and /dev/null differ diff --git a/font_files/font-spritegraffiti/web/spritegraffiti-extras.woff2 b/font_files/font-spritegraffiti/web/spritegraffiti-extras.woff2 deleted file mode 100644 index b10cd4e..0000000 Binary files a/font_files/font-spritegraffiti/web/spritegraffiti-extras.woff2 and /dev/null differ diff --git a/font_files/font-spritegraffiti/web/spritegraffiti-regular.eot b/font_files/font-spritegraffiti/web/spritegraffiti-regular.eot deleted file mode 100644 index fb87587..0000000 Binary files a/font_files/font-spritegraffiti/web/spritegraffiti-regular.eot and /dev/null differ diff --git a/font_files/font-spritegraffiti/web/spritegraffiti-regular.woff b/font_files/font-spritegraffiti/web/spritegraffiti-regular.woff deleted file mode 100644 index 380ae86..0000000 Binary files a/font_files/font-spritegraffiti/web/spritegraffiti-regular.woff and /dev/null differ diff --git a/font_files/font-spritegraffiti/web/spritegraffiti-regular.woff2 b/font_files/font-spritegraffiti/web/spritegraffiti-regular.woff2 deleted file mode 100644 index db8d7f5..0000000 Binary files a/font_files/font-spritegraffiti/web/spritegraffiti-regular.woff2 and /dev/null differ diff --git a/font_files/font-spritegraffiti/web/spritegraffiti-shadow.eot b/font_files/font-spritegraffiti/web/spritegraffiti-shadow.eot deleted file mode 100644 index 435baec..0000000 Binary files a/font_files/font-spritegraffiti/web/spritegraffiti-shadow.eot and /dev/null differ diff --git a/font_files/font-spritegraffiti/web/spritegraffiti-shadow.woff b/font_files/font-spritegraffiti/web/spritegraffiti-shadow.woff deleted file mode 100644 index 17a4630..0000000 Binary files a/font_files/font-spritegraffiti/web/spritegraffiti-shadow.woff and /dev/null differ diff --git a/font_files/font-spritegraffiti/web/spritegraffiti-shadow.woff2 b/font_files/font-spritegraffiti/web/spritegraffiti-shadow.woff2 deleted file mode 100644 index 6db8244..0000000 Binary files a/font_files/font-spritegraffiti/web/spritegraffiti-shadow.woff2 and /dev/null differ diff --git a/font_files/font-starship/otf/starship.otf b/font_files/font-starship/otf/starship.otf deleted file mode 100644 index e426f0b..0000000 Binary files a/font_files/font-starship/otf/starship.otf and /dev/null differ diff --git a/font_files/font-starship/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-starship/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-starship/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-starship/ttf/starship.ttf b/font_files/font-starship/ttf/starship.ttf deleted file mode 100644 index 1a88efd..0000000 Binary files a/font_files/font-starship/ttf/starship.ttf and /dev/null differ diff --git a/font_files/font-starship/web/starship.woff b/font_files/font-starship/web/starship.woff deleted file mode 100644 index dd144cc..0000000 Binary files a/font_files/font-starship/web/starship.woff and /dev/null differ diff --git a/font_files/font-stockman/otf/stockman-demo-personaluseonly.otf b/font_files/font-stockman/otf/stockman-demo-personaluseonly.otf deleted file mode 100644 index 5a320f4..0000000 Binary files a/font_files/font-stockman/otf/stockman-demo-personaluseonly.otf and /dev/null differ diff --git a/font_files/font-stockman/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-stockman/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-stockman/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-stronghold/otf/stronghold-italic.otf b/font_files/font-stronghold/otf/stronghold-italic.otf deleted file mode 100644 index 9a407e9..0000000 Binary files a/font_files/font-stronghold/otf/stronghold-italic.otf and /dev/null differ diff --git a/font_files/font-stronghold/otf/stronghold-regular.otf b/font_files/font-stronghold/otf/stronghold-regular.otf deleted file mode 100644 index 83218d7..0000000 Binary files a/font_files/font-stronghold/otf/stronghold-regular.otf and /dev/null differ diff --git a/font_files/font-stronghold/ttf/stronghold-italic.ttf b/font_files/font-stronghold/ttf/stronghold-italic.ttf deleted file mode 100644 index 51fcdd6..0000000 Binary files a/font_files/font-stronghold/ttf/stronghold-italic.ttf and /dev/null differ diff --git a/font_files/font-stronghold/ttf/stronghold-regular.ttf b/font_files/font-stronghold/ttf/stronghold-regular.ttf deleted file mode 100644 index f1f14e8..0000000 Binary files a/font_files/font-stronghold/ttf/stronghold-regular.ttf and /dev/null differ diff --git a/font_files/font-sunmore/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-sunmore/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-sunmore/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-sunmore/ttf/sunmore-slant-free.ttf b/font_files/font-sunmore/ttf/sunmore-slant-free.ttf deleted file mode 100644 index b4ad5a9..0000000 Binary files a/font_files/font-sunmore/ttf/sunmore-slant-free.ttf and /dev/null differ diff --git a/font_files/font-tallow-pen/otf/tallowsanstc-pen.otf b/font_files/font-tallow-pen/otf/tallowsanstc-pen.otf deleted file mode 100644 index f6eb96c..0000000 Binary files a/font_files/font-tallow-pen/otf/tallowsanstc-pen.otf and /dev/null differ diff --git a/font_files/font-tallow-pen/otf/tallowtc-pen.otf b/font_files/font-tallow-pen/otf/tallowtc-pen.otf deleted file mode 100644 index 9f284e9..0000000 Binary files a/font_files/font-tallow-pen/otf/tallowtc-pen.otf and /dev/null differ diff --git a/font_files/font-tc-grimstone/otf/TC-Grimstone-Bold.otf b/font_files/font-tc-grimstone/otf/TC-Grimstone-Bold.otf deleted file mode 100644 index d96fa9d..0000000 Binary files a/font_files/font-tc-grimstone/otf/TC-Grimstone-Bold.otf and /dev/null differ diff --git a/font_files/font-tc-rampart/otf/TC Rampart Bold.otf b/font_files/font-tc-rampart/otf/TC Rampart Bold.otf deleted file mode 100644 index 40d6a74..0000000 Binary files a/font_files/font-tc-rampart/otf/TC Rampart Bold.otf and /dev/null differ diff --git a/font_files/font-tc-rampart/otf/TC Rampart Condensed Bold.otf b/font_files/font-tc-rampart/otf/TC Rampart Condensed Bold.otf deleted file mode 100644 index c78d342..0000000 Binary files a/font_files/font-tc-rampart/otf/TC Rampart Condensed Bold.otf and /dev/null differ diff --git a/font_files/font-tc-rampart/otf/TC Rampart Condensed.otf b/font_files/font-tc-rampart/otf/TC Rampart Condensed.otf deleted file mode 100644 index 16db804..0000000 Binary files a/font_files/font-tc-rampart/otf/TC Rampart Condensed.otf and /dev/null differ diff --git a/font_files/font-tc-rampart/otf/TC Rampart Round Bold.otf b/font_files/font-tc-rampart/otf/TC Rampart Round Bold.otf deleted file mode 100644 index b3d18d2..0000000 Binary files a/font_files/font-tc-rampart/otf/TC Rampart Round Bold.otf and /dev/null differ diff --git a/font_files/font-tc-rampart/otf/TC Rampart Round Condensed Bold.otf b/font_files/font-tc-rampart/otf/TC Rampart Round Condensed Bold.otf deleted file mode 100644 index b9d4987..0000000 Binary files a/font_files/font-tc-rampart/otf/TC Rampart Round Condensed Bold.otf and /dev/null differ diff --git a/font_files/font-tc-rampart/otf/TC Rampart Round Condensed.otf b/font_files/font-tc-rampart/otf/TC Rampart Round Condensed.otf deleted file mode 100644 index dc9682e..0000000 Binary files a/font_files/font-tc-rampart/otf/TC Rampart Round Condensed.otf and /dev/null differ diff --git a/font_files/font-tc-rampart/otf/TC Rampart Round.otf b/font_files/font-tc-rampart/otf/TC Rampart Round.otf deleted file mode 100644 index 6b243b9..0000000 Binary files a/font_files/font-tc-rampart/otf/TC Rampart Round.otf and /dev/null differ diff --git a/font_files/font-tc-rampart/otf/TC Rampart.otf b/font_files/font-tc-rampart/otf/TC Rampart.otf deleted file mode 100644 index e3a43be..0000000 Binary files a/font_files/font-tc-rampart/otf/TC Rampart.otf and /dev/null differ diff --git a/font_files/font-tc-rampart/ttf/TC Rampart Bold.ttf b/font_files/font-tc-rampart/ttf/TC Rampart Bold.ttf deleted file mode 100644 index 7c7e7ec..0000000 Binary files a/font_files/font-tc-rampart/ttf/TC Rampart Bold.ttf and /dev/null differ diff --git a/font_files/font-tc-rampart/ttf/TC Rampart Condensed Bold.ttf b/font_files/font-tc-rampart/ttf/TC Rampart Condensed Bold.ttf deleted file mode 100644 index 36a8ded..0000000 Binary files a/font_files/font-tc-rampart/ttf/TC Rampart Condensed Bold.ttf and /dev/null differ diff --git a/font_files/font-tc-rampart/ttf/TC Rampart Condensed.ttf b/font_files/font-tc-rampart/ttf/TC Rampart Condensed.ttf deleted file mode 100644 index ca56980..0000000 Binary files a/font_files/font-tc-rampart/ttf/TC Rampart Condensed.ttf and /dev/null differ diff --git a/font_files/font-tc-rampart/ttf/TC Rampart Round Bold.ttf b/font_files/font-tc-rampart/ttf/TC Rampart Round Bold.ttf deleted file mode 100644 index db8df90..0000000 Binary files a/font_files/font-tc-rampart/ttf/TC Rampart Round Bold.ttf and /dev/null differ diff --git a/font_files/font-tc-rampart/ttf/TC Rampart Round Condensed Bold.ttf b/font_files/font-tc-rampart/ttf/TC Rampart Round Condensed Bold.ttf deleted file mode 100644 index abb2654..0000000 Binary files a/font_files/font-tc-rampart/ttf/TC Rampart Round Condensed Bold.ttf and /dev/null differ diff --git a/font_files/font-tc-rampart/ttf/TC Rampart Round Condensed.ttf b/font_files/font-tc-rampart/ttf/TC Rampart Round Condensed.ttf deleted file mode 100644 index 5f3d9f4..0000000 Binary files a/font_files/font-tc-rampart/ttf/TC Rampart Round Condensed.ttf and /dev/null differ diff --git a/font_files/font-tc-rampart/ttf/TC Rampart Round.ttf b/font_files/font-tc-rampart/ttf/TC Rampart Round.ttf deleted file mode 100644 index 602b3db..0000000 Binary files a/font_files/font-tc-rampart/ttf/TC Rampart Round.ttf and /dev/null differ diff --git a/font_files/font-tc-rampart/ttf/TC Rampart.ttf b/font_files/font-tc-rampart/ttf/TC Rampart.ttf deleted file mode 100644 index 373d3f9..0000000 Binary files a/font_files/font-tc-rampart/ttf/TC Rampart.ttf and /dev/null differ diff --git a/font_files/font-tc_kindred/otf/kindred.otf b/font_files/font-tc_kindred/otf/kindred.otf deleted file mode 100644 index 445ac7d..0000000 Binary files a/font_files/font-tc_kindred/otf/kindred.otf and /dev/null differ diff --git a/font_files/font-tc_kindred/other_files/kindred-tc-regular.sfd b/font_files/font-tc_kindred/other_files/kindred-tc-regular.sfd deleted file mode 100644 index 1aaf2dc..0000000 --- a/font_files/font-tc_kindred/other_files/kindred-tc-regular.sfd +++ /dev/null @@ -1,21980 +0,0 @@ -SplineFontDB: 3.2 -FontName: Kindred-TC-Regular -FullName: Kindred TC Regular -FamilyName: Kindred TC Regular -Weight: Normal -Copyright: Copyright \\(c\\) 2023 by Tom Chalky. All rights reserved. -Version: 001.001 -ItalicAngle: 0 -UnderlinePosition: -150 -UnderlineWidth: 50 -Ascent: 800 -Descent: 200 -InvalidEm: 0 -sfntRevision: 0x00010000 -woffMajor: 1 -woffMinor: 1 -LayerCount: 2 -Layer: 0 0 "Back" 1 -Layer: 1 0 "Fore" 0 -XUID: [1021 643 175353993 16393771] -StyleMap: 0x0040 -FSType: 4 -OS2Version: 3 -OS2_WeightWidthSlopeOnly: 0 -OS2_UseTypoMetrics: 0 -CreationTime: 1674235610 -ModificationTime: 1727280034 -PfmFamily: 81 -TTFWeight: 400 -TTFWidth: 5 -LineGap: 25 -VLineGap: 0 -Panose: 0 0 0 0 0 0 0 0 0 0 -OS2TypoAscent: 664 -OS2TypoAOffset: 0 -OS2TypoDescent: -170 -OS2TypoDOffset: 0 -OS2TypoLinegap: 48 -OS2WinAscent: 946 -OS2WinAOffset: 0 -OS2WinDescent: 300 -OS2WinDOffset: 0 -HheadAscent: 946 -HheadAOffset: 0 -HheadDescent: -300 -HheadDOffset: 0 -OS2SubXSize: 700 -OS2SubYSize: 650 -OS2SubXOff: 0 -OS2SubYOff: 140 -OS2SupXSize: 700 -OS2SupYSize: 650 -OS2SupXOff: 0 -OS2SupYOff: 477 -OS2StrikeYSize: 50 -OS2StrikeYPos: 250 -OS2CapHeight: 755 -OS2XHeight: 410 -OS2Vendor: 'pyrs' -OS2CodePages: 00000001.00000000 -OS2UnicodeRanges: 80000027.0000c00a.00000000.00000000 -Lookup: 3 0 0 "'salt' Stylistic Alternatives in Latin lookup 0" { "'salt' Stylistic Alternatives in Latin lookup 0 subtable" } ['salt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 subtable" } ['kern' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ] -DEI: 91125 -LangName: 1033 "Copyright (c) 2023 by Tom Chalky. All rights reserved." "" "Regular" "TomChalky: Kindred TC Regular: 2023" "Kindred-TC-Regular" "1.000" "" "Kindred TC Regular is a trademark of Tom Chalky." "Tom Chalky" "Tom Chalky" "Copyright (c) 2023 by Tom Chalky. All rights reserved." "https://tomchalky.com" "https://tomchalky.com" "" "" "" "Kindred TC" "Regular" -Encoding: UnicodeBmp -UnicodeInterp: none -NameList: AGL For New Fonts -DisplaySize: -48 -AntiAlias: 1 -FitToEm: 0 -WinInfo: 25 25 7 -BeginPrivate: 8 -BlueValues 23 [-27 0 410 410 755 768] -OtherBlues 11 [-317 -317] -BlueScale 6 0.0375 -BlueShift 1 5 -StdHW 4 [46] -StdVW 4 [59] -StemSnapH 10 [41 46 50] -StemSnapV 7 [51 59] -EndPrivate -BeginChars: 65629 282 - -StartChar: .notdef -Encoding: 65536 -1 0 -Width: 150 -GlyphClass: 1 -Flags: W -LayerCount: 2 -EndChar - -StartChar: NULL -Encoding: 0 0 1 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: CR -Encoding: 13 13 2 -Width: 150 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: space -Encoding: 32 32 3 -Width: 150 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Kerns2: 74 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: exclam -Encoding: 33 33 4 -Width: 143 -GlyphClass: 2 -Flags: MW -HStem: -7 65<73 82> -VStem: 40 55<416 442> 40 63 57 21<121.5 139> -LayerCount: 2 -Fore -SplineSet -60 112 m 1x90 - 59 122 57 130 57 139 c 0 - 53 164 51 189 49 214 c 0x90 - 47 230 45 247 43 263 c 0 - 43 270 42 278 42 285 c 0 - 41 337 40 390 40 442 c 0 - 39 472 40 501 41 531 c 0 - 41 573 42 615 42 656 c 0 - 42 666 43 668 53 669 c 0 - 64 669 75 668 86 668 c 0 - 89 668 90 666 91 663 c 2 - 91 658 l 2 - 91 625 90 591 91 558 c 0 - 92 519 94 481 95 442 c 2 - 95 374 l 2 - 95 339 95 304 94 268 c 0 - 94 247 90 227 88 206 c 0xc0 - 85 178 81 150 78 122 c 0 - 78 121 78 119 77 117 c 0 - 77 114 75 112 72 112 c 2 - 60 112 l 1x90 -103 28 m 0xa0 - 102 4 91 -7 73 -7 c 0 - 57 -8 40 9 40 24 c 0 - 40 43 53 59 71 58 c 0 - 94 58 104 44 103 28 c 0xa0 -EndSplineSet -EndChar - -StartChar: quotedbl -Encoding: 34 34 5 -Width: 189 -GlyphClass: 2 -Flags: MW -HStem: 642 104 -VStem: 11 53<717 719 719 733 733 736 713.5 737.5> 96 52<717 733 733 736 717 737.5> -LayerCount: 2 -Fore -SplineSet -11 717 m 2 - 11 733 l 2 - 11 742 15 746 24 746 c 2 - 53 746 l 2 - 59 746 63 742 64 736 c 0 - 64 731 63 725 64 719 c 0 - 64 708 65 698 67 687 c 0 - 68 675 76 667 87 663 c 0 - 94 660 96 655 90 649 c 0 - 87 646 83 643 79 642 c 0 - 67 640 55 642 44 649 c 0 - 39 652 33 655 28 658 c 0 - 26 659 24 661 23 663 c 0 - 16 680 8 697 11 717 c 2 -96 717 m 0 - 96 722 95 728 96 733 c 0 - 96 742 100 746 109 746 c 2 - 138 746 l 2 - 144 747 148 742 148 736 c 2 - 148 717 l 2 - 149 708 149 700 150 691 c 0 - 152 678 158 668 172 663 c 0 - 179 660 180 655 175 649 c 0 - 172 646 167 643 162 642 c 0 - 150 640 139 642 128 649 c 0 - 123 652 117 655 112 658 c 0 - 110 659 108 661 108 663 c 0 - 100 680 93 697 96 717 c 0 -EndSplineSet -EndChar - -StartChar: numbersign -Encoding: 35 35 6 -Width: 279 -GlyphClass: 2 -Flags: MW -HStem: 1 131 89 43<146 158 97 207> 92 41 178 43<66 105 112 151 151 154> 182 38 -VStem: 10 102 61 44<178 182> 87 41<320 320> 144 38<1 1> 164 45 -LayerCount: 2 -Fore -SplineSet -17 92 m 1x3140 - 11 104 11 117 10 130 c 1 - 24 131 38 132 53 133 c 1 - 56 149 58 165 61 182 c 1x2a40 - 17 182 l 1x2c40 - 11 194 12 206 10 219 c 1x3440 - 29 222 47 222 66 221 c 1 - 87 320 l 1 - 128 320 l 1x3140 - 125 287 118 254 112 221 c 1 - 151 221 l 2 - 157 221 164 222 171 222 c 0 - 178 222 178 223 179 230 c 0 - 185 258 191 287 197 316 c 0 - 198 317 198 318 199 320 c 2 - 239 320 l 1 - 236 287 229 255 223 222 c 1 - 237 221 250 220 263 219 c 1 - 265 205 267 193 269 179 c 1 - 262 179 255 178 248 178 c 0 - 239 177 230 178 222 178 c 0 - 219 178 215 178 215 174 c 0 - 213 161 211 148 209 134 c 1 - 227 132 244 131 263 130 c 1 - 265 116 267 103 269 89 c 1 - 256 89 245 88 233 88 c 0 - 223 88 212 89 202 89 c 0 - 199 89 197 87 197 84 c 0 - 194 67 191 51 188 34 c 0x5440 - 186 27 185 21 184 15 c 0x5180 - 183 11 183 7 182 2 c 1 - 170 -2 157 0 144 1 c 1x9180 - 145 30 151 59 158 89 c 1 - 134 89 111 90 88 90 c 1x5180 - 78 62 78 32 71 2 c 1 - 59 -2 46 0 33 1 c 1x9180 - 34 32 40 62 48 92 c 1 - 17 92 l 1x3140 -105 178 m 1x9240 - 102 163 100 147 97 132 c 1 - 164 132 l 1 - 167 148 169 162 172 178 c 1 - 105 178 l 1x9240 -EndSplineSet -EndChar - -StartChar: dollar -Encoding: 36 36 7 -Width: 276 -GlyphClass: 2 -Flags: MW -HStem: -117 25 355 105 -VStem: 44 55 107 36<-183 -171.5> 114 38 145 38 152 37<418 440> 211 54 -LayerCount: 2 -Fore -SplineSet -143 -183 m 1x91 - 114 -183 l 2 - 110 -183 107 -180 107 -175 c 0 - 107 -168 109 -161 109 -153 c 0 - 110 -142 111 -130 112 -117 c 1 - 106 -117 102 -118 97 -117 c 0 - 87 -114 77 -112 68 -109 c 0 - 55 -103 43 -97 31 -91 c 0 - 28 -90 26 -87 24 -85 c 0 - 16 -71 10 -57 11 -41 c 0 - 11 -25 23 -19 37 -25 c 0 - 40 -26 43 -28 44 -30 c 0 - 48 -39 51 -47 54 -56 c 0 - 59 -68 67 -79 79 -85 c 0x91 - 84 -88 88 -90 93 -92 c 0 - 104 -96 114 -90 114 -78 c 0x89 - 116 -39 118 -1 120 38 c 0 - 121 59 124 80 125 102 c 0 - 127 118 128 134 129 151 c 0 - 129 159 130 166 130 174 c 0 - 130 180 128 184 125 188 c 0 - 109 204 95 220 77 235 c 0 - 73 238 69 244 66 249 c 0xa9 - 61 257 55 264 52 271 c 0 - 42 292 41 313 51 334 c 1 - 51 335 l 1 - 55 351 66 362 76 374 c 0 - 82 379 87 383 94 386 c 0 - 111 396 130 399 149 405 c 1 - 150 416 151 426 152 437 c 0 - 152 443 153 448 153 454 c 0 - 154 459 156 461 160 462 c 0 - 170 465 179 462 188 460 c 0 - 189 460 190 456 190 454 c 0 - 190 443 189 432 189 421 c 0 - 189 415 188 410 188 404 c 1 - 198 401 207 398 216 395 c 0 - 231 391 237 379 241 366 c 0 - 243 357 243 349 244 340 c 0 - 245 333 243 330 238 329 c 0 - 233 327 228 329 224 334 c 0xe3 - 218 343 211 351 200 355 c 0 - 192 358 185 355 184 346 c 0 - 183 339 183 332 182 325 c 0 - 181 305 180 285 178 265 c 0 - 177 246 182 229 194 215 c 0 - 202 205 208 194 215 183 c 0 - 219 176 224 169 229 161 c 2 - 229 161 230 160 230 159 c 0xc5 - 238 139 251 122 258 101 c 0 - 266 75 267 50 262 23 c 0 - 257 1 252 -21 241 -41 c 0 - 228 -63 212 -83 192 -98 c 0 - 182 -105 169 -108 156 -112 c 0 - 147 -115 148 -112 147 -123 c 0 - 146 -140 145 -156 144 -172 c 0 - 144 -176 143 -179 143 -183 c 1x91 -171 126 m 1 - 169 126 l 2 - 168 123 167 121 167 118 c 2 - 164 97 l 2 - 162 64 159 30 156 -4 c 0 - 155 -26 153 -48 152 -71 c 0 - 151 -73 152 -77 154 -79 c 0 - 157 -81 161 -82 165 -80 c 0x89 - 175 -75 183 -67 190 -59 c 0 - 207 -36 216 -11 211 18 c 0 - 208 37 204 56 200 75 c 0 - 196 96 182 110 171 126 c 1 -138 267 m 1xa5 - 139 271 140 274 140 276 c 0 - 141 281 141 286 141 291 c 0 - 142 311 144 331 145 351 c 0 - 146 359 143 361 136 358 c 0 - 115 351 100 331 99 310 c 0 - 99 306 100 302 101 300 c 0 - 109 286 121 275 138 267 c 1xa5 -EndSplineSet -EndChar - -StartChar: percent -Encoding: 37 37 8 -Width: 304 -GlyphClass: 2 -Flags: MW -HStem: 32 24 135 21 137 26 244 31 257 9<239 243.5> -VStem: 10 27 105 27 181 18 264 29 -LayerCount: 2 -Fore -SplineSet -73 36 m 1xd780 - 74 40 75 43 77 46 c 0 - 85 62 93 78 102 93 c 0 - 120 123 135 154 156 183 c 0xb780 - 170 202 180 222 192 242 c 0 - 197 250 203 257 208 265 c 0 - 211 269 216 270 220 269 c 0 - 226 268 232 267 239 266 c 0 - 243 266 244 263 244 259 c 0xd780 - 244 258 244 257 243 257 c 0 - 234 239 225 222 215 205 c 0 - 205 187 194 169 183 152 c 0 - 168 129 154 106 140 83 c 0xb780 - 134 73 128 63 123 53 c 0 - 121 51 119 47 117 45 c 0 - 113 37 108 33 98 34 c 0 - 90 35 82 35 73 36 c 1xd780 -132 208 m 0 - 134 187 121 169 109 152 c 0 - 106 148 103 146 99 144 c 0 - 85 137 71 135 56 137 c 0 - 32 141 21 157 14 177 c 0 - 4 208 14 234 34 257 c 0 - 49 274 68 280 91 275 c 0 - 111 271 121 258 127 240 c 0 - 131 230 133 220 132 208 c 0 -37 203 m 0 - 37 200 37 197 38 194 c 0 - 39 179 51 165 65 163 c 0 - 79 161 93 168 99 181 c 0 - 106 197 106 212 102 229 c 0 - 100 237 94 243 86 244 c 0 - 70 248 55 244 45 229 c 0 - 40 221 38 213 37 203 c 0 -293 101 m 0 - 291 77 282 56 262 40 c 0 - 255 35 247 33 238 32 c 2 - 233 32 l 2xcf80 - 213 29 213 30 199 41 c 0 - 190 50 182 59 179 72 c 0 - 176 89 178 106 183 123 c 0 - 185 129 192 136 197 141 c 0 - 203 146 210 150 217 153 c 0 - 224 158 233 159 241 156 c 0 - 244 156 248 156 251 155 c 0 - 267 154 279 146 286 131 c 0 - 290 121 294 112 293 101 c 0 -264 98 m 2 - 264 107 l 2 - 262 130 240 142 222 131 c 0 - 214 127 209 120 205 112 c 0 - 197 97 196 83 206 68 c 0 - 215 54 241 51 252 64 c 0 - 261 74 265 86 264 98 c 2 -EndSplineSet -EndChar - -StartChar: ampersand -Encoding: 38 38 9 -Width: 398 -GlyphClass: 2 -Flags: MW -HStem: -7 39<124 127 117.5 131> -4 21G<166 171> 5 13 297 39 -VStem: 25 48 260 38 284 38 -LayerCount: 2 -Fore -SplineSet -388 18 m 1x3a - 388 14 387 11 387 7 c 0 - 380 6 373 5 366 5 c 2 - 312 2 l 2 - 304 2 299 3 294 9 c 0 - 283 22 273 35 257 42 c 0 - 256 42 255 41 254 40 c 0 - 242 29 228 21 213 13 c 0x3a - 206 10 201 7 194 3 c 0x5a - 185 -1 176 -4 166 -4 c 0 - 152 -5 138 -7 124 -7 c 0 - 102 -6 81 -1 62 11 c 0 - 46 21 35 35 31 53 c 0 - 28 64 26 74 25 85 c 0 - 23 106 29 126 37 145 c 0 - 40 151 46 157 51 163 c 0 - 63 177 77 190 93 201 c 0 - 103 207 102 213 95 221 c 0 - 73 245 49 266 31 293 c 0 - 26 300 20 306 14 312 c 0 - 8 318 10 327 18 330 c 0 - 27 334 36 336 46 336 c 2 - 150 336 l 2 - 168 336 187 337 205 336 c 0 - 227 336 248 336 270 335 c 0 - 273 335 275 336 278 336 c 0 - 291 336 298 330 298 317 c 0 - 298 304 299 291 299 278 c 2 - 299 272 l 1 - 294 272 290 272 286 273 c 0 - 284 274 282 275 280 277 c 0 - 277 280 275 284 273 287 c 0 - 266 295 256 296 247 297 c 0x9c - 229 297 211 297 192 298 c 0 - 176 299 160 301 143 302 c 0 - 130 303 117 302 104 303 c 0 - 98 303 93 300 89 296 c 0 - 90 294 91 292 92 291 c 0 - 103 280 115 269 125 258 c 0 - 140 242 155 225 170 208 c 0 - 186 190 201 173 217 156 c 0 - 224 147 233 140 242 132 c 0 - 249 126 255 126 261 135 c 0 - 272 150 279 167 284 185 c 0x9a - 289 203 285 215 267 227 c 0 - 258 232 257 239 264 247 c 0x9c - 275 258 289 257 302 249 c 0 - 318 238 321 222 322 205 c 0 - 324 184 324 162 317 142 c 0 - 314 132 310 122 306 113 c 0 - 302 105 298 99 295 91 c 0 - 293 87 295 83 298 80 c 0 - 305 71 311 61 319 53 c 0 - 328 44 339 35 350 26 c 0 - 358 20 369 20 379 19 c 0 - 381 19 384 18 388 18 c 1x3a -138 165 m 1 - 127 159 119 153 109 148 c 0 - 94 140 83 129 77 112 c 0 - 72 98 70 83 78 68 c 0 - 83 58 90 50 98 43 c 0 - 105 38 113 32 122 32 c 0 - 132 32 142 33 151 34 c 2 - 166 37 l 2 - 182 42 193 53 205 64 c 0 - 210 70 215 76 221 82 c 1 - 218 84 216 86 214 88 c 0 - 207 94 201 100 195 107 c 0x9a - 186 117 178 127 167 135 c 2 - 162 140 l 2 - 154 148 146 156 138 165 c 1 -EndSplineSet -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" ampersand1 ampersand2 -EndChar - -StartChar: quotesingle -Encoding: 39 39 10 -Width: 114 -GlyphClass: 2 -Flags: MW -HStem: 646 106<26 54 26 83> 646 107 -VStem: 43 54<656 660 660 676 655 680.5> -LayerCount: 2 -Fore -SplineSet -97 676 m 2xa0 - 97 660 l 2 - 97 650 93 646 83 646 c 2 - 54 646 l 2 - 48 646 43 650 43 656 c 0 - 43 663 44 670 43 676 c 0 - 43 685 42 693 41 702 c 0 - 40 716 33 726 20 731 c 0 - 12 734 10 739 16 745 c 0 - 19 748 24 752 28 752 c 0 - 41 754 53 752 63 745 c 0 - 69 742 75 739 80 736 c 0 - 82 735 84 733 85 731 c 0 - 92 713 100 696 97 676 c 2xa0 -EndSplineSet -Kerns2: 91 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -83 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -84 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -60 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: parenleft -Encoding: 40 40 11 -Width: 215 -GlyphClass: 2 -Flags: MW -HStem: -134 959 -VStem: 11 44<242.5 248 248 265 265 314 314 317> -LayerCount: 2 -Fore -SplineSet -179 825 m 0 - 188 816 196 807 205 798 c 1 - 200 790 195 781 189 773 c 0 - 178 759 168 744 160 728 c 0 - 149 710 137 693 127 674 c 0 - 113 646 101 617 95 586 c 0 - 91 566 84 548 79 529 c 0 - 76 513 73 498 69 482 c 0 - 66 471 66 459 66 448 c 0 - 66 439 64 430 63 422 c 0 - 60 390 57 359 55 327 c 0 - 54 307 55 286 55 265 c 2 - 55 248 l 2 - 55 237 56 227 59 217 c 0 - 60 212 60 207 61 202 c 0 - 64 167 72 133 84 100 c 0 - 93 75 101 50 111 26 c 0 - 121 2 132 -23 148 -45 c 0 - 160 -61 171 -78 183 -94 c 0 - 185 -98 188 -100 190 -103 c 0 - 193 -106 193 -109 190 -112 c 0 - 187 -114 185 -116 182 -119 c 0 - 179 -122 176 -125 174 -128 c 0 - 168 -136 163 -136 156 -129 c 0 - 149 -120 142 -110 135 -101 c 0 - 127 -91 118 -80 112 -69 c 0 - 101 -48 90 -29 79 -8 c 0 - 72 4 65 15 59 28 c 0 - 52 43 46 58 40 74 c 0 - 35 85 30 96 27 107 c 0 - 22 123 18 139 18 156 c 0 - 18 166 15 177 14 188 c 0 - 12 203 11 218 11 233 c 2 - 11 314 l 2 - 11 320 10 326 10 332 c 2 - 10 339 l 2 - 11 359 12 379 14 398 c 0 - 16 416 19 434 21 452 c 2 - 30 518 l 2 - 34 540 39 561 48 581 c 0 - 54 596 59 611 65 626 c 0 - 69 635 72 644 76 653 c 0 - 88 680 100 707 113 734 c 0 - 120 748 129 761 137 774 c 0 - 141 780 146 786 150 792 c 2 - 171 819 l 2 - 173 821 176 823 179 825 c 0 -EndSplineSet -EndChar - -StartChar: parenright -Encoding: 41 41 12 -Width: 215 -GlyphClass: 2 -Flags: MW -HStem: -134 959 -VStem: 160 43 -LayerCount: 2 -Fore -SplineSet -10 797 m 0 - 19 807 27 816 36 825 c 0 - 39 823 43 821 45 817 c 0 - 50 812 55 807 59 801 c 0 - 80 771 101 742 114 707 c 0 - 117 697 123 689 127 679 c 0 - 134 663 142 646 148 630 c 0 - 153 617 158 605 162 592 c 0 - 166 581 171 571 175 560 c 0 - 181 539 185 518 188 497 c 0 - 190 476 193 457 196 437 c 0 - 198 415 202 394 203 372 c 0 - 204 353 205 334 204 314 c 0 - 203 283 204 252 203 220 c 0 - 203 204 202 188 200 172 c 0 - 196 149 195 126 188 105 c 0 - 186 98 183 92 180 86 c 0 - 172 66 164 45 155 25 c 0 - 147 8 137 -8 128 -25 c 0 - 120 -39 111 -54 103 -69 c 0 - 95 -85 82 -97 72 -111 c 0 - 68 -117 63 -123 58 -129 c 0 - 52 -136 48 -136 42 -129 c 0 - 39 -125 35 -121 32 -118 c 0 - 29 -116 28 -114 26 -112 c 0 - 21 -108 21 -107 26 -102 c 0 - 27 -100 29 -99 30 -97 c 0 - 41 -82 51 -67 61 -53 c 0 - 70 -39 79 -24 87 -10 c 1 - 90 -7 l 1 - 96 8 102 23 108 37 c 0 - 117 62 127 88 135 113 c 0 - 141 130 145 147 148 164 c 0 - 151 176 152 189 154 202 c 0 - 155 210 157 218 158 226 c 0 - 159 228 159 230 159 233 c 0 - 160 262 161 292 160 322 c 0 - 160 345 156 368 154 391 c 0 - 153 402 153 412 152 422 c 0 - 151 436 150 451 149 465 c 0 - 147 477 145 490 142 502 c 0 - 138 521 134 540 128 559 c 0 - 119 586 116 615 102 641 c 0 - 96 654 91 668 84 681 c 0 - 76 696 67 710 58 724 c 0 - 44 745 30 767 17 788 c 0 - 15 791 12 794 10 797 c 0 -EndSplineSet -EndChar - -StartChar: asterisk -Encoding: 42 42 13 -Width: 193 -GlyphClass: 2 -Flags: MW -HStem: 318 110 355 46 -VStem: 105 15 -LayerCount: 2 -Fore -SplineSet -76 375 m 1x60 - 75 381 74 387 74 393 c 0x60 - 72 399 70 406 69 412 c 0 - 67 421 71 426 80 426 c 0 - 88 427 97 428 105 428 c 0 - 106 429 108 429 110 429 c 0 - 120 429 122 426 120 417 c 2 - 111 375 l 2 - 111 373 112 371 113 369 c 1 - 114 370 116 371 117 372 c 0xa0 - 127 380 135 389 145 397 c 0 - 152 403 158 402 164 394 c 0 - 168 387 173 381 177 374 c 0 - 179 372 180 370 181 368 c 0 - 184 361 183 358 176 356 c 0 - 161 351 145 346 130 341 c 0 - 128 340 126 339 123 338 c 1 - 125 335 126 334 128 333 c 0 - 141 324 154 316 167 307 c 0 - 175 302 175 299 169 292 c 0 - 161 285 152 278 144 271 c 0 - 139 267 133 268 129 273 c 2 - 123 282 l 2 - 117 292 111 302 105 311 c 0 - 97 322 90 319 86 311 c 0 - 79 298 71 287 64 275 c 0 - 58 267 52 266 44 273 c 0 - 39 278 33 282 28 287 c 0 - 25 289 23 292 20 294 c 0 - 16 299 16 302 22 306 c 0 - 26 309 32 312 36 315 c 0 - 45 321 53 326 61 332 c 0 - 63 333 65 336 65 338 c 0 - 65 339 62 341 60 342 c 0 - 46 346 32 351 18 355 c 0 - 10 358 8 362 13 369 c 0 - 19 378 25 388 32 397 c 0 - 35 402 42 402 47 398 c 0 - 52 394 56 389 61 385 c 0 - 65 381 70 378 74 374 c 1 - 75 375 75 375 76 375 c 1x60 -EndSplineSet -EndChar - -StartChar: plus -Encoding: 43 43 14 -Width: 172 -GlyphClass: 2 -Flags: MW -HStem: 154 44 -VStem: 65 41 -LayerCount: 2 -Fore -SplineSet -108 198 m 0 - 125 196 141 198 158 198 c 1 - 160 184 161 170 162 156 c 1 - 143 152 125 155 106 153 c 1 - 106 107 l 1 - 93 106 79 105 65 104 c 1 - 62 121 65 137 63 153 c 1 - 48 156 33 156 18 155 c 0 - 12 154 10 156 10 163 c 2 - 13 193 l 2 - 13 196 15 198 18 198 c 2 - 40 198 l 2 - 48 199 55 199 63 199 c 1 - 63 203 65 207 65 211 c 0 - 65 222 65 232 64 243 c 0 - 64 249 66 251 71 251 c 2 - 98 248 l 2 - 105 248 106 247 106 240 c 0 - 107 228 107 215 107 202 c 0 - 107 201 108 200 108 198 c 0 -EndSplineSet -EndChar - -StartChar: comma -Encoding: 44 44 15 -Width: 106 -GlyphClass: 2 -Flags: MW -HStem: -77 107 -VStem: 11 84 41 53<-1 21.5> -LayerCount: 2 -Fore -SplineSet -94 -1 m 0xa0 - 98 -20 90 -38 82 -55 c 0 - 82 -57 80 -59 79 -60 c 0 - 69 -65 59 -71 48 -75 c 0 - 42 -77 34 -77 26 -76 c 0 - 22 -76 17 -73 14 -70 c 0 - 8 -64 10 -58 17 -55 c 0 - 31 -50 38 -40 39 -26 c 0 - 40 -12 40 2 41 17 c 0 - 41 26 45 30 54 30 c 0 - 63 29 73 30 82 30 c 0 - 90 30 94 25 94 17 c 0 - 95 11 94 5 94 -1 c 0xa0 -EndSplineSet -EndChar - -StartChar: hyphen -Encoding: 45 45 16 -Width: 172 -GlyphClass: 2 -Flags: MW -HStem: 158 44<111 159> -VStem: 10 150 10 152<160 165> -LayerCount: 2 -Fore -SplineSet -159 202 m 1xc0 - 162 160 l 1 - 157 159 154 158 151 158 c 2 - 111 158 l 1 - 81 158 l 2 - 64 159 46 159 28 160 c 0 - 24 160 21 159 17 159 c 0 - 12 158 10 160 10 165 c 0 - 11 177 12 189 14 201 c 1 - 62 207 110 200 159 202 c 1xc0 -EndSplineSet -EndChar - -StartChar: period -Encoding: 46 46 17 -Width: 92 -GlyphClass: 2 -Flags: MW -HStem: -25 65<37 46 46 51.5 34 58 37 37> -VStem: 10 70 -LayerCount: 2 -Fore -SplineSet -46 40 m 1 - 57 40 66 40 73 30 c 0 - 81 18 84 5 80 -9 c 0 - 77 -19 68 -24 58 -25 c 2 - 37 -25 l 2 - 30 -24 24 -21 18 -16 c 0 - 8 -5 8 13 17 24 c 0 - 20 27 21 30 23 33 c 0 - 26 37 29 40 34 40 c 0 - 38 39 42 40 46 40 c 1 - 46 40 l 1 -EndSplineSet -Kerns2: 12 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: slash -Encoding: 47 47 18 -Width: 218 -GlyphClass: 2 -Flags: MW -HStem: -64 645<24 197> -VStem: 10 198 183 24 -LayerCount: 2 -Fore -SplineSet -183 581 m 1xa0 - 197 581 l 2 - 206 580 209 577 207 568 c 0 - 202 549 198 531 194 513 c 0 - 178 443 164 373 146 303 c 0 - 120 205 100 105 75 6 c 0 - 70 -15 64 -35 58 -55 c 0 - 57 -60 54 -62 49 -63 c 0 - 41 -63 33 -64 24 -64 c 0 - 13 -65 8 -59 11 -48 c 0 - 24 9 38 66 52 122 c 0 - 70 201 89 280 106 358 c 0 - 116 399 122 440 131 481 c 0 - 136 509 143 537 149 565 c 0 - 151 573 159 580 167 580 c 2 - 183 580 l 1 - 183 581 l 1xa0 -EndSplineSet -EndChar - -StartChar: zero -Encoding: 48 48 19 -Width: 458 -GlyphClass: 2 -Flags: MW -HStem: 4 37<200.5 225.5> 331 24 -VStem: 13 63 391 55<181 199> -LayerCount: 2 -Fore -SplineSet -229 355 m 0 - 253 356 276 352 299 346 c 0 - 312 343 327 340 339 334 c 0 - 351 328 362 319 373 312 c 0 - 380 307 387 301 394 296 c 0 - 407 285 418 273 427 258 c 0 - 440 235 447 212 446 186 c 0 - 446 176 444 165 443 155 c 0 - 442 137 435 122 425 108 c 0 - 416 97 406 86 397 75 c 0 - 385 61 371 50 354 41 c 0 - 323 24 291 12 258 7 c 0 - 245 4 232 4 219 4 c 0 - 208 3 196 3 185 3 c 0 - 176 4 167 7 158 9 c 0 - 128 16 101 32 77 53 c 0 - 74 55 69 58 66 62 c 0 - 48 74 35 89 25 107 c 0 - 16 120 14 136 12 153 c 0 - 11 173 12 191 15 211 c 0 - 16 216 18 220 20 224 c 0 - 34 258 55 288 87 308 c 0 - 99 316 110 323 121 331 c 0 - 140 344 161 352 184 353 c 0 - 198 354 213 355 229 355 c 0 -222 331 m 0 - 212 330 204 329 195 329 c 0 - 187 329 180 327 174 323 c 0 - 158 313 145 302 132 291 c 0 - 99 265 81 231 77 190 c 0 - 75 169 75 150 84 130 c 0 - 91 112 100 96 112 81 c 0 - 118 76 124 69 131 66 c 0 - 152 54 175 50 197 42 c 0 - 198 42 200 41 201 41 c 0 - 227 38 253 37 278 46 c 0 - 279 46 280 47 282 47 c 0 - 307 48 328 59 346 76 c 0 - 353 82 359 92 364 102 c 0 - 367 108 370 114 373 121 c 0 - 383 146 391 173 391 199 c 0 - 392 215 388 228 382 241 c 0 - 374 253 367 265 361 277 c 0 - 350 293 334 306 317 313 c 0 - 286 326 254 332 222 331 c 0 -EndSplineSet -EndChar - -StartChar: one -Encoding: 49 49 20 -Width: 168 -GlyphClass: 2 -Flags: MW -HStem: -6 13 -3 10<21 21> -VStem: 61 57<208.5 226.5> -LayerCount: 2 -Fore -SplineSet -13 304 m 1x60 - 12 310 12 317 11 323 c 0 - 11 324 13 327 15 328 c 0 - 31 338 46 349 62 360 c 0 - 63 361 67 362 69 361 c 0 - 82 358 96 353 109 349 c 0 - 111 349 113 346 114 344 c 0 - 116 337 116 329 117 322 c 2 - 117 283 l 2 - 117 261 118 238 118 215 c 0 - 118 202 117 190 117 178 c 0 - 117 131 118 85 118 37 c 0 - 118 30 121 24 128 22 c 0 - 137 19 147 16 157 13 c 1 - 157 -2 l 1xa0 - 112 -7 67 -6 21 -3 c 0 - 21 1 20 4 20 7 c 0 - 30 12 37 19 47 23 c 0 - 55 28 57 34 58 43 c 0 - 59 52 59 62 61 71 c 0 - 63 131 64 190 61 250 c 0 - 59 271 59 290 58 310 c 0 - 58 319 57 320 48 317 c 0 - 37 312 26 308 13 304 c 1x60 -EndSplineSet -EndChar - -StartChar: two -Encoding: 50 50 21 -Width: 305 -GlyphClass: 2 -Flags: MW -HStem: -9 53<157 171.5> 322 36 -VStem: 214 51 -LayerCount: 2 -Fore -SplineSet -12 -8 m 1 - 12 1 11 10 12 18 c 0 - 12 20 14 23 16 25 c 0 - 24 30 33 33 41 37 c 0 - 63 47 85 57 107 69 c 0 - 125 80 142 92 159 105 c 0 - 162 107 164 109 166 112 c 0 - 185 135 199 161 208 188 c 0 - 218 216 215 242 207 268 c 0 - 202 282 194 291 183 299 c 0 - 167 310 152 321 132 322 c 0 - 125 323 120 323 113 322 c 0 - 89 322 65 322 42 316 c 0 - 34 313 26 311 19 309 c 1 - 15 316 13 322 11 330 c 0 - 13 332 15 333 19 334 c 0 - 42 345 66 352 92 356 c 0 - 116 361 139 359 161 358 c 0 - 185 355 207 345 226 329 c 0 - 253 305 265 275 265 239 c 0 - 265 226 266 211 262 197 c 0 - 260 190 257 183 255 176 c 0 - 248 159 240 143 231 127 c 0 - 223 111 211 98 199 86 c 0 - 188 75 175 64 163 53 c 0 - 161 51 159 47 157 44 c 1 - 159 44 162 43 163 44 c 0 - 191 46 220 47 249 50 c 0 - 260 51 267 57 273 67 c 0 - 275 73 277 77 278 82 c 0 - 282 92 282 92 294 92 c 1 - 291 59 289 26 286 -8 c 1 - 276 -8 267 -8 260 -7 c 0 - 231 -6 204 -6 176 -8 c 0 - 175 -8 173 -9 170 -9 c 0 - 120 -11 69 -10 19 -8 c 2 - 12 -8 l 1 -EndSplineSet -EndChar - -StartChar: three -Encoding: 51 51 22 -Width: 339 -GlyphClass: 2 -Flags: MW -HStem: -14 37 184 25<112 113 112 128 108 113> 333 29 -VStem: 13 17 210 55<288 300 295 300> 280 46<106 125.5> -LayerCount: 2 -Fore -SplineSet -30 110 m 1 - 30 107 31 103 31 100 c 0 - 34 79 46 64 63 51 c 0 - 67 47 70 43 76 41 c 0 - 82 36 89 32 97 30 c 0 - 108 26 120 25 132 24 c 0 - 145 23 159 23 174 23 c 0 - 191 24 209 26 227 31 c 0 - 238 34 246 41 254 50 c 0 - 273 69 280 92 280 120 c 0 - 280 131 280 142 277 152 c 0 - 273 164 266 175 255 182 c 0 - 250 186 243 190 237 195 c 0 - 224 202 210 202 197 199 c 0 - 180 196 164 190 148 187 c 0 - 141 185 134 184 128 184 c 2 - 108 184 l 1 - 108 190 107 198 108 205 c 0 - 108 207 111 209 113 209 c 0 - 130 211 144 218 158 226 c 0 - 164 228 168 231 173 234 c 0 - 182 242 189 249 197 257 c 0 - 206 265 210 276 210 288 c 2 - 210 295 l 2 - 212 317 208 322 186 329 c 0 - 183 330 178 332 175 333 c 0 - 159 337 144 334 130 327 c 0 - 114 319 99 310 85 301 c 0 - 79 299 75 296 69 293 c 0 - 68 293 68 290 67 290 c 0 - 59 291 57 298 53 304 c 0 - 51 307 51 310 54 313 c 0 - 65 321 76 330 88 337 c 0 - 105 346 122 354 142 359 c 0 - 164 362 185 363 206 362 c 0 - 224 361 241 353 255 340 c 0 - 260 335 262 331 262 324 c 0 - 263 315 265 305 265 295 c 0 - 266 273 256 254 240 240 c 0 - 239 239 237 238 234 237 c 1 - 246 232 256 228 267 223 c 0 - 304 212 322 185 326 148 c 0 - 328 128 327 108 326 87 c 0 - 326 82 324 78 322 74 c 0 - 311 53 298 33 280 16 c 2 - 277 13 l 1 - 261 7 248 -4 230 -8 c 0 - 216 -10 201 -13 188 -14 c 0 - 163 -18 137 -15 113 -10 c 0 - 102 -7 90 -3 79 0 c 0 - 62 4 47 13 35 26 c 0 - 28 35 20 43 15 55 c 0 - 12 67 11 79 13 91 c 0 - 14 100 21 105 30 110 c 1 -EndSplineSet -EndChar - -StartChar: four -Encoding: 52 52 23 -Width: 358 -GlyphClass: 2 -Flags: MW -HStem: -6 21G -2 20 -1 22<284.5 285 284.5 291.5> 150 41 182 27 -VStem: 191 54<113 114 114 143 143 150 106 152 106 152> 191 58 -LayerCount: 2 -Fore -SplineSet -191 152 m 1x34 - 186 153 180 154 176 155 c 0 - 159 161 143 166 127 172 c 0x2c - 108 178 88 182 68 182 c 0 - 51 180 33 180 14 179 c 1 - 14 180 l 1 - 10 195 9 190 20 198 c 0 - 53 222 87 244 119 267 c 0 - 143 285 166 302 189 320 c 0 - 205 332 220 345 235 358 c 0 - 239 361 242 363 248 366 c 1 - 249 362 250 359 250 355 c 2 - 250 324 l 2x2a - 249 282 246 239 245 197 c 0 - 245 191 246 189 252 189 c 0 - 280 190 309 190 338 191 c 2 - 344 191 l 1 - 345 187 345 183 346 178 c 1 - 315 163 283 150 245 150 c 1 - 245 114 l 2 - 245 98 245 82 246 66 c 0 - 246 41 257 32 282 22 c 0 - 283 21 284 21 285 21 c 0 - 299 18 300 16 298 0 c 0 - 295 0 293 -1 290 -1 c 0 - 260 -1 230 -1 200 -2 c 0x34 - 184 -2 168 -3 153 -6 c 0x94 - 135 -8 134 -6 135 11 c 0 - 135 15 136 18 141 18 c 0 - 152 20 162 22 172 28 c 0 - 179 31 183 36 185 44 c 0 - 190 67 193 90 191 113 c 2x54 - 191 143 l 1 - 191 152 l 1x34 -114 210 m 1x32 - 114 209 l 1 - 140 205 164 194 189 191 c 1 - 190 218 191 242 194 269 c 1 - 166 249 141 230 114 210 c 1x32 -EndSplineSet -Kerns2: 26 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: five -Encoding: 53 53 24 -Width: 356 -GlyphClass: 2 -Flags: MW -HStem: -9 35<154.5 201> 153 13 320 43<230 235> -VStem: 12 52 292 48 -LayerCount: 2 -Fore -SplineSet -345 287 m 1 - 333 283 331 285 329 296 c 0 - 328 299 327 302 326 306 c 0 - 322 316 319 318 309 319 c 0 - 279 319 250 320 220 320 c 0 - 212 320 205 320 196 321 c 0 - 187 323 179 319 175 311 c 0 - 164 290 153 269 142 249 c 1 - 142 246 l 1 - 148 248 155 249 161 250 c 0 - 194 254 227 252 258 243 c 0 - 279 239 298 230 310 211 c 0 - 317 202 323 195 330 187 c 0 - 340 173 342 157 340 141 c 0 - 338 120 331 100 322 81 c 0 - 318 71 310 64 304 55 c 0 - 286 33 264 15 239 2 c 0 - 224 -4 209 -9 193 -9 c 0 - 182 -9 169 -8 157 -8 c 2 - 155 -8 l 1 - 140 -12 124 -8 110 -6 c 0 - 105 -4 99 -2 94 1 c 0 - 86 4 79 9 73 13 c 0 - 62 21 52 30 44 42 c 0 - 37 53 30 63 23 74 c 0 - 16 85 13 97 12 109 c 0 - 11 111 13 114 14 117 c 0 - 22 124 30 131 36 137 c 0 - 44 145 52 153 59 162 c 0 - 65 168 67 168 75 162 c 0 - 76 161 78 158 79 157 c 0 - 81 156 82 154 85 153 c 1 - 80 148 77 144 74 140 c 0 - 65 128 63 114 64 99 c 0 - 65 87 67 75 74 63 c 0 - 80 51 91 43 105 37 c 0 - 114 34 125 31 135 29 c 0 - 143 28 151 26 158 26 c 0 - 174 26 188 28 204 29 c 0 - 215 29 224 34 233 40 c 0 - 263 56 279 81 287 112 c 0 - 291 128 295 143 289 158 c 0 - 282 182 267 198 243 204 c 0 - 231 207 220 212 208 213 c 0 - 195 216 182 216 169 213 c 0 - 145 207 121 201 96 202 c 2 - 92 202 l 2 - 82 202 76 207 82 220 c 0 - 99 252 117 283 139 311 c 0 - 148 323 157 338 166 352 c 0 - 169 358 173 361 179 361 c 0 - 200 362 220 363 240 363 c 0 - 252 364 265 363 276 364 c 0 - 297 364 317 361 337 358 c 0 - 342 356 344 353 345 349 c 2 - 345 342 l 1 - 345 287 l 1 -EndSplineSet -EndChar - -StartChar: six -Encoding: 54 54 25 -Width: 409 -GlyphClass: 2 -Flags: MW -HStem: -7 35 242 40<208 239> -VStem: 12 64 342 54 -LayerCount: 2 -Fore -SplineSet -216 -7 m 0 - 182 -7 147 -2 114 8 c 0 - 94 13 75 23 58 37 c 0 - 37 55 24 78 18 106 c 0 - 8 143 11 180 23 217 c 0 - 37 255 59 288 95 313 c 0 - 114 328 136 338 158 348 c 0 - 186 361 217 367 246 375 c 0 - 252 377 257 378 264 381 c 0 - 271 383 274 381 274 373 c 0 - 275 369 274 363 274 356 c 0 - 274 352 272 352 267 351 c 0 - 255 349 242 346 230 343 c 0 - 196 337 167 319 140 299 c 0 - 123 288 108 275 97 258 c 0 - 96 256 94 254 94 253 c 0 - 94 250 95 246 97 244 c 0 - 97 243 101 243 103 244 c 0 - 118 251 132 257 146 263 c 0 - 163 272 182 274 199 277 c 0 - 209 278 218 280 228 282 c 0 - 232 283 235 282 239 282 c 0 - 242 282 244 279 246 279 c 0 - 264 282 280 275 297 273 c 0 - 304 271 310 268 317 265 c 0 - 324 261 332 256 339 252 c 0 - 369 229 391 201 397 163 c 0 - 398 150 398 135 396 121 c 0 - 394 100 388 80 376 63 c 0 - 364 42 346 28 324 18 c 0 - 300 7 277 -3 251 -7 c 0 - 239 -8 228 -7 216 -7 c 0 -204 28 m 0 - 232 26 243 28 266 35 c 0 - 283 41 298 52 310 64 c 0 - 339 95 348 131 337 173 c 0 - 332 193 321 208 304 218 c 0 - 297 223 290 228 284 231 c 0 - 277 234 269 238 263 239 c 0 - 248 241 233 241 219 242 c 0 - 216 242 211 241 208 242 c 0 - 201 243 195 242 189 240 c 0 - 164 230 140 217 117 201 c 0 - 102 193 91 180 84 165 c 0 - 77 154 77 143 76 131 c 0 - 73 110 80 92 91 78 c 0 - 106 56 128 44 152 36 c 0 - 170 31 189 26 204 28 c 0 -EndSplineSet -EndChar - -StartChar: seven -Encoding: 55 55 26 -Width: 354 -GlyphClass: 2 -Flags: MW -HStem: -7 18<250 250> -6 25<103 144.5> 311 49<172 242.5> -VStem: 11 331 94 116 -LayerCount: 2 -Fore -SplineSet -96 18 m 0x68 - 99 18 101 19 105 19 c 0 - 121 22 132 33 140 46 c 0x68 - 158 76 175 108 190 140 c 0 - 204 168 218 196 231 223 c 0 - 242 249 251 275 261 301 c 0 - 262 305 260 308 256 308 c 0 - 251 310 245 311 240 311 c 0 - 195 311 148 311 103 310 c 0 - 94 310 82 309 73 308 c 0 - 68 307 63 305 61 301 c 0 - 50 288 40 276 29 262 c 1 - 23 265 18 267 11 271 c 0 - 12 273 13 275 14 276 c 0 - 24 298 35 318 46 340 c 0 - 47 343 50 348 53 351 c 0 - 55 354 59 356 63 358 c 0 - 74 361 85 361 97 361 c 0 - 121 361 146 361 172 360 c 0 - 197 360 222 358 249 356 c 0 - 274 355 300 355 327 355 c 0 - 330 355 333 355 337 354 c 0 - 343 352 344 350 341 343 c 0 - 332 323 323 304 315 284 c 0 - 302 255 293 228 280 199 c 0 - 266 166 251 133 235 101 c 0 - 229 86 221 70 213 55 c 0 - 207 37 211 26 228 19 c 0 - 235 15 242 13 251 11 c 1 - 251 5 250 -1 250 -7 c 1 - 197 -7 l 2 - 176 -7 155 -6 134 -6 c 0xa8 - 123 -6 113 -7 102 -8 c 0 - 94 -8 94 -7 94 2 c 0 - 94 5 94 8 95 11 c 0 - 95 12 95 14 96 18 c 0x68 -EndSplineSet -EndChar - -StartChar: eight -Encoding: 56 56 27 -Width: 343 -GlyphClass: 2 -Flags: MW -HStem: -23 31<165.5 189.5> 341 22<176 208.5> -VStem: 12 51 70 49 237 38 294 37 -LayerCount: 2 -Fore -SplineSet -113 205 m 1 - 106 211 97 218 89 226 c 0 - 86 229 84 233 80 238 c 0 - 79 239 78 241 77 243 c 0 - 64 257 67 274 70 290 c 0 - 77 316 92 334 114 345 c 0 - 125 351 137 355 148 359 c 0 - 168 362 187 365 206 363 c 0 - 211 363 217 363 222 360 c 0 - 237 353 250 343 263 333 c 0 - 272 326 274 313 275 304 c 0 - 278 287 275 272 266 258 c 0 - 260 248 255 234 241 228 c 1 - 246 224 251 223 254 221 c 0 - 277 209 296 193 310 170 c 0 - 330 143 333 112 331 79 c 0 - 330 73 330 66 328 58 c 0 - 320 32 304 11 278 -2 c 0 - 256 -12 233 -17 210 -21 c 0 - 202 -23 194 -23 185 -23 c 0 - 167 -22 148 -23 131 -20 c 0 - 111 -18 92 -12 74 -6 c 0 - 55 1 42 16 31 33 c 0 - 24 42 20 53 14 63 c 0 - 12 68 11 74 12 80 c 0 - 13 105 20 127 33 147 c 0 - 44 165 58 180 78 188 c 0 - 90 194 102 199 113 205 c 1 -176 8 m 0 - 191 7 208 12 224 18 c 0 - 240 22 256 25 268 38 c 0 - 275 47 282 55 287 65 c 0 - 296 81 297 98 289 117 c 0 - 282 137 266 152 248 162 c 0 - 227 173 206 183 185 194 c 0 - 180 197 175 197 170 194 c 0 - 157 188 143 182 130 175 c 0 - 117 167 102 159 89 150 c 0 - 80 144 73 135 69 124 c 0 - 64 108 61 90 63 73 c 0 - 63 58 68 46 82 40 c 0 - 89 36 96 33 102 30 c 0 - 109 26 116 24 122 21 c 0 - 139 12 155 8 176 8 c 0 -237 286 m 0 - 237 317 212 341 187 341 c 0 - 184 341 179 340 176 341 c 0 - 157 343 143 335 129 324 c 0 - 123 319 121 313 120 307 c 0 - 119 299 118 291 119 285 c 0 - 119 273 123 262 132 253 c 0 - 148 237 169 230 193 228 c 0 - 196 227 201 228 204 230 c 0 - 223 245 234 265 237 286 c 0 -EndSplineSet -EndChar - -StartChar: nine -Encoding: 57 57 28 -Width: 409 -GlyphClass: 2 -Flags: MW -HStem: -23 21G 79 37<196.5 209.5> 330 34<184 190.5> -VStem: 12 56 332 65 -LayerCount: 2 -Fore -SplineSet -313 116 m 1 - 309 114 307 114 305 113 c 2 - 290 107 l 1 - 262 91 231 82 199 79 c 0 - 194 79 188 77 182 76 c 2 - 170 76 l 2 - 167 77 165 78 163 78 c 0 - 144 76 129 82 112 86 c 0 - 106 87 99 89 92 92 c 0 - 85 97 77 101 69 107 c 0 - 40 130 18 157 12 194 c 0 - 10 210 12 227 13 242 c 0 - 15 261 22 276 31 291 c 0 - 43 313 61 329 82 339 c 0 - 107 351 131 362 158 364 c 0 - 176 365 194 364 211 364 c 0 - 239 363 266 359 294 350 c 0 - 300 349 308 345 315 342 c 0 - 328 335 340 329 351 320 c 0 - 367 305 381 287 388 265 c 0 - 394 245 398 226 397 206 c 0 - 396 170 388 137 371 108 c 0 - 360 89 348 71 331 57 c 0 - 317 45 302 33 285 26 c 0 - 274 22 265 16 255 12 c 0 - 226 -2 194 -10 162 -18 c 0 - 156 -20 151 -22 144 -23 c 0 - 139 -24 135 -23 134 -17 c 2 - 134 1 l 2 - 134 5 137 5 141 7 c 0 - 150 8 158 10 167 11 c 0 - 213 20 253 42 287 73 c 0 - 298 82 304 97 312 110 c 0 - 313 110 313 112 313 116 c 1 -68 218 m 2 - 68 206 l 2 - 71 179 79 155 103 140 c 0 - 110 136 118 132 123 128 c 0 - 134 120 146 118 158 117 c 0 - 175 116 191 116 208 116 c 0 - 211 116 215 116 217 117 c 0 - 246 129 275 139 304 152 c 0 - 320 159 332 174 332 194 c 0 - 332 207 333 219 332 232 c 0 - 332 252 328 269 315 284 c 0 - 307 293 298 300 288 307 c 0 - 284 310 277 311 272 315 c 0 - 256 323 240 327 223 329 c 0 - 210 330 197 330 184 330 c 0 - 151 331 123 317 101 296 c 0 - 78 275 68 249 68 218 c 2 -EndSplineSet -EndChar - -StartChar: colon -Encoding: 58 58 29 -Width: 92 -GlyphClass: 2 -Flags: MW -HStem: -13 64<34.5 40 40 47 47 49 49 52.5 34 53> 133 65<38 59> -VStem: 11 71 -LayerCount: 2 -Fore -SplineSet -47 198 m 1 - 49 198 l 2 - 56 198 64 199 69 192 c 0 - 76 184 82 176 82 166 c 2 - 82 156 l 2 - 81 144 71 134 59 133 c 0 - 52 133 44 133 37 134 c 0 - 24 134 10 148 11 162 c 0 - 12 170 13 178 20 184 c 0 - 21 185 22 186 23 188 c 0 - 25 196 31 198 38 198 c 0 - 41 197 44 198 47 198 c 1 - 47 198 l 1 -47 51 m 1 - 49 51 l 2 - 56 51 64 52 69 46 c 0 - 76 38 82 30 82 19 c 2 - 82 16 l 2 - 82 -4 73 -13 53 -13 c 2 - 40 -13 l 2 - 29 -13 21 -8 15 1 c 0 - 9 9 10 26 17 35 c 0 - 19 38 22 42 24 45 c 0 - 26 49 29 51 34 51 c 2 - 47 51 l 1 - 47 51 l 1 -EndSplineSet -EndChar - -StartChar: semicolon -Encoding: 59 59 30 -Width: 113 -GlyphClass: 2 -Flags: MW -HStem: 133 65<67.5 70 70 70 70 78> -VStem: 32 71 40 54<10 17> -LayerCount: 2 -Fore -SplineSet -94 -1 m 2xa0 - 97 -20 89 -38 82 -55 c 0 - 81 -57 80 -59 78 -60 c 0 - 69 -65 59 -71 49 -75 c 0 - 42 -77 34 -77 26 -77 c 0 - 22 -76 17 -73 14 -70 c 0 - 8 -64 9 -58 17 -55 c 0 - 30 -50 37 -40 38 -26 c 0 - 40 -11 40 3 40 17 c 0 - 41 26 44 30 54 30 c 0 - 63 29 72 30 82 30 c 0 - 90 30 94 25 94 17 c 2 - 94 -1 l 2xa0 -70 133 m 1xc0 - 65 133 61 133 57 134 c 0 - 45 134 31 148 32 161 c 0 - 33 170 35 178 41 184 c 2 - 44 187 l 1 - 46 197 53 198 62 198 c 0 - 67 197 73 198 78 198 c 0 - 81 197 85 197 87 195 c 0 - 96 187 103 178 103 166 c 2 - 103 157 l 2 - 102 143 92 134 78 133 c 2 - 70 133 l 1 - 70 133 l 1xc0 -EndSplineSet -EndChar - -StartChar: less -Encoding: 60 60 31 -Width: 164 -GlyphClass: 2 -Flags: MW -HStem: 61 173 -VStem: 11 143 12 61<143 151.5> -LayerCount: 2 -Fore -SplineSet -12 143 m 1xa0 - 12 147 11 152 11 156 c 0 - 10 164 11 166 18 170 c 0 - 32 178 47 186 60 196 c 0 - 70 203 81 209 91 215 c 0 - 102 221 113 226 124 232 c 0 - 131 235 131 235 135 230 c 0 - 141 222 146 215 151 207 c 0 - 155 201 154 199 148 196 c 0 - 137 190 126 183 115 177 c 0 - 104 171 93 164 82 158 c 0 - 78 156 73 154 73 149 c 0 - 74 144 77 140 82 138 c 0 - 94 131 105 125 117 118 c 0 - 127 112 138 105 149 100 c 0 - 154 97 155 95 152 90 c 0 - 146 81 139 73 133 64 c 0 - 131 61 130 61 127 62 c 0 - 126 63 124 64 123 64 c 0 - 103 75 82 85 63 98 c 0 - 47 108 32 118 16 127 c 0 - 15 128 13 130 13 131 c 0 - 12 135 12 139 11 143 c 1 - 12 143 l 1xa0 -EndSplineSet -EndChar - -StartChar: equal -Encoding: 61 61 32 -Width: 172 -GlyphClass: 2 -Flags: MW -HStem: 123 43<29 34.5 22 39.5> 186 44<142 151> -VStem: 10 149<126.5 230 190.5 230> 10 152<126.5 188 188 193> -LayerCount: 2 -Fore -SplineSet -14 229 m 0x60 - 17 230 19 230 22 230 c 0 - 45 231 68 232 92 231 c 0 - 108 231 125 230 142 230 c 0 - 147 229 153 230 159 230 c 1 - 162 188 l 1 - 157 187 154 186 151 186 c 2 - 111 186 l 1 - 81 186 l 2 - 64 186 46 187 28 187 c 0 - 24 188 21 187 17 187 c 0 - 12 186 10 188 10 193 c 0 - 11 205 12 217 14 229 c 0x60 -159 166 m 1xe0 - 160 151 161 138 162 124 c 1 - 158 123 154 122 151 122 c 2 - 110 122 l 2 - 101 122 92 121 82 122 c 0 - 65 122 48 123 31 123 c 0 - 27 123 22 123 17 122 c 0 - 12 122 10 124 10 129 c 2 - 13 162 l 2 - 14 163 15 165 17 165 c 0 - 19 166 21 166 23 166 c 0 - 46 166 69 167 91 167 c 0 - 108 167 125 166 142 165 c 0 - 147 165 153 166 159 166 c 1xe0 -EndSplineSet -EndChar - -StartChar: greater -Encoding: 62 62 33 -Width: 163 -GlyphClass: 2 -Flags: MW -HStem: 62 172 -VStem: 91 61 -LayerCount: 2 -Fore -SplineSet -152 158 m 0 - 152 151 153 144 152 137 c 0 - 152 131 150 128 145 125 c 0 - 131 118 117 109 104 99 c 0 - 94 92 83 87 73 81 c 0 - 62 75 51 70 40 64 c 0 - 34 61 33 61 29 66 c 0 - 24 74 18 81 13 89 c 0 - 9 95 10 97 16 100 c 0 - 27 106 38 113 49 119 c 0 - 60 125 71 132 82 138 c 0 - 84 139 86 140 87 142 c 0 - 93 148 92 153 84 157 c 0 - 73 163 62 169 52 175 c 0 - 43 180 36 185 27 190 c 0 - 23 193 19 194 15 196 c 0 - 11 198 9 201 12 205 c 0 - 18 214 25 223 32 232 c 0 - 32 233 35 234 36 234 c 0 - 38 233 40 232 41 231 c 0 - 61 220 82 210 101 198 c 0 - 117 188 133 177 149 168 c 0 - 153 166 154 164 152 158 c 0 -EndSplineSet -EndChar - -StartChar: question -Encoding: 63 63 34 -Width: 227 -GlyphClass: 2 -Flags: MW -HStem: -5 21G 613 45 -VStem: 35 66 43 41<126 207> 158 44 -LayerCount: 2 -Fore -SplineSet -63 607 m 1xd8 - 60 610 56 613 53 617 c 0 - 49 622 45 627 42 632 c 0 - 38 637 39 640 43 643 c 0 - 54 652 67 658 81 658 c 0 - 90 658 99 659 108 659 c 0 - 122 661 134 656 146 650 c 0 - 158 643 170 636 178 624 c 0 - 181 619 184 614 186 608 c 0 - 199 574 204 539 202 503 c 0 - 200 480 202 458 196 436 c 0 - 189 413 182 389 173 366 c 0 - 169 355 160 344 152 334 c 0 - 130 306 107 279 95 246 c 0 - 91 236 89 225 88 215 c 0 - 86 197 85 178 84 160 c 2 - 84 126 l 1 - 73 125 61 123 48 122 c 1 - 48 124 47 127 46 130 c 0 - 43 144 42 158 43 172 c 2 - 43 207 l 2 - 43 226 47 243 53 259 c 0 - 59 273 63 287 72 299 c 0 - 81 310 89 321 98 331 c 0 - 120 356 135 384 142 416 c 0 - 145 429 148 441 151 453 c 0 - 153 462 154 470 155 479 c 0 - 157 498 159 517 158 535 c 0 - 158 549 156 562 151 574 c 0 - 146 586 138 598 125 603 c 0 - 117 607 110 610 103 613 c 0 - 89 617 76 617 63 607 c 1xd8 -35 27 m 0xe8 - 33 45 44 56 56 66 c 0 - 61 70 67 70 72 68 c 0 - 77 66 83 64 87 61 c 0 - 91 58 96 54 98 49 c 0 - 105 34 103 8 81 -3 c 0 - 77 -5 71 -6 67 -5 c 0 - 56 -4 47 2 39 10 c 0 - 34 14 35 21 35 27 c 0xe8 -EndSplineSet -EndChar - -StartChar: at -Encoding: 64 64 35 -Width: 414 -GlyphClass: 2 -Flags: MW -HStem: -53 34 9 31 9 35 227 30 310 33<188 237> -VStem: 11 46 98 42 184 22<214 215.5> 254 38 366 36 -LayerCount: 2 -Fore -SplineSet -262 35 m 0x3ec0 - 236 13 207 6 174 9 c 0 - 148 11 127 23 111 43 c 0 - 107 48 105 53 103 58 c 0 - 98 72 95 87 98 102 c 0x3ec0 - 101 121 110 138 128 147 c 0 - 140 154 153 159 167 164 c 0 - 190 172 215 179 237 191 c 2 - 249 200 l 2 - 253 203 253 207 251 211 c 0 - 244 229 220 234 208 217 c 0 - 207 216 206 216 206 215 c 0 - 201 207 195 206 187 209 c 0 - 185 210 184 213 184 215 c 0 - 183 229 190 239 200 247 c 0 - 213 258 229 259 245 257 c 0 - 257 256 268 253 276 244 c 0 - 285 233 291 221 292 207 c 0 - 294 191 294 176 295 161 c 0 - 296 145 293 129 292 114 c 0 - 290 98 289 83 293 67 c 0 - 294 61 297 54 300 48 c 0 - 303 41 315 37 324 40 c 0 - 336 44 345 51 350 64 c 0x5fc0 - 362 89 366 116 367 144 c 0 - 367 152 366 159 366 166 c 0 - 366 196 357 223 342 249 c 0 - 335 264 323 274 311 285 c 0 - 305 291 299 296 290 298 c 0 - 284 299 278 302 272 304 c 0 - 258 310 244 310 230 310 c 0 - 204 311 180 305 157 295 c 0 - 130 284 106 268 91 241 c 0 - 84 229 76 218 71 204 c 0 - 58 165 52 125 57 84 c 0 - 57 75 58 66 59 56 c 0 - 61 42 68 30 78 20 c 0 - 85 12 93 3 101 -3 c 0 - 112 -12 126 -18 140 -19 c 2 - 148 -19 l 2 - 156 -20 157 -22 158 -29 c 0 - 159 -34 158 -38 158 -42 c 0 - 157 -51 153 -54 144 -53 c 0 - 117 -49 92 -41 68 -26 c 0 - 51 -16 39 0 28 16 c 0xbec0 - 20 29 18 43 15 57 c 0 - 12 71 10 84 11 98 c 0 - 12 104 12 109 13 115 c 0 - 13 118 14 122 14 125 c 0 - 12 162 21 196 33 230 c 0 - 34 231 34 233 35 235 c 0 - 48 257 63 279 84 296 c 0 - 100 310 117 321 137 329 c 0 - 157 338 177 343 199 343 c 0 - 220 343 240 342 260 341 c 0 - 266 341 272 339 278 339 c 0 - 280 339 281 339 283 338 c 0 - 303 331 325 326 342 312 c 0 - 349 306 355 300 361 293 c 0 - 387 259 398 220 402 180 c 0 - 406 138 400 97 382 58 c 0 - 379 53 378 48 376 43 c 2 - 373 37 l 1 - 361 25 348 13 331 9 c 0 - 312 4 294 6 278 16 c 0x5ec0 - 272 20 269 27 264 32 c 0 - 263 33 263 34 262 35 c 0x3ec0 -256 161 m 1 - 253 159 251 158 249 157 c 0 - 239 152 228 145 217 141 c 0 - 203 136 188 134 174 129 c 0 - 161 125 149 118 144 104 c 0 - 139 90 138 76 147 62 c 0 - 152 56 158 50 166 47 c 0 - 180 42 195 43 209 48 c 0 - 214 49 219 52 224 55 c 0 - 229 58 233 63 238 66 c 0 - 248 74 253 84 254 96 c 0 - 254 110 255 124 256 138 c 2 - 256 161 l 1 -EndSplineSet -EndChar - -StartChar: A -Encoding: 65 65 36 -Width: 727 -GlyphClass: 2 -Flags: MW -HStem: -1 32 0 23<182 182> 260 55<266 438 433 480.5> 746 20G<405 407> -VStem: 30 152 30 667<2 2> -LayerCount: 2 -Fore -SplineSet -407 766 m 0x74 - 408 764 408 763 409 761 c 0 - 423 718 438 675 453 631 c 0 - 461 607 470 583 476 558 c 0 - 478 549 482 541 484 533 c 0 - 499 481 514 428 529 376 c 0 - 537 348 547 321 555 293 c 0 - 575 234 589 173 606 113 c 0 - 611 95 617 77 625 60 c 0 - 629 49 638 42 649 40 c 0 - 661 37 673 35 685 33 c 0 - 687 33 690 33 693 32 c 0 - 694 22 695 12 697 2 c 1 - 685 1 672 -1 660 -1 c 0 - 633 -2 606 -1 578 -1 c 0 - 556 -1 533 0 509 0 c 0 - 501 0 501 0 501 9 c 0 - 500 24 501 21 512 23 c 0x74 - 518 25 524 25 530 27 c 0 - 536 28 541 29 546 31 c 0 - 555 35 559 42 557 52 c 0 - 555 59 553 67 552 75 c 0xb4 - 546 94 540 114 535 134 c 0 - 529 155 523 177 516 198 c 0 - 510 217 503 237 490 254 c 0 - 487 258 483 260 478 260 c 0 - 465 262 452 261 438 261 c 0 - 421 259 404 260 387 260 c 2 - 266 260 l 1 - 239 260 l 2 - 238 260 236 260 236 259 c 0 - 230 254 223 249 219 243 c 0 - 200 209 185 173 172 137 c 0 - 162 110 150 84 139 58 c 0 - 137 53 135 48 138 44 c 0 - 142 39 147 34 152 30 c 0 - 161 24 171 25 182 23 c 1 - 182 0 l 1 - 131 -1 80 6 30 2 c 1 - 31 7 31 11 32 15 c 0 - 33 18 36 21 38 22 c 0 - 41 24 44 25 47 26 c 0 - 65 30 76 42 83 58 c 0 - 94 86 105 115 116 143 c 0x78 - 129 173 142 202 154 233 c 0 - 164 261 179 287 191 315 c 0 - 206 348 220 382 235 415 c 0 - 245 439 254 462 264 486 c 0 - 274 509 282 532 293 555 c 0 - 304 579 313 604 321 628 c 0 - 327 648 337 665 347 683 c 0 - 354 694 359 706 364 718 c 0 - 370 730 376 741 380 753 c 0 - 383 761 388 765 396 765 c 0 - 399 766 403 766 407 766 c 0x74 -378 615 m 1 - 375 611 373 609 372 607 c 0 - 367 596 361 585 357 573 c 0 - 348 549 340 524 331 500 c 0 - 309 443 288 385 262 329 c 0 - 261 326 260 323 259 318 c 1 - 268 318 275 318 282 317 c 0 - 294 317 306 318 317 317 c 0 - 325 317 332 316 339 316 c 2 - 352 316 l 2 - 379 315 406 314 433 315 c 0 - 443 315 454 317 465 318 c 1 - 464 325 464 331 462 338 c 0 - 460 346 457 354 455 362 c 0 - 444 396 433 431 423 466 c 0 - 414 493 406 520 398 548 c 0 - 393 566 387 584 381 603 c 0 - 380 606 379 609 378 615 c 1 -EndSplineSet -Kerns2: 91 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -125 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -143 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -174 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -183 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -210 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -168 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -91 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" A1 -EndChar - -StartChar: B -Encoding: 66 66 37 -Width: 625 -GlyphClass: 2 -Flags: MW -HStem: -9 21G -4 44<346.5 359 346.5 368> 407 51<243 280> 686 65<317 337> 723 31 734 20G<39 49.5> -VStem: 109 77<376 451.5> 441 71<567 611.5> 535 59<201 207> -LayerCount: 2 -Fore -SplineSet -39 754 m 1x6680 - 60 754 79 754 99 750 c 0 - 109 747 120 745 130 745 c 0 - 159 746 187 746 215 749 c 0 - 249 752 283 752 317 751 c 0 - 329 751 342 748 354 748 c 0 - 366 747 376 744 387 741 c 0 - 398 738 409 731 420 726 c 0 - 425 724 430 721 435 718 c 0 - 439 716 444 713 448 710 c 0 - 455 705 463 700 469 694 c 0 - 478 686 486 679 493 669 c 0 - 508 649 512 624 512 599 c 0 - 513 564 502 532 484 501 c 0 - 478 492 474 481 469 471 c 0 - 465 464 461 458 457 451 c 0 - 453 442 454 440 463 436 c 0 - 475 431 486 426 496 417 c 0x6780 - 520 391 546 366 562 334 c 0 - 579 301 594 266 594 227 c 0 - 594 212 595 197 594 182 c 0 - 592 162 588 142 579 124 c 0 - 568 105 558 86 547 67 c 0 - 537 50 521 37 503 27 c 0 - 489 19 473 12 458 7 c 0 - 446 2 434 0 421 -1 c 0 - 400 -2 379 -4 357 -4 c 0 - 331 -4 305 -2 280 -1 c 0 - 265 0 251 2 237 4 c 2 - 233 4 l 2 - 210 6 187 8 164 9 c 0 - 153 9 143 7 132 6 c 0x6680 - 109 2 85 -2 61 -5 c 0 - 57 -6 53 -8 49 -9 c 0 - 38 -11 28 -1 31 9 c 0 - 32 11 34 13 35 14 c 0 - 41 17 47 21 53 23 c 0 - 68 28 82 37 95 45 c 0 - 97 46 99 48 100 51 c 0 - 103 63 107 75 108 87 c 0 - 110 108 111 128 111 149 c 0 - 110 244 109 339 109 434 c 0 - 109 469 111 505 111 540 c 0 - 111 551 109 562 108 574 c 0 - 107 594 106 613 106 633 c 0 - 105 645 105 657 104 668 c 0 - 101 695 82 714 56 718 c 0 - 49 719 43 722 37 723 c 0 - 33 725 32 727 33 730 c 2xaa80 - 39 754 l 1x6680 -535 207 m 0 - 534 243 530 268 520 291 c 0 - 514 304 509 318 502 331 c 0 - 494 343 486 355 475 364 c 0 - 462 376 447 388 428 391 c 0 - 426 391 425 392 424 393 c 0 - 411 401 397 404 383 407 c 0 - 376 408 369 410 362 410 c 0 - 347 411 331 411 315 411 c 0 - 303 410 290 409 278 409 c 0 - 269 408 259 408 250 407 c 0 - 236 407 223 406 209 405 c 0 - 205 405 201 406 198 405 c 0 - 189 403 186 399 185 390 c 0 - 185 385 186 381 186 376 c 0 - 187 354 187 332 183 310 c 0 - 181 297 180 285 181 272 c 0 - 181 269 180 266 180 264 c 0 - 179 230 178 195 176 161 c 0 - 176 146 176 130 175 114 c 0 - 174 103 178 93 185 84 c 0 - 189 80 193 76 197 71 c 0 - 212 52 232 42 256 41 c 2 - 262 41 l 2 - 276 39 290 35 304 37 c 0 - 321 40 338 40 355 40 c 0 - 363 40 371 41 379 42 c 0 - 382 42 384 43 387 44 c 0 - 393 45 398 47 403 47 c 0 - 420 49 437 52 451 63 c 0 - 454 66 457 68 460 70 c 0 - 476 78 487 91 496 105 c 0 - 506 120 514 136 520 153 c 0 - 527 175 535 195 535 207 c 0 -181 594 m 2x7380 - 181 558 183 518 188 478 c 0 - 189 467 192 462 205 461 c 0 - 227 459 248 458 270 458 c 0 - 290 458 309 459 328 463 c 0 - 341 465 355 466 368 467 c 0 - 382 468 395 472 402 486 c 0 - 408 499 417 509 423 522 c 0 - 433 539 441 557 441 577 c 0 - 441 587 440 597 439 607 c 0 - 436 625 429 642 414 654 c 0 - 412 655 410 657 408 659 c 0 - 388 677 365 687 337 686 c 0 - 311 686 286 686 260 685 c 0 - 245 685 231 683 216 683 c 0 - 207 682 200 678 194 671 c 0 - 186 662 181 652 181 639 c 2 - 181 594 l 2x7380 -EndSplineSet -Kerns2: 92 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -117 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -127 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -91 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" B1 B2 -EndChar - -StartChar: C -Encoding: 67 67 38 -Width: 724 -GlyphClass: 2 -Flags: MW -HStem: -10 48<393.5 470> 715 52 -VStem: 31 64 665 14 -LayerCount: 2 -Fore -SplineSet -665 151 m 1 - 669 148 671 145 674 143 c 0 - 680 137 681 135 676 129 c 0 - 668 117 659 106 651 95 c 0 - 647 90 643 87 640 82 c 0 - 616 51 584 31 547 18 c 0 - 530 12 512 6 495 1 c 0 - 485 -2 474 -3 463 -5 c 0 - 444 -7 425 -11 406 -10 c 0 - 381 -10 357 -8 333 -4 c 0 - 318 -2 305 2 291 6 c 2 - 279 12 l 2 - 262 21 244 30 227 39 c 0 - 201 55 175 71 155 96 c 0 - 137 119 116 141 100 165 c 0 - 69 210 44 258 35 312 c 0 - 31 336 29 359 31 383 c 0 - 32 407 35 431 38 455 c 0 - 42 487 51 519 65 548 c 0 - 78 576 93 604 113 627 c 0 - 129 647 146 666 165 683 c 0 - 180 697 198 708 215 719 c 0 - 229 727 245 732 260 740 c 0 - 275 748 292 752 308 756 c 0 - 333 761 358 764 383 766 c 0 - 400 767 416 768 433 767 c 0 - 458 765 483 765 508 762 c 0 - 540 758 573 754 603 742 c 0 - 616 737 629 731 641 725 c 0 - 652 720 663 716 674 711 c 0 - 677 709 681 705 684 702 c 0 - 695 689 695 689 691 672 c 0 - 685 648 679 623 673 598 c 0 - 670 585 669 585 655 587 c 0 - 649 588 648 591 647 597 c 0 - 646 609 646 621 638 632 c 0 - 634 637 630 642 625 647 c 0 - 617 655 609 662 601 670 c 0 - 593 680 583 685 572 690 c 0 - 548 700 522 708 496 711 c 0 - 483 712 469 714 455 715 c 0 - 440 715 424 716 408 715 c 0 - 392 714 376 711 360 708 c 0 - 344 705 328 700 311 696 c 0 - 306 695 300 695 296 693 c 0 - 284 688 272 683 260 677 c 0 - 252 673 243 668 235 663 c 0 - 224 655 214 646 203 638 c 0 - 185 625 172 607 159 589 c 0 - 148 575 140 558 131 542 c 0 - 118 521 111 498 104 475 c 0 - 99 458 97 441 93 424 c 1 - 93 420 l 2 - 94 396 94 371 95 346 c 0 - 97 309 109 276 123 242 c 0 - 137 209 156 178 182 153 c 0 - 198 136 215 121 235 109 c 0 - 262 94 288 78 316 64 c 0 - 344 49 375 40 408 38 c 0 - 428 37 449 36 470 38 c 0 - 502 41 532 52 560 69 c 0 - 577 79 595 90 611 102 c 0 - 624 112 636 124 648 135 c 0 - 654 140 659 145 665 151 c 1 -EndSplineSet -Kerns2: 92 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -147 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -125 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -91 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -57 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" C1 -EndChar - -StartChar: D -Encoding: 68 68 39 -Width: 741 -GlyphClass: 2 -Flags: MW -HStem: -4 21G<57 57> 700 51<326.5 328 261 330> 734 20G<38 42.5> -VStem: 102 66<344 363.5 344 388.5> 643 67<330.5 401 330.5 406> -LayerCount: 2 -Fore -SplineSet -37 15 m 1xb8 - 43 21 49 26 55 30 c 0 - 64 36 73 43 79 51 c 0 - 82 55 85 58 88 61 c 0 - 100 71 105 85 106 99 c 0 - 106 131 105 163 105 195 c 0 - 105 205 105 214 104 224 c 0 - 104 272 102 320 102 368 c 0 - 102 409 102 450 103 491 c 0 - 103 524 104 557 104 590 c 0 - 104 602 102 614 101 626 c 0 - 101 631 100 638 100 644 c 0 - 100 658 97 672 93 685 c 0 - 88 700 78 710 65 716 c 0 - 57 720 47 723 38 725 c 0 - 31 727 29 729 31 736 c 0 - 32 740 32 744 33 748 c 0 - 33 751 36 754 40 754 c 0 - 45 754 50 754 55 753 c 0 - 67 751 79 748 90 746 c 0 - 95 745 100 744 105 744 c 0 - 124 744 143 742 162 743 c 0 - 182 743 202 743 222 748 c 0 - 235 750 248 751 261 751 c 0 - 283 751 306 752 328 751 c 0 - 361 750 393 747 424 737 c 0 - 445 731 466 725 486 718 c 0 - 500 713 514 707 526 698 c 0 - 528 696 531 694 534 693 c 0 - 547 689 558 681 569 673 c 0 - 583 663 596 652 610 642 c 0 - 621 634 627 622 636 612 c 0 - 663 574 684 533 697 488 c 0 - 701 476 703 462 704 449 c 0 - 707 415 711 380 710 345 c 0 - 710 316 705 287 695 259 c 0 - 689 243 684 228 677 213 c 0 - 667 192 657 171 645 152 c 0 - 629 127 609 104 584 88 c 0 - 560 72 535 57 511 43 c 0 - 486 28 459 22 433 13 c 2 - 400 4 l 2 - 387 1 375 -1 362 -2 c 0 - 334 -4 306 -6 278 -6 c 0 - 244 -6 211 -3 178 2 c 0 - 161 4 143 7 126 9 c 0 - 112 11 98 11 84 5 c 2 - 57 -4 l 2 - 51 -6 50 -6 47 0 c 0 - 43 5 40 10 37 15 c 1xb8 -171 556 m 1 - 172 556 l 1 - 171 524 169 492 169 461 c 0 - 168 422 168 383 168 344 c 0 - 169 303 170 263 172 222 c 0 - 175 183 172 143 172 103 c 0 - 172 98 172 92 171 87 c 0 - 171 74 176 65 188 59 c 0 - 192 57 196 55 199 54 c 0 - 220 47 240 41 262 42 c 0 - 275 43 289 40 302 42 c 0 - 323 44 343 49 363 53 c 0 - 382 58 401 64 420 68 c 0 - 437 72 454 78 470 85 c 0 - 490 95 510 106 528 120 c 0 - 544 132 560 145 571 162 c 0 - 575 168 579 174 584 180 c 0 - 592 192 602 205 609 218 c 0 - 631 258 640 302 643 347 c 0 - 644 365 643 383 643 401 c 0 - 643 411 642 422 640 432 c 0 - 638 447 634 461 630 476 c 0 - 623 497 615 518 603 537 c 0 - 584 568 563 597 535 622 c 0 - 507 647 476 664 442 678 c 0 - 425 684 407 688 389 693 c 0 - 370 697 350 701 330 700 c 0 - 323 700 317 699 310 699 c 0 - 291 698 273 698 255 694 c 0 - 239 691 224 689 208 685 c 0 - 190 681 173 659 172 640 c 0xd8 - 172 612 171 584 171 556 c 1 -EndSplineSet -Kerns2: 92 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -122 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -96 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" D1 D2 D3 -EndChar - -StartChar: E -Encoding: 69 69 40 -Width: 660 -GlyphClass: 2 -Flags: MW -HStem: -4 42 -3 49<488.5 539> 400 45<330.5 337.5 313.5 338 313.5 365> 715 38<254.5 258 254.5 259> 734 20G -VStem: 108 68<334 377> 561 13 594 26<638.5 660> -LayerCount: 2 -Fore -SplineSet -630 152 m 1xb4 - 629 139 628 127 627 115 c 0 - 624 90 622 65 620 40 c 0 - 619 29 616 19 614 9 c 0 - 614 7 612 4 610 3 c 0x74 - 603 1 596 -1 589 -1 c 0 - 558 -2 526 -3 495 -3 c 0 - 482 -3 470 -2 457 -2 c 0 - 438 -2 420 -3 401 -3 c 0 - 361 -4 322 -5 282 -4 c 0 - 261 -4 239 0 217 2 c 0 - 196 4 174 8 153 7 c 0 - 138 7 123 8 108 9 c 0 - 93 10 79 6 65 0 c 0 - 47 -8 46 -7 35 8 c 0 - 33 10 32 12 31 14 c 0 - 30 17 30 20 34 22 c 0 - 37 23 40 25 44 27 c 0 - 66 35 81 53 94 71 c 0 - 103 84 106 99 106 114 c 0 - 107 147 107 180 107 212 c 0 - 108 260 107 307 108 355 c 0 - 108 399 109 444 109 488 c 0 - 109 505 108 522 108 539 c 0 - 110 578 110 616 106 654 c 0 - 105 667 102 680 99 692 c 0 - 96 700 90 707 83 712 c 0 - 77 716 70 719 63 722 c 0 - 53 725 42 729 31 733 c 1xac - 32 739 34 746 36 754 c 1 - 50 752 64 752 76 750 c 0 - 113 742 149 745 185 749 c 0 - 202 751 219 753 236 752 c 0 - 243 751 251 753 258 753 c 0 - 295 752 332 751 370 750 c 0 - 399 749 429 750 459 750 c 2 - 528 750 l 2 - 532 750 537 749 541 749 c 0 - 557 748 572 747 588 747 c 0 - 596 747 604 748 611 748 c 0 - 619 748 620 746 620 739 c 2 - 620 660 l 2 - 620 649 619 637 618 625 c 1 - 612 626 607 627 601 628 c 0 - 599 629 598 631 597 632 c 0 - 595 635 594 637 594 640 c 0 - 583 672 558 689 528 700 c 0 - 517 704 507 707 496 709 c 0xb5 - 484 711 471 712 458 713 c 0 - 392 717 325 716 259 715 c 0 - 245 715 232 713 218 711 c 0 - 201 709 190 698 181 685 c 0 - 179 682 179 678 179 674 c 0 - 179 643 180 613 180 583 c 0 - 180 553 179 524 179 494 c 0 - 179 477 185 464 200 455 c 0 - 212 448 224 447 236 447 c 0 - 267 445 298 445 329 445 c 0 - 346 445 362 445 378 446 c 2 - 489 452 l 2 - 499 452 509 454 519 457 c 0 - 536 462 547 475 557 489 c 0 - 565 500 565 500 579 497 c 1 - 578 486 577 474 575 463 c 0 - 571 442 572 421 572 400 c 0 - 572 392 573 384 574 376 c 0 - 575 365 574 363 564 358 c 0 - 563 358 562 359 561 359 c 0 - 548 374 531 384 514 394 c 0 - 500 402 486 403 471 402 c 0 - 451 402 430 402 410 401 c 0 - 395 401 380 400 365 400 c 2 - 338 400 l 2 - 323 400 308 400 293 401 c 0 - 271 401 249 402 227 401 c 0 - 215 401 203 401 191 399 c 0 - 182 398 177 391 177 381 c 0 - 176 365 176 349 176 334 c 0 - 175 288 175 242 174 197 c 0 - 173 165 171 133 172 101 c 0 - 172 95 173 89 173 83 c 0 - 174 69 183 61 194 56 c 0 - 204 51 213 48 224 48 c 0 - 235 47 247 46 258 44 c 2 - 260 44 l 1x76 - 268 38 278 40 286 40 c 0 - 315 39 344 39 372 38 c 0 - 385 38 398 38 410 39 c 0xb4 - 422 40 433 42 444 42 c 0 - 471 44 499 46 526 46 c 0 - 552 46 567 59 577 80 c 0x74 - 587 101 594 124 603 146 c 0 - 606 154 606 154 614 154 c 0 - 619 153 624 153 630 152 c 1xb4 -EndSplineSet -Kerns2: 92 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" E1 -EndChar - -StartChar: F -Encoding: 70 70 41 -Width: 576 -GlyphClass: 2 -Flags: MW -HStem: -4 21G<81 85 81 81 85 115> 0 30<230 245> 387 44<186 283.5 259 279> 714 36 726 27 -VStem: 100 67<575 585> 105 62<84 304.5 247 304.5> 505 10 524 22 -LayerCount: 2 -Fore -SplineSet -245 30 m 1x73 - 245 0 l 1 - 240 0 235 -1 230 0 c 0 - 205 1 181 1 156 -1 c 0x72 - 143 -3 129 -3 115 -4 c 2 - 85 -4 l 1 - 81 -4 l 2xb2 - 68 -2 54 0 40 1 c 1 - 40 8 39 15 39 22 c 0 - 39 24 42 26 44 27 c 0 - 53 30 62 32 71 36 c 0 - 93 44 104 60 105 84 c 2 - 105 247 l 2x72 - 105 268 103 289 102 310 c 0 - 102 315 102 320 101 326 c 0 - 100 344 99 363 98 381 c 2 - 98 406 l 2 - 98 460 100 515 100 570 c 0 - 100 600 99 630 97 660 c 0 - 96 672 91 685 85 696 c 0 - 79 709 65 716 52 721 c 0 - 45 723 38 724 30 726 c 1 - 32 734 33 742 35 749 c 0 - 36 751 39 753 41 753 c 0xac - 50 753 60 753 69 752 c 0 - 80 752 91 751 102 750 c 0 - 116 749 130 747 144 747 c 0 - 164 746 184 747 204 748 c 2 - 222 748 l 2 - 263 749 305 750 347 751 c 0 - 373 751 399 750 425 750 c 0 - 452 750 478 751 504 751 c 2 - 535 751 l 1 - 539 714 542 677 546 639 c 1 - 538 638 531 637 524 635 c 1 - 519 649 514 663 508 676 c 0 - 506 681 503 686 500 690 c 0 - 488 702 476 712 458 712 c 0 - 417 713 376 714 335 714 c 0 - 299 714 262 714 225 712 c 0 - 212 711 199 708 186 706 c 0 - 181 705 178 702 176 698 c 0 - 171 687 169 675 168 663 c 0 - 168 639 168 614 167 590 c 0 - 167 560 166 531 165 501 c 0 - 165 483 166 464 168 446 c 0 - 168 436 172 433 183 433 c 0xb480 - 213 432 244 431 274 431 c 0 - 293 431 312 433 331 434 c 0 - 349 435 368 436 386 436 c 0 - 400 437 415 437 429 438 c 0 - 440 439 450 441 461 444 c 0 - 477 448 488 461 496 474 c 0 - 502 484 509 487 520 483 c 0 - 520 482 520 479 519 477 c 0 - 515 450 512 424 513 397 c 0 - 513 385 514 374 515 362 c 0 - 516 351 515 349 505 344 c 1 - 495 352 485 361 474 368 c 0 - 466 374 457 378 449 383 c 0 - 437 389 424 389 412 388 c 2 - 352 388 l 2 - 336 387 321 386 305 386 c 0 - 296 386 288 386 279 387 c 2 - 237 387 l 1 - 186 387 l 1 - 179 387 l 2 - 170 387 169 387 168 378 c 0 - 168 349 167 319 167 290 c 0 - 167 259 168 227 168 195 c 2 - 171 108 l 2 - 172 100 172 93 172 85 c 0 - 173 73 176 62 186 55 c 0 - 191 52 194 47 198 45 c 0 - 209 40 220 34 232 33 c 0 - 236 32 240 31 245 30 c 1x73 -EndSplineSet -Kerns2: 92 -255 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -133 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -312 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -291 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -113 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -96 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -164 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -153 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -220 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -103 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -92 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -148 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -92 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -92 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -125 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -97 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -117 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" F1 -EndChar - -StartChar: G -Encoding: 71 71 42 -Width: 812 -GlyphClass: 2 -Flags: MW -HStem: -21 21G<456 457.5> -20 21G<498.5 502> -13 21G<358 360> 236 38 238 32 717 45<418.5 429.5> -VStem: 30 82 675 58<125 167> -LayerCount: 2 -Fore -SplineSet -463 -23 m 2x8f - 461 -22 459 -21 456 -21 c 0x4f - 424 -18 392 -16 360 -13 c 0 - 356 -13 353 -13 349 -12 c 0 - 328 -5 306 3 285 10 c 0 - 271 14 258 19 246 26 c 0 - 227 37 208 47 191 61 c 0 - 176 73 161 84 147 95 c 0 - 133 106 122 119 113 133 c 0 - 109 141 104 148 99 155 c 0 - 93 165 86 174 81 184 c 0 - 66 215 52 247 43 281 c 0 - 42 287 40 293 38 299 c 0 - 32 314 30 329 30 344 c 0 - 30 371 30 397 34 423 c 0 - 38 447 46 470 56 492 c 0 - 58 495 58 500 60 504 c 0 - 70 525 81 546 95 565 c 0 - 120 600 147 632 177 663 c 0 - 179 666 182 668 185 671 c 0 - 196 680 208 689 219 699 c 0 - 241 717 265 730 291 738 c 0 - 315 745 338 751 362 757 c 0 - 384 763 407 762 430 762 c 0 - 453 761 476 761 499 760 c 0 - 521 759 542 754 563 748 c 0 - 596 737 628 726 661 716 c 0 - 680 710 699 707 719 706 c 2 - 728 706 l 2 - 741 705 746 697 743 685 c 0 - 738 665 733 644 730 624 c 0 - 726 601 721 579 720 556 c 0 - 720 547 715 544 707 545 c 0 - 691 548 691 548 690 564 c 0 - 689 578 688 592 687 605 c 0 - 686 614 684 622 678 629 c 0 - 658 654 634 674 603 685 c 0 - 597 688 591 691 585 693 c 0 - 582 695 578 696 574 697 c 0 - 571 699 567 700 563 701 c 0 - 560 703 557 704 553 705 c 0 - 551 706 548 706 545 707 c 0 - 525 716 504 716 483 716 c 0 - 462 717 440 717 419 717 c 0 - 412 717 406 716 399 715 c 0 - 377 710 355 705 334 700 c 0 - 325 698 318 694 310 691 c 0 - 289 682 269 674 250 662 c 0 - 241 656 233 649 225 641 c 0 - 215 633 206 623 198 614 c 0 - 171 582 150 548 136 509 c 0 - 125 479 118 449 114 417 c 0 - 110 386 109 355 112 323 c 0 - 114 299 120 275 128 251 c 0 - 143 204 169 162 198 123 c 0 - 201 119 204 116 207 113 c 0 - 223 97 242 84 262 73 c 0 - 265 71 269 69 272 66 c 0 - 291 52 312 45 334 40 c 0 - 343 38 352 34 361 33 c 0 - 379 29 397 27 416 24 c 0 - 440 21 465 22 490 24 c 0 - 519 27 548 29 576 39 c 0 - 598 47 618 56 637 69 c 0 - 661 86 675 110 675 140 c 0 - 675 160 674 179 674 198 c 0 - 674 215 671 222 651 230 c 0 - 637 236 623 240 609 238 c 2 - 599 238 l 1 - 599 249 598 258 598 268 c 1 - 599 269 l 1 - 618 272 637 273 656 272 c 0 - 668 271 680 272 692 272 c 0 - 719 273 747 274 775 274 c 0 - 781 274 782 273 781 267 c 0x2f - 781 256 780 246 779 236 c 1 - 774 234 767 232 761 230 c 0 - 747 226 738 217 736 202 c 0 - 735 190 734 178 733 167 c 0 - 733 146 733 125 731 104 c 0 - 731 100 729 95 728 91 c 0 - 723 75 712 65 698 57 c 0 - 694 55 690 52 686 49 c 0 - 672 39 656 30 640 22 c 0 - 620 11 599 2 577 -5 c 0 - 553 -14 528 -19 502 -20 c 0x57 - 495 -20 489 -21 482 -23 c 2 - 463 -23 l 2x8f -EndSplineSet -Kerns2: 92 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -57 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" G1 -EndChar - -StartChar: H -Encoding: 72 72 43 -Width: 762 -GlyphClass: 2 -Flags: MW -HStem: -6 21G<546 556 546 548> -3 39<210 235> -2 29 1 21G<39 67 39 39 732 732> 339 51<227.5 263> 342 43<430 489> 721 28 726 26 735 20G<660 666 666 666> -VStem: 100 69 101 61<534 537.5> 606 56 -LayerCount: 2 -Fore -SplineSet -732 27 m 1x24b0 - 732 1 l 1x14b0 - 728 0 723 0 719 -1 c 0 - 697 -1 675 -2 653 -2 c 0 - 640 -2 626 0 613 0 c 0x24b0 - 594 -1 575 -4 556 -6 c 0 - 553 -7 550 -6 546 -6 c 1 - 546 0 545 7 545 13 c 0 - 545 17 547 19 550 20 c 0 - 562 23 572 30 579 40 c 0 - 591 54 600 69 602 89 c 0 - 604 115 605 140 602 166 c 0 - 599 203 600 240 599 277 c 0 - 598 287 597 298 596 308 c 0 - 596 314 596 320 595 327 c 0 - 593 335 586 340 578 340 c 0 - 574 341 569 341 564 341 c 0 - 539 341 514 341 489 342 c 0 - 454 343 418 344 382 342 c 0x84b0 - 333 341 283 340 233 339 c 0 - 222 339 211 339 200 335 c 0 - 197 334 194 335 191 334 c 0 - 188 334 185 334 182 333 c 0 - 175 330 171 325 171 316 c 0 - 171 283 169 250 169 217 c 0 - 169 187 170 157 171 128 c 0 - 171 113 173 98 174 83 c 0 - 175 60 197 36 223 36 c 0 - 225 36 227 36 229 35 c 0 - 233 35 235 33 235 28 c 2 - 235 -3 l 1x48d0 - 219 -3 205 -2 190 -2 c 0 - 162 0 134 1 106 2 c 0x14d0 - 93 3 80 1 67 1 c 2 - 39 1 l 1 - 39 25 l 2 - 39 26 42 28 43 29 c 0 - 52 32 61 34 69 38 c 0 - 84 45 96 56 102 72 c 0 - 108 86 109 100 106 115 c 2 - 106 123 l 2 - 104 162 102 200 101 239 c 0 - 100 274 100 308 100 342 c 2 - 100 420 l 2 - 100 457 101 494 101 531 c 0 - 101 544 100 556 99 569 c 2 - 99 601 l 2 - 97 620 96 638 94 657 c 0 - 94 661 93 666 92 670 c 0 - 89 689 77 702 63 713 c 0 - 60 715 57 716 53 716 c 0 - 46 718 39 719 30 721 c 1 - 30 748 l 1 - 62 750 94 748 126 750 c 0 - 158 752 190 751 223 752 c 1x1630 - 223 744 224 737 223 730 c 0 - 223 729 221 726 220 726 c 0 - 204 720 191 709 180 696 c 0 - 176 690 172 683 169 676 c 0 - 166 668 164 660 162 652 c 0 - 161 648 162 644 162 640 c 2 - 162 628 l 2 - 162 608 161 588 162 569 c 2 - 162 534 l 2 - 163 521 163 508 164 494 c 2 - 164 467 l 2 - 164 460 166 454 166 447 c 0 - 167 444 167 441 167 437 c 0 - 168 430 167 423 168 415 c 0 - 169 403 178 394 191 392 c 0 - 213 389 236 390 258 390 c 0 - 268 390 279 390 289 389 c 2 - 294 389 l 2x4930 - 319 392 344 387 369 387 c 0 - 390 387 410 386 430 385 c 0 - 451 385 471 384 492 385 c 0 - 512 385 532 386 553 389 c 0 - 566 391 580 392 593 399 c 0 - 599 401 603 405 604 412 c 0 - 604 420 604 427 605 435 c 0 - 605 447 604 459 605 471 c 0 - 605 504 607 537 607 570 c 0 - 608 572 608 575 608 577 c 0 - 607 609 607 642 607 674 c 0 - 606 689 598 700 586 707 c 0 - 576 712 565 716 555 720 c 0 - 551 722 547 723 543 725 c 1 - 543 752 l 1 - 551 752 559 753 567 752 c 0x4530 - 581 749 595 752 609 752 c 0 - 626 752 643 754 660 755 c 2 - 666 755 l 2 - 685 754 704 752 722 751 c 0 - 723 751 724 751 725 750 c 2 - 725 727 l 1 - 718 724 710 720 703 716 c 0 - 685 708 674 696 670 675 c 0 - 667 661 668 648 668 634 c 0 - 667 604 667 574 666 544 c 0 - 665 514 662 484 662 454 c 0 - 660 395 660 336 661 278 c 0 - 662 233 664 188 666 143 c 0 - 666 137 668 132 668 126 c 0 - 669 110 670 94 670 79 c 0 - 671 73 671 67 672 62 c 0 - 675 44 689 33 706 30 c 0 - 714 29 722 28 732 27 c 1x24b0 -EndSplineSet -Kerns2: 91 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" H1 -EndChar - -StartChar: I -Encoding: 73 73 44 -Width: 266 -GlyphClass: 2 -Flags: MW -HStem: -1 31 725 30<41 170 41 170> -VStem: 92 69<511 515> -LayerCount: 2 -Fore -SplineSet -30 -3 m 1 - 30 25 l 2 - 31 30 35 29 38 30 c 0 - 50 32 61 34 71 42 c 0 - 78 47 83 53 84 62 c 0 - 85 78 87 95 87 111 c 0 - 88 148 88 184 89 220 c 0 - 89 242 90 264 90 285 c 0 - 91 303 90 321 90 339 c 0 - 91 393 91 448 92 503 c 0 - 92 527 95 551 96 576 c 2 - 96 579 l 2 - 96 607 97 635 98 664 c 0 - 98 684 89 700 75 714 c 0 - 67 721 58 725 48 725 c 2 - 41 725 l 1 - 41 733 40 741 41 749 c 0 - 41 750 44 753 46 753 c 0 - 50 754 55 755 59 755 c 2 - 170 755 l 2 - 191 755 212 754 233 753 c 0 - 234 753 235 753 236 752 c 2 - 236 727 l 2 - 234 726 233 726 232 726 c 0 - 221 728 210 724 200 720 c 0 - 188 717 182 708 177 698 c 0 - 172 686 169 672 169 659 c 0 - 167 619 167 579 162 539 c 0 - 161 530 161 521 161 511 c 0 - 160 445 160 378 158 311 c 0 - 156 236 156 161 156 85 c 0 - 156 76 157 66 158 56 c 0 - 160 46 167 40 176 36 c 0 - 184 34 192 32 201 30 c 1 - 202 20 202 10 203 0 c 1 - 200 0 198 -1 195 -1 c 0 - 181 -1 166 0 151 0 c 0 - 148 0 145 0 141 -1 c 0 - 106 -6 71 -3 36 -3 c 2 - 30 -3 l 1 -EndSplineSet -Kerns2: 92 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -57 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" I1 -EndChar - -StartChar: J -Encoding: 74 74 45 -Width: 604 -GlyphClass: 2 -Flags: MW -HStem: -7 52 728 22 -VStem: 31 57 436 63<528.5 552 528.5 561.5> -LayerCount: 2 -Fore -SplineSet -370 727 m 1 - 370 744 l 2 - 370 748 372 750 376 750 c 0 - 381 750 386 751 391 751 c 0 - 433 751 475 750 518 750 c 2 - 567 750 l 2 - 569 750 572 750 574 749 c 2 - 574 730 l 1 - 564 728 555 727 545 726 c 0 - 525 723 511 712 503 694 c 0 - 500 688 500 681 500 674 c 0 - 499 633 500 593 499 552 c 0 - 499 505 497 458 496 410 c 0 - 496 373 496 334 493 297 c 0 - 490 251 484 205 470 161 c 0 - 457 120 435 84 405 54 c 0 - 393 43 381 32 368 23 c 0 - 351 11 331 5 311 0 c 0 - 284 -8 257 -9 229 -7 c 0 - 205 -6 181 -3 158 4 c 0 - 142 10 126 15 111 23 c 0 - 93 33 79 47 66 63 c 0 - 51 84 41 107 34 132 c 0 - 31 143 29 155 31 168 c 0 - 32 177 31 188 32 198 c 0 - 33 205 33 212 35 219 c 0 - 38 231 41 242 46 253 c 0 - 54 277 69 297 87 314 c 0 - 91 318 96 322 101 324 c 0 - 106 327 118 326 122 322 c 0 - 126 317 126 308 122 301 c 0 - 106 275 95 247 89 216 c 0 - 86 194 85 172 88 151 c 0 - 92 129 99 107 112 89 c 0 - 121 77 133 66 148 61 c 0 - 166 55 184 47 203 45 c 0 - 231 43 259 42 285 53 c 0 - 289 55 293 56 297 57 c 0 - 321 63 342 73 361 89 c 0 - 373 100 382 114 390 128 c 0 - 408 164 421 202 426 242 c 0 - 428 262 430 282 431 302 c 0 - 432 341 434 380 435 419 c 0 - 436 459 436 500 436 540 c 0 - 436 583 435 626 434 669 c 2 - 434 687 l 2 - 434 704 425 714 411 719 c 0 - 401 723 392 725 382 726 c 0 - 379 726 375 727 370 727 c 1 -EndSplineSet -Kerns2: 92 -85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -99 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -148 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -63 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -98 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -94 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -80 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -84 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -99 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -80 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -63 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -59 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -94 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -138 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" J1 -EndChar - -StartChar: K -Encoding: 75 75 46 -Width: 779 -GlyphClass: 2 -Flags: MW -HStem: -4 54<631.5 644 631.5 645> -1 29 721 30 -VStem: 97 64<138 383 361 383 361 404 361 422> 584 165<683 728 684 728> -LayerCount: 2 -Fore -SplineSet -158 199 m 1xb0 - 163 197 166 199 169 202 c 0 - 185 217 201 232 218 247 c 0 - 251 279 284 311 313 347 c 0 - 320 356 328 365 336 374 c 2 - 351 392 l 2 - 373 417 394 443 415 468 c 0 - 428 484 442 500 455 515 c 0 - 475 537 494 558 513 580 c 0 - 525 593 534 608 545 621 c 0 - 549 626 553 629 557 634 c 0 - 568 649 579 664 584 683 c 1 - 584 684 l 1 - 588 704 583 712 564 718 c 0 - 560 719 555 720 550 721 c 1 - 550 750 l 1 - 554 750 557 751 562 751 c 0 - 576 751 590 752 605 751 c 0 - 629 750 652 752 676 752 c 0 - 699 751 723 752 746 752 c 0 - 747 752 748 751 749 751 c 1 - 749 728 l 2 - 749 727 746 725 744 724 c 0 - 735 721 726 719 717 717 c 0 - 686 708 661 691 641 665 c 0 - 627 646 611 628 597 610 c 0 - 576 584 557 557 536 532 c 0 - 504 495 471 459 439 423 c 0 - 422 403 405 382 388 362 c 0 - 386 360 385 358 384 356 c 0 - 381 351 383 346 389 346 c 0 - 423 342 445 323 461 293 c 0 - 475 267 485 238 496 210 c 0 - 508 180 523 151 545 126 c 0 - 549 120 553 114 558 108 c 0 - 568 95 579 82 589 69 c 0 - 591 66 595 65 597 63 c 0 - 610 56 624 50 639 50 c 0 - 649 50 658 49 667 49 c 0 - 680 49 690 56 698 65 c 0 - 705 72 712 80 719 87 c 0 - 721 86 724 85 726 83 c 0 - 730 80 733 78 738 75 c 1 - 727 59 718 43 705 30 c 0 - 694 19 681 11 668 3 c 0 - 659 -2 650 -4 640 -4 c 0 - 615 -4 590 -1 567 8 c 0 - 540 20 517 35 500 60 c 0xb8 - 488 77 477 95 466 112 c 0 - 464 115 463 118 462 121 c 0 - 453 144 440 165 425 185 c 0 - 417 197 410 210 403 223 c 0 - 398 231 394 239 389 247 c 0 - 382 258 372 266 361 271 c 0 - 349 277 337 275 327 269 c 0 - 305 257 285 241 268 223 c 0 - 252 207 237 191 221 175 c 0 - 207 159 193 144 179 127 c 0 - 164 109 159 87 164 63 c 0 - 167 52 173 43 185 40 c 0 - 197 36 207 32 219 28 c 1 - 219 0 l 1 - 155 -2 93 -4 30 -1 c 1 - 30 24 l 2 - 30 28 33 28 36 29 c 0 - 42 30 49 31 56 33 c 0 - 76 37 87 50 91 70 c 0x70 - 96 93 97 115 97 138 c 0 - 96 195 97 253 97 311 c 0 - 97 342 96 373 97 404 c 0 - 97 440 98 477 100 513 c 0 - 102 550 99 586 98 623 c 2 - 98 674 l 2 - 98 685 94 695 89 704 c 0 - 85 711 78 713 71 714 c 0 - 60 716 49 718 37 719 c 1 - 37 727 36 735 36 742 c 0 - 36 747 40 748 44 748 c 0 - 51 749 58 749 65 749 c 0 - 82 749 98 750 115 751 c 2 - 120 751 l 2 - 142 751 165 752 187 753 c 0 - 194 753 201 751 208 751 c 0 - 213 750 219 750 224 750 c 0 - 228 749 231 750 235 750 c 1 - 235 740 234 731 234 722 c 1 - 228 722 l 2 - 214 720 201 717 190 710 c 0 - 179 704 174 695 173 683 c 0 - 171 667 171 652 170 636 c 0 - 168 610 167 586 165 560 c 0 - 164 538 163 516 162 493 c 0 - 162 449 161 405 161 361 c 0 - 160 309 159 257 158 206 c 2 - 158 199 l 1xb0 -EndSplineSet -Kerns2: 92 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -161 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -143 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -147 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -103 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -32 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -32 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -102 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -97 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -102 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" K1 K2 -EndChar - -StartChar: L -Encoding: 76 76 47 -Width: 602 -GlyphClass: 2 -Flags: MW -HStem: -1 26 -1 44<195 364 344.5 417> 720 33 726 25 -VStem: 107 68 -LayerCount: 2 -Fore -SplineSet -572 158 m 0x58 - 572 155 572 153 571 150 c 0 - 565 115 558 80 555 45 c 0 - 553 31 549 16 546 1 c 1 - 535 0 524 -1 513 -1 c 2 - 417 -1 l 2 - 385 -1 353 -2 322 -2 c 0 - 316 -2 310 -1 305 -1 c 2 - 195 -1 l 2 - 149 -1 102 -2 55 -3 c 2 - 30 -3 l 1x58 - 30 21 l 2 - 30 23 33 25 35 25 c 0 - 45 29 54 32 64 36 c 0 - 86 45 97 63 100 87 c 0 - 102 101 103 116 104 131 c 0 - 106 149 107 167 107 184 c 2 - 107 318 l 1 - 107 533 l 1 - 107 655 l 2 - 107 670 105 685 99 699 c 0 - 96 709 89 716 79 718 c 0 - 73 719 67 719 61 719 c 0 - 55 720 50 720 43 720 c 1xa8 - 43 745 l 2 - 43 747 45 749 46 750 c 0 - 49 751 52 751 55 752 c 0 - 76 752 98 753 119 753 c 0 - 137 753 154 752 172 752 c 2 - 200 752 l 2 - 215 752 231 751 247 750 c 0 - 248 750 250 749 251 749 c 1 - 251 729 l 1 - 243 727 235 725 227 724 c 0 - 216 721 208 715 200 709 c 0 - 194 703 191 696 190 689 c 0 - 187 669 183 649 182 629 c 0 - 178 568 178 508 178 448 c 0 - 178 419 177 391 177 363 c 0 - 176 291 176 219 175 147 c 2 - 175 106 l 2 - 175 81 186 63 206 50 c 0 - 212 47 220 45 227 45 c 0 - 245 44 263 45 280 45 c 0 - 306 44 332 43 357 43 c 0 - 371 43 385 45 399 46 c 0 - 405 46 411 47 417 47 c 0 - 439 46 460 50 481 54 c 0 - 493 56 503 63 510 74 c 0 - 522 94 535 114 547 135 c 0 - 550 141 553 148 556 154 c 0 - 559 162 560 162 568 160 c 0 - 569 159 570 159 572 158 c 0x58 -EndSplineSet -Kerns2: 91 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -50 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -178 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -158 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -189 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -194 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: M -Encoding: 77 77 48 -Width: 1038 -GlyphClass: 2 -Flags: MW -HStem: -3 21G<47 49> -1 21G<118.5 138.5 903 918.5> 0 25<240 241> 722 26 -VStem: 118 58<370 396> 860 59 -LayerCount: 2 -Fore -SplineSet -241 25 m 1x3c - 241 0 l 1 - 235 0 l 1 - 201 0 l 2 - 176 0 151 -1 126 -1 c 0 - 111 -1 96 1 81 1 c 0x3c - 70 0 60 -2 49 -3 c 0x5c - 45 -3 40 -3 34 -4 c 1x9c - 35 5 35 14 36 22 c 0 - 36 23 40 25 42 25 c 0 - 48 27 55 28 61 29 c 0 - 73 32 82 38 92 45 c 0 - 107 56 111 71 113 88 c 0 - 115 104 116 120 117 135 c 0 - 120 213 117 291 118 369 c 0 - 118 423 118 478 117 533 c 0 - 117 563 116 594 115 624 c 0 - 114 642 112 660 107 678 c 0 - 105 682 102 687 99 690 c 0 - 85 703 71 714 53 720 c 0 - 48 721 43 722 37 722 c 0 - 31 723 30 724 30 731 c 2 - 30 747 l 1 - 35 748 41 750 47 750 c 0 - 57 751 67 751 78 750 c 0 - 82 750 86 749 90 749 c 0 - 91 749 93 748 94 748 c 0 - 113 752 131 747 150 749 c 0 - 151 749 152 748 153 749 c 0 - 163 751 167 746 171 738 c 0 - 191 698 214 661 237 623 c 0 - 251 601 262 579 275 557 c 0 - 280 548 285 539 290 531 c 0 - 304 509 316 488 326 465 c 0 - 328 458 332 452 336 446 c 0 - 351 423 365 398 377 373 c 0 - 380 366 384 359 387 353 c 2 - 441 260 l 2 - 458 231 474 202 491 174 c 0 - 498 162 506 150 513 138 c 0 - 514 136 516 134 518 131 c 1 - 521 134 523 136 525 139 c 0 - 537 160 550 181 562 203 c 0 - 586 244 608 286 633 326 c 0 - 652 356 666 389 685 420 c 2 - 694 435 l 2 - 703 448 710 461 716 476 c 0 - 722 490 730 505 739 518 c 0 - 750 536 760 554 771 573 c 0 - 781 592 792 611 804 629 c 0 - 825 664 847 699 864 736 c 0 - 869 745 874 750 886 749 c 0 - 899 748 913 749 926 750 c 2 - 928 750 l 2 - 949 748 971 752 992 750 c 0 - 997 750 1002 748 1007 748 c 1 - 1007 740 1008 734 1007 727 c 0 - 1006 726 1003 723 1001 723 c 0 - 976 722 958 707 940 692 c 0 - 935 687 931 680 929 672 c 0 - 923 651 922 629 922 608 c 0 - 921 534 919 461 919 387 c 0 - 918 322 918 256 919 191 c 0 - 919 166 920 141 921 116 c 0 - 921 94 927 73 940 54 c 0 - 943 50 948 46 952 44 c 0 - 965 40 978 37 991 34 c 0 - 1002 31 1003 31 1004 19 c 0 - 1005 16 1005 14 1005 11 c 0 - 1006 3 1004 1 996 1 c 2 - 962 1 l 2 - 944 0 927 -1 910 -1 c 0 - 896 -1 882 0 869 0 c 2 - 805 0 l 2 - 798 0 792 1 786 1 c 0 - 782 1 782 4 782 6 c 2 - 782 19 l 2 - 782 23 784 25 788 25 c 0 - 798 28 809 30 818 35 c 0 - 828 39 837 44 845 51 c 0 - 856 58 860 70 860 83 c 0 - 860 115 860 147 861 180 c 0 - 861 212 862 245 862 277 c 0 - 863 303 863 330 862 356 c 0 - 862 384 860 412 860 440 c 0 - 860 474 861 508 861 542 c 0 - 862 550 862 557 862 565 c 0 - 863 568 862 571 858 572 c 0 - 854 573 853 570 852 568 c 0 - 837 538 818 510 799 483 c 0 - 792 474 787 463 781 453 c 0 - 771 437 760 421 751 405 c 0 - 743 391 736 377 728 363 c 0 - 727 359 725 355 723 351 c 0 - 708 324 693 296 678 269 c 0 - 662 241 645 213 630 185 c 0 - 599 127 560 73 527 16 c 0 - 520 5 517 5 510 16 c 0 - 484 58 458 98 433 140 c 0 - 408 181 384 223 361 266 c 0 - 350 286 339 307 327 327 c 0 - 315 347 306 369 295 390 c 0 - 288 403 280 415 272 427 c 0 - 263 442 253 458 244 473 c 0 - 242 476 241 479 239 482 c 0 - 226 501 213 520 200 540 c 0 - 194 549 190 559 184 569 c 0 - 183 571 181 574 179 572 c 0 - 177 571 176 568 175 566 c 0 - 174 565 174 564 174 562 c 0 - 175 551 176 539 176 528 c 2 - 176 463 l 1 - 176 370 l 1 - 173 310 l 2 - 173 293 174 276 175 260 c 0 - 175 215 176 170 177 125 c 2 - 177 83 l 2 - 177 67 183 54 196 45 c 0 - 201 42 206 38 210 34 c 0 - 218 28 226 25 236 26 c 0 - 237 26 239 25 241 25 c 1x3c -EndSplineSet -Kerns2: 91 -89 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -80 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -89 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" M1 -EndChar - -StartChar: N -Encoding: 78 78 49 -Width: 785 -GlyphClass: 2 -Flags: MW -HStem: -2 21G<35 48.5 39 97 97 105 105 233> -1 21G<238 239> 717 34<548 583 548 583> 724 24 -VStem: 102 65 108 55<196.5 218 196.5 275> 623 55<525 525> -LayerCount: 2 -Fore -SplineSet -548 717 m 1x66 - 548 741 l 2 - 548 746 551 748 556 748 c 0 - 565 750 574 751 583 751 c 0 - 605 752 627 752 649 753 c 2 - 651 753 l 1 - 676 747 701 754 726 753 c 0 - 733 752 741 752 748 751 c 0 - 750 751 752 749 752 747 c 0 - 754 738 754 728 755 718 c 1 - 746 717 737 716 729 715 c 0 - 721 714 712 711 705 708 c 0 - 697 706 693 699 691 692 c 2 - 682 641 l 2 - 681 637 682 632 682 628 c 0 - 681 594 679 559 678 525 c 2 - 678 491 l 2 - 677 454 677 418 677 381 c 0 - 677 320 678 258 678 197 c 2 - 678 70 l 2 - 679 53 680 36 681 20 c 0 - 682 12 678 6 673 1 c 0 - 671 -2 664 -1 659 -2 c 0 - 647 -4 636 0 627 9 c 0 - 623 12 618 15 613 19 c 0 - 597 30 586 45 573 60 c 0 - 566 70 558 79 550 88 c 0 - 550 89 549 89 549 89 c 2xa6 - 535 107 520 124 506 142 c 0 - 497 153 488 165 478 176 c 0 - 465 192 451 207 438 223 c 0 - 432 230 425 238 418 245 c 0 - 415 249 411 253 408 258 c 0 - 390 283 372 308 354 332 c 0 - 345 344 335 356 326 368 c 2 - 322 372 l 1 - 307 398 287 419 271 444 c 0 - 268 448 264 452 260 457 c 0 - 252 468 244 480 235 492 c 0 - 234 494 232 497 230 499 c 0 - 219 513 207 527 195 541 c 0 - 191 546 186 551 182 557 c 0 - 179 560 177 566 171 564 c 0 - 164 561 165 556 165 550 c 0 - 165 532 165 514 166 495 c 0 - 166 466 167 436 167 406 c 0 - 166 362 165 317 164 273 c 0 - 164 254 162 236 163 218 c 0 - 163 175 165 132 166 89 c 0 - 166 81 167 74 167 66 c 0 - 168 52 179 44 194 40 c 0 - 205 37 216 36 227 33 c 0 - 235 32 235 32 237 23 c 0 - 238 15 238 7 239 -1 c 1 - 237 -1 235 -2 233 -2 c 2 - 105 -2 l 2 - 102 -3 100 -3 97 -2 c 0 - 78 1 58 -2 39 -2 c 0 - 31 -2 31 -1 31 5 c 0 - 30 11 31 16 30 22 c 0 - 30 26 32 28 36 29 c 0 - 45 30 54 32 63 34 c 0 - 71 36 79 39 87 42 c 0 - 94 45 100 51 102 59 c 0 - 106 69 108 79 108 91 c 2 - 108 275 l 2 - 108 303 106 331 105 360 c 0x56 - 105 378 104 395 103 413 c 0 - 103 468 102 523 102 579 c 0 - 102 599 102 619 101 639 c 0 - 100 664 96 688 77 708 c 0 - 68 717 57 722 45 724 c 2 - 39 724 l 2 - 35 724 32 726 31 732 c 0 - 31 738 30 745 30 751 c 0 - 33 752 35 752 36 752 c 0 - 63 751 90 750 117 748 c 0 - 128 748 139 746 149 745 c 0 - 156 745 161 739 162 731 c 0 - 165 710 174 691 183 672 c 0x5a - 188 659 199 648 207 637 c 0 - 217 624 227 611 237 599 c 0 - 244 590 251 582 258 574 c 0 - 274 555 289 537 304 518 c 0 - 311 511 318 504 323 496 c 0 - 336 480 347 463 360 447 c 0 - 366 439 373 432 379 424 c 0 - 387 415 394 406 400 397 c 0 - 413 379 425 360 438 341 c 0 - 455 317 471 294 488 270 c 0 - 496 259 503 248 512 237 c 0 - 521 224 532 212 542 199 c 0 - 551 188 559 177 569 167 c 0 - 579 156 589 147 600 137 c 0 - 607 132 613 135 617 142 c 0 - 620 148 622 154 622 161 c 0 - 621 185 620 209 620 233 c 0 - 620 272 621 312 621 351 c 0 - 621 353 622 354 622 356 c 0 - 622 412 623 469 623 525 c 2 - 623 627 l 2 - 623 639 623 651 624 663 c 0 - 624 674 620 685 616 695 c 0 - 611 705 601 710 591 713 c 0 - 583 715 574 716 566 717 c 2 - 548 717 l 1x66 -EndSplineSet -Kerns2: 92 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -80 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -63 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -80 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -63 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -84 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" N1 N2 -EndChar - -StartChar: O -Encoding: 79 79 50 -Width: 843 -GlyphClass: 2 -Flags: MW -HStem: -10 44<444.5 458 402 462.5> 704 45<383.5 423> -VStem: 30 51<343 367> 765 47 -LayerCount: 2 -Fore -SplineSet -30 343 m 0 - 30 361 31 381 32 401 c 0 - 33 416 36 431 41 446 c 0 - 45 457 47 468 51 480 c 0 - 60 508 71 535 86 561 c 0 - 94 576 107 587 118 600 c 0 - 133 616 149 631 165 646 c 0 - 194 673 226 695 263 710 c 0 - 283 718 303 727 324 733 c 0 - 347 741 371 749 396 749 c 0 - 397 750 399 750 400 750 c 0 - 420 757 440 754 460 753 c 0 - 469 752 478 752 487 751 c 0 - 500 749 513 748 526 745 c 0 - 541 742 555 738 569 734 c 0 - 578 731 587 727 595 723 c 0 - 615 713 636 702 655 690 c 0 - 669 681 681 670 693 659 c 0 - 706 647 718 635 729 622 c 0 - 739 609 748 596 756 582 c 0 - 770 559 784 535 793 508 c 0 - 803 478 809 448 811 416 c 0 - 813 388 812 359 812 330 c 0 - 811 304 804 279 796 255 c 0 - 787 226 772 200 757 174 c 0 - 746 154 733 134 717 118 c 0 - 707 108 696 100 685 91 c 0 - 680 86 674 81 668 77 c 0 - 663 73 657 70 652 66 c 0 - 630 55 607 43 585 31 c 0 - 559 17 532 6 503 -1 c 0 - 487 -5 471 -10 454 -10 c 0 - 435 -10 415 -10 396 -9 c 0 - 375 -8 355 -6 335 -3 c 0 - 316 -1 297 0 279 7 c 0 - 268 12 258 17 247 22 c 0 - 229 31 212 39 195 47 c 0 - 186 52 178 57 170 62 c 0 - 152 73 136 86 120 101 c 0 - 106 114 94 127 84 143 c 0 - 73 160 63 178 54 196 c 0 - 43 220 38 245 33 271 c 0 - 29 294 32 317 30 343 c 0 -765 371 m 0 - 766 404 765 417 756 452 c 0 - 751 472 744 491 737 510 c 0 - 729 533 715 553 701 571 c 0 - 690 585 677 596 665 609 c 0 - 658 616 652 625 643 631 c 0 - 627 642 611 655 593 663 c 0 - 584 667 575 674 565 677 c 0 - 542 685 518 693 493 695 c 0 - 490 695 487 696 484 697 c 0 - 463 699 443 703 423 704 c 0 - 385 704 347 700 312 685 c 0 - 303 681 294 678 286 674 c 0 - 275 667 265 660 254 653 c 0 - 240 644 228 634 216 623 c 0 - 196 606 177 587 159 566 c 0 - 140 543 124 518 112 490 c 0 - 108 482 104 475 102 467 c 0 - 95 442 89 417 84 392 c 0 - 81 382 81 372 81 362 c 0 - 83 322 87 282 99 243 c 0 - 105 225 112 208 120 191 c 0 - 126 178 133 166 144 157 c 0 - 145 155 146 153 148 152 c 2 - 169 128 l 2 - 171 126 174 124 177 122 c 0 - 200 101 223 79 253 66 c 0 - 265 61 277 55 290 51 c 0 - 302 48 315 46 327 43 c 0 - 352 38 377 35 402 34 c 0 - 416 33 430 34 444 34 c 0 - 472 34 500 41 526 51 c 0 - 562 65 596 82 629 104 c 0 - 643 113 658 123 670 135 c 0 - 691 156 711 178 725 204 c 0 - 738 229 751 255 756 283 c 0 - 761 314 766 344 765 371 c 0 -EndSplineSet -Kerns2: 92 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -84 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -97 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" O1 -EndChar - -StartChar: P -Encoding: 80 80 51 -Width: 606 -GlyphClass: 2 -Flags: MW -HStem: -12 32 322 40 714 31 715 39<259 280 259 262.5> -VStem: 115 62<79 295> 521 53 -LayerCount: 2 -Fore -SplineSet -33 20 m 1xdc - 40 21 46 21 52 23 c 0 - 67 27 82 32 97 36 c 0 - 106 39 111 46 112 55 c 0 - 114 63 115 71 115 79 c 0 - 115 130 116 181 115 232 c 0 - 113 291 109 349 111 407 c 0 - 112 445 114 484 115 522 c 2 - 115 604 l 1 - 115 620 l 2 - 117 640 112 659 106 678 c 0 - 103 687 96 695 90 703 c 0 - 87 708 80 709 74 710 c 0 - 61 711 48 713 35 714 c 1 - 35 746 l 1 - 46 746 56 745 67 745 c 0 - 81 744 94 745 108 745 c 0 - 123 746 139 746 154 746 c 0 - 160 747 166 747 172 747 c 0 - 178 748 183 748 189 748 c 0xec - 194 749 199 749 204 750 c 0 - 215 751 225 753 236 754 c 2 - 306 754 l 2 - 320 754 334 754 348 752 c 0 - 359 751 369 748 380 745 c 0 - 398 742 416 738 434 731 c 0 - 440 728 446 726 452 723 c 0 - 473 714 493 703 511 688 c 1 - 512 688 l 1 - 527 672 544 658 551 637 c 0 - 557 619 564 602 570 584 c 0 - 572 578 573 571 574 565 c 0 - 579 524 575 485 556 449 c 0 - 550 437 543 426 537 414 c 0 - 531 404 522 396 512 390 c 0 - 500 381 487 371 474 363 c 0 - 454 352 434 342 412 335 c 0 - 382 326 352 325 322 322 c 0 - 302 321 283 326 264 329 c 0 - 252 331 242 334 233 343 c 0 - 231 345 229 347 227 350 c 0 - 217 359 225 376 237 379 c 0 - 251 381 263 380 275 376 c 0 - 307 367 340 359 374 362 c 0 - 401 365 427 371 450 388 c 0 - 463 397 476 406 486 420 c 0 - 502 443 514 468 518 496 c 0 - 522 524 522 552 516 579 c 0 - 509 609 494 635 472 656 c 0 - 470 658 467 661 464 662 c 0 - 445 672 425 683 405 691 c 0 - 393 697 380 699 367 702 c 0 - 338 707 309 711 280 715 c 0 - 273 716 266 715 259 715 c 0 - 254 714 249 714 245 713 c 0 - 218 711 200 699 190 674 c 0 - 184 658 180 642 180 624 c 0 - 180 605 178 587 178 568 c 0 - 177 521 177 473 177 425 c 0 - 177 382 176 338 177 295 c 0 - 177 261 180 227 181 193 c 0 - 182 175 182 158 182 141 c 0 - 182 119 183 97 187 75 c 0 - 190 53 204 40 224 32 c 0 - 238 27 252 25 266 23 c 0 - 271 22 273 21 274 16 c 0 - 274 11 275 6 276 0 c 0 - 277 -4 275 -7 272 -8 c 0 - 268 -9 265 -11 262 -11 c 2 - 233 -11 l 1 - 220 -11 l 2 - 182 -13 145 -13 107 -11 c 0 - 99 -11 90 -12 81 -12 c 2 - 39 -12 l 2 - 31 -12 30 -10 30 -2 c 0 - 31 5 32 12 33 20 c 1xdc -EndSplineSet -Kerns2: 92 -143 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -129 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -120 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -120 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -152 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -103 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -196 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -196 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -223 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -192 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -215 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -197 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -129 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -169 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -80 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -205 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -161 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -148 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -147 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -102 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -128 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -173 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" P1 -EndChar - -StartChar: Q -Encoding: 81 81 52 -Width: 869 -GlyphClass: 2 -Flags: MW -HStem: -132 42 -12 50 -9 21G<443 448 443 443> 17 21 708 43<425.5 435> -VStem: 32 47 762 51 -LayerCount: 2 -Fore -SplineSet -964 -83 m 0xce - 967 -86 970 -90 974 -93 c 1 - 970 -97 967 -100 964 -104 c 0 - 947 -120 927 -128 904 -132 c 0 - 885 -136 867 -134 849 -130 c 0 - 828 -126 810 -118 791 -109 c 0 - 774 -100 757 -90 739 -82 c 0 - 722 -73 707 -63 692 -52 c 0 - 673 -38 653 -23 634 -10 c 0 - 623 -2 610 5 598 10 c 0 - 574 21 550 18 526 9 c 0x9e - 501 0 475 -8 448 -9 c 2 - 443 -9 l 1xae - 424 -16 403 -14 383 -12 c 0 - 374 -12 366 -12 357 -10 c 0 - 343 -9 330 -7 317 -4 c 0 - 303 -1 288 2 274 7 c 0 - 266 9 257 13 249 17 c 0 - 228 28 207 38 187 51 c 0 - 173 61 160 73 147 85 c 0xce - 136 96 124 107 115 119 c 0 - 105 131 96 145 88 158 c 0 - 73 182 60 206 51 232 c 0 - 41 262 34 293 32 324 c 0 - 30 353 31 382 32 411 c 0 - 32 437 39 461 47 486 c 0 - 56 513 70 537 84 562 c 0 - 96 585 111 606 128 624 c 0 - 136 632 145 640 154 647 c 0 - 167 657 181 666 195 676 c 0 - 209 687 225 693 241 700 c 0 - 274 715 307 729 342 739 c 0 - 350 742 358 743 366 744 c 0 - 380 746 395 748 410 750 c 0 - 413 750 415 751 418 751 c 2 - 481 751 l 2 - 490 750 499 749 508 747 c 0 - 537 741 564 732 591 721 c 0 - 604 715 616 709 629 702 c 0 - 635 699 640 693 646 689 c 0 - 667 673 689 658 709 640 c 0 - 721 630 730 616 741 604 c 0 - 748 596 755 587 762 579 c 0 - 786 551 802 519 807 482 c 0 - 809 470 813 458 814 445 c 0 - 815 432 816 418 815 404 c 0 - 815 387 812 371 812 354 c 0 - 811 336 808 319 805 302 c 0 - 803 290 801 277 798 265 c 0 - 790 240 778 217 765 194 c 0 - 752 172 737 152 719 134 c 2 - 684 99 l 2 - 682 97 681 96 680 94 c 0 - 669 78 653 67 639 55 c 0 - 633 50 633 48 640 45 c 0 - 649 41 659 37 668 33 c 0 - 687 25 703 12 719 0 c 0 - 728 -7 737 -14 746 -20 c 0 - 752 -24 757 -28 762 -32 c 0x9e - 790 -53 819 -72 854 -79 c 0 - 877 -83 901 -87 924 -90 c 0 - 938 -91 951 -89 964 -83 c 0xce -79 364 m 1 - 76 339 81 314 87 289 c 0 - 92 269 100 250 106 230 c 0 - 115 208 128 188 143 169 c 0 - 153 156 166 144 178 132 c 0 - 185 124 192 115 200 109 c 0 - 216 98 232 86 250 78 c 0 - 265 71 279 62 295 57 c 0 - 320 51 345 46 370 42 c 0 - 398 37 426 35 455 38 c 0 - 482 41 508 45 533 56 c 0 - 541 60 550 63 558 67 c 0 - 569 73 579 81 589 87 c 0 - 603 96 616 107 628 117 c 0 - 648 135 667 154 684 174 c 0 - 703 198 719 223 732 251 c 0 - 735 258 739 266 741 274 c 0 - 748 299 754 324 760 349 c 0 - 762 358 763 369 762 379 c 0 - 761 422 756 465 742 506 c 0 - 731 536 720 566 696 588 c 0 - 684 598 675 609 664 620 c 0 - 655 629 646 637 636 645 c 0 - 610 667 580 683 546 691 c 0 - 510 699 473 706 435 708 c 0 - 416 708 396 709 377 705 c 2 - 320 693 l 2 - 306 690 292 686 279 680 c 0 - 252 671 230 654 208 637 c 0 - 171 608 139 574 117 533 c 0 - 104 509 93 484 88 458 c 0 - 82 427 77 396 79 364 c 1 -EndSplineSet -Kerns2: 92 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -90 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" Q1 Q2 -EndChar - -StartChar: R -Encoding: 82 82 53 -Width: 912 -GlyphClass: 2 -Flags: MW -HStem: -6 20<36 36> 385 47 706 41 -VStem: 108 61 115 57<112 216 147 216 157 216> 489 66 -LayerCount: 2 -Fore -SplineSet -238 -4 m 1xec - 170 -7 104 -7 36 -6 c 1 - 36 14 l 1 - 60 23 l 2 - 73 28 85 34 96 43 c 0 - 105 51 110 61 111 73 c 0 - 112 86 115 99 115 112 c 0 - 116 124 116 136 115 147 c 2 - 115 157 l 2 - 114 190 116 223 113 257 c 0 - 108 323 112 389 110 456 c 0 - 109 491 108 527 108 563 c 0 - 108 587 106 610 104 634 c 0 - 102 645 102 656 102 668 c 0 - 100 692 87 709 63 715 c 0 - 54 718 44 719 34 721 c 0 - 32 722 31 722 30 722 c 1 - 30 747 l 2 - 33 748 35 748 38 748 c 0 - 58 749 77 750 97 751 c 2 - 110 751 l 2 - 119 750 128 750 138 750 c 0 - 147 749 157 748 166 748 c 0 - 176 747 185 747 195 748 c 0xf4 - 220 749 246 751 272 747 c 1 - 282 747 l 2 - 296 746 311 746 325 745 c 0 - 339 743 353 739 366 736 c 0 - 386 731 405 726 424 720 c 0 - 442 715 458 704 474 694 c 0 - 478 692 483 688 488 686 c 0 - 506 678 517 663 527 646 c 0 - 535 632 540 617 547 602 c 0 - 548 600 549 597 549 595 c 0 - 556 563 558 531 551 499 c 0 - 550 494 548 491 546 487 c 0 - 540 470 531 454 519 441 c 0 - 506 426 493 411 475 401 c 0 - 458 393 441 387 422 385 c 0 - 419 385 416 385 413 384 c 0 - 412 384 411 383 408 382 c 1 - 411 381 413 380 414 379 c 0 - 436 370 454 357 468 337 c 0 - 469 335 471 333 472 331 c 0 - 500 301 519 265 541 230 c 0 - 558 204 573 177 590 150 c 0 - 601 133 613 115 629 101 c 0 - 636 94 643 86 649 79 c 0 - 668 58 691 41 718 32 c 0 - 734 26 750 19 768 21 c 0 - 778 22 788 24 798 26 c 0 - 814 29 827 39 841 47 c 0 - 850 53 859 59 869 65 c 0 - 872 67 876 69 879 65 c 0 - 881 63 882 60 881 57 c 0 - 881 53 880 48 878 45 c 0 - 872 37 865 29 858 21 c 0 - 855 17 851 14 847 10 c 0 - 826 -10 802 -21 773 -24 c 0 - 755 -27 737 -27 720 -24 c 0 - 706 -21 692 -17 679 -12 c 0 - 660 -4 641 6 625 21 c 0 - 604 40 583 59 567 82 c 0 - 554 101 539 118 527 136 c 0 - 516 151 508 167 499 183 c 0 - 492 194 484 205 476 216 c 0 - 465 232 454 247 443 262 c 0 - 442 264 442 266 440 267 c 0 - 423 287 406 306 387 323 c 0 - 363 345 334 356 303 362 c 0 - 283 366 262 369 241 371 c 0 - 226 372 211 370 196 368 c 0 - 191 367 186 365 182 362 c 0 - 177 359 176 355 176 350 c 0 - 175 333 175 316 174 300 c 0 - 173 272 171 244 172 216 c 0 - 172 189 174 163 175 136 c 0 - 176 115 176 94 176 73 c 0 - 175 58 181 46 190 35 c 0 - 194 28 202 26 210 24 c 0 - 218 23 225 21 233 19 c 0 - 237 18 238 16 238 12 c 2 - 238 -4 l 1xec -169 529 m 0 - 170 504 170 484 171 465 c 0 - 172 457 173 448 174 440 c 0 - 175 433 178 431 186 432 c 0 - 201 433 217 433 233 431 c 0 - 245 430 256 429 269 429 c 2 - 347 432 l 2 - 361 432 375 431 389 433 c 0 - 409 434 430 436 445 453 c 0 - 446 453 447 454 447 454 c 2 - 459 462 467 473 474 484 c 0 - 481 494 486 505 487 516 c 0 - 489 531 490 546 489 560 c 0 - 487 578 483 597 471 612 c 0 - 463 624 454 636 445 647 c 0 - 442 651 438 655 433 657 c 0 - 422 664 411 669 399 675 c 0 - 397 677 394 678 392 679 c 0 - 378 683 366 691 351 693 c 1 - 351 693 350 694 349 694 c 0 - 340 699 329 701 318 702 c 0 - 299 703 278 705 258 706 c 0 - 238 707 217 706 197 700 c 0 - 180 694 174 686 173 668 c 2 - 173 658 l 2 - 173 643 173 627 172 612 c 0 - 171 582 170 553 169 529 c 0 -EndSplineSet -Kerns2: 92 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -157 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -125 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -125 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -63 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -8 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -32 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -189 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -240 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -296 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -117 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -209 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -137 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -117 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" R1 R2 R3 R4 -EndChar - -StartChar: S -Encoding: 83 83 54 -Width: 522 -GlyphClass: 2 -Flags: MW -HStem: -11 21G<36.5 39 39 65> -8 21G<241 246> -8 42 710 40 -VStem: 30 73<553.5 567.5 553.5 569> 31 34 421 70 448 25<572 608.5> -LayerCount: 2 -Fore -SplineSet -65 -11 m 2x95 - 39 -11 l 2 - 34 -11 32 -9 32 -4 c 0x95 - 32 31 31 66 31 101 c 0 - 31 118 33 134 34 151 c 0 - 34 155 36 157 39 158 c 0 - 47 161 55 165 65 164 c 0 - 65 161 65 158 66 154 c 0 - 67 137 69 120 77 104 c 0 - 80 97 85 92 88 86 c 0 - 93 80 97 74 102 68 c 0 - 103 66 105 64 107 62 c 0 - 129 49 151 34 179 34 c 0 - 185 34 190 33 196 32 c 0 - 209 29 223 29 237 32 c 0 - 246 34 255 35 265 36 c 0 - 277 37 289 40 301 45 c 0 - 314 52 328 57 341 64 c 0 - 359 76 376 89 392 103 c 0 - 403 112 407 126 410 139 c 0 - 417 164 419 189 421 214 c 0 - 422 229 416 241 410 254 c 0 - 402 271 394 288 384 304 c 0 - 372 326 354 344 331 355 c 0x36 - 320 360 311 367 301 372 c 0 - 284 380 268 387 251 394 c 0 - 240 398 230 401 218 403 c 0 - 187 408 158 416 129 429 c 0 - 104 439 80 453 63 475 c 0 - 58 481 54 488 51 495 c 0 - 39 516 30 539 30 564 c 0 - 30 574 32 585 35 595 c 0 - 37 607 42 618 45 630 c 0 - 52 651 65 667 80 681 c 0 - 95 694 110 707 126 717 c 0 - 148 730 170 742 195 746 c 0 - 221 751 247 752 273 750 c 0 - 293 748 314 742 334 739 c 0 - 360 736 383 726 408 719 c 0 - 420 716 433 714 446 712 c 0 - 452 711 459 711 465 710 c 0 - 469 710 471 708 471 705 c 2 - 471 701 l 2 - 472 664 473 627 473 590 c 0 - 473 567 474 572 455 572 c 2 - 448 572 l 1 - 442 587 438 602 431 616 c 0 - 426 630 419 644 407 653 c 0 - 399 659 391 666 384 672 c 0 - 378 676 372 681 366 685 c 0 - 358 689 349 694 341 697 c 0 - 328 702 315 706 302 711 c 0 - 300 711 298 710 295 710 c 0 - 284 711 273 710 262 712 c 0 - 253 713 244 713 234 712 c 0 - 222 711 209 709 198 705 c 0 - 184 700 172 692 162 683 c 0 - 153 675 145 668 136 661 c 0 - 118 645 109 624 106 601 c 0 - 104 588 103 574 103 561 c 0 - 103 546 107 531 114 518 c 0 - 120 507 129 499 139 493 c 0 - 154 484 170 477 185 469 c 0x59 - 207 457 231 450 256 444 c 0 - 294 435 332 424 368 406 c 0 - 375 402 382 397 389 392 c 0 - 393 389 397 385 402 382 c 0 - 419 371 432 357 446 344 c 0 - 458 332 465 317 471 302 c 0 - 474 296 477 289 480 282 c 0 - 486 267 489 251 491 234 c 0 - 493 211 490 189 482 167 c 0 - 471 132 454 100 427 75 c 0 - 411 60 395 49 377 38 c 0 - 361 29 345 19 329 11 c 0 - 323 7 317 5 310 3 c 0 - 289 -2 268 -7 246 -8 c 0 - 236 -8 226 -11 216 -12 c 0 - 209 -13 201 -13 194 -12 c 0 - 180 -11 167 -9 153 -7 c 0 - 144 -6 135 -4 126 -1 c 0 - 112 3 97 4 83 5 c 0x56 - 74 6 71 4 67 -6 c 0 - 66 -8 66 -9 65 -11 c 2x95 -EndSplineSet -Kerns2: 92 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" S1 S2 -EndChar - -StartChar: T -Encoding: 84 84 55 -Width: 757 -GlyphClass: 2 -Flags: MW -HStem: -7 21G<252 340 252 267 340 427> -7 23<340 427> 712 35<568.5 579.5> 735 20G -VStem: 312 63 -LayerCount: 2 -Fore -SplineSet -56 627 m 0xa8 - 48 629 41 630 34 633 c 0 - 33 633 30 636 30 638 c 0 - 30 642 31 645 32 649 c 0xa8 - 40 680 48 710 56 741 c 0 - 60 753 57 759 76 755 c 0x98 - 92 753 107 750 123 749 c 0 - 139 747 155 747 171 747 c 0 - 197 747 223 748 249 747 c 0 - 280 747 311 745 342 744 c 0 - 351 744 361 746 370 746 c 0 - 400 746 429 744 459 745 c 0 - 503 745 547 747 590 747 c 0 - 619 747 648 745 677 745 c 0 - 687 744 696 744 705 745 c 0 - 720 745 730 732 725 719 c 0 - 720 704 714 688 713 672 c 0 - 713 662 714 652 714 642 c 0 - 714 640 715 638 716 635 c 1 - 708 633 701 630 694 628 c 0 - 691 627 689 630 687 634 c 0 - 683 647 677 660 673 674 c 0 - 667 694 653 705 633 709 c 0 - 626 710 618 710 611 711 c 0 - 598 711 586 712 573 712 c 0 - 563 712 553 712 542 711 c 0 - 527 710 511 709 496 709 c 0 - 490 708 484 709 477 709 c 0 - 460 709 442 709 425 704 c 0 - 419 702 412 701 406 699 c 0 - 392 695 384 686 384 670 c 0 - 383 642 381 614 380 587 c 0 - 379 547 380 507 377 468 c 0 - 372 402 375 337 375 272 c 0 - 375 214 376 156 376 98 c 0 - 376 90 375 83 374 75 c 0 - 371 44 389 25 413 18 c 0 - 418 17 422 17 427 16 c 1x68 - 427 -7 l 1 - 398 -10 369 -7 340 -7 c 0 - 311 -6 282 -7 252 -7 c 1 - 252 10 l 2 - 252 14 255 15 258 16 c 0 - 268 20 278 23 288 27 c 0 - 293 29 298 32 302 36 c 0 - 305 40 309 45 310 50 c 0 - 312 58 313 66 313 73 c 0 - 314 114 313 155 313 196 c 0 - 313 213 314 230 313 247 c 0 - 313 301 312 355 312 408 c 2 - 312 514 l 2 - 313 552 314 590 314 628 c 0 - 314 641 313 653 312 665 c 0 - 310 683 299 694 282 699 c 0 - 273 702 263 703 254 703 c 0 - 216 704 178 705 140 705 c 0 - 120 705 105 696 92 681 c 0 - 80 666 69 651 60 634 c 0 - 59 631 58 629 56 627 c 0xa8 -EndSplineSet -Kerns2: 92 -291 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -326 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -304 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -330 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -326 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -335 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -268 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -277 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -282 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -290 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -335 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -293 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -299 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -277 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -286 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -308 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -321 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -285 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -255 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -276 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -330 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -295 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -286 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -304 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -281 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -304 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -97 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -97 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -260 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -235 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" T1 T2 -EndChar - -StartChar: U -Encoding: 85 85 56 -Width: 769 -GlyphClass: 2 -Flags: MW -HStem: -27 52 -7 45 709 28 716 28 -VStem: 97 63<356 381> 587 63<376.5 473.5> -LayerCount: 2 -Fore -SplineSet -781 71 m 1x6c - 786 67 790 64 794 61 c 0 - 797 59 798 56 797 53 c 0 - 790 34 781 15 762 6 c 0 - 743 -4 722 -10 701 -7 c 0 - 674 -4 648 7 633 32 c 0 - 624 45 617 59 610 72 c 0 - 603 85 594 87 585 76 c 0 - 582 73 580 71 578 68 c 0 - 563 47 544 29 523 13 c 0 - 506 0 486 -7 465 -12 c 0x5c - 448 -15 431 -19 413 -22 c 0 - 381 -27 349 -29 317 -22 c 0 - 306 -20 296 -19 285 -16 c 0 - 266 -11 246 -5 227 2 c 0 - 214 7 202 14 192 23 c 0 - 180 33 167 43 156 55 c 0 - 148 64 142 74 135 84 c 0 - 118 113 108 144 103 177 c 0 - 100 195 98 213 98 231 c 0 - 97 281 97 331 97 381 c 0 - 96 429 97 477 96 524 c 0 - 96 553 96 581 95 609 c 0 - 94 632 92 655 90 678 c 0 - 89 690 83 699 75 708 c 0 - 70 713 63 716 56 716 c 2 - 41 716 l 2 - 35 716 32 719 31 724 c 0 - 30 726 30 728 30 730 c 0 - 30 740 32 742 42 743 c 0 - 72 743 103 744 133 744 c 0 - 150 744 168 745 185 744 c 0 - 197 744 208 743 220 743 c 0 - 224 743 226 740 227 736 c 0 - 228 726 225 720 215 716 c 2 - 200 710 l 2 - 191 706 184 700 180 691 c 0 - 173 677 168 663 166 648 c 0 - 162 618 164 588 163 558 c 0 - 162 526 162 493 160 461 c 0 - 158 434 160 408 160 381 c 0 - 159 335 159 289 160 243 c 0 - 161 212 165 180 175 149 c 0 - 180 134 187 119 197 106 c 0 - 198 104 199 103 199 102 c 0 - 208 86 222 75 236 66 c 0 - 253 55 270 44 289 35 c 0 - 300 29 313 26 325 25 c 0 - 342 23 359 25 375 27 c 0 - 391 29 407 33 423 36 c 0 - 439 39 453 46 468 54 c 0 - 476 59 485 64 493 69 c 0 - 508 79 518 92 528 107 c 0x9c - 554 147 568 193 580 238 c 0 - 584 254 585 270 586 286 c 0 - 587 322 587 358 587 395 c 0 - 587 449 585 503 585 557 c 0 - 585 582 586 607 586 631 c 0 - 586 635 586 640 585 644 c 0 - 583 652 581 660 579 667 c 0 - 571 691 554 701 531 706 c 0 - 527 708 521 709 516 709 c 0 - 513 710 511 712 512 716 c 0 - 513 722 514 729 516 735 c 0 - 517 739 521 740 524 740 c 0 - 544 739 563 738 583 737 c 2 - 639 737 l 2 - 644 737 649 738 655 737 c 0 - 664 737 668 733 667 724 c 0 - 666 715 665 706 663 697 c 0 - 655 670 651 644 651 616 c 0 - 651 559 650 502 650 445 c 0 - 651 385 651 324 653 263 c 0 - 654 220 657 176 659 133 c 0 - 660 112 667 92 676 73 c 0 - 682 60 692 52 705 45 c 0 - 708 43 711 42 715 40 c 0 - 717 39 719 37 722 38 c 0 - 732 38 742 38 752 41 c 0 - 764 44 771 55 778 65 c 0 - 779 67 780 68 781 71 c 1x6c -EndSplineSet -Kerns2: 92 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 63 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 57 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" U1 -EndChar - -StartChar: V -Encoding: 86 86 57 -Width: 860 -GlyphClass: 2 -Flags: MW -HStem: -21 21G<447 452> 709 29<45 48> 715 24<633 638> 720 22<230 257> -VStem: 30 799<710 744> 680 149<667.5 744> -LayerCount: 2 -Fore -SplineSet -30 710 m 1xc8 - 30 718 31 726 32 734 c 0 - 32 738 36 738 39 738 c 2 - 71 738 l 2 - 103 738 135 737 168 737 c 0 - 189 738 209 740 230 742 c 0 - 240 742 250 743 260 744 c 1xc8 - 260 737 261 730 260 723 c 0 - 260 722 258 720 256 720 c 0 - 244 715 233 710 221 706 c 0 - 208 701 200 692 194 681 c 0 - 190 673 191 665 194 657 c 0x98 - 205 629 217 600 228 572 c 0 - 232 563 235 553 238 544 c 0 - 246 523 259 504 269 484 c 0 - 277 469 284 453 291 437 c 0 - 297 426 302 414 308 403 c 2 - 350 322 l 2 - 356 308 362 295 367 280 c 0 - 374 257 387 237 399 216 c 0 - 402 210 405 205 408 199 c 0 - 417 185 425 171 433 157 c 0 - 437 151 439 144 447 141 c 0 - 451 142 454 145 456 150 c 2 - 537 312 l 2 - 546 329 553 347 561 365 c 0 - 571 387 582 408 591 429 c 0 - 599 446 605 464 612 481 c 0 - 617 492 622 504 627 515 c 0 - 637 541 648 566 658 592 c 0 - 662 602 665 612 670 622 c 0 - 678 639 680 658 680 677 c 0 - 680 689 669 707 654 711 c 0 - 648 712 643 714 638 715 c 0 - 634 715 633 717 633 720 c 2 - 633 739 l 1 - 639 739 645 740 651 741 c 0 - 661 742 671 742 680 742 c 0 - 685 743 691 742 696 742 c 0 - 718 742 740 742 761 743 c 0 - 781 743 801 744 822 744 c 0 - 824 745 826 744 829 744 c 1 - 829 737 830 730 829 723 c 0 - 828 721 825 718 822 717 c 0 - 806 712 793 701 779 692 c 0 - 761 680 750 664 742 644 c 0xa4 - 735 625 727 606 720 587 c 2 - 699 536 l 2 - 693 521 687 506 680 491 c 0 - 675 477 669 463 663 450 c 0 - 653 430 642 411 632 391 c 0 - 612 352 594 313 578 272 c 0 - 567 245 557 218 546 191 c 0 - 530 155 514 118 498 82 c 0 - 492 66 487 51 481 35 c 0 - 476 23 470 10 465 -2 c 0 - 464 -6 462 -9 461 -13 c 0 - 459 -17 455 -21 449 -21 c 0 - 445 -21 441 -19 440 -14 c 0 - 436 -6 433 2 430 10 c 0 - 423 28 414 44 405 60 c 0 - 400 69 395 78 391 87 c 0 - 376 122 355 155 337 189 c 0 - 319 223 301 258 284 292 c 0 - 272 314 261 336 251 359 c 0 - 242 378 233 397 225 417 c 0 - 223 421 221 426 219 430 c 0 - 202 465 186 499 169 534 c 0 - 161 551 151 567 142 584 c 0 - 132 607 121 629 111 651 c 0 - 103 667 94 681 82 693 c 0 - 73 702 61 707 48 709 c 0 - 42 709 36 709 30 710 c 1xc8 -EndSplineSet -Kerns2: 92 -224 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -210 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -272 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -192 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -196 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -205 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -183 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -246 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -201 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -214 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -219 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -201 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -236 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -218 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -90 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -116 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -219 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -170 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -116 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -232 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -192 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -214 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -201 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -178 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -134 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -219 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -97 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -189 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -102 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -235 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" V1 -EndChar - -StartChar: W -Encoding: 87 87 58 -Width: 986 -GlyphClass: 2 -Flags: MW -HStem: -19 21G -15 21G 719 29<268 274> 723 24 -VStem: 30 160 268 168 434 79 602 118 -LayerCount: 2 -Fore -SplineSet -956 745 m 0x6b - 956 738 955 733 955 727 c 0 - 955 723 953 722 950 721 c 0 - 939 717 927 714 916 709 c 0 - 905 705 897 697 892 687 c 0 - 882 668 873 649 863 630 c 0 - 848 602 839 571 827 541 c 0 - 825 534 822 528 819 521 c 0 - 811 501 803 480 795 460 c 0 - 782 427 770 394 756 361 c 0 - 737 314 717 268 697 222 c 0 - 687 197 678 171 667 146 c 0 - 662 134 656 123 651 111 c 0 - 641 90 633 68 624 46 c 0 - 617 28 611 11 604 -6 c 0 - 600 -16 592 -18 584 -12 c 0 - 575 -5 568 3 564 13 c 0x6b - 547 58 524 100 505 144 c 0 - 496 164 486 182 476 201 c 0 - 473 206 469 209 466 213 c 1 - 459 211 457 205 454 200 c 0 - 439 162 419 126 405 88 c 0 - 397 68 385 50 375 31 c 0 - 371 22 366 14 361 5 c 0 - 356 -3 351 -11 343 -16 c 0 - 336 -20 334 -20 329 -13 c 0 - 320 -2 316 11 311 24 c 0 - 305 41 300 58 294 75 c 0 - 280 113 266 150 252 188 c 0 - 240 223 229 259 218 295 c 0 - 199 355 182 415 163 475 c 0 - 156 500 147 525 139 550 c 0 - 130 575 123 601 114 626 c 0 - 108 645 101 663 93 681 c 0 - 84 699 69 711 51 719 c 0 - 44 721 37 722 30 723 c 1 - 30 748 l 2 - 31 749 31 749 32 749 c 0 - 49 748 65 747 82 747 c 0 - 103 746 123 745 144 745 c 0 - 162 746 179 748 196 749 c 0 - 202 750 208 750 214 750 c 1 - 215 743 216 737 216 730 c 1 - 212 727 209 724 205 721 c 0 - 195 714 191 704 189 694 c 0 - 186 679 187 665 192 650 c 0 - 201 625 207 599 215 573 c 0 - 226 534 239 495 252 456 c 0 - 262 422 274 389 285 355 c 0 - 298 315 311 276 324 236 c 0 - 333 207 341 178 349 148 c 0 - 351 143 353 140 359 138 c 0 - 360 140 363 143 365 145 c 0 - 367 151 370 156 372 162 c 0 - 390 202 403 244 418 285 c 0 - 421 295 425 305 430 315 c 0 - 435 327 436 339 431 351 c 0 - 424 374 419 397 411 419 c 0 - 402 443 391 467 382 491 c 0 - 374 515 366 540 358 564 c 0 - 352 580 347 597 341 613 c 0x9b - 333 636 324 659 316 681 c 0 - 314 686 313 689 311 693 c 0 - 304 710 291 718 274 719 c 2 - 268 719 l 1 - 268 748 l 1 - 282 748 l 2 - 294 748 305 747 316 749 c 0 - 334 752 352 751 370 748 c 0 - 384 745 398 744 412 747 c 0 - 419 748 425 752 433 749 c 1 - 434 741 435 733 436 724 c 1 - 432 722 428 721 423 719 c 0 - 410 716 400 709 393 697 c 0 - 388 691 387 684 389 676 c 0 - 394 661 399 646 403 631 c 0 - 408 616 412 601 416 587 c 0 - 420 575 423 563 426 552 c 0 - 433 530 441 508 448 487 c 0 - 449 485 449 483 451 481 c 0 - 460 468 463 452 469 437 c 0 - 471 435 473 432 475 431 c 0 - 477 431 480 434 481 436 c 0 - 483 439 485 442 487 446 c 0 - 503 478 519 511 535 544 c 0x6d - 556 589 578 634 598 680 c 0 - 607 698 602 712 585 723 c 0 - 582 725 578 726 577 729 c 0 - 575 733 576 738 575 744 c 1 - 588 745 600 745 612 745 c 0 - 630 745 648 744 666 744 c 0 - 675 743 685 744 694 745 c 0 - 697 745 701 746 705 747 c 0 - 714 751 719 747 720 738 c 2 - 720 736 l 2 - 721 721 720 722 707 716 c 0 - 693 709 678 703 666 691 c 0 - 656 682 650 671 647 659 c 0 - 645 650 642 642 638 635 c 0 - 635 630 633 625 632 620 c 0 - 627 603 621 587 614 572 c 0 - 610 565 608 557 605 549 c 2 - 575 477 l 2 - 559 437 542 398 526 359 c 0 - 521 348 518 337 513 326 c 0 - 512 322 513 318 515 315 c 0 - 523 298 531 282 538 265 c 0 - 546 247 553 229 560 211 c 0 - 564 202 569 193 573 184 c 0 - 578 172 583 160 588 149 c 2 - 597 128 l 1 - 603 132 604 137 606 142 c 0 - 610 164 621 183 629 203 c 0 - 634 216 640 228 646 241 c 2 - 664 286 l 2 - 679 324 695 363 710 402 c 0 - 724 438 739 474 753 510 c 0 - 760 526 765 542 771 558 c 0 - 776 571 782 584 788 598 c 0 - 795 616 803 635 809 654 c 0 - 813 666 814 678 816 689 c 0 - 816 695 814 701 810 706 c 0 - 809 707 808 709 807 710 c 0 - 804 719 797 724 789 728 c 0 - 781 731 782 730 782 739 c 2 - 782 742 l 2 - 782 747 785 749 789 749 c 0 - 792 748 796 749 799 748 c 0 - 816 748 832 747 849 747 c 0 - 859 747 870 749 880 749 c 2 - 910 749 l 2 - 923 748 936 748 948 747 c 0 - 951 747 953 746 956 745 c 0x6b -EndSplineSet -Kerns2: 92 -232 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -228 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -272 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -205 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -201 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -237 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -205 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -201 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -227 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -250 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -214 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -224 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -232 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -236 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -196 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -152 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -218 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -161 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -215 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -197 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -201 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -125 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -215 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -102 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -113 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -215 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -209 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" W1 W2 -EndChar - -StartChar: X -Encoding: 88 88 59 -Width: 771 -GlyphClass: 2 -Flags: MW -HStem: -7 17<560 740 560 560> -7 29<731 735.5 731 740> -6 24 -6 30 390 118 722 23<101 101> 729 22 -VStem: 30 711 32 168<0.5 16> 101 142 318 90 480 128 -LayerCount: 2 -Fore -SplineSet -740 -7 m 1x45 - 680 -7 620 -12 560 -7 c 1x45 - 560 10 l 1 - 567 14 575 17 582 21 c 0 - 588 24 589 28 588 34 c 0 - 586 49 578 62 570 74 c 0x85 - 559 94 546 114 533 133 c 0 - 525 146 515 158 506 171 c 0 - 491 193 476 217 462 239 c 0 - 453 252 444 265 435 277 c 0 - 431 284 426 290 422 297 c 0 - 407 319 393 342 379 364 c 0 - 375 370 373 377 369 384 c 0 - 365 392 361 392 356 384 c 0 - 353 378 349 372 347 367 c 0 - 337 348 327 329 318 311 c 0 - 312 301 307 290 300 280 c 0 - 284 254 272 228 259 200 c 0 - 246 171 231 143 217 115 c 0 - 211 103 206 92 200 80 c 0 - 196 71 190 62 185 53 c 0 - 181 46 179 39 179 31 c 0 - 180 27 181 24 185 24 c 0 - 188 24 190 23 192 23 c 0 - 197 21 200 19 200 13 c 2 - 200 1 l 2 - 200 0 200 0 199 -2 c 0 - 171 -3 143 -5 116 -6 c 0 - 88 -6 60 -5 30 -5 c 1x1c80 - 31 3 31 9 32 15 c 0 - 32 17 35 18 37 18 c 0 - 53 24 70 30 86 36 c 0 - 96 40 105 47 111 57 c 2x2480 - 180 171 l 2 - 198 202 216 232 233 263 c 0 - 248 291 264 318 277 347 c 0 - 289 373 302 399 315 425 c 0 - 320 434 319 441 314 449 c 0 - 296 477 278 506 259 534 c 0 - 247 552 233 570 220 588 c 0 - 218 592 215 596 213 600 c 0 - 203 618 193 635 180 651 c 0 - 169 665 158 680 147 695 c 0 - 140 705 130 713 118 718 c 0 - 113 720 107 720 101 722 c 1 - 101 745 l 1 - 110 746 119 748 128 746 c 0 - 135 745 142 745 149 745 c 0 - 156 744 163 744 170 743 c 2 - 182 743 l 2 - 193 743 203 744 214 745 c 0 - 232 745 250 745 269 746 c 2 - 277 746 l 1 - 277 742 278 738 277 735 c 0 - 277 733 276 730 274 729 c 0 - 269 726 265 723 260 721 c 0 - 244 715 239 702 247 686 c 0x4460 - 257 664 268 643 278 621 c 0 - 282 613 287 605 291 598 c 0 - 299 585 306 572 314 560 c 0 - 326 542 340 526 355 511 c 0 - 360 506 365 507 369 513 c 0 - 386 542 403 570 419 599 c 0 - 430 616 440 635 451 652 c 0 - 459 666 467 679 476 692 c 0 - 486 704 478 718 468 722 c 0 - 464 724 461 725 457 726 c 0 - 455 726 454 726 452 727 c 0 - 452 729 451 731 451 733 c 2 - 451 744 l 2 - 453 745 453 745 454 745 c 2 - 559 751 l 2 - 575 751 591 750 608 749 c 1 - 608 742 609 736 610 729 c 1 - 600 726 590 723 581 721 c 0 - 562 716 549 704 538 689 c 0 - 518 664 504 636 488 609 c 0 - 467 575 448 541 428 507 c 0 - 422 497 418 486 412 476 c 0 - 409 468 406 460 408 452 c 0 - 410 445 413 438 417 432 c 0 - 428 412 440 392 453 372 c 0x4a70 - 473 343 492 314 512 285 c 0 - 522 271 534 257 544 243 c 2 - 568 204 l 2 - 577 189 586 175 595 160 c 0 - 597 158 598 156 599 154 c 0 - 614 135 629 115 644 95 c 0 - 652 84 659 72 666 60 c 0 - 680 35 704 25 731 22 c 0 - 740 22 741 21 741 12 c 0 - 741 6 741 0 740 -7 c 1x45 -EndSplineSet -Kerns2: 92 9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -188 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -143 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -161 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -102 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -91 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" X1 -EndChar - -StartChar: Y -Encoding: 89 89 60 -Width: 748 -GlyphClass: 2 -Flags: MW -HStem: -5 21G -3 21G<295 301 301 388> 715 26 717 27<612 718> -VStem: 30 154 326 65 558 160<734.5 740> -LayerCount: 2 -Fore -SplineSet -214 741 m 1x6c - 214 734 214 728 213 722 c 0 - 213 721 212 719 210 717 c 0 - 208 716 205 716 202 715 c 0 - 186 708 179 692 187 676 c 0 - 192 666 198 657 205 649 c 0 - 218 633 232 617 245 602 c 0 - 249 595 253 588 258 582 c 0 - 276 558 294 535 312 512 c 0 - 322 499 331 486 340 472 c 0 - 347 462 353 452 359 442 c 2 - 363 438 l 1 - 365 440 367 441 368 443 c 0 - 395 479 428 509 456 543 c 0 - 466 554 476 566 485 577 c 0 - 502 597 518 616 536 635 c 0 - 551 652 565 669 578 688 c 0 - 580 691 582 695 582 699 c 0 - 583 706 580 710 573 712 c 0 - 568 714 563 715 557 717 c 1x6e - 557 724 558 731 558 738 c 0 - 558 742 561 742 564 742 c 2 - 580 742 l 2 - 587 743 594 743 601 743 c 0 - 605 744 609 744 612 744 c 0 - 647 741 682 746 718 744 c 1 - 718 717 l 1 - 700 715 684 709 669 702 c 0 - 656 695 644 686 635 675 c 0 - 627 666 619 658 611 649 c 0 - 587 623 565 594 543 565 c 0 - 523 540 504 514 483 489 c 0 - 477 481 469 473 462 465 c 0 - 451 452 441 439 431 426 c 2 - 404 390 l 2 - 399 383 396 376 395 367 c 0 - 394 353 392 339 392 325 c 0 - 391 309 393 293 393 276 c 0 - 392 246 391 216 391 186 c 0 - 391 150 389 114 391 79 c 0 - 393 50 407 34 436 24 c 0 - 441 23 445 22 450 21 c 0 - 453 20 456 18 456 14 c 2 - 456 -5 l 1 - 445 -5 435 -6 426 -5 c 0 - 413 -5 400 -3 388 -3 c 0 - 359 -3 330 -2 301 -3 c 0x5e - 289 -3 278 -5 267 -7 c 0 - 264 -7 262 -7 259 -6 c 2 - 259 16 l 2 - 259 25 260 24 267 27 c 0 - 277 29 286 33 295 37 c 0 - 300 39 305 43 309 46 c 0 - 314 51 318 57 319 65 c 0xac - 319 79 320 93 321 106 c 0 - 322 123 322 140 323 157 c 0 - 324 187 326 218 327 248 c 0 - 329 280 330 312 326 344 c 1 - 326 347 l 2 - 329 367 321 383 311 399 c 0 - 304 409 297 418 290 427 c 0 - 280 441 271 454 262 467 c 0 - 254 478 247 488 239 498 c 0 - 234 505 230 512 225 519 c 2 - 210 537 l 2 - 206 543 201 548 197 555 c 0 - 187 573 175 590 161 605 c 0 - 152 616 144 628 134 639 c 0 - 116 660 97 680 74 697 c 0 - 62 706 49 709 35 712 c 0 - 33 712 32 713 30 713 c 1 - 30 740 l 1 - 32 740 32 741 33 741 c 0 - 51 741 68 740 86 740 c 0 - 102 740 118 740 133 741 c 2 - 167 741 l 1 - 198 741 l 1 - 214 741 l 1x6c -EndSplineSet -Kerns2: 92 -241 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -290 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -232 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -326 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -335 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -317 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -295 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -241 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -237 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -267 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -299 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -276 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -237 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -259 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -130 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -157 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -290 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -254 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -138 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -259 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -224 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -281 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -273 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -264 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -170 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -299 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -113 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -128 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -219 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -113 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -102 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -193 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" Y1 -EndChar - -StartChar: Z -Encoding: 90 90 61 -Width: 671 -GlyphClass: 2 -Flags: MW -HStem: -6 55 -3 48<472.5 490> -1 50 707 37<354 375.5> -VStem: 619 21<125 125> -LayerCount: 2 -Fore -SplineSet -619 125 m 1x98 - 635 125 l 2 - 640 124 641 123 640 118 c 0 - 638 103 636 89 632 75 c 0 - 626 54 621 32 618 10 c 0 - 617 5 614 2 610 0 c 0 - 602 -4 593 -6 584 -6 c 0x98 - 546 -5 509 -3 471 -3 c 0 - 439 -2 406 -1 374 -1 c 0 - 351 -2 328 -2 305 -3 c 2x38 - 203 -6 l 2 - 159 -7 115 -7 72 -7 c 0 - 66 -7 60 -8 54 -8 c 0 - 47 -9 43 -6 43 1 c 0 - 42 4 42 7 42 10 c 0 - 41 18 44 24 51 28 c 0 - 62 35 70 43 77 54 c 0 - 83 64 90 73 97 83 c 0 - 114 109 130 136 147 161 c 0 - 166 189 186 216 204 244 c 0 - 218 265 232 286 245 308 c 0 - 253 322 260 336 269 348 c 0 - 289 376 308 405 329 432 c 0 - 346 453 360 476 375 498 c 0 - 387 516 400 534 412 553 c 0 - 424 572 434 591 445 610 c 0 - 455 627 465 644 475 662 c 0 - 477 666 480 670 482 675 c 0 - 486 685 481 703 465 703 c 0 - 453 704 441 705 430 705 c 0 - 408 706 386 707 365 707 c 0 - 343 707 322 706 300 705 c 0 - 272 705 244 705 216 703 c 0 - 195 703 175 701 155 699 c 0 - 147 698 138 698 129 698 c 0 - 114 696 100 690 89 679 c 0 - 76 665 66 648 61 629 c 0 - 60 628 60 628 59 626 c 0 - 50 627 40 629 30 630 c 1 - 31 635 31 638 32 642 c 0 - 36 659 39 677 43 695 c 0 - 44 702 45 710 45 717 c 0 - 46 723 47 727 53 730 c 0 - 62 735 71 737 81 737 c 0 - 119 738 156 739 194 740 c 0 - 207 741 219 741 232 741 c 0 - 264 742 295 744 327 744 c 0 - 358 745 389 743 420 744 c 0 - 447 744 473 744 500 742 c 0 - 527 740 554 740 582 739 c 0 - 585 739 586 738 587 735 c 0 - 589 726 591 717 592 708 c 0 - 592 706 590 703 589 702 c 0 - 579 698 574 690 568 680 c 0 - 559 663 548 647 538 630 c 0 - 525 609 512 587 499 566 c 0 - 484 541 468 516 452 492 c 0 - 438 469 424 446 409 424 c 0 - 373 369 337 314 300 260 c 0 - 279 229 257 199 234 168 c 0 - 211 137 191 103 175 68 c 0 - 173 64 172 59 174 55 c 2 - 174 55 174 54 175 54 c 0 - 206 53 236 51 267 49 c 2 - 270 49 l 2x98 - 297 49 324 48 352 47 c 0 - 400 46 448 45 497 45 c 0x58 - 510 44 523 46 536 47 c 0 - 540 47 544 48 548 48 c 0 - 572 47 589 58 600 80 c 0 - 606 91 610 103 615 114 c 0 - 617 117 618 121 619 125 c 1x98 -EndSplineSet -Kerns2: 92 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" Z1 -EndChar - -StartChar: bracketleft -Encoding: 91 91 62 -Width: 171 -GlyphClass: 2 -Flags: MW -HStem: -128 41<84 153.5> 846 39<33 136> -VStem: 31 56 34 49<199.5 325.5> -LayerCount: 2 -Fore -SplineSet -84 -128 m 1xe0 - 34 -128 l 2 - 26 -128 24 -126 23 -118 c 0 - 22 -115 21 -112 21 -109 c 0xe0 - 20 -102 20 -96 27 -92 c 0 - 33 -88 35 -81 35 -74 c 0 - 36 -37 36 0 37 38 c 0 - 39 69 37 100 35 132 c 0 - 34 159 34 186 34 213 c 0xd0 - 34 273 36 333 33 393 c 0 - 29 523 32 653 31 783 c 0 - 31 795 29 807 28 819 c 0 - 27 828 22 836 15 841 c 0 - 11 844 9 848 11 853 c 0 - 13 860 14 866 17 873 c 0 - 20 880 25 885 33 885 c 0 - 59 884 83 884 109 885 c 0 - 119 885 129 886 140 887 c 0 - 154 889 156 887 155 873 c 0 - 155 867 155 861 154 855 c 0 - 154 848 153 847 146 847 c 0 - 142 846 138 846 134 846 c 0 - 123 846 111 845 100 844 c 0 - 94 844 91 842 89 836 c 2 - 89 832 l 2 - 88 808 88 784 87 760 c 2 - 87 634 l 2xe0 - 87 597 85 560 85 523 c 0 - 84 444 83 365 83 286 c 0xd0 - 83 249 84 212 85 175 c 0 - 86 129 87 83 87 37 c 0 - 88 4 87 -29 87 -62 c 2 - 87 -73 l 2 - 88 -82 93 -86 101 -86 c 0 - 116 -87 132 -87 147 -87 c 0 - 160 -87 160 -87 160 -100 c 0 - 161 -106 160 -111 161 -117 c 0 - 161 -122 159 -124 154 -125 c 0 - 147 -126 139 -127 132 -128 c 2 - 84 -128 l 1xe0 -EndSplineSet -EndChar - -StartChar: backslash -Encoding: 92 92 63 -Width: 218 -GlyphClass: 2 -Flags: MW -HStem: -66 645<26 182 26 171 26 182 26 197> -VStem: 10 197 -LayerCount: 2 -Fore -SplineSet -182 -66 m 1 - 171 -66 l 2 - 158 -65 151 -60 148 -47 c 0 - 135 14 123 76 109 137 c 0 - 94 207 79 276 63 346 c 0 - 51 400 38 453 25 507 c 0 - 20 525 15 544 11 562 c 0 - 8 575 13 580 26 579 c 0 - 33 579 40 578 47 578 c 0 - 55 577 57 576 59 569 c 0 - 69 530 80 490 89 451 c 0 - 103 387 116 323 133 260 c 0 - 158 164 178 66 201 -30 c 0 - 203 -38 204 -46 207 -53 c 0 - 209 -61 205 -66 197 -66 c 0 - 192 -65 187 -66 182 -66 c 1 - 182 -66 l 1 -EndSplineSet -EndChar - -StartChar: bracketright -Encoding: 93 93 64 -Width: 171 -GlyphClass: 2 -Flags: MW -HStem: -122 41<35 58 58 70 18 139 35 35> 850 41 -VStem: 87 53<462.5 471 471 532.5> -LayerCount: 2 -Fore -SplineSet -83 15 m 1 - 84 59 84 102 85 145 c 0 - 85 169 86 192 86 215 c 0 - 86 314 87 413 87 512 c 0 - 87 553 85 594 84 634 c 0 - 83 669 84 703 83 737 c 0 - 83 771 82 804 82 837 c 0 - 81 847 78 850 68 850 c 0 - 54 851 41 852 27 853 c 0 - 17 853 17 853 17 862 c 0 - 16 869 16 875 15 881 c 0 - 14 892 17 895 28 893 c 0 - 58 889 89 891 119 891 c 0 - 125 890 131 890 137 891 c 0 - 145 891 151 887 154 880 c 0 - 156 873 158 866 160 858 c 0 - 161 855 161 851 157 848 c 0 - 145 839 141 826 141 812 c 0 - 140 785 140 758 140 732 c 2 - 140 471 l 2 - 140 436 137 401 137 366 c 2 - 137 166 l 2 - 137 142 135 119 134 95 c 0 - 133 76 134 57 134 38 c 2 - 134 -52 l 2 - 134 -59 135 -66 136 -73 c 0 - 137 -79 141 -84 146 -88 c 0 - 149 -90 151 -93 150 -97 c 0 - 150 -103 149 -109 148 -115 c 0 - 147 -119 144 -122 139 -122 c 2 - 35 -122 l 2 - 29 -121 22 -120 15 -119 c 0 - 12 -118 10 -116 10 -112 c 2 - 10 -89 l 2 - 10 -82 12 -81 18 -81 c 2 - 58 -81 l 1 - 70 -81 l 2 - 77 -80 82 -75 83 -68 c 0 - 84 -65 84 -62 84 -59 c 2 - 84 15 l 1 - 83 15 l 1 -EndSplineSet -EndChar - -StartChar: asciicircum -Encoding: 94 94 65 -Width: 232 -GlyphClass: 2 -Flags: MW -HStem: 390 38 -VStem: 10 211 -LayerCount: 2 -Fore -SplineSet -10 326 m 1 - 12 329 14 331 15 333 c 0 - 40 360 65 388 91 415 c 0 - 95 420 100 424 106 427 c 0 - 109 429 114 430 118 430 c 0 - 126 430 134 428 143 428 c 0 - 146 428 148 426 150 424 c 0 - 159 413 169 402 178 391 c 2 - 199 364 l 2 - 206 355 212 346 219 337 c 0 - 223 332 221 329 215 328 c 0 - 205 327 195 326 186 325 c 0 - 182 325 179 327 176 329 c 0 - 166 341 157 352 147 364 c 0 - 141 371 136 379 130 386 c 0 - 126 392 122 392 117 386 c 0 - 114 382 111 378 107 375 c 0 - 93 362 79 348 65 335 c 0 - 59 328 51 325 42 325 c 0 - 33 324 23 325 14 325 c 0 - 13 325 12 326 10 326 c 1 -EndSplineSet -EndChar - -StartChar: grave -Encoding: 96 96 66 -Width: 129 -GlyphClass: 2 -Flags: MW -HStem: 433 89 -VStem: 11 107 -LayerCount: 2 -Fore -SplineSet -118 465 m 0 - 116 454 112 444 105 435 c 0 - 104 434 101 433 99 433 c 0 - 97 434 94 435 93 436 c 0 - 78 445 64 454 50 462 c 0 - 41 468 31 473 21 478 c 0 - 10 483 8 491 13 500 c 0 - 15 504 16 509 18 513 c 0 - 22 523 30 525 39 520 c 0 - 62 506 84 492 106 479 c 0 - 108 478 109 476 111 476 c 0 - 117 474 119 470 118 465 c 0 -EndSplineSet -EndChar - -StartChar: a -Encoding: 97 97 67 -Width: 512 -GlyphClass: 2 -Flags: MW -HStem: -14 49 -7 36<184 248> 288 52 -VStem: 20 51 338 48<188 195.5> -LayerCount: 2 -Fore -SplineSet -341 28 m 1xb8 - 317 16 l 2 - 311 13 305 10 299 8 c 0xb8 - 284 3 270 -2 254 -5 c 0 - 242 -8 228 -7 215 -7 c 0 - 205 -7 195 -8 184 -7 c 0 - 166 -4 146 -2 128 4 c 0 - 111 10 93 18 80 32 c 2 - 76 36 l 1x78 - 50 56 36 84 23 113 c 0 - 21 116 20 120 20 124 c 0 - 17 144 18 164 23 184 c 0 - 29 208 37 232 50 254 c 0 - 56 264 65 274 74 283 c 0 - 83 292 94 300 104 307 c 0 - 113 313 124 317 134 321 c 0 - 139 324 145 326 152 327 c 0 - 158 329 164 329 170 330 c 0 - 181 333 192 337 204 338 c 0 - 223 340 242 343 261 338 c 2 - 306 329 l 2 - 312 328 316 326 321 322 c 0 - 325 319 330 316 335 313 c 1 - 356 328 l 2 - 368 336 371 335 383 326 c 0 - 388 322 390 318 388 310 c 0 - 386 301 386 290 386 280 c 0 - 386 244 384 209 386 174 c 0 - 387 138 391 103 394 68 c 0 - 395 56 402 46 411 39 c 0 - 421 31 436 34 446 44 c 0 - 455 53 465 62 469 75 c 0 - 470 78 472 81 474 84 c 0 - 483 82 490 78 497 73 c 0 - 499 72 500 67 499 65 c 0 - 489 45 482 24 467 7 c 0 - 450 -12 430 -18 405 -14 c 0 - 391 -12 378 -7 365 0 c 0 - 361 2 358 5 356 8 c 0 - 351 14 346 21 341 28 c 1xb8 -343 130 m 0 - 342 138 342 147 341 156 c 0 - 340 167 339 178 338 188 c 0 - 338 203 337 218 335 233 c 0 - 335 236 333 240 331 244 c 0 - 327 254 319 262 310 268 c 0 - 303 273 296 278 288 280 c 0 - 272 286 255 289 238 290 c 0 - 222 291 205 292 189 287 c 0 - 187 286 184 286 182 286 c 0 - 180 286 178 286 176 285 c 0 - 168 282 159 281 152 275 c 0 - 151 274 149 274 148 274 c 0 - 129 269 115 259 102 246 c 0 - 99 243 96 241 94 238 c 0 - 87 224 80 211 76 196 c 0 - 69 169 67 142 80 115 c 0 - 83 109 88 105 91 99 c 0 - 100 81 116 72 132 62 c 0 - 149 53 166 46 185 41 c 0 - 193 38 202 37 210 35 c 0 - 222 31 235 31 247 29 c 0 - 249 29 251 29 253 30 c 0 - 265 34 277 36 288 44 c 0 - 293 49 300 53 306 57 c 0 - 318 64 327 74 338 83 c 0 - 338 84 339 86 340 87 c 0x78 - 341 101 342 115 343 130 c 0 -EndSplineSet -Kerns2: 166 -95 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 164 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -59 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 157 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 153 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 152 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 151 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -102 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -116 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -157 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -192 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -116 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" a1 a2 a3 a4 -EndChar - -StartChar: b -Encoding: 98 98 68 -Width: 406 -GlyphClass: 2 -Flags: MW -HStem: -3 55 297 50 586 52 -VStem: 72 60 77 52<109.5 145> 307 71 -LayerCount: 2 -Fore -SplineSet -307 157 m 0xf4 - 306 179 302 201 298 222 c 0 - 295 240 285 255 277 271 c 0 - 276 274 273 276 270 279 c 0 - 256 291 237 293 220 298 c 0 - 219 298 218 297 217 297 c 0 - 197 297 178 290 159 281 c 0 - 155 279 151 277 148 274 c 0 - 137 266 130 255 131 241 c 2 - 131 232 l 2 - 130 192 129 152 129 112 c 0 - 129 107 130 100 132 95 c 0 - 139 84 147 72 159 65 c 0 - 179 54 202 49 225 52 c 0 - 261 57 297 85 304 129 c 0 - 305 138 306 148 307 157 c 0xf4 -42 586 m 1 - 39 595 37 603 33 610 c 1 - 36 613 l 1 - 55 620 74 628 93 635 c 0 - 103 638 113 639 125 638 c 1 - 125 631 126 625 127 618 c 0 - 127 593 126 568 127 542 c 0 - 128 516 128 490 131 464 c 0 - 134 435 132 356 132 327 c 2 - 132 320 l 1 - 132 318 l 1 - 134 319 136 320 137 322 c 0 - 159 335 182 342 207 347 c 0xf4 - 227 349 246 349 262 341 c 0 - 279 334 296 327 310 313 c 0 - 311 312 313 311 315 309 c 0 - 321 306 326 301 328 293 c 0 - 329 291 332 289 335 285 c 0 - 340 280 346 274 350 268 c 0 - 355 258 359 247 362 237 c 0 - 366 226 368 215 371 205 c 0 - 372 199 374 195 374 191 c 0 - 376 173 377 155 378 139 c 0 - 378 108 368 82 349 58 c 2 - 346 55 l 1 - 329 29 308 7 279 3 c 0 - 272 2 246 -4 205 -4 c 0 - 204 -4 202 -3 200 -3 c 2 - 180 -3 l 2 - 157 -3 133 1 111 13 c 0 - 105 17 99 18 92 16 c 0 - 84 11 76 8 67 3 c 0 - 56 0 46 -5 34 -4 c 0 - 29 -4 26 -2 25 3 c 0 - 24 9 22 13 20 19 c 1 - 25 23 31 28 37 31 c 0 - 50 40 60 53 71 66 c 0 - 74 71 75 77 75 83 c 0 - 76 104 77 125 77 145 c 0 - 76 196 76 246 75 296 c 0xec - 74 355 73 462 72 520 c 0 - 72 535 71 549 71 563 c 0 - 71 581 63 587 48 586 c 2 - 42 586 l 1 -EndSplineSet -Kerns2: 162 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -258 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -160 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -232 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -148 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 34 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" b1 b2 -EndChar - -StartChar: c -Encoding: 99 99 69 -Width: 384 -GlyphClass: 2 -Flags: MW -HStem: -7 46 308 50 -VStem: 5 54 308 31 -LayerCount: 2 -Fore -SplineSet -339 328 m 1 - 342 309 341 251 338 240 c 1 - 330 236 321 236 311 236 c 1 - 310 240 308 243 308 246 c 0 - 306 255 304 263 302 272 c 0 - 298 287 288 296 273 300 c 0 - 264 303 253 303 243 305 c 0 - 207 312 172 308 137 296 c 0 - 124 292 113 285 103 276 c 0 - 98 271 93 266 89 261 c 0 - 70 242 60 219 57 193 c 0 - 55 172 56 151 61 130 c 0 - 63 123 67 116 71 109 c 0 - 79 95 86 82 100 73 c 0 - 106 68 114 64 121 60 c 0 - 130 56 139 53 148 49 c 0 - 169 40 192 37 215 39 c 0 - 238 41 260 45 281 56 c 0 - 297 64 312 74 328 83 c 0 - 331 85 334 87 338 88 c 0 - 345 91 350 88 352 80 c 0 - 354 69 354 59 346 50 c 0 - 319 21 289 0 249 -4 c 0 - 221 -7 192 -8 164 -4 c 0 - 138 -1 113 6 89 17 c 0 - 72 26 57 38 44 52 c 0 - 38 59 31 66 26 73 c 0 - 14 91 7 111 5 133 c 0 - 3 159 4 185 10 210 c 0 - 17 243 32 271 58 293 c 0 - 67 300 75 306 83 314 c 0 - 96 326 112 335 128 342 c 0 - 167 360 207 361 248 355 c 0 - 262 352 277 349 290 342 c 0 - 301 337 313 335 325 331 c 0 - 329 330 334 329 339 328 c 1 -EndSplineSet -Kerns2: 158 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 157 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 154 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 147 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -147 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -147 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -197 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" c1 c2 -EndChar - -StartChar: d -Encoding: 100 100 70 -Width: 490 -GlyphClass: 2 -Flags: MW -HStem: -11 21G -7 40 313 52 -VStem: 5 59 337 55 -LayerCount: 2 -Fore -SplineSet -286 594 m 1x78 - 277 622 282 624 303 632 c 0 - 330 642 358 651 387 661 c 0 - 396 664 404 665 411 656 c 0 - 414 653 417 651 421 647 c 1 - 418 644 417 641 414 638 c 0 - 402 624 397 609 396 590 c 0 - 391 499 392 407 392 315 c 2 - 392 178 l 1 - 392 94 l 2 - 392 78 395 63 400 48 c 0 - 403 36 412 34 421 38 c 0 - 428 41 435 46 443 50 c 1 - 449 43 455 36 460 29 c 1xb8 - 430 -23 363 -19 334 13 c 0 - 332 12 330 12 329 12 c 0 - 306 0 282 -5 257 -6 c 0 - 231 -7 205 -8 179 -7 c 0 - 161 -6 142 -5 124 -1 c 0 - 94 6 66 18 46 43 c 0 - 38 52 32 62 27 72 c 0 - 5 117 0 163 8 212 c 0 - 12 243 26 268 46 292 c 0 - 70 319 99 336 131 349 c 0 - 147 356 164 358 180 363 c 0 - 196 367 212 366 228 365 c 0 - 261 362 294 358 326 351 c 1 - 333 351 l 1 - 336 358 336 365 336 372 c 2 - 336 407 l 2 - 336 451 337 496 337 540 c 0 - 337 556 334 571 326 585 c 0 - 320 595 313 599 302 597 c 0 - 297 597 291 596 286 594 c 1x78 -327 190 m 2 - 327 228 l 2 - 328 245 328 262 328 279 c 0 - 328 286 325 291 319 293 c 0 - 307 297 294 301 282 304 c 0 - 273 307 264 309 255 310 c 0 - 245 312 236 314 226 313 c 0 - 212 313 198 311 184 308 c 0 - 176 307 169 305 162 302 c 0 - 148 295 134 288 120 280 c 0 - 97 267 82 246 73 221 c 0 - 61 189 62 155 72 122 c 0 - 76 109 83 98 90 86 c 0 - 93 80 99 76 104 72 c 0 - 108 68 114 65 118 61 c 0 - 145 39 177 31 211 33 c 0 - 227 33 243 34 259 35 c 0 - 273 36 287 39 299 46 c 0 - 314 54 323 66 325 82 c 0 - 326 93 327 103 327 113 c 0 - 328 139 327 165 327 190 c 2 -EndSplineSet -Kerns2: 165 -59 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 164 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 163 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 161 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 154 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 138 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -125 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 15 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" d1 d2 -EndChar - -StartChar: e -Encoding: 101 101 71 -Width: 397 -GlyphClass: 2 -Flags: MW -HStem: -9 21G 217 47<131.5 202.5> 300 51 -VStem: 10 58 -LayerCount: 2 -Fore -SplineSet -347 226 m 1 - 289 217 231 217 174 217 c 0 - 152 218 130 218 108 218 c 0 - 102 218 96 218 91 217 c 0 - 82 216 77 211 75 203 c 0 - 66 172 65 155 75 125 c 0 - 82 106 92 88 110 75 c 0 - 125 64 139 54 156 46 c 0 - 173 38 191 34 210 35 c 0 - 225 36 241 36 256 37 c 0 - 272 39 288 44 302 52 c 0 - 317 61 332 71 348 80 c 1 - 356 75 361 66 367 57 c 1 - 355 44 343 32 328 23 c 0 - 315 15 300 7 285 1 c 0 - 273 -4 261 -7 247 -9 c 0 - 222 -12 196 -12 171 -6 c 0 - 153 -2 136 1 120 7 c 0 - 98 14 76 23 57 37 c 0 - 55 39 53 40 52 42 c 0 - 25 71 9 103 10 143 c 0 - 11 170 15 195 24 220 c 0 - 35 249 52 274 75 294 c 0 - 91 308 108 320 126 330 c 0 - 145 340 164 347 184 349 c 0 - 203 350 221 352 239 351 c 0 - 272 351 301 341 325 319 c 0 - 336 310 344 298 347 284 c 0 - 349 273 351 263 353 252 c 0 - 354 243 353 233 347 226 c 1 -126 265 m 1 - 129 265 131 264 132 264 c 0 - 165 265 197 265 229 266 c 0 - 247 267 266 269 284 270 c 0 - 286 271 288 271 290 272 c 0 - 287 279 282 283 275 286 c 0 - 256 294 236 298 215 300 c 0 - 182 302 154 290 129 270 c 0 - 128 269 128 267 126 265 c 1 -EndSplineSet -Kerns2: 164 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 157 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 144 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 141 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -120 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -187 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -187 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -94 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 15 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" e1 e2 -EndChar - -StartChar: f -Encoding: 102 102 72 -Width: 275 -GlyphClass: 2 -Flags: MW -HStem: -4 31 -3 21G<60 60> 300 38 303 46 626 44 -VStem: 93 63<108 160> 104 58<421.5 488> 353 42 -LayerCount: 2 -Fore -SplineSet -268 670 m 2x9b - 274 668 280 666 287 664 c 0 - 299 662 312 661 324 657 c 0 - 347 649 367 637 379 614 c 0 - 387 600 394 585 395 568 c 0 - 396 537 391 508 370 483 c 0 - 365 479 361 474 356 470 c 0 - 350 464 342 462 333 463 c 0 - 324 464 319 471 323 479 c 0 - 324 482 327 485 329 487 c 0 - 358 517 359 557 344 590 c 0 - 339 602 328 609 317 614 c 0 - 308 617 300 620 291 623 c 0 - 255 631 223 626 196 600 c 0 - 189 593 184 585 180 576 c 0 - 169 555 163 532 163 509 c 0 - 162 483 162 458 162 433 c 0 - 162 410 163 387 163 364 c 0 - 163 359 164 355 164 349 c 1 - 170 347 175 346 180 345 c 0 - 197 344 213 344 230 338 c 1 - 233 328 231 317 231 306 c 0 - 228 302 224 303 220 303 c 0 - 205 303 190 303 175 302 c 0x9b - 165 301 163 299 161 288 c 0 - 157 269 157 249 156 229 c 2 - 156 160 l 2 - 156 145 154 131 154 116 c 0 - 154 94 155 72 156 51 c 0 - 157 34 164 27 181 27 c 2 - 197 27 l 1 - 200 17 200 9 199 -1 c 1 - 177 -7 153 -4 130 -4 c 0 - 107 -5 84 -6 60 -3 c 1x9d - 60 15 l 1 - 65 18 71 21 78 24 c 0 - 89 29 95 37 94 50 c 0 - 93 70 94 89 93 108 c 0 - 93 142 95 176 98 209 c 2 - 101 278 l 2 - 101 285 100 291 100 298 c 1 - 77 307 55 299 33 300 c 1 - 30 312 30 323 31 336 c 1 - 36 337 40 339 45 340 c 0x6d - 58 342 72 344 85 345 c 0 - 100 347 102 350 102 364 c 0xab - 103 402 103 441 104 479 c 0 - 104 497 105 514 107 531 c 0 - 111 559 121 585 135 608 c 0 - 150 632 172 649 199 658 c 0 - 210 662 220 664 230 667 c 0 - 233 668 236 669 238 670 c 2 - 268 670 l 2x9b -EndSplineSet -Kerns2: 164 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 160 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 157 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 144 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 119 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 113 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 111 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 90 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 143 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 80 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 116 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 117 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 89 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 98 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 99 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 94 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 89 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 97 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 86 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 103 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 15 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 95 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" f1 f2 -EndChar - -StartChar: g -Encoding: 103 103 73 -Width: 413 -GlyphClass: 2 -Flags: MW -HStem: -299 42 -51 36 306 43 418 30 -VStem: 2 69 24 56 66 67 275 49 323 58 -LayerCount: 2 -Fore -SplineSet -87 -37 m 1xf880 - 82 -29 76 -21 72 -14 c 0 - 63 4 64 22 71 40 c 0 - 76 53 84 65 91 77 c 1 - 76 90 61 103 45 116 c 0xf280 - 36 122 31 131 29 141 c 0 - 25 166 20 192 24 218 c 0 - 26 234 31 250 40 263 c 0 - 51 279 64 294 80 305 c 0 - 90 312 101 319 112 325 c 0 - 121 330 130 335 140 339 c 0 - 151 344 163 349 176 349 c 0 - 194 349 211 354 229 352 c 0 - 238 351 247 350 255 349 c 0 - 261 349 265 351 268 355 c 0 - 281 372 277 400 260 413 c 0 - 253 418 245 421 237 418 c 0 - 230 416 223 413 216 411 c 2 - 207 408 l 1 - 202 413 202 418 205 424 c 0 - 209 431 215 437 223 440 c 0 - 245 449 267 450 290 445 c 0 - 298 443 305 439 309 432 c 0 - 317 422 322 411 323 397 c 0 - 323 393 323 389 324 384 c 0 - 325 368 326 351 314 337 c 1 - 317 335 319 333 321 332 c 0xf5 - 356 315 372 285 378 249 c 0 - 380 234 380 219 381 204 c 0 - 381 190 377 178 372 166 c 0 - 361 141 343 121 323 103 c 0 - 317 97 309 93 302 90 c 0 - 293 85 283 82 274 77 c 0 - 261 70 247 67 232 66 c 0 - 224 65 217 63 209 62 c 0 - 191 60 174 59 156 62 c 0 - 149 63 144 60 139 54 c 0 - 128 38 131 14 145 1 c 0 - 151 -4 157 -8 163 -12 c 0 - 165 -13 169 -13 171 -13 c 0xf280 - 203 -14 234 -14 266 -15 c 0 - 284 -16 302 -17 320 -22 c 0 - 323 -23 326 -23 329 -25 c 0 - 343 -34 357 -42 371 -51 c 0 - 377 -55 384 -58 389 -64 c 0 - 397 -73 405 -84 410 -95 c 0 - 424 -128 421 -161 406 -193 c 0 - 401 -204 391 -214 381 -223 c 0 - 373 -231 363 -239 353 -245 c 0 - 328 -259 302 -273 277 -285 c 0 - 261 -293 243 -296 226 -297 c 0 - 210 -297 195 -300 179 -300 c 0 - 161 -299 142 -299 124 -295 c 0 - 102 -291 81 -283 62 -271 c 0 - 57 -269 54 -265 50 -262 c 0 - 33 -245 19 -227 7 -205 c 0 - -1 -190 -2 -174 2 -157 c 0 - 4 -145 8 -134 12 -122 c 0 - 21 -97 37 -77 57 -61 c 2 - 87 -37 l 1xf880 -182 -256 m 0 - 191 -254 200 -253 210 -252 c 0 - 217 -251 225 -249 232 -247 c 0 - 248 -242 264 -239 279 -231 c 0 - 286 -226 294 -222 302 -219 c 0 - 317 -212 329 -200 343 -191 c 2 - 346 -188 l 1 - 352 -176 358 -165 363 -154 c 0 - 370 -135 360 -107 344 -96 c 0 - 328 -86 312 -76 294 -70 c 0 - 277 -64 260 -60 243 -59 c 0 - 219 -57 195 -54 170 -51 c 0 - 160 -50 149 -50 139 -55 c 0 - 113 -66 97 -87 83 -111 c 0 - 77 -123 73 -136 71 -151 c 0 - 69 -178 82 -200 97 -220 c 0 - 101 -226 108 -231 114 -235 c 0 - 135 -246 157 -256 182 -256 c 0 -203 306 m 0xf480 - 173 307 149 298 126 284 c 0 - 116 278 109 271 104 261 c 0 - 99 250 95 239 89 229 c 0 - 77 210 79 189 83 168 c 0 - 83 165 85 160 87 158 c 0 - 94 148 101 138 113 132 c 0 - 126 127 137 119 151 114 c 0 - 167 109 184 105 200 103 c 0 - 228 101 254 108 278 123 c 0 - 296 134 309 148 316 167 c 0 - 322 187 327 208 317 228 c 0 - 316 231 316 234 314 237 c 0 - 307 253 301 271 285 282 c 0 - 275 288 265 296 254 299 c 0 - 237 302 220 308 203 306 c 0xf480 -EndSplineSet -Kerns2: 164 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 144 6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 351 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -161 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -143 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -183 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -192 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -130 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -60 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" g1 g2 -EndChar - -StartChar: h -Encoding: 104 104 74 -Width: 470 -GlyphClass: 2 -Flags: MW -HStem: -4 24 0 20<179 183> 3 26<307 339.5> 301 49 611 47 -VStem: 90 48 349 57<158 165 158 240 158 240> -LayerCount: 2 -Fore -SplineSet -438 29 m 0x3e - 439 27 439 25 439 24 c 0 - 441 10 435 4 421 5 c 0 - 388 5 356 3 323 3 c 0 - 315 3 308 4 300 5 c 1 - 296 12 297 19 298 26 c 1 - 307 29 l 2 - 313 32 319 33 325 36 c 0 - 335 41 344 47 345 61 c 0 - 346 80 349 100 349 120 c 0x3e - 350 160 349 200 349 240 c 0 - 348 246 348 252 347 259 c 0 - 346 277 337 289 319 294 c 0 - 303 298 287 302 270 301 c 0 - 239 299 209 290 185 268 c 0 - 173 257 162 246 153 232 c 0 - 148 224 145 215 144 205 c 0 - 141 158 137 112 138 65 c 2 - 138 62 l 2 - 138 38 146 28 169 22 c 0 - 173 21 177 20 181 20 c 1 - 181 19 181 19 182 18 c 0 - 183 16 183 14 183 12 c 2 - 183 0 l 1 - 179 0 176 -2 172 -3 c 0 - 164 -4 155 -4 147 -4 c 2 - 48 -4 l 2x9e - 42 -4 36 -5 30 1 c 1x5e - 31 8 32 15 32 22 c 1 - 43 26 53 29 63 32 c 0 - 72 35 77 42 80 50 c 0 - 84 64 87 78 87 92 c 0x9e - 88 141 89 189 90 238 c 2 - 90 274 l 2 - 91 330 91 387 91 443 c 0 - 92 477 90 511 90 545 c 0 - 90 559 89 573 89 587 c 0 - 89 608 74 616 55 607 c 0 - 51 604 47 602 43 599 c 0 - 42 600 41 600 41 601 c 0 - 34 620 30 620 51 637 c 0 - 55 640 59 642 63 645 c 0 - 78 657 94 660 112 658 c 0 - 130 655 141 645 144 628 c 0 - 146 617 147 606 147 595 c 0 - 147 548 146 501 147 455 c 0 - 147 425 148 395 149 366 c 0 - 150 348 150 331 150 313 c 0 - 150 311 151 308 151 306 c 0 - 157 304 159 309 162 311 c 0 - 175 321 188 331 202 338 c 0 - 216 345 230 350 245 350 c 0 - 267 351 288 349 309 345 c 0 - 317 344 324 343 332 342 c 0 - 362 336 382 317 392 288 c 0 - 403 259 406 229 405 198 c 0 - 405 185 406 172 406 158 c 0 - 405 128 405 97 404 67 c 0 - 403 50 407 43 421 35 c 0 - 427 33 432 31 438 29 c 0x3e -EndSplineSet -Kerns2: 164 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -59 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 157 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 156 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 147 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 141 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -223 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -161 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -290 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -94 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -210 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" h1 h2 h3 -EndChar - -StartChar: i -Encoding: 105 105 75 -Width: 189 -GlyphClass: 2 -Flags: MW -HStem: -8 19 1 21G<157 157> -VStem: 78 54<181.5 195 158.5 203> 135 17 -LayerCount: 2 -Fore -SplineSet -31 -7 m 0xa0 - 30 -1 30 5 30 11 c 1 - 34 13 37 14 41 16 c 0 - 47 19 53 21 59 25 c 0 - 67 29 72 36 73 45 c 0 - 75 55 76 65 76 74 c 0xa0 - 77 117 78 160 78 203 c 0 - 79 225 77 248 76 270 c 0 - 76 273 76 276 75 279 c 0 - 71 293 65 298 50 296 c 0 - 45 295 40 294 34 292 c 1 - 33 295 33 298 33 300 c 2 - 33 316 l 1 - 45 324 58 329 71 333 c 0 - 85 337 99 341 112 344 c 0 - 115 345 119 346 122 347 c 0 - 132 347 137 343 136 333 c 0 - 136 327 135 322 134 316 c 0 - 134 310 133 305 133 300 c 0 - 133 258 132 216 132 174 c 0 - 132 143 131 111 131 79 c 0 - 131 71 131 62 130 53 c 0 - 129 38 137 29 149 24 c 0 - 153 22 156 21 159 20 c 2 - 159 3 l 1 - 157 1 l 2 - 154 0 152 -1 149 -1 c 0x60 - 112 -3 75 -6 37 -8 c 0 - 36 -8 34 -7 31 -7 c 0xa0 -152 482 m 2x50 - 154 463 144 453 126 447 c 0 - 109 442 92 436 74 437 c 0 - 62 437 58 440 58 452 c 0 - 57 471 65 484 85 488 c 0 - 101 491 115 499 130 504 c 0 - 132 504 134 505 135 506 c 0 - 145 508 151 503 152 493 c 2 - 152 482 l 2x50 -EndSplineSet -Kerns2: 161 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 147 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 63 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" i1 -EndChar - -StartChar: j -Encoding: 106 106 76 -Width: 210 -GlyphClass: 2 -Flags: MW -HStem: -264 49 -VStem: -298 42 79 100 102 53<241.5 255 242 260> -LayerCount: 2 -Fore -SplineSet --253 -82 m 1xd0 - -251 -88 -252 -94 -253 -101 c 0 - -254 -107 -255 -114 -256 -121 c 0 - -257 -138 -252 -153 -242 -167 c 0 - -236 -177 -226 -182 -217 -187 c 0 - -200 -196 -183 -204 -165 -211 c 0 - -160 -214 -153 -215 -147 -215 c 0 - -92 -218 -41 -207 8 -181 c 0 - 27 -171 41 -154 51 -135 c 0 - 72 -100 82 -62 88 -22 c 0 - 94 17 95 57 97 96 c 0 - 98 123 101 150 102 176 c 0 - 103 202 102 229 102 255 c 0 - 102 265 101 275 94 284 c 0 - 88 294 79 297 68 296 c 0 - 64 296 59 295 54 295 c 1 - 53 303 51 310 50 318 c 1 - 58 324 65 326 73 329 c 0 - 95 336 117 342 139 349 c 0 - 142 350 144 350 147 351 c 0 - 152 351 155 350 157 346 c 2 - 163 331 l 1 - 160 325 157 319 155 313 c 0 - 154 306 155 299 155 292 c 0 - 155 283 156 274 155 265 c 0 - 155 218 154 171 152 124 c 0 - 151 91 149 57 145 24 c 0 - 142 -7 141 -38 134 -69 c 0 - 131 -85 126 -101 117 -115 c 0 - 114 -121 111 -126 108 -132 c 0 - 95 -158 78 -181 58 -201 c 0 - 38 -222 15 -239 -12 -248 c 0 - -34 -255 -57 -259 -79 -261 c 0 - -96 -262 -113 -262 -129 -264 c 0 - -158 -266 -186 -259 -213 -248 c 0 - -222 -245 -231 -240 -239 -236 c 0 - -262 -224 -277 -205 -291 -185 c 0 - -295 -180 -297 -173 -298 -166 c 0 - -300 -140 -297 -116 -282 -93 c 0 - -275 -82 -267 -78 -253 -82 c 1xd0 -79 469 m 2xe0 - 77 480 83 487 93 492 c 0 - 100 495 107 499 115 502 c 0 - 127 506 140 509 153 513 c 0 - 155 514 157 515 160 515 c 0 - 168 516 173 514 176 506 c 0 - 182 491 181 470 160 463 c 0 - 144 457 128 451 112 447 c 0 - 108 445 102 445 98 445 c 0 - 84 445 80 449 79 462 c 2 - 79 469 l 2xe0 -EndSplineSet -Kerns2: 164 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 157 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 144 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -32 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" j1 -EndChar - -StartChar: k -Encoding: 107 107 77 -Width: 510 -GlyphClass: 2 -Flags: MW -HStem: -21 45 -2 21 308 26 -VStem: 74 52 88 51<493.5 577> 340 125 -LayerCount: 2 -Fore -SplineSet -32 613 m 1x68 - 41 617 48 620 55 623 c 0 - 77 632 99 640 122 649 c 0 - 135 654 143 649 144 634 c 2 - 144 619 l 2 - 141 582 140 545 139 507 c 0 - 139 480 138 454 136 427 c 0x68 - 134 383 131 338 129 294 c 0 - 127 259 125 224 124 189 c 0 - 123 178 123 166 123 154 c 0 - 123 147 125 141 129 135 c 0 - 134 132 139 134 144 137 c 0 - 154 143 164 148 174 155 c 0 - 190 167 205 179 221 192 c 2 - 242 210 l 2 - 256 222 270 234 285 245 c 0 - 303 259 321 272 339 286 c 0 - 342 288 345 293 348 297 c 1 - 344 301 l 2 - 343 302 341 303 340 304 c 2 - 340 329 l 1 - 351 334 363 334 374 333 c 0 - 399 332 424 331 450 334 c 2 - 464 334 l 1 - 465 325 466 317 467 308 c 1 - 460 307 455 306 450 305 c 0 - 426 301 405 290 387 273 c 0 - 370 258 353 242 333 229 c 0 - 322 222 312 213 303 204 c 0 - 289 192 276 180 262 168 c 0 - 242 152 222 136 202 119 c 0 - 199 116 195 113 190 109 c 1 - 194 106 197 104 201 102 c 0 - 226 90 251 77 278 69 c 0 - 300 62 320 51 341 43 c 0 - 363 34 385 26 409 24 c 0 - 421 23 432 25 443 29 c 2 - 458 35 l 2 - 461 36 464 37 468 37 c 0 - 472 38 475 37 478 33 c 0 - 480 30 480 24 476 20 c 0 - 466 8 454 -2 440 -9 c 0 - 425 -18 409 -22 391 -21 c 0 - 375 -20 360 -21 345 -15 c 0 - 337 -12 329 -8 321 -5 c 0 - 285 10 250 25 214 39 c 0 - 192 48 170 56 148 65 c 0 - 143 66 138 67 134 68 c 0 - 129 68 125 66 124 61 c 0 - 122 52 121 43 126 34 c 0xb4 - 131 27 136 22 145 21 c 0 - 149 20 153 20 158 19 c 1 - 161 13 160 7 160 0 c 1 - 117 -5 74 -6 31 -2 c 1 - 30 7 32 16 33 25 c 1 - 40 28 47 32 54 35 c 0 - 66 40 72 50 73 63 c 0 - 75 94 79 126 76 157 c 0 - 73 193 74 228 74 264 c 0 - 74 287 77 310 78 334 c 0 - 79 341 79 349 80 357 c 0x70 - 81 387 81 416 83 446 c 0 - 85 474 88 502 88 530 c 2 - 88 577 l 2 - 87 589 83 592 72 591 c 0 - 64 590 56 588 48 587 c 0 - 44 586 40 585 35 584 c 1 - 34 594 33 603 32 613 c 1x68 -EndSplineSet -Kerns2: 171 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 165 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 164 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 160 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 157 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 156 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 147 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 144 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -228 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -156 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -169 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -83 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" k1 k2 -EndChar - -StartChar: l -Encoding: 108 108 78 -Width: 218 -GlyphClass: 2 -Flags: MW -HStem: -6 15<34 34> 608 46 -VStem: 87 57 94 51<442 450> -LayerCount: 2 -Fore -SplineSet -188 12 m 1xe0 - 187 8 187 4 187 0 c 0 - 175 -3 44 -8 34 -6 c 0 - 33 -4 33 -2 33 0 c 0 - 33 3 34 6 34 9 c 0 - 38 11 42 12 46 14 c 0 - 73 23 85 38 86 67 c 0 - 87 95 86 123 87 151 c 0 - 88 191 90 230 91 269 c 0xe0 - 93 300 93 331 94 361 c 0 - 95 391 97 421 94 450 c 0 - 92 475 92 499 93 523 c 0 - 93 541 94 558 95 576 c 0 - 95 580 94 585 94 590 c 0 - 92 607 84 612 68 608 c 0 - 58 605 47 602 36 599 c 1 - 33 609 30 617 30 627 c 1 - 42 634 55 638 68 641 c 0 - 84 644 101 647 116 653 c 0 - 117 654 118 654 119 654 c 0 - 136 659 139 658 148 643 c 0 - 150 640 151 637 151 637 c 1 - 150 620 147 605 147 590 c 0 - 146 544 145 499 145 453 c 0 - 145 431 146 408 146 386 c 0 - 145 313 144 240 144 167 c 0xd0 - 143 134 142 102 142 69 c 0 - 142 62 142 54 144 47 c 0 - 149 32 161 22 175 16 c 0 - 179 15 182 14 188 12 c 1xe0 -EndSplineSet -Kerns2: 165 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 164 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 161 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 157 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 154 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -52 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -84 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -116 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -98 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" l1 -EndChar - -StartChar: m -Encoding: 109 109 79 -Width: 673 -GlyphClass: 2 -Flags: MW -HStem: -21 34 -5 16<257 257> -5 21 -1 19<167 167> 271 57 280 53<113 133> 281 47 -VStem: 73 53 80 53<225 280 260 280> 292 59<38.5 69> 518 60 -LayerCount: 2 -Fore -SplineSet -167 18 m 1x1960 - 167 -1 l 1 - 156 -1 l 2 - 128 0 101 0 73 -3 c 0 - 60 -5 46 -6 32 -3 c 1 - 32 18 l 1 - 37 19 41 21 46 22 c 0 - 50 24 54 25 58 27 c 0 - 67 32 72 39 73 50 c 0 - 74 92 75 133 76 174 c 0 - 77 191 79 208 80 225 c 2 - 80 260 l 2 - 80 264 80 267 79 270 c 0 - 77 279 72 282 63 280 c 0 - 57 279 51 277 45 274 c 0 - 41 273 37 272 33 270 c 1 - 30 278 31 286 31 294 c 0 - 31 298 34 300 38 302 c 0 - 45 305 53 308 61 311 c 0 - 72 316 83 322 93 328 c 0x1560 - 101 332 109 333 117 333 c 0 - 127 332 133 327 133 317 c 0 - 134 305 133 293 133 280 c 2 - 133 263 l 1 - 140 262 144 266 148 269 c 2x44e0 - 193 299 l 2 - 216 314 242 322 269 328 c 0 - 290 332 311 328 330 318 c 0 - 336 314 341 309 344 302 c 0 - 348 292 351 281 355 269 c 1 - 360 269 364 273 368 276 c 0 - 379 285 389 294 401 301 c 0x48e0 - 413 308 425 313 437 317 c 0 - 450 322 462 326 475 329 c 0 - 495 334 516 336 537 328 c 0 - 552 322 565 311 573 296 c 0 - 576 291 578 284 578 278 c 0 - 580 247 579 217 576 186 c 0 - 574 160 568 134 569 108 c 0 - 570 95 569 81 569 68 c 0 - 570 56 573 43 579 32 c 0x8360 - 587 14 601 9 620 16 c 0 - 634 20 646 26 654 39 c 1 - 662 37 668 33 672 25 c 0 - 670 22 667 18 664 14 c 0x2360 - 653 2 640 -6 627 -15 c 0 - 625 -16 622 -17 619 -18 c 0 - 601 -23 582 -25 563 -21 c 0 - 556 -20 550 -15 544 -10 c 0 - 527 7 517 28 518 52 c 0x8360 - 518 95 519 137 520 179 c 0 - 521 199 521 218 521 238 c 0 - 521 253 514 265 504 276 c 0 - 499 281 493 282 487 281 c 0 - 479 281 471 280 464 278 c 0 - 443 272 425 262 409 248 c 0 - 394 234 381 219 368 204 c 0 - 360 193 356 181 355 167 c 0 - 354 145 353 124 352 102 c 0 - 351 87 351 72 351 57 c 2 - 351 46 l 2 - 351 31 360 24 373 19 c 0 - 377 18 380 17 385 16 c 1x2360 - 385 -1 l 1 - 355 -6 274 -8 257 -5 c 1 - 257 11 l 1 - 263 13 268 15 273 17 c 0 - 284 21 290 29 291 40 c 0 - 292 50 292 59 292 69 c 0x4360 - 291 129 290 190 289 250 c 0 - 288 254 288 259 287 263 c 0 - 286 269 283 272 277 271 c 0 - 271 271 265 270 260 268 c 0 - 252 265 244 262 237 258 c 0 - 227 253 217 246 205 245 c 0 - 203 245 200 244 198 243 c 0 - 172 228 149 210 133 185 c 0 - 131 181 129 175 129 170 c 0 - 127 150 124 129 126 109 c 0 - 128 90 129 71 129 52 c 0 - 128 37 136 26 152 21 c 0 - 156 20 161 20 167 18 c 1x1960 -EndSplineSet -Kerns2: 164 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 156 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 144 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 141 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -228 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -264 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 41 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -78 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" m1 -EndChar - -StartChar: n -Encoding: 110 110 80 -Width: 505 -GlyphClass: 2 -Flags: MW -HStem: -15 36 -5 20 282 53 -VStem: 82 59<164.5 227.5> 355 52<191 205 162 221> -LayerCount: 2 -Fore -SplineSet -122 327 m 0xb8 - 135 323 138 316 137 305 c 0 - 137 293 137 280 138 265 c 1 - 142 268 144 269 146 271 c 0 - 162 284 177 298 193 310 c 0 - 212 325 234 335 258 338 c 0 - 279 341 301 340 323 335 c 0 - 341 331 358 327 373 316 c 0 - 391 304 403 287 405 265 c 0 - 407 245 407 225 407 205 c 2 - 407 182 l 2 - 407 142 407 102 406 62 c 0 - 406 57 406 53 407 49 c 0 - 410 27 433 14 453 25 c 0 - 462 30 471 37 479 43 c 0 - 481 45 484 47 487 50 c 1 - 491 44 495 39 500 34 c 1 - 488 14 472 -1 453 -12 c 0 - 449 -13 445 -15 442 -15 c 0 - 415 -17 392 -10 375 11 c 0 - 363 25 359 43 357 62 c 0xb8 - 354 114 355 165 355 217 c 0 - 355 225 354 233 354 242 c 0 - 354 253 348 262 339 268 c 0 - 328 276 317 280 304 282 c 0 - 277 285 251 283 226 273 c 0 - 211 267 197 258 185 246 c 0 - 171 231 159 215 146 199 c 0 - 140 193 141 186 141 178 c 0 - 141 151 141 124 140 97 c 0 - 140 79 140 62 139 44 c 0 - 139 39 140 34 140 29 c 0 - 146 24 153 25 159 24 c 0 - 174 23 175 22 175 7 c 0 - 176 5 175 4 175 2 c 0 - 129 -4 82 -1 37 -5 c 1 - 33 4 33 4 35 15 c 1 - 42 17 50 19 57 21 c 0 - 61 23 65 24 70 26 c 0 - 78 29 82 36 83 45 c 0x78 - 86 77 85 108 83 140 c 0 - 82 167 83 195 82 223 c 0 - 82 232 81 242 78 251 c 0 - 74 268 63 275 46 271 c 0 - 42 270 39 270 34 269 c 1 - 31 278 l 2 - 30 283 32 286 37 289 c 0 - 46 293 55 298 64 302 c 0 - 78 308 92 315 107 322 c 0 - 112 324 117 326 122 327 c 0xb8 -EndSplineSet -Kerns2: 165 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 164 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 161 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 138 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -86 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -218 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -228 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -232 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -94 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -209 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -84 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" n1 n2 -EndChar - -StartChar: o -Encoding: 111 111 81 -Width: 479 -GlyphClass: 2 -Flags: MW -HStem: -19 43 308 49 -VStem: 10 54 412 49 -LayerCount: 2 -Fore -SplineSet -221 -19 m 1 - 177 -21 140 -14 105 2 c 0 - 103 4 100 4 97 6 c 0 - 80 18 63 31 45 43 c 0 - 42 46 39 49 37 52 c 0 - 19 82 8 114 10 150 c 0 - 12 190 24 226 45 260 c 0 - 50 267 56 273 62 280 c 0 - 64 283 68 285 71 288 c 0 - 101 317 138 330 178 341 c 0 - 192 344 207 349 222 352 c 0 - 262 363 302 358 342 345 c 0 - 366 337 387 324 408 310 c 0 - 426 298 441 281 451 262 c 0 - 457 248 460 232 462 217 c 0 - 465 193 466 168 461 144 c 0 - 452 94 428 54 383 28 c 2 - 359 13 l 2 - 356 11 352 9 348 7 c 0 - 305 -9 263 -23 221 -19 c 1 -229 24 m 0 - 242 25 256 26 269 28 c 0 - 293 31 315 39 335 53 c 0 - 352 64 368 77 382 93 c 0 - 402 116 416 142 415 174 c 0 - 414 185 413 196 412 208 c 0 - 409 237 394 258 369 273 c 0 - 366 275 363 278 360 280 c 0 - 354 284 349 288 343 291 c 0 - 327 298 310 301 294 304 c 0 - 256 312 219 308 182 301 c 0 - 155 296 132 280 112 261 c 0 - 98 250 86 236 78 220 c 0 - 65 193 62 164 64 134 c 0 - 65 121 71 108 75 95 c 0 - 76 91 79 87 82 84 c 0 - 102 62 126 44 155 36 c 0 - 179 29 203 25 229 24 c 0 -EndSplineSet -Kerns2: 148 12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 138 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -224 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -170 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -200 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -218 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" o1 -EndChar - -StartChar: p -Encoding: 112 112 82 -Width: 424 -GlyphClass: 2 -Flags: MW -HStem: -3 38 293 44<220 220> -VStem: 73 49<148 207 148 207> 331 55<153 153> -LayerCount: 2 -Fore -SplineSet -34 282 m 1 - 32 287 31 291 30 294 c 0 - 30 296 31 300 33 301 c 0 - 43 307 53 314 64 319 c 0 - 71 323 78 325 85 328 c 0 - 96 331 107 331 118 328 c 0 - 122 327 125 323 128 321 c 0 - 130 319 130 316 132 314 c 0 - 142 319 153 324 163 328 c 0 - 174 333 186 336 199 336 c 0 - 205 337 212 337 219 337 c 0 - 229 337 239 337 250 336 c 0 - 260 335 270 333 279 329 c 0 - 288 326 297 320 305 315 c 0 - 325 304 340 286 356 270 c 0 - 368 258 375 243 378 226 c 0 - 384 202 386 177 386 152 c 0 - 386 130 383 109 374 89 c 0 - 370 82 367 75 362 70 c 0 - 355 60 346 50 338 41 c 2 - 335 38 l 2 - 325 24 311 16 295 10 c 0 - 288 7 280 5 272 4 c 0 - 260 1 247 -1 235 -3 c 0 - 228 -3 222 -3 215 -2 c 0 - 189 1 168 15 147 30 c 0 - 145 31 143 34 141 36 c 0 - 138 40 138 45 142 50 c 0 - 146 55 147 55 154 52 c 0 - 162 48 170 44 178 41 c 0 - 194 34 210 36 226 35 c 0 - 245 33 261 39 277 48 c 0 - 286 53 294 59 302 65 c 0 - 311 72 317 82 321 93 c 0 - 324 102 327 111 329 119 c 0 - 333 130 334 141 331 153 c 0 - 328 169 327 186 323 202 c 0 - 321 214 318 225 312 235 c 0 - 308 243 300 250 293 258 c 0 - 292 259 291 259 289 259 c 0 - 286 261 283 262 281 264 c 0 - 275 271 268 276 259 278 c 0 - 254 279 250 282 246 285 c 0 - 238 290 230 292 220 293 c 0 - 204 294 188 291 174 284 c 0 - 157 276 146 263 137 247 c 0 - 131 235 125 222 126 208 c 0 - 126 202 124 197 123 191 c 0 - 122 177 122 163 122 148 c 0 - 121 75 121 1 120 -72 c 0 - 120 -83 121 -93 121 -104 c 0 - 121 -119 129 -128 145 -133 c 0 - 149 -135 154 -135 158 -136 c 0 - 160 -136 163 -138 163 -140 c 2 - 166 -158 l 2 - 163 -159 160 -160 158 -160 c 0 - 138 -161 117 -162 97 -163 c 0 - 83 -164 69 -164 55 -164 c 0 - 52 -164 47 -163 45 -161 c 0 - 39 -158 40 -153 46 -150 c 0 - 61 -143 69 -130 69 -113 c 2 - 69 -77 l 2 - 70 -56 69 -36 71 -15 c 0 - 76 47 72 108 73 170 c 0 - 74 182 73 194 73 207 c 0 - 72 212 74 217 74 222 c 0 - 73 241 72 258 71 276 c 0 - 69 290 58 296 46 289 c 0 - 42 287 39 285 34 282 c 1 -EndSplineSet -Kerns2: 164 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 154 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 150 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 138 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -245 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -192 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -250 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -246 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 17 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -95 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" p1 p2 -EndChar - -StartChar: q -Encoding: 113 113 83 -Width: 403 -GlyphClass: 2 -Flags: MW -HStem: -10 46 301 44 -VStem: 21 52 279 46 279 56 -LayerCount: 2 -Fore -SplineSet -358 332 m 1xf0 - 353 326 348 320 343 315 c 0 - 338 309 336 302 336 294 c 0 - 336 260 337 226 336 192 c 0 - 336 165 334 137 331 110 c 0xe8 - 329 89 330 68 329 48 c 0 - 328 27 325 7 325 -13 c 0 - 325 -43 326 -72 327 -102 c 0 - 327 -106 328 -111 328 -115 c 0 - 328 -128 333 -134 345 -138 c 0 - 350 -139 354 -140 359 -141 c 0 - 362 -142 363 -143 363 -146 c 0 - 364 -163 364 -168 344 -167 c 0 - 328 -167 312 -165 296 -163 c 0 - 292 -163 288 -164 283 -164 c 0 - 275 -165 267 -166 258 -167 c 2 - 243 -170 l 2 - 236 -170 234 -168 235 -161 c 2 - 235 -159 l 2 - 234 -149 238 -143 249 -138 c 0 - 267 -131 278 -116 279 -94 c 0 - 279 -78 279 -62 277 -46 c 0 - 276 -32 277 -18 276 -4 c 2 - 276 12 l 1 - 272 10 269 9 266 8 c 0 - 254 2 242 -4 229 -7 c 0 - 219 -10 208 -10 197 -10 c 0 - 191 -10 184 -10 177 -9 c 2 - 162 -6 l 2 - 153 -3 144 -2 136 1 c 0 - 114 12 91 20 74 39 c 0 - 60 53 48 69 37 85 c 0 - 33 89 32 95 30 101 c 0 - 19 134 18 168 25 202 c 0 - 31 230 43 254 61 276 c 0 - 67 283 74 290 82 295 c 0 - 99 307 116 319 134 329 c 0 - 153 339 173 343 194 345 c 0 - 208 346 222 344 235 343 c 0 - 246 342 256 341 266 340 c 0 - 279 339 292 335 304 330 c 0 - 308 329 310 329 313 332 c 0 - 322 338 331 346 343 349 c 0 - 348 350 350 349 352 345 c 0 - 354 341 356 337 358 332 c 1xf0 -209 301 m 0 - 188 302 168 298 151 287 c 0 - 136 279 121 269 108 259 c 0 - 102 254 96 247 93 240 c 0 - 85 223 77 206 74 187 c 0 - 71 174 70 161 73 149 c 0 - 77 131 84 114 94 97 c 0 - 98 90 103 84 109 78 c 0 - 113 73 119 70 125 66 c 0 - 135 59 146 53 157 46 c 0 - 158 45 160 45 162 44 c 2 - 186 38 l 2 - 193 37 201 35 207 36 c 0 - 220 39 233 43 245 47 c 1 - 246 48 l 2 - 255 55 265 61 274 68 c 0 - 276 70 278 73 278 76 c 0 - 279 87 279 99 279 111 c 0 - 280 126 279 140 279 155 c 0 - 280 178 279 200 280 223 c 0 - 281 236 281 249 279 262 c 0 - 278 270 275 278 272 286 c 0 - 271 289 267 291 264 292 c 0 - 257 294 250 298 242 296 c 0 - 240 296 237 296 235 297 c 0 - 226 302 217 301 209 301 c 0 -EndSplineSet -Kerns2: 91 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -210 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -169 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -187 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -219 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -113 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" q1 q2 -EndChar - -StartChar: r -Encoding: 114 114 84 -Width: 331 -GlyphClass: 2 -Flags: MW -HStem: -7 25 -4 28 -2 20 300 39 -VStem: 96 40 -LayerCount: 2 -Fore -SplineSet -61 291 m 1x38 - 57 299 59 308 59 315 c 1 - 66 322 75 323 83 325 c 2 - 125 337 l 2 - 133 340 134 340 148 338 c 1 - 149 333 149 328 151 322 c 0 - 152 316 155 315 161 316 c 0 - 168 318 174 321 180 323 c 0 - 210 334 240 339 272 339 c 0 - 280 339 289 337 297 335 c 0 - 305 333 311 328 310 320 c 0 - 310 313 310 307 309 301 c 0 - 307 288 298 281 286 281 c 0 - 275 280 265 281 255 287 c 2 - 243 293 l 2 - 225 304 204 302 189 287 c 0 - 178 277 169 266 160 254 c 0 - 151 243 147 230 146 216 c 0 - 141 165 136 115 136 64 c 2 - 136 52 l 2 - 137 41 142 36 153 33 c 0 - 166 30 178 27 191 24 c 1x58 - 195 15 195 7 194 -2 c 0 - 190 -3 187 -4 184 -4 c 0x38 - 169 -4 154 -5 139 -4 c 0 - 106 -1 73 -4 40 -7 c 0 - 32 -7 30 -6 31 2 c 2 - 31 4 l 2x98 - 32 8 32 12 33 18 c 1 - 39 20 45 21 50 23 c 0 - 69 28 81 39 83 59 c 0 - 86 79 88 98 90 117 c 0 - 92 145 95 172 96 200 c 0 - 97 222 96 244 96 266 c 0 - 96 270 95 274 95 279 c 0 - 93 290 87 294 75 294 c 0 - 71 293 66 292 61 291 c 1x38 -EndSplineSet -Kerns2: 171 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 163 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 160 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 156 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 147 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 144 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -59 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 138 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -59 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -102 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -233 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -116 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -143 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -121 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -84 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -250 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -80 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -80 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -97 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 17 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" r1 -EndChar - -StartChar: s -Encoding: 115 115 85 -Width: 303 -GlyphClass: 2 -Flags: MW -HStem: -7 45 -2 21G<61 65.5> 287 50 -VStem: 30 43<101.5 104> 38 58 204 68 235 24<223 223> -LayerCount: 2 -Fore -SplineSet -73 13 m 1xaa - 73 9 l 2xaa - 72 0 70 -2 61 -2 c 0 - 56 -3 51 -4 45 -4 c 0 - 38 -4 35 -1 34 6 c 0 - 33 18 31 30 31 42 c 0 - 30 61 30 81 30 100 c 2x72 - 30 125 l 2 - 30 132 32 133 39 134 c 0 - 48 136 58 137 67 138 c 0 - 68 137 69 135 69 133 c 0 - 71 123 72 114 73 104 c 0 - 73 99 74 94 76 89 c 0 - 78 83 80 77 83 72 c 0 - 89 60 98 50 111 47 c 0 - 112 46 113 46 114 45 c 0 - 128 37 144 38 160 38 c 0 - 174 39 186 46 194 58 c 0xb2 - 197 61 199 64 201 68 c 0 - 206 76 205 85 204 93 c 0 - 202 104 196 112 190 121 c 1 - 190 121 l 1 - 182 126 173 130 165 135 c 1 - 164 135 l 1 - 148 139 133 144 118 148 c 0xac - 113 150 108 150 103 151 c 0 - 101 152 99 152 97 153 c 0 - 80 162 62 170 51 188 c 0 - 39 206 36 225 38 245 c 0 - 40 255 45 265 49 276 c 0 - 55 292 68 302 81 313 c 0 - 93 322 107 329 121 333 c 0 - 137 338 153 339 170 337 c 0 - 188 335 203 327 221 326 c 0 - 224 325 227 323 231 321 c 1 - 234 327 l 1 - 240 328 245 328 251 328 c 1 - 254 293 256 258 259 223 c 1 - 235 223 l 1 - 233 230 231 236 230 242 c 0 - 227 254 220 263 211 270 c 0 - 204 275 196 280 188 282 c 0 - 180 285 171 286 162 287 c 0xaa - 139 288 120 279 104 264 c 0 - 95 255 92 233 99 223 c 0 - 101 219 105 216 109 214 c 0 - 127 204 148 201 168 195 c 0 - 176 193 185 190 194 187 c 2 - 206 184 l 2 - 215 182 223 179 230 172 c 0 - 231 171 232 169 234 168 c 0 - 246 165 251 154 257 145 c 0 - 259 143 260 140 261 137 c 0 - 277 116 273 93 267 70 c 0 - 265 64 263 57 260 51 c 0 - 254 36 244 25 231 17 c 0 - 222 11 212 6 202 1 c 0 - 197 -1 191 -1 185 -3 c 0 - 181 -4 178 -4 174 -5 c 0xac - 163 -9 152 -9 140 -7 c 0 - 129 -6 117 -4 105 -3 c 0 - 102 -2 99 -1 97 0 c 0 - 89 4 81 8 73 13 c 1xaa -EndSplineSet -Kerns2: 164 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 161 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 156 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 144 12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 138 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -254 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -108 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -121 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -224 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 15 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" s1 s2 -EndChar - -StartChar: t -Encoding: 116 116 86 -Width: 261 -GlyphClass: 2 -Flags: MW -HStem: -2 43 295 41<155 201 155 201> 404 18 -VStem: 30 94 78 57<228.5 256.5> -LayerCount: 2 -Fore -SplineSet -143 404 m 1xe8 - 138 395 134 387 129 379 c 0 - 124 369 123 358 124 347 c 0 - 126 336 129 333 140 333 c 2 - 185 336 l 1 - 201 336 l 1 - 202 324 203 312 204 301 c 1 - 200 300 198 299 195 299 c 0xf0 - 184 298 172 296 160 295 c 2 - 155 295 l 2 - 143 293 135 288 135 272 c 0 - 134 240 134 209 135 177 c 0 - 135 157 137 136 138 115 c 0 - 139 103 139 91 141 79 c 0 - 142 66 148 56 156 46 c 0 - 161 40 172 38 180 41 c 0 - 190 45 199 50 206 59 c 0 - 208 62 212 64 215 68 c 1 - 221 62 226 56 231 50 c 0 - 230 48 229 46 228 45 c 0 - 222 38 217 31 211 25 c 0 - 202 14 191 6 178 1 c 0 - 162 -4 147 -3 133 4 c 0 - 127 7 122 12 116 16 c 0 - 115 16 114 18 113 18 c 0 - 100 24 96 36 93 48 c 0 - 88 66 84 85 80 104 c 0 - 79 107 79 110 79 113 c 0 - 79 159 78 205 78 252 c 0 - 78 261 76 270 75 279 c 0 - 74 283 70 286 64 285 c 0xe8 - 57 285 50 284 42 283 c 0 - 40 283 38 282 36 282 c 0 - 32 282 30 283 30 288 c 2 - 30 307 l 2 - 30 309 31 312 33 314 c 0 - 47 335 62 356 77 376 c 0 - 87 390 99 404 110 417 c 0 - 115 424 121 424 127 418 c 0xf0 - 132 413 138 409 143 404 c 1xe8 -EndSplineSet -Kerns2: 171 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 165 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 162 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 157 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 154 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 150 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 147 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 141 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 138 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -241 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -63 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -205 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -13 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -59 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" t1 t2 -EndChar - -StartChar: u -Encoding: 117 117 87 -Width: 513 -GlyphClass: 2 -Flags: MW -HStem: -14 44 -7 44 306 26 -VStem: 90 46 370 47 -LayerCount: 2 -Fore -SplineSet -333 306 m 1xb8 - 333 327 l 1 - 344 330 354 332 365 332 c 0 - 379 332 393 334 406 335 c 0 - 416 335 416 335 417 325 c 0 - 417 304 418 283 418 262 c 0 - 419 238 421 214 422 189 c 0 - 423 178 423 166 424 155 c 0 - 424 135 423 115 425 94 c 0 - 425 83 428 72 430 61 c 0 - 431 54 433 48 437 43 c 0 - 446 31 466 26 479 34 c 0 - 492 40 500 50 504 64 c 0 - 508 74 509 74 519 73 c 0 - 534 72 534 72 532 57 c 0 - 529 36 519 18 504 4 c 0 - 493 -7 479 -14 462 -14 c 0 - 449 -14 435 -15 422 -12 c 0 - 400 -8 384 4 376 26 c 0 - 371 38 368 51 369 64 c 1 - 368 65 l 1 - 364 62 361 59 358 56 c 0 - 354 53 351 50 347 48 c 0 - 333 36 320 24 305 15 c 0xb8 - 290 6 273 0 256 -5 c 0 - 233 -11 210 -9 188 -7 c 0 - 168 -4 150 3 133 14 c 0 - 120 23 112 35 105 48 c 2 - 105 48 104 49 104 50 c 0 - 98 72 90 93 90 116 c 0 - 91 151 89 186 88 221 c 0 - 87 240 85 259 84 279 c 0 - 83 287 77 295 69 298 c 0 - 59 302 49 304 38 304 c 2 - 30 304 l 1 - 30 321 l 2 - 31 327 36 329 41 330 c 0 - 49 331 57 332 65 332 c 0 - 84 333 103 333 122 333 c 0 - 128 333 133 332 140 332 c 1 - 140 328 140 324 139 321 c 0 - 139 314 137 306 137 299 c 0 - 136 280 135 260 136 241 c 0 - 137 226 139 211 141 197 c 0 - 143 171 145 146 146 120 c 0 - 146 104 148 89 156 75 c 0 - 164 60 176 50 193 44 c 0 - 214 36 236 36 258 40 c 0 - 274 43 287 51 299 60 c 0 - 309 67 319 75 328 83 c 0 - 341 95 350 110 359 125 c 0 - 363 131 366 137 369 143 c 0x78 - 373 151 372 160 371 169 c 0 - 371 200 369 232 369 263 c 0 - 368 269 368 275 369 281 c 0 - 369 289 365 295 359 299 c 0 - 352 305 343 306 333 306 c 1xb8 -EndSplineSet -Kerns2: 171 41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 164 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 160 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 150 35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 147 12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 137 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -200 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -205 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -237 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -147 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 32 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 27 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 17 22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" u1 -EndChar - -StartChar: v -Encoding: 118 118 88 -Width: 523 -GlyphClass: 2 -Flags: MW -HStem: -16 21G 307 31<484 486> 311 26 -VStem: 30 144 30 463<307 338 330 338> -LayerCount: 2 -Fore -SplineSet -493 338 m 1xa8 - 492 329 492 320 491 312 c 0 - 490 308 488 307 484 307 c 0 - 473 306 463 305 453 304 c 0 - 447 304 443 301 440 295 c 0 - 435 280 430 266 423 252 c 0xa8 - 411 226 397 201 385 175 c 0 - 376 158 369 140 360 122 c 0 - 347 93 333 64 318 36 c 0 - 311 22 301 10 292 -3 c 0 - 288 -10 281 -13 275 -14 c 0 - 269 -15 263 -15 257 -16 c 0 - 252 -17 248 -14 245 -10 c 0 - 232 10 220 29 207 49 c 0 - 201 58 197 69 192 78 c 0 - 184 92 175 105 167 119 c 0 - 159 132 149 145 143 160 c 0 - 143 163 141 165 140 166 c 0 - 130 176 125 188 120 199 c 0 - 112 215 104 230 97 245 c 0 - 90 258 84 271 77 283 c 0 - 71 294 62 302 49 304 c 0 - 43 305 36 306 30 307 c 1xd0 - 30 330 l 2 - 30 334 32 336 36 336 c 0 - 46 335 56 335 66 335 c 0 - 69 335 72 334 75 334 c 0 - 103 333 132 335 160 338 c 2 - 168 338 l 1 - 171 338 l 1 - 172 330 173 322 174 313 c 1 - 171 313 167 312 164 312 c 0 - 155 309 146 307 144 297 c 0 - 143 293 143 287 144 284 c 0 - 150 271 155 258 162 245 c 0 - 172 225 184 207 194 187 c 0 - 206 165 219 144 235 124 c 0xb0 - 241 115 246 105 252 96 c 0 - 257 90 262 82 271 81 c 0 - 275 80 278 80 281 84 c 0 - 292 98 302 114 309 132 c 0 - 318 153 327 173 336 194 c 0 - 339 201 341 208 344 215 c 2 - 374 287 l 2 - 376 292 377 296 379 300 c 0 - 381 306 378 311 372 311 c 2 - 353 311 l 1 - 355 318 357 325 359 331 c 0 - 360 332 363 334 365 334 c 0 - 376 336 387 337 397 338 c 0 - 416 340 435 339 453 337 c 0 - 460 337 468 337 475 338 c 2 - 493 338 l 1xa8 -EndSplineSet -Kerns2: 171 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 160 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 156 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 148 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 147 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 144 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -60 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 140 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 138 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -97 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -59 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -129 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -192 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -152 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -170 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -62 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -205 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -85 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" v1 v2 -EndChar - -StartChar: w -Encoding: 119 119 89 -Width: 648 -GlyphClass: 2 -Flags: MW -HStem: -15 21G<407 414> -10 89 308 27<40 43 32 80> -VStem: 32 139<308 317.5> 332 12<235 235> 490 128<308 332 332 332> -LayerCount: 2 -Fore -SplineSet -490 308 m 1xbc - 490 332 l 1 - 493 332 496 333 498 333 c 2 - 545 333 l 2 - 552 333 559 334 565 335 c 2 - 573 335 l 2 - 586 335 599 334 613 334 c 0 - 615 334 616 334 618 333 c 2 - 618 307 l 1 - 608 303 599 299 589 296 c 0 - 577 292 571 282 565 273 c 0 - 560 265 557 258 554 250 c 0 - 544 229 536 208 527 188 c 0 - 524 182 520 177 517 171 c 0 - 509 154 502 136 494 119 c 0 - 482 95 469 71 457 47 c 0 - 451 35 445 21 438 9 c 0 - 434 1 429 -6 423 -13 c 0 - 421 -15 416 -15 412 -15 c 0 - 402 -15 395 -12 392 -2 c 0 - 390 3 386 8 384 13 c 0 - 378 27 370 39 360 50 c 0 - 358 52 358 54 356 56 c 0xbc - 347 67 338 79 334 93 c 0 - 333 96 331 99 330 101 c 0 - 323 100 318 97 314 91 c 0 - 302 70 291 49 278 28 c 0 - 272 19 265 12 258 3 c 0 - 256 2 255 0 253 -2 c 0 - 245 -13 227 -12 221 0 c 0 - 215 13 206 24 198 36 c 0 - 189 52 181 69 172 86 c 0 - 166 100 160 114 153 128 c 0 - 145 144 136 160 128 176 c 0 - 122 186 117 197 112 208 c 0 - 104 225 96 243 88 261 c 0 - 84 269 80 277 77 285 c 0 - 70 299 58 305 43 308 c 2 - 32 308 l 1 - 30 316 30 323 33 330 c 0 - 34 333 36 335 40 335 c 0 - 53 335 67 337 80 335 c 0 - 108 332 135 333 163 335 c 0 - 165 336 167 336 170 336 c 1 - 170 328 171 321 171 314 c 0 - 171 307 167 303 160 303 c 0 - 153 303 148 299 143 295 c 0 - 139 293 141 288 142 285 c 2 - 163 237 l 2 - 173 216 184 197 194 176 c 0 - 205 153 217 129 228 105 c 0 - 231 100 233 95 235 90 c 0 - 237 87 238 85 239 83 c 0 - 243 78 247 78 251 83 c 0 - 258 96 267 108 274 121 c 0x7c - 287 145 301 169 313 193 c 0 - 318 203 322 213 326 223 c 2 - 332 235 l 2 - 335 240 341 240 344 234 c 0 - 347 229 349 224 351 219 c 0 - 356 204 361 190 367 175 c 0 - 367 174 367 173 368 172 c 0 - 378 160 379 143 386 130 c 0 - 391 120 397 110 402 100 c 0 - 404 95 407 91 409 87 c 0 - 412 83 415 82 419 85 c 0 - 421 87 423 89 424 91 c 0 - 428 97 433 104 436 111 c 0 - 444 125 452 139 459 154 c 0 - 477 190 494 227 511 263 c 0 - 515 272 517 280 516 290 c 0 - 516 298 513 301 506 304 c 0 - 501 305 496 307 490 308 c 1xbc -EndSplineSet -Kerns2: 158 -60 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 147 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 138 -84 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -64 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -254 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -138 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -196 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -188 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -245 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 -4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 49 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -112 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" w1 w2 w3 -EndChar - -StartChar: x -Encoding: 120 120 90 -Width: 609 -GlyphClass: 2 -Flags: MW -HStem: -14 38 -1 30<465 512> 300 29 356 53 -VStem: 7 598 384 128<-2 4> -LayerCount: 2 -Fore -SplineSet -512 29 m 1x54 - 512 4 l 2 - 512 0 510 -2 505 -2 c 0 - 497 -1 488 -1 479 -1 c 0 - 451 -1 422 -1 393 -2 c 2 - 384 -2 l 1 - 382 11 380 22 378 33 c 0 - 375 51 365 65 352 79 c 0 - 349 82 346 85 344 88 c 0x54 - 335 100 327 112 319 123 c 0 - 315 130 309 135 304 142 c 1 - 300 136 295 131 293 126 c 0 - 283 107 271 90 256 75 c 0 - 241 60 226 45 209 32 c 0 - 195 21 180 10 164 3 c 0 - 143 -7 121 -14 98 -14 c 2 - 77 -14 l 2 - 68 -14 60 -11 53 -7 c 0 - 42 -1 32 5 21 11 c 0 - 19 13 17 14 15 16 c 0 - 6 24 5 34 11 44 c 0 - 15 51 19 56 26 59 c 0 - 35 63 43 61 50 54 c 0 - 53 50 57 46 60 41 c 0 - 67 31 78 26 90 24 c 0 - 108 21 125 24 142 34 c 0 - 162 47 178 64 192 83 c 0 - 197 90 205 95 210 102 c 0 - 219 114 228 125 236 137 c 0 - 239 140 242 144 244 147 c 0 - 250 158 258 168 263 179 c 0 - 264 182 262 190 259 194 c 0 - 244 213 230 233 214 251 c 0 - 202 265 188 279 172 289 c 0 - 161 295 151 299 139 300 c 0 - 130 300 122 301 113 301 c 1 - 113 326 l 2 - 113 329 115 330 118 330 c 2 - 134 330 l 2 - 164 331 194 331 225 332 c 0 - 229 332 231 332 232 327 c 0 - 235 312 245 301 255 289 c 0 - 263 279 272 270 281 261 c 0 - 288 254 297 249 305 242 c 0 - 307 244 309 247 311 249 c 0 - 326 266 339 282 354 298 c 0 - 366 312 380 324 393 337 c 0 - 402 346 412 355 422 364 c 0 - 435 375 448 384 464 390 c 0xb4 - 472 393 480 396 487 400 c 0 - 507 409 527 411 548 409 c 0 - 558 408 567 405 576 402 c 0 - 580 401 583 400 587 399 c 0 - 599 397 608 383 604 371 c 0 - 602 363 600 356 597 349 c 0 - 595 344 591 343 586 343 c 0 - 575 342 565 345 555 350 c 0 - 538 358 521 357 504 353 c 0 - 491 350 479 347 466 342 c 0 - 458 339 450 336 443 330 c 0 - 422 315 403 298 389 276 c 0 - 373 250 354 224 337 198 c 0 - 336 197 335 195 333 193 c 1 - 339 187 344 179 349 174 c 0 - 368 155 381 132 395 110 c 0 - 398 105 402 101 405 97 c 0 - 411 90 417 84 423 77 c 0 - 428 72 432 66 436 61 c 0 - 445 50 458 43 470 37 c 0 - 477 33 487 33 495 31 c 0 - 501 30 506 30 512 29 c 1x54 -EndSplineSet -Kerns2: 156 -83 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -26 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -20 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -82 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -46 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -58 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -246 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -143 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -165 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -228 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -45 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 52 40 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 42 21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 38 15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" x1 -EndChar - -StartChar: y -Encoding: 121 121 91 -Width: 490 -GlyphClass: 2 -Flags: MW -HStem: -163 31<-9 26> 304 24 315 18<458 459> -VStem: -132 591 321 138<315 333 315 334 315 334> -LayerCount: 2 -Fore -SplineSet -34 305 m 1xd0 - 34 311 l 2 - 34 325 37 328 51 329 c 0 - 85 329 119 329 153 330 c 2 - 161 330 l 1 - 161 325 162 320 161 315 c 0 - 161 313 157 310 154 308 c 0 - 151 305 147 303 144 301 c 0 - 140 296 140 293 142 288 c 0 - 151 270 159 252 169 235 c 0xd0 - 177 217 187 200 197 183 c 0 - 208 163 219 144 231 125 c 0 - 233 121 235 117 236 113 c 0 - 242 99 247 92 260 78 c 1 - 265 89 270 99 275 109 c 0 - 283 127 290 146 298 165 c 0 - 303 177 307 188 312 200 c 2 - 330 242 l 1 - 348 290 l 2 - 351 298 349 302 341 304 c 0 - 337 306 333 306 329 307 c 0 - 324 308 321 310 321 315 c 2 - 321 334 l 1 - 368 334 413 333 459 333 c 1 - 459 315 l 1 - 457 315 455 315 453 314 c 0 - 432 311 415 300 404 281 c 0 - 395 265 385 248 376 231 c 0xa8 - 364 208 357 183 349 158 c 0 - 344 141 337 124 330 108 c 0 - 319 81 307 55 294 29 c 0 - 278 -4 258 -34 231 -60 c 0 - 220 -70 209 -81 197 -89 c 0 - 163 -112 129 -133 91 -147 c 0 - 83 -150 73 -151 64 -153 c 0 - 40 -158 16 -163 -9 -163 c 0 - -29 -162 -49 -161 -68 -153 c 0 - -87 -144 -104 -133 -118 -116 c 0 - -121 -112 -126 -108 -128 -103 c 0 - -133 -91 -133 -79 -130 -67 c 0 - -128 -57 -119 -51 -109 -52 c 0 - -107 -52 -105 -53 -103 -53 c 0 - -98 -54 -95 -56 -94 -61 c 0 - -90 -77 -82 -91 -73 -104 c 0 - -71 -107 -67 -110 -64 -112 c 0 - -52 -120 -39 -125 -24 -128 c 0 - -9 -130 5 -131 20 -132 c 0 - 32 -132 42 -129 53 -126 c 0 - 83 -116 111 -103 138 -85 c 0 - 156 -73 174 -61 188 -45 c 0 - 204 -26 219 -6 226 19 c 0 - 227 27 227 34 221 41 c 0 - 216 46 212 51 207 57 c 0 - 202 64 196 72 191 80 c 0 - 179 101 168 123 156 145 c 0 - 145 164 134 182 123 201 c 0 - 111 222 101 243 88 263 c 0 - 80 274 70 285 61 295 c 0 - 55 301 47 303 40 304 c 0 - 38 304 36 305 34 305 c 1xd0 -EndSplineSet -Kerns2: 171 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 160 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 145 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 90 -87 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -51 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -21 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -16 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -60 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 61 -138 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 60 -250 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 59 -152 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 58 -183 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 57 -227 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 56 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 55 -201 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 54 -76 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 53 -81 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 51 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 50 4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 48 -63 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 47 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 46 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 45 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 44 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 43 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 40 -61 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 39 -72 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 37 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 36 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 17 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 15 -111 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -78 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" y1 y2 -EndChar - -StartChar: z -Encoding: 122 122 92 -Width: 408 -GlyphClass: 2 -Flags: MW -HStem: -5 48<273 274.5> -4 47 -2 40 309 35<183 241> -VStem: 46 76 59 8 -LayerCount: 2 -Fore -SplineSet -67 276 m 1x94 - 56 278 56 278 56 288 c 0 - 58 301 58 313 59 327 c 0 - 59 334 60 336 66 338 c 0 - 83 339 98 340 114 341 c 2x94 - 183 344 l 1 - 210 344 l 2 - 240 344 271 344 300 343 c 0 - 312 343 322 342 333 341 c 1 - 334 335 334 331 332 327 c 0 - 329 325 328 322 327 320 c 0 - 324 312 321 306 315 300 c 0 - 303 283 290 268 278 251 c 0 - 260 225 241 200 220 178 c 0 - 215 171 208 163 202 156 c 0 - 183 131 163 105 143 81 c 0 - 136 71 129 63 123 53 c 0 - 121 49 121 44 122 38 c 1 - 148 38 l 2x38 - 190 39 231 41 273 43 c 0 - 285 43 296 45 310 46 c 0 - 325 47 334 58 342 71 c 0 - 344 75 346 81 348 84 c 0 - 351 90 352 91 359 90 c 0 - 365 89 368 87 368 82 c 0 - 369 79 368 74 367 71 c 0x94 - 366 54 363 37 362 20 c 0x54 - 361 8 351 -2 337 -2 c 0 - 313 -3 287 -5 262 -5 c 0 - 231 -5 199 -4 167 -4 c 0x98 - 129 -3 91 -2 52 -2 c 0 - 46 -1 45 3 44 7 c 0 - 42 12 42 20 46 26 c 0 - 53 32 60 40 66 48 c 0 - 80 64 92 81 104 98 c 0x58 - 121 120 134 143 149 166 c 0 - 157 178 166 187 175 197 c 0 - 184 210 195 223 204 235 c 0 - 217 251 230 267 242 282 c 0 - 245 287 249 292 252 297 c 0 - 255 303 253 305 247 308 c 0 - 244 309 242 309 240 309 c 0 - 210 309 180 308 151 306 c 0 - 143 306 134 305 125 304 c 0 - 113 303 101 303 87 302 c 0 - 76 301 74 299 71 289 c 0 - 70 284 69 280 67 276 c 1x94 -EndSplineSet -Kerns2: 165 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 164 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 158 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 155 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 150 -25 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 146 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 139 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 137 32 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -56 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -49 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -50 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -43 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -44 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -50 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -7 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -31 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 15 36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 10 -50 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -AlternateSubs2: "'salt' Stylistic Alternatives in Latin lookup 0 subtable" z1 -EndChar - -StartChar: braceleft -Encoding: 123 123 93 -Width: 204 -GlyphClass: 2 -Flags: MW -HStem: -117 41<117 182> 856 40<137 144> -VStem: 64 58<545 846.5 789 846.5> 67 51<258 301> 70 50 -LayerCount: 2 -Fore -SplineSet -117 -117 m 1xc8 - 67 -117 l 2 - 59 -117 57 -115 56 -108 c 0 - 55 -105 55 -102 54 -99 c 0xc8 - 53 -91 53 -85 60 -81 c 0 - 66 -77 68 -70 68 -63 c 0xd0 - 69 -26 69 11 71 48 c 0xc8 - 72 80 70 111 69 143 c 0 - 68 181 67 220 67 258 c 2 - 67 320 l 2 - 67 324 66 329 64 333 c 0 - 56 350 47 366 32 378 c 0 - 28 381 23 384 19 387 c 0 - 8 395 7 411 18 419 c 0xd0 - 31 428 39 441 45 455 c 0 - 58 484 64 514 64 545 c 2 - 64 789 l 2 - 64 803 62 817 61 830 c 0 - 60 839 56 847 48 852 c 0 - 44 855 43 859 44 865 c 2 - 50 883 l 2 - 53 892 58 895 67 896 c 0 - 93 896 119 895 145 896 c 0 - 154 896 163 897 172 898 c 2 - 175 898 l 2 - 187 900 190 897 189 885 c 0 - 188 878 188 872 187 866 c 0 - 187 859 186 858 180 858 c 0 - 165 857 151 856 137 856 c 0 - 126 855 122 852 122 841 c 0 - 122 776 121 711 120 646 c 0 - 120 620 120 593 119 567 c 0 - 118 551 118 535 117 518 c 0 - 113 489 110 458 97 430 c 0 - 94 423 89 416 85 408 c 0 - 82 403 82 399 87 396 c 0xe0 - 98 389 102 378 107 366 c 0 - 117 345 117 323 118 301 c 2 - 118 219 l 2 - 118 182 119 145 120 109 c 2 - 120 -50 l 2xd0 - 120 -54 120 -58 121 -62 c 0 - 121 -71 126 -75 135 -75 c 0 - 150 -76 165 -76 180 -76 c 2 - 182 -76 l 2 - 193 -76 194 -76 194 -88 c 2 - 194 -107 l 2 - 194 -111 192 -113 189 -114 c 0 - 181 -115 173 -116 166 -117 c 2 - 117 -117 l 1xc8 -EndSplineSet -EndChar - -StartChar: bar -Encoding: 124 124 94 -Width: 80 -GlyphClass: 2 -Flags: MW -HStem: -269 1010<18 62 12 64> -VStem: 17 53<327.5 384.5> -LayerCount: 2 -Fore -SplineSet -62 -269 m 1 - 12 -269 l 1 - 12 -257 l 2 - 13 -229 14 -202 14 -174 c 0 - 14 -142 13 -111 13 -79 c 0 - 14 -10 15 60 16 129 c 0 - 17 208 17 288 17 367 c 0 - 17 402 15 438 15 474 c 0 - 14 526 14 579 13 631 c 0 - 13 651 13 671 11 691 c 0 - 10 705 11 720 12 734 c 0 - 12 739 14 741 18 741 c 2 - 64 741 l 1 - 65 736 66 732 66 727 c 0 - 68 711 69 695 69 678 c 0 - 69 561 70 443 70 326 c 0 - 70 294 67 263 67 232 c 2 - 67 25 l 2 - 67 -2 64 -29 63 -55 c 2 - 63 -81 l 2 - 63 -107 64 -134 64 -159 c 0 - 65 -171 64 -182 64 -193 c 0 - 64 -218 63 -242 62 -267 c 2 - 62 -269 l 1 -EndSplineSet -EndChar - -StartChar: braceright -Encoding: 125 125 95 -Width: 204 -GlyphClass: 2 -Flags: MW -HStem: -119 41 855 42<26 32 19 33> -VStem: 83 57<531 802> 86 51<240 282 282 290> 121 73 -LayerCount: 2 -Fore -SplineSet -32 897 m 2xe0 - 40 896 48 894 57 894 c 0 - 83 893 110 894 136 894 c 0 - 146 894 151 889 154 880 c 2 - 160 862 l 2 - 161 858 161 854 157 851 c 0 - 145 843 142 830 141 817 c 0 - 140 803 140 790 140 776 c 0 - 140 695 139 613 140 531 c 0 - 141 496 150 461 171 431 c 0xe0 - 175 426 180 422 185 418 c 0 - 197 408 197 393 184 384 c 0xc8 - 163 371 149 352 139 330 c 0 - 138 326 137 321 137 317 c 2 - 137 169 l 2 - 136 145 134 121 134 97 c 0 - 133 79 133 61 134 42 c 2 - 134 -49 l 2 - 134 -56 135 -63 136 -70 c 0 - 137 -76 140 -81 145 -84 c 0 - 149 -87 151 -91 150 -95 c 0 - 149 -101 149 -106 148 -112 c 0 - 147 -117 144 -119 139 -119 c 0 - 104 -118 70 -119 36 -118 c 0 - 29 -118 23 -117 16 -116 c 0 - 12 -116 10 -113 10 -109 c 2 - 10 -86 l 2 - 10 -79 11 -78 18 -78 c 2 - 58 -78 l 2 - 62 -78 66 -78 70 -77 c 0 - 77 -77 82 -72 83 -65 c 0 - 84 -61 84 -57 84 -52 c 0 - 84 -12 83 29 83 70 c 0 - 84 127 85 183 86 240 c 2 - 86 282 l 2 - 86 298 87 314 88 330 c 0 - 89 349 96 365 105 381 c 0xd0 - 107 386 112 389 115 393 c 0 - 121 398 123 401 118 407 c 0 - 102 431 95 458 91 487 c 0xc8 - 89 501 87 516 86 531 c 0 - 85 548 85 565 85 582 c 0 - 84 652 84 723 83 794 c 0 - 83 810 82 825 82 841 c 0 - 81 850 78 853 69 853 c 0 - 54 854 40 855 26 855 c 0 - 17 856 17 857 16 865 c 0 - 16 871 16 878 15 884 c 0 - 15 889 15 893 19 897 c 1 - 32 897 l 2xe0 -EndSplineSet -EndChar - -StartChar: asciitilde -Encoding: 126 126 96 -Width: 195 -GlyphClass: 2 -Flags: MW -HStem: 135 44 168 42 -VStem: 10 175 -LayerCount: 2 -Fore -SplineSet -24 156 m 1x60 - 19 160 15 163 10 167 c 1 - 17 178 24 188 35 194 c 0 - 42 199 49 204 57 207 c 0 - 66 210 74 211 83 207 c 0x60 - 93 203 102 196 112 191 c 0 - 121 187 130 182 139 179 c 0 - 147 177 154 179 161 184 c 0 - 164 187 168 189 173 192 c 1 - 185 183 l 1 - 182 171 175 164 166 158 c 0 - 156 151 145 144 134 139 c 0 - 122 133 109 134 98 142 c 0xa0 - 87 149 76 157 65 164 c 0 - 55 171 45 169 35 164 c 0 - 31 162 28 159 24 156 c 1x60 -EndSplineSet -EndChar - -StartChar: cent -Encoding: 162 162 97 -Width: 317 -GlyphClass: 2 -Flags: MW -HStem: 86 41<191 201> 87 44 395 44 -VStem: 12 54 147 43<61 87 61 87> 161 135<334 338> 173 39<512 523> -LayerCount: 2 -Fore -SplineSet -191 127 m 1xb8 - 194 127 195 127 197 128 c 0 - 217 131 237 136 254 149 c 0 - 266 158 278 166 291 175 c 0 - 298 181 304 178 305 169 c 0 - 308 156 306 144 297 133 c 0 - 289 125 282 116 272 111 c 0 - 263 107 255 102 246 98 c 0 - 232 91 217 87 201 86 c 0 - 198 86 195 85 191 84 c 1 - 191 76 190 69 190 61 c 0 - 189 51 189 41 188 30 c 0 - 187 21 182 17 173 17 c 2 - 162 17 l 2 - 152 17 146 23 146 34 c 0xb8 - 146 49 147 64 147 80 c 2 - 147 87 l 1 - 116 91 89 107 63 123 c 0x78 - 51 131 41 142 34 156 c 0 - 21 181 15 208 12 235 c 0 - 9 259 10 284 19 307 c 0 - 30 336 45 363 68 385 c 0 - 94 410 123 427 156 437 c 0 - 163 439 166 444 166 450 c 0 - 168 466 169 482 171 499 c 0 - 172 506 173 514 173 523 c 1 - 205 523 l 2 - 209 522 212 518 212 512 c 0 - 211 497 211 483 210 469 c 2 - 210 449 l 2 - 210 446 211 443 211 439 c 0 - 222 438 232 438 242 437 c 0 - 244 436 247 436 248 435 c 0x72 - 261 427 275 423 289 419 c 0 - 296 417 296 417 296 409 c 2 - 296 339 l 1 - 296 333 l 2 - 296 331 295 330 295 329 c 0 - 293 326 274 323 272 326 c 0 - 271 327 270 329 270 331 c 0 - 268 341 266 352 264 362 c 0 - 260 379 249 388 232 391 c 0 - 224 393 216 394 208 395 c 1 - 207 387 207 380 206 372 c 0 - 204 345 201 317 199 290 c 0 - 198 268 199 245 198 223 c 0xb4 - 197 202 194 180 193 159 c 0 - 192 149 191 139 191 127 c 1xb8 -149 131 m 1x74 - 151 152 155 172 155 192 c 0 - 158 239 159 286 161 334 c 0 - 161 342 162 349 163 357 c 0 - 164 365 164 373 164 381 c 0 - 164 384 164 386 163 389 c 0 - 161 392 159 393 155 392 c 0 - 141 388 126 384 114 374 c 0 - 98 360 86 343 77 324 c 0 - 70 309 67 293 66 277 c 0 - 64 250 66 224 77 199 c 0 - 81 190 84 180 88 171 c 0 - 89 167 91 163 94 162 c 0 - 106 153 118 144 132 136 c 0 - 136 133 142 133 149 131 c 1x74 -EndSplineSet -EndChar - -StartChar: sterling -Encoding: 163 163 98 -Width: 331 -GlyphClass: 2 -Flags: MW -HStem: -122 27 -96 46 115 31<27.5 61> 122 29<191 215 191 191> 178 34 422 18 -VStem: 66 50<244 283> 70 52 199 40 -LayerCount: 2 -Fore -SplineSet -98 -61 m 1x5d80 - 114 -52 130 -50 146 -50 c 0 - 155 -51 164 -52 173 -56 c 0 - 182 -59 191 -64 200 -68 c 0 - 203 -70 208 -70 212 -72 c 0x6d80 - 224 -78 237 -85 250 -91 c 0 - 265 -99 278 -96 291 -83 c 0 - 294 -80 298 -76 303 -73 c 0 - 309 -68 311 -69 316 -75 c 0 - 322 -85 322 -94 316 -104 c 0 - 305 -120 290 -123 273 -122 c 0 - 255 -122 238 -116 222 -110 c 0xae80 - 202 -101 180 -95 159 -92 c 0 - 145 -90 131 -91 116 -96 c 0 - 87 -107 63 -126 42 -149 c 0 - 35 -156 32 -156 25 -150 c 0 - 22 -148 20 -146 17 -145 c 0 - 10 -141 9 -137 12 -130 c 0 - 13 -128 14 -126 15 -125 c 0 - 28 -103 39 -80 48 -57 c 0 - 52 -45 55 -34 58 -22 c 0 - 67 12 69 47 70 82 c 0 - 70 89 70 95 71 102 c 0 - 71 109 65 115 57 115 c 0 - 48 115 39 114 30 114 c 0 - 23 114 22 116 22 123 c 0 - 22 128 22 134 23 139 c 0 - 23 144 25 146 30 146 c 0x6d80 - 38 146 46 147 53 148 c 0 - 56 148 59 149 62 151 c 0 - 70 154 66 161 66 166 c 0 - 66 171 66 176 60 178 c 0 - 52 180 45 181 38 180 c 0 - 33 179 28 180 22 180 c 1 - 22 195 l 2 - 23 201 25 203 31 203 c 0 - 40 202 48 204 57 207 c 0 - 66 209 67 211 67 220 c 0 - 66 238 66 256 66 274 c 0 - 66 292 69 309 68 326 c 0 - 68 347 71 367 75 387 c 0 - 78 404 87 418 103 427 c 0 - 109 431 116 435 122 439 c 0 - 136 448 152 446 166 444 c 0 - 175 443 184 442 193 440 c 0 - 195 440 197 440 199 439 c 0 - 212 433 224 426 230 412 c 0 - 234 402 237 393 239 383 c 0 - 240 373 234 365 224 363 c 0 - 218 362 212 363 205 364 c 0 - 203 364 201 367 200 369 c 0 - 199 371 199 375 199 377 c 2 - 199 398 l 2 - 199 420 188 427 167 422 c 0 - 165 422 163 421 161 420 c 0 - 146 418 138 408 130 397 c 0 - 119 384 119 368 118 353 c 0 - 116 332 115 311 114 290 c 0 - 114 275 116 260 116 244 c 0 - 117 236 118 227 119 218 c 0 - 120 211 120 210 127 211 c 0 - 142 212 156 212 171 213 c 0 - 176 214 181 214 186 214 c 0x6e80 - 195 214 205 213 215 213 c 0 - 217 213 220 212 222 212 c 1 - 222 183 l 1 - 189 181 157 180 123 178 c 1x6d80 - 123 171 122 165 122 159 c 0 - 122 154 126 151 133 151 c 2 - 160 151 l 1 - 221 151 l 1 - 221 143 221 134 220 125 c 0 - 220 124 217 122 215 122 c 2 - 191 122 l 2 - 170 121 149 121 129 120 c 0 - 124 120 122 117 121 113 c 0 - 118 97 118 81 117 64 c 0 - 116 41 114 18 111 -6 c 0 - 110 -16 106 -27 103 -38 c 0 - 101 -45 100 -52 98 -61 c 1x5d80 -EndSplineSet -EndChar - -StartChar: section -Encoding: 167 167 99 -Width: 460 -GlyphClass: 2 -Flags: MW -HStem: -289 41 568 132<408 416 404 430 408 408> 699 33 701 36 -VStem: 12 32 12 68 15 64 16 27 382 67 408 22<568 568> -LayerCount: 2 -Fore -SplineSet -133 418 m 1xa180 - 129 424 123 424 119 426 c 0 - 104 433 88 439 74 447 c 0 - 59 456 47 468 37 482 c 0 - 27 498 19 516 14 534 c 0 - 9 552 10 570 15 589 c 0 - 18 600 22 612 26 623 c 0 - 32 644 46 659 61 673 c 0 - 83 695 110 712 138 724 c 0 - 160 733 183 736 207 737 c 0 - 235 738 263 735 291 728 c 0x9280 - 312 723 335 720 356 712 c 0 - 375 705 394 700 414 700 c 0 - 418 700 423 699 427 698 c 0 - 433 684 428 669 430 655 c 0 - 432 641 432 626 432 612 c 0 - 431 598 433 583 430 568 c 1 - 408 568 l 1 - 405 576 403 585 399 593 c 0 - 394 605 389 617 383 629 c 0 - 379 635 373 640 368 646 c 0 - 364 649 359 652 355 656 c 0xc140 - 342 670 325 678 307 686 c 0 - 298 691 289 694 279 697 c 0 - 273 699 266 700 259 699 c 0 - 249 699 239 700 228 701 c 0 - 192 704 160 696 133 671 c 0 - 124 663 115 655 107 647 c 0 - 96 637 90 625 86 611 c 0 - 81 594 79 576 79 559 c 0 - 79 547 82 536 86 526 c 0 - 91 510 102 499 116 491 c 0 - 133 482 151 473 169 464 c 0xa280 - 183 457 199 452 214 449 c 0 - 249 441 282 431 315 417 c 0 - 329 412 343 404 354 394 c 0 - 368 382 383 372 396 360 c 0 - 409 348 419 334 426 319 c 0 - 433 305 439 291 443 277 c 0 - 456 232 447 189 427 148 c 0 - 415 124 399 103 377 86 c 0 - 375 84 373 82 371 79 c 0 - 380 70 388 62 398 54 c 0 - 412 42 421 27 429 10 c 0 - 436 -7 444 -23 446 -42 c 0 - 449 -60 449 -77 447 -94 c 0 - 443 -121 432 -145 419 -169 c 0 - 405 -195 385 -214 362 -230 c 0 - 341 -245 318 -258 295 -270 c 0 - 288 -273 280 -276 272 -278 c 0 - 249 -285 224 -285 200 -290 c 0 - 179 -295 159 -290 138 -288 c 0 - 123 -287 109 -283 94 -279 c 0 - 84 -277 73 -277 62 -275 c 0 - 54 -274 49 -277 46 -284 c 0 - 45 -286 45 -288 44 -290 c 0xa880 - 34 -291 24 -291 15 -290 c 1 - 10 -268 11 -162 16 -133 c 1 - 23 -128 32 -125 42 -124 c 1 - 45 -139 l 2 - 46 -148 47 -157 49 -166 c 0 - 52 -179 60 -189 66 -200 c 0 - 79 -222 101 -232 122 -243 c 0 - 125 -244 128 -245 132 -246 c 0xa180 - 148 -248 165 -251 181 -252 c 0 - 195 -253 209 -250 223 -248 c 0 - 230 -248 237 -247 244 -245 c 0 - 269 -239 291 -229 312 -216 c 0 - 325 -208 336 -198 348 -190 c 0 - 357 -183 363 -175 367 -164 c 0 - 371 -154 374 -143 376 -132 c 0 - 379 -117 380 -102 382 -86 c 0 - 385 -67 378 -51 370 -34 c 0 - 365 -25 360 -16 355 -6 c 0 - 345 18 329 39 306 52 c 0 - 289 63 271 71 253 80 c 0 - 242 86 230 91 218 95 c 0 - 202 100 185 104 167 107 c 0 - 140 113 114 123 88 136 c 0 - 73 143 61 152 49 163 c 0 - 36 177 27 193 20 210 c 0 - 15 225 9 241 11 257 c 0 - 12 264 12 272 13 279 c 0 - 18 294 23 310 28 325 c 0 - 35 343 48 357 62 370 c 0xa480 - 80 386 97 401 120 411 c 0 - 124 413 128 416 133 418 c 1xa180 -334 105 m 1 - 357 117 368 136 374 160 c 0 - 378 179 380 199 382 219 c 0 - 384 237 378 253 370 269 c 2 - 355 299 l 2 - 349 310 344 321 335 331 c 0 - 323 345 309 355 293 364 c 0 - 271 376 249 386 226 396 c 0 - 223 397 219 398 216 398 c 0 - 190 398 165 392 145 376 c 0 - 130 365 116 352 104 339 c 0 - 97 332 91 322 88 313 c 0 - 80 291 78 268 80 245 c 0 - 82 221 92 201 114 189 c 0 - 134 177 156 166 177 156 c 0xa480 - 187 152 197 148 208 146 c 0 - 251 137 293 123 334 105 c 1 -EndSplineSet -EndChar - -StartChar: dieresis -Encoding: 168 168 100 -Width: 168 -GlyphClass: 2 -Flags: MW -HStem: 442 54<36.5 41 41 47 124.5 129 129 133 133 135> -VStem: 10 59 98 59 -LayerCount: 2 -Fore -SplineSet -129 442 m 2 - 120 442 111 442 104 450 c 0 - 96 458 96 473 103 482 c 0 - 105 485 107 487 109 490 c 0 - 111 494 114 496 118 496 c 0 - 123 496 129 495 133 496 c 0 - 141 496 146 493 149 488 c 0 - 154 480 158 473 157 464 c 0 - 156 450 148 442 135 442 c 2 - 129 442 l 2 -41 442 m 2 - 32 442 23 442 16 450 c 0 - 9 458 8 473 15 482 c 0 - 17 485 19 487 21 490 c 0 - 23 494 26 496 30 496 c 2 - 47 496 l 2 - 53 496 57 494 61 489 c 0 - 66 481 70 474 69 464 c 0 - 69 450 60 442 47 442 c 2 - 41 442 l 2 -EndSplineSet -EndChar - -StartChar: copyright -Encoding: 169 169 101 -Width: 593 -GlyphClass: 2 -Flags: MW -HStem: 232 32 479 40 -VStem: 11 45 151 43 395 22<423 423> 538 44 -LayerCount: 2 -Fore -SplineSet -158 72 m 1 - 135 89 113 106 95 128 c 0 - 89 136 82 143 75 151 c 0 - 61 165 50 181 39 198 c 0 - 31 210 23 222 20 236 c 0 - 16 256 11 276 11 298 c 0 - 11 317 10 336 11 356 c 0 - 11 378 15 400 20 422 c 0 - 24 435 26 448 29 462 c 0 - 32 476 38 490 45 502 c 0 - 55 517 64 533 75 547 c 0 - 91 569 107 592 125 612 c 0 - 138 627 154 641 173 653 c 1 - 182 644 190 636 197 625 c 1 - 193 621 l 1 - 171 606 155 586 139 565 c 0 - 127 548 114 532 101 515 c 0 - 95 506 89 497 85 486 c 0 - 82 476 78 466 74 456 c 0 - 67 441 65 424 62 408 c 0 - 60 391 58 374 55 357 c 0 - 52 336 53 315 56 293 c 0 - 62 258 73 224 95 194 c 0 - 110 174 126 154 143 135 c 0 - 153 124 164 113 176 102 c 0 - 181 97 181 94 175 88 c 0 - 170 83 164 78 158 72 c 1 -435 652 m 1 - 458 636 478 620 496 600 c 0 - 505 589 515 579 524 567 c 0 - 534 555 543 543 552 530 c 0 - 554 528 555 525 557 523 c 0 - 567 510 571 494 575 479 c 0 - 582 451 582 423 582 395 c 0 - 582 377 583 360 580 342 c 0 - 577 321 572 300 567 280 c 0 - 564 266 564 253 557 240 c 0 - 553 233 549 225 544 218 c 0 - 537 206 530 195 523 184 c 0 - 509 164 495 145 480 126 c 0 - 473 116 464 108 456 101 c 0 - 447 93 438 85 429 78 c 0 - 427 76 423 74 420 72 c 0 - 411 81 402 89 396 100 c 0 - 398 102 399 103 401 104 c 0 - 422 119 439 138 454 160 c 0 - 466 177 479 193 492 210 c 0 - 498 219 504 228 508 239 c 0 - 511 248 514 258 519 267 c 0 - 526 283 528 300 530 317 c 0 - 533 334 535 351 538 369 c 0 - 541 390 540 411 537 431 c 0 - 531 467 520 501 498 530 c 0 - 480 555 462 579 440 599 c 0 - 431 607 424 615 416 623 c 0 - 412 628 412 631 416 635 c 0 - 421 640 428 646 435 652 c 1 -426 302 m 1 - 431 289 429 278 419 268 c 0 - 404 253 387 239 366 234 c 0 - 353 230 340 229 327 228 c 0 - 300 227 273 229 246 236 c 0 - 219 244 198 258 179 278 c 0 - 164 294 155 312 152 333 c 0 - 150 345 150 358 151 370 c 0 - 152 388 154 406 162 423 c 0 - 169 441 180 457 196 469 c 0 - 198 471 201 473 204 475 c 0 - 221 493 243 505 266 513 c 0 - 278 517 291 518 303 519 c 0 - 330 520 355 517 380 506 c 0 - 392 501 405 498 417 494 c 1 - 420 480 419 435 417 424 c 1 - 410 422 403 420 395 423 c 1 - 393 431 391 440 389 448 c 0 - 385 462 376 471 362 474 c 0 - 326 481 291 482 256 469 c 0 - 231 461 198 426 194 397 c 0 - 191 378 190 360 195 343 c 0 - 203 314 217 290 247 279 c 0 - 256 276 264 273 272 270 c 0 - 290 263 309 262 328 264 c 0 - 358 268 383 283 408 298 c 0 - 413 301 418 306 426 302 c 1 -EndSplineSet -EndChar - -StartChar: logicalnot -Encoding: 172 172 102 -Width: 150 -GlyphClass: 2 -Flags: MW -HStem: 146 41<66.5 122 76 122> -VStem: 98 41 -LayerCount: 2 -Fore -SplineSet -98 146 m 1 - 76 146 l 2 - 57 146 39 146 20 147 c 0 - 13 147 13 148 13 155 c 0 - 12 161 11 167 11 173 c 0 - 10 180 12 182 18 184 c 0 - 23 184 27 185 32 185 c 0 - 62 186 92 187 122 187 c 0 - 125 188 129 187 132 185 c 0 - 134 184 135 180 135 177 c 0 - 137 161 138 144 139 128 c 0 - 140 124 139 122 135 122 c 2 - 106 122 l 2 - 102 122 100 125 99 129 c 0 - 99 134 98 140 98 146 c 1 -EndSplineSet -EndChar - -StartChar: registered -Encoding: 174 174 103 -Width: 615 -GlyphClass: 2 -Flags: MW -HStem: 218 19 455 49 465 21<214 221 214 214> -VStem: 192 134 244 46 560 45 -LayerCount: 2 -Fore -SplineSet -175 653 m 1xd4 - 183 644 190 635 198 626 c 1 - 194 623 192 620 189 618 c 0 - 171 605 157 588 143 570 c 0 - 131 554 119 537 106 520 c 0 - 96 508 88 495 83 480 c 0 - 82 476 81 472 80 469 c 0 - 73 451 66 434 64 416 c 0 - 62 395 57 374 56 352 c 0 - 54 333 53 314 56 296 c 0 - 61 261 72 229 92 199 c 0 - 107 178 123 157 141 138 c 0 - 152 126 164 115 175 103 c 0 - 178 100 179 98 182 94 c 1 - 174 87 167 80 159 72 c 1 - 155 75 152 77 149 79 c 0 - 128 95 108 112 91 132 c 0 - 84 142 75 149 68 159 c 0 - 59 170 50 183 41 195 c 0 - 39 198 37 202 35 204 c 0 - 26 214 22 227 20 239 c 0 - 14 261 11 283 12 305 c 0 - 12 322 10 339 11 356 c 0 - 11 370 13 383 15 397 c 0 - 20 420 24 443 30 465 c 0 - 34 478 39 491 46 502 c 0 - 66 536 89 569 114 599 c 0 - 121 608 129 616 137 623 c 0 - 146 632 155 639 165 647 c 0 - 167 649 170 650 175 653 c 1xd4 -457 652 m 1 - 481 635 503 618 521 596 c 0 - 527 588 534 581 541 573 c 0 - 555 560 566 544 576 527 c 0 - 582 518 589 509 592 498 c 0 - 599 476 603 453 604 429 c 0 - 605 409 605 389 605 368 c 0 - 605 346 600 325 595 304 c 2 - 586 262 l 2 - 583 248 578 234 570 222 c 0 - 549 189 528 157 504 128 c 0 - 496 118 487 109 478 100 c 0 - 469 92 459 85 450 77 c 0 - 448 75 445 74 442 72 c 0 - 434 81 426 89 418 99 c 1 - 421 102 424 105 427 107 c 0 - 445 120 459 136 472 154 c 0 - 486 172 499 190 513 209 c 0 - 521 218 526 228 530 239 c 0 - 533 249 537 258 541 268 c 0 - 548 283 550 299 553 316 c 0 - 556 332 557 349 560 366 c 0 - 564 388 562 409 559 430 c 0 - 554 466 542 500 521 530 c 0 - 506 550 490 570 473 588 c 0 - 463 600 452 611 441 622 c 0 - 434 628 434 630 440 637 c 0 - 446 642 451 647 457 652 c 1 -325 240 m 1 - 326 233 326 227 327 220 c 1 - 318 218 311 216 303 217 c 0 - 290 217 277 218 265 218 c 0 - 247 218 229 217 211 216 c 2 - 192 216 l 1 - 189 223 191 229 192 236 c 1 - 204 239 l 2xd4 - 223 244 232 254 234 273 c 0 - 238 312 242 351 244 390 c 0 - 246 409 245 429 244 448 c 0 - 243 465 238 468 221 465 c 2 - 214 465 l 1 - 214 486 l 1 - 220 488 226 491 233 493 c 0xac - 244 496 256 499 268 502 c 0 - 274 504 280 505 287 503 c 0xcc - 288 499 289 494 290 489 c 0 - 291 485 294 484 298 485 c 2xac - 316 491 l 2xcc - 340 500 366 505 392 504 c 0 - 399 504 406 502 413 501 c 0 - 420 499 424 494 424 487 c 0 - 424 481 423 474 421 468 c 0 - 418 460 412 456 402 455 c 0 - 389 454 378 459 368 466 c 0 - 359 472 349 474 339 470 c 0 - 333 468 326 465 321 460 c 0 - 313 452 305 443 297 433 c 0 - 291 424 287 414 286 403 c 0 - 282 361 277 318 278 275 c 0 - 278 272 277 269 278 266 c 0 - 278 255 282 251 293 248 c 0 - 303 246 313 243 325 240 c 1 -EndSplineSet -EndChar - -StartChar: acute -Encoding: 180 180 104 -Width: 129 -GlyphClass: 2 -Flags: MW -HStem: 433 89 -VStem: 10 108 -LayerCount: 2 -Fore -SplineSet -10 465 m 0 - 10 471 13 474 17 476 c 0 - 32 484 46 492 60 503 c 0 - 70 510 82 516 93 521 c 0 - 98 524 106 521 109 516 c 0 - 113 508 116 501 118 493 c 0 - 119 488 117 484 113 481 c 0 - 102 475 92 470 82 464 c 0 - 78 462 74 459 70 456 c 2 - 34 435 l 2 - 26 431 24 432 20 439 c 0 - 16 447 12 456 10 465 c 0 -EndSplineSet -EndChar - -StartChar: onequarter -Encoding: 188 188 105 -Width: 534 -GlyphClass: 2 -Flags: MW -HStem: 22 15<480 480> 182 13<502 524> 352 10<19 43> 644 39 -VStem: 57 49 379 54<196 196> 383 49<102 143> -LayerCount: 2 -Fore -SplineSet -524 182 m 1xec - 518 180 512 179 506 176 c 0xec - 485 166 463 161 440 158 c 0 - 438 158 436 158 433 157 c 0 - 433 153 432 148 432 143 c 2 - 432 85 l 2 - 432 62 439 52 466 42 c 0 - 470 40 474 39 479 37 c 0 - 480 33 480 28 480 22 c 1 - 465 22 l 2 - 453 22 441 22 430 21 c 0 - 402 20 374 19 347 18 c 0 - 342 17 337 17 332 20 c 1 - 332 36 l 2 - 335 37 338 38 342 39 c 0 - 345 40 349 41 353 42 c 0 - 367 46 377 54 379 70 c 0 - 380 81 382 91 383 102 c 0 - 384 118 383 135 383 151 c 0 - 383 154 383 157 382 160 c 0 - 358 167 335 175 311 182 c 0xea - 287 189 262 188 237 186 c 0 - 233 186 228 186 225 185 c 0 - 218 196 218 196 226 202 c 0 - 255 222 285 242 313 263 c 0 - 345 286 375 310 406 334 c 0 - 415 340 423 348 433 353 c 1 - 437 348 436 343 436 338 c 0 - 435 312 434 285 433 258 c 2 - 433 196 l 1 - 437 195 440 194 444 194 c 0 - 463 194 483 195 502 195 c 2 - 520 195 l 2 - 521 193 522 190 524 188 c 2 - 524 182 l 1xec -315 212 m 1 - 337 208 357 198 379 196 c 1 - 383 209 385 254 382 264 c 1 - 371 258 321 220 315 212 c 1 -274 672 m 1 - 286 672 l 2 - 296 672 299 669 297 659 c 0 - 293 644 290 629 287 614 c 0 - 270 543 256 471 237 400 c 0 - 211 300 190 199 166 99 c 0 - 161 78 155 58 149 38 c 0 - 148 33 145 30 139 29 c 0 - 131 29 124 28 116 28 c 0 - 103 27 99 33 102 45 c 0 - 111 84 121 122 130 161 c 0 - 152 255 174 349 196 444 c 0 - 205 486 212 528 221 570 c 0 - 226 597 233 624 239 651 c 0 - 242 665 251 674 265 672 c 2 - 274 672 l 1 -12 633 m 1xfc - 11 639 10 644 10 650 c 1 - 25 661 40 672 55 682 c 0 - 58 684 62 684 65 683 c 0 - 77 680 89 676 101 672 c 1 - 105 657 106 642 106 627 c 0 - 105 607 106 588 106 568 c 2 - 106 399 l 1 - 106 390 l 2 - 106 382 110 377 117 375 c 2 - 135 369 l 2 - 142 367 142 366 142 355 c 1 - 139 355 136 353 132 353 c 0 - 97 353 61 352 25 352 c 0 - 23 352 22 353 20 353 c 0 - 19 356 19 359 19 362 c 2 - 43 377 l 2 - 49 381 52 386 53 394 c 0 - 53 400 53 406 54 413 c 0 - 57 474 58 535 54 596 c 0 - 53 608 53 620 53 631 c 0 - 53 635 52 639 52 644 c 1 - 37 644 27 634 12 633 c 1xfc -EndSplineSet -EndChar - -StartChar: onehalf -Encoding: 189 189 106 -Width: 520 -GlyphClass: 2 -Flags: MW -HStem: 23 45 322 31 355 13 647 40 -VStem: 53 53<396.5 402> 437 44 -LayerCount: 2 -Fore -SplineSet -125 28 m 2 - 121 28 l 2 - 108 28 104 32 107 45 c 0 - 109 56 112 67 115 77 c 0 - 124 117 133 156 143 195 c 0 - 155 249 168 302 181 356 c 0 - 188 386 195 416 201 447 c 0 - 210 488 218 530 226 572 c 0 - 232 600 238 627 244 654 c 0 - 247 666 254 672 267 672 c 2 - 292 672 l 2 - 301 672 303 669 302 660 c 0 - 299 646 296 631 292 617 c 0 - 276 546 260 474 243 402 c 0 - 238 381 231 359 226 338 c 0 - 208 260 190 182 172 105 c 0 - 167 83 160 61 155 40 c 0 - 153 33 149 29 141 29 c 0 - 136 29 131 28 125 28 c 2 -386 69 m 1 - 392 68 395 68 398 68 c 0 - 421 69 444 71 468 73 c 0 - 479 74 487 80 491 90 c 0 - 494 95 496 101 498 106 c 0 - 500 112 503 112 510 110 c 1 - 508 82 506 53 503 23 c 0 - 499 22 496 21 493 21 c 0 - 483 22 473 23 462 23 c 0 - 427 22 392 20 358 19 c 0 - 346 19 335 18 324 19 c 0 - 304 19 283 20 263 21 c 0 - 260 21 258 22 256 22 c 0 - 255 24 255 25 254 27 c 0 - 254 51 253 48 272 58 c 0 - 288 66 304 73 320 80 c 0 - 345 91 366 107 388 123 c 0 - 392 126 395 131 398 135 c 0 - 415 156 427 180 435 206 c 0 - 438 219 438 232 437 245 c 0 - 436 254 434 262 431 271 c 0 - 429 278 425 285 420 290 c 0 - 400 310 378 323 349 322 c 0 - 319 320 289 320 260 309 c 1 - 258 315 256 321 255 327 c 0 - 258 333 264 334 268 336 c 0 - 306 351 346 357 387 353 c 0 - 419 350 445 335 464 309 c 0 - 476 294 482 277 483 258 c 0 - 485 239 485 220 480 201 c 0 - 479 201 479 199 479 199 c 2 - 465 163 450 128 420 103 c 0 - 410 94 401 85 392 77 c 0 - 390 75 389 72 386 69 c 1 -52 647 m 1 - 38 647 27 637 14 636 c 1 - 10 641 10 646 10 653 c 1 - 26 664 43 676 59 687 c 1 - 74 685 88 680 102 674 c 1 - 105 658 106 642 106 626 c 2 - 106 576 l 1 - 106 403 l 1 - 106 394 l 2 - 106 385 110 380 118 378 c 0 - 123 376 129 374 135 373 c 0 - 143 370 143 369 142 357 c 1 - 101 352 61 355 21 355 c 1 - 18 362 18 366 24 368 c 0 - 29 371 35 375 40 378 c 0 - 50 383 53 391 53 402 c 0 - 56 448 58 494 57 540 c 0 - 56 573 54 606 53 639 c 0 - 53 642 52 644 52 647 c 1 -EndSplineSet -EndChar - -StartChar: threequarters -Encoding: 190 190 107 -Width: 719 -GlyphClass: 2 -Flags: MW -HStem: 8 15<665 665> 168 13<687 709> 327 34 507 21<97 97> 644 25 -VStem: 10 14 190 50 252 43 564 54<182 182> 568 49<88 129> -LayerCount: 2 -Fore -SplineSet -430 648 m 1xf880 - 441 648 l 2 - 453 647 455 645 453 634 c 0 - 448 610 442 587 437 564 c 0 - 423 500 410 436 393 373 c 0 - 367 274 347 174 323 75 c 0 - 318 55 311 35 306 15 c 0 - 304 9 301 5 295 5 c 0 - 288 5 280 3 273 3 c 0 - 259 3 255 8 259 21 c 0 - 264 43 269 65 275 88 c 0 - 283 120 290 152 297 184 c 0 - 316 262 334 339 351 416 c 0 - 357 443 362 470 368 497 c 0 - 376 539 385 580 394 622 c 0 - 395 625 395 628 397 632 c 0 - 400 642 406 647 417 648 c 2 - 430 648 l 1 - 430 648 l 1xf880 -97 507 m 1 - 97 528 l 1 - 101 529 104 530 107 531 c 0 - 135 537 159 551 178 572 c 0 - 190 586 191 602 190 619 c 0 - 190 625 187 631 181 633 c 0 - 164 641 146 648 127 641 c 0 - 123 640 119 638 114 635 c 0 - 96 625 77 615 58 605 c 1 - 51 608 48 613 45 620 c 1 - 57 632 70 641 84 649 c 0 - 114 665 146 670 180 669 c 0 - 198 668 215 662 229 649 c 0 - 232 646 235 641 236 637 c 0 - 238 630 239 622 240 614 c 0 - 242 593 233 575 219 560 c 0 - 217 558 216 556 214 554 c 1 - 224 549 234 545 244 542 c 0 - 273 531 288 510 294 480 c 0 - 297 460 295 440 295 421 c 0 - 295 415 293 410 290 405 c 0 - 281 387 269 370 254 356 c 0 - 243 345 228 339 213 334 c 0 - 200 331 186 329 172 327 c 0xf880 - 134 322 98 329 63 342 c 0 - 40 351 23 367 14 389 c 0 - 10 398 10 408 10 418 c 0 - 11 427 15 433 24 438 c 1 - 25 434 26 431 27 428 c 0 - 30 420 32 412 37 405 c 0 - 57 378 83 361 118 361 c 0 - 137 361 157 362 176 363 c 0 - 186 363 196 365 205 368 c 0 - 225 374 237 390 245 408 c 0xf840 - 255 427 255 449 252 471 c 0 - 248 500 208 530 178 521 c 0 - 166 517 153 515 141 512 c 0 - 127 507 113 506 97 507 c 1 -709 168 m 1 - 703 166 696 165 691 162 c 0 - 670 152 648 147 625 144 c 0 - 623 144 621 144 618 143 c 0 - 617 138 617 134 617 129 c 2 - 617 71 l 2 - 617 48 624 38 651 27 c 0 - 655 26 659 25 664 23 c 1 - 664 18 665 14 665 8 c 1 - 659 8 654 8 650 7 c 2 - 614 7 l 2 - 587 6 559 5 531 4 c 0 - 527 3 522 2 517 6 c 1 - 517 22 l 2 - 520 23 523 24 527 25 c 0xfa80 - 530 26 534 27 538 28 c 0 - 551 32 562 39 564 56 c 0 - 564 66 567 77 568 88 c 0 - 569 104 568 121 568 137 c 0 - 568 140 568 143 567 146 c 0 - 543 153 520 161 496 168 c 0 - 472 175 447 174 422 172 c 0 - 418 172 413 172 409 171 c 0 - 403 182 403 182 411 188 c 0 - 440 208 470 228 498 249 c 0 - 529 272 560 296 591 320 c 0 - 600 326 608 334 617 339 c 1 - 622 334 621 329 621 324 c 0 - 620 297 618 271 618 244 c 2 - 618 182 l 2 - 621 181 625 180 629 180 c 0 - 648 180 668 181 687 181 c 2 - 704 181 l 2xfd80 - 706 178 707 176 709 174 c 2 - 709 168 l 1 -499 198 m 1 - 521 193 542 184 564 182 c 1xf880 - 568 195 569 240 567 250 c 1 - 556 244 505 206 499 198 c 1 -EndSplineSet -EndChar - -StartChar: Agrave -Encoding: 192 192 108 -Width: 727 -GlyphClass: 2 -Flags: MW -HStem: -1 32 0 23<182 182> 260 55<266 438 433 480.5> 746 20G<405 407> -VStem: 30 152 30 667<2 2> -LayerCount: 2 -Fore -SplineSet -407 766 m 0x74 - 408 764 408 763 409 761 c 0 - 423 718 438 675 453 631 c 0 - 461 607 470 583 476 558 c 0 - 478 549 482 541 484 533 c 0 - 499 481 514 428 529 376 c 0 - 537 348 547 321 555 293 c 0 - 575 234 589 173 606 113 c 0 - 611 95 617 77 625 60 c 0 - 629 49 638 42 649 40 c 0 - 661 37 673 35 685 33 c 0 - 687 33 690 33 693 32 c 0 - 694 22 695 12 697 2 c 1 - 685 1 672 -1 660 -1 c 0 - 633 -2 606 -1 578 -1 c 0 - 556 -1 533 0 509 0 c 0 - 501 0 501 0 501 9 c 0 - 500 24 501 21 512 23 c 0x74 - 518 25 524 25 530 27 c 0 - 536 28 541 29 546 31 c 0 - 555 35 559 42 557 52 c 0 - 555 59 553 67 552 75 c 0xb4 - 546 94 540 114 535 134 c 0 - 529 155 523 177 516 198 c 0 - 510 217 503 237 490 254 c 0 - 487 258 483 260 478 260 c 0 - 465 262 452 261 438 261 c 0 - 421 259 404 260 387 260 c 2 - 266 260 l 1 - 239 260 l 2 - 238 260 236 260 236 259 c 0 - 230 254 223 249 219 243 c 0 - 200 209 185 173 172 137 c 0 - 162 110 150 84 139 58 c 0 - 137 53 135 48 138 44 c 0 - 142 39 147 34 152 30 c 0 - 161 24 171 25 182 23 c 1 - 182 0 l 1 - 131 -1 80 6 30 2 c 1 - 31 7 31 11 32 15 c 0 - 33 18 36 21 38 22 c 0 - 41 24 44 25 47 26 c 0 - 65 30 76 42 83 58 c 0 - 94 86 105 115 116 143 c 0x78 - 129 173 142 202 154 233 c 0 - 164 261 179 287 191 315 c 0 - 206 348 220 382 235 415 c 0 - 245 439 254 462 264 486 c 0 - 274 509 282 532 293 555 c 0 - 304 579 313 604 321 628 c 0 - 327 648 337 665 347 683 c 0 - 354 694 359 706 364 718 c 0 - 370 730 376 741 380 753 c 0 - 383 761 388 765 396 765 c 0 - 399 766 403 766 407 766 c 0x74 -378 615 m 1 - 375 611 373 609 372 607 c 0 - 367 596 361 585 357 573 c 0 - 348 549 340 524 331 500 c 0 - 309 443 288 385 262 329 c 0 - 261 326 260 323 259 318 c 1 - 268 318 275 318 282 317 c 0 - 294 317 306 318 317 317 c 0 - 325 317 332 316 339 316 c 2 - 352 316 l 2 - 379 315 406 314 433 315 c 0 - 443 315 454 317 465 318 c 1 - 464 325 464 331 462 338 c 0 - 460 346 457 354 455 362 c 0 - 444 396 433 431 423 466 c 0 - 414 493 406 520 398 548 c 0 - 393 566 387 584 381 603 c 0 - 380 606 379 609 378 615 c 1 -439 870 m 0 - 437 859 433 849 426 840 c 0 - 425 839 422 838 420 838 c 0 - 418 839 415 840 414 841 c 0 - 399 850 385 859 371 867 c 0 - 362 873 352 878 342 883 c 0 - 331 888 329 896 334 905 c 0 - 336 909 337 914 339 918 c 0 - 343 928 351 930 360 925 c 0 - 383 911 405 897 427 884 c 0 - 429 883 430 881 432 881 c 0 - 438 879 440 875 439 870 c 0 -EndSplineSet -EndChar - -StartChar: Aacute -Encoding: 193 193 109 -Width: 727 -GlyphClass: 2 -Flags: MW -HStem: -1 32 0 23<182 182> 260 55<266 438 433 480.5> 746 20G<405 407> -VStem: 30 152 30 667<2 2> -LayerCount: 2 -Fore -SplineSet -407 766 m 0x74 - 408 764 408 763 409 761 c 0 - 423 718 438 675 453 631 c 0 - 461 607 470 583 476 558 c 0 - 478 549 482 541 484 533 c 0 - 499 481 514 428 529 376 c 0 - 537 348 547 321 555 293 c 0 - 575 234 589 173 606 113 c 0 - 611 95 617 77 625 60 c 0 - 629 49 638 42 649 40 c 0 - 661 37 673 35 685 33 c 0 - 687 33 690 33 693 32 c 0 - 694 22 695 12 697 2 c 1 - 685 1 672 -1 660 -1 c 0 - 633 -2 606 -1 578 -1 c 0 - 556 -1 533 0 509 0 c 0 - 501 0 501 0 501 9 c 0 - 500 24 501 21 512 23 c 0x74 - 518 25 524 25 530 27 c 0 - 536 28 541 29 546 31 c 0 - 555 35 559 42 557 52 c 0 - 555 59 553 67 552 75 c 0xb4 - 546 94 540 114 535 134 c 0 - 529 155 523 177 516 198 c 0 - 510 217 503 237 490 254 c 0 - 487 258 483 260 478 260 c 0 - 465 262 452 261 438 261 c 0 - 421 259 404 260 387 260 c 2 - 266 260 l 1 - 239 260 l 2 - 238 260 236 260 236 259 c 0 - 230 254 223 249 219 243 c 0 - 200 209 185 173 172 137 c 0 - 162 110 150 84 139 58 c 0 - 137 53 135 48 138 44 c 0 - 142 39 147 34 152 30 c 0 - 161 24 171 25 182 23 c 1 - 182 0 l 1 - 131 -1 80 6 30 2 c 1 - 31 7 31 11 32 15 c 0 - 33 18 36 21 38 22 c 0 - 41 24 44 25 47 26 c 0 - 65 30 76 42 83 58 c 0 - 94 86 105 115 116 143 c 0x78 - 129 173 142 202 154 233 c 0 - 164 261 179 287 191 315 c 0 - 206 348 220 382 235 415 c 0 - 245 439 254 462 264 486 c 0 - 274 509 282 532 293 555 c 0 - 304 579 313 604 321 628 c 0 - 327 648 337 665 347 683 c 0 - 354 694 359 706 364 718 c 0 - 370 730 376 741 380 753 c 0 - 383 761 388 765 396 765 c 0 - 399 766 403 766 407 766 c 0x74 -378 615 m 1 - 375 611 373 609 372 607 c 0 - 367 596 361 585 357 573 c 0 - 348 549 340 524 331 500 c 0 - 309 443 288 385 262 329 c 0 - 261 326 260 323 259 318 c 1 - 268 318 275 318 282 317 c 0 - 294 317 306 318 317 317 c 0 - 325 317 332 316 339 316 c 2 - 352 316 l 2 - 379 315 406 314 433 315 c 0 - 443 315 454 317 465 318 c 1 - 464 325 464 331 462 338 c 0 - 460 346 457 354 455 362 c 0 - 444 396 433 431 423 466 c 0 - 414 493 406 520 398 548 c 0 - 393 566 387 584 381 603 c 0 - 380 606 379 609 378 615 c 1 -332 872 m 0 - 332 878 335 881 339 883 c 0 - 354 891 368 899 382 910 c 0 - 392 917 404 923 415 928 c 0 - 420 931 428 928 431 923 c 0 - 435 915 438 908 440 900 c 0 - 441 895 439 891 435 888 c 0 - 424 882 414 877 404 871 c 0 - 400 869 396 866 392 863 c 2 - 356 842 l 2 - 348 838 346 839 342 846 c 0 - 338 854 334 863 332 872 c 0 -EndSplineSet -EndChar - -StartChar: Acircumflex -Encoding: 194 194 110 -Width: 727 -GlyphClass: 2 -Flags: MW -HStem: -1 32 0 23<182 182> 260 55<266 438 433 480.5> 746 20G<405 407> -VStem: 30 152 30 667<2 2> -LayerCount: 2 -Fore -SplineSet -407 766 m 0x74 - 408 764 408 763 409 761 c 0 - 423 718 438 675 453 631 c 0 - 461 607 470 583 476 558 c 0 - 478 549 482 541 484 533 c 0 - 499 481 514 428 529 376 c 0 - 537 348 547 321 555 293 c 0 - 575 234 589 173 606 113 c 0 - 611 95 617 77 625 60 c 0 - 629 49 638 42 649 40 c 0 - 661 37 673 35 685 33 c 0 - 687 33 690 33 693 32 c 0 - 694 22 695 12 697 2 c 1 - 685 1 672 -1 660 -1 c 0 - 633 -2 606 -1 578 -1 c 0 - 556 -1 533 0 509 0 c 0 - 501 0 501 0 501 9 c 0 - 500 24 501 21 512 23 c 0x74 - 518 25 524 25 530 27 c 0 - 536 28 541 29 546 31 c 0 - 555 35 559 42 557 52 c 0 - 555 59 553 67 552 75 c 0xb4 - 546 94 540 114 535 134 c 0 - 529 155 523 177 516 198 c 0 - 510 217 503 237 490 254 c 0 - 487 258 483 260 478 260 c 0 - 465 262 452 261 438 261 c 0 - 421 259 404 260 387 260 c 2 - 266 260 l 1 - 239 260 l 2 - 238 260 236 260 236 259 c 0 - 230 254 223 249 219 243 c 0 - 200 209 185 173 172 137 c 0 - 162 110 150 84 139 58 c 0 - 137 53 135 48 138 44 c 0 - 142 39 147 34 152 30 c 0 - 161 24 171 25 182 23 c 1 - 182 0 l 1 - 131 -1 80 6 30 2 c 1 - 31 7 31 11 32 15 c 0 - 33 18 36 21 38 22 c 0 - 41 24 44 25 47 26 c 0 - 65 30 76 42 83 58 c 0 - 94 86 105 115 116 143 c 0x78 - 129 173 142 202 154 233 c 0 - 164 261 179 287 191 315 c 0 - 206 348 220 382 235 415 c 0 - 245 439 254 462 264 486 c 0 - 274 509 282 532 293 555 c 0 - 304 579 313 604 321 628 c 0 - 327 648 337 665 347 683 c 0 - 354 694 359 706 364 718 c 0 - 370 730 376 741 380 753 c 0 - 383 761 388 765 396 765 c 0 - 399 766 403 766 407 766 c 0x74 -378 615 m 1 - 375 611 373 609 372 607 c 0 - 367 596 361 585 357 573 c 0 - 348 549 340 524 331 500 c 0 - 309 443 288 385 262 329 c 0 - 261 326 260 323 259 318 c 1 - 268 318 275 318 282 317 c 0 - 294 317 306 318 317 317 c 0 - 325 317 332 316 339 316 c 2 - 352 316 l 2 - 379 315 406 314 433 315 c 0 - 443 315 454 317 465 318 c 1 - 464 325 464 331 462 338 c 0 - 460 346 457 354 455 362 c 0 - 444 396 433 431 423 466 c 0 - 414 493 406 520 398 548 c 0 - 393 566 387 584 381 603 c 0 - 380 606 379 609 378 615 c 1 -392 944 m 0 - 397 944 401 941 404 937 c 0 - 421 918 438 900 456 881 c 0 - 457 880 458 878 460 877 c 0 - 466 871 467 867 463 860 c 0 - 458 853 452 846 446 840 c 0 - 443 836 439 836 436 840 c 0 - 424 852 412 865 400 877 c 0 - 400 878 399 879 399 879 c 1 - 391 886 390 886 382 879 c 0 - 370 867 359 855 347 843 c 0 - 340 837 338 837 332 843 c 0 - 327 849 323 854 319 861 c 0 - 314 868 315 873 322 879 c 0 - 334 890 345 902 356 915 c 0 - 364 924 373 932 382 941 c 0 - 385 943 389 943 392 944 c 0 -EndSplineSet -EndChar - -StartChar: Atilde -Encoding: 195 195 111 -Width: 727 -GlyphClass: 2 -Flags: MW -HStem: -1 32 0 23<182 182> 260 55<266 438 433 480.5> 746 20G<405 407> 838 40 845 44<363.5 379> -VStem: 30 152 30 667<2 2> -LayerCount: 2 -Fore -SplineSet -407 766 m 0x71 - 408 764 408 763 409 761 c 0 - 423 718 438 675 453 631 c 0 - 461 607 470 583 476 558 c 0 - 478 549 482 541 484 533 c 0 - 499 481 514 428 529 376 c 0 - 537 348 547 321 555 293 c 0 - 575 234 589 173 606 113 c 0 - 611 95 617 77 625 60 c 0 - 629 49 638 42 649 40 c 0 - 661 37 673 35 685 33 c 0 - 687 33 690 33 693 32 c 0 - 694 22 695 12 697 2 c 1 - 685 1 672 -1 660 -1 c 0 - 633 -2 606 -1 578 -1 c 0 - 556 -1 533 0 509 0 c 0 - 501 0 501 0 501 9 c 0 - 500 24 501 21 512 23 c 0x71 - 518 25 524 25 530 27 c 0 - 536 28 541 29 546 31 c 0 - 555 35 559 42 557 52 c 0 - 555 59 553 67 552 75 c 0xb1 - 546 94 540 114 535 134 c 0 - 529 155 523 177 516 198 c 0 - 510 217 503 237 490 254 c 0 - 487 258 483 260 478 260 c 0 - 465 262 452 261 438 261 c 0 - 421 259 404 260 387 260 c 2 - 266 260 l 1 - 239 260 l 2 - 238 260 236 260 236 259 c 0 - 230 254 223 249 219 243 c 0 - 200 209 185 173 172 137 c 0 - 162 110 150 84 139 58 c 0 - 137 53 135 48 138 44 c 0 - 142 39 147 34 152 30 c 0 - 161 24 171 25 182 23 c 1 - 182 0 l 1 - 131 -1 80 6 30 2 c 1 - 31 7 31 11 32 15 c 0 - 33 18 36 21 38 22 c 0 - 41 24 44 25 47 26 c 0 - 65 30 76 42 83 58 c 0 - 94 86 105 115 116 143 c 0x72 - 129 173 142 202 154 233 c 0 - 164 261 179 287 191 315 c 0 - 206 348 220 382 235 415 c 0 - 245 439 254 462 264 486 c 0 - 274 509 282 532 293 555 c 0 - 304 579 313 604 321 628 c 0 - 327 648 337 665 347 683 c 0 - 354 694 359 706 364 718 c 0 - 370 730 376 741 380 753 c 0 - 383 761 388 765 396 765 c 0 - 399 766 403 766 407 766 c 0x71 -378 615 m 1 - 375 611 373 609 372 607 c 0 - 367 596 361 585 357 573 c 0 - 348 549 340 524 331 500 c 0 - 309 443 288 385 262 329 c 0 - 261 326 260 323 259 318 c 1 - 268 318 275 318 282 317 c 0 - 294 317 306 318 317 317 c 0 - 325 317 332 316 339 316 c 2 - 352 316 l 2 - 379 315 406 314 433 315 c 0 - 443 315 454 317 465 318 c 1 - 464 325 464 331 462 338 c 0 - 460 346 457 354 455 362 c 0 - 444 396 433 431 423 466 c 0 - 414 493 406 520 398 548 c 0 - 393 566 387 584 381 603 c 0 - 380 606 379 609 378 615 c 1 -321 847 m 1x75 - 328 862 336 876 351 885 c 0 - 355 887 361 889 366 889 c 0x75 - 376 890 385 887 394 883 c 0 - 398 881 402 880 407 878 c 0 - 416 875 423 877 429 884 c 0 - 434 891 434 891 442 888 c 0 - 446 886 450 885 453 884 c 0 - 459 881 461 878 459 872 c 0 - 457 865 454 859 451 853 c 2 - 448 850 l 2 - 442 839 431 837 419 838 c 0 - 409 838 399 840 389 843 c 0 - 385 845 381 845 377 845 c 0x79 - 370 846 365 844 361 838 c 0 - 358 833 355 833 350 835 c 0 - 341 839 332 843 321 847 c 1x75 -EndSplineSet -EndChar - -StartChar: Adieresis -Encoding: 196 196 112 -Width: 727 -GlyphClass: 2 -Flags: MW -HStem: -1 32 0 23<182 182> 260 55<266 438 433 480.5> 746 20G<405 407> 845 54<339.5 344 344 350 427.5 432 432 436 436 438> -VStem: 30 152 313 59 401 59 -LayerCount: 2 -Fore -SplineSet -407 766 m 0x7e - 408 764 408 763 409 761 c 0 - 423 718 438 675 453 631 c 0 - 461 607 470 583 476 558 c 0 - 478 549 482 541 484 533 c 0 - 499 481 514 428 529 376 c 0 - 537 348 547 321 555 293 c 0 - 575 234 589 173 606 113 c 0 - 611 95 617 77 625 60 c 0 - 629 49 638 42 649 40 c 0 - 661 37 673 35 685 33 c 0 - 687 33 690 33 693 32 c 0 - 694 22 695 12 697 2 c 1 - 685 1 672 -1 660 -1 c 0 - 633 -2 606 -1 578 -1 c 0 - 556 -1 533 0 509 0 c 0 - 501 0 501 0 501 9 c 0 - 500 24 501 21 512 23 c 0x7e - 518 25 524 25 530 27 c 0 - 536 28 541 29 546 31 c 0 - 555 35 559 42 557 52 c 0 - 555 59 553 67 552 75 c 0xbe - 546 94 540 114 535 134 c 0 - 529 155 523 177 516 198 c 0 - 510 217 503 237 490 254 c 0 - 487 258 483 260 478 260 c 0 - 465 262 452 261 438 261 c 0 - 421 259 404 260 387 260 c 2 - 266 260 l 1 - 239 260 l 2 - 238 260 236 260 236 259 c 0 - 230 254 223 249 219 243 c 0 - 200 209 185 173 172 137 c 0 - 162 110 150 84 139 58 c 0 - 137 53 135 48 138 44 c 0 - 142 39 147 34 152 30 c 0 - 161 24 171 25 182 23 c 1 - 182 0 l 1 - 131 -1 80 6 30 2 c 1 - 31 7 31 11 32 15 c 0 - 33 18 36 21 38 22 c 0 - 41 24 44 25 47 26 c 0 - 65 30 76 42 83 58 c 0 - 94 86 105 115 116 143 c 0 - 129 173 142 202 154 233 c 0 - 164 261 179 287 191 315 c 0 - 206 348 220 382 235 415 c 0 - 245 439 254 462 264 486 c 0 - 274 509 282 532 293 555 c 0 - 304 579 313 604 321 628 c 0 - 327 648 337 665 347 683 c 0 - 354 694 359 706 364 718 c 0 - 370 730 376 741 380 753 c 0 - 383 761 388 765 396 765 c 0 - 399 766 403 766 407 766 c 0x7e -378 615 m 1 - 375 611 373 609 372 607 c 0 - 367 596 361 585 357 573 c 0 - 348 549 340 524 331 500 c 0 - 309 443 288 385 262 329 c 0 - 261 326 260 323 259 318 c 1 - 268 318 275 318 282 317 c 0 - 294 317 306 318 317 317 c 0 - 325 317 332 316 339 316 c 2 - 352 316 l 2 - 379 315 406 314 433 315 c 0 - 443 315 454 317 465 318 c 1 - 464 325 464 331 462 338 c 0 - 460 346 457 354 455 362 c 0 - 444 396 433 431 423 466 c 0 - 414 493 406 520 398 548 c 0 - 393 566 387 584 381 603 c 0 - 380 606 379 609 378 615 c 1 -432 845 m 2x7f - 423 845 414 845 407 853 c 0 - 399 861 399 876 406 885 c 0 - 408 888 410 890 412 893 c 0 - 414 897 417 899 421 899 c 0 - 426 899 432 898 436 899 c 0 - 444 899 449 896 452 891 c 0 - 457 883 461 876 460 867 c 0 - 459 853 451 845 438 845 c 2 - 432 845 l 2x7f -344 845 m 2x7e - 335 845 326 845 319 853 c 0 - 312 861 311 876 318 885 c 0 - 320 888 322 890 324 893 c 0 - 326 897 329 899 333 899 c 2 - 350 899 l 2 - 356 899 360 897 364 892 c 0 - 369 884 373 877 372 867 c 0 - 372 853 363 845 350 845 c 2 - 344 845 l 2x7e -EndSplineSet -EndChar - -StartChar: Aring -Encoding: 197 197 113 -Width: 727 -GlyphClass: 2 -Flags: MW -HStem: -1 32 0 23<182 182> 260 55<266 438 433 480.5> 746 20G<405 407> 838 38<390.5 391.5> 899 41 -VStem: 30 152 347 40 405 36 -LayerCount: 2 -Fore -SplineSet -407 766 m 0x7680 - 408 764 408 763 409 761 c 0 - 423 718 438 675 453 631 c 0 - 461 607 470 583 476 558 c 0 - 478 549 482 541 484 533 c 0 - 499 481 514 428 529 376 c 0 - 537 348 547 321 555 293 c 0 - 575 234 589 173 606 113 c 0 - 611 95 617 77 625 60 c 0 - 629 49 638 42 649 40 c 0 - 661 37 673 35 685 33 c 0 - 687 33 690 33 693 32 c 0 - 694 22 695 12 697 2 c 1 - 685 1 672 -1 660 -1 c 0 - 633 -2 606 -1 578 -1 c 0 - 556 -1 533 0 509 0 c 0 - 501 0 501 0 501 9 c 0 - 500 24 501 21 512 23 c 0x7680 - 518 25 524 25 530 27 c 0 - 536 28 541 29 546 31 c 0 - 555 35 559 42 557 52 c 0 - 555 59 553 67 552 75 c 0xb680 - 546 94 540 114 535 134 c 0 - 529 155 523 177 516 198 c 0 - 510 217 503 237 490 254 c 0 - 487 258 483 260 478 260 c 0 - 465 262 452 261 438 261 c 0 - 421 259 404 260 387 260 c 2 - 266 260 l 1 - 239 260 l 2 - 238 260 236 260 236 259 c 0 - 230 254 223 249 219 243 c 0 - 200 209 185 173 172 137 c 0 - 162 110 150 84 139 58 c 0 - 137 53 135 48 138 44 c 0 - 142 39 147 34 152 30 c 0 - 161 24 171 25 182 23 c 1 - 182 0 l 1 - 131 -1 80 6 30 2 c 1 - 31 7 31 11 32 15 c 0 - 33 18 36 21 38 22 c 0 - 41 24 44 25 47 26 c 0 - 65 30 76 42 83 58 c 0 - 94 86 105 115 116 143 c 0 - 129 173 142 202 154 233 c 0 - 164 261 179 287 191 315 c 0 - 206 348 220 382 235 415 c 0 - 245 439 254 462 264 486 c 0 - 274 509 282 532 293 555 c 0 - 304 579 313 604 321 628 c 0 - 327 648 337 665 347 683 c 0 - 354 694 359 706 364 718 c 0 - 370 730 376 741 380 753 c 0 - 383 761 388 765 396 765 c 0 - 399 766 403 766 407 766 c 0x7680 -378 615 m 1 - 375 611 373 609 372 607 c 0 - 367 596 361 585 357 573 c 0 - 348 549 340 524 331 500 c 0 - 309 443 288 385 262 329 c 0 - 261 326 260 323 259 318 c 1 - 268 318 275 318 282 317 c 0 - 294 317 306 318 317 317 c 0 - 325 317 332 316 339 316 c 2 - 352 316 l 2 - 379 315 406 314 433 315 c 0 - 443 315 454 317 465 318 c 1 - 464 325 464 331 462 338 c 0 - 460 346 457 354 455 362 c 0 - 444 396 433 431 423 466 c 0 - 414 493 406 520 398 548 c 0 - 393 566 387 584 381 603 c 0 - 380 606 379 609 378 615 c 1 -347 886 m 1x7f80 - 346 901 351 913 359 924 c 0 - 362 927 364 930 367 932 c 0x7780 - 383 940 399 944 416 936 c 2 - 422 933 l 2 - 434 927 441 917 442 904 c 0 - 443 893 442 882 440 871 c 0x7680 - 436 857 425 848 411 843 c 0 - 408 842 404 841 400 840 c 0 - 397 839 393 838 390 838 c 0x7e80 - 374 842 359 849 351 864 c 0 - 348 870 348 879 346 886 c 1 - 347 886 l 1x7f80 -405 891 m 0x7e80 - 405 895 405 898 400 899 c 0 - 395 901 388 899 386 895 c 0x7780 - 385 889 386 884 387 878 c 0 - 387 877 390 876 391 876 c 0 - 399 876 405 883 405 891 c 0x7e80 -EndSplineSet -EndChar - -StartChar: AE -Encoding: 198 198 114 -Width: 1021 -GlyphClass: 2 -Flags: MW -HStem: -4 22<158 158> -4 27 -3 21G<478 495 478 478 674.5 683 683 851 991 995 991 991> -3 49<683 890> -1 22<22 24 22 84 22 23> 255 54<244 399> 265 50<677.5 700 694.5 700 694.5 751> 709 39<732 800.5> 737 20G<376 381 381 381> -VStem: 11 105 600 66<247 254.5 247 255> 602 67<420 509> 957 19 959 13 989 22<123 125> -LayerCount: 2 -Fore -SplineSet -992 136 m 1x1312 - 998 136 1004 137 1010 137 c 1 - 1010 134 1011 131 1011 128 c 0 - 1011 94 1010 60 1009 25 c 0 - 1009 19 1007 12 1006 5 c 0 - 1005 0 1001 -3 995 -3 c 2 - 991 -3 l 1x1312 - 940 -6 l 1x4312 - 921 -6 l 2 - 897 -5 874 -3 851 -3 c 2 - 683 -3 l 2 - 666 -3 650 -5 633 -5 c 0 - 606 -5 579 -5 552 -4 c 0 - 532 -4 513 -4 495 -3 c 2 - 478 -3 l 1x1312 - 476 3 477 9 477 15 c 1x2312 - 485 20 493 20 501 22 c 0 - 504 23 507 22 510 23 c 0 - 529 26 536 35 531 54 c 0x4312 - 525 79 518 103 511 128 c 0 - 505 149 499 170 492 192 c 0 - 486 211 480 230 468 246 c 0 - 464 251 460 255 453 255 c 0 - 444 256 435 257 427 256 c 0 - 404 253 382 255 359 255 c 2 - 244 255 l 2 - 238 255 231 254 225 254 c 0 - 211 256 203 248 197 238 c 0 - 187 220 178 202 170 184 c 0 - 162 166 156 148 149 130 c 0 - 139 106 129 82 119 59 c 0 - 112 42 115 32 132 25 c 0 - 140 21 149 20 159 18 c 1x8552 - 162 12 159 5 158 -4 c 1x4352 - 133 -4 108 -3 84 -1 c 0 - 59 0 35 -1 11 -1 c 1 - 10 14 11 16 22 21 c 1 - 24 21 l 1 - 45 26 57 41 64 60 c 0 - 71 77 77 94 84 111 c 0 - 99 148 115 185 130 222 c 0 - 144 260 164 295 179 333 c 0 - 197 374 214 415 231 457 c 0 - 246 492 262 526 276 561 c 0 - 283 579 290 596 296 614 c 0 - 303 636 313 656 324 675 c 0 - 332 688 337 701 343 715 c 0 - 348 724 352 733 356 742 c 0 - 359 753 366 758 376 757 c 2 - 381 757 l 2 - 383 756 384 756 384 755 c 0x0ad2 - 400 709 416 664 431 618 c 0 - 438 596 444 573 451 551 c 0 - 461 521 470 491 479 460 c 0 - 487 434 494 408 501 382 c 0 - 513 342 526 303 538 264 c 0 - 542 250 546 237 550 224 c 0 - 560 185 571 145 582 106 c 0 - 583 101 585 95 590 92 c 0 - 592 93 594 94 595 96 c 0 - 596 100 596 103 596 107 c 0 - 597 156 600 206 600 255 c 0 - 602 321 602 387 602 453 c 0 - 602 511 602 570 598 629 c 0 - 597 643 597 657 597 672 c 0 - 597 674 596 677 596 680 c 0 - 593 703 581 712 564 713 c 0 - 558 714 553 715 547 716 c 1 - 547 743 l 1 - 554 746 560 747 567 747 c 0 - 577 748 586 749 596 749 c 0 - 601 750 606 750 611 749 c 0 - 634 748 658 748 682 749 c 0 - 702 750 722 748 742 748 c 0 - 767 748 792 749 816 749 c 0 - 824 749 832 750 840 750 c 0 - 880 754 921 751 961 750 c 0 - 967 750 973 748 980 747 c 1 - 979 714 980 682 976 649 c 1 - 970 647 964 644 957 641 c 1 - 955 645 952 648 951 652 c 0 - 946 661 942 670 938 680 c 0 - 935 685 932 689 929 694 c 0 - 921 705 912 710 897 707 c 0 - 885 706 871 706 858 707 c 0 - 835 707 812 709 789 709 c 0 - 772 709 754 707 737 707 c 2 - 686 704 l 2 - 670 703 669 702 669 687 c 0 - 669 627 670 568 669 509 c 0 - 669 477 667 444 667 412 c 0 - 666 383 667 354 667 324 c 0 - 667 322 667 320 668 316 c 1 - 679 316 689 315 700 315 c 0x131a - 759 314 819 313 878 312 c 0 - 891 311 903 312 916 312 c 0 - 935 312 944 319 949 336 c 0 - 951 341 953 347 955 353 c 1 - 970 353 l 1 - 975 332 972 310 972 289 c 0 - 973 268 972 246 970 224 c 0 - 966 223 962 223 959 222 c 0 - 957 224 956 225 956 226 c 0 - 954 232 952 238 951 245 c 0 - 948 254 942 259 932 260 c 0 - 903 263 875 265 846 263 c 0 - 814 261 783 264 751 265 c 0 - 729 266 707 266 685 265 c 0 - 670 265 666 262 666 247 c 0 - 665 207 664 169 663 130 c 2 - 663 77 l 2 - 663 73 663 68 664 64 c 0 - 668 51 671 47 686 45 c 0x1326 - 714 42 741 44 769 45 c 0 - 807 46 845 45 883 46 c 0 - 897 46 912 47 927 48 c 0 - 946 50 960 59 970 76 c 0 - 978 91 984 107 989 123 c 0 - 989 127 990 131 992 136 c 1x1312 -440 311 m 1x1512 - 442 320 441 326 439 332 c 0 - 425 375 412 417 399 460 c 2 - 375 541 l 2 - 369 559 364 576 359 594 c 0 - 358 597 356 601 354 606 c 1 - 351 603 349 602 349 600 c 0 - 340 579 330 558 322 537 c 0 - 309 502 297 466 284 431 c 0 - 270 396 255 362 241 327 c 0 - 239 323 235 319 239 313 c 0 - 241 313 243 312 245 312 c 0 - 266 311 287 312 308 310 c 0 - 335 307 363 308 391 309 c 0 - 407 309 423 310 440 311 c 1x1512 -EndSplineSet -EndChar - -StartChar: Egrave -Encoding: 200 200 115 -Width: 660 -GlyphClass: 2 -Flags: MW -HStem: -4 42 -3 49<488.5 539> 400 45<330.5 337.5 313.5 338 313.5 365> 715 38<254.5 258 254.5 259> 734 20G -VStem: 108 68<334 377> 561 13 594 26<638.5 660> -LayerCount: 2 -Fore -SplineSet -630 152 m 1xb4 - 629 139 628 127 627 115 c 0 - 624 90 622 65 620 40 c 0 - 619 29 616 19 614 9 c 0 - 614 7 612 4 610 3 c 0x74 - 603 1 596 -1 589 -1 c 0 - 558 -2 526 -3 495 -3 c 0 - 482 -3 470 -2 457 -2 c 0 - 438 -2 420 -3 401 -3 c 0 - 361 -4 322 -5 282 -4 c 0 - 261 -4 239 0 217 2 c 0 - 196 4 174 8 153 7 c 0 - 138 7 123 8 108 9 c 0 - 93 10 79 6 65 0 c 0 - 47 -8 46 -7 35 8 c 0 - 33 10 32 12 31 14 c 0 - 30 17 30 20 34 22 c 0 - 37 23 40 25 44 27 c 0 - 66 35 81 53 94 71 c 0 - 103 84 106 99 106 114 c 0 - 107 147 107 180 107 212 c 0 - 108 260 107 307 108 355 c 0 - 108 399 109 444 109 488 c 0 - 109 505 108 522 108 539 c 0 - 110 578 110 616 106 654 c 0 - 105 667 102 680 99 692 c 0 - 96 700 90 707 83 712 c 0 - 77 716 70 719 63 722 c 0 - 53 725 42 729 31 733 c 1xac - 32 739 34 746 36 754 c 1 - 50 752 64 752 76 750 c 0 - 113 742 149 745 185 749 c 0 - 202 751 219 753 236 752 c 0 - 243 751 251 753 258 753 c 0 - 295 752 332 751 370 750 c 0 - 399 749 429 750 459 750 c 2 - 528 750 l 2 - 532 750 537 749 541 749 c 0 - 557 748 572 747 588 747 c 0 - 596 747 604 748 611 748 c 0 - 619 748 620 746 620 739 c 2 - 620 660 l 2 - 620 649 619 637 618 625 c 1 - 612 626 607 627 601 628 c 0 - 599 629 598 631 597 632 c 0 - 595 635 594 637 594 640 c 0 - 583 672 558 689 528 700 c 0 - 517 704 507 707 496 709 c 0xb5 - 484 711 471 712 458 713 c 0 - 392 717 325 716 259 715 c 0 - 245 715 232 713 218 711 c 0 - 201 709 190 698 181 685 c 0 - 179 682 179 678 179 674 c 0 - 179 643 180 613 180 583 c 0 - 180 553 179 524 179 494 c 0 - 179 477 185 464 200 455 c 0 - 212 448 224 447 236 447 c 0 - 267 445 298 445 329 445 c 0 - 346 445 362 445 378 446 c 2 - 489 452 l 2 - 499 452 509 454 519 457 c 0 - 536 462 547 475 557 489 c 0 - 565 500 565 500 579 497 c 1 - 578 486 577 474 575 463 c 0 - 571 442 572 421 572 400 c 0 - 572 392 573 384 574 376 c 0 - 575 365 574 363 564 358 c 0 - 563 358 562 359 561 359 c 0 - 548 374 531 384 514 394 c 0 - 500 402 486 403 471 402 c 0 - 451 402 430 402 410 401 c 0 - 395 401 380 400 365 400 c 2 - 338 400 l 2 - 323 400 308 400 293 401 c 0 - 271 401 249 402 227 401 c 0 - 215 401 203 401 191 399 c 0 - 182 398 177 391 177 381 c 0 - 176 365 176 349 176 334 c 0 - 175 288 175 242 174 197 c 0 - 173 165 171 133 172 101 c 0 - 172 95 173 89 173 83 c 0 - 174 69 183 61 194 56 c 0 - 204 51 213 48 224 48 c 0 - 235 47 247 46 258 44 c 2 - 260 44 l 1x76 - 268 38 278 40 286 40 c 0 - 315 39 344 39 372 38 c 0 - 385 38 398 38 410 39 c 0xb4 - 422 40 433 42 444 42 c 0 - 471 44 499 46 526 46 c 0 - 552 46 567 59 577 80 c 0x74 - 587 101 594 124 603 146 c 0 - 606 154 606 154 614 154 c 0 - 619 153 624 153 630 152 c 1xb4 -401 872 m 0 - 399 861 395 851 388 842 c 0 - 387 841 384 840 382 840 c 0 - 380 841 377 842 376 843 c 0 - 361 852 347 861 333 869 c 0 - 324 875 314 880 304 885 c 0 - 293 890 291 898 296 907 c 0 - 298 911 299 916 301 920 c 0 - 305 930 313 932 322 927 c 0 - 345 913 367 899 389 886 c 0 - 391 885 392 883 394 883 c 0 - 400 881 402 877 401 872 c 0 -EndSplineSet -EndChar - -StartChar: Eacute -Encoding: 201 201 116 -Width: 660 -GlyphClass: 2 -Flags: MW -HStem: -4 42 -3 49<488.5 539> 400 45<330.5 337.5 313.5 338 313.5 365> 715 38<254.5 258 254.5 259> 734 20G -VStem: 108 68<334 377> 561 13 594 26<638.5 660> -LayerCount: 2 -Fore -SplineSet -630 152 m 1xb4 - 629 139 628 127 627 115 c 0 - 624 90 622 65 620 40 c 0 - 619 29 616 19 614 9 c 0 - 614 7 612 4 610 3 c 0x74 - 603 1 596 -1 589 -1 c 0 - 558 -2 526 -3 495 -3 c 0 - 482 -3 470 -2 457 -2 c 0 - 438 -2 420 -3 401 -3 c 0 - 361 -4 322 -5 282 -4 c 0 - 261 -4 239 0 217 2 c 0 - 196 4 174 8 153 7 c 0 - 138 7 123 8 108 9 c 0 - 93 10 79 6 65 0 c 0 - 47 -8 46 -7 35 8 c 0 - 33 10 32 12 31 14 c 0 - 30 17 30 20 34 22 c 0 - 37 23 40 25 44 27 c 0 - 66 35 81 53 94 71 c 0 - 103 84 106 99 106 114 c 0 - 107 147 107 180 107 212 c 0 - 108 260 107 307 108 355 c 0 - 108 399 109 444 109 488 c 0 - 109 505 108 522 108 539 c 0 - 110 578 110 616 106 654 c 0 - 105 667 102 680 99 692 c 0 - 96 700 90 707 83 712 c 0 - 77 716 70 719 63 722 c 0 - 53 725 42 729 31 733 c 1xac - 32 739 34 746 36 754 c 1 - 50 752 64 752 76 750 c 0 - 113 742 149 745 185 749 c 0 - 202 751 219 753 236 752 c 0 - 243 751 251 753 258 753 c 0 - 295 752 332 751 370 750 c 0 - 399 749 429 750 459 750 c 2 - 528 750 l 2 - 532 750 537 749 541 749 c 0 - 557 748 572 747 588 747 c 0 - 596 747 604 748 611 748 c 0 - 619 748 620 746 620 739 c 2 - 620 660 l 2 - 620 649 619 637 618 625 c 1 - 612 626 607 627 601 628 c 0 - 599 629 598 631 597 632 c 0 - 595 635 594 637 594 640 c 0 - 583 672 558 689 528 700 c 0 - 517 704 507 707 496 709 c 0xb5 - 484 711 471 712 458 713 c 0 - 392 717 325 716 259 715 c 0 - 245 715 232 713 218 711 c 0 - 201 709 190 698 181 685 c 0 - 179 682 179 678 179 674 c 0 - 179 643 180 613 180 583 c 0 - 180 553 179 524 179 494 c 0 - 179 477 185 464 200 455 c 0 - 212 448 224 447 236 447 c 0 - 267 445 298 445 329 445 c 0 - 346 445 362 445 378 446 c 2 - 489 452 l 2 - 499 452 509 454 519 457 c 0 - 536 462 547 475 557 489 c 0 - 565 500 565 500 579 497 c 1 - 578 486 577 474 575 463 c 0 - 571 442 572 421 572 400 c 0 - 572 392 573 384 574 376 c 0 - 575 365 574 363 564 358 c 0 - 563 358 562 359 561 359 c 0 - 548 374 531 384 514 394 c 0 - 500 402 486 403 471 402 c 0 - 451 402 430 402 410 401 c 0 - 395 401 380 400 365 400 c 2 - 338 400 l 2 - 323 400 308 400 293 401 c 0 - 271 401 249 402 227 401 c 0 - 215 401 203 401 191 399 c 0 - 182 398 177 391 177 381 c 0 - 176 365 176 349 176 334 c 0 - 175 288 175 242 174 197 c 0 - 173 165 171 133 172 101 c 0 - 172 95 173 89 173 83 c 0 - 174 69 183 61 194 56 c 0 - 204 51 213 48 224 48 c 0 - 235 47 247 46 258 44 c 2 - 260 44 l 1x76 - 268 38 278 40 286 40 c 0 - 315 39 344 39 372 38 c 0 - 385 38 398 38 410 39 c 0xb4 - 422 40 433 42 444 42 c 0 - 471 44 499 46 526 46 c 0 - 552 46 567 59 577 80 c 0x74 - 587 101 594 124 603 146 c 0 - 606 154 606 154 614 154 c 0 - 619 153 624 153 630 152 c 1xb4 -294 871 m 0 - 294 877 297 880 301 882 c 0 - 316 890 330 898 344 909 c 0 - 354 916 366 922 377 927 c 0 - 382 930 390 927 393 922 c 0 - 397 914 400 907 402 899 c 0 - 403 894 401 890 397 887 c 0 - 386 881 376 876 366 870 c 0 - 362 868 358 865 354 862 c 2 - 318 841 l 2 - 310 837 308 838 304 845 c 0 - 300 853 296 862 294 871 c 0 -EndSplineSet -EndChar - -StartChar: Ecircumflex -Encoding: 202 202 117 -Width: 660 -GlyphClass: 2 -Flags: MW -HStem: -4 42 -3 49<488.5 539> 400 45<330.5 337.5 313.5 338 313.5 365> 715 38<254.5 258 254.5 259> 734 20G -VStem: 108 68<334 377> 561 13 594 26<638.5 660> -LayerCount: 2 -Fore -SplineSet -630 152 m 1xb4 - 629 139 628 127 627 115 c 0 - 624 90 622 65 620 40 c 0 - 619 29 616 19 614 9 c 0 - 614 7 612 4 610 3 c 0x74 - 603 1 596 -1 589 -1 c 0 - 558 -2 526 -3 495 -3 c 0 - 482 -3 470 -2 457 -2 c 0 - 438 -2 420 -3 401 -3 c 0 - 361 -4 322 -5 282 -4 c 0 - 261 -4 239 0 217 2 c 0 - 196 4 174 8 153 7 c 0 - 138 7 123 8 108 9 c 0 - 93 10 79 6 65 0 c 0 - 47 -8 46 -7 35 8 c 0 - 33 10 32 12 31 14 c 0 - 30 17 30 20 34 22 c 0 - 37 23 40 25 44 27 c 0 - 66 35 81 53 94 71 c 0 - 103 84 106 99 106 114 c 0 - 107 147 107 180 107 212 c 0 - 108 260 107 307 108 355 c 0 - 108 399 109 444 109 488 c 0 - 109 505 108 522 108 539 c 0 - 110 578 110 616 106 654 c 0 - 105 667 102 680 99 692 c 0 - 96 700 90 707 83 712 c 0 - 77 716 70 719 63 722 c 0 - 53 725 42 729 31 733 c 1xac - 32 739 34 746 36 754 c 1 - 50 752 64 752 76 750 c 0 - 113 742 149 745 185 749 c 0 - 202 751 219 753 236 752 c 0 - 243 751 251 753 258 753 c 0 - 295 752 332 751 370 750 c 0 - 399 749 429 750 459 750 c 2 - 528 750 l 2 - 532 750 537 749 541 749 c 0 - 557 748 572 747 588 747 c 0 - 596 747 604 748 611 748 c 0 - 619 748 620 746 620 739 c 2 - 620 660 l 2 - 620 649 619 637 618 625 c 1 - 612 626 607 627 601 628 c 0 - 599 629 598 631 597 632 c 0 - 595 635 594 637 594 640 c 0 - 583 672 558 689 528 700 c 0 - 517 704 507 707 496 709 c 0xb5 - 484 711 471 712 458 713 c 0 - 392 717 325 716 259 715 c 0 - 245 715 232 713 218 711 c 0 - 201 709 190 698 181 685 c 0 - 179 682 179 678 179 674 c 0 - 179 643 180 613 180 583 c 0 - 180 553 179 524 179 494 c 0 - 179 477 185 464 200 455 c 0 - 212 448 224 447 236 447 c 0 - 267 445 298 445 329 445 c 0 - 346 445 362 445 378 446 c 2 - 489 452 l 2 - 499 452 509 454 519 457 c 0 - 536 462 547 475 557 489 c 0 - 565 500 565 500 579 497 c 1 - 578 486 577 474 575 463 c 0 - 571 442 572 421 572 400 c 0 - 572 392 573 384 574 376 c 0 - 575 365 574 363 564 358 c 0 - 563 358 562 359 561 359 c 0 - 548 374 531 384 514 394 c 0 - 500 402 486 403 471 402 c 0 - 451 402 430 402 410 401 c 0 - 395 401 380 400 365 400 c 2 - 338 400 l 2 - 323 400 308 400 293 401 c 0 - 271 401 249 402 227 401 c 0 - 215 401 203 401 191 399 c 0 - 182 398 177 391 177 381 c 0 - 176 365 176 349 176 334 c 0 - 175 288 175 242 174 197 c 0 - 173 165 171 133 172 101 c 0 - 172 95 173 89 173 83 c 0 - 174 69 183 61 194 56 c 0 - 204 51 213 48 224 48 c 0 - 235 47 247 46 258 44 c 2 - 260 44 l 1x76 - 268 38 278 40 286 40 c 0 - 315 39 344 39 372 38 c 0 - 385 38 398 38 410 39 c 0xb4 - 422 40 433 42 444 42 c 0 - 471 44 499 46 526 46 c 0 - 552 46 567 59 577 80 c 0x74 - 587 101 594 124 603 146 c 0 - 606 154 606 154 614 154 c 0 - 619 153 624 153 630 152 c 1xb4 -353 940 m 0 - 358 940 362 937 365 933 c 0 - 382 914 399 896 417 877 c 0 - 418 876 419 874 421 873 c 0 - 427 867 428 863 424 856 c 0 - 419 849 413 842 407 836 c 0 - 404 832 400 832 397 836 c 0 - 385 848 373 861 361 873 c 0 - 361 874 360 875 360 875 c 1 - 352 882 351 882 343 875 c 0 - 331 863 320 851 308 839 c 0 - 301 833 299 833 293 839 c 0 - 288 845 284 850 280 857 c 0 - 275 864 276 869 283 875 c 0 - 295 886 306 898 317 911 c 0 - 325 920 334 928 343 937 c 0 - 346 939 350 939 353 940 c 0 -EndSplineSet -EndChar - -StartChar: Edieresis -Encoding: 203 203 118 -Width: 660 -GlyphClass: 2 -Flags: MW -HStem: -4 42 -3 49<488.5 539> 400 45<330.5 337.5 313.5 338 313.5 365> 715 38<254.5 258 254.5 259> 734 20G 839 54<304.5 309 309 315 392.5 397 397 401 401 403> -VStem: 108 68<334 377> 278 59 366 59 561 13 594 26<638.5 660> -LayerCount: 2 -Fore -SplineSet -630 152 m 1xb6 - 629 139 628 127 627 115 c 0 - 624 90 622 65 620 40 c 0 - 619 29 616 19 614 9 c 0 - 614 7 612 4 610 3 c 0x76 - 603 1 596 -1 589 -1 c 0 - 558 -2 526 -3 495 -3 c 0 - 482 -3 470 -2 457 -2 c 0 - 438 -2 420 -3 401 -3 c 0 - 361 -4 322 -5 282 -4 c 0 - 261 -4 239 0 217 2 c 0 - 196 4 174 8 153 7 c 0 - 138 7 123 8 108 9 c 0 - 93 10 79 6 65 0 c 0 - 47 -8 46 -7 35 8 c 0 - 33 10 32 12 31 14 c 0 - 30 17 30 20 34 22 c 0 - 37 23 40 25 44 27 c 0 - 66 35 81 53 94 71 c 0 - 103 84 106 99 106 114 c 0 - 107 147 107 180 107 212 c 0 - 108 260 107 307 108 355 c 0 - 108 399 109 444 109 488 c 0 - 109 505 108 522 108 539 c 0 - 110 578 110 616 106 654 c 0 - 105 667 102 680 99 692 c 0 - 96 700 90 707 83 712 c 0 - 77 716 70 719 63 722 c 0 - 53 725 42 729 31 733 c 1xae - 32 739 34 746 36 754 c 1 - 50 752 64 752 76 750 c 0 - 113 742 149 745 185 749 c 0 - 202 751 219 753 236 752 c 0 - 243 751 251 753 258 753 c 0 - 295 752 332 751 370 750 c 0 - 399 749 429 750 459 750 c 2 - 528 750 l 2 - 532 750 537 749 541 749 c 0 - 557 748 572 747 588 747 c 0 - 596 747 604 748 611 748 c 0 - 619 748 620 746 620 739 c 2 - 620 660 l 2 - 620 649 619 637 618 625 c 1 - 612 626 607 627 601 628 c 0 - 599 629 598 631 597 632 c 0 - 595 635 594 637 594 640 c 0 - 583 672 558 689 528 700 c 0 - 517 704 507 707 496 709 c 0xb620 - 484 711 471 712 458 713 c 0 - 392 717 325 716 259 715 c 0 - 245 715 232 713 218 711 c 0 - 201 709 190 698 181 685 c 0 - 179 682 179 678 179 674 c 0 - 179 643 180 613 180 583 c 0 - 180 553 179 524 179 494 c 0 - 179 477 185 464 200 455 c 0 - 212 448 224 447 236 447 c 0 - 267 445 298 445 329 445 c 0 - 346 445 362 445 378 446 c 2 - 489 452 l 2 - 499 452 509 454 519 457 c 0 - 536 462 547 475 557 489 c 0 - 565 500 565 500 579 497 c 1 - 578 486 577 474 575 463 c 0 - 571 442 572 421 572 400 c 0 - 572 392 573 384 574 376 c 0 - 575 365 574 363 564 358 c 0 - 563 358 562 359 561 359 c 0 - 548 374 531 384 514 394 c 0 - 500 402 486 403 471 402 c 0 - 451 402 430 402 410 401 c 0 - 395 401 380 400 365 400 c 2 - 338 400 l 2 - 323 400 308 400 293 401 c 0 - 271 401 249 402 227 401 c 0 - 215 401 203 401 191 399 c 0 - 182 398 177 391 177 381 c 0 - 176 365 176 349 176 334 c 0 - 175 288 175 242 174 197 c 0 - 173 165 171 133 172 101 c 0 - 172 95 173 89 173 83 c 0 - 174 69 183 61 194 56 c 0 - 204 51 213 48 224 48 c 0 - 235 47 247 46 258 44 c 2 - 260 44 l 1x7640 - 268 38 278 40 286 40 c 0 - 315 39 344 39 372 38 c 0 - 385 38 398 38 410 39 c 0xb6 - 422 40 433 42 444 42 c 0 - 471 44 499 46 526 46 c 0 - 552 46 567 59 577 80 c 0x76 - 587 101 594 124 603 146 c 0 - 606 154 606 154 614 154 c 0 - 619 153 624 153 630 152 c 1xb6 -397 839 m 2xb680 - 388 839 379 839 372 847 c 0 - 364 855 364 870 371 879 c 0 - 373 882 375 884 377 887 c 0 - 379 891 382 893 386 893 c 0 - 391 893 397 892 401 893 c 0 - 409 893 414 890 417 885 c 0 - 422 877 426 870 425 861 c 0 - 424 847 416 839 403 839 c 2 - 397 839 l 2xb680 -309 839 m 2xb7 - 300 839 291 839 284 847 c 0 - 277 855 276 870 283 879 c 0 - 285 882 287 884 289 887 c 0 - 291 891 294 893 298 893 c 2 - 315 893 l 2 - 321 893 325 891 329 886 c 0 - 334 878 338 871 337 861 c 0 - 337 847 328 839 315 839 c 2 - 309 839 l 2xb7 -EndSplineSet -EndChar - -StartChar: Igrave -Encoding: 204 204 119 -Width: 266 -GlyphClass: 2 -Flags: MW -HStem: -1 31 725 30<41 170 41 170> -VStem: 92 69<511 515> -LayerCount: 2 -Fore -SplineSet -30 -3 m 1 - 30 25 l 2 - 31 30 35 29 38 30 c 0 - 50 32 61 34 71 42 c 0 - 78 47 83 53 84 62 c 0 - 85 78 87 95 87 111 c 0 - 88 148 88 184 89 220 c 0 - 89 242 90 264 90 285 c 0 - 91 303 90 321 90 339 c 0 - 91 393 91 448 92 503 c 0 - 92 527 95 551 96 576 c 2 - 96 579 l 2 - 96 607 97 635 98 664 c 0 - 98 684 89 700 75 714 c 0 - 67 721 58 725 48 725 c 2 - 41 725 l 1 - 41 733 40 741 41 749 c 0 - 41 750 44 753 46 753 c 0 - 50 754 55 755 59 755 c 2 - 170 755 l 2 - 191 755 212 754 233 753 c 0 - 234 753 235 753 236 752 c 2 - 236 727 l 2 - 234 726 233 726 232 726 c 0 - 221 728 210 724 200 720 c 0 - 188 717 182 708 177 698 c 0 - 172 686 169 672 169 659 c 0 - 167 619 167 579 162 539 c 0 - 161 530 161 521 161 511 c 0 - 160 445 160 378 158 311 c 0 - 156 236 156 161 156 85 c 0 - 156 76 157 66 158 56 c 0 - 160 46 167 40 176 36 c 0 - 184 34 192 32 201 30 c 1 - 202 20 202 10 203 0 c 1 - 200 0 198 -1 195 -1 c 0 - 181 -1 166 0 151 0 c 0 - 148 0 145 0 141 -1 c 0 - 106 -6 71 -3 36 -3 c 2 - 30 -3 l 1 -184 870 m 0 - 182 859 178 849 171 840 c 0 - 170 839 167 838 165 838 c 0 - 163 839 160 840 159 841 c 0 - 144 850 130 859 116 867 c 0 - 107 873 97 878 87 883 c 0 - 76 888 74 896 79 905 c 0 - 81 909 82 914 84 918 c 0 - 88 928 96 930 105 925 c 0 - 128 911 150 897 172 884 c 0 - 174 883 175 881 177 881 c 0 - 183 879 185 875 184 870 c 0 -EndSplineSet -EndChar - -StartChar: Iacute -Encoding: 205 205 120 -Width: 266 -GlyphClass: 2 -Flags: MW -HStem: -1 31 725 30<41 170 41 170> -VStem: 92 69<511 515> -LayerCount: 2 -Fore -SplineSet -30 -3 m 1 - 30 25 l 2 - 31 30 35 29 38 30 c 0 - 50 32 61 34 71 42 c 0 - 78 47 83 53 84 62 c 0 - 85 78 87 95 87 111 c 0 - 88 148 88 184 89 220 c 0 - 89 242 90 264 90 285 c 0 - 91 303 90 321 90 339 c 0 - 91 393 91 448 92 503 c 0 - 92 527 95 551 96 576 c 2 - 96 579 l 2 - 96 607 97 635 98 664 c 0 - 98 684 89 700 75 714 c 0 - 67 721 58 725 48 725 c 2 - 41 725 l 1 - 41 733 40 741 41 749 c 0 - 41 750 44 753 46 753 c 0 - 50 754 55 755 59 755 c 2 - 170 755 l 2 - 191 755 212 754 233 753 c 0 - 234 753 235 753 236 752 c 2 - 236 727 l 2 - 234 726 233 726 232 726 c 0 - 221 728 210 724 200 720 c 0 - 188 717 182 708 177 698 c 0 - 172 686 169 672 169 659 c 0 - 167 619 167 579 162 539 c 0 - 161 530 161 521 161 511 c 0 - 160 445 160 378 158 311 c 0 - 156 236 156 161 156 85 c 0 - 156 76 157 66 158 56 c 0 - 160 46 167 40 176 36 c 0 - 184 34 192 32 201 30 c 1 - 202 20 202 10 203 0 c 1 - 200 0 198 -1 195 -1 c 0 - 181 -1 166 0 151 0 c 0 - 148 0 145 0 141 -1 c 0 - 106 -6 71 -3 36 -3 c 2 - 30 -3 l 1 -77 865 m 0 - 77 871 80 874 84 876 c 0 - 99 884 113 892 127 903 c 0 - 137 910 149 916 160 921 c 0 - 165 924 173 921 176 916 c 0 - 180 908 183 901 185 893 c 0 - 186 888 184 884 180 881 c 0 - 169 875 159 870 149 864 c 0 - 145 862 141 859 137 856 c 2 - 101 835 l 2 - 93 831 91 832 87 839 c 0 - 83 847 79 856 77 865 c 0 -EndSplineSet -EndChar - -StartChar: Icircumflex -Encoding: 206 206 121 -Width: 266 -GlyphClass: 2 -Flags: MW -HStem: -1 31 725 30<41 170 41 170> -VStem: 92 69<511 515> -LayerCount: 2 -Fore -SplineSet -30 -3 m 1 - 30 25 l 2 - 31 30 35 29 38 30 c 0 - 50 32 61 34 71 42 c 0 - 78 47 83 53 84 62 c 0 - 85 78 87 95 87 111 c 0 - 88 148 88 184 89 220 c 0 - 89 242 90 264 90 285 c 0 - 91 303 90 321 90 339 c 0 - 91 393 91 448 92 503 c 0 - 92 527 95 551 96 576 c 2 - 96 579 l 2 - 96 607 97 635 98 664 c 0 - 98 684 89 700 75 714 c 0 - 67 721 58 725 48 725 c 2 - 41 725 l 1 - 41 733 40 741 41 749 c 0 - 41 750 44 753 46 753 c 0 - 50 754 55 755 59 755 c 2 - 170 755 l 2 - 191 755 212 754 233 753 c 0 - 234 753 235 753 236 752 c 2 - 236 727 l 2 - 234 726 233 726 232 726 c 0 - 221 728 210 724 200 720 c 0 - 188 717 182 708 177 698 c 0 - 172 686 169 672 169 659 c 0 - 167 619 167 579 162 539 c 0 - 161 530 161 521 161 511 c 0 - 160 445 160 378 158 311 c 0 - 156 236 156 161 156 85 c 0 - 156 76 157 66 158 56 c 0 - 160 46 167 40 176 36 c 0 - 184 34 192 32 201 30 c 1 - 202 20 202 10 203 0 c 1 - 200 0 198 -1 195 -1 c 0 - 181 -1 166 0 151 0 c 0 - 148 0 145 0 141 -1 c 0 - 106 -6 71 -3 36 -3 c 2 - 30 -3 l 1 -132 945 m 0 - 137 945 141 942 144 938 c 0 - 161 919 178 901 196 882 c 0 - 197 881 198 879 200 878 c 0 - 206 872 207 868 203 861 c 0 - 198 854 192 847 186 841 c 0 - 183 837 179 837 176 841 c 0 - 164 853 152 866 140 878 c 0 - 140 879 139 880 139 880 c 1 - 131 887 130 887 122 880 c 0 - 110 868 99 856 87 844 c 0 - 80 838 78 838 72 844 c 0 - 67 850 63 855 59 862 c 0 - 54 869 55 874 62 880 c 0 - 74 891 85 903 96 916 c 0 - 104 925 113 933 122 942 c 0 - 125 944 129 944 132 945 c 0 -EndSplineSet -EndChar - -StartChar: Idieresis -Encoding: 207 207 122 -Width: 266 -GlyphClass: 2 -Flags: MW -HStem: -1 31 725 30<41 170 41 170> 838 54<82.5 87 87 93 170.5 175 175 179 179 181> -VStem: 56 59 92 69<511 515> 144 59 -LayerCount: 2 -Fore -SplineSet -30 -3 m 1xe8 - 30 25 l 2 - 31 30 35 29 38 30 c 0 - 50 32 61 34 71 42 c 0 - 78 47 83 53 84 62 c 0 - 85 78 87 95 87 111 c 0 - 88 148 88 184 89 220 c 0 - 89 242 90 264 90 285 c 0 - 91 303 90 321 90 339 c 0 - 91 393 91 448 92 503 c 0 - 92 527 95 551 96 576 c 2 - 96 579 l 2 - 96 607 97 635 98 664 c 0 - 98 684 89 700 75 714 c 0 - 67 721 58 725 48 725 c 2 - 41 725 l 1 - 41 733 40 741 41 749 c 0 - 41 750 44 753 46 753 c 0 - 50 754 55 755 59 755 c 2 - 170 755 l 2 - 191 755 212 754 233 753 c 0 - 234 753 235 753 236 752 c 2 - 236 727 l 2 - 234 726 233 726 232 726 c 0 - 221 728 210 724 200 720 c 0 - 188 717 182 708 177 698 c 0 - 172 686 169 672 169 659 c 0 - 167 619 167 579 162 539 c 0 - 161 530 161 521 161 511 c 0 - 160 445 160 378 158 311 c 0 - 156 236 156 161 156 85 c 0 - 156 76 157 66 158 56 c 0 - 160 46 167 40 176 36 c 0 - 184 34 192 32 201 30 c 1 - 202 20 202 10 203 0 c 1 - 200 0 198 -1 195 -1 c 0 - 181 -1 166 0 151 0 c 0 - 148 0 145 0 141 -1 c 0 - 106 -6 71 -3 36 -3 c 2 - 30 -3 l 1xe8 -175 838 m 2xe4 - 166 838 157 838 150 846 c 0 - 142 854 142 869 149 878 c 0 - 151 881 153 883 155 886 c 0 - 157 890 160 892 164 892 c 0 - 169 892 175 891 179 892 c 0 - 187 892 192 889 195 884 c 0 - 200 876 204 869 203 860 c 0 - 202 846 194 838 181 838 c 2 - 175 838 l 2xe4 -87 838 m 2xf0 - 78 838 69 838 62 846 c 0 - 55 854 54 869 61 878 c 0 - 63 881 65 883 67 886 c 0 - 69 890 72 892 76 892 c 2 - 93 892 l 2 - 99 892 103 890 107 885 c 0 - 112 877 116 870 115 860 c 0 - 115 846 106 838 93 838 c 2 - 87 838 l 2xf0 -EndSplineSet -EndChar - -StartChar: Eth -Encoding: 208 208 123 -Width: 640 -GlyphClass: 2 -Flags: MW -HStem: -13 33 -6 44 320 44<133 133> 698 46<217 242.5> 712 25 -VStem: 70 63<273 364 320 364> 74 57<375 376> 572 53 -LayerCount: 2 -Fore -SplineSet -10 -13 m 1xb5 - 10 18 l 1 - 18 20 25 21 33 22 c 0 - 48 23 57 31 61 45 c 0 - 68 63 70 83 70 102 c 2 - 70 273 l 1 - 70 320 l 1 - 56 324 41 322 27 322 c 1 - 21 329 25 336 26 343 c 0 - 26 350 27 357 28 363 c 1xb5 - 43 367 58 362 72 368 c 0 - 73 371 74 374 74 376 c 0 - 73 426 73 475 72 524 c 0 - 71 561 69 599 67 636 c 0 - 66 650 65 663 64 677 c 0 - 63 692 55 702 40 706 c 0 - 33 709 25 710 17 712 c 1x6b - 14 720 15 727 16 736 c 0 - 19 736 23 738 26 738 c 0 - 67 739 109 741 151 742 c 0 - 173 743 195 745 217 744 c 0 - 240 744 263 741 287 740 c 0 - 289 740 292 739 294 739 c 0 - 330 739 364 730 398 717 c 0 - 409 712 420 705 431 699 c 0 - 467 677 500 652 527 619 c 0 - 543 602 558 584 573 566 c 0 - 584 554 592 540 597 525 c 0 - 606 497 613 468 620 439 c 0 - 624 424 626 408 628 393 c 0 - 631 359 630 325 623 291 c 0 - 614 255 603 221 588 188 c 0 - 581 173 572 159 560 147 c 0 - 552 138 546 130 538 121 c 0 - 523 102 505 86 486 71 c 0 - 468 57 448 47 427 37 c 0 - 410 29 392 21 373 17 c 0 - 370 16 366 15 363 14 c 0 - 333 -1 300 -6 267 -6 c 0 - 214 -7 161 -6 108 -6 c 0x73 - 98 -6 88 -8 78 -8 c 0 - 56 -10 34 -11 10 -13 c 1xb5 -134 46 m 1x75 - 139 45 142 43 146 43 c 0 - 164 41 183 40 201 38 c 0x75 - 218 37 234 37 251 39 c 0 - 264 42 278 44 291 46 c 0 - 335 52 376 66 415 88 c 0 - 435 101 454 115 471 132 c 0 - 493 154 510 179 526 206 c 0 - 533 219 539 234 547 247 c 0 - 555 262 560 277 565 293 c 0 - 573 318 575 344 572 370 c 0 - 569 391 564 412 559 433 c 0 - 552 464 539 494 526 523 c 0 - 514 551 497 575 474 594 c 0 - 450 615 424 634 398 654 c 0 - 365 677 330 690 290 696 c 0 - 271 698 252 698 233 698 c 0 - 217 699 201 699 186 701 c 0 - 174 701 163 701 152 698 c 0 - 136 694 134 692 133 676 c 0 - 132 657 131 638 131 619 c 2 - 131 376 l 2 - 131 373 132 369 133 364 c 1 - 152 364 l 1 - 172 364 l 1 - 172 350 177 337 173 322 c 1x73 - 160 321 147 321 133 320 c 1 - 131 229 135 137 134 46 c 1x75 -EndSplineSet -EndChar - -StartChar: Ntilde -Encoding: 209 209 124 -Width: 785 -GlyphClass: 2 -Flags: MW -HStem: -2 21G<35 48.5 39 97 97 105 105 233> -1 21G<238 239> 717 34<548 583 548 583> 724 24 841 40 848 44<349.5 365> -VStem: 102 65 108 55<196.5 218 196.5 275> 623 55<525 525> -LayerCount: 2 -Fore -SplineSet -548 717 m 1x6980 - 548 741 l 2 - 548 746 551 748 556 748 c 0 - 565 750 574 751 583 751 c 0 - 605 752 627 752 649 753 c 2 - 651 753 l 1 - 676 747 701 754 726 753 c 0 - 733 752 741 752 748 751 c 0 - 750 751 752 749 752 747 c 0 - 754 738 754 728 755 718 c 1 - 746 717 737 716 729 715 c 0 - 721 714 712 711 705 708 c 0 - 697 706 693 699 691 692 c 2 - 682 641 l 2 - 681 637 682 632 682 628 c 0 - 681 594 679 559 678 525 c 2 - 678 491 l 2 - 677 454 677 418 677 381 c 0 - 677 320 678 258 678 197 c 2 - 678 70 l 2 - 679 53 680 36 681 20 c 0 - 682 12 678 6 673 1 c 0 - 671 -2 664 -1 659 -2 c 0 - 647 -4 636 0 627 9 c 0 - 623 12 618 15 613 19 c 0 - 597 30 586 45 573 60 c 0 - 566 70 558 79 550 88 c 0 - 550 89 549 89 549 89 c 2xa980 - 535 107 520 124 506 142 c 0 - 497 153 488 165 478 176 c 0 - 465 192 451 207 438 223 c 0 - 432 230 425 238 418 245 c 0 - 415 249 411 253 408 258 c 0 - 390 283 372 308 354 332 c 0 - 345 344 335 356 326 368 c 2 - 322 372 l 1 - 307 398 287 419 271 444 c 0 - 268 448 264 452 260 457 c 0 - 252 468 244 480 235 492 c 0 - 234 494 232 497 230 499 c 0 - 219 513 207 527 195 541 c 0 - 191 546 186 551 182 557 c 0 - 179 560 177 566 171 564 c 0 - 164 561 165 556 165 550 c 0 - 165 532 165 514 166 495 c 0 - 166 466 167 436 167 406 c 0 - 166 362 165 317 164 273 c 0 - 164 254 162 236 163 218 c 0 - 163 175 165 132 166 89 c 0 - 166 81 167 74 167 66 c 0 - 168 52 179 44 194 40 c 0 - 205 37 216 36 227 33 c 0 - 235 32 235 32 237 23 c 0 - 238 15 238 7 239 -1 c 1 - 237 -1 235 -2 233 -2 c 2 - 105 -2 l 2 - 102 -3 100 -3 97 -2 c 0 - 78 1 58 -2 39 -2 c 0 - 31 -2 31 -1 31 5 c 0 - 30 11 31 16 30 22 c 0 - 30 26 32 28 36 29 c 0 - 45 30 54 32 63 34 c 0 - 71 36 79 39 87 42 c 0 - 94 45 100 51 102 59 c 0 - 106 69 108 79 108 91 c 2 - 108 275 l 2 - 108 303 106 331 105 360 c 0x5980 - 105 378 104 395 103 413 c 0 - 103 468 102 523 102 579 c 0 - 102 599 102 619 101 639 c 0 - 100 664 96 688 77 708 c 0 - 68 717 57 722 45 724 c 2 - 39 724 l 2 - 35 724 32 726 31 732 c 0 - 31 738 30 745 30 751 c 0 - 33 752 35 752 36 752 c 0 - 63 751 90 750 117 748 c 0 - 128 748 139 746 149 745 c 0 - 156 745 161 739 162 731 c 0 - 165 710 174 691 183 672 c 0x5a80 - 188 659 199 648 207 637 c 0 - 217 624 227 611 237 599 c 0 - 244 590 251 582 258 574 c 0 - 274 555 289 537 304 518 c 0 - 311 511 318 504 323 496 c 0 - 336 480 347 463 360 447 c 0 - 366 439 373 432 379 424 c 0 - 387 415 394 406 400 397 c 0 - 413 379 425 360 438 341 c 0 - 455 317 471 294 488 270 c 0 - 496 259 503 248 512 237 c 0 - 521 224 532 212 542 199 c 0 - 551 188 559 177 569 167 c 0 - 579 156 589 147 600 137 c 0 - 607 132 613 135 617 142 c 0 - 620 148 622 154 622 161 c 0 - 621 185 620 209 620 233 c 0 - 620 272 621 312 621 351 c 0 - 621 353 622 354 622 356 c 0 - 622 412 623 469 623 525 c 2 - 623 627 l 2 - 623 639 623 651 624 663 c 0 - 624 674 620 685 616 695 c 0 - 611 705 601 710 591 713 c 0 - 583 715 574 716 566 717 c 2 - 548 717 l 1x6980 -307 850 m 1x5580 - 314 865 322 879 337 888 c 0 - 341 890 347 892 352 892 c 0x5580 - 362 893 371 890 380 886 c 0 - 384 884 388 883 393 881 c 0 - 402 878 409 880 415 887 c 0 - 420 894 420 894 428 891 c 0 - 432 889 436 888 439 887 c 0 - 445 884 447 881 445 875 c 0 - 443 868 440 862 437 856 c 2 - 434 853 l 2 - 428 842 417 840 405 841 c 0 - 395 841 385 843 375 846 c 0 - 371 848 367 848 363 848 c 0x5980 - 356 849 351 847 347 841 c 0 - 344 836 341 836 336 838 c 0 - 327 842 318 846 307 850 c 1x5580 -EndSplineSet -EndChar - -StartChar: Ograve -Encoding: 210 210 125 -Width: 843 -GlyphClass: 2 -Flags: MW -HStem: -10 44<444.5 458 402 462.5> 704 45<383.5 423> -VStem: 30 51<343 367> 765 47 -LayerCount: 2 -Fore -SplineSet -30 343 m 0 - 30 361 31 381 32 401 c 0 - 33 416 36 431 41 446 c 0 - 45 457 47 468 51 480 c 0 - 60 508 71 535 86 561 c 0 - 94 576 107 587 118 600 c 0 - 133 616 149 631 165 646 c 0 - 194 673 226 695 263 710 c 0 - 283 718 303 727 324 733 c 0 - 347 741 371 749 396 749 c 0 - 397 750 399 750 400 750 c 0 - 420 757 440 754 460 753 c 0 - 469 752 478 752 487 751 c 0 - 500 749 513 748 526 745 c 0 - 541 742 555 738 569 734 c 0 - 578 731 587 727 595 723 c 0 - 615 713 636 702 655 690 c 0 - 669 681 681 670 693 659 c 0 - 706 647 718 635 729 622 c 0 - 739 609 748 596 756 582 c 0 - 770 559 784 535 793 508 c 0 - 803 478 809 448 811 416 c 0 - 813 388 812 359 812 330 c 0 - 811 304 804 279 796 255 c 0 - 787 226 772 200 757 174 c 0 - 746 154 733 134 717 118 c 0 - 707 108 696 100 685 91 c 0 - 680 86 674 81 668 77 c 0 - 663 73 657 70 652 66 c 0 - 630 55 607 43 585 31 c 0 - 559 17 532 6 503 -1 c 0 - 487 -5 471 -10 454 -10 c 0 - 435 -10 415 -10 396 -9 c 0 - 375 -8 355 -6 335 -3 c 0 - 316 -1 297 0 279 7 c 0 - 268 12 258 17 247 22 c 0 - 229 31 212 39 195 47 c 0 - 186 52 178 57 170 62 c 0 - 152 73 136 86 120 101 c 0 - 106 114 94 127 84 143 c 0 - 73 160 63 178 54 196 c 0 - 43 220 38 245 33 271 c 0 - 29 294 32 317 30 343 c 0 -765 371 m 0 - 766 404 765 417 756 452 c 0 - 751 472 744 491 737 510 c 0 - 729 533 715 553 701 571 c 0 - 690 585 677 596 665 609 c 0 - 658 616 652 625 643 631 c 0 - 627 642 611 655 593 663 c 0 - 584 667 575 674 565 677 c 0 - 542 685 518 693 493 695 c 0 - 490 695 487 696 484 697 c 0 - 463 699 443 703 423 704 c 0 - 385 704 347 700 312 685 c 0 - 303 681 294 678 286 674 c 0 - 275 667 265 660 254 653 c 0 - 240 644 228 634 216 623 c 0 - 196 606 177 587 159 566 c 0 - 140 543 124 518 112 490 c 0 - 108 482 104 475 102 467 c 0 - 95 442 89 417 84 392 c 0 - 81 382 81 372 81 362 c 0 - 83 322 87 282 99 243 c 0 - 105 225 112 208 120 191 c 0 - 126 178 133 166 144 157 c 0 - 145 155 146 153 148 152 c 2 - 169 128 l 2 - 171 126 174 124 177 122 c 0 - 200 101 223 79 253 66 c 0 - 265 61 277 55 290 51 c 0 - 302 48 315 46 327 43 c 0 - 352 38 377 35 402 34 c 0 - 416 33 430 34 444 34 c 0 - 472 34 500 41 526 51 c 0 - 562 65 596 82 629 104 c 0 - 643 113 658 123 670 135 c 0 - 691 156 711 178 725 204 c 0 - 738 229 751 255 756 283 c 0 - 761 314 766 344 765 371 c 0 -470 868 m 0 - 468 857 464 847 457 838 c 0 - 456 837 453 836 451 836 c 0 - 449 837 446 838 445 839 c 0 - 430 848 416 857 402 865 c 0 - 393 871 383 876 373 881 c 0 - 362 886 360 894 365 903 c 0 - 367 907 368 912 370 916 c 0 - 374 926 382 928 391 923 c 0 - 414 909 436 895 458 882 c 0 - 460 881 461 879 463 879 c 0 - 469 877 471 873 470 868 c 0 -EndSplineSet -EndChar - -StartChar: Oacute -Encoding: 211 211 126 -Width: 843 -GlyphClass: 2 -Flags: MW -HStem: -10 44<444.5 458 402 462.5> 704 45<383.5 423> -VStem: 30 51<343 367> 765 47 -LayerCount: 2 -Fore -SplineSet -30 343 m 0 - 30 361 31 381 32 401 c 0 - 33 416 36 431 41 446 c 0 - 45 457 47 468 51 480 c 0 - 60 508 71 535 86 561 c 0 - 94 576 107 587 118 600 c 0 - 133 616 149 631 165 646 c 0 - 194 673 226 695 263 710 c 0 - 283 718 303 727 324 733 c 0 - 347 741 371 749 396 749 c 0 - 397 750 399 750 400 750 c 0 - 420 757 440 754 460 753 c 0 - 469 752 478 752 487 751 c 0 - 500 749 513 748 526 745 c 0 - 541 742 555 738 569 734 c 0 - 578 731 587 727 595 723 c 0 - 615 713 636 702 655 690 c 0 - 669 681 681 670 693 659 c 0 - 706 647 718 635 729 622 c 0 - 739 609 748 596 756 582 c 0 - 770 559 784 535 793 508 c 0 - 803 478 809 448 811 416 c 0 - 813 388 812 359 812 330 c 0 - 811 304 804 279 796 255 c 0 - 787 226 772 200 757 174 c 0 - 746 154 733 134 717 118 c 0 - 707 108 696 100 685 91 c 0 - 680 86 674 81 668 77 c 0 - 663 73 657 70 652 66 c 0 - 630 55 607 43 585 31 c 0 - 559 17 532 6 503 -1 c 0 - 487 -5 471 -10 454 -10 c 0 - 435 -10 415 -10 396 -9 c 0 - 375 -8 355 -6 335 -3 c 0 - 316 -1 297 0 279 7 c 0 - 268 12 258 17 247 22 c 0 - 229 31 212 39 195 47 c 0 - 186 52 178 57 170 62 c 0 - 152 73 136 86 120 101 c 0 - 106 114 94 127 84 143 c 0 - 73 160 63 178 54 196 c 0 - 43 220 38 245 33 271 c 0 - 29 294 32 317 30 343 c 0 -765 371 m 0 - 766 404 765 417 756 452 c 0 - 751 472 744 491 737 510 c 0 - 729 533 715 553 701 571 c 0 - 690 585 677 596 665 609 c 0 - 658 616 652 625 643 631 c 0 - 627 642 611 655 593 663 c 0 - 584 667 575 674 565 677 c 0 - 542 685 518 693 493 695 c 0 - 490 695 487 696 484 697 c 0 - 463 699 443 703 423 704 c 0 - 385 704 347 700 312 685 c 0 - 303 681 294 678 286 674 c 0 - 275 667 265 660 254 653 c 0 - 240 644 228 634 216 623 c 0 - 196 606 177 587 159 566 c 0 - 140 543 124 518 112 490 c 0 - 108 482 104 475 102 467 c 0 - 95 442 89 417 84 392 c 0 - 81 382 81 372 81 362 c 0 - 83 322 87 282 99 243 c 0 - 105 225 112 208 120 191 c 0 - 126 178 133 166 144 157 c 0 - 145 155 146 153 148 152 c 2 - 169 128 l 2 - 171 126 174 124 177 122 c 0 - 200 101 223 79 253 66 c 0 - 265 61 277 55 290 51 c 0 - 302 48 315 46 327 43 c 0 - 352 38 377 35 402 34 c 0 - 416 33 430 34 444 34 c 0 - 472 34 500 41 526 51 c 0 - 562 65 596 82 629 104 c 0 - 643 113 658 123 670 135 c 0 - 691 156 711 178 725 204 c 0 - 738 229 751 255 756 283 c 0 - 761 314 766 344 765 371 c 0 -358 871 m 0 - 358 877 361 880 365 882 c 0 - 380 890 394 898 408 909 c 0 - 418 916 430 922 441 927 c 0 - 446 930 454 927 457 922 c 0 - 461 914 464 907 466 899 c 0 - 467 894 465 890 461 887 c 0 - 450 881 440 876 430 870 c 0 - 426 868 422 865 418 862 c 2 - 382 841 l 2 - 374 837 372 838 368 845 c 0 - 364 853 360 862 358 871 c 0 -EndSplineSet -EndChar - -StartChar: Ocircumflex -Encoding: 212 212 127 -Width: 843 -GlyphClass: 2 -Flags: MW -HStem: -10 44<444.5 458 402 462.5> 704 45<383.5 423> -VStem: 30 51<343 367> 765 47 -LayerCount: 2 -Fore -SplineSet -30 343 m 0 - 30 361 31 381 32 401 c 0 - 33 416 36 431 41 446 c 0 - 45 457 47 468 51 480 c 0 - 60 508 71 535 86 561 c 0 - 94 576 107 587 118 600 c 0 - 133 616 149 631 165 646 c 0 - 194 673 226 695 263 710 c 0 - 283 718 303 727 324 733 c 0 - 347 741 371 749 396 749 c 0 - 397 750 399 750 400 750 c 0 - 420 757 440 754 460 753 c 0 - 469 752 478 752 487 751 c 0 - 500 749 513 748 526 745 c 0 - 541 742 555 738 569 734 c 0 - 578 731 587 727 595 723 c 0 - 615 713 636 702 655 690 c 0 - 669 681 681 670 693 659 c 0 - 706 647 718 635 729 622 c 0 - 739 609 748 596 756 582 c 0 - 770 559 784 535 793 508 c 0 - 803 478 809 448 811 416 c 0 - 813 388 812 359 812 330 c 0 - 811 304 804 279 796 255 c 0 - 787 226 772 200 757 174 c 0 - 746 154 733 134 717 118 c 0 - 707 108 696 100 685 91 c 0 - 680 86 674 81 668 77 c 0 - 663 73 657 70 652 66 c 0 - 630 55 607 43 585 31 c 0 - 559 17 532 6 503 -1 c 0 - 487 -5 471 -10 454 -10 c 0 - 435 -10 415 -10 396 -9 c 0 - 375 -8 355 -6 335 -3 c 0 - 316 -1 297 0 279 7 c 0 - 268 12 258 17 247 22 c 0 - 229 31 212 39 195 47 c 0 - 186 52 178 57 170 62 c 0 - 152 73 136 86 120 101 c 0 - 106 114 94 127 84 143 c 0 - 73 160 63 178 54 196 c 0 - 43 220 38 245 33 271 c 0 - 29 294 32 317 30 343 c 0 -765 371 m 0 - 766 404 765 417 756 452 c 0 - 751 472 744 491 737 510 c 0 - 729 533 715 553 701 571 c 0 - 690 585 677 596 665 609 c 0 - 658 616 652 625 643 631 c 0 - 627 642 611 655 593 663 c 0 - 584 667 575 674 565 677 c 0 - 542 685 518 693 493 695 c 0 - 490 695 487 696 484 697 c 0 - 463 699 443 703 423 704 c 0 - 385 704 347 700 312 685 c 0 - 303 681 294 678 286 674 c 0 - 275 667 265 660 254 653 c 0 - 240 644 228 634 216 623 c 0 - 196 606 177 587 159 566 c 0 - 140 543 124 518 112 490 c 0 - 108 482 104 475 102 467 c 0 - 95 442 89 417 84 392 c 0 - 81 382 81 372 81 362 c 0 - 83 322 87 282 99 243 c 0 - 105 225 112 208 120 191 c 0 - 126 178 133 166 144 157 c 0 - 145 155 146 153 148 152 c 2 - 169 128 l 2 - 171 126 174 124 177 122 c 0 - 200 101 223 79 253 66 c 0 - 265 61 277 55 290 51 c 0 - 302 48 315 46 327 43 c 0 - 352 38 377 35 402 34 c 0 - 416 33 430 34 444 34 c 0 - 472 34 500 41 526 51 c 0 - 562 65 596 82 629 104 c 0 - 643 113 658 123 670 135 c 0 - 691 156 711 178 725 204 c 0 - 738 229 751 255 756 283 c 0 - 761 314 766 344 765 371 c 0 -418 946 m 0 - 423 946 427 943 430 939 c 0 - 447 920 464 902 482 883 c 0 - 483 882 484 880 486 879 c 0 - 492 873 493 869 489 862 c 0 - 484 855 478 848 472 842 c 0 - 469 838 465 838 462 842 c 0 - 450 854 438 867 426 879 c 0 - 426 880 425 881 425 881 c 1 - 417 888 416 888 408 881 c 0 - 396 869 385 857 373 845 c 0 - 366 839 364 839 358 845 c 0 - 353 851 349 856 345 863 c 0 - 340 870 341 875 348 881 c 0 - 360 892 371 904 382 917 c 0 - 390 926 399 934 408 943 c 0 - 411 945 415 945 418 946 c 0 -EndSplineSet -EndChar - -StartChar: Otilde -Encoding: 213 213 128 -Width: 843 -GlyphClass: 2 -Flags: MW -HStem: -10 44<444.5 458 402 462.5> 704 45<383.5 423> 844 40 851 44<382.5 398> -VStem: 30 51<343 367> 765 47 -LayerCount: 2 -Fore -SplineSet -30 343 m 0xec - 30 361 31 381 32 401 c 0 - 33 416 36 431 41 446 c 0 - 45 457 47 468 51 480 c 0 - 60 508 71 535 86 561 c 0 - 94 576 107 587 118 600 c 0 - 133 616 149 631 165 646 c 0 - 194 673 226 695 263 710 c 0 - 283 718 303 727 324 733 c 0 - 347 741 371 749 396 749 c 0 - 397 750 399 750 400 750 c 0 - 420 757 440 754 460 753 c 0 - 469 752 478 752 487 751 c 0 - 500 749 513 748 526 745 c 0 - 541 742 555 738 569 734 c 0 - 578 731 587 727 595 723 c 0 - 615 713 636 702 655 690 c 0 - 669 681 681 670 693 659 c 0 - 706 647 718 635 729 622 c 0 - 739 609 748 596 756 582 c 0 - 770 559 784 535 793 508 c 0 - 803 478 809 448 811 416 c 0 - 813 388 812 359 812 330 c 0 - 811 304 804 279 796 255 c 0 - 787 226 772 200 757 174 c 0 - 746 154 733 134 717 118 c 0 - 707 108 696 100 685 91 c 0 - 680 86 674 81 668 77 c 0 - 663 73 657 70 652 66 c 0 - 630 55 607 43 585 31 c 0 - 559 17 532 6 503 -1 c 0 - 487 -5 471 -10 454 -10 c 0 - 435 -10 415 -10 396 -9 c 0 - 375 -8 355 -6 335 -3 c 0 - 316 -1 297 0 279 7 c 0 - 268 12 258 17 247 22 c 0 - 229 31 212 39 195 47 c 0 - 186 52 178 57 170 62 c 0 - 152 73 136 86 120 101 c 0 - 106 114 94 127 84 143 c 0 - 73 160 63 178 54 196 c 0 - 43 220 38 245 33 271 c 0 - 29 294 32 317 30 343 c 0xec -765 371 m 0 - 766 404 765 417 756 452 c 0 - 751 472 744 491 737 510 c 0 - 729 533 715 553 701 571 c 0 - 690 585 677 596 665 609 c 0 - 658 616 652 625 643 631 c 0 - 627 642 611 655 593 663 c 0 - 584 667 575 674 565 677 c 0 - 542 685 518 693 493 695 c 0 - 490 695 487 696 484 697 c 0 - 463 699 443 703 423 704 c 0 - 385 704 347 700 312 685 c 0 - 303 681 294 678 286 674 c 0 - 275 667 265 660 254 653 c 0 - 240 644 228 634 216 623 c 0 - 196 606 177 587 159 566 c 0 - 140 543 124 518 112 490 c 0 - 108 482 104 475 102 467 c 0 - 95 442 89 417 84 392 c 0 - 81 382 81 372 81 362 c 0 - 83 322 87 282 99 243 c 0 - 105 225 112 208 120 191 c 0 - 126 178 133 166 144 157 c 0 - 145 155 146 153 148 152 c 2 - 169 128 l 2 - 171 126 174 124 177 122 c 0 - 200 101 223 79 253 66 c 0 - 265 61 277 55 290 51 c 0 - 302 48 315 46 327 43 c 0 - 352 38 377 35 402 34 c 0 - 416 33 430 34 444 34 c 0 - 472 34 500 41 526 51 c 0 - 562 65 596 82 629 104 c 0 - 643 113 658 123 670 135 c 0 - 691 156 711 178 725 204 c 0 - 738 229 751 255 756 283 c 0 - 761 314 766 344 765 371 c 0 -340 853 m 1xdc - 347 868 355 882 370 891 c 0 - 374 893 380 895 385 895 c 0xdc - 395 896 404 893 413 889 c 0 - 417 887 421 886 426 884 c 0 - 435 881 442 883 448 890 c 0 - 453 897 453 897 461 894 c 0 - 465 892 469 891 472 890 c 0 - 478 887 480 884 478 878 c 0 - 476 871 473 865 470 859 c 2 - 467 856 l 2 - 461 845 450 843 438 844 c 0 - 428 844 418 846 408 849 c 0 - 404 851 400 851 396 851 c 0xec - 389 852 384 850 380 844 c 0 - 377 839 374 839 369 841 c 0 - 360 845 351 849 340 853 c 1xdc -EndSplineSet -EndChar - -StartChar: Odieresis -Encoding: 214 214 129 -Width: 843 -GlyphClass: 2 -Flags: MW -HStem: -10 44<444.5 458 402 462.5> 704 45<383.5 423> 840 54<373.5 378 378 384 461.5 466 466 470 470 472> -VStem: 30 51<343 367> 347 59 435 59 765 47 -LayerCount: 2 -Fore -SplineSet -30 343 m 0 - 30 361 31 381 32 401 c 0 - 33 416 36 431 41 446 c 0 - 45 457 47 468 51 480 c 0 - 60 508 71 535 86 561 c 0 - 94 576 107 587 118 600 c 0 - 133 616 149 631 165 646 c 0 - 194 673 226 695 263 710 c 0 - 283 718 303 727 324 733 c 0 - 347 741 371 749 396 749 c 0 - 397 750 399 750 400 750 c 0 - 420 757 440 754 460 753 c 0 - 469 752 478 752 487 751 c 0 - 500 749 513 748 526 745 c 0 - 541 742 555 738 569 734 c 0 - 578 731 587 727 595 723 c 0 - 615 713 636 702 655 690 c 0 - 669 681 681 670 693 659 c 0 - 706 647 718 635 729 622 c 0 - 739 609 748 596 756 582 c 0 - 770 559 784 535 793 508 c 0 - 803 478 809 448 811 416 c 0 - 813 388 812 359 812 330 c 0 - 811 304 804 279 796 255 c 0 - 787 226 772 200 757 174 c 0 - 746 154 733 134 717 118 c 0 - 707 108 696 100 685 91 c 0 - 680 86 674 81 668 77 c 0 - 663 73 657 70 652 66 c 0 - 630 55 607 43 585 31 c 0 - 559 17 532 6 503 -1 c 0 - 487 -5 471 -10 454 -10 c 0 - 435 -10 415 -10 396 -9 c 0 - 375 -8 355 -6 335 -3 c 0 - 316 -1 297 0 279 7 c 0 - 268 12 258 17 247 22 c 0 - 229 31 212 39 195 47 c 0 - 186 52 178 57 170 62 c 0 - 152 73 136 86 120 101 c 0 - 106 114 94 127 84 143 c 0 - 73 160 63 178 54 196 c 0 - 43 220 38 245 33 271 c 0 - 29 294 32 317 30 343 c 0 -765 371 m 0 - 766 404 765 417 756 452 c 0 - 751 472 744 491 737 510 c 0 - 729 533 715 553 701 571 c 0 - 690 585 677 596 665 609 c 0 - 658 616 652 625 643 631 c 0 - 627 642 611 655 593 663 c 0 - 584 667 575 674 565 677 c 0 - 542 685 518 693 493 695 c 0 - 490 695 487 696 484 697 c 0 - 463 699 443 703 423 704 c 0 - 385 704 347 700 312 685 c 0 - 303 681 294 678 286 674 c 0 - 275 667 265 660 254 653 c 0 - 240 644 228 634 216 623 c 0 - 196 606 177 587 159 566 c 0 - 140 543 124 518 112 490 c 0 - 108 482 104 475 102 467 c 0 - 95 442 89 417 84 392 c 0 - 81 382 81 372 81 362 c 0 - 83 322 87 282 99 243 c 0 - 105 225 112 208 120 191 c 0 - 126 178 133 166 144 157 c 0 - 145 155 146 153 148 152 c 2 - 169 128 l 2 - 171 126 174 124 177 122 c 0 - 200 101 223 79 253 66 c 0 - 265 61 277 55 290 51 c 0 - 302 48 315 46 327 43 c 0 - 352 38 377 35 402 34 c 0 - 416 33 430 34 444 34 c 0 - 472 34 500 41 526 51 c 0 - 562 65 596 82 629 104 c 0 - 643 113 658 123 670 135 c 0 - 691 156 711 178 725 204 c 0 - 738 229 751 255 756 283 c 0 - 761 314 766 344 765 371 c 0 -466 840 m 2 - 457 840 448 840 441 848 c 0 - 433 856 433 871 440 880 c 0 - 442 883 444 885 446 888 c 0 - 448 892 451 894 455 894 c 0 - 460 894 466 893 470 894 c 0 - 478 894 483 891 486 886 c 0 - 491 878 495 871 494 862 c 0 - 493 848 485 840 472 840 c 2 - 466 840 l 2 -378 840 m 2 - 369 840 360 840 353 848 c 0 - 346 856 345 871 352 880 c 0 - 354 883 356 885 358 888 c 0 - 360 892 363 894 367 894 c 2 - 384 894 l 2 - 390 894 394 892 398 887 c 0 - 403 879 407 872 406 862 c 0 - 406 848 397 840 384 840 c 2 - 378 840 l 2 -EndSplineSet -EndChar - -StartChar: multiply -Encoding: 215 215 130 -Width: 155 -GlyphClass: 2 -Flags: MW -HStem: 104 135 -VStem: 11 134 -LayerCount: 2 -Fore -SplineSet -145 136 m 1 - 135 125 126 115 117 104 c 1 - 113 107 110 109 107 112 c 0 - 97 122 87 132 76 142 c 1 - 65 132 53 121 42 111 c 1 - 33 119 23 127 12 136 c 1 - 22 150 35 160 46 172 c 1 - 43 176 41 180 38 183 c 0 - 30 191 22 198 14 206 c 0 - 10 209 10 212 13 215 c 0 - 21 222 30 229 39 236 c 0 - 40 237 44 236 45 235 c 0 - 49 232 53 228 57 224 c 0 - 64 218 71 212 78 205 c 1 - 82 208 86 210 89 213 c 0 - 96 221 103 228 110 236 c 0 - 114 239 116 240 120 236 c 0 - 127 227 134 218 142 209 c 1 - 131 197 120 185 108 172 c 1 - 120 159 132 148 145 136 c 1 -EndSplineSet -EndChar - -StartChar: Oslash -Encoding: 216 216 131 -Width: 798 -GlyphClass: 2 -Flags: MW -HStem: -5 33 693 51 -VStem: 10 50 741 46 -LayerCount: 2 -Fore -SplineSet -641 676 m 1 - 652 689 662 703 673 716 c 0 - 681 725 689 735 698 744 c 0 - 701 747 705 748 708 746 c 0 - 720 741 732 737 744 732 c 1 - 740 722 731 707 713 686 c 0 - 701 672 690 658 678 643 c 1 - 684 635 690 628 697 621 c 0 - 713 604 725 584 736 565 c 0 - 752 539 765 512 773 482 c 0 - 781 452 787 421 788 390 c 0 - 788 371 787 352 787 333 c 0 - 787 302 780 273 769 244 c 0 - 753 201 730 162 703 125 c 0 - 693 111 680 98 665 88 c 0 - 657 83 650 76 643 71 c 0 - 638 67 633 64 627 61 c 0 - 605 49 582 37 560 25 c 0 - 540 15 520 5 498 -1 c 0 - 491 -3 483 -5 476 -5 c 2 - 294 -5 l 2 - 276 -5 259 0 243 9 c 0 - 223 19 204 28 184 38 c 2 - 166 44 l 1 - 149 29 136 11 121 -6 c 1 - 108 0 94 5 79 11 c 1 - 97 31 114 48 129 68 c 1 - 119 77 110 86 100 94 c 0 - 85 107 72 122 61 139 c 0 - 46 163 33 187 24 213 c 0 - 16 240 10 267 10 295 c 2 - 10 375 l 2 - 10 397 14 418 20 438 c 0 - 27 461 33 483 42 505 c 0 - 54 535 69 562 91 585 c 0 - 117 612 143 638 172 661 c 0 - 198 681 227 696 258 707 c 0 - 270 711 282 717 295 721 c 0 - 319 730 344 737 371 740 c 0 - 388 742 405 745 423 744 c 0 - 441 743 459 741 476 739 c 0 - 486 738 495 737 504 735 c 0 - 532 731 558 721 583 707 c 0 - 602 697 621 687 641 676 c 1 -162 109 m 0 - 164 111 165 111 166 112 c 0 - 201 152 235 191 269 231 c 0 - 293 258 317 285 340 313 c 0 - 389 371 437 428 485 486 c 0 - 522 531 559 576 595 621 c 0 - 598 625 602 628 603 634 c 1 - 582 648 560 660 537 671 c 1 - 534 671 l 1 - 511 676 488 683 465 687 c 0 - 430 693 396 697 360 693 c 0 - 331 689 303 683 276 670 c 0 - 266 666 257 661 249 654 c 0 - 246 652 242 650 239 648 c 0 - 228 641 217 635 207 627 c 0 - 174 600 144 569 119 534 c 0 - 114 528 110 520 106 513 c 0 - 92 487 79 460 72 431 c 0 - 65 399 57 368 60 334 c 0 - 64 301 67 268 78 236 c 0 - 88 204 100 173 124 149 c 0 - 125 148 125 146 126 145 c 0 - 135 130 149 121 162 109 c 0 -196 79 m 1 - 221 65 244 51 271 44 c 0 - 281 42 292 40 302 38 c 0 - 341 30 381 25 421 28 c 0 - 458 30 493 39 526 55 c 0 - 554 69 582 82 608 99 c 0 - 639 118 664 143 685 172 c 0 - 710 208 728 247 734 291 c 0 - 740 337 745 383 735 429 c 0 - 727 468 714 506 692 540 c 0 - 690 544 687 547 685 551 c 0 - 676 567 663 579 650 592 c 0 - 648 595 644 596 640 599 c 0 - 638 597 637 595 635 593 c 0 - 571 518 509 442 443 369 c 0 - 399 319 357 266 313 215 c 0 - 306 207 299 198 292 191 c 0 - 261 159 232 125 204 90 c 0 - 201 87 199 84 196 79 c 1 -EndSplineSet -EndChar - -StartChar: Ugrave -Encoding: 217 217 132 -Width: 769 -GlyphClass: 2 -Flags: MW -HStem: -27 52 -7 45 709 28 716 28 -VStem: 97 63<356 381> 587 63<376.5 473.5> -LayerCount: 2 -Fore -SplineSet -781 71 m 1x6c - 786 67 790 64 794 61 c 0 - 797 59 798 56 797 53 c 0 - 790 34 781 15 762 6 c 0 - 743 -4 722 -10 701 -7 c 0 - 674 -4 648 7 633 32 c 0 - 624 45 617 59 610 72 c 0 - 603 85 594 87 585 76 c 0 - 582 73 580 71 578 68 c 0 - 563 47 544 29 523 13 c 0 - 506 0 486 -7 465 -12 c 0x5c - 448 -15 431 -19 413 -22 c 0 - 381 -27 349 -29 317 -22 c 0 - 306 -20 296 -19 285 -16 c 0 - 266 -11 246 -5 227 2 c 0 - 214 7 202 14 192 23 c 0 - 180 33 167 43 156 55 c 0 - 148 64 142 74 135 84 c 0 - 118 113 108 144 103 177 c 0 - 100 195 98 213 98 231 c 0 - 97 281 97 331 97 381 c 0 - 96 429 97 477 96 524 c 0 - 96 553 96 581 95 609 c 0 - 94 632 92 655 90 678 c 0 - 89 690 83 699 75 708 c 0 - 70 713 63 716 56 716 c 2 - 41 716 l 2 - 35 716 32 719 31 724 c 0 - 30 726 30 728 30 730 c 0 - 30 740 32 742 42 743 c 0 - 72 743 103 744 133 744 c 0 - 150 744 168 745 185 744 c 0 - 197 744 208 743 220 743 c 0 - 224 743 226 740 227 736 c 0 - 228 726 225 720 215 716 c 2 - 200 710 l 2 - 191 706 184 700 180 691 c 0 - 173 677 168 663 166 648 c 0 - 162 618 164 588 163 558 c 0 - 162 526 162 493 160 461 c 0 - 158 434 160 408 160 381 c 0 - 159 335 159 289 160 243 c 0 - 161 212 165 180 175 149 c 0 - 180 134 187 119 197 106 c 0 - 198 104 199 103 199 102 c 0 - 208 86 222 75 236 66 c 0 - 253 55 270 44 289 35 c 0 - 300 29 313 26 325 25 c 0 - 342 23 359 25 375 27 c 0 - 391 29 407 33 423 36 c 0 - 439 39 453 46 468 54 c 0 - 476 59 485 64 493 69 c 0 - 508 79 518 92 528 107 c 0x9c - 554 147 568 193 580 238 c 0 - 584 254 585 270 586 286 c 0 - 587 322 587 358 587 395 c 0 - 587 449 585 503 585 557 c 0 - 585 582 586 607 586 631 c 0 - 586 635 586 640 585 644 c 0 - 583 652 581 660 579 667 c 0 - 571 691 554 701 531 706 c 0 - 527 708 521 709 516 709 c 0 - 513 710 511 712 512 716 c 0 - 513 722 514 729 516 735 c 0 - 517 739 521 740 524 740 c 0 - 544 739 563 738 583 737 c 2 - 639 737 l 2 - 644 737 649 738 655 737 c 0 - 664 737 668 733 667 724 c 0 - 666 715 665 706 663 697 c 0 - 655 670 651 644 651 616 c 0 - 651 559 650 502 650 445 c 0 - 651 385 651 324 653 263 c 0 - 654 220 657 176 659 133 c 0 - 660 112 667 92 676 73 c 0 - 682 60 692 52 705 45 c 0 - 708 43 711 42 715 40 c 0 - 717 39 719 37 722 38 c 0 - 732 38 742 38 752 41 c 0 - 764 44 771 55 778 65 c 0 - 779 67 780 68 781 71 c 1x6c -411 869 m 0 - 409 858 405 848 398 839 c 0 - 397 838 394 837 392 837 c 0 - 390 838 387 839 386 840 c 0 - 371 849 357 858 343 866 c 0 - 334 872 324 877 314 882 c 0 - 303 887 301 895 306 904 c 0 - 308 908 309 913 311 917 c 0 - 315 927 323 929 332 924 c 0 - 355 910 377 896 399 883 c 0 - 401 882 402 880 404 880 c 0 - 410 878 412 874 411 869 c 0 -EndSplineSet -EndChar - -StartChar: Uacute -Encoding: 218 218 133 -Width: 769 -GlyphClass: 2 -Flags: MW -HStem: -27 52 -7 45 709 28 716 28 -VStem: 97 63<356 381> 587 63<376.5 473.5> -LayerCount: 2 -Fore -SplineSet -781 71 m 1x6c - 786 67 790 64 794 61 c 0 - 797 59 798 56 797 53 c 0 - 790 34 781 15 762 6 c 0 - 743 -4 722 -10 701 -7 c 0 - 674 -4 648 7 633 32 c 0 - 624 45 617 59 610 72 c 0 - 603 85 594 87 585 76 c 0 - 582 73 580 71 578 68 c 0 - 563 47 544 29 523 13 c 0 - 506 0 486 -7 465 -12 c 0x5c - 448 -15 431 -19 413 -22 c 0 - 381 -27 349 -29 317 -22 c 0 - 306 -20 296 -19 285 -16 c 0 - 266 -11 246 -5 227 2 c 0 - 214 7 202 14 192 23 c 0 - 180 33 167 43 156 55 c 0 - 148 64 142 74 135 84 c 0 - 118 113 108 144 103 177 c 0 - 100 195 98 213 98 231 c 0 - 97 281 97 331 97 381 c 0 - 96 429 97 477 96 524 c 0 - 96 553 96 581 95 609 c 0 - 94 632 92 655 90 678 c 0 - 89 690 83 699 75 708 c 0 - 70 713 63 716 56 716 c 2 - 41 716 l 2 - 35 716 32 719 31 724 c 0 - 30 726 30 728 30 730 c 0 - 30 740 32 742 42 743 c 0 - 72 743 103 744 133 744 c 0 - 150 744 168 745 185 744 c 0 - 197 744 208 743 220 743 c 0 - 224 743 226 740 227 736 c 0 - 228 726 225 720 215 716 c 2 - 200 710 l 2 - 191 706 184 700 180 691 c 0 - 173 677 168 663 166 648 c 0 - 162 618 164 588 163 558 c 0 - 162 526 162 493 160 461 c 0 - 158 434 160 408 160 381 c 0 - 159 335 159 289 160 243 c 0 - 161 212 165 180 175 149 c 0 - 180 134 187 119 197 106 c 0 - 198 104 199 103 199 102 c 0 - 208 86 222 75 236 66 c 0 - 253 55 270 44 289 35 c 0 - 300 29 313 26 325 25 c 0 - 342 23 359 25 375 27 c 0 - 391 29 407 33 423 36 c 0 - 439 39 453 46 468 54 c 0 - 476 59 485 64 493 69 c 0 - 508 79 518 92 528 107 c 0x9c - 554 147 568 193 580 238 c 0 - 584 254 585 270 586 286 c 0 - 587 322 587 358 587 395 c 0 - 587 449 585 503 585 557 c 0 - 585 582 586 607 586 631 c 0 - 586 635 586 640 585 644 c 0 - 583 652 581 660 579 667 c 0 - 571 691 554 701 531 706 c 0 - 527 708 521 709 516 709 c 0 - 513 710 511 712 512 716 c 0 - 513 722 514 729 516 735 c 0 - 517 739 521 740 524 740 c 0 - 544 739 563 738 583 737 c 2 - 639 737 l 2 - 644 737 649 738 655 737 c 0 - 664 737 668 733 667 724 c 0 - 666 715 665 706 663 697 c 0 - 655 670 651 644 651 616 c 0 - 651 559 650 502 650 445 c 0 - 651 385 651 324 653 263 c 0 - 654 220 657 176 659 133 c 0 - 660 112 667 92 676 73 c 0 - 682 60 692 52 705 45 c 0 - 708 43 711 42 715 40 c 0 - 717 39 719 37 722 38 c 0 - 732 38 742 38 752 41 c 0 - 764 44 771 55 778 65 c 0 - 779 67 780 68 781 71 c 1x6c -299 871 m 0 - 299 877 302 880 306 882 c 0 - 321 890 335 898 349 909 c 0 - 359 916 371 922 382 927 c 0 - 387 930 395 927 398 922 c 0 - 402 914 405 907 407 899 c 0 - 408 894 406 890 402 887 c 0 - 391 881 381 876 371 870 c 0 - 367 868 363 865 359 862 c 2 - 323 841 l 2 - 315 837 313 838 309 845 c 0 - 305 853 301 862 299 871 c 0 -EndSplineSet -EndChar - -StartChar: Ucircumflex -Encoding: 219 219 134 -Width: 769 -GlyphClass: 2 -Flags: MW -HStem: -27 52 -7 45 709 28 716 28 -VStem: 97 63<356 381> 587 63<376.5 473.5> -LayerCount: 2 -Fore -SplineSet -781 71 m 1x6c - 786 67 790 64 794 61 c 0 - 797 59 798 56 797 53 c 0 - 790 34 781 15 762 6 c 0 - 743 -4 722 -10 701 -7 c 0 - 674 -4 648 7 633 32 c 0 - 624 45 617 59 610 72 c 0 - 603 85 594 87 585 76 c 0 - 582 73 580 71 578 68 c 0 - 563 47 544 29 523 13 c 0 - 506 0 486 -7 465 -12 c 0x5c - 448 -15 431 -19 413 -22 c 0 - 381 -27 349 -29 317 -22 c 0 - 306 -20 296 -19 285 -16 c 0 - 266 -11 246 -5 227 2 c 0 - 214 7 202 14 192 23 c 0 - 180 33 167 43 156 55 c 0 - 148 64 142 74 135 84 c 0 - 118 113 108 144 103 177 c 0 - 100 195 98 213 98 231 c 0 - 97 281 97 331 97 381 c 0 - 96 429 97 477 96 524 c 0 - 96 553 96 581 95 609 c 0 - 94 632 92 655 90 678 c 0 - 89 690 83 699 75 708 c 0 - 70 713 63 716 56 716 c 2 - 41 716 l 2 - 35 716 32 719 31 724 c 0 - 30 726 30 728 30 730 c 0 - 30 740 32 742 42 743 c 0 - 72 743 103 744 133 744 c 0 - 150 744 168 745 185 744 c 0 - 197 744 208 743 220 743 c 0 - 224 743 226 740 227 736 c 0 - 228 726 225 720 215 716 c 2 - 200 710 l 2 - 191 706 184 700 180 691 c 0 - 173 677 168 663 166 648 c 0 - 162 618 164 588 163 558 c 0 - 162 526 162 493 160 461 c 0 - 158 434 160 408 160 381 c 0 - 159 335 159 289 160 243 c 0 - 161 212 165 180 175 149 c 0 - 180 134 187 119 197 106 c 0 - 198 104 199 103 199 102 c 0 - 208 86 222 75 236 66 c 0 - 253 55 270 44 289 35 c 0 - 300 29 313 26 325 25 c 0 - 342 23 359 25 375 27 c 0 - 391 29 407 33 423 36 c 0 - 439 39 453 46 468 54 c 0 - 476 59 485 64 493 69 c 0 - 508 79 518 92 528 107 c 0x9c - 554 147 568 193 580 238 c 0 - 584 254 585 270 586 286 c 0 - 587 322 587 358 587 395 c 0 - 587 449 585 503 585 557 c 0 - 585 582 586 607 586 631 c 0 - 586 635 586 640 585 644 c 0 - 583 652 581 660 579 667 c 0 - 571 691 554 701 531 706 c 0 - 527 708 521 709 516 709 c 0 - 513 710 511 712 512 716 c 0 - 513 722 514 729 516 735 c 0 - 517 739 521 740 524 740 c 0 - 544 739 563 738 583 737 c 2 - 639 737 l 2 - 644 737 649 738 655 737 c 0 - 664 737 668 733 667 724 c 0 - 666 715 665 706 663 697 c 0 - 655 670 651 644 651 616 c 0 - 651 559 650 502 650 445 c 0 - 651 385 651 324 653 263 c 0 - 654 220 657 176 659 133 c 0 - 660 112 667 92 676 73 c 0 - 682 60 692 52 705 45 c 0 - 708 43 711 42 715 40 c 0 - 717 39 719 37 722 38 c 0 - 732 38 742 38 752 41 c 0 - 764 44 771 55 778 65 c 0 - 779 67 780 68 781 71 c 1x6c -360 944 m 0 - 365 944 369 941 372 937 c 0 - 389 918 406 900 424 881 c 0 - 425 880 426 878 428 877 c 0 - 434 871 435 867 431 860 c 0 - 426 853 420 846 414 840 c 0 - 411 836 407 836 404 840 c 0 - 392 852 380 865 368 877 c 0 - 368 878 367 879 367 879 c 1 - 359 886 358 886 350 879 c 0 - 338 867 327 855 315 843 c 0 - 308 837 306 837 300 843 c 0 - 295 849 291 854 287 861 c 0 - 282 868 283 873 290 879 c 0 - 302 890 313 902 324 915 c 0 - 332 924 341 932 350 941 c 0 - 353 943 357 943 360 944 c 0 -EndSplineSet -EndChar - -StartChar: Udieresis -Encoding: 220 220 135 -Width: 769 -GlyphClass: 2 -Flags: MW -HStem: -27 52 -7 45 709 28 716 28 839 54<304.5 309 309 315 392.5 397 397 401 401 403> -VStem: 97 63<356 381> 278 59 366 59 587 63<376.5 473.5> -LayerCount: 2 -Fore -SplineSet -781 71 m 1x6c80 - 786 67 790 64 794 61 c 0 - 797 59 798 56 797 53 c 0 - 790 34 781 15 762 6 c 0 - 743 -4 722 -10 701 -7 c 0 - 674 -4 648 7 633 32 c 0 - 624 45 617 59 610 72 c 0 - 603 85 594 87 585 76 c 0 - 582 73 580 71 578 68 c 0 - 563 47 544 29 523 13 c 0 - 506 0 486 -7 465 -12 c 0x5c80 - 448 -15 431 -19 413 -22 c 0 - 381 -27 349 -29 317 -22 c 0 - 306 -20 296 -19 285 -16 c 0 - 266 -11 246 -5 227 2 c 0 - 214 7 202 14 192 23 c 0 - 180 33 167 43 156 55 c 0 - 148 64 142 74 135 84 c 0 - 118 113 108 144 103 177 c 0 - 100 195 98 213 98 231 c 0 - 97 281 97 331 97 381 c 0 - 96 429 97 477 96 524 c 0 - 96 553 96 581 95 609 c 0 - 94 632 92 655 90 678 c 0 - 89 690 83 699 75 708 c 0 - 70 713 63 716 56 716 c 2 - 41 716 l 2 - 35 716 32 719 31 724 c 0 - 30 726 30 728 30 730 c 0 - 30 740 32 742 42 743 c 0 - 72 743 103 744 133 744 c 0 - 150 744 168 745 185 744 c 0 - 197 744 208 743 220 743 c 0 - 224 743 226 740 227 736 c 0 - 228 726 225 720 215 716 c 2 - 200 710 l 2 - 191 706 184 700 180 691 c 0 - 173 677 168 663 166 648 c 0 - 162 618 164 588 163 558 c 0 - 162 526 162 493 160 461 c 0 - 158 434 160 408 160 381 c 0 - 159 335 159 289 160 243 c 0 - 161 212 165 180 175 149 c 0 - 180 134 187 119 197 106 c 0 - 198 104 199 103 199 102 c 0 - 208 86 222 75 236 66 c 0 - 253 55 270 44 289 35 c 0 - 300 29 313 26 325 25 c 0 - 342 23 359 25 375 27 c 0 - 391 29 407 33 423 36 c 0 - 439 39 453 46 468 54 c 0 - 476 59 485 64 493 69 c 0 - 508 79 518 92 528 107 c 0x9c80 - 554 147 568 193 580 238 c 0 - 584 254 585 270 586 286 c 0 - 587 322 587 358 587 395 c 0 - 587 449 585 503 585 557 c 0 - 585 582 586 607 586 631 c 0 - 586 635 586 640 585 644 c 0 - 583 652 581 660 579 667 c 0 - 571 691 554 701 531 706 c 0 - 527 708 521 709 516 709 c 0 - 513 710 511 712 512 716 c 0 - 513 722 514 729 516 735 c 0 - 517 739 521 740 524 740 c 0 - 544 739 563 738 583 737 c 2 - 639 737 l 2 - 644 737 649 738 655 737 c 0 - 664 737 668 733 667 724 c 0 - 666 715 665 706 663 697 c 0 - 655 670 651 644 651 616 c 0 - 651 559 650 502 650 445 c 0 - 651 385 651 324 653 263 c 0 - 654 220 657 176 659 133 c 0 - 660 112 667 92 676 73 c 0 - 682 60 692 52 705 45 c 0 - 708 43 711 42 715 40 c 0 - 717 39 719 37 722 38 c 0 - 732 38 742 38 752 41 c 0 - 764 44 771 55 778 65 c 0 - 779 67 780 68 781 71 c 1x6c80 -397 839 m 2x9d80 - 388 839 379 839 372 847 c 0 - 364 855 364 870 371 879 c 0 - 373 882 375 884 377 887 c 0 - 379 891 382 893 386 893 c 0 - 391 893 397 892 401 893 c 0 - 409 893 414 890 417 885 c 0 - 422 877 426 870 425 861 c 0 - 424 847 416 839 403 839 c 2 - 397 839 l 2x9d80 -309 839 m 2x9e80 - 300 839 291 839 284 847 c 0 - 277 855 276 870 283 879 c 0 - 285 882 287 884 289 887 c 0 - 291 891 294 893 298 893 c 2 - 315 893 l 2 - 321 893 325 891 329 886 c 0 - 334 878 338 871 337 861 c 0 - 337 847 328 839 315 839 c 2 - 309 839 l 2x9e80 -EndSplineSet -EndChar - -StartChar: Yacute -Encoding: 221 221 136 -Width: 748 -GlyphClass: 2 -Flags: MW -HStem: -5 21G -3 21G<295 301 301 388> 715 26 717 27<612 718> -VStem: 30 154 326 65 558 160<734.5 740> -LayerCount: 2 -Fore -SplineSet -214 741 m 1x6c - 214 734 214 728 213 722 c 0 - 213 721 212 719 210 717 c 0 - 208 716 205 716 202 715 c 0 - 186 708 179 692 187 676 c 0 - 192 666 198 657 205 649 c 0 - 218 633 232 617 245 602 c 0 - 249 595 253 588 258 582 c 0 - 276 558 294 535 312 512 c 0 - 322 499 331 486 340 472 c 0 - 347 462 353 452 359 442 c 2 - 363 438 l 1 - 365 440 367 441 368 443 c 0 - 395 479 428 509 456 543 c 0 - 466 554 476 566 485 577 c 0 - 502 597 518 616 536 635 c 0 - 551 652 565 669 578 688 c 0 - 580 691 582 695 582 699 c 0 - 583 706 580 710 573 712 c 0 - 568 714 563 715 557 717 c 1x6e - 557 724 558 731 558 738 c 0 - 558 742 561 742 564 742 c 2 - 580 742 l 2 - 587 743 594 743 601 743 c 0 - 605 744 609 744 612 744 c 0 - 647 741 682 746 718 744 c 1 - 718 717 l 1 - 700 715 684 709 669 702 c 0 - 656 695 644 686 635 675 c 0 - 627 666 619 658 611 649 c 0 - 587 623 565 594 543 565 c 0 - 523 540 504 514 483 489 c 0 - 477 481 469 473 462 465 c 0 - 451 452 441 439 431 426 c 2 - 404 390 l 2 - 399 383 396 376 395 367 c 0 - 394 353 392 339 392 325 c 0 - 391 309 393 293 393 276 c 0 - 392 246 391 216 391 186 c 0 - 391 150 389 114 391 79 c 0 - 393 50 407 34 436 24 c 0 - 441 23 445 22 450 21 c 0 - 453 20 456 18 456 14 c 2 - 456 -5 l 1 - 445 -5 435 -6 426 -5 c 0 - 413 -5 400 -3 388 -3 c 0 - 359 -3 330 -2 301 -3 c 0x5e - 289 -3 278 -5 267 -7 c 0 - 264 -7 262 -7 259 -6 c 2 - 259 16 l 2 - 259 25 260 24 267 27 c 0 - 277 29 286 33 295 37 c 0 - 300 39 305 43 309 46 c 0 - 314 51 318 57 319 65 c 0xac - 319 79 320 93 321 106 c 0 - 322 123 322 140 323 157 c 0 - 324 187 326 218 327 248 c 0 - 329 280 330 312 326 344 c 1 - 326 347 l 2 - 329 367 321 383 311 399 c 0 - 304 409 297 418 290 427 c 0 - 280 441 271 454 262 467 c 0 - 254 478 247 488 239 498 c 0 - 234 505 230 512 225 519 c 2 - 210 537 l 2 - 206 543 201 548 197 555 c 0 - 187 573 175 590 161 605 c 0 - 152 616 144 628 134 639 c 0 - 116 660 97 680 74 697 c 0 - 62 706 49 709 35 712 c 0 - 33 712 32 713 30 713 c 1 - 30 740 l 1 - 32 740 32 741 33 741 c 0 - 51 741 68 740 86 740 c 0 - 102 740 118 740 133 741 c 2 - 167 741 l 1 - 198 741 l 1 - 214 741 l 1x6c -305 870 m 0 - 305 876 308 879 312 881 c 0 - 327 889 341 897 355 908 c 0 - 365 915 377 921 388 926 c 0 - 393 929 401 926 404 921 c 0 - 408 913 411 906 413 898 c 0 - 414 893 412 889 408 886 c 0 - 397 880 387 875 377 869 c 0 - 373 867 369 864 365 861 c 2 - 329 840 l 2 - 321 836 319 837 315 844 c 0 - 311 852 307 861 305 870 c 0 -EndSplineSet -EndChar - -StartChar: germandbls -Encoding: 223 223 137 -Width: 603 -GlyphClass: 2 -Flags: MW -HStem: -4 38 0 20 698 51<225 232> -VStem: 81 64<99 103> 344 63 532 58 -LayerCount: 2 -Fore -SplineSet -140 691 m 1xbc - 140 678 139 665 140 652 c 0 - 143 616 142 581 142 545 c 0 - 143 505 145 465 146 424 c 0 - 147 408 148 392 148 376 c 0 - 148 339 148 301 147 264 c 0 - 147 244 145 225 145 205 c 2 - 145 75 l 2 - 144 55 143 34 142 14 c 0 - 141 1 136 -3 123 -3 c 2 - 95 -3 l 2 - 83 -3 71 -3 59 -5 c 0 - 45 -8 32 -6 18 -4 c 1xbc - 18 20 l 1 - 22 22 27 23 32 25 c 0 - 45 29 58 35 69 44 c 0 - 72 46 75 50 76 53 c 0 - 77 61 79 69 80 77 c 0 - 81 86 81 95 81 103 c 0x7c - 83 154 85 205 87 257 c 0 - 88 285 87 314 85 343 c 0 - 83 366 83 390 84 413 c 0 - 84 449 82 486 79 522 c 0 - 78 525 78 527 78 529 c 0 - 79 563 76 596 72 629 c 0 - 70 646 67 662 63 679 c 0 - 60 691 53 701 42 707 c 0 - 35 710 28 713 21 715 c 0 - 18 717 14 718 10 720 c 1 - 10 726 11 732 11 737 c 0 - 14 738 15 739 16 739 c 0 - 46 740 76 741 105 743 c 0 - 114 743 124 744 133 745 c 0 - 163 750 194 750 225 749 c 2 - 244 749 l 2 - 259 748 273 747 288 742 c 0 - 301 738 314 735 327 730 c 0 - 345 724 362 716 376 703 c 0 - 379 700 381 697 383 694 c 0 - 401 670 409 643 407 613 c 0 - 406 606 405 598 405 591 c 0 - 404 578 400 566 392 556 c 2 - 386 547 l 2 - 387 546 387 545 387 545 c 1 - 421 531 451 510 482 491 c 0 - 519 467 550 437 568 396 c 0 - 572 386 576 377 578 367 c 0 - 584 345 587 323 590 301 c 0 - 594 271 593 240 588 211 c 0 - 586 192 581 174 576 157 c 0 - 569 137 562 117 553 98 c 0 - 546 85 536 72 528 59 c 0 - 524 54 519 50 514 46 c 0 - 483 22 449 5 410 0 c 0 - 378 -5 347 -8 315 -4 c 1 - 299 -4 l 2xbc - 265 -3 231 -1 197 0 c 0 - 193 0 189 1 184 1 c 1 - 184 7 183 12 184 17 c 0x7c - 186 28 195 36 206 37 c 0 - 213 37 220 36 226 36 c 0 - 259 35 291 33 323 34 c 0 - 365 35 406 45 444 63 c 0 - 458 70 469 80 479 92 c 0 - 504 123 523 158 527 200 c 0 - 529 222 531 245 532 268 c 0 - 532 301 524 332 511 361 c 0 - 508 366 506 372 504 377 c 0 - 499 389 490 396 483 405 c 0 - 471 422 455 434 439 447 c 0 - 418 464 396 478 374 492 c 0 - 361 500 348 506 332 509 c 0 - 321 511 311 515 300 518 c 0 - 295 519 293 522 292 527 c 0 - 291 532 292 536 296 538 c 0 - 301 541 306 544 310 547 c 0 - 317 552 323 557 329 562 c 0 - 337 569 341 578 341 588 c 0 - 343 604 346 619 341 635 c 0 - 335 653 326 668 309 678 c 0 - 285 692 260 698 232 698 c 0 - 215 698 197 699 180 698 c 0 - 167 697 154 694 140 691 c 1xbc -EndSplineSet -Kerns2: 70 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 22 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: agrave -Encoding: 224 224 138 -Width: 524 -GlyphClass: 2 -Flags: MW -HStem: -14 49 -7 36<202 266> 288 52 -VStem: 38 51 356 48<188 195.5> -LayerCount: 2 -Fore -SplineSet -359 28 m 1xb8 - 335 16 l 2 - 329 13 323 10 317 8 c 0xb8 - 302 3 288 -2 272 -5 c 0 - 260 -8 246 -7 233 -7 c 0 - 223 -7 213 -8 202 -7 c 0 - 184 -4 164 -2 146 4 c 0 - 129 10 111 18 98 32 c 2 - 94 36 l 1x78 - 68 56 54 84 41 113 c 0 - 39 116 38 120 38 124 c 0 - 35 144 36 164 41 184 c 0 - 47 208 55 232 68 254 c 0 - 74 264 83 274 92 283 c 0 - 101 292 112 300 122 307 c 0 - 131 313 142 317 152 321 c 0 - 157 324 163 326 170 327 c 0 - 176 329 182 329 188 330 c 0 - 199 333 210 337 222 338 c 0 - 241 340 260 343 279 338 c 2 - 324 329 l 2 - 330 328 334 326 339 322 c 0 - 343 319 348 316 353 313 c 1 - 374 328 l 2 - 386 336 389 335 401 326 c 0 - 406 322 408 318 406 310 c 0 - 404 301 404 290 404 280 c 0 - 404 244 402 209 404 174 c 0 - 405 138 409 103 412 68 c 0 - 413 56 420 46 429 39 c 0 - 439 31 454 34 464 44 c 0 - 473 53 483 62 487 75 c 0 - 488 78 490 81 492 84 c 0 - 501 82 508 78 515 73 c 0 - 517 72 518 67 517 65 c 0 - 507 45 500 24 485 7 c 0 - 468 -12 448 -18 423 -14 c 0 - 409 -12 396 -7 383 0 c 0 - 379 2 376 5 374 8 c 0 - 369 14 364 21 359 28 c 1xb8 -361 130 m 0 - 360 138 360 147 359 156 c 0 - 358 167 357 178 356 188 c 0 - 356 203 355 218 353 233 c 0 - 353 236 351 240 349 244 c 0 - 345 254 337 262 328 268 c 0 - 321 273 314 278 306 280 c 0 - 290 286 273 289 256 290 c 0 - 240 291 223 292 207 287 c 0 - 205 286 202 286 200 286 c 0 - 198 286 196 286 194 285 c 0 - 186 282 177 281 170 275 c 0 - 169 274 167 274 166 274 c 0 - 147 269 133 259 120 246 c 0 - 117 243 114 241 112 238 c 0 - 105 224 98 211 94 196 c 0 - 87 169 85 142 98 115 c 0 - 101 109 106 105 109 99 c 0 - 118 81 134 72 150 62 c 0 - 167 53 184 46 203 41 c 0 - 211 38 220 37 228 35 c 0 - 240 31 253 31 265 29 c 0 - 267 29 269 29 271 30 c 0 - 283 34 295 36 306 44 c 0 - 311 49 318 53 324 57 c 0 - 336 64 345 74 356 83 c 0 - 356 84 357 86 358 87 c 0x78 - 359 101 360 115 361 130 c 0 -273 442 m 0 - 271 431 267 421 260 412 c 0 - 259 411 256 410 254 410 c 0 - 252 411 249 412 248 413 c 0 - 233 422 219 431 205 439 c 0 - 196 445 186 450 176 455 c 0 - 165 460 163 468 168 477 c 0 - 170 481 171 486 173 490 c 0 - 177 500 185 502 194 497 c 0 - 217 483 239 469 261 456 c 0 - 263 455 264 453 266 453 c 0 - 272 451 274 447 273 442 c 0 -EndSplineSet -Kerns2: 138 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -60 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: aacute -Encoding: 225 225 139 -Width: 524 -GlyphClass: 2 -Flags: MW -HStem: -14 49 -7 36<202 266> 288 52 -VStem: 38 51 356 48<188 195.5> -LayerCount: 2 -Fore -SplineSet -359 28 m 1xb8 - 335 16 l 2 - 329 13 323 10 317 8 c 0xb8 - 302 3 288 -2 272 -5 c 0 - 260 -8 246 -7 233 -7 c 0 - 223 -7 213 -8 202 -7 c 0 - 184 -4 164 -2 146 4 c 0 - 129 10 111 18 98 32 c 2 - 94 36 l 1x78 - 68 56 54 84 41 113 c 0 - 39 116 38 120 38 124 c 0 - 35 144 36 164 41 184 c 0 - 47 208 55 232 68 254 c 0 - 74 264 83 274 92 283 c 0 - 101 292 112 300 122 307 c 0 - 131 313 142 317 152 321 c 0 - 157 324 163 326 170 327 c 0 - 176 329 182 329 188 330 c 0 - 199 333 210 337 222 338 c 0 - 241 340 260 343 279 338 c 2 - 324 329 l 2 - 330 328 334 326 339 322 c 0 - 343 319 348 316 353 313 c 1 - 374 328 l 2 - 386 336 389 335 401 326 c 0 - 406 322 408 318 406 310 c 0 - 404 301 404 290 404 280 c 0 - 404 244 402 209 404 174 c 0 - 405 138 409 103 412 68 c 0 - 413 56 420 46 429 39 c 0 - 439 31 454 34 464 44 c 0 - 473 53 483 62 487 75 c 0 - 488 78 490 81 492 84 c 0 - 501 82 508 78 515 73 c 0 - 517 72 518 67 517 65 c 0 - 507 45 500 24 485 7 c 0 - 468 -12 448 -18 423 -14 c 0 - 409 -12 396 -7 383 0 c 0 - 379 2 376 5 374 8 c 0 - 369 14 364 21 359 28 c 1xb8 -361 130 m 0 - 360 138 360 147 359 156 c 0 - 358 167 357 178 356 188 c 0 - 356 203 355 218 353 233 c 0 - 353 236 351 240 349 244 c 0 - 345 254 337 262 328 268 c 0 - 321 273 314 278 306 280 c 0 - 290 286 273 289 256 290 c 0 - 240 291 223 292 207 287 c 0 - 205 286 202 286 200 286 c 0 - 198 286 196 286 194 285 c 0 - 186 282 177 281 170 275 c 0 - 169 274 167 274 166 274 c 0 - 147 269 133 259 120 246 c 0 - 117 243 114 241 112 238 c 0 - 105 224 98 211 94 196 c 0 - 87 169 85 142 98 115 c 0 - 101 109 106 105 109 99 c 0 - 118 81 134 72 150 62 c 0 - 167 53 184 46 203 41 c 0 - 211 38 220 37 228 35 c 0 - 240 31 253 31 265 29 c 0 - 267 29 269 29 271 30 c 0 - 283 34 295 36 306 44 c 0 - 311 49 318 53 324 57 c 0 - 336 64 345 74 356 83 c 0 - 356 84 357 86 358 87 c 0x78 - 359 101 360 115 361 130 c 0 -165 444 m 0 - 165 450 168 453 172 455 c 0 - 187 463 201 471 215 482 c 0 - 225 489 237 495 248 500 c 0 - 253 503 261 500 264 495 c 0 - 268 487 271 480 273 472 c 0 - 274 467 272 463 268 460 c 0 - 257 454 247 449 237 443 c 0 - 233 441 229 438 225 435 c 2 - 189 414 l 2 - 181 410 179 411 175 418 c 0 - 171 426 167 435 165 444 c 0 -EndSplineSet -Kerns2: 139 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -89 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: acircumflex -Encoding: 226 226 140 -Width: 523 -GlyphClass: 2 -Flags: MW -HStem: -14 49 -7 36<202 266> 288 52 -VStem: 38 51 356 48<188 195.5> -LayerCount: 2 -Fore -SplineSet -359 28 m 1xb8 - 335 16 l 2 - 329 13 323 10 317 8 c 0xb8 - 302 3 288 -2 272 -5 c 0 - 260 -8 246 -7 233 -7 c 0 - 223 -7 213 -8 202 -7 c 0 - 184 -4 164 -2 146 4 c 0 - 129 10 111 18 98 32 c 2 - 94 36 l 1x78 - 68 56 54 84 41 113 c 0 - 39 116 38 120 38 124 c 0 - 35 144 36 164 41 184 c 0 - 47 208 55 232 68 254 c 0 - 74 264 83 274 92 283 c 0 - 101 292 112 300 122 307 c 0 - 131 313 142 317 152 321 c 0 - 157 324 163 326 170 327 c 0 - 176 329 182 329 188 330 c 0 - 199 333 210 337 222 338 c 0 - 241 340 260 343 279 338 c 2 - 324 329 l 2 - 330 328 334 326 339 322 c 0 - 343 319 348 316 353 313 c 1 - 374 328 l 2 - 386 336 389 335 401 326 c 0 - 406 322 408 318 406 310 c 0 - 404 301 404 290 404 280 c 0 - 404 244 402 209 404 174 c 0 - 405 138 409 103 412 68 c 0 - 413 56 420 46 429 39 c 0 - 439 31 454 34 464 44 c 0 - 473 53 483 62 487 75 c 0 - 488 78 490 81 492 84 c 0 - 501 82 508 78 515 73 c 0 - 517 72 518 67 517 65 c 0 - 507 45 500 24 485 7 c 0 - 468 -12 448 -18 423 -14 c 0 - 409 -12 396 -7 383 0 c 0 - 379 2 376 5 374 8 c 0 - 369 14 364 21 359 28 c 1xb8 -361 130 m 0 - 360 138 360 147 359 156 c 0 - 358 167 357 178 356 188 c 0 - 356 203 355 218 353 233 c 0 - 353 236 351 240 349 244 c 0 - 345 254 337 262 328 268 c 0 - 321 273 314 278 306 280 c 0 - 290 286 273 289 256 290 c 0 - 240 291 223 292 207 287 c 0 - 205 286 202 286 200 286 c 0 - 198 286 196 286 194 285 c 0 - 186 282 177 281 170 275 c 0 - 169 274 167 274 166 274 c 0 - 147 269 133 259 120 246 c 0 - 117 243 114 241 112 238 c 0 - 105 224 98 211 94 196 c 0 - 87 169 85 142 98 115 c 0 - 101 109 106 105 109 99 c 0 - 118 81 134 72 150 62 c 0 - 167 53 184 46 203 41 c 0 - 211 38 220 37 228 35 c 0 - 240 31 253 31 265 29 c 0 - 267 29 269 29 271 30 c 0 - 283 34 295 36 306 44 c 0 - 311 49 318 53 324 57 c 0 - 336 64 345 74 356 83 c 0 - 356 84 357 86 358 87 c 0x78 - 359 101 360 115 361 130 c 0 -203 516 m 0 - 208 516 212 513 215 509 c 0 - 232 490 249 472 267 453 c 0 - 268 452 269 450 271 449 c 0 - 277 443 278 439 274 432 c 0 - 269 425 263 418 257 412 c 0 - 254 408 250 408 247 412 c 0 - 235 424 223 437 211 449 c 0 - 211 450 210 451 210 451 c 1 - 202 458 201 458 193 451 c 0 - 181 439 170 427 158 415 c 0 - 151 409 149 409 143 415 c 0 - 138 421 134 426 130 433 c 0 - 125 440 126 445 133 451 c 0 - 145 462 156 474 167 487 c 0 - 175 496 184 504 193 513 c 0 - 196 515 200 515 203 516 c 0 -EndSplineSet -Kerns2: 86 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 83 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: atilde -Encoding: 227 227 141 -Width: 524 -GlyphClass: 2 -Flags: MW -HStem: -14 49 -7 36<202 266> 288 52 417 40 424 44<183.5 199> -VStem: 38 51 356 48<188 195.5> -LayerCount: 2 -Fore -SplineSet -359 28 m 1xb6 - 335 16 l 2 - 329 13 323 10 317 8 c 0xb6 - 302 3 288 -2 272 -5 c 0 - 260 -8 246 -7 233 -7 c 0 - 223 -7 213 -8 202 -7 c 0 - 184 -4 164 -2 146 4 c 0 - 129 10 111 18 98 32 c 2 - 94 36 l 1x76 - 68 56 54 84 41 113 c 0 - 39 116 38 120 38 124 c 0 - 35 144 36 164 41 184 c 0 - 47 208 55 232 68 254 c 0 - 74 264 83 274 92 283 c 0 - 101 292 112 300 122 307 c 0 - 131 313 142 317 152 321 c 0 - 157 324 163 326 170 327 c 0 - 176 329 182 329 188 330 c 0 - 199 333 210 337 222 338 c 0 - 241 340 260 343 279 338 c 2 - 324 329 l 2 - 330 328 334 326 339 322 c 0 - 343 319 348 316 353 313 c 1 - 374 328 l 2 - 386 336 389 335 401 326 c 0 - 406 322 408 318 406 310 c 0 - 404 301 404 290 404 280 c 0 - 404 244 402 209 404 174 c 0 - 405 138 409 103 412 68 c 0 - 413 56 420 46 429 39 c 0 - 439 31 454 34 464 44 c 0 - 473 53 483 62 487 75 c 0 - 488 78 490 81 492 84 c 0 - 501 82 508 78 515 73 c 0 - 517 72 518 67 517 65 c 0 - 507 45 500 24 485 7 c 0 - 468 -12 448 -18 423 -14 c 0 - 409 -12 396 -7 383 0 c 0 - 379 2 376 5 374 8 c 0 - 369 14 364 21 359 28 c 1xb6 -361 130 m 0 - 360 138 360 147 359 156 c 0 - 358 167 357 178 356 188 c 0 - 356 203 355 218 353 233 c 0 - 353 236 351 240 349 244 c 0 - 345 254 337 262 328 268 c 0 - 321 273 314 278 306 280 c 0 - 290 286 273 289 256 290 c 0 - 240 291 223 292 207 287 c 0 - 205 286 202 286 200 286 c 0 - 198 286 196 286 194 285 c 0 - 186 282 177 281 170 275 c 0 - 169 274 167 274 166 274 c 0 - 147 269 133 259 120 246 c 0 - 117 243 114 241 112 238 c 0 - 105 224 98 211 94 196 c 0 - 87 169 85 142 98 115 c 0 - 101 109 106 105 109 99 c 0 - 118 81 134 72 150 62 c 0 - 167 53 184 46 203 41 c 0 - 211 38 220 37 228 35 c 0 - 240 31 253 31 265 29 c 0 - 267 29 269 29 271 30 c 0 - 283 34 295 36 306 44 c 0 - 311 49 318 53 324 57 c 0 - 336 64 345 74 356 83 c 0 - 356 84 357 86 358 87 c 0x76 - 359 101 360 115 361 130 c 0 -141 426 m 1xae - 148 441 156 455 171 464 c 0 - 175 466 181 468 186 468 c 0xae - 196 469 205 466 214 462 c 0 - 218 460 222 459 227 457 c 0 - 236 454 243 456 249 463 c 0 - 254 470 254 470 262 467 c 0 - 266 465 270 464 273 463 c 0 - 279 460 281 457 279 451 c 0 - 277 444 274 438 271 432 c 2 - 268 429 l 2 - 262 418 251 416 239 417 c 0 - 229 417 219 419 209 422 c 0 - 205 424 201 424 197 424 c 0xb6 - 190 425 185 423 181 417 c 0 - 178 412 175 412 170 414 c 0 - 161 418 152 422 141 426 c 1xae -EndSplineSet -EndChar - -StartChar: adieresis -Encoding: 228 228 142 -Width: 524 -GlyphClass: 2 -Flags: MW -HStem: -14 49 -7 36<202 266> 288 52 411 54<168.5 173 173 179 256.5 261 261 265 265 267> -VStem: 38 51 142 59 230 59 356 48<188 195.5> -LayerCount: 2 -Fore -SplineSet -359 28 m 1xb9 - 335 16 l 2 - 329 13 323 10 317 8 c 0xb9 - 302 3 288 -2 272 -5 c 0 - 260 -8 246 -7 233 -7 c 0 - 223 -7 213 -8 202 -7 c 0 - 184 -4 164 -2 146 4 c 0 - 129 10 111 18 98 32 c 2 - 94 36 l 1x79 - 68 56 54 84 41 113 c 0 - 39 116 38 120 38 124 c 0 - 35 144 36 164 41 184 c 0 - 47 208 55 232 68 254 c 0 - 74 264 83 274 92 283 c 0 - 101 292 112 300 122 307 c 0 - 131 313 142 317 152 321 c 0 - 157 324 163 326 170 327 c 0 - 176 329 182 329 188 330 c 0 - 199 333 210 337 222 338 c 0 - 241 340 260 343 279 338 c 2 - 324 329 l 2 - 330 328 334 326 339 322 c 0 - 343 319 348 316 353 313 c 1 - 374 328 l 2 - 386 336 389 335 401 326 c 0 - 406 322 408 318 406 310 c 0 - 404 301 404 290 404 280 c 0 - 404 244 402 209 404 174 c 0 - 405 138 409 103 412 68 c 0 - 413 56 420 46 429 39 c 0 - 439 31 454 34 464 44 c 0 - 473 53 483 62 487 75 c 0 - 488 78 490 81 492 84 c 0 - 501 82 508 78 515 73 c 0 - 517 72 518 67 517 65 c 0 - 507 45 500 24 485 7 c 0 - 468 -12 448 -18 423 -14 c 0 - 409 -12 396 -7 383 0 c 0 - 379 2 376 5 374 8 c 0 - 369 14 364 21 359 28 c 1xb9 -361 130 m 0 - 360 138 360 147 359 156 c 0 - 358 167 357 178 356 188 c 0 - 356 203 355 218 353 233 c 0 - 353 236 351 240 349 244 c 0 - 345 254 337 262 328 268 c 0 - 321 273 314 278 306 280 c 0 - 290 286 273 289 256 290 c 0 - 240 291 223 292 207 287 c 0 - 205 286 202 286 200 286 c 0 - 198 286 196 286 194 285 c 0 - 186 282 177 281 170 275 c 0 - 169 274 167 274 166 274 c 0 - 147 269 133 259 120 246 c 0 - 117 243 114 241 112 238 c 0 - 105 224 98 211 94 196 c 0 - 87 169 85 142 98 115 c 0 - 101 109 106 105 109 99 c 0 - 118 81 134 72 150 62 c 0 - 167 53 184 46 203 41 c 0 - 211 38 220 37 228 35 c 0 - 240 31 253 31 265 29 c 0 - 267 29 269 29 271 30 c 0 - 283 34 295 36 306 44 c 0 - 311 49 318 53 324 57 c 0 - 336 64 345 74 356 83 c 0 - 356 84 357 86 358 87 c 0x79 - 359 101 360 115 361 130 c 0 -261 411 m 2xbb - 252 411 243 411 236 419 c 0 - 228 427 228 442 235 451 c 0 - 237 454 239 456 241 459 c 0 - 243 463 246 465 250 465 c 0 - 255 465 261 464 265 465 c 0 - 273 465 278 462 281 457 c 0 - 286 449 290 442 289 433 c 0 - 288 419 280 411 267 411 c 2 - 261 411 l 2xbb -173 411 m 2xbd - 164 411 155 411 148 419 c 0 - 141 427 140 442 147 451 c 0 - 149 454 151 456 153 459 c 0 - 155 463 158 465 162 465 c 2 - 179 465 l 2 - 185 465 189 463 193 458 c 0 - 198 450 202 443 201 433 c 0 - 201 419 192 411 179 411 c 2 - 173 411 l 2xbd -EndSplineSet -Kerns2: 158 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -89 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -77 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -60 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: aring -Encoding: 229 229 143 -Width: 524 -GlyphClass: 2 -Flags: MW -HStem: -14 49 -7 36<202 266> 288 52 412 38<201.5 202.5> 473 41 -VStem: 38 51 158 40<451.5 460> 216 36 356 48<188 195.5> -LayerCount: 2 -Fore -SplineSet -359 28 m 1xad80 - 335 16 l 2 - 329 13 323 10 317 8 c 0xad80 - 302 3 288 -2 272 -5 c 0 - 260 -8 246 -7 233 -7 c 0 - 223 -7 213 -8 202 -7 c 0 - 184 -4 164 -2 146 4 c 0 - 129 10 111 18 98 32 c 2 - 94 36 l 1x6d80 - 68 56 54 84 41 113 c 0 - 39 116 38 120 38 124 c 0 - 35 144 36 164 41 184 c 0 - 47 208 55 232 68 254 c 0 - 74 264 83 274 92 283 c 0 - 101 292 112 300 122 307 c 0 - 131 313 142 317 152 321 c 0 - 157 324 163 326 170 327 c 0 - 176 329 182 329 188 330 c 0 - 199 333 210 337 222 338 c 0 - 241 340 260 343 279 338 c 2 - 324 329 l 2 - 330 328 334 326 339 322 c 0 - 343 319 348 316 353 313 c 1 - 374 328 l 2 - 386 336 389 335 401 326 c 0 - 406 322 408 318 406 310 c 0 - 404 301 404 290 404 280 c 0 - 404 244 402 209 404 174 c 0 - 405 138 409 103 412 68 c 0 - 413 56 420 46 429 39 c 0 - 439 31 454 34 464 44 c 0 - 473 53 483 62 487 75 c 0 - 488 78 490 81 492 84 c 0 - 501 82 508 78 515 73 c 0 - 517 72 518 67 517 65 c 0 - 507 45 500 24 485 7 c 0 - 468 -12 448 -18 423 -14 c 0 - 409 -12 396 -7 383 0 c 0 - 379 2 376 5 374 8 c 0 - 369 14 364 21 359 28 c 1xad80 -361 130 m 0 - 360 138 360 147 359 156 c 0 - 358 167 357 178 356 188 c 0 - 356 203 355 218 353 233 c 0 - 353 236 351 240 349 244 c 0 - 345 254 337 262 328 268 c 0 - 321 273 314 278 306 280 c 0 - 290 286 273 289 256 290 c 0 - 240 291 223 292 207 287 c 0 - 205 286 202 286 200 286 c 0 - 198 286 196 286 194 285 c 0 - 186 282 177 281 170 275 c 0 - 169 274 167 274 166 274 c 0 - 147 269 133 259 120 246 c 0 - 117 243 114 241 112 238 c 0 - 105 224 98 211 94 196 c 0 - 87 169 85 142 98 115 c 0 - 101 109 106 105 109 99 c 0 - 118 81 134 72 150 62 c 0 - 167 53 184 46 203 41 c 0 - 211 38 220 37 228 35 c 0 - 240 31 253 31 265 29 c 0 - 267 29 269 29 271 30 c 0 - 283 34 295 36 306 44 c 0 - 311 49 318 53 324 57 c 0 - 336 64 345 74 356 83 c 0 - 356 84 357 86 358 87 c 0x6d80 - 359 101 360 115 361 130 c 0 -158 460 m 1xbf80 - 157 475 162 487 170 498 c 0 - 173 501 175 504 178 506 c 0xaf80 - 194 514 210 518 227 510 c 2 - 233 507 l 2 - 245 501 252 491 253 478 c 0 - 254 467 253 456 251 445 c 0xad80 - 247 431 236 422 222 417 c 0 - 219 416 215 415 211 414 c 0 - 208 413 204 412 201 412 c 0xbd80 - 185 416 170 423 162 438 c 0 - 159 444 159 453 157 460 c 1 - 158 460 l 1xbf80 -216 465 m 0xbd80 - 216 469 216 472 211 473 c 0 - 206 475 199 473 197 469 c 0xaf80 - 196 463 197 458 198 452 c 0 - 198 451 201 450 202 450 c 0 - 210 450 216 457 216 465 c 0xbd80 -EndSplineSet -Kerns2: 88 -84 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 70 12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: ae -Encoding: 230 230 144 -Width: 767 -GlyphClass: 2 -Flags: MW -HStem: -20 48 -16 21G -13 37 146 55 284 48 295 52 -VStem: 13 49 335 43 402 68 690 63 -LayerCount: 2 -Fore -SplineSet -446 45 m 1x95 - 441 53 436 60 431 67 c 0x9580 - 413 94 403 125 402 158 c 0 - 401 172 402 186 403 199 c 0 - 407 232 424 259 443 285 c 0 - 445 288 447 291 450 293 c 0 - 468 305 485 318 503 329 c 0 - 512 335 523 338 533 340 c 0 - 549 343 566 345 582 347 c 0 - 602 349 621 347 640 341 c 0 - 649 338 658 338 667 336 c 0 - 671 335 676 334 680 331 c 0 - 693 322 707 313 718 302 c 0 - 726 294 732 283 737 273 c 0 - 742 262 746 251 746 239 c 0 - 746 236 747 233 748 231 c 0 - 757 207 752 184 749 160 c 0 - 748 154 744 152 739 151 c 0 - 725 147 710 146 695 146 c 0 - 674 146 652 146 630 145 c 0 - 595 145 561 144 526 142 c 0 - 506 141 486 138 465 136 c 1 - 465 127 468 119 472 112 c 0 - 484 85 504 65 530 51 c 0 - 552 40 573 30 597 27 c 0 - 609 25 621 25 632 27 c 0 - 647 30 662 35 677 41 c 0 - 698 49 716 63 732 78 c 0 - 735 80 737 83 740 84 c 0 - 746 88 753 86 755 79 c 0 - 756 73 757 67 756 62 c 0 - 752 47 744 34 731 25 c 0 - 714 13 696 3 677 -4 c 0 - 647 -16 615 -23 582 -16 c 0 - 567 -13 552 -12 537 -9 c 0x55c0 - 516 -6 497 2 480 16 c 0 - 479 17 476 18 473 19 c 0 - 471 17 469 14 467 12 c 0 - 465 9 464 7 462 5 c 0 - 445 -18 423 -25 395 -20 c 0 - 382 -18 370 -13 358 -7 c 0 - 354 -4 351 -1 347 3 c 0 - 343 8 338 14 334 20 c 1x95 - 324 20 317 13 310 10 c 0 - 275 -8 238 -17 198 -13 c 0 - 182 -12 165 -11 149 -9 c 0 - 133 -8 116 -4 102 6 c 0 - 99 8 96 9 92 11 c 0 - 89 13 86 14 83 16 c 0 - 62 33 42 52 30 77 c 0 - 28 79 27 82 26 85 c 0 - 9 110 9 138 13 168 c 0 - 17 190 26 212 35 233 c 0 - 44 256 62 273 81 289 c 0 - 93 299 107 306 120 312 c 0 - 130 316 140 319 151 322 c 0 - 165 325 180 329 195 331 c 0 - 214 333 233 336 253 332 c 0 - 267 328 282 325 297 322 c 0 - 303 321 308 319 313 315 c 0 - 317 312 322 310 327 307 c 1 - 334 312 341 316 349 321 c 0 - 353 324 358 328 363 326 c 0 - 369 323 375 318 379 314 c 0 - 381 312 380 308 380 306 c 0 - 379 296 378 285 378 275 c 0x3b - 378 230 377 184 379 138 c 0 - 379 113 383 87 385 62 c 0 - 386 54 390 46 395 40 c 0 - 407 26 423 24 437 36 c 0 - 440 38 443 41 446 45 c 1x95 -335 116 m 0x3b40 - 333 150 332 177 331 204 c 0 - 330 210 329 217 328 223 c 0 - 327 227 327 232 325 236 c 0 - 315 255 298 267 278 274 c 0 - 262 280 245 282 228 284 c 0 - 205 286 183 282 162 276 c 0 - 147 272 133 266 119 259 c 0 - 107 252 95 244 87 232 c 0 - 72 209 63 183 62 155 c 0 - 62 144 63 132 66 122 c 0 - 72 103 83 87 98 74 c 0 - 113 60 132 50 152 43 c 0 - 174 34 198 28 222 24 c 0 - 239 21 254 24 268 31 c 0 - 290 42 309 56 327 73 c 0 - 330 76 332 79 332 83 c 0 - 333 96 334 110 335 116 c 0x3b40 -690 201 m 1 - 687 214 684 226 680 238 c 0 - 675 256 665 272 648 281 c 0 - 633 289 618 295 601 295 c 0 - 576 295 551 291 528 281 c 0 - 506 272 490 256 481 233 c 0 - 478 225 475 216 472 208 c 0 - 469 201 468 194 470 184 c 1 - 487 187 504 189 521 191 c 0 - 526 192 531 192 537 192 c 0 - 541 193 546 192 550 192 c 2x95c0 - 589 195 l 2 - 602 196 614 197 627 198 c 0 - 647 199 667 200 690 201 c 1 -EndSplineSet -Kerns2: 88 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: egrave -Encoding: 232 232 145 -Width: 418 -GlyphClass: 2 -Flags: MW -HStem: -9 21G 217 47<152.5 223.5> 300 51 -VStem: 31 58 -LayerCount: 2 -Fore -SplineSet -368 226 m 1 - 310 217 252 217 195 217 c 0 - 173 218 151 218 129 218 c 0 - 123 218 117 218 112 217 c 0 - 103 216 98 211 96 203 c 0 - 87 172 86 155 96 125 c 0 - 103 106 113 88 131 75 c 0 - 146 64 160 54 177 46 c 0 - 194 38 212 34 231 35 c 0 - 246 36 262 36 277 37 c 0 - 293 39 309 44 323 52 c 0 - 338 61 353 71 369 80 c 1 - 377 75 382 66 388 57 c 1 - 376 44 364 32 349 23 c 0 - 336 15 321 7 306 1 c 0 - 294 -4 282 -7 268 -9 c 0 - 243 -12 217 -12 192 -6 c 0 - 174 -2 157 1 141 7 c 0 - 119 14 97 23 78 37 c 0 - 76 39 74 40 73 42 c 0 - 46 71 30 103 31 143 c 0 - 32 170 36 195 45 220 c 0 - 56 249 73 274 96 294 c 0 - 112 308 129 320 147 330 c 0 - 166 340 185 347 205 349 c 0 - 224 350 242 352 260 351 c 0 - 293 351 322 341 346 319 c 0 - 357 310 365 298 368 284 c 0 - 370 273 372 263 374 252 c 0 - 375 243 374 233 368 226 c 1 -147 265 m 1 - 150 265 152 264 153 264 c 0 - 186 265 218 265 250 266 c 0 - 268 267 287 269 305 270 c 0 - 307 271 309 271 311 272 c 0 - 308 279 303 283 296 286 c 0 - 277 294 257 298 236 300 c 0 - 203 302 175 290 150 270 c 0 - 149 269 149 267 147 265 c 1 -274 439 m 0 - 272 428 268 418 261 409 c 0 - 260 408 257 407 255 407 c 0 - 253 408 250 409 249 410 c 0 - 234 419 220 428 206 436 c 0 - 197 442 187 447 177 452 c 0 - 166 457 164 465 169 474 c 0 - 171 478 172 483 174 487 c 0 - 178 497 186 499 195 494 c 0 - 218 480 240 466 262 453 c 0 - 264 452 265 450 267 450 c 0 - 273 448 275 444 274 439 c 0 -EndSplineSet -Kerns2: 92 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: eacute -Encoding: 233 233 146 -Width: 418 -GlyphClass: 2 -Flags: MW -HStem: -9 21G 217 47<152.5 223.5> 300 51 -VStem: 31 58 -LayerCount: 2 -Fore -SplineSet -368 226 m 1 - 310 217 252 217 195 217 c 0 - 173 218 151 218 129 218 c 0 - 123 218 117 218 112 217 c 0 - 103 216 98 211 96 203 c 0 - 87 172 86 155 96 125 c 0 - 103 106 113 88 131 75 c 0 - 146 64 160 54 177 46 c 0 - 194 38 212 34 231 35 c 0 - 246 36 262 36 277 37 c 0 - 293 39 309 44 323 52 c 0 - 338 61 353 71 369 80 c 1 - 377 75 382 66 388 57 c 1 - 376 44 364 32 349 23 c 0 - 336 15 321 7 306 1 c 0 - 294 -4 282 -7 268 -9 c 0 - 243 -12 217 -12 192 -6 c 0 - 174 -2 157 1 141 7 c 0 - 119 14 97 23 78 37 c 0 - 76 39 74 40 73 42 c 0 - 46 71 30 103 31 143 c 0 - 32 170 36 195 45 220 c 0 - 56 249 73 274 96 294 c 0 - 112 308 129 320 147 330 c 0 - 166 340 185 347 205 349 c 0 - 224 350 242 352 260 351 c 0 - 293 351 322 341 346 319 c 0 - 357 310 365 298 368 284 c 0 - 370 273 372 263 374 252 c 0 - 375 243 374 233 368 226 c 1 -147 265 m 1 - 150 265 152 264 153 264 c 0 - 186 265 218 265 250 266 c 0 - 268 267 287 269 305 270 c 0 - 307 271 309 271 311 272 c 0 - 308 279 303 283 296 286 c 0 - 277 294 257 298 236 300 c 0 - 203 302 175 290 150 270 c 0 - 149 269 149 267 147 265 c 1 -168 441 m 0 - 168 447 171 450 175 452 c 0 - 190 460 204 468 218 479 c 0 - 228 486 240 492 251 497 c 0 - 256 500 264 497 267 492 c 0 - 271 484 274 477 276 469 c 0 - 277 464 275 460 271 457 c 0 - 260 451 250 446 240 440 c 0 - 236 438 232 435 228 432 c 2 - 192 411 l 2 - 184 407 182 408 178 415 c 0 - 174 423 170 432 168 441 c 0 -EndSplineSet -Kerns2: 146 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 143 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: ecircumflex -Encoding: 234 234 147 -Width: 418 -GlyphClass: 2 -Flags: MW -HStem: -9 21G 217 47<152.5 223.5> 300 51 -VStem: 31 58 -LayerCount: 2 -Fore -SplineSet -368 226 m 1 - 310 217 252 217 195 217 c 0 - 173 218 151 218 129 218 c 0 - 123 218 117 218 112 217 c 0 - 103 216 98 211 96 203 c 0 - 87 172 86 155 96 125 c 0 - 103 106 113 88 131 75 c 0 - 146 64 160 54 177 46 c 0 - 194 38 212 34 231 35 c 0 - 246 36 262 36 277 37 c 0 - 293 39 309 44 323 52 c 0 - 338 61 353 71 369 80 c 1 - 377 75 382 66 388 57 c 1 - 376 44 364 32 349 23 c 0 - 336 15 321 7 306 1 c 0 - 294 -4 282 -7 268 -9 c 0 - 243 -12 217 -12 192 -6 c 0 - 174 -2 157 1 141 7 c 0 - 119 14 97 23 78 37 c 0 - 76 39 74 40 73 42 c 0 - 46 71 30 103 31 143 c 0 - 32 170 36 195 45 220 c 0 - 56 249 73 274 96 294 c 0 - 112 308 129 320 147 330 c 0 - 166 340 185 347 205 349 c 0 - 224 350 242 352 260 351 c 0 - 293 351 322 341 346 319 c 0 - 357 310 365 298 368 284 c 0 - 370 273 372 263 374 252 c 0 - 375 243 374 233 368 226 c 1 -147 265 m 1 - 150 265 152 264 153 264 c 0 - 186 265 218 265 250 266 c 0 - 268 267 287 269 305 270 c 0 - 307 271 309 271 311 272 c 0 - 308 279 303 283 296 286 c 0 - 277 294 257 298 236 300 c 0 - 203 302 175 290 150 270 c 0 - 149 269 149 267 147 265 c 1 -223 515 m 0 - 228 515 232 512 235 508 c 0 - 252 489 269 471 287 452 c 0 - 288 451 289 449 291 448 c 0 - 297 442 298 438 294 431 c 0 - 289 424 283 417 277 411 c 0 - 274 407 270 407 267 411 c 0 - 255 423 243 436 231 448 c 0 - 231 449 230 450 230 450 c 1 - 222 457 221 457 213 450 c 0 - 201 438 190 426 178 414 c 0 - 171 408 169 408 163 414 c 0 - 158 420 154 425 150 432 c 0 - 145 439 146 444 153 450 c 0 - 165 461 176 473 187 486 c 0 - 195 495 204 503 213 512 c 0 - 216 514 220 514 223 515 c 0 -EndSplineSet -Kerns2: 88 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: edieresis -Encoding: 235 235 148 -Width: 418 -GlyphClass: 2 -Flags: MW -HStem: -9 21G 217 47<152.5 223.5> 300 51 409 54<175.5 180 180 186 263.5 268 268 272 272 274> -VStem: 31 58 149 59 237 59 -LayerCount: 2 -Fore -SplineSet -368 226 m 1 - 310 217 252 217 195 217 c 0 - 173 218 151 218 129 218 c 0 - 123 218 117 218 112 217 c 0 - 103 216 98 211 96 203 c 0 - 87 172 86 155 96 125 c 0 - 103 106 113 88 131 75 c 0 - 146 64 160 54 177 46 c 0 - 194 38 212 34 231 35 c 0 - 246 36 262 36 277 37 c 0 - 293 39 309 44 323 52 c 0 - 338 61 353 71 369 80 c 1 - 377 75 382 66 388 57 c 1 - 376 44 364 32 349 23 c 0 - 336 15 321 7 306 1 c 0 - 294 -4 282 -7 268 -9 c 0 - 243 -12 217 -12 192 -6 c 0 - 174 -2 157 1 141 7 c 0 - 119 14 97 23 78 37 c 0 - 76 39 74 40 73 42 c 0 - 46 71 30 103 31 143 c 0 - 32 170 36 195 45 220 c 0 - 56 249 73 274 96 294 c 0 - 112 308 129 320 147 330 c 0 - 166 340 185 347 205 349 c 0 - 224 350 242 352 260 351 c 0 - 293 351 322 341 346 319 c 0 - 357 310 365 298 368 284 c 0 - 370 273 372 263 374 252 c 0 - 375 243 374 233 368 226 c 1 -147 265 m 1 - 150 265 152 264 153 264 c 0 - 186 265 218 265 250 266 c 0 - 268 267 287 269 305 270 c 0 - 307 271 309 271 311 272 c 0 - 308 279 303 283 296 286 c 0 - 277 294 257 298 236 300 c 0 - 203 302 175 290 150 270 c 0 - 149 269 149 267 147 265 c 1 -268 409 m 2 - 259 409 250 409 243 417 c 0 - 235 425 235 440 242 449 c 0 - 244 452 246 454 248 457 c 0 - 250 461 253 463 257 463 c 0 - 262 463 268 462 272 463 c 0 - 280 463 285 460 288 455 c 0 - 293 447 297 440 296 431 c 0 - 295 417 287 409 274 409 c 2 - 268 409 l 2 -180 409 m 2 - 171 409 162 409 155 417 c 0 - 148 425 147 440 154 449 c 0 - 156 452 158 454 160 457 c 0 - 162 461 165 463 169 463 c 2 - 186 463 l 2 - 192 463 196 461 200 456 c 0 - 205 448 209 441 208 431 c 0 - 208 417 199 409 186 409 c 2 - 180 409 l 2 -EndSplineSet -Kerns2: 90 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 73 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: igrave -Encoding: 236 236 149 -Width: 189 -GlyphClass: 2 -Flags: MW -HStem: -8 19 1 21G<157 157> -VStem: 78 54<181.5 195 158.5 203> -LayerCount: 2 -Fore -SplineSet -31 -7 m 0xa0 - 30 -1 30 5 30 11 c 1 - 34 13 37 14 41 16 c 0 - 47 19 53 21 59 25 c 0 - 67 29 72 36 73 45 c 0 - 75 55 76 65 76 74 c 0xa0 - 77 117 78 160 78 203 c 0 - 79 225 77 248 76 270 c 0 - 76 273 76 276 75 279 c 0 - 71 293 65 298 50 296 c 0 - 45 295 40 294 34 292 c 1 - 33 295 33 298 33 300 c 2 - 33 316 l 1 - 45 324 58 329 71 333 c 0 - 85 337 99 341 112 344 c 0 - 115 345 119 346 122 347 c 0 - 132 347 137 343 136 333 c 0 - 136 327 135 322 134 316 c 0 - 134 310 133 305 133 300 c 0 - 133 258 132 216 132 174 c 0 - 132 143 131 111 131 79 c 0 - 131 71 131 62 130 53 c 0 - 129 38 137 29 149 24 c 0 - 153 22 156 21 159 20 c 2 - 159 3 l 1 - 157 1 l 2 - 154 0 152 -1 149 -1 c 0x60 - 112 -3 75 -6 37 -8 c 0 - 36 -8 34 -7 31 -7 c 0xa0 -147 440 m 0 - 145 429 141 419 134 410 c 0 - 133 409 130 408 128 408 c 0 - 126 409 123 410 122 411 c 0 - 107 420 93 429 79 437 c 0 - 70 443 60 448 50 453 c 0 - 39 458 37 466 42 475 c 0 - 44 479 45 484 47 488 c 0 - 51 498 59 500 68 495 c 0 - 91 481 113 467 135 454 c 0 - 137 453 138 451 140 451 c 0 - 146 449 148 445 147 440 c 0 -EndSplineSet -EndChar - -StartChar: iacute -Encoding: 237 237 150 -Width: 189 -GlyphClass: 2 -Flags: MW -HStem: -8 19 1 21G<157 157> -VStem: 78 54<181.5 195 158.5 203> -LayerCount: 2 -Fore -SplineSet -31 -7 m 0xa0 - 30 -1 30 5 30 11 c 1 - 34 13 37 14 41 16 c 0 - 47 19 53 21 59 25 c 0 - 67 29 72 36 73 45 c 0 - 75 55 76 65 76 74 c 0xa0 - 77 117 78 160 78 203 c 0 - 79 225 77 248 76 270 c 0 - 76 273 76 276 75 279 c 0 - 71 293 65 298 50 296 c 0 - 45 295 40 294 34 292 c 1 - 33 295 33 298 33 300 c 2 - 33 316 l 1 - 45 324 58 329 71 333 c 0 - 85 337 99 341 112 344 c 0 - 115 345 119 346 122 347 c 0 - 132 347 137 343 136 333 c 0 - 136 327 135 322 134 316 c 0 - 134 310 133 305 133 300 c 0 - 133 258 132 216 132 174 c 0 - 132 143 131 111 131 79 c 0 - 131 71 131 62 130 53 c 0 - 129 38 137 29 149 24 c 0 - 153 22 156 21 159 20 c 2 - 159 3 l 1 - 157 1 l 2 - 154 0 152 -1 149 -1 c 0x60 - 112 -3 75 -6 37 -8 c 0 - 36 -8 34 -7 31 -7 c 0xa0 -39 441 m 0 - 39 447 42 450 46 452 c 0 - 61 460 75 468 89 479 c 0 - 99 486 111 492 122 497 c 0 - 127 500 135 497 138 492 c 0 - 142 484 145 477 147 469 c 0 - 148 464 146 460 142 457 c 0 - 131 451 121 446 111 440 c 0 - 107 438 103 435 99 432 c 2 - 63 411 l 2 - 55 407 53 408 49 415 c 0 - 45 423 41 432 39 441 c 0 -EndSplineSet -EndChar - -StartChar: icircumflex -Encoding: 238 238 151 -Width: 189 -GlyphClass: 2 -Flags: MW -HStem: -8 19 1 21G<157 157> -VStem: 78 54<181.5 195 158.5 203> -LayerCount: 2 -Fore -SplineSet -31 -7 m 0xa0 - 30 -1 30 5 30 11 c 1 - 34 13 37 14 41 16 c 0 - 47 19 53 21 59 25 c 0 - 67 29 72 36 73 45 c 0 - 75 55 76 65 76 74 c 0xa0 - 77 117 78 160 78 203 c 0 - 79 225 77 248 76 270 c 0 - 76 273 76 276 75 279 c 0 - 71 293 65 298 50 296 c 0 - 45 295 40 294 34 292 c 1 - 33 295 33 298 33 300 c 2 - 33 316 l 1 - 45 324 58 329 71 333 c 0 - 85 337 99 341 112 344 c 0 - 115 345 119 346 122 347 c 0 - 132 347 137 343 136 333 c 0 - 136 327 135 322 134 316 c 0 - 134 310 133 305 133 300 c 0 - 133 258 132 216 132 174 c 0 - 132 143 131 111 131 79 c 0 - 131 71 131 62 130 53 c 0 - 129 38 137 29 149 24 c 0 - 153 22 156 21 159 20 c 2 - 159 3 l 1 - 157 1 l 2 - 154 0 152 -1 149 -1 c 0x60 - 112 -3 75 -6 37 -8 c 0 - 36 -8 34 -7 31 -7 c 0xa0 -91 516 m 0 - 96 516 100 513 103 509 c 0 - 120 490 137 472 155 453 c 0 - 156 452 157 450 159 449 c 0 - 165 443 166 439 162 432 c 0 - 157 425 151 418 145 412 c 0 - 142 408 138 408 135 412 c 0 - 123 424 111 437 99 449 c 0 - 99 450 98 451 98 451 c 1 - 90 458 89 458 81 451 c 0 - 69 439 58 427 46 415 c 0 - 39 409 37 409 31 415 c 0 - 26 421 22 426 18 433 c 0 - 13 440 14 445 21 451 c 0 - 33 462 44 474 55 487 c 0 - 63 496 72 504 81 513 c 0 - 84 515 88 515 91 516 c 0 -EndSplineSet -Kerns2: 80 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: idieresis -Encoding: 239 239 152 -Width: 189 -GlyphClass: 2 -Flags: MW -HStem: -8 19 1 21G<157 157> 408 54<46.5 51 51 57 134.5 139 139 143 143 145> -VStem: 20 59 78 54<181.5 195 158.5 203> 108 59 -LayerCount: 2 -Fore -SplineSet -31 -7 m 0xa8 - 30 -1 30 5 30 11 c 1 - 34 13 37 14 41 16 c 0 - 47 19 53 21 59 25 c 0 - 67 29 72 36 73 45 c 0 - 75 55 76 65 76 74 c 0xa8 - 77 117 78 160 78 203 c 0 - 79 225 77 248 76 270 c 0 - 76 273 76 276 75 279 c 0 - 71 293 65 298 50 296 c 0 - 45 295 40 294 34 292 c 1 - 33 295 33 298 33 300 c 2 - 33 316 l 1 - 45 324 58 329 71 333 c 0 - 85 337 99 341 112 344 c 0 - 115 345 119 346 122 347 c 0 - 132 347 137 343 136 333 c 0 - 136 327 135 322 134 316 c 0 - 134 310 133 305 133 300 c 0 - 133 258 132 216 132 174 c 0 - 132 143 131 111 131 79 c 0 - 131 71 131 62 130 53 c 0 - 129 38 137 29 149 24 c 0 - 153 22 156 21 159 20 c 2 - 159 3 l 1 - 157 1 l 2 - 154 0 152 -1 149 -1 c 0x68 - 112 -3 75 -6 37 -8 c 0 - 36 -8 34 -7 31 -7 c 0xa8 -139 408 m 2x64 - 130 408 121 408 114 416 c 0 - 106 424 106 439 113 448 c 0 - 115 451 117 453 119 456 c 0 - 121 460 124 462 128 462 c 0 - 133 462 139 461 143 462 c 0 - 151 462 156 459 159 454 c 0 - 164 446 168 439 167 430 c 0 - 166 416 158 408 145 408 c 2 - 139 408 l 2x64 -51 408 m 2x70 - 42 408 33 408 26 416 c 0 - 19 424 18 439 25 448 c 0 - 27 451 29 453 31 456 c 0 - 33 460 36 462 40 462 c 2 - 57 462 l 2 - 63 462 67 460 71 455 c 0 - 76 447 80 440 79 430 c 0 - 79 416 70 408 57 408 c 2 - 51 408 l 2x70 -EndSplineSet -Kerns2: 89 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: ntilde -Encoding: 241 241 153 -Width: 530 -GlyphClass: 2 -Flags: MW -HStem: -15 36 -5 20 282 53 415 40 422 44<230.5 246> -VStem: 82 59<164.5 227.5> 355 52<191 205 162 221> -LayerCount: 2 -Fore -SplineSet -122 327 m 0xb6 - 135 323 138 316 137 305 c 0 - 137 293 137 280 138 265 c 1 - 142 268 144 269 146 271 c 0 - 162 284 177 298 193 310 c 0 - 212 325 234 335 258 338 c 0 - 279 341 301 340 323 335 c 0 - 341 331 358 327 373 316 c 0 - 391 304 403 287 405 265 c 0 - 407 245 407 225 407 205 c 2 - 407 182 l 2 - 407 142 407 102 406 62 c 0 - 406 57 406 53 407 49 c 0 - 410 27 433 14 453 25 c 0 - 462 30 471 37 479 43 c 0 - 481 45 484 47 487 50 c 1 - 491 44 495 39 500 34 c 1 - 488 14 472 -1 453 -12 c 0 - 449 -13 445 -15 442 -15 c 0 - 415 -17 392 -10 375 11 c 0 - 363 25 359 43 357 62 c 0xb6 - 354 114 355 165 355 217 c 0 - 355 225 354 233 354 242 c 0 - 354 253 348 262 339 268 c 0 - 328 276 317 280 304 282 c 0 - 277 285 251 283 226 273 c 0 - 211 267 197 258 185 246 c 0 - 171 231 159 215 146 199 c 0 - 140 193 141 186 141 178 c 0 - 141 151 141 124 140 97 c 0 - 140 79 140 62 139 44 c 0 - 139 39 140 34 140 29 c 0 - 146 24 153 25 159 24 c 0 - 174 23 175 22 175 7 c 0 - 176 5 175 4 175 2 c 0 - 129 -4 82 -1 37 -5 c 1 - 33 4 33 4 35 15 c 1 - 42 17 50 19 57 21 c 0 - 61 23 65 24 70 26 c 0 - 78 29 82 36 83 45 c 0x76 - 86 77 85 108 83 140 c 0 - 82 167 83 195 82 223 c 0 - 82 232 81 242 78 251 c 0 - 74 268 63 275 46 271 c 0 - 42 270 39 270 34 269 c 1 - 31 278 l 2 - 30 283 32 286 37 289 c 0 - 46 293 55 298 64 302 c 0 - 78 308 92 315 107 322 c 0 - 112 324 117 326 122 327 c 0xb6 -188 424 m 1xae - 195 439 203 453 218 462 c 0 - 222 464 228 466 233 466 c 0xae - 243 467 252 464 261 460 c 0 - 265 458 269 457 274 455 c 0 - 283 452 290 454 296 461 c 0 - 301 468 301 468 309 465 c 0 - 313 463 317 462 320 461 c 0 - 326 458 328 455 326 449 c 0 - 324 442 321 436 318 430 c 2 - 315 427 l 2 - 309 416 298 414 286 415 c 0 - 276 415 266 417 256 420 c 0 - 252 422 248 422 244 422 c 0xb6 - 237 423 232 421 228 415 c 0 - 225 410 222 410 217 412 c 0 - 208 416 199 420 188 424 c 1xae -EndSplineSet -Kerns2: 75 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 67 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: ograve -Encoding: 242 242 154 -Width: 516 -GlyphClass: 2 -Flags: MW -HStem: -19 43 308 49 -VStem: 31 54 433 49 -LayerCount: 2 -Fore -SplineSet -242 -19 m 1 - 198 -21 161 -14 126 2 c 0 - 124 4 121 4 118 6 c 0 - 101 18 84 31 66 43 c 0 - 63 46 60 49 58 52 c 0 - 40 82 29 114 31 150 c 0 - 33 190 45 226 66 260 c 0 - 71 267 77 273 83 280 c 0 - 85 283 89 285 92 288 c 0 - 122 317 159 330 199 341 c 0 - 213 344 228 349 243 352 c 0 - 283 363 323 358 363 345 c 0 - 387 337 408 324 429 310 c 0 - 447 298 462 281 472 262 c 0 - 478 248 481 232 483 217 c 0 - 486 193 487 168 482 144 c 0 - 473 94 449 54 404 28 c 2 - 380 13 l 2 - 377 11 373 9 369 7 c 0 - 326 -9 284 -23 242 -19 c 1 -250 24 m 0 - 263 25 277 26 290 28 c 0 - 314 31 336 39 356 53 c 0 - 373 64 389 77 403 93 c 0 - 423 116 437 142 436 174 c 0 - 435 185 434 196 433 208 c 0 - 430 237 415 258 390 273 c 0 - 387 275 384 278 381 280 c 0 - 375 284 370 288 364 291 c 0 - 348 298 331 301 315 304 c 0 - 277 312 240 308 203 301 c 0 - 176 296 153 280 133 261 c 0 - 119 250 107 236 99 220 c 0 - 86 193 83 164 85 134 c 0 - 86 121 92 108 96 95 c 0 - 97 91 100 87 103 84 c 0 - 123 62 147 44 176 36 c 0 - 200 29 224 25 250 24 c 0 -314 442 m 0 - 312 431 308 421 301 412 c 0 - 300 411 297 410 295 410 c 0 - 293 411 290 412 289 413 c 0 - 274 422 260 431 246 439 c 0 - 237 445 227 450 217 455 c 0 - 206 460 204 468 209 477 c 0 - 211 481 212 486 214 490 c 0 - 218 500 226 502 235 497 c 0 - 258 483 280 469 302 456 c 0 - 304 455 305 453 307 453 c 0 - 313 451 315 447 314 442 c 0 -EndSplineSet -Kerns2: 88 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: oacute -Encoding: 243 243 155 -Width: 516 -GlyphClass: 2 -Flags: MW -HStem: -19 43 308 49 -VStem: 31 54 433 49 -LayerCount: 2 -Fore -SplineSet -242 -19 m 1 - 198 -21 161 -14 126 2 c 0 - 124 4 121 4 118 6 c 0 - 101 18 84 31 66 43 c 0 - 63 46 60 49 58 52 c 0 - 40 82 29 114 31 150 c 0 - 33 190 45 226 66 260 c 0 - 71 267 77 273 83 280 c 0 - 85 283 89 285 92 288 c 0 - 122 317 159 330 199 341 c 0 - 213 344 228 349 243 352 c 0 - 283 363 323 358 363 345 c 0 - 387 337 408 324 429 310 c 0 - 447 298 462 281 472 262 c 0 - 478 248 481 232 483 217 c 0 - 486 193 487 168 482 144 c 0 - 473 94 449 54 404 28 c 2 - 380 13 l 2 - 377 11 373 9 369 7 c 0 - 326 -9 284 -23 242 -19 c 1 -250 24 m 0 - 263 25 277 26 290 28 c 0 - 314 31 336 39 356 53 c 0 - 373 64 389 77 403 93 c 0 - 423 116 437 142 436 174 c 0 - 435 185 434 196 433 208 c 0 - 430 237 415 258 390 273 c 0 - 387 275 384 278 381 280 c 0 - 375 284 370 288 364 291 c 0 - 348 298 331 301 315 304 c 0 - 277 312 240 308 203 301 c 0 - 176 296 153 280 133 261 c 0 - 119 250 107 236 99 220 c 0 - 86 193 83 164 85 134 c 0 - 86 121 92 108 96 95 c 0 - 97 91 100 87 103 84 c 0 - 123 62 147 44 176 36 c 0 - 200 29 224 25 250 24 c 0 -202 444 m 0 - 202 450 205 453 209 455 c 0 - 224 463 238 471 252 482 c 0 - 262 489 274 495 285 500 c 0 - 290 503 298 500 301 495 c 0 - 305 487 308 480 310 472 c 0 - 311 467 309 463 305 460 c 0 - 294 454 284 449 274 443 c 0 - 270 441 266 438 262 435 c 2 - 226 414 l 2 - 218 410 216 411 212 418 c 0 - 208 426 204 435 202 444 c 0 -EndSplineSet -Kerns2: 155 -17 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 89 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: ocircumflex -Encoding: 244 244 156 -Width: 516 -GlyphClass: 2 -Flags: MW -HStem: -19 43 308 49 -VStem: 31 54 433 49 -LayerCount: 2 -Fore -SplineSet -242 -19 m 1 - 198 -21 161 -14 126 2 c 0 - 124 4 121 4 118 6 c 0 - 101 18 84 31 66 43 c 0 - 63 46 60 49 58 52 c 0 - 40 82 29 114 31 150 c 0 - 33 190 45 226 66 260 c 0 - 71 267 77 273 83 280 c 0 - 85 283 89 285 92 288 c 0 - 122 317 159 330 199 341 c 0 - 213 344 228 349 243 352 c 0 - 283 363 323 358 363 345 c 0 - 387 337 408 324 429 310 c 0 - 447 298 462 281 472 262 c 0 - 478 248 481 232 483 217 c 0 - 486 193 487 168 482 144 c 0 - 473 94 449 54 404 28 c 2 - 380 13 l 2 - 377 11 373 9 369 7 c 0 - 326 -9 284 -23 242 -19 c 1 -250 24 m 0 - 263 25 277 26 290 28 c 0 - 314 31 336 39 356 53 c 0 - 373 64 389 77 403 93 c 0 - 423 116 437 142 436 174 c 0 - 435 185 434 196 433 208 c 0 - 430 237 415 258 390 273 c 0 - 387 275 384 278 381 280 c 0 - 375 284 370 288 364 291 c 0 - 348 298 331 301 315 304 c 0 - 277 312 240 308 203 301 c 0 - 176 296 153 280 133 261 c 0 - 119 250 107 236 99 220 c 0 - 86 193 83 164 85 134 c 0 - 86 121 92 108 96 95 c 0 - 97 91 100 87 103 84 c 0 - 123 62 147 44 176 36 c 0 - 200 29 224 25 250 24 c 0 -255 518 m 0 - 260 518 264 515 267 511 c 0 - 284 492 301 474 319 455 c 0 - 320 454 321 452 323 451 c 0 - 329 445 330 441 326 434 c 0 - 321 427 315 420 309 414 c 0 - 306 410 302 410 299 414 c 0 - 287 426 275 439 263 451 c 0 - 263 452 262 453 262 453 c 1 - 254 460 253 460 245 453 c 0 - 233 441 222 429 210 417 c 0 - 203 411 201 411 195 417 c 0 - 190 423 186 428 182 435 c 0 - 177 442 178 447 185 453 c 0 - 197 464 208 476 219 489 c 0 - 227 498 236 506 245 515 c 0 - 248 517 252 517 255 518 c 0 -EndSplineSet -Kerns2: 86 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: otilde -Encoding: 245 245 157 -Width: 516 -GlyphClass: 2 -Flags: MW -HStem: -19 43 308 49 414 40 421 44<224.5 240> -VStem: 31 54 433 49 -LayerCount: 2 -Fore -SplineSet -242 -19 m 1xdc - 198 -21 161 -14 126 2 c 0 - 124 4 121 4 118 6 c 0 - 101 18 84 31 66 43 c 0 - 63 46 60 49 58 52 c 0 - 40 82 29 114 31 150 c 0 - 33 190 45 226 66 260 c 0 - 71 267 77 273 83 280 c 0 - 85 283 89 285 92 288 c 0 - 122 317 159 330 199 341 c 0 - 213 344 228 349 243 352 c 0 - 283 363 323 358 363 345 c 0 - 387 337 408 324 429 310 c 0 - 447 298 462 281 472 262 c 0 - 478 248 481 232 483 217 c 0 - 486 193 487 168 482 144 c 0 - 473 94 449 54 404 28 c 2 - 380 13 l 2 - 377 11 373 9 369 7 c 0 - 326 -9 284 -23 242 -19 c 1xdc -250 24 m 0 - 263 25 277 26 290 28 c 0 - 314 31 336 39 356 53 c 0 - 373 64 389 77 403 93 c 0 - 423 116 437 142 436 174 c 0 - 435 185 434 196 433 208 c 0 - 430 237 415 258 390 273 c 0 - 387 275 384 278 381 280 c 0 - 375 284 370 288 364 291 c 0 - 348 298 331 301 315 304 c 0 - 277 312 240 308 203 301 c 0 - 176 296 153 280 133 261 c 0 - 119 250 107 236 99 220 c 0 - 86 193 83 164 85 134 c 0 - 86 121 92 108 96 95 c 0 - 97 91 100 87 103 84 c 0 - 123 62 147 44 176 36 c 0 - 200 29 224 25 250 24 c 0 -182 423 m 1 - 189 438 197 452 212 461 c 0 - 216 463 222 465 227 465 c 0xdc - 237 466 246 463 255 459 c 0 - 259 457 263 456 268 454 c 0 - 277 451 284 453 290 460 c 0 - 295 467 295 467 303 464 c 0 - 307 462 311 461 314 460 c 0 - 320 457 322 454 320 448 c 0 - 318 441 315 435 312 429 c 2 - 309 426 l 2 - 303 415 292 413 280 414 c 0 - 270 414 260 416 250 419 c 0 - 246 421 242 421 238 421 c 0xec - 231 422 226 420 222 414 c 0 - 219 409 216 409 211 411 c 0 - 202 415 193 419 182 423 c 1 -EndSplineSet -Kerns2: 87 -48 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -54 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: odieresis -Encoding: 246 246 158 -Width: 516 -GlyphClass: 2 -Flags: MW -HStem: -19 43 308 49 414 54<210.5 215 215 221 298.5 303 303 307 307 309> -VStem: 31 54 184 59 272 59 433 49 -LayerCount: 2 -Fore -SplineSet -242 -19 m 1 - 198 -21 161 -14 126 2 c 0 - 124 4 121 4 118 6 c 0 - 101 18 84 31 66 43 c 0 - 63 46 60 49 58 52 c 0 - 40 82 29 114 31 150 c 0 - 33 190 45 226 66 260 c 0 - 71 267 77 273 83 280 c 0 - 85 283 89 285 92 288 c 0 - 122 317 159 330 199 341 c 0 - 213 344 228 349 243 352 c 0 - 283 363 323 358 363 345 c 0 - 387 337 408 324 429 310 c 0 - 447 298 462 281 472 262 c 0 - 478 248 481 232 483 217 c 0 - 486 193 487 168 482 144 c 0 - 473 94 449 54 404 28 c 2 - 380 13 l 2 - 377 11 373 9 369 7 c 0 - 326 -9 284 -23 242 -19 c 1 -250 24 m 0 - 263 25 277 26 290 28 c 0 - 314 31 336 39 356 53 c 0 - 373 64 389 77 403 93 c 0 - 423 116 437 142 436 174 c 0 - 435 185 434 196 433 208 c 0 - 430 237 415 258 390 273 c 0 - 387 275 384 278 381 280 c 0 - 375 284 370 288 364 291 c 0 - 348 298 331 301 315 304 c 0 - 277 312 240 308 203 301 c 0 - 176 296 153 280 133 261 c 0 - 119 250 107 236 99 220 c 0 - 86 193 83 164 85 134 c 0 - 86 121 92 108 96 95 c 0 - 97 91 100 87 103 84 c 0 - 123 62 147 44 176 36 c 0 - 200 29 224 25 250 24 c 0 -303 414 m 2 - 294 414 285 414 278 422 c 0 - 270 430 270 445 277 454 c 0 - 279 457 281 459 283 462 c 0 - 285 466 288 468 292 468 c 0 - 297 468 303 467 307 468 c 0 - 315 468 320 465 323 460 c 0 - 328 452 332 445 331 436 c 0 - 330 422 322 414 309 414 c 2 - 303 414 l 2 -215 414 m 2 - 206 414 197 414 190 422 c 0 - 183 430 182 445 189 454 c 0 - 191 457 193 459 195 462 c 0 - 197 466 200 468 204 468 c 2 - 221 468 l 2 - 227 468 231 466 235 461 c 0 - 240 453 244 446 243 436 c 0 - 243 422 234 414 221 414 c 2 - 215 414 l 2 -EndSplineSet -Kerns2: 158 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 142 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 92 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 88 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -53 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -41 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 72 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 -35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: divide -Encoding: 247 247 159 -Width: 172 -GlyphClass: 2 -Flags: MW -HStem: 80 65<77 100> 158 43 221 64<72.5 99 79 91 91 91 91 99 99 101> -VStem: 10 150 53 71 -LayerCount: 2 -Fore -SplineSet -159 202 m 1x50 - 162 160 l 1 - 157 159 154 158 150 158 c 2 - 131 158 l 1 - 71 158 l 2 - 57 158 42 159 28 160 c 0 - 24 160 21 159 17 159 c 0 - 12 158 10 160 10 165 c 2 - 13 201 l 1 - 62 207 110 200 159 202 c 1x50 -89 145 m 1xe8 - 90 145 l 2 - 97 145 105 147 111 139 c 0 - 119 131 124 122 124 110 c 0 - 124 97 121 88 109 83 c 0 - 106 81 103 81 100 80 c 0 - 94 80 88 80 82 81 c 0 - 71 81 63 86 57 94 c 0 - 51 103 52 120 60 129 c 2 - 66 138 l 2 - 68 142 72 145 77 145 c 2 - 89 145 l 1 - 89 145 l 1xe8 -91 221 m 1 - 79 221 l 2 - 66 221 52 235 54 249 c 0 - 54 258 56 266 62 272 c 0 - 64 273 65 275 65 276 c 0 - 68 283 72 285 79 285 c 2 - 99 285 l 2 - 104 285 108 283 112 280 c 0 - 123 268 127 255 123 239 c 0 - 122 230 112 222 101 221 c 2 - 91 221 l 1 - 91 221 l 1 -EndSplineSet -EndChar - -StartChar: oslash -Encoding: 248 248 160 -Width: 476 -GlyphClass: 2 -Flags: MW -HStem: -9 43 317 50 -VStem: 11 54 415 48 -LayerCount: 2 -Fore -SplineSet -129 2 m 1 - 112 -16 96 -34 80 -51 c 0 - 68 -65 69 -64 52 -57 c 0 - 49 -56 46 -55 43 -53 c 0 - 33 -48 32 -43 39 -34 c 0 - 48 -24 57 -13 67 -3 c 0 - 74 5 80 13 88 22 c 1 - 83 26 79 29 74 32 c 0 - 37 57 39 57 19 99 c 0 - 11 118 10 138 11 158 c 0 - 12 199 25 236 46 270 c 0 - 51 278 59 284 65 291 c 0 - 67 294 70 295 72 297 c 0 - 102 326 140 340 179 350 c 2 - 221 362 l 2 - 263 372 303 368 343 354 c 0 - 363 346 360 348 372 362 c 0 - 378 370 385 378 392 385 c 0 - 402 398 408 399 422 392 c 0 - 428 389 434 386 440 382 c 0 - 445 379 446 376 442 370 c 0 - 438 365 434 360 429 355 c 0 - 421 345 413 335 404 325 c 1 - 407 323 409 320 411 318 c 0 - 424 308 435 296 444 283 c 0 - 451 275 454 267 457 257 c 0 - 467 226 467 194 463 162 c 0 - 459 120 441 85 411 57 c 0 - 406 52 401 49 396 45 c 0 - 373 30 350 15 323 7 c 0 - 303 1 284 -6 263 -8 c 0 - 260 -9 257 -9 253 -9 c 0 - 222 -10 191 -12 160 -6 c 0 - 150 -4 140 -1 129 2 c 1 -122 62 m 1 - 192 141 260 221 325 305 c 1 - 322 306 320 308 318 309 c 0 - 299 313 279 317 259 317 c 0 - 239 318 219 316 199 313 c 0 - 188 312 176 310 165 305 c 0 - 133 291 107 269 86 240 c 0 - 82 235 79 228 76 221 c 0 - 67 201 66 180 65 160 c 0 - 63 140 70 122 76 104 c 0 - 77 101 79 97 82 94 c 0 - 93 82 105 71 122 62 c 1 -369 284 m 1 - 302 201 230 127 163 43 c 1 - 172 41 178 41 184 39 c 0 - 214 32 245 32 276 38 c 0 - 298 42 318 50 337 62 c 0 - 354 74 369 87 383 102 c 0 - 399 120 412 141 415 166 c 0 - 417 187 416 207 412 227 c 0 - 407 252 392 270 369 284 c 1 -EndSplineSet -Kerns2: 91 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 74 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: ugrave -Encoding: 249 249 161 -Width: 513 -GlyphClass: 2 -Flags: MW -HStem: -14 44 -7 44 306 26 -VStem: 90 46 370 47 -LayerCount: 2 -Fore -SplineSet -333 306 m 1xb8 - 333 327 l 1 - 344 330 354 332 365 332 c 0 - 379 332 393 334 406 335 c 0 - 416 335 416 335 417 325 c 0 - 417 304 418 283 418 262 c 0 - 419 238 421 214 422 189 c 0 - 423 178 423 166 424 155 c 0 - 424 135 423 115 425 94 c 0 - 425 83 428 72 430 61 c 0 - 431 54 433 48 437 43 c 0 - 446 31 466 26 479 34 c 0 - 492 40 500 50 504 64 c 0 - 508 74 509 74 519 73 c 0 - 534 72 534 72 532 57 c 0 - 529 36 519 18 504 4 c 0 - 493 -7 479 -14 462 -14 c 0 - 449 -14 435 -15 422 -12 c 0 - 400 -8 384 4 376 26 c 0 - 371 38 368 51 369 64 c 1 - 368 65 l 1 - 364 62 361 59 358 56 c 0 - 354 53 351 50 347 48 c 0 - 333 36 320 24 305 15 c 0xb8 - 290 6 273 0 256 -5 c 0 - 233 -11 210 -9 188 -7 c 0 - 168 -4 150 3 133 14 c 0 - 120 23 112 35 105 48 c 2 - 105 48 104 49 104 50 c 0 - 98 72 90 93 90 116 c 0 - 91 151 89 186 88 221 c 0 - 87 240 85 259 84 279 c 0 - 83 287 77 295 69 298 c 0 - 59 302 49 304 38 304 c 2 - 30 304 l 1 - 30 321 l 2 - 31 327 36 329 41 330 c 0 - 49 331 57 332 65 332 c 0 - 84 333 103 333 122 333 c 0 - 128 333 133 332 140 332 c 1 - 140 328 140 324 139 321 c 0 - 139 314 137 306 137 299 c 0 - 136 280 135 260 136 241 c 0 - 137 226 139 211 141 197 c 0 - 143 171 145 146 146 120 c 0 - 146 104 148 89 156 75 c 0 - 164 60 176 50 193 44 c 0 - 214 36 236 36 258 40 c 0 - 274 43 287 51 299 60 c 0 - 309 67 319 75 328 83 c 0 - 341 95 350 110 359 125 c 0 - 363 131 366 137 369 143 c 0x78 - 373 151 372 160 371 169 c 0 - 371 200 369 232 369 263 c 0 - 368 269 368 275 369 281 c 0 - 369 289 365 295 359 299 c 0 - 352 305 343 306 333 306 c 1xb8 -290 439 m 0 - 288 428 284 418 277 409 c 0 - 276 408 273 407 271 407 c 0 - 269 408 266 409 265 410 c 0 - 250 419 236 428 222 436 c 0 - 213 442 203 447 193 452 c 0 - 182 457 180 465 185 474 c 0 - 187 478 188 483 190 487 c 0 - 194 497 202 499 211 494 c 0 - 234 480 256 466 278 453 c 0 - 280 452 281 450 283 450 c 0 - 289 448 291 444 290 439 c 0 -EndSplineSet -EndChar - -StartChar: uacute -Encoding: 250 250 162 -Width: 513 -GlyphClass: 2 -Flags: MW -HStem: -14 44 -7 44 306 26 -VStem: 90 46 370 47 -LayerCount: 2 -Fore -SplineSet -333 306 m 1xb8 - 333 327 l 1 - 344 330 354 332 365 332 c 0 - 379 332 393 334 406 335 c 0 - 416 335 416 335 417 325 c 0 - 417 304 418 283 418 262 c 0 - 419 238 421 214 422 189 c 0 - 423 178 423 166 424 155 c 0 - 424 135 423 115 425 94 c 0 - 425 83 428 72 430 61 c 0 - 431 54 433 48 437 43 c 0 - 446 31 466 26 479 34 c 0 - 492 40 500 50 504 64 c 0 - 508 74 509 74 519 73 c 0 - 534 72 534 72 532 57 c 0 - 529 36 519 18 504 4 c 0 - 493 -7 479 -14 462 -14 c 0 - 449 -14 435 -15 422 -12 c 0 - 400 -8 384 4 376 26 c 0 - 371 38 368 51 369 64 c 1 - 368 65 l 1 - 364 62 361 59 358 56 c 0 - 354 53 351 50 347 48 c 0 - 333 36 320 24 305 15 c 0xb8 - 290 6 273 0 256 -5 c 0 - 233 -11 210 -9 188 -7 c 0 - 168 -4 150 3 133 14 c 0 - 120 23 112 35 105 48 c 2 - 105 48 104 49 104 50 c 0 - 98 72 90 93 90 116 c 0 - 91 151 89 186 88 221 c 0 - 87 240 85 259 84 279 c 0 - 83 287 77 295 69 298 c 0 - 59 302 49 304 38 304 c 2 - 30 304 l 1 - 30 321 l 2 - 31 327 36 329 41 330 c 0 - 49 331 57 332 65 332 c 0 - 84 333 103 333 122 333 c 0 - 128 333 133 332 140 332 c 1 - 140 328 140 324 139 321 c 0 - 139 314 137 306 137 299 c 0 - 136 280 135 260 136 241 c 0 - 137 226 139 211 141 197 c 0 - 143 171 145 146 146 120 c 0 - 146 104 148 89 156 75 c 0 - 164 60 176 50 193 44 c 0 - 214 36 236 36 258 40 c 0 - 274 43 287 51 299 60 c 0 - 309 67 319 75 328 83 c 0 - 341 95 350 110 359 125 c 0 - 363 131 366 137 369 143 c 0x78 - 373 151 372 160 371 169 c 0 - 371 200 369 232 369 263 c 0 - 368 269 368 275 369 281 c 0 - 369 289 365 295 359 299 c 0 - 352 305 343 306 333 306 c 1xb8 -189 446 m 0 - 189 452 192 455 196 457 c 0 - 211 465 225 473 239 484 c 0 - 249 491 261 497 272 502 c 0 - 277 505 285 502 288 497 c 0 - 292 489 295 482 297 474 c 0 - 298 469 296 465 292 462 c 0 - 281 456 271 451 261 445 c 0 - 257 443 253 440 249 437 c 2 - 213 416 l 2 - 205 412 203 413 199 420 c 0 - 195 428 191 437 189 446 c 0 -EndSplineSet -Kerns2: 85 35 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -6 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: ucircumflex -Encoding: 251 251 163 -Width: 513 -GlyphClass: 2 -Flags: MW -HStem: -14 44 -7 44 306 26 -VStem: 90 46 370 47 -LayerCount: 2 -Fore -SplineSet -333 306 m 1xb8 - 333 327 l 1 - 344 330 354 332 365 332 c 0 - 379 332 393 334 406 335 c 0 - 416 335 416 335 417 325 c 0 - 417 304 418 283 418 262 c 0 - 419 238 421 214 422 189 c 0 - 423 178 423 166 424 155 c 0 - 424 135 423 115 425 94 c 0 - 425 83 428 72 430 61 c 0 - 431 54 433 48 437 43 c 0 - 446 31 466 26 479 34 c 0 - 492 40 500 50 504 64 c 0 - 508 74 509 74 519 73 c 0 - 534 72 534 72 532 57 c 0 - 529 36 519 18 504 4 c 0 - 493 -7 479 -14 462 -14 c 0 - 449 -14 435 -15 422 -12 c 0 - 400 -8 384 4 376 26 c 0 - 371 38 368 51 369 64 c 1 - 368 65 l 1 - 364 62 361 59 358 56 c 0 - 354 53 351 50 347 48 c 0 - 333 36 320 24 305 15 c 0xb8 - 290 6 273 0 256 -5 c 0 - 233 -11 210 -9 188 -7 c 0 - 168 -4 150 3 133 14 c 0 - 120 23 112 35 105 48 c 2 - 105 48 104 49 104 50 c 0 - 98 72 90 93 90 116 c 0 - 91 151 89 186 88 221 c 0 - 87 240 85 259 84 279 c 0 - 83 287 77 295 69 298 c 0 - 59 302 49 304 38 304 c 2 - 30 304 l 1 - 30 321 l 2 - 31 327 36 329 41 330 c 0 - 49 331 57 332 65 332 c 0 - 84 333 103 333 122 333 c 0 - 128 333 133 332 140 332 c 1 - 140 328 140 324 139 321 c 0 - 139 314 137 306 137 299 c 0 - 136 280 135 260 136 241 c 0 - 137 226 139 211 141 197 c 0 - 143 171 145 146 146 120 c 0 - 146 104 148 89 156 75 c 0 - 164 60 176 50 193 44 c 0 - 214 36 236 36 258 40 c 0 - 274 43 287 51 299 60 c 0 - 309 67 319 75 328 83 c 0 - 341 95 350 110 359 125 c 0 - 363 131 366 137 369 143 c 0x78 - 373 151 372 160 371 169 c 0 - 371 200 369 232 369 263 c 0 - 368 269 368 275 369 281 c 0 - 369 289 365 295 359 299 c 0 - 352 305 343 306 333 306 c 1xb8 -241 515 m 0 - 246 515 250 512 253 508 c 0 - 270 489 287 471 305 452 c 0 - 306 451 307 449 309 448 c 0 - 315 442 316 438 312 431 c 0 - 307 424 301 417 295 411 c 0 - 292 407 288 407 285 411 c 0 - 273 423 261 436 249 448 c 0 - 249 449 248 450 248 450 c 1 - 240 457 239 457 231 450 c 0 - 219 438 208 426 196 414 c 0 - 189 408 187 408 181 414 c 0 - 176 420 172 425 168 432 c 0 - 163 439 164 444 171 450 c 0 - 183 461 194 473 205 486 c 0 - 213 495 222 503 231 512 c 0 - 234 514 238 514 241 515 c 0 -EndSplineSet -Kerns2: 71 29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: udieresis -Encoding: 252 252 164 -Width: 513 -GlyphClass: 2 -Flags: MW -HStem: -14 44 -7 44 306 26 411 54<196.5 201 201 207 284.5 289 289 293 293 295> -VStem: 90 46 170 59 258 59 370 47 -LayerCount: 2 -Fore -SplineSet -333 306 m 1xbd - 333 327 l 1 - 344 330 354 332 365 332 c 0 - 379 332 393 334 406 335 c 0 - 416 335 416 335 417 325 c 0 - 417 304 418 283 418 262 c 0 - 419 238 421 214 422 189 c 0 - 423 178 423 166 424 155 c 0 - 424 135 423 115 425 94 c 0 - 425 83 428 72 430 61 c 0 - 431 54 433 48 437 43 c 0 - 446 31 466 26 479 34 c 0 - 492 40 500 50 504 64 c 0 - 508 74 509 74 519 73 c 0 - 534 72 534 72 532 57 c 0 - 529 36 519 18 504 4 c 0 - 493 -7 479 -14 462 -14 c 0 - 449 -14 435 -15 422 -12 c 0 - 400 -8 384 4 376 26 c 0 - 371 38 368 51 369 64 c 1 - 368 65 l 1 - 364 62 361 59 358 56 c 0 - 354 53 351 50 347 48 c 0 - 333 36 320 24 305 15 c 0xbd - 290 6 273 0 256 -5 c 0 - 233 -11 210 -9 188 -7 c 0 - 168 -4 150 3 133 14 c 0 - 120 23 112 35 105 48 c 2 - 105 48 104 49 104 50 c 0 - 98 72 90 93 90 116 c 0 - 91 151 89 186 88 221 c 0 - 87 240 85 259 84 279 c 0 - 83 287 77 295 69 298 c 0 - 59 302 49 304 38 304 c 2 - 30 304 l 1 - 30 321 l 2 - 31 327 36 329 41 330 c 0 - 49 331 57 332 65 332 c 0 - 84 333 103 333 122 333 c 0 - 128 333 133 332 140 332 c 1 - 140 328 140 324 139 321 c 0 - 139 314 137 306 137 299 c 0 - 136 280 135 260 136 241 c 0 - 137 226 139 211 141 197 c 0 - 143 171 145 146 146 120 c 0 - 146 104 148 89 156 75 c 0 - 164 60 176 50 193 44 c 0 - 214 36 236 36 258 40 c 0 - 274 43 287 51 299 60 c 0 - 309 67 319 75 328 83 c 0 - 341 95 350 110 359 125 c 0 - 363 131 366 137 369 143 c 0x7d - 373 151 372 160 371 169 c 0 - 371 200 369 232 369 263 c 0 - 368 269 368 275 369 281 c 0 - 369 289 365 295 359 299 c 0 - 352 305 343 306 333 306 c 1xbd -289 411 m 2xbf - 280 411 271 411 264 419 c 0 - 256 427 256 442 263 451 c 0 - 265 454 267 456 269 459 c 0 - 271 463 274 465 278 465 c 0 - 283 465 289 464 293 465 c 0 - 301 465 306 462 309 457 c 0 - 314 449 318 442 317 433 c 0 - 316 419 308 411 295 411 c 2 - 289 411 l 2xbf -201 411 m 2xbd - 192 411 183 411 176 419 c 0 - 169 427 168 442 175 451 c 0 - 177 454 179 456 181 459 c 0 - 183 463 186 465 190 465 c 2 - 207 465 l 2 - 213 465 217 463 221 458 c 0 - 226 450 230 443 229 433 c 0 - 229 419 220 411 207 411 c 2 - 201 411 l 2xbd -EndSplineSet -Kerns2: 164 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 91 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 68 29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: yacute -Encoding: 253 253 165 -Width: 540 -GlyphClass: 2 -Flags: MW -HStem: -163 31<5 40> 304 24 315 18<472 473> -VStem: -118 591 335 138<315 333 315 334 315 334> -LayerCount: 2 -Fore -SplineSet -48 305 m 1xd0 - 48 311 l 2 - 48 325 51 328 65 329 c 0 - 99 329 133 329 167 330 c 2 - 175 330 l 1 - 175 325 176 320 175 315 c 0 - 175 313 171 310 168 308 c 0 - 165 305 161 303 158 301 c 0 - 154 296 154 293 156 288 c 0 - 165 270 173 252 183 235 c 0xd0 - 191 217 201 200 211 183 c 0 - 222 163 233 144 245 125 c 0 - 247 121 249 117 250 113 c 0 - 256 99 261 92 274 78 c 1 - 279 89 284 99 289 109 c 0 - 297 127 304 146 312 165 c 0 - 317 177 321 188 326 200 c 2 - 344 242 l 1 - 362 290 l 2 - 365 298 363 302 355 304 c 0 - 351 306 347 306 343 307 c 0 - 338 308 335 310 335 315 c 2 - 335 334 l 1 - 382 334 427 333 473 333 c 1 - 473 315 l 1 - 471 315 469 315 467 314 c 0 - 446 311 429 300 418 281 c 0 - 409 265 399 248 390 231 c 0xa8 - 378 208 371 183 363 158 c 0 - 358 141 351 124 344 108 c 0 - 333 81 321 55 308 29 c 0 - 292 -4 272 -34 245 -60 c 0 - 234 -70 223 -81 211 -89 c 0 - 177 -112 143 -133 105 -147 c 0 - 97 -150 87 -151 78 -153 c 0 - 54 -158 30 -163 5 -163 c 0 - -15 -162 -35 -161 -54 -153 c 0 - -73 -144 -90 -133 -104 -116 c 0 - -107 -112 -112 -108 -114 -103 c 0 - -119 -91 -119 -79 -116 -67 c 0 - -114 -57 -105 -51 -95 -52 c 0 - -93 -52 -91 -53 -89 -53 c 0 - -84 -54 -81 -56 -80 -61 c 0 - -76 -77 -68 -91 -59 -104 c 0 - -57 -107 -53 -110 -50 -112 c 0 - -38 -120 -25 -125 -10 -128 c 0 - 5 -130 19 -131 34 -132 c 0 - 46 -132 56 -129 67 -126 c 0 - 97 -116 125 -103 152 -85 c 0 - 170 -73 188 -61 202 -45 c 0 - 218 -26 233 -6 240 19 c 0 - 241 27 241 34 235 41 c 0 - 230 46 226 51 221 57 c 0 - 216 64 210 72 205 80 c 0 - 193 101 182 123 170 145 c 0 - 159 164 148 182 137 201 c 0 - 125 222 115 243 102 263 c 0 - 94 274 84 285 75 295 c 0 - 69 301 61 303 54 304 c 0 - 52 304 50 305 48 305 c 1xd0 -221 442 m 0 - 221 448 224 451 228 453 c 0 - 243 461 257 469 271 480 c 0 - 281 487 293 493 304 498 c 0 - 309 501 317 498 320 493 c 0 - 324 485 327 478 329 470 c 0 - 330 465 328 461 324 458 c 0 - 313 452 303 447 293 441 c 0 - 289 439 285 436 281 433 c 2 - 245 412 l 2 - 237 408 235 409 231 416 c 0 - 227 424 223 433 221 442 c 0 -EndSplineSet -Kerns2: 139 -107 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 85 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 84 -47 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 81 -71 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 80 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 79 -66 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 78 -101 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 76 -89 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 -89 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 69 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: ydieresis -Encoding: 255 255 166 -Width: 540 -GlyphClass: 2 -Flags: MW -HStem: -163 31<5 40> 304 24 315 18<472 473> 409 54<232.5 237 237 243 320.5 325 325 329 329 331> -VStem: 206 59 294 59 335 138<315 333 315 334 315 334> -LayerCount: 2 -Fore -SplineSet -48 305 m 1xda - 48 311 l 2 - 48 325 51 328 65 329 c 0 - 99 329 133 329 167 330 c 2 - 175 330 l 1 - 175 325 176 320 175 315 c 0 - 175 313 171 310 168 308 c 0 - 165 305 161 303 158 301 c 0 - 154 296 154 293 156 288 c 0 - 165 270 173 252 183 235 c 0xda - 191 217 201 200 211 183 c 0 - 222 163 233 144 245 125 c 0 - 247 121 249 117 250 113 c 0 - 256 99 261 92 274 78 c 1 - 279 89 284 99 289 109 c 0 - 297 127 304 146 312 165 c 0 - 317 177 321 188 326 200 c 2 - 344 242 l 1 - 362 290 l 2 - 365 298 363 302 355 304 c 0 - 351 306 347 306 343 307 c 0 - 338 308 335 310 335 315 c 2 - 335 334 l 1 - 382 334 427 333 473 333 c 1 - 473 315 l 1 - 471 315 469 315 467 314 c 0 - 446 311 429 300 418 281 c 0 - 409 265 399 248 390 231 c 0xba - 378 208 371 183 363 158 c 0 - 358 141 351 124 344 108 c 0 - 333 81 321 55 308 29 c 0 - 292 -4 272 -34 245 -60 c 0 - 234 -70 223 -81 211 -89 c 0 - 177 -112 143 -133 105 -147 c 0 - 97 -150 87 -151 78 -153 c 0 - 54 -158 30 -163 5 -163 c 0 - -15 -162 -35 -161 -54 -153 c 0 - -73 -144 -90 -133 -104 -116 c 0 - -107 -112 -112 -108 -114 -103 c 0 - -119 -91 -119 -79 -116 -67 c 0 - -114 -57 -105 -51 -95 -52 c 0 - -93 -52 -91 -53 -89 -53 c 0 - -84 -54 -81 -56 -80 -61 c 0 - -76 -77 -68 -91 -59 -104 c 0 - -57 -107 -53 -110 -50 -112 c 0 - -38 -120 -25 -125 -10 -128 c 0 - 5 -130 19 -131 34 -132 c 0 - 46 -132 56 -129 67 -126 c 0 - 97 -116 125 -103 152 -85 c 0 - 170 -73 188 -61 202 -45 c 0 - 218 -26 233 -6 240 19 c 0 - 241 27 241 34 235 41 c 0 - 230 46 226 51 221 57 c 0 - 216 64 210 72 205 80 c 0 - 193 101 182 123 170 145 c 0 - 159 164 148 182 137 201 c 0 - 125 222 115 243 102 263 c 0 - 94 274 84 285 75 295 c 0 - 69 301 61 303 54 304 c 0 - 52 304 50 305 48 305 c 1xda -325 409 m 2xbc - 316 409 307 409 300 417 c 0 - 292 425 292 440 299 449 c 0 - 301 452 303 454 305 457 c 0 - 307 461 310 463 314 463 c 0 - 319 463 325 462 329 463 c 0 - 337 463 342 460 345 455 c 0 - 350 447 354 440 353 431 c 0 - 352 417 344 409 331 409 c 2 - 325 409 l 2xbc -237 409 m 2xba - 228 409 219 409 212 417 c 0 - 205 425 204 440 211 449 c 0 - 213 452 215 454 217 457 c 0 - 219 461 222 463 226 463 c 2 - 243 463 l 2 - 249 463 253 461 257 456 c 0 - 262 448 266 441 265 431 c 0 - 265 417 256 409 243 409 c 2 - 237 409 l 2xba -EndSplineSet -Kerns2: 85 -65 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: dotlessi -Encoding: 305 305 167 -Width: 189 -GlyphClass: 2 -Flags: MW -HStem: -8 19 1 21G<157 157> -VStem: 78 54<181.5 195 158.5 203> -LayerCount: 2 -Fore -SplineSet -31 -7 m 0xa0 - 30 -1 30 5 30 11 c 1 - 34 13 37 14 41 16 c 0 - 47 19 53 21 59 25 c 0 - 67 29 72 36 73 45 c 0 - 75 55 76 65 76 74 c 0xa0 - 77 117 78 160 78 203 c 0 - 79 225 77 248 76 270 c 0 - 76 273 76 276 75 279 c 0 - 71 293 65 298 50 296 c 0 - 45 295 40 294 34 292 c 1 - 33 295 33 298 33 300 c 2 - 33 316 l 1 - 45 324 58 329 71 333 c 0 - 85 337 99 341 112 344 c 0 - 115 345 119 346 122 347 c 0 - 132 347 137 343 136 333 c 0 - 136 327 135 322 134 316 c 0 - 134 310 133 305 133 300 c 0 - 133 258 132 216 132 174 c 0 - 132 143 131 111 131 79 c 0 - 131 71 131 62 130 53 c 0 - 129 38 137 29 149 24 c 0 - 153 22 156 21 159 20 c 2 - 159 3 l 1 - 157 1 l 2 - 154 0 152 -1 149 -1 c 0x60 - 112 -3 75 -6 37 -8 c 0 - 36 -8 34 -7 31 -7 c 0xa0 -EndSplineSet -EndChar - -StartChar: OE -Encoding: 338 338 168 -Width: 1172 -GlyphClass: 2 -Flags: MW -HStem: -16 43 -12 39 -9 49 259 52 692 53 715 30 -VStem: 11 50 737 67 739 72<580 609 609 609> 741 67<356 374> 1105 24 1106 13<219 350> 1139 23<119 124.5> -LayerCount: 2 -Fore -SplineSet -1141 131 m 1x3b18 - 1148 132 1154 132 1160 133 c 1 - 1161 129 1162 126 1162 123 c 0 - 1161 88 1160 53 1160 18 c 0 - 1160 17 1159 16 1159 15 c 0 - 1157 -7 1155 -9 1133 -9 c 0 - 1119 -9 1105 -11 1091 -11 c 0 - 1083 -12 1076 -12 1068 -11 c 0 - 1048 -11 1029 -9 1010 -9 c 2 - 874 -9 l 1 - 805 -9 l 1 - 742 -9 l 1 - 687 -9 l 1 - 683 0 686 7 687 15 c 0 - 690 17 694 18 697 19 c 0 - 705 24 714 28 721 33 c 0 - 729 38 733 46 733 55 c 0x3b18 - 734 85 736 114 737 143 c 0 - 737 149 738 156 731 161 c 0 - 729 159 727 158 726 156 c 0 - 723 153 720 149 718 145 c 0 - 702 119 680 98 654 80 c 0 - 638 67 620 57 602 48 c 0 - 590 42 578 35 567 28 c 0 - 538 12 508 2 476 -7 c 0x9b10 - 433 -19 391 -16 348 -12 c 0 - 339 -11 329 -10 319 -9 c 0 - 298 -7 277 -5 256 2 c 0 - 250 5 243 9 237 12 c 0 - 220 20 204 28 188 35 c 0 - 177 41 166 46 156 52 c 0 - 130 67 107 87 85 108 c 0 - 80 112 76 117 73 122 c 0 - 55 149 38 176 27 207 c 0 - 16 236 11 267 10 298 c 0 - 10 323 11 349 11 374 c 0 - 11 396 14 418 21 439 c 0 - 28 461 34 483 42 504 c 0 - 54 535 70 563 94 588 c 0 - 120 615 146 641 177 664 c 0 - 201 682 228 696 257 707 c 0 - 271 711 284 717 297 722 c 0 - 321 730 345 738 370 740 c 2 - 375 740 l 1 - 402 748 429 744 456 742 c 0 - 477 740 498 736 519 732 c 0 - 530 730 541 726 551 722 c 0 - 576 712 601 700 624 685 c 0 - 637 677 651 667 662 656 c 0x5a50 - 678 642 692 627 706 611 c 0 - 714 601 721 590 728 579 c 0 - 731 576 732 571 738 572 c 0 - 738 574 739 577 739 580 c 2 - 739 609 l 1 - 736 672 l 2 - 736 677 734 682 733 688 c 0 - 731 702 721 710 706 712 c 0 - 700 714 693 714 686 715 c 1 - 683 725 685 734 685 744 c 1 - 692 745 698 746 705 747 c 0 - 715 748 726 749 736 749 c 0 - 741 750 746 750 751 749 c 0 - 775 747 799 748 824 749 c 0 - 840 750 855 750 871 749 c 0 - 904 747 938 747 971 749 c 0 - 1010 752 1048 752 1087 750 c 0 - 1093 750 1100 751 1107 750 c 0 - 1114 750 1121 749 1129 748 c 1 - 1131 714 1128 681 1126 648 c 1 - 1119 646 1113 643 1105 640 c 1 - 1103 645 1100 649 1098 654 c 0 - 1094 662 1090 672 1086 680 c 0 - 1082 686 1078 692 1073 698 c 0 - 1068 706 1060 708 1050 707 c 0 - 1012 705 973 707 935 709 c 0 - 921 709 907 708 893 707 c 2 - 830 704 l 2 - 827 704 824 704 821 703 c 0 - 813 702 811 700 811 692 c 2 - 811 648 l 1 - 811 542 l 2x36a0 - 810 498 809 455 808 412 c 2 - 808 321 l 2 - 808 319 808 316 809 313 c 0 - 820 312 831 311 842 311 c 0 - 906 310 969 309 1032 308 c 0 - 1043 308 1055 308 1066 309 c 0 - 1084 309 1092 316 1098 333 c 0 - 1100 338 1102 344 1104 350 c 1 - 1119 350 l 1 - 1123 333 1123 240 1119 220 c 0 - 1117 220 1115 219 1113 219 c 2 - 1106 219 l 1 - 1104 226 1102 233 1100 239 c 0 - 1097 250 1090 255 1078 257 c 0x3a50 - 1038 261 999 260 960 259 c 0 - 949 258 939 259 929 259 c 0 - 894 261 860 264 825 262 c 0 - 811 261 808 258 807 243 c 0 - 806 203 805 162 804 122 c 0 - 804 104 805 87 804 69 c 0 - 804 62 806 56 809 49 c 0 - 811 43 816 41 822 40 c 0 - 847 38 872 37 896 39 c 0 - 939 42 982 42 1025 41 c 0 - 1042 40 1059 41 1076 43 c 0 - 1094 45 1109 53 1119 69 c 0 - 1128 85 1134 102 1139 119 c 0 - 1139 123 1140 126 1141 131 c 1x3b18 -741 374 m 0x9a50 - 743 391 739 411 735 431 c 0 - 730 460 720 488 708 514 c 0 - 697 537 683 558 665 577 c 0 - 652 590 640 603 627 616 c 0 - 623 620 619 623 614 626 c 0 - 610 629 606 632 602 634 c 0 - 584 645 565 656 547 667 c 0 - 543 669 539 670 535 671 c 0 - 511 677 489 683 465 687 c 0 - 429 693 394 697 357 692 c 0 - 330 689 303 683 278 671 c 0 - 271 667 264 664 258 661 c 0 - 251 656 243 652 236 647 c 0 - 227 640 217 635 209 628 c 0 - 175 600 144 568 118 532 c 0 - 114 526 110 519 106 513 c 0 - 84 474 71 432 63 388 c 0 - 59 367 59 347 61 326 c 0 - 65 294 68 262 80 231 c 0 - 90 202 100 173 123 150 c 0 - 125 148 126 145 128 143 c 0 - 134 136 140 129 146 123 c 0 - 157 113 169 104 180 94 c 0 - 198 77 220 65 242 55 c 0 - 249 51 256 48 264 46 c 0 - 307 37 350 27 395 27 c 0 - 412 27 429 27 446 30 c 0 - 480 36 513 46 543 63 c 0 - 547 66 551 68 555 69 c 0 - 577 79 598 92 619 106 c 0 - 628 112 638 119 646 128 c 0 - 668 150 689 174 704 202 c 0 - 716 226 727 250 731 276 c 0 - 738 307 741 338 741 374 c 0x9a50 -EndSplineSet -EndChar - -StartChar: oe -Encoding: 339 339 169 -Width: 782 -GlyphClass: 2 -Flags: MW -HStem: -21 45 -17 41 -14 46 214 47<512.5 536> 295 50 308 48 -VStem: 11 53 413 61 -LayerCount: 2 -Fore -SplineSet -752 78 m 0x3b - 761 70 766 62 772 52 c 1 - 757 38 742 24 724 14 c 0 - 714 9 703 3 693 -2 c 0 - 675 -10 656 -14 636 -14 c 0 - 591 -16 547 -8 505 11 c 0 - 493 16 482 21 471 28 c 0 - 458 36 449 46 441 58 c 0 - 438 61 436 65 433 69 c 0 - 431 68 428 66 427 65 c 0 - 416 49 400 38 384 27 c 2x37 - 360 12 l 2 - 357 10 354 9 351 8 c 0x57 - 324 -1 299 -13 271 -17 c 0 - 228 -23 185 -23 142 -12 c 0 - 120 -6 99 2 81 17 c 0 - 70 26 58 33 48 41 c 0 - 42 45 38 51 34 58 c 0 - 23 78 12 98 11 122 c 0 - 8 159 14 195 29 230 c 0 - 45 268 74 293 107 314 c 0 - 116 319 125 323 134 326 c 0 - 150 331 166 336 181 341 c 0 - 194 344 208 348 221 351 c 0 - 262 361 302 357 341 344 c 0 - 366 336 387 323 408 309 c 0 - 423 299 435 285 446 271 c 2 - 452 262 l 1 - 455 264 457 266 459 268 c 0x97 - 482 295 509 315 541 331 c 0 - 561 341 583 346 605 347 c 0 - 628 348 651 349 674 344 c 2 - 695 338 l 2 - 710 331 725 322 737 309 c 0 - 745 301 750 290 752 278 c 0 - 754 271 756 263 757 255 c 0 - 758 248 758 241 757 234 c 0 - 755 225 754 220 742 220 c 0 - 729 220 715 217 702 217 c 0 - 676 215 649 214 622 213 c 0 - 586 213 551 214 516 214 c 0 - 509 214 502 214 495 213 c 0 - 487 212 482 208 480 200 c 0 - 468 162 473 127 494 93 c 0 - 498 86 504 79 511 74 c 0 - 516 71 520 68 524 64 c 0 - 545 47 569 35 596 32 c 0 - 615 30 634 32 653 33 c 0 - 668 34 682 36 695 43 c 0 - 712 52 729 63 746 73 c 0 - 747 74 749 76 752 78 c 0x3b -250 308 m 0x97 - 233 306 217 306 200 303 c 0 - 188 301 175 299 164 294 c 0 - 136 283 114 264 94 242 c 0 - 85 231 78 218 73 204 c 0 - 66 184 65 162 64 141 c 0 - 64 124 70 108 76 93 c 0 - 77 90 79 87 81 84 c 0 - 101 62 124 45 151 36 c 0 - 178 27 205 24 233 24 c 0 - 254 24 275 26 295 33 c 0 - 315 38 332 49 348 60 c 0 - 371 77 390 97 403 122 c 0 - 408 131 412 141 413 150 c 0 - 416 172 415 193 411 214 c 0 - 407 240 393 259 371 272 c 0 - 367 274 364 276 361 278 c 0 - 355 282 349 287 342 290 c 0 - 313 302 282 307 250 308 c 0x97 -695 268 m 1 - 691 276 687 280 681 282 c 0 - 662 289 644 295 624 295 c 2 - 601 295 l 2x9b - 574 295 552 281 533 264 c 1 - 533 262 l 1 - 534 262 535 261 536 261 c 0 - 585 258 635 263 684 266 c 0 - 687 267 691 267 695 268 c 1 -EndSplineSet -Kerns2: 87 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: Scaron -Encoding: 352 352 170 -Width: 522 -GlyphClass: 2 -Flags: MW -HStem: -11 21G<36.5 39 39 65> -8 21G<241 246> -8 42 710 40 802 60 -VStem: 30 73<553.5 567.5 553.5 569> 31 34 421 70 448 25<572 608.5> -LayerCount: 2 -Fore -SplineSet -65 -11 m 2x9280 - 39 -11 l 2 - 34 -11 32 -9 32 -4 c 0x9280 - 32 31 31 66 31 101 c 0 - 31 118 33 134 34 151 c 0 - 34 155 36 157 39 158 c 0 - 47 161 55 165 65 164 c 0 - 65 161 65 158 66 154 c 0 - 67 137 69 120 77 104 c 0 - 80 97 85 92 88 86 c 0 - 93 80 97 74 102 68 c 0 - 103 66 105 64 107 62 c 0 - 129 49 151 34 179 34 c 0 - 185 34 190 33 196 32 c 0 - 209 29 223 29 237 32 c 0 - 246 34 255 35 265 36 c 0 - 277 37 289 40 301 45 c 0 - 314 52 328 57 341 64 c 0 - 359 76 376 89 392 103 c 0 - 403 112 407 126 410 139 c 0 - 417 164 419 189 421 214 c 0 - 422 229 416 241 410 254 c 0 - 402 271 394 288 384 304 c 0 - 372 326 354 344 331 355 c 0x33 - 320 360 311 367 301 372 c 0 - 284 380 268 387 251 394 c 0 - 240 398 230 401 218 403 c 0 - 187 408 158 416 129 429 c 0 - 104 439 80 453 63 475 c 0 - 58 481 54 488 51 495 c 0 - 39 516 30 539 30 564 c 0 - 30 574 32 585 35 595 c 0 - 37 607 42 618 45 630 c 0 - 52 651 65 667 80 681 c 0 - 95 694 110 707 126 717 c 0 - 148 730 170 742 195 746 c 0 - 221 751 247 752 273 750 c 0 - 293 748 314 742 334 739 c 0 - 360 736 383 726 408 719 c 0 - 420 716 433 714 446 712 c 0 - 452 711 459 711 465 710 c 0 - 469 710 471 708 471 705 c 2 - 471 701 l 2 - 472 664 473 627 473 590 c 0 - 473 567 474 572 455 572 c 2 - 448 572 l 1 - 442 587 438 602 431 616 c 0 - 426 630 419 644 407 653 c 0 - 399 659 391 666 384 672 c 0 - 378 676 372 681 366 685 c 0 - 358 689 349 694 341 697 c 0 - 328 702 315 706 302 711 c 0 - 300 711 298 710 295 710 c 0 - 284 711 273 710 262 712 c 0 - 253 713 244 713 234 712 c 0 - 222 711 209 709 198 705 c 0 - 184 700 172 692 162 683 c 0 - 153 675 145 668 136 661 c 0 - 118 645 109 624 106 601 c 0 - 104 588 103 574 103 561 c 0 - 103 546 107 531 114 518 c 0 - 120 507 129 499 139 493 c 0 - 154 484 170 477 185 469 c 0x5480 - 207 457 231 450 256 444 c 0 - 294 435 332 424 368 406 c 0 - 375 402 382 397 389 392 c 0 - 393 389 397 385 402 382 c 0 - 419 371 432 357 446 344 c 0 - 458 332 465 317 471 302 c 0 - 474 296 477 289 480 282 c 0 - 486 267 489 251 491 234 c 0 - 493 211 490 189 482 167 c 0 - 471 132 454 100 427 75 c 0 - 411 60 395 49 377 38 c 0 - 361 29 345 19 329 11 c 0 - 323 7 317 5 310 3 c 0 - 289 -2 268 -7 246 -8 c 0 - 236 -8 226 -11 216 -12 c 0 - 209 -13 201 -13 194 -12 c 0 - 180 -11 167 -9 153 -7 c 0 - 144 -6 135 -4 126 -1 c 0 - 112 3 97 4 83 5 c 0x53 - 74 6 71 4 67 -6 c 0 - 66 -8 66 -9 65 -11 c 2x9280 -257 802 m 0x5a80 - 254 803 250 803 247 805 c 0 - 238 814 229 822 221 831 c 0 - 210 844 199 856 187 867 c 0 - 180 873 179 878 184 885 c 0 - 188 892 192 897 197 903 c 0 - 203 909 205 909 212 903 c 0 - 224 891 235 879 247 867 c 0 - 255 860 256 860 264 867 c 1 - 264 867 265 868 265 869 c 0 - 277 881 289 894 301 906 c 0 - 304 910 308 910 311 906 c 0 - 317 900 323 893 328 886 c 0 - 332 879 331 875 325 869 c 0 - 323 868 322 866 321 865 c 0 - 303 846 286 828 269 809 c 0 - 266 805 262 802 257 802 c 0x5a80 -EndSplineSet -EndChar - -StartChar: scaron -Encoding: 353 353 171 -Width: 303 -GlyphClass: 2 -Flags: MW -HStem: -7 45 -2 21G<61 65.5> 287 50 387 60 -VStem: 30 43<101.5 104> 38 58 204 68 235 24<223 223> -LayerCount: 2 -Fore -SplineSet -73 13 m 1xa5 - 73 9 l 2xa5 - 72 0 70 -2 61 -2 c 0 - 56 -3 51 -4 45 -4 c 0 - 38 -4 35 -1 34 6 c 0 - 33 18 31 30 31 42 c 0 - 30 61 30 81 30 100 c 2x69 - 30 125 l 2 - 30 132 32 133 39 134 c 0 - 48 136 58 137 67 138 c 0 - 68 137 69 135 69 133 c 0 - 71 123 72 114 73 104 c 0 - 73 99 74 94 76 89 c 0 - 78 83 80 77 83 72 c 0 - 89 60 98 50 111 47 c 0 - 112 46 113 46 114 45 c 0 - 128 37 144 38 160 38 c 0 - 174 39 186 46 194 58 c 0xa9 - 197 61 199 64 201 68 c 0 - 206 76 205 85 204 93 c 0 - 202 104 196 112 190 121 c 1 - 190 121 l 1 - 182 126 173 130 165 135 c 1 - 164 135 l 1 - 148 139 133 144 118 148 c 0xa6 - 113 150 108 150 103 151 c 0 - 101 152 99 152 97 153 c 0 - 80 162 62 170 51 188 c 0 - 39 206 36 225 38 245 c 0 - 40 255 45 265 49 276 c 0 - 55 292 68 302 81 313 c 0 - 93 322 107 329 121 333 c 0 - 137 338 153 339 170 337 c 0 - 188 335 203 327 221 326 c 0 - 224 325 227 323 231 321 c 1 - 234 327 l 1 - 240 328 245 328 251 328 c 1 - 254 293 256 258 259 223 c 1 - 235 223 l 1 - 233 230 231 236 230 242 c 0 - 227 254 220 263 211 270 c 0 - 204 275 196 280 188 282 c 0 - 180 285 171 286 162 287 c 0xa5 - 139 288 120 279 104 264 c 0 - 95 255 92 233 99 223 c 0 - 101 219 105 216 109 214 c 0 - 127 204 148 201 168 195 c 0 - 176 193 185 190 194 187 c 2 - 206 184 l 2 - 215 182 223 179 230 172 c 0 - 231 171 232 169 234 168 c 0 - 246 165 251 154 257 145 c 0 - 259 143 260 140 261 137 c 0 - 277 116 273 93 267 70 c 0 - 265 64 263 57 260 51 c 0 - 254 36 244 25 231 17 c 0 - 222 11 212 6 202 1 c 0 - 197 -1 191 -1 185 -3 c 0 - 181 -4 178 -4 174 -5 c 0xa6 - 163 -9 152 -9 140 -7 c 0 - 129 -6 117 -4 105 -3 c 0 - 102 -2 99 -1 97 0 c 0 - 89 4 81 8 73 13 c 1xa5 -154 387 m 0 - 151 388 147 388 144 390 c 0 - 135 399 126 407 118 416 c 0 - 107 429 96 441 84 452 c 0 - 77 458 76 463 81 470 c 0 - 85 477 89 482 94 488 c 0 - 100 494 102 494 109 488 c 0 - 121 476 132 464 144 452 c 0 - 152 445 153 445 161 452 c 1 - 161 452 162 453 162 454 c 0 - 174 466 186 479 198 491 c 0 - 201 495 205 495 208 491 c 0 - 214 485 220 478 225 471 c 0 - 229 464 228 460 222 454 c 0 - 220 453 219 451 218 450 c 0 - 200 431 183 413 166 394 c 0 - 163 390 159 387 154 387 c 0 -EndSplineSet -Kerns2: 88 -36 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 87 -18 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 86 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 82 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 77 -30 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 75 -11 "'kern' Horizontal Kerning in Latin lookup 0 subtable" 71 12 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: Ydieresis -Encoding: 376 376 172 -Width: 748 -GlyphClass: 2 -Flags: MW -HStem: -5 21G -3 21G<295 301 301 388> 715 26 717 27<612 718> 835 54<314.5 319 319 325 402.5 407 407 411 411 413> -VStem: 30 154 288 59 326 65 376 59 558 160<734.5 740> -LayerCount: 2 -Fore -SplineSet -214 741 m 1x6d - 214 734 214 728 213 722 c 0 - 213 721 212 719 210 717 c 0 - 208 716 205 716 202 715 c 0 - 186 708 179 692 187 676 c 0 - 192 666 198 657 205 649 c 0 - 218 633 232 617 245 602 c 0 - 249 595 253 588 258 582 c 0 - 276 558 294 535 312 512 c 0 - 322 499 331 486 340 472 c 0 - 347 462 353 452 359 442 c 2 - 363 438 l 1 - 365 440 367 441 368 443 c 0 - 395 479 428 509 456 543 c 0 - 466 554 476 566 485 577 c 0 - 502 597 518 616 536 635 c 0 - 551 652 565 669 578 688 c 0 - 580 691 582 695 582 699 c 0 - 583 706 580 710 573 712 c 0 - 568 714 563 715 557 717 c 1x6d40 - 557 724 558 731 558 738 c 0 - 558 742 561 742 564 742 c 2 - 580 742 l 2 - 587 743 594 743 601 743 c 0 - 605 744 609 744 612 744 c 0 - 647 741 682 746 718 744 c 1 - 718 717 l 1 - 700 715 684 709 669 702 c 0 - 656 695 644 686 635 675 c 0 - 627 666 619 658 611 649 c 0 - 587 623 565 594 543 565 c 0 - 523 540 504 514 483 489 c 0 - 477 481 469 473 462 465 c 0 - 451 452 441 439 431 426 c 2 - 404 390 l 2 - 399 383 396 376 395 367 c 0 - 394 353 392 339 392 325 c 0 - 391 309 393 293 393 276 c 0 - 392 246 391 216 391 186 c 0 - 391 150 389 114 391 79 c 0 - 393 50 407 34 436 24 c 0 - 441 23 445 22 450 21 c 0 - 453 20 456 18 456 14 c 2 - 456 -5 l 1 - 445 -5 435 -6 426 -5 c 0 - 413 -5 400 -3 388 -3 c 0 - 359 -3 330 -2 301 -3 c 0x5d40 - 289 -3 278 -5 267 -7 c 0 - 264 -7 262 -7 259 -6 c 2 - 259 16 l 2 - 259 25 260 24 267 27 c 0 - 277 29 286 33 295 37 c 0 - 300 39 305 43 309 46 c 0 - 314 51 318 57 319 65 c 0xad - 319 79 320 93 321 106 c 0 - 322 123 322 140 323 157 c 0 - 324 187 326 218 327 248 c 0 - 329 280 330 312 326 344 c 1 - 326 347 l 2 - 329 367 321 383 311 399 c 0 - 304 409 297 418 290 427 c 0 - 280 441 271 454 262 467 c 0 - 254 478 247 488 239 498 c 0 - 234 505 230 512 225 519 c 2 - 210 537 l 2 - 206 543 201 548 197 555 c 0 - 187 573 175 590 161 605 c 0 - 152 616 144 628 134 639 c 0 - 116 660 97 680 74 697 c 0 - 62 706 49 709 35 712 c 0 - 33 712 32 713 30 713 c 1 - 30 740 l 1 - 32 740 32 741 33 741 c 0 - 51 741 68 740 86 740 c 0 - 102 740 118 740 133 741 c 2 - 167 741 l 1 - 198 741 l 1 - 214 741 l 1x6d -407 835 m 2x6c80 - 398 835 389 835 382 843 c 0 - 374 851 374 866 381 875 c 0 - 383 878 385 880 387 883 c 0 - 389 887 392 889 396 889 c 0 - 401 889 407 888 411 889 c 0 - 419 889 424 886 427 881 c 0 - 432 873 436 866 435 857 c 0 - 434 843 426 835 413 835 c 2 - 407 835 l 2x6c80 -319 835 m 2x6e - 310 835 301 835 294 843 c 0 - 287 851 286 866 293 875 c 0 - 295 878 297 880 299 883 c 0 - 301 887 304 889 308 889 c 2 - 325 889 l 2 - 331 889 335 887 339 882 c 0 - 344 874 348 867 347 857 c 0 - 347 843 338 835 325 835 c 2 - 319 835 l 2x6e -EndSplineSet -EndChar - -StartChar: Zcaron -Encoding: 381 381 173 -Width: 671 -GlyphClass: 2 -Flags: MW -HStem: -6 55 -3 48<472.5 490> -1 50 707 37<354 375.5> 837 60 -VStem: 619 21<125 125> -LayerCount: 2 -Fore -SplineSet -619 125 m 1x94 - 635 125 l 2 - 640 124 641 123 640 118 c 0 - 638 103 636 89 632 75 c 0 - 626 54 621 32 618 10 c 0 - 617 5 614 2 610 0 c 0 - 602 -4 593 -6 584 -6 c 0x94 - 546 -5 509 -3 471 -3 c 0 - 439 -2 406 -1 374 -1 c 0 - 351 -2 328 -2 305 -3 c 2x34 - 203 -6 l 2 - 159 -7 115 -7 72 -7 c 0 - 66 -7 60 -8 54 -8 c 0 - 47 -9 43 -6 43 1 c 0 - 42 4 42 7 42 10 c 0 - 41 18 44 24 51 28 c 0 - 62 35 70 43 77 54 c 0 - 83 64 90 73 97 83 c 0 - 114 109 130 136 147 161 c 0 - 166 189 186 216 204 244 c 0 - 218 265 232 286 245 308 c 0 - 253 322 260 336 269 348 c 0 - 289 376 308 405 329 432 c 0 - 346 453 360 476 375 498 c 0 - 387 516 400 534 412 553 c 0 - 424 572 434 591 445 610 c 0 - 455 627 465 644 475 662 c 0 - 477 666 480 670 482 675 c 0 - 486 685 481 703 465 703 c 0 - 453 704 441 705 430 705 c 0 - 408 706 386 707 365 707 c 0 - 343 707 322 706 300 705 c 0 - 272 705 244 705 216 703 c 0 - 195 703 175 701 155 699 c 0 - 147 698 138 698 129 698 c 0 - 114 696 100 690 89 679 c 0 - 76 665 66 648 61 629 c 0 - 60 628 60 628 59 626 c 0 - 50 627 40 629 30 630 c 1 - 31 635 31 638 32 642 c 0 - 36 659 39 677 43 695 c 0 - 44 702 45 710 45 717 c 0 - 46 723 47 727 53 730 c 0 - 62 735 71 737 81 737 c 0 - 119 738 156 739 194 740 c 0 - 207 741 219 741 232 741 c 0 - 264 742 295 744 327 744 c 0 - 358 745 389 743 420 744 c 0 - 447 744 473 744 500 742 c 0 - 527 740 554 740 582 739 c 0 - 585 739 586 738 587 735 c 0 - 589 726 591 717 592 708 c 0 - 592 706 590 703 589 702 c 0 - 579 698 574 690 568 680 c 0 - 559 663 548 647 538 630 c 0 - 525 609 512 587 499 566 c 0 - 484 541 468 516 452 492 c 0 - 438 469 424 446 409 424 c 0 - 373 369 337 314 300 260 c 0 - 279 229 257 199 234 168 c 0 - 211 137 191 103 175 68 c 0 - 173 64 172 59 174 55 c 2 - 174 55 174 54 175 54 c 0 - 206 53 236 51 267 49 c 2 - 270 49 l 2x94 - 297 49 324 48 352 47 c 0 - 400 46 448 45 497 45 c 0x54 - 510 44 523 46 536 47 c 0 - 540 47 544 48 548 48 c 0 - 572 47 589 58 600 80 c 0 - 606 91 610 103 615 114 c 0 - 617 117 618 121 619 125 c 1x94 -364 837 m 0x9c - 361 838 357 838 354 840 c 0 - 345 849 336 857 328 866 c 0 - 317 879 306 891 294 902 c 0 - 287 908 286 913 291 920 c 0 - 295 927 299 932 304 938 c 0 - 310 944 312 944 319 938 c 0 - 331 926 342 914 354 902 c 0 - 362 895 363 895 371 902 c 1 - 371 902 372 903 372 904 c 0 - 384 916 396 929 408 941 c 0 - 411 945 415 945 418 941 c 0 - 424 935 430 928 435 921 c 0 - 439 914 438 910 432 904 c 0 - 430 903 429 901 428 900 c 0 - 410 881 393 863 376 844 c 0 - 373 840 369 837 364 837 c 0x9c -EndSplineSet -EndChar - -StartChar: zcaron -Encoding: 382 382 174 -Width: 408 -GlyphClass: 2 -Flags: MW -HStem: -5 48<273 274.5> -4 47 -2 40 309 35<183 241> 408 60 -VStem: 46 76 59 8 -LayerCount: 2 -Fore -SplineSet -67 276 m 1x92 - 56 278 56 278 56 288 c 0 - 58 301 58 313 59 327 c 0 - 59 334 60 336 66 338 c 0 - 83 339 98 340 114 341 c 2x92 - 183 344 l 1 - 210 344 l 2 - 240 344 271 344 300 343 c 0 - 312 343 322 342 333 341 c 1 - 334 335 334 331 332 327 c 0 - 329 325 328 322 327 320 c 0 - 324 312 321 306 315 300 c 0 - 303 283 290 268 278 251 c 0 - 260 225 241 200 220 178 c 0 - 215 171 208 163 202 156 c 0 - 183 131 163 105 143 81 c 0 - 136 71 129 63 123 53 c 0 - 121 49 121 44 122 38 c 1 - 148 38 l 2x34 - 190 39 231 41 273 43 c 0 - 285 43 296 45 310 46 c 0 - 325 47 334 58 342 71 c 0 - 344 75 346 81 348 84 c 0 - 351 90 352 91 359 90 c 0 - 365 89 368 87 368 82 c 0 - 369 79 368 74 367 71 c 0x92 - 366 54 363 37 362 20 c 0x52 - 361 8 351 -2 337 -2 c 0 - 313 -3 287 -5 262 -5 c 0 - 231 -5 199 -4 167 -4 c 0x94 - 129 -3 91 -2 52 -2 c 0 - 46 -1 45 3 44 7 c 0 - 42 12 42 20 46 26 c 0 - 53 32 60 40 66 48 c 0 - 80 64 92 81 104 98 c 0x54 - 121 120 134 143 149 166 c 0 - 157 178 166 187 175 197 c 0 - 184 210 195 223 204 235 c 0 - 217 251 230 267 242 282 c 0 - 245 287 249 292 252 297 c 0 - 255 303 253 305 247 308 c 0 - 244 309 242 309 240 309 c 0 - 210 309 180 308 151 306 c 0 - 143 306 134 305 125 304 c 0 - 113 303 101 303 87 302 c 0 - 76 301 74 299 71 289 c 0 - 70 284 69 280 67 276 c 1x92 -203 408 m 0x9a - 200 409 196 409 193 411 c 0 - 184 420 175 428 167 437 c 0 - 156 450 145 462 133 473 c 0 - 126 479 125 484 130 491 c 0 - 134 498 138 503 143 509 c 0 - 149 515 151 515 158 509 c 0 - 170 497 181 485 193 473 c 0 - 201 466 202 466 210 473 c 1 - 210 473 211 474 211 475 c 0 - 223 487 235 500 247 512 c 0 - 250 516 254 516 257 512 c 0 - 263 506 269 499 274 492 c 0 - 278 485 277 481 271 475 c 0 - 269 474 268 472 267 471 c 0 - 249 452 232 434 215 415 c 0 - 212 411 208 408 203 408 c 0x9a -EndSplineSet -EndChar - -StartChar: circumflex -Encoding: 710 710 175 -Width: 171 -GlyphClass: 2 -Flags: MW -HStem: 418 107 465 60 -VStem: 11 149 -LayerCount: 2 -Fore -SplineSet -87 525 m 0x60 - 92 525 96 522 99 518 c 0 - 116 499 133 481 151 462 c 0 - 152 461 153 459 155 458 c 0 - 161 452 162 448 158 441 c 0 - 153 434 147 427 141 421 c 0 - 138 417 134 417 131 421 c 0 - 119 433 107 446 95 458 c 0 - 95 459 94 460 94 460 c 1 - 86 467 85 467 77 460 c 0 - 65 448 54 436 42 424 c 0 - 35 418 33 418 27 424 c 0 - 22 430 18 435 14 442 c 0 - 9 449 10 454 17 460 c 0 - 29 471 40 483 51 496 c 0 - 59 505 68 513 77 522 c 0 - 80 524 84 524 87 525 c 0x60 -EndSplineSet -EndChar - -StartChar: caron -Encoding: 711 711 176 -Width: 171 -GlyphClass: 2 -Flags: MW -HStem: 417 60 417 107 -VStem: 11 149 -LayerCount: 2 -Fore -SplineSet -87 417 m 0xa0 - 84 418 80 418 77 420 c 0 - 68 429 59 437 51 446 c 0 - 40 459 29 471 17 482 c 0 - 10 488 9 493 14 500 c 0 - 18 507 22 512 27 518 c 0 - 33 524 35 524 42 518 c 0 - 54 506 65 494 77 482 c 0 - 85 475 86 475 94 482 c 1 - 94 482 95 483 95 484 c 0 - 107 496 119 509 131 521 c 0 - 134 525 138 525 141 521 c 0 - 147 515 153 508 158 501 c 0 - 162 494 161 490 155 484 c 0 - 153 483 152 481 151 480 c 0 - 133 461 116 443 99 424 c 0 - 96 420 92 417 87 417 c 0xa0 -EndSplineSet -EndChar - -StartChar: ring -Encoding: 730 730 177 -Width: 117 -GlyphClass: 2 -Flags: MW -HStem: 430 38<54.5 55.5> 491 41 -VStem: 11 40<469.5 478> 69 36 -LayerCount: 2 -Fore -SplineSet -11 478 m 1 - 10 493 15 505 23 516 c 0 - 26 519 28 522 31 524 c 0 - 47 532 63 536 80 528 c 2 - 86 525 l 2 - 98 519 105 509 106 496 c 0 - 107 485 106 474 104 463 c 0 - 100 449 89 440 75 435 c 0 - 72 434 68 433 64 432 c 0 - 61 431 57 430 54 430 c 0 - 38 434 23 441 15 456 c 0 - 12 462 12 471 10 478 c 1 - 11 478 l 1 -69 483 m 0 - 69 487 69 490 64 491 c 0 - 59 493 52 491 50 487 c 0 - 49 481 50 476 51 470 c 0 - 51 469 54 468 55 468 c 0 - 63 468 69 475 69 483 c 0 -EndSplineSet -EndChar - -StartChar: tilde -Encoding: 732 732 178 -Width: 159 -GlyphClass: 2 -Flags: MW -HStem: 460 40 467 44<52.5 68> -VStem: 10 139 -LayerCount: 2 -Fore -SplineSet -10 469 m 1x60 - 17 484 25 498 40 507 c 0 - 44 509 50 511 55 511 c 0x60 - 65 512 74 509 83 505 c 0 - 87 503 91 502 96 500 c 0 - 105 497 112 499 118 506 c 0 - 123 513 123 513 131 510 c 0 - 135 508 139 507 142 506 c 0 - 148 503 150 500 148 494 c 0 - 146 487 143 481 140 475 c 2 - 137 472 l 2 - 131 461 120 459 108 460 c 0 - 98 460 88 462 78 465 c 0 - 74 467 70 467 66 467 c 0xa0 - 59 468 54 466 50 460 c 0 - 47 455 44 455 39 457 c 0 - 30 461 21 465 10 469 c 1x60 -EndSplineSet -EndChar - -StartChar: quoteleft -Encoding: 8216 8216 179 -Width: 114 -GlyphClass: 2 -Flags: MW -HStem: 641 105 642 104 -VStem: 11 53<717 719 719 733 733 736 713.5 737.5> -LayerCount: 2 -Fore -SplineSet -11 717 m 2x60 - 11 733 l 2 - 11 742 15 746 24 746 c 2 - 53 746 l 2 - 59 746 63 742 64 736 c 0 - 64 731 63 725 64 719 c 0 - 64 708 65 698 67 687 c 0 - 68 675 76 667 87 663 c 0 - 94 660 96 655 90 649 c 0 - 87 646 83 643 79 642 c 0 - 67 640 55 642 44 649 c 0 - 39 652 33 655 28 658 c 0 - 26 659 24 661 23 663 c 0 - 16 680 8 697 11 717 c 2x60 -EndSplineSet -EndChar - -StartChar: quoteright -Encoding: 8217 8217 180 -Width: 116 -GlyphClass: 2 -Flags: MW -HStem: 646 106<24 52 24 82> 646 107 -VStem: 41 54<658 672 672 676 658 677> -LayerCount: 2 -Fore -SplineSet -95 676 m 2xa0 - 95 658 l 2 - 94 650 90 646 82 646 c 2 - 52 646 l 2 - 46 646 41 650 41 656 c 2 - 41 672 l 2 - 41 682 40 692 39 702 c 0 - 38 716 31 726 17 731 c 0 - 10 734 8 740 15 746 c 0 - 18 749 22 752 26 752 c 0 - 38 754 51 752 61 745 c 0 - 67 742 72 739 78 736 c 0 - 80 735 82 733 83 731 c 0 - 90 713 97 696 95 676 c 2xa0 -EndSplineSet -EndChar - -StartChar: quotedblleft -Encoding: 8220 8220 181 -Width: 189 -GlyphClass: 2 -Flags: MW -HStem: 642 104 -VStem: 11 53<717 719 719 733 733 736 713.5 737.5> 96 52<717 733 733 736 717 737.5> -LayerCount: 2 -Fore -SplineSet -11 717 m 2 - 11 733 l 2 - 11 742 15 746 24 746 c 2 - 53 746 l 2 - 59 746 63 742 64 736 c 0 - 64 731 63 725 64 719 c 0 - 64 708 65 698 67 687 c 0 - 68 675 76 667 87 663 c 0 - 94 660 96 655 90 649 c 0 - 87 646 83 643 79 642 c 0 - 67 640 55 642 44 649 c 0 - 39 652 33 655 28 658 c 0 - 26 659 24 661 23 663 c 0 - 16 680 8 697 11 717 c 2 -96 717 m 0 - 96 722 95 728 96 733 c 0 - 96 742 100 746 109 746 c 2 - 138 746 l 2 - 144 747 148 742 148 736 c 2 - 148 717 l 2 - 149 708 149 700 150 691 c 0 - 152 678 158 668 172 663 c 0 - 179 660 180 655 175 649 c 0 - 172 646 167 643 162 642 c 0 - 150 640 139 642 128 649 c 0 - 123 652 117 655 112 658 c 0 - 110 659 108 661 108 663 c 0 - 100 680 93 697 96 717 c 0 -EndSplineSet -EndChar - -StartChar: quotedblright -Encoding: 8221 8221 182 -Width: 192 -GlyphClass: 2 -Flags: MW -HStem: 646 106<24 52 24 82> -VStem: 41 54<658 672 672 676 658 677> 127 54<656 660 660 676 655 680.5> -LayerCount: 2 -Fore -SplineSet -181 676 m 2 - 181 660 l 2 - 181 650 177 646 167 646 c 2 - 138 646 l 2 - 132 646 127 650 127 656 c 0 - 127 663 128 670 127 676 c 0 - 127 685 126 693 125 702 c 0 - 124 716 117 726 104 731 c 0 - 96 734 94 739 100 745 c 0 - 103 748 108 752 112 752 c 0 - 125 754 137 752 147 745 c 0 - 153 742 159 739 164 736 c 0 - 166 735 168 733 169 731 c 0 - 176 713 184 696 181 676 c 2 -95 676 m 2 - 95 658 l 2 - 94 650 90 646 82 646 c 2 - 52 646 l 2 - 46 646 41 650 41 656 c 2 - 41 672 l 2 - 41 682 40 692 39 702 c 0 - 38 716 31 726 17 731 c 0 - 10 734 8 740 15 746 c 0 - 18 749 22 752 26 752 c 0 - 38 754 51 752 61 745 c 0 - 67 742 72 739 78 736 c 0 - 80 735 82 733 83 731 c 0 - 90 713 97 696 95 676 c 2 -EndSplineSet -EndChar - -StartChar: Euro -Encoding: 8364 8364 183 -Width: 363 -GlyphClass: 2 -Flags: MW -HStem: -13 41 92 45<17 41 41 41 41 51> 93 50<138 223> 159 44<100 102> 304 36 -VStem: 41 55<140 159 140 159 140 159> 297 28 -LayerCount: 2 -Fore -SplineSet -51 92 m 1xce - 23 92 l 2 - 11 92 11 92 11 103 c 0 - 12 111 13 119 12 127 c 0 - 12 131 14 134 19 134 c 0 - 26 135 33 136 41 137 c 1xce - 41 159 l 1 - 12 159 l 1 - 12 172 11 185 10 197 c 1 - 20 201 30 201 39 201 c 0 - 45 201 47 203 49 208 c 0 - 55 222 62 236 69 249 c 0 - 76 263 87 274 97 284 c 0 - 118 305 141 322 169 331 c 0 - 189 338 208 341 229 340 c 0 - 246 340 262 337 278 334 c 0 - 285 332 292 329 298 326 c 0 - 306 324 312 321 320 319 c 0 - 324 318 327 316 326 311 c 2 - 326 238 l 2 - 326 228 325 227 315 226 c 0 - 301 224 301 224 299 237 c 2 - 296 258 l 2 - 292 280 278 293 258 299 c 0 - 236 305 213 307 191 298 c 0 - 175 292 159 287 146 276 c 0 - 125 259 110 237 101 210 c 0 - 101 208 101 207 100 203 c 1 - 114 203 128 204 141 203 c 2 - 185 203 l 2 - 197 203 209 204 220 205 c 0 - 227 205 229 203 229 197 c 0 - 229 188 229 179 228 171 c 0 - 228 165 225 162 219 162 c 0 - 189 161 159 161 128 160 c 0 - 118 160 108 159 96 159 c 1xbe - 96 140 l 1 - 123 140 l 2 - 125 140 127 141 129 141 c 0 - 159 142 189 142 219 143 c 0 - 227 143 228 141 228 133 c 0 - 228 123 227 112 227 102 c 0 - 227 100 226 99 226 97 c 0 - 213 95 201 94 189 93 c 0 - 172 93 155 94 138 93 c 0 - 129 93 120 92 111 91 c 1xae - 117 65 131 46 157 38 c 0 - 179 30 202 26 226 28 c 0 - 262 31 293 45 321 68 c 0 - 322 69 323 70 324 70 c 0 - 330 74 336 71 337 64 c 0 - 338 49 331 39 323 28 c 0 - 312 16 297 8 283 1 c 0 - 273 -3 262 -6 252 -10 c 0 - 229 -16 206 -15 183 -13 c 0 - 152 -10 127 4 101 19 c 0 - 90 25 81 35 72 44 c 0 - 63 55 58 69 53 82 c 0 - 52 85 52 88 51 92 c 1xce -EndSplineSet -EndChar - -StartChar: trademark -Encoding: 8482 8482 184 -Width: 509 -GlyphClass: 2 -Flags: MW -HStem: 364 21 390 20 478 20 693 39 704 32 751 25<88 112 88 112> 820 12 -VStem: 29 42 144 32 247 31 342 38<509.5 523> 491 7 -LayerCount: 2 -Fore -SplineSet -278 501 m 1x67f0 - 285 498 291 495 297 493 c 1 - 297 477 l 1 - 292 477 287 476 282 476 c 0 - 265 477 248 478 232 479 c 0 - 224 479 223 480 223 492 c 0 - 226 494 230 495 233 497 c 0 - 241 501 246 507 246 516 c 0 - 247 537 248 558 247 579 c 0 - 247 601 245 623 244 645 c 0 - 243 657 242 669 240 681 c 0 - 240 687 236 691 230 693 c 0 - 214 696 199 691 189 678 c 0 - 181 666 175 653 176 638 c 0 - 176 611 176 583 175 556 c 0 - 175 548 174 540 174 531 c 0 - 173 526 173 520 174 515 c 0 - 174 505 177 502 188 500 c 0 - 190 499 192 499 195 498 c 0 - 195 495 196 492 196 489 c 0 - 196 486 196 484 195 480 c 0 - 183 477 171 479 159 478 c 2 - 124 478 l 1 - 121 484 122 489 124 494 c 0 - 144 503 144 504 144 524 c 0 - 143 546 144 568 143 590 c 0 - 142 620 140 649 138 679 c 0 - 138 683 137 687 136 690 c 0 - 133 698 129 701 120 700 c 0 - 117 699 113 698 108 697 c 0 - 107 700 106 703 106 706 c 0 - 106 708 108 710 110 711 c 0 - 124 720 138 728 155 731 c 0 - 158 731 160 732 163 732 c 0 - 172 732 174 730 175 720 c 0 - 176 718 176 716 177 714 c 0 - 180 715 183 717 186 718 c 0 - 197 725 208 730 221 732 c 0 - 235 735 247 732 258 723 c 0 - 262 720 265 717 268 714 c 1x77f0 - 278 719 288 722 298 728 c 0 - 314 737 331 736 349 736 c 0 - 361 735 372 724 374 711 c 0 - 375 706 375 701 376 695 c 0 - 378 637 380 578 380 519 c 0 - 380 500 382 481 386 462 c 0 - 394 423 427 409 458 411 c 0 - 462 411 466 413 470 414 c 2 - 491 423 l 1 - 500 414 501 407 493 400 c 0 - 487 395 480 391 472 389 c 0 - 453 386 435 386 416 392 c 0 - 411 393 406 394 402 395 c 0 - 387 401 375 411 367 425 c 0 - 351 450 343 477 342 506 c 0 - 342 540 341 574 340 608 c 0 - 340 632 339 657 339 681 c 0 - 339 685 338 690 338 694 c 0 - 336 702 332 706 325 704 c 0 - 306 699 289 691 282 672 c 0 - 280 664 279 655 279 647 c 0x6ff0 - 278 616 279 585 278 554 c 2 - 278 513 l 1 - 278 501 l 1x67f0 -86 820 m 0 - 79 809 73 799 72 787 c 0 - 70 776 72 774 84 775 c 0 - 93 775 102 776 112 776 c 1 - 115 769 114 762 114 754 c 1 - 108 753 103 752 97 751 c 2 - 88 751 l 2 - 73 749 70 745 70 730 c 0 - 70 705 71 680 71 655 c 2 - 71 586 l 2 - 70 560 72 535 79 510 c 0 - 83 496 86 481 90 466 c 0 - 95 445 107 429 126 417 c 0 - 135 410 144 404 154 399 c 0 - 171 390 190 387 209 386 c 0 - 212 385 215 387 219 387 c 0 - 222 388 225 389 229 389 c 0 - 235 389 240 386 241 381 c 0 - 242 375 240 370 235 367 c 0 - 232 366 228 365 225 364 c 0 - 215 362 205 363 195 365 c 0 - 178 368 161 370 145 374 c 0 - 132 378 119 386 107 392 c 2 - 95 398 l 2 - 77 410 62 427 52 446 c 0xa7f0 - 36 475 33 507 31 538 c 0 - 28 593 27 647 29 702 c 2 - 29 737 l 1 - 25 743 18 741 13 742 c 1 - 9 751 10 759 16 766 c 0 - 32 785 47 805 63 824 c 0 - 72 835 74 835 83 825 c 0 - 84 824 84 822 86 820 c 0 -EndSplineSet -EndChar - -StartChar: a4 -Encoding: 9742 9742 185 -Width: 336 -GlyphClass: 2 -Flags: MW -HStem: -9 41 1 35 287 41<145.5 166> -VStem: 15 51<73 102> 219 49<77.5 125.5> 318 8 -LayerCount: 2 -Fore -SplineSet -318 53 m 1x7c - 327 48 328 35 322 26 c 0 - 312 13 300 5 285 1 c 0 - 267 -3 249 -2 235 11 c 0 - 232 13 230 16 228 19 c 0x7c - 221 15 215 12 208 9 c 0 - 176 -6 143 -12 107 -9 c 0 - 90 -8 73 -4 57 5 c 0 - 41 13 29 25 24 43 c 0 - 22 51 19 58 16 65 c 0 - 15 68 15 72 15 74 c 0xbc - 15 112 11 100 29 134 c 0 - 32 140 35 145 38 150 c 0 - 46 162 55 171 67 179 c 0 - 86 190 104 202 124 210 c 0 - 137 214 150 219 164 221 c 0 - 176 222 187 227 199 230 c 0 - 202 231 203 233 204 236 c 0 - 205 244 203 250 197 255 c 0 - 191 261 186 269 180 274 c 0 - 171 282 161 286 149 287 c 0 - 142 287 135 288 128 289 c 0 - 115 290 102 285 90 280 c 0 - 84 277 78 271 72 266 c 0 - 67 262 63 257 59 252 c 0 - 53 243 48 235 43 225 c 0 - 42 222 40 220 37 220 c 0 - 32 219 27 218 21 218 c 0 - 15 217 12 220 11 227 c 0 - 10 239 15 250 21 260 c 0 - 29 276 40 288 54 297 c 0 - 64 304 76 308 86 314 c 0 - 91 316 95 318 99 319 c 0 - 106 321 112 324 118 325 c 0 - 134 327 150 328 166 328 c 0 - 184 329 201 323 218 315 c 0 - 228 311 235 304 240 294 c 0 - 244 285 249 276 253 266 c 0 - 260 253 262 238 264 223 c 0 - 265 218 265 212 266 207 c 0 - 267 191 268 174 268 158 c 0 - 269 145 268 132 268 119 c 0 - 268 109 269 99 270 89 c 0 - 271 77 272 66 273 54 c 0 - 273 39 286 31 299 39 c 0 - 306 43 312 48 318 53 c 1x7c -216 180 m 1 - 206 178 196 175 186 173 c 0 - 169 170 151 166 133 165 c 0 - 116 163 101 158 88 149 c 0 - 71 137 64 122 66 102 c 0 - 66 96 66 90 67 84 c 0 - 68 73 73 62 81 55 c 0 - 97 40 116 31 139 32 c 0 - 149 32 159 32 169 36 c 0 - 183 42 198 49 209 60 c 0 - 215 66 219 73 219 82 c 0xbc - 219 107 218 132 217 157 c 0 - 217 165 216 173 216 180 c 1 -EndSplineSet -EndChar - -StartChar: a1 -Encoding: 9985 9985 186 -Width: 423 -GlyphClass: 2 -Flags: MW -HStem: -6 46 -1 45 303 43 -VStem: 10 45 88 51 271 54 -LayerCount: 2 -Fore -SplineSet -70 158 m 1xbc - 57 153 46 148 35 143 c 1 - 27 150 24 159 21 167 c 0 - 18 173 16 180 14 186 c 0 - 10 198 8 209 10 222 c 0 - 13 239 17 255 25 271 c 0 - 32 286 43 298 57 308 c 0 - 77 321 98 335 121 341 c 0 - 132 344 144 346 156 348 c 0 - 184 353 213 351 241 344 c 0 - 249 342 256 338 263 333 c 0 - 289 311 305 282 313 248 c 0 - 322 206 324 163 325 121 c 0 - 326 105 328 88 329 72 c 0 - 330 63 336 56 343 49 c 0 - 351 43 357 42 366 47 c 0 - 372 51 377 56 382 61 c 0 - 385 63 387 66 390 70 c 1 - 398 68 403 63 409 57 c 0 - 407 54 407 51 405 48 c 0 - 397 37 388 27 380 16 c 0 - 377 13 373 10 369 8 c 0 - 356 1 341 -2 326 -1 c 0 - 317 -1 309 3 302 8 c 2 - 290 17 l 2x7c - 286 21 282 20 277 17 c 0 - 260 5 241 -3 221 -6 c 0 - 193 -10 165 -9 138 0 c 0 - 128 3 118 10 111 19 c 0 - 94 39 86 62 88 90 c 0 - 90 120 107 140 126 160 c 0 - 147 182 172 199 198 213 c 0 - 211 220 222 228 234 236 c 0 - 241 240 244 246 243 254 c 0 - 242 257 242 259 242 262 c 0 - 242 275 236 286 224 293 c 0 - 211 301 197 307 181 303 c 0 - 166 299 152 294 137 289 c 0 - 131 287 125 284 119 282 c 0 - 101 276 85 265 73 251 c 0 - 56 230 49 207 60 181 c 0 - 63 174 66 167 70 158 c 1xbc -268 193 m 1 - 262 196 258 195 254 193 c 0 - 251 192 248 190 244 189 c 0 - 215 181 189 166 166 146 c 0 - 143 126 136 100 139 71 c 0 - 140 63 144 57 150 52 c 0 - 163 42 178 38 195 40 c 0 - 199 41 203 42 208 43 c 0 - 232 47 251 62 270 76 c 0 - 274 80 274 85 273 90 c 0 - 272 114 270 138 269 162 c 0 - 268 173 268 183 268 193 c 1 -EndSplineSet -Kerns2: 233 -38 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: a2 -Encoding: 9986 9986 187 -Width: 359 -GlyphClass: 2 -Flags: MW -HStem: -14 44 -13 50 294 44 -VStem: 10 55 215 49 334 15 -LayerCount: 2 -Fore -SplineSet -222 25 m 1xbc - 211 12 197 6 184 -2 c 0 - 171 -9 157 -12 142 -13 c 0 - 121 -14 100 -13 79 -5 c 0 - 63 0 51 11 39 23 c 0 - 24 38 16 57 13 78 c 0x7c - 12 87 10 97 10 106 c 0 - 12 146 30 176 67 193 c 0 - 82 199 98 205 114 211 c 0 - 125 215 136 217 147 222 c 0 - 164 230 181 240 198 249 c 0 - 198 250 198 250 199 250 c 0 - 204 255 211 258 209 266 c 0 - 208 276 203 284 195 289 c 0 - 187 294 179 296 170 294 c 0 - 162 293 157 286 152 281 c 0 - 151 279 149 276 148 273 c 0 - 146 268 142 266 137 267 c 0 - 122 269 121 267 122 285 c 0 - 123 300 131 312 142 322 c 0 - 168 345 207 340 228 329 c 0 - 238 323 244 313 249 302 c 0 - 257 289 260 274 262 258 c 0 - 266 228 264 198 264 168 c 0 - 264 156 260 144 260 132 c 0 - 259 110 257 89 262 68 c 0 - 264 60 267 51 271 43 c 0 - 272 39 276 37 279 35 c 0 - 293 27 309 28 318 43 c 0 - 323 52 327 61 332 70 c 0 - 333 72 333 74 334 75 c 0 - 342 76 349 71 349 63 c 0 - 349 58 349 52 347 47 c 0 - 342 36 336 24 330 13 c 0 - 324 0 312 -6 300 -12 c 0 - 298 -13 295 -14 292 -14 c 0 - 289 -14 286 -13 283 -14 c 0 - 268 -17 255 -11 243 -3 c 0 - 236 2 231 11 226 18 c 0 - 224 20 224 22 222 25 c 1xbc -215 199 m 1 - 214 199 213 200 213 200 c 2 - 210 198 207 197 204 195 c 0 - 189 184 173 175 155 170 c 0 - 141 166 127 163 114 158 c 0 - 106 156 98 152 91 148 c 0 - 84 143 78 138 74 130 c 0 - 64 108 61 86 74 64 c 0 - 76 60 78 57 81 54 c 0 - 83 52 86 49 89 47 c 0 - 93 45 96 42 99 41 c 0 - 117 36 134 36 152 41 c 0 - 159 44 166 48 173 52 c 0 - 180 57 185 64 192 69 c 0 - 193 71 195 72 197 73 c 0 - 206 85 213 98 212 114 c 0 - 211 122 211 130 212 138 c 0 - 212 146 213 154 213 162 c 0 - 214 174 214 186 215 199 c 1 -EndSplineSet -EndChar - -StartChar: a3 -Encoding: 9988 9988 188 -Width: 362 -GlyphClass: 2 -Flags: MW -HStem: -1 42<155.5 189.5> 0 27<268 344> 214 44<179.5 185.5> 294 38 -VStem: 11 46 256 59<122 129 129 136 122 167> -LayerCount: 2 -Fore -SplineSet -352 1 m 1x7c - 345 0 339 0 334 0 c 2 - 268 0 l 2 - 262 0 260 2 260 9 c 2 - 260 23 l 1 - 251 21 245 16 238 12 c 0x7c - 231 9 224 4 216 3 c 0 - 206 0 195 -1 184 -1 c 0 - 163 -2 142 -2 120 0 c 0 - 111 0 102 5 93 8 c 0 - 83 12 74 18 64 23 c 0 - 51 29 40 39 32 52 c 0 - 25 66 21 81 17 97 c 0xbc - 14 106 11 114 11 124 c 0 - 10 138 13 151 18 164 c 0 - 30 192 50 212 75 227 c 0 - 88 236 104 241 118 247 c 0 - 142 258 167 258 192 258 c 0 - 206 258 219 254 232 248 c 0 - 235 247 238 246 241 246 c 0 - 247 244 252 244 257 243 c 1 - 264 256 262 269 256 282 c 0 - 252 289 246 294 237 294 c 0 - 226 296 214 295 204 287 c 0 - 201 285 198 286 197 289 c 0 - 190 307 191 329 217 332 c 0 - 235 334 253 332 270 327 c 0 - 277 325 282 321 286 314 c 0 - 298 297 306 278 309 257 c 0 - 311 246 312 235 312 224 c 0 - 313 195 314 165 315 136 c 0 - 315 108 313 80 310 52 c 0 - 308 39 311 35 324 31 c 0 - 330 29 337 29 343 27 c 0 - 345 27 348 25 348 24 c 0 - 350 17 351 9 352 1 c 1x7c -256 129 m 2xbc - 256 142 255 154 256 167 c 0 - 257 176 253 181 246 185 c 0 - 237 190 229 196 220 201 c 0 - 218 202 217 203 215 203 c 0 - 204 207 192 214 179 214 c 0 - 162 215 145 215 128 208 c 0 - 119 205 111 200 103 194 c 0 - 92 187 81 179 73 168 c 0 - 58 148 53 127 60 102 c 0 - 62 92 70 85 78 78 c 0 - 83 73 89 68 94 64 c 0 - 103 56 113 49 126 49 c 0 - 128 49 130 48 133 47 c 0 - 142 45 151 41 160 41 c 0 - 175 40 190 41 204 47 c 0 - 221 54 235 64 249 74 c 0 - 255 78 256 83 256 90 c 2 - 256 129 l 2xbc -EndSplineSet -EndChar - -StartChar: R1 -Encoding: 65537 -1 189 -Width: 684 -GlyphClass: 2 -Flags: MW -HStem: -239 31 -9 21G 395 55 711 30 711 48<294 298> -VStem: 72 76<164 319 319 368> 436 64 -LayerCount: 2 -Fore -SplineSet -204 -10 m 1xee - 143 -10 83 -4 22 -9 c 1 - 22 -4 21 0 21 5 c 0 - 21 9 21 13 20 16 c 0 - 29 20 37 23 45 28 c 0 - 62 36 71 50 71 70 c 0 - 71 101 72 133 72 164 c 2 - 72 319 l 1 - 72 569 l 2 - 72 598 71 627 69 656 c 0 - 69 669 64 682 57 693 c 0 - 51 703 41 707 31 711 c 0 - 27 713 21 714 16 715 c 0 - 12 716 10 717 11 722 c 2 - 11 741 l 1 - 23 742 36 743 48 744 c 0 - 55 744 62 744 69 743 c 0 - 79 742 89 741 99 741 c 0 - 118 739 136 740 155 744 c 0 - 158 744 162 744 166 745 c 2 - 171 745 l 1xf6 - 197 753 224 754 250 757 c 0 - 256 758 262 758 268 758 c 0 - 278 758 289 759 299 759 c 0 - 306 759 312 759 319 758 c 0 - 333 756 347 755 360 752 c 0 - 386 745 411 738 433 723 c 0 - 451 710 469 697 481 677 c 0 - 490 662 500 647 503 629 c 0 - 506 603 506 578 497 552 c 2 - 491 528 l 2 - 488 518 485 508 477 500 c 0 - 473 494 469 489 465 483 c 0 - 458 470 449 459 437 451 c 0 - 431 446 424 444 417 440 c 0 - 399 429 380 419 361 411 c 0 - 351 407 350 401 356 393 c 0 - 364 382 373 371 381 360 c 0 - 400 335 419 309 438 284 c 0 - 447 273 454 261 462 250 c 0 - 469 240 476 230 484 220 c 2 - 550 133 l 2 - 575 101 599 69 624 37 c 0 - 644 9 664 -18 686 -44 c 0 - 713 -78 741 -110 769 -143 c 0 - 782 -157 798 -169 815 -179 c 0 - 832 -189 849 -199 867 -205 c 0 - 875 -208 883 -209 891 -208 c 0 - 896 -208 900 -208 906 -207 c 1 - 907 -214 907 -221 908 -228 c 1 - 898 -235 887 -237 875 -239 c 0 - 842 -246 812 -234 784 -218 c 0 - 777 -213 771 -207 764 -202 c 0 - 761 -200 758 -197 755 -194 c 0 - 735 -182 719 -167 706 -149 c 0 - 699 -139 690 -131 682 -122 c 0 - 667 -106 652 -89 637 -72 c 0 - 628 -61 618 -51 609 -40 c 0 - 601 -32 594 -23 587 -14 c 0 - 576 0 564 14 553 28 c 0 - 539 46 526 64 512 81 c 0 - 505 90 499 99 492 107 c 0 - 477 126 462 146 446 164 c 0 - 422 191 403 222 381 250 c 0 - 366 271 349 290 333 310 c 0 - 324 322 317 334 308 345 c 0 - 298 357 287 368 277 379 c 0 - 274 382 270 385 267 388 c 0 - 262 393 257 395 251 395 c 2 - 179 395 l 2 - 171 394 163 391 155 389 c 0 - 152 388 150 384 149 382 c 0 - 148 377 148 372 148 368 c 2 - 148 102 l 2 - 148 85 148 68 150 51 c 0 - 150 38 156 28 170 25 c 0 - 179 23 187 21 196 20 c 0 - 203 18 203 18 204 11 c 2 - 204 -10 l 1xee -157 609 m 1 - 155 609 l 1 - 155 549 l 2 - 154 524 153 499 152 475 c 0 - 152 466 156 460 163 457 c 0 - 168 456 173 455 178 453 c 0 - 193 449 208 448 223 450 c 0 - 233 451 243 451 253 452 c 0 - 257 453 261 453 265 453 c 0 - 278 455 291 457 304 461 c 0 - 320 465 337 467 352 473 c 0 - 371 480 388 488 405 499 c 0 - 407 501 410 503 411 505 c 0 - 416 513 422 522 426 530 c 0 - 437 555 441 581 436 608 c 0 - 433 623 427 636 422 650 c 0 - 415 668 400 680 382 686 c 0 - 367 692 353 699 337 704 c 0 - 324 708 311 711 298 711 c 0 - 272 713 246 711 220 711 c 0 - 213 711 205 709 197 708 c 0 - 188 708 179 705 170 702 c 0 - 159 698 154 687 154 675 c 0 - 154 653 156 631 157 609 c 1 -EndSplineSet -Kerns2: 190 -167 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: W1 -Encoding: 65538 -1 190 -Width: 971 -GlyphClass: 2 -Flags: MW -HStem: -13 21G -12 21G 709 36<925 928 925 925> 713 28<325 325> 716 29 -VStem: 10 153<692 743 692 743> 10 951<716 735 715 743 715 743> 837 124<681.5 735> -LayerCount: 2 -Fore -SplineSet -325 713 m 1x54 - 325 723 324 732 324 741 c 0 - 327 742 329 742 331 743 c 0 - 369 744 407 746 445 746 c 0 - 470 746 495 743 520 742 c 0 - 528 742 536 743 544 743 c 0 - 553 743 555 740 555 732 c 0 - 555 726 554 721 553 716 c 0 - 553 710 550 708 545 707 c 0 - 537 706 529 706 521 704 c 0 - 510 702 498 700 487 698 c 0 - 483 697 481 695 482 691 c 0 - 483 684 483 677 485 671 c 0x52 - 496 651 500 629 506 608 c 0 - 509 600 511 593 514 586 c 0 - 521 569 527 553 533 537 c 0 - 538 526 542 515 546 504 c 0 - 554 483 563 462 571 441 c 0 - 574 433 576 425 579 417 c 0 - 583 405 588 394 592 382 c 0 - 595 375 598 367 600 360 c 0 - 610 334 620 308 629 282 c 0 - 640 254 650 225 661 197 c 0 - 663 193 664 190 665 185 c 1 - 671 187 676 190 678 196 c 2 - 714 298 l 2 - 726 331 738 364 749 397 c 0 - 766 447 783 498 800 549 c 0 - 806 565 813 581 818 598 c 0 - 824 613 830 629 833 644 c 0 - 836 659 837 674 837 689 c 0 - 837 697 831 702 824 706 c 0 - 814 710 803 712 793 712 c 2 - 772 715 l 1 - 772 740 l 1 - 773 740 775 741 776 741 c 0 - 798 742 819 744 841 745 c 0 - 849 745 857 743 865 743 c 0 - 879 743 892 744 906 745 c 2 - 952 745 l 2 - 959 745 961 743 961 735 c 2 - 961 715 l 1 - 928 709 l 1 - 925 709 l 2 - 908 708 901 702 896 686 c 0 - 893 677 890 667 887 658 c 0 - 871 613 855 567 840 522 c 0 - 830 490 820 459 810 427 c 0 - 805 410 799 394 794 377 c 0 - 778 327 763 277 748 227 c 0 - 740 203 732 178 724 154 c 0 - 709 108 694 63 679 18 c 0 - 676 9 673 0 670 -8 c 0 - 668 -13 665 -15 661 -13 c 0 - 655 -10 649 -7 645 0 c 0 - 637 17 628 33 619 49 c 0 - 618 52 617 54 616 57 c 0xa1 - 607 78 599 99 590 120 c 0 - 582 140 573 159 566 179 c 0 - 560 193 556 207 551 221 c 0 - 543 243 536 265 529 286 c 0 - 521 312 512 337 503 362 c 0 - 502 364 501 367 500 369 c 0 - 495 369 495 365 494 362 c 0 - 484 329 474 296 466 263 c 0 - 456 224 444 186 433 148 c 0 - 433 147 433 146 432 145 c 0 - 421 120 414 93 406 67 c 0 - 401 51 397 35 392 19 c 2 - 383 -5 l 2 - 381 -8 378 -13 374 -12 c 0 - 369 -11 364 -10 361 -5 c 0 - 354 8 348 21 341 33 c 0 - 327 57 314 81 301 105 c 0 - 299 111 297 118 294 123 c 0 - 285 144 275 164 266 184 c 0 - 259 200 251 216 245 232 c 0 - 228 276 212 320 193 363 c 0 - 182 388 173 414 163 439 c 0 - 149 473 135 506 121 539 c 0 - 109 570 96 601 84 631 c 0 - 77 648 70 666 63 683 c 0 - 61 689 57 695 54 701 c 0 - 50 707 45 710 39 712 c 0 - 30 714 20 715 10 716 c 1 - 10 743 l 1 - 14 743 l 2 - 35 744 56 745 77 745 c 2 - 124 745 l 2 - 135 744 147 743 159 743 c 0 - 169 743 179 744 189 745 c 2 - 191 745 l 2 - 209 748 212 745 212 728 c 0 - 212 726 212 724 211 722 c 0 - 206 721 201 721 196 720 c 0 - 191 719 187 719 182 718 c 0 - 170 714 163 705 163 692 c 0 - 162 668 163 645 173 623 c 0x4c - 183 601 190 579 195 555 c 0 - 198 543 202 532 206 520 c 0 - 222 473 241 428 263 383 c 0 - 277 354 289 324 302 294 c 0 - 312 273 321 252 330 231 c 0 - 341 206 350 182 360 157 c 0 - 361 155 363 152 365 150 c 0 - 371 146 375 147 380 153 c 0 - 386 161 390 169 393 179 c 0 - 402 203 411 227 417 253 c 0 - 421 267 427 280 431 295 c 0 - 442 338 454 382 469 424 c 0 - 473 435 472 444 468 455 c 0 - 461 475 454 496 447 517 c 0 - 439 542 432 567 423 592 c 0 - 415 617 407 643 399 668 c 1 - 399 669 l 1 - 392 695 372 706 348 711 c 0 - 341 712 333 712 325 713 c 1x54 -EndSplineSet -EndChar - -StartChar: K1 -Encoding: 65539 -1 191 -Width: 676 -GlyphClass: 2 -Flags: MW -HStem: -9 41 718 24 726 20<174 183 183 183> -VStem: 74 58<265 390 390 392> 348 166 -LayerCount: 2 -Fore -SplineSet -348 724 m 1xb8 - 348 738 l 2 - 348 742 350 744 354 744 c 0 - 361 744 369 743 376 743 c 0 - 387 742 396 742 407 742 c 2 - 510 742 l 2 - 511 742 513 741 515 741 c 1 - 514 733 514 726 513 718 c 1 - 502 715 490 712 478 710 c 0 - 464 708 452 702 441 691 c 0 - 420 669 398 647 376 626 c 0xd8 - 359 609 341 594 322 580 c 0 - 311 572 301 562 291 552 c 0 - 281 541 278 528 283 514 c 0 - 292 492 300 470 308 448 c 0 - 309 447 310 445 310 444 c 0 - 335 398 359 352 384 307 c 0 - 399 279 414 251 430 223 c 0 - 444 199 459 175 474 151 c 0 - 481 138 488 125 496 113 c 0 - 505 101 513 89 521 76 c 0 - 530 62 545 53 559 45 c 0 - 565 42 570 39 576 37 c 0 - 599 27 618 32 635 51 c 0 - 640 56 645 62 650 68 c 1 - 655 64 660 59 665 55 c 0 - 666 54 666 50 665 49 c 0 - 660 42 656 34 650 28 c 0 - 641 19 632 10 622 3 c 0 - 609 -7 593 -10 577 -9 c 0 - 566 -8 556 -6 545 -3 c 0 - 530 0 517 7 507 20 c 0 - 494 36 479 51 467 67 c 0 - 458 78 449 90 442 102 c 0 - 427 128 412 154 397 179 c 0 - 382 203 368 226 353 250 c 0 - 346 262 339 275 331 287 c 0 - 330 290 328 293 326 295 c 0 - 308 319 294 347 279 372 c 0 - 274 381 270 391 266 400 c 0 - 256 421 247 442 237 463 c 0 - 235 469 232 474 229 480 c 0 - 226 485 221 486 216 482 c 0 - 195 466 173 450 152 433 c 0 - 147 430 144 425 140 421 c 0 - 132 413 132 402 132 392 c 2 - 132 225 l 1 - 132 182 l 2 - 133 140 133 98 134 55 c 0 - 134 52 134 48 135 44 c 0 - 138 34 143 27 153 23 c 0 - 160 21 166 19 173 17 c 0 - 178 16 180 14 180 9 c 0 - 179 4 180 -1 180 -7 c 1 - 11 -7 l 1 - 11 -3 10 1 11 5 c 0 - 12 7 15 10 17 11 c 0 - 28 15 39 21 47 31 c 0 - 52 37 57 43 61 50 c 0 - 64 55 66 60 67 66 c 0 - 68 81 70 97 70 112 c 0 - 71 163 73 214 74 265 c 2 - 74 390 l 2 - 74 413 72 436 72 458 c 0 - 72 497 74 536 74 575 c 0 - 75 603 74 632 74 660 c 0 - 75 694 53 712 25 714 c 0 - 23 714 21 715 18 715 c 1 - 18 741 l 1 - 26 741 33 743 41 743 c 0 - 85 744 130 745 174 746 c 2 - 183 746 l 1 - 184 739 184 732 185 726 c 1 - 179 724 173 722 168 721 c 0 - 159 718 152 714 146 707 c 0 - 145 706 144 705 143 705 c 0 - 131 697 131 686 132 673 c 2 - 132 666 l 2 - 133 623 133 581 134 538 c 0 - 134 524 133 509 132 495 c 2 - 132 488 l 1 - 135 490 137 491 139 492 c 0 - 150 500 162 508 174 517 c 0 - 194 532 214 547 235 562 c 0 - 259 579 279 598 300 618 c 0 - 307 624 313 629 320 635 c 0 - 322 636 324 637 325 639 c 0 - 339 653 353 668 367 682 c 0 - 373 688 375 695 375 702 c 0 - 375 713 368 720 358 722 c 0 - 355 723 353 723 348 724 c 1xb8 -EndSplineSet -Kerns2: 192 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: B1 -Encoding: 65540 -1 192 -Width: 613 -GlyphClass: 2 -Flags: MW -HStem: -7 38 706 46<184.5 253 211 237 237 242> 719 26<10 64> -VStem: 69 58<479 530 479 581 479 592> 70 61<238 297.5> 359 55 555 69 -LayerCount: 2 -Fore -SplineSet -31 -30 m 1xd6 - 27 -20 23 -11 19 -2 c 0 - 18 0 19 3 21 4 c 0 - 23 6 27 8 30 10 c 0 - 50 21 62 39 68 61 c 0 - 69 63 69 66 69 69 c 0 - 69 84 70 99 70 113 c 0 - 69 132 69 151 69 170 c 0 - 69 183 67 196 68 209 c 0 - 68 235 70 260 70 286 c 0 - 70 309 69 333 68 356 c 2 - 68 426 l 2 - 68 436 69 446 69 456 c 0 - 69 498 70 539 69 581 c 0 - 69 603 68 626 66 648 c 0 - 64 663 63 678 58 693 c 0 - 53 704 46 711 36 714 c 0 - 27 716 19 718 10 719 c 1 - 10 744 l 1 - 11 745 l 1xb6 - 64 745 l 1 - 65 745 l 1 - 86 738 107 741 128 742 c 0 - 156 743 183 750 211 752 c 0 - 225 753 239 752 253 752 c 0 - 265 751 277 751 289 746 c 0 - 296 744 304 744 312 742 c 0 - 331 737 351 730 368 718 c 0 - 389 702 403 681 410 655 c 0 - 415 638 414 621 414 604 c 0 - 414 592 409 581 403 572 c 0 - 396 562 399 553 412 550 c 0 - 437 543 460 529 483 518 c 0 - 485 517 487 516 488 515 c 0 - 502 503 517 492 531 480 c 0 - 534 478 537 474 539 471 c 0 - 552 456 566 442 576 425 c 0 - 590 404 608 384 613 358 c 0 - 613 357 613 356 614 355 c 0 - 628 327 625 296 624 266 c 0 - 622 248 619 230 615 212 c 0 - 611 194 604 177 595 161 c 0 - 583 138 568 117 551 98 c 0 - 543 89 533 81 525 73 c 0 - 510 60 493 49 476 38 c 0 - 469 35 462 31 455 27 c 0 - 424 11 391 -1 356 -5 c 0 - 331 -7 306 -10 281 -7 c 0 - 251 -3 222 0 193 2 c 0 - 162 4 131 7 100 2 c 0 - 83 0 67 -5 53 -16 c 0 - 47 -21 39 -25 31 -30 c 1xd6 -131 305 m 1xce - 129 305 l 1xd6 - 130 282 131 260 131 238 c 0 - 132 201 133 165 134 128 c 0 - 134 109 138 90 146 72 c 0 - 147 68 150 64 153 62 c 0 - 166 52 180 46 195 42 c 0 - 209 38 224 35 238 36 c 0 - 242 36 246 35 249 35 c 0 - 262 34 275 31 288 31 c 0 - 317 31 345 33 373 40 c 0 - 386 44 399 47 410 53 c 0 - 425 60 438 70 452 80 c 0 - 481 101 504 127 519 159 c 0 - 529 180 538 201 546 222 c 0 - 552 237 555 255 555 272 c 0 - 555 296 555 320 547 343 c 0 - 546 346 546 349 545 351 c 0 - 541 371 533 388 523 404 c 0 - 510 423 490 434 478 453 c 1 - 477 453 l 1 - 466 465 454 475 438 480 c 0 - 437 480 437 480 436 481 c 0 - 410 496 381 502 351 501 c 0 - 344 501 338 502 331 501 c 0 - 313 496 294 491 277 481 c 0 - 269 477 262 472 256 465 c 0 - 245 454 233 442 221 432 c 0 - 211 423 199 420 186 427 c 0 - 180 430 177 436 181 443 c 0 - 182 446 185 450 187 453 c 0 - 202 472 219 489 236 506 c 0 - 255 524 279 533 303 541 c 0 - 313 545 324 548 334 552 c 0 - 345 556 352 564 355 574 c 0 - 360 585 360 597 359 609 c 0 - 357 630 353 650 337 665 c 0 - 335 667 334 669 332 670 c 0 - 329 673 326 676 323 678 c 0 - 311 684 301 694 287 696 c 0 - 286 696 285 697 284 697 c 2 - 242 706 l 2 - 240 707 238 706 237 706 c 2 - 194 706 l 2 - 175 706 156 705 138 698 c 0 - 132 696 130 694 130 689 c 0xce - 129 666 126 643 126 620 c 0 - 125 590 126 560 127 530 c 2 - 127 479 l 2xd6 - 128 447 130 415 131 384 c 2 - 131 305 l 1xce -EndSplineSet -Kerns2: 193 -57 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: A1 -Encoding: 65541 -1 193 -Width: 702 -GlyphClass: 2 -Flags: MW -HStem: -13 25 -7 22<12 12 691 691> 311 43<432 449.5> -VStem: 11 681 13 153 571 120 -LayerCount: 2 -Fore -SplineSet -298 1047 m 2x70 - 299 1045 299 1042 300 1040 c 0 - 314 1002 328 963 342 925 c 0 - 351 904 360 883 368 862 c 0 - 370 858 372 854 373 849 c 0 - 385 811 397 772 410 734 c 0 - 417 713 425 692 431 671 c 0 - 444 625 462 580 473 533 c 0 - 477 514 483 496 489 478 c 0 - 501 439 513 400 526 361 c 0 - 536 331 548 301 558 271 c 0 - 570 231 581 191 594 151 c 0 - 603 123 613 97 624 70 c 0 - 629 59 637 49 644 39 c 0 - 651 31 660 25 671 21 c 0 - 677 19 683 17 690 15 c 1 - 693 8 692 1 691 -7 c 0 - 689 -8 687 -9 685 -9 c 0x64 - 680 -10 676 -10 671 -10 c 0 - 628 -11 585 -13 542 -13 c 0 - 537 -14 533 -13 528 -13 c 0 - 521 -11 519 -8 519 -1 c 0xa4 - 519 3 519 7 520 12 c 1 - 531 16 542 19 553 23 c 0 - 567 28 571 32 571 46 c 0 - 572 51 571 57 569 61 c 0 - 566 74 562 88 556 100 c 0 - 543 133 534 166 523 200 c 0 - 518 214 513 227 507 241 c 0 - 501 257 495 274 489 290 c 0 - 487 293 486 297 485 300 c 0 - 483 306 479 309 473 310 c 0 - 463 310 454 311 445 311 c 0 - 419 311 393 310 366 310 c 0 - 325 309 285 309 244 309 c 0 - 229 309 229 308 223 295 c 0 - 219 285 215 274 210 264 c 0 - 190 222 172 179 158 135 c 0 - 151 116 144 97 138 78 c 2 - 132 54 l 2 - 130 45 133 38 140 32 c 0 - 148 26 156 20 166 13 c 1 - 166 -5 l 1 - 157 -7 26 -8 12 -7 c 1 - 9 0 11 7 13 15 c 1 - 21 18 29 22 37 26 c 0 - 48 30 55 38 61 47 c 0 - 76 72 85 100 95 126 c 0x6c - 120 190 145 253 172 315 c 0 - 193 361 211 408 231 454 c 0 - 241 479 251 503 262 528 c 0 - 277 561 292 595 306 629 c 0 - 314 647 321 666 329 684 c 0 - 330 686 330 688 330 690 c 0 - 333 729 331 767 319 804 c 0 - 311 829 305 853 297 878 c 0 - 287 907 276 937 265 966 c 0 - 259 983 254 1000 247 1017 c 0 - 243 1027 243 1036 252 1044 c 0 - 254 1045 254 1046 255 1047 c 2 - 298 1047 l 2x70 -452 354 m 1 - 459 364 458 372 456 380 c 0 - 447 410 440 441 430 471 c 0 - 417 518 402 565 387 612 c 0 - 384 621 382 630 374 640 c 1 - 368 628 361 619 356 609 c 0 - 341 576 325 544 312 511 c 0 - 296 474 282 436 268 398 c 0 - 265 391 263 383 261 376 c 0 - 259 369 257 362 255 353 c 1 - 263 352 271 352 278 352 c 0 - 294 352 311 354 328 354 c 2 - 432 354 l 1 - 452 354 l 1 -EndSplineSet -Kerns2: 194 19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: B2 -Encoding: 65542 -1 194 -Width: 604 -GlyphClass: 2 -Flags: MW -HStem: -10 48 -5 23 492 40 695 50<188 194 194 212> -VStem: 17 45<4.29497e+09 4.29497e+09> 83 60 86 60 342 61 529 64 -LayerCount: 2 -Fore -SplineSet -17 -4 m 1x7a80 - 17 18 l 2 - 20 20 23 21 27 22 c 0 - 41 27 55 32 67 41 c 0 - 72 45 75 49 76 55 c 0x7a80 - 77 62 79 69 80 77 c 0 - 82 139 85 201 86 264 c 0x7280 - 87 290 85 316 84 342 c 0 - 84 365 83 387 83 410 c 0 - 83 447 82 485 78 523 c 1 - 78 538 l 2 - 77 581 73 625 65 668 c 0 - 61 688 50 702 31 708 c 0 - 24 711 17 714 10 716 c 1 - 10 721 l 2 - 10 725 11 729 11 733 c 0 - 13 734 14 735 16 735 c 0 - 62 736 109 738 155 744 c 0 - 165 746 175 745 185 745 c 2 - 247 745 l 2 - 270 745 291 738 312 731 c 0 - 324 727 337 722 349 717 c 0 - 351 717 352 716 354 715 c 0 - 370 703 385 690 394 670 c 0 - 401 653 406 636 405 617 c 0 - 404 605 404 592 402 580 c 0 - 400 572 396 564 392 556 c 0 - 390 552 387 548 384 543 c 1 - 395 538 405 533 415 529 c 0 - 419 527 424 525 427 523 c 0 - 441 510 457 502 472 493 c 0 - 523 463 559 421 578 366 c 0 - 587 338 593 309 593 280 c 2 - 593 232 l 2 - 594 198 586 166 571 136 c 0 - 567 129 563 122 560 114 c 0 - 551 92 537 72 522 53 c 0 - 516 44 508 37 499 31 c 0 - 465 7 426 -5 384 -7 c 0x7580 - 349 -9 313 -9 278 -10 c 0 - 274 -11 269 -10 265 -11 c 0 - 239 -14 214 -12 188 -10 c 0 - 184 -10 180 -9 176 -9 c 0xb280 - 158 -7 139 -5 121 -5 c 0 - 103 -4 84 -1 67 -4 c 0 - 65 -5 63 -4 62 -5 c 0 - 48 -9 33 -7 17 -4 c 1x7a80 -145 486 m 1xb280 - 144 480 144 474 144 469 c 0 - 144 441 146 414 146 386 c 0 - 147 340 146 294 146 247 c 2 - 143 91 l 2 - 143 85 144 80 145 74 c 0 - 147 65 152 57 161 53 c 0 - 167 50 173 47 180 46 c 0 - 202 42 223 37 246 38 c 2 - 298 38 l 1 - 316 38 l 2 - 319 38 321 36 324 37 c 0 - 334 41 345 39 356 40 c 0 - 366 41 377 42 386 43 c 0 - 396 45 406 49 415 51 c 0 - 446 60 471 77 487 105 c 0 - 489 108 492 111 493 114 c 0 - 505 129 513 146 518 165 c 0 - 525 190 528 215 529 241 c 0 - 531 266 531 291 523 315 c 0 - 519 331 513 347 507 362 c 0 - 504 370 501 378 497 384 c 0 - 483 400 468 415 453 431 c 0 - 452 432 451 433 449 434 c 0 - 425 448 401 465 374 474 c 0 - 355 480 336 488 316 492 c 0 - 294 495 270 498 247 496 c 0 - 218 494 189 491 160 489 c 2 - 145 486 l 1xb280 -143 533 m 1xb580 - 176 533 208 534 240 535 c 0 - 261 536 282 540 301 549 c 0 - 329 563 343 577 342 607 c 2 - 342 615 l 2 - 342 635 333 652 320 666 c 0 - 311 676 298 681 285 686 c 0 - 261 694 237 695 212 695 c 2 - 194 695 l 2 - 182 695 151 691 139 686 c 1 - 141 636 142 585 143 533 c 1xb580 -EndSplineSet -Kerns2: 195 23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: C1 -Encoding: 65543 -1 195 -Width: 774 -GlyphClass: 2 -Flags: MW -HStem: -14 42 -VStem: 11 59 -LayerCount: 2 -Fore -SplineSet -717 559 m 1 - 709 558 703 556 696 555 c 1 - 694 564 692 571 690 578 c 0 - 682 609 664 634 641 655 c 0 - 628 667 611 675 593 680 c 0 - 574 686 556 692 537 696 c 0 - 510 703 482 708 454 706 c 0 - 422 705 391 701 359 697 c 0 - 316 692 279 672 244 649 c 2 - 196 616 l 2 - 175 601 158 581 142 560 c 0 - 138 555 135 549 130 544 c 0 - 115 525 104 503 96 481 c 0 - 87 460 80 438 74 415 c 0 - 71 404 71 392 70 380 c 0 - 67 328 77 278 98 230 c 0 - 108 206 122 184 138 163 c 0 - 139 161 141 159 143 157 c 0 - 154 137 172 124 189 110 c 0 - 193 107 198 104 203 101 c 0 - 207 99 212 97 215 94 c 0 - 224 86 235 81 246 76 c 0 - 263 68 279 59 296 53 c 0 - 318 46 340 42 362 38 c 0 - 381 35 399 32 418 30 c 0 - 427 29 436 29 446 29 c 0 - 457 28 469 29 481 28 c 0 - 495 27 510 30 523 34 c 0 - 544 41 564 48 583 56 c 0 - 618 71 645 94 668 124 c 0 - 681 142 693 162 706 181 c 0 - 713 191 720 200 728 208 c 0 - 736 217 748 219 757 213 c 0 - 761 211 763 208 764 203 c 0 - 764 185 763 168 754 151 c 0 - 745 133 735 116 721 102 c 0 - 712 94 705 86 697 78 c 0 - 693 73 688 68 682 65 c 0 - 657 48 631 32 605 15 c 0 - 592 7 577 2 562 0 c 0 - 555 -1 548 -3 541 -5 c 0 - 520 -11 498 -14 476 -14 c 0 - 458 -14 441 -14 424 -15 c 0 - 367 -17 312 -6 259 14 c 0 - 235 23 210 33 187 44 c 0 - 167 55 149 68 130 80 c 0 - 125 83 87 124 84 129 c 0 - 78 139 69 146 64 158 c 0 - 57 175 47 191 40 207 c 0 - 36 215 34 222 31 230 c 0 - 28 239 26 249 23 258 c 0 - 22 260 21 262 21 264 c 0 - 17 291 13 319 11 346 c 0 - 9 365 12 384 16 402 c 0 - 17 410 18 417 19 425 c 2 - 28 467 l 2 - 30 475 34 483 37 491 c 0 - 39 495 41 499 43 504 c 0 - 56 538 76 569 98 597 c 0 - 123 630 152 659 186 682 c 0 - 216 702 248 719 282 729 c 0 - 320 741 358 752 398 755 c 0 - 427 757 456 756 484 755 c 0 - 504 754 523 752 542 750 c 0 - 561 748 579 744 597 738 c 0 - 623 730 648 723 674 716 c 0 - 684 714 694 713 704 712 c 0 - 722 710 726 705 727 687 c 0 - 728 651 724 614 719 577 c 0 - 718 572 718 566 717 559 c 1 -EndSplineSet -EndChar - -StartChar: D1 -Encoding: 65544 -1 196 -Width: 723 -GlyphClass: 2 -Flags: MW -HStem: -10 53 -4 47 694 53<251 275 214 322> -VStem: 83 72<642 647.5> 85 64<335 401> -LayerCount: 2 -Fore -SplineSet -13 -8 m 1xb0 - 14 3 14 12 15 21 c 1 - 25 27 34 30 44 32 c 0 - 48 33 52 34 55 36 c 0 - 80 47 84 53 86 80 c 0 - 91 125 88 170 89 214 c 0 - 90 243 89 272 89 302 c 0 - 88 335 85 368 85 401 c 0 - 84 430 83 458 84 487 c 0 - 86 539 85 590 83 642 c 0 - 83 653 81 664 79 675 c 0 - 77 689 72 694 58 697 c 0 - 45 699 33 704 20 704 c 0 - 17 704 15 706 12 707 c 0 - 10 716 11 725 13 734 c 0 - 17 739 22 738 27 739 c 0 - 49 740 70 741 92 742 c 0 - 132 744 173 746 214 747 c 0 - 234 748 255 747 275 747 c 0 - 288 746 300 745 313 745 c 0 - 325 745 336 744 347 740 c 0 - 352 739 357 739 362 739 c 0 - 381 740 400 739 419 735 c 0 - 436 731 453 727 470 721 c 0 - 501 710 529 694 557 677 c 0 - 566 672 574 666 583 660 c 0 - 605 644 624 627 640 605 c 0 - 651 590 662 574 670 558 c 0 - 692 512 707 465 712 414 c 0 - 713 407 713 399 712 391 c 0 - 711 368 709 344 707 321 c 0 - 705 308 702 294 698 281 c 0 - 688 247 678 213 663 180 c 0 - 658 168 651 156 643 145 c 0 - 632 129 622 112 608 98 c 0 - 578 71 548 45 511 29 c 0 - 497 23 483 16 469 10 c 0 - 438 -3 406 -7 374 -10 c 0 - 343 -13 312 -11 282 -9 c 0xb0 - 256 -8 230 -6 204 -4 c 2 - 198 -4 l 1 - 175 -8 152 -2 130 -2 c 0 - 114 -2 98 -3 82 -4 c 0x70 - 73 -4 65 -5 56 -6 c 0 - 43 -7 29 -7 13 -8 c 1xb0 -163 692 m 1 - 156 682 155 671 155 661 c 0xb0 - 155 618 155 575 152 533 c 0 - 149 481 148 429 149 377 c 2 - 149 335 l 2xa8 - 151 303 152 271 153 239 c 0 - 155 186 157 133 158 81 c 0 - 158 76 158 72 159 67 c 0 - 160 60 165 56 172 55 c 0 - 190 52 208 50 226 48 c 0 - 253 46 280 44 307 43 c 0 - 327 42 346 43 365 48 c 2 - 395 54 l 2 - 439 61 481 74 518 103 c 0 - 541 121 563 140 578 165 c 0 - 584 177 592 188 598 199 c 0 - 611 226 623 253 629 282 c 0 - 638 333 642 384 638 435 c 0 - 636 459 629 483 621 505 c 0 - 612 529 598 550 584 571 c 0 - 573 586 562 602 547 612 c 0 - 511 635 475 658 432 668 c 0 - 429 669 426 671 423 672 c 0 - 390 686 357 692 322 694 c 0 - 298 694 275 693 251 694 c 0 - 232 695 213 694 194 693 c 0 - 183 693 173 692 163 692 c 1 -EndSplineSet -Kerns2: 197 -15 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: E1 -Encoding: 65545 -1 197 -Width: 501 -GlyphClass: 2 -Flags: MW -HStem: -3 24<13 13> -3 47 261 48 702 39 -VStem: 68 70<410.5 501> 433 23 434 15<221 221> 468 23<119 127.5> -LayerCount: 2 -Fore -SplineSet -470 135 m 0x7b - 477 136 483 136 490 136 c 1 - 490 129 491 124 491 119 c 0 - 490 87 489 55 488 24 c 0 - 488 15 486 7 481 -2 c 1 - 474 -2 466 -2 459 -3 c 0 - 447 -3 434 -4 422 -5 c 2 - 396 -5 l 2 - 379 -5 362 -3 345 -3 c 2 - 203 -3 l 2 - 181 -3 159 -2 137 -2 c 0 - 113 -2 88 -3 64 -3 c 2 - 13 -3 l 1x7b - 9 6 12 13 13 21 c 0 - 17 22 21 23 24 25 c 0 - 32 29 40 33 48 38 c 0 - 56 43 60 52 60 61 c 2 - 60 73 l 2 - 62 113 64 152 66 191 c 0 - 66 200 67 210 67 219 c 0 - 67 296 68 372 68 449 c 0 - 68 494 68 540 66 586 c 0 - 66 615 63 645 62 674 c 0 - 61 677 61 680 60 683 c 0 - 57 696 49 703 36 706 c 0 - 28 707 21 708 12 710 c 1 - 12 737 l 1 - 16 738 19 739 22 739 c 0 - 46 741 69 743 93 742 c 0 - 117 741 141 742 165 742 c 0 - 197 742 229 741 260 742 c 0 - 286 742 313 744 339 745 c 0 - 370 745 402 745 434 744 c 0 - 441 744 449 742 457 741 c 1 - 460 708 456 676 455 643 c 1 - 448 641 441 638 433 635 c 1 - 430 641 428 646 426 651 c 0 - 420 664 414 677 405 689 c 0 - 396 699 387 703 373 701 c 0xbc - 358 699 343 700 328 701 c 0 - 306 701 284 702 262 703 c 0 - 250 703 238 702 226 702 c 0 - 202 700 178 699 154 698 c 0 - 151 698 149 697 146 697 c 0 - 141 696 139 694 138 689 c 2 - 138 680 l 2 - 138 620 139 561 138 501 c 0 - 138 445 136 389 135 334 c 2 - 135 315 l 1 - 139 314 142 314 144 314 c 0 - 188 312 231 311 274 310 c 0 - 313 310 351 310 390 309 c 0 - 394 309 397 310 401 310 c 0 - 413 312 421 318 425 329 c 0 - 428 336 430 343 432 350 c 0 - 435 350 438 351 440 351 c 0 - 443 350 445 350 449 349 c 0 - 453 307 450 265 449 222 c 1 - 443 222 439 221 434 221 c 1 - 432 229 430 235 428 242 c 0 - 425 251 419 257 409 258 c 0x7a - 379 261 349 263 318 261 c 0 - 295 260 272 260 249 262 c 0 - 216 264 183 263 150 263 c 0 - 139 263 136 259 134 249 c 0 - 134 242 133 236 133 229 c 0 - 132 178 132 127 132 77 c 0 - 132 70 134 63 135 56 c 0 - 137 49 143 46 150 46 c 0 - 173 43 197 43 220 44 c 0 - 265 47 310 48 354 46 c 0 - 372 45 389 46 406 48 c 0 - 423 50 438 58 447 75 c 0 - 457 91 463 108 468 126 c 0 - 468 129 469 131 470 135 c 0x7b -EndSplineSet -Kerns2: 198 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: G1 -Encoding: 65546 -1 198 -Width: 913 -GlyphClass: 2 -Flags: MW -HStem: -21 53 -8 21G 317 52<609.5 669> 328 37<896 898> 715 54<421 516> -VStem: 10 69<328 343> 729 60 759 22 -LayerCount: 2 -Fore -SplineSet -527 326 m 1xae - 528 341 527 354 531 368 c 1 - 548 368 l 2 - 573 368 597 369 622 369 c 0 - 638 369 654 368 670 368 c 0 - 689 368 707 368 726 369 c 0 - 751 371 777 371 802 369 c 0 - 830 367 858 366 885 365 c 2 - 903 365 l 1xae - 901 352 900 340 898 328 c 0 - 894 328 891 327 888 326 c 0 - 872 325 857 324 841 323 c 0 - 826 322 813 318 803 306 c 0 - 798 301 796 295 795 288 c 0 - 793 252 789 215 789 179 c 0 - 788 148 789 118 790 88 c 0 - 792 62 808 43 827 29 c 0 - 834 23 842 19 850 14 c 1 - 846 6 841 -1 838 -8 c 1 - 827 -10 818 -8 809 -5 c 0 - 803 -2 797 0 791 3 c 0 - 772 12 755 24 745 43 c 0 - 740 50 734 57 727 65 c 1 - 722 63 717 62 713 60 c 0 - 696 51 680 41 664 32 c 0x5e - 623 10 581 -7 535 -14 c 0 - 512 -17 489 -21 466 -21 c 0 - 443 -22 419 -20 395 -19 c 0 - 381 -19 367 -17 353 -16 c 0 - 331 -15 309 -11 288 -6 c 0 - 263 0 238 8 215 21 c 0 - 203 27 193 35 182 42 c 0 - 167 51 152 60 139 73 c 0 - 127 86 114 98 101 111 c 0 - 87 127 73 144 61 162 c 0 - 49 182 38 203 32 226 c 0 - 24 253 18 281 12 308 c 0 - 10 316 10 324 10 332 c 0 - 11 387 21 440 38 492 c 0 - 43 506 46 520 51 534 c 0 - 66 576 89 612 122 642 c 0 - 150 668 180 689 214 708 c 0 - 233 718 252 728 273 734 c 0 - 296 741 320 748 344 754 c 0 - 353 757 363 760 373 761 c 0 - 392 764 411 768 430 769 c 0 - 458 770 487 770 516 769 c 0 - 544 768 571 762 598 755 c 0 - 621 750 641 742 663 736 c 0 - 666 735 668 734 670 733 c 0 - 692 718 718 715 741 703 c 0 - 746 700 750 701 754 704 c 0 - 758 708 762 711 766 714 c 0 - 774 718 781 715 781 706 c 0 - 782 694 781 682 781 670 c 0 - 781 631 781 592 782 554 c 0 - 782 544 783 534 784 523 c 1 - 775 520 768 518 759 515 c 1 - 757 523 754 529 753 536 c 0 - 748 561 735 583 723 605 c 0xad - 706 636 676 652 647 669 c 0 - 622 685 594 691 566 701 c 0 - 520 716 473 716 426 715 c 0 - 416 715 405 713 395 712 c 2 - 368 709 l 2 - 358 708 349 706 340 703 c 0 - 326 700 313 696 299 693 c 0 - 273 686 250 673 226 660 c 0 - 212 652 200 643 187 633 c 0 - 184 631 181 629 179 626 c 0 - 157 602 137 577 122 549 c 0 - 116 540 112 530 109 520 c 0 - 90 462 77 404 79 343 c 0 - 79 324 79 305 81 287 c 0 - 83 266 89 247 99 229 c 0 - 102 224 104 218 105 213 c 0 - 110 195 119 179 130 165 c 0 - 133 162 135 159 137 156 c 0 - 157 121 186 97 219 77 c 0 - 233 69 250 65 266 60 c 0 - 279 56 291 52 304 49 c 0 - 324 44 344 40 365 36 c 0 - 371 35 377 34 384 33 c 0 - 421 28 458 30 495 32 c 0 - 511 33 527 35 543 40 c 0 - 556 43 569 49 583 53 c 0 - 609 59 630 74 651 90 c 0 - 654 93 657 95 660 97 c 0 - 680 107 694 124 706 142 c 0 - 709 147 711 153 714 158 c 0 - 720 168 724 179 725 191 c 0 - 726 220 727 248 729 277 c 0 - 729 282 728 288 727 293 c 0 - 726 306 718 313 706 315 c 0 - 691 316 676 317 662 317 c 0 - 624 317 586 319 548 323 c 0 - 541 324 535 325 527 326 c 1xae -EndSplineSet -Kerns2: 199 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: H1 -Encoding: 65547 -1 199 -Width: 766 -GlyphClass: 2 -Flags: MW -HStem: -5 21G -1 31 237 64 711 35 722 21<741 741> -VStem: 80 64<215 237 304 306> 630 61<544 630.5> 633 71<91.5 95 91.5 107 91.5 107> -LayerCount: 2 -Fore -SplineSet -144 237 m 1x76 - 144 214 l 1 - 144 99 l 2 - 144 88 143 77 143 66 c 0 - 144 44 152 35 174 33 c 0 - 181 32 188 31 194 30 c 1 - 199 15 199 13 197 0 c 1x76 - 185 0 173 -1 160 -1 c 0xb6 - 135 -3 109 -4 83 -5 c 0 - 63 -6 43 -7 23 -2 c 0 - 23 2 22 5 22 9 c 2 - 22 24 l 1 - 28 30 34 29 40 30 c 0 - 48 32 57 34 64 38 c 0 - 74 42 78 50 79 60 c 0 - 83 112 80 164 80 215 c 2 - 80 264 l 1 - 80 428 l 2 - 80 479 78 530 73 580 c 0 - 72 598 72 615 72 633 c 0 - 72 646 71 660 66 673 c 0 - 61 687 53 699 37 703 c 0 - 28 706 19 709 10 713 c 1 - 10 737 l 2 - 12 738 13 739 15 739 c 0 - 44 741 73 744 102 743 c 0 - 130 743 158 743 186 745 c 0 - 188 745 191 745 194 744 c 0 - 196 735 195 725 194 716 c 0 - 190 711 183 711 178 710 c 2 - 166 707 l 2 - 144 704 134 685 134 666 c 0 - 133 656 135 645 135 635 c 0 - 135 590 135 545 136 501 c 0 - 136 480 138 460 139 440 c 0 - 140 424 141 408 141 392 c 0 - 142 366 143 340 143 314 c 0 - 143 311 144 308 144 304 c 0 - 150 303 154 303 159 303 c 0 - 195 302 232 302 268 301 c 0 - 294 301 319 299 345 297 c 2 - 351 297 l 2 - 379 298 408 299 436 300 c 0 - 448 301 459 302 471 302 c 0 - 492 304 513 305 534 307 c 2 - 603 313 l 2 - 617 315 622 320 624 333 c 0 - 629 360 629 387 629 415 c 0 - 630 484 630 552 630 621 c 0 - 630 640 629 658 628 677 c 0 - 627 692 617 708 597 709 c 0 - 589 710 582 711 574 711 c 1x76 - 573 719 573 726 572 733 c 0 - 572 735 572 738 573 740 c 0 - 596 746 720 748 741 743 c 1x6e - 741 722 l 2 - 738 721 734 719 731 718 c 0 - 727 717 722 716 718 715 c 0 - 705 711 697 702 696 687 c 0 - 696 682 695 676 695 671 c 0 - 694 633 692 596 691 558 c 2 - 691 544 l 2 - 690 498 690 451 690 404 c 0 - 691 374 693 345 695 315 c 0 - 695 299 696 283 696 267 c 0x76 - 697 234 699 200 701 166 c 0 - 702 143 703 119 704 95 c 0 - 704 88 704 81 705 74 c 0 - 706 51 716 40 738 34 c 0 - 743 32 748 32 753 30 c 1 - 754 20 755 11 756 2 c 1 - 741 -2 684 -2 585 2 c 1 - 581 9 583 16 583 25 c 1 - 587 26 591 28 595 29 c 0 - 617 36 633 57 633 80 c 2 - 633 107 l 2 - 631 146 629 184 628 223 c 0 - 627 227 628 230 627 234 c 0 - 625 242 621 244 613 244 c 0 - 607 243 601 243 595 243 c 0x75 - 567 246 540 242 512 240 c 0 - 468 236 424 235 380 234 c 0 - 358 234 337 233 315 233 c 0 - 267 234 219 236 170 237 c 2 - 144 237 l 1x76 -EndSplineSet -Kerns2: 200 28 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: K2 -Encoding: 65548 -1 200 -Width: 731 -GlyphClass: 2 -Flags: MW -HStem: -13 49 -5 29<23 31 23 24.5> -4 21G<56.5 62> 1 21G<187 188.5> 716 33<181 204> 722 24 722 30<528 579 528 579> -VStem: 77 62<406.5 480> 82 60 -LayerCount: 2 -Fore -SplineSet -636 50 m 1x83 - 640 45 643 43 646 39 c 1 - 642 30 636 24 630 19 c 0 - 626 16 622 14 619 10 c 0 - 592 -13 561 -18 527 -8 c 0 - 492 2 460 18 435 46 c 0 - 417 66 398 84 382 105 c 0x83 - 371 119 359 131 347 144 c 0 - 340 152 333 160 327 168 c 0 - 296 205 267 243 240 283 c 0 - 234 293 225 302 216 310 c 0 - 213 314 208 316 203 319 c 1 - 199 316 197 315 194 313 c 0 - 181 304 168 296 155 288 c 0 - 149 284 146 280 146 273 c 0 - 147 270 146 266 146 262 c 0 - 145 232 143 201 142 171 c 0 - 141 139 141 108 141 76 c 0 - 141 70 142 63 144 57 c 0 - 147 49 151 42 160 39 c 0 - 172 34 184 28 197 22 c 0 - 199 17 198 10 197 2 c 0 - 193 2 190 1 187 1 c 0x1280 - 145 -1 103 -2 62 -4 c 0 - 51 -4 41 -5 31 -5 c 0 - 29 -6 26 -5 23 -5 c 1x2280 - 23 24 l 1 - 27 25 31 26 36 27 c 0 - 44 29 52 31 61 33 c 0 - 73 37 79 46 79 58 c 0 - 78 66 78 74 79 81 c 0 - 84 135 84 189 82 243 c 0 - 81 272 81 300 80 329 c 0 - 79 360 77 391 77 422 c 0 - 77 462 78 501 80 541 c 0 - 81 589 81 637 75 684 c 0 - 73 701 62 712 46 715 c 0 - 35 718 23 720 12 722 c 1 - 9 730 11 737 12 744 c 1x45 - 25 747 37 748 50 749 c 0 - 64 750 79 751 94 751 c 0 - 104 752 114 751 125 751 c 0 - 146 750 168 749 190 749 c 2 - 204 749 l 1 - 207 739 207 730 205 720 c 1 - 197 718 189 716 181 716 c 0 - 155 714 144 704 140 676 c 0 - 139 672 139 668 139 664 c 2x89 - 139 545 l 2 - 139 523 138 502 139 480 c 0 - 139 443 140 405 141 367 c 0 - 141 361 141 355 149 352 c 0 - 152 353 155 355 158 357 c 0 - 179 375 200 392 222 409 c 0 - 225 412 229 415 233 418 c 0 - 253 433 273 449 293 464 c 0 - 309 476 325 488 340 501 c 0 - 370 527 399 553 429 578 c 0 - 466 607 501 638 540 665 c 0 - 551 672 561 681 572 690 c 0 - 577 694 582 698 581 705 c 0 - 580 713 573 716 567 718 c 0 - 558 720 550 721 541 722 c 0 - 537 723 534 722 528 722 c 1 - 529 731 529 739 530 748 c 1 - 540 751 549 752 559 752 c 0 - 599 752 638 752 678 751 c 0 - 688 751 698 752 707 752 c 0 - 711 752 714 751 718 751 c 0 - 722 741 720 732 719 722 c 0 - 715 721 712 720 709 719 c 0 - 684 716 662 708 642 691 c 0 - 621 673 599 655 577 638 c 0 - 539 609 504 578 469 546 c 0 - 458 535 446 527 434 517 c 0 - 423 509 413 501 403 492 c 0 - 383 476 363 460 343 445 c 0 - 329 434 315 424 302 413 c 0 - 291 403 279 394 269 383 c 0 - 261 376 261 370 267 360 c 0 - 287 329 306 298 329 270 c 0 - 357 237 384 204 411 171 c 0 - 422 158 431 144 442 131 c 0 - 459 112 476 93 493 75 c 0 - 498 70 504 65 509 61 c 0 - 538 37 572 30 608 36 c 0 - 619 38 628 42 636 50 c 1x83 -EndSplineSet -Kerns2: 201 29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: I1 -Encoding: 65549 -1 201 -Width: 211 -GlyphClass: 2 -Flags: MW -HStem: -3 21G<158 164.5> -3 27 -1 21G<198 198> 717 28 -VStem: 72 65 74 65 75 67<634 641 634 654 634 656 634 656> -LayerCount: 2 -Fore -SplineSet -12 714 m 0x34 - 11 716 10 719 10 721 c 2 - 10 742 l 1 - 14 743 17 743 21 744 c 0 - 50 744 79 744 107 745 c 0x34 - 136 747 164 744 193 745 c 0 - 194 745 196 744 199 744 c 0 - 201 735 200 726 199 717 c 1 - 193 715 187 714 182 712 c 0 - 174 709 167 707 160 704 c 0 - 149 698 143 689 143 676 c 0x32 - 142 662 142 648 142 634 c 0 - 141 593 142 552 141 511 c 0x34 - 140 474 140 437 138 400 c 0 - 133 324 136 248 137 172 c 0x38 - 137 136 141 101 143 65 c 0 - 143 49 152 39 166 33 c 0 - 172 30 179 29 185 28 c 0 - 189 27 193 26 198 24 c 1x52 - 198 -1 l 1x32 - 184 -2 171 -3 158 -3 c 0 - 122 -4 86 -5 50 -5 c 0x92 - 40 -5 29 -4 19 -3 c 0 - 19 0 18 3 18 5 c 0 - 18 16 20 19 30 24 c 0 - 34 25 37 27 41 28 c 0 - 56 32 64 43 68 57 c 0 - 70 64 72 72 72 79 c 0x38 - 76 143 80 206 76 270 c 0 - 75 291 76 313 76 335 c 0x34 - 75 399 75 463 74 528 c 0x38 - 74 550 75 573 75 596 c 2 - 75 654 l 1 - 75 656 l 2 - 74 684 64 698 37 706 c 0 - 29 709 21 711 12 714 c 0x34 -EndSplineSet -Kerns2: 202 -57 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: J1 -Encoding: 65550 -1 202 -Width: 303 -GlyphClass: 2 -Flags: MW -HStem: -246 41 712 30<264.5 273> -VStem: 170 61<412 532.5> -LayerCount: 2 -Fore -SplineSet --411 -111 m 1 - -403 -106 -395 -102 -388 -99 c 0 - -385 -98 -383 -97 -380 -97 c 2 - -377 -100 l 1 - -362 -122 -342 -139 -321 -154 c 0 - -310 -163 -296 -168 -283 -174 c 0 - -270 -180 -256 -185 -242 -191 c 0 - -220 -201 -197 -202 -174 -204 c 0 - -173 -204 -171 -204 -170 -205 c 0 - -126 -210 -86 -199 -47 -182 c 0 - -14 -169 14 -150 40 -125 c 0 - 69 -98 89 -65 111 -32 c 0 - 124 -12 134 10 138 34 c 2 - 141 43 l 2 - 155 81 161 120 163 161 c 0 - 166 211 167 262 169 313 c 0 - 170 328 168 344 168 359 c 0 - 168 377 169 395 170 412 c 0 - 170 491 171 569 172 647 c 2 - 172 679 l 2 - 172 696 161 705 147 711 c 0 - 141 713 134 714 127 715 c 0 - 124 715 120 715 116 716 c 0 - 115 724 115 732 114 739 c 1 - 121 743 127 742 133 742 c 2 - 241 742 l 2 - 254 741 267 742 279 742 c 0 - 283 742 286 741 291 740 c 1 - 291 732 292 724 293 717 c 1 - 285 713 277 712 269 712 c 0 - 260 712 251 710 243 705 c 0 - 234 701 230 694 230 683 c 0 - 231 623 231 563 231 502 c 0 - 230 451 228 401 227 350 c 0 - 226 305 225 261 222 216 c 0 - 219 171 215 126 209 81 c 0 - 201 29 184 -21 153 -65 c 0 - 148 -73 143 -81 139 -88 c 0 - 135 -93 132 -99 128 -103 c 0 - 102 -136 75 -167 39 -191 c 0 - 6 -213 -30 -231 -70 -239 c 0 - -108 -247 -146 -250 -185 -246 c 0 - -213 -243 -239 -237 -265 -230 c 0 - -280 -227 -294 -220 -308 -212 c 0 - -345 -190 -378 -162 -403 -126 c 0 - -406 -121 -408 -116 -411 -111 c 1 -EndSplineSet -Kerns2: 203 29 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: L1 -Encoding: 65551 -1 203 -Width: 566 -GlyphClass: 2 -Flags: MW -HStem: -9 43 -7 41<207 259> -6 22 -3 21G<516 519.5> 721 22<16 187> -VStem: 60 65 63 63 512 12 519 36 -LayerCount: 2 -Fore -SplineSet -524 118 m 1x8b - 548 106 557 90 555 65 c 0x8a80 - 553 43 544 23 532 5 c 0 - 528 0 523 -3 516 -3 c 0x1a80 - 500 -4 483 -5 466 -6 c 0 - 420 -7 373 -8 327 -9 c 0 - 290 -9 253 -7 216 -7 c 0 - 198 -7 179 -8 160 -8 c 0x8a80 - 130 -8 100 -7 71 -7 c 0 - 57 -6 43 -6 29 -6 c 2 - 13 -6 l 1x4b - 10 1 10 7 12 14 c 1 - 17 15 22 17 27 18 c 0 - 37 21 46 26 54 34 c 0 - 57 38 60 42 60 47 c 0 - 59 56 60 64 60 72 c 0x2d - 60 149 60 226 61 302 c 0 - 62 368 63 434 65 500 c 0 - 66 542 68 584 69 626 c 0 - 69 646 68 667 68 688 c 0 - 68 697 65 703 57 706 c 0 - 48 710 40 713 31 717 c 0 - 26 718 21 719 16 721 c 1 - 16 743 l 1 - 36 747 167 747 187 743 c 1 - 187 723 l 1 - 176 719 166 716 157 711 c 0 - 152 710 149 707 145 704 c 0 - 136 698 133 690 132 679 c 0 - 126 602 126 524 126 447 c 0 - 126 368 125 290 125 211 c 0 - 126 173 127 134 128 96 c 0 - 128 80 132 66 141 53 c 0 - 148 43 158 36 171 36 c 0 - 183 35 195 36 207 36 c 0 - 215 36 223 35 231 35 c 0 - 235 35 239 34 243 34 c 0 - 275 34 306 30 337 32 c 0 - 366 34 395 33 424 34 c 0 - 434 34 443 35 453 36 c 0 - 463 37 473 39 483 40 c 0 - 499 42 511 50 516 66 c 0 - 520 76 519 85 515 94 c 0 - 510 107 511 109 524 118 c 1x8b -EndSplineSet -Kerns2: 204 -200 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: P1 -Encoding: 65552 -1 204 -Width: 827 -GlyphClass: 2 -Flags: MW -HStem: -2 29<435 435> 193 45 461 24 701 48<417 479> 714 38<239 293.5> -VStem: 10 48 320 62<423.5 431 431 438> 762 55 -LayerCount: 2 -Fore -SplineSet -435 27 m 1xf7 - 437 18 437 9 435 -2 c 1 - 416 -5 398 -1 379 -2 c 0 - 360 -3 341 -4 321 -4 c 0 - 302 -4 284 -3 265 -2 c 1 - 261 7 264 14 265 22 c 1 - 276 26 286 29 297 33 c 0 - 306 37 312 43 313 53 c 0 - 315 63 317 72 317 82 c 0 - 318 111 317 140 317 169 c 0 - 318 218 318 266 320 315 c 0 - 322 354 322 392 320 431 c 0 - 320 445 322 460 322 475 c 0 - 322 524 322 573 323 623 c 0 - 323 638 322 653 323 669 c 0 - 323 678 320 687 316 695 c 0 - 310 707 300 714 287 714 c 0 - 274 714 262 714 249 713 c 0 - 214 712 179 711 144 708 c 0 - 125 706 106 701 91 691 c 0 - 71 677 59 657 57 633 c 0 - 56 617 56 600 58 583 c 0 - 62 553 77 529 99 508 c 0 - 107 500 118 497 129 494 c 0 - 134 492 141 492 147 490 c 0 - 168 482 189 488 209 497 c 0 - 212 498 215 500 218 501 c 0 - 225 503 231 497 229 491 c 0 - 228 487 225 482 221 480 c 0 - 206 470 191 463 172 461 c 0 - 168 461 164 460 160 459 c 0 - 143 456 126 457 109 464 c 0 - 98 469 86 473 74 478 c 0 - 61 484 51 495 42 506 c 0 - 29 521 17 537 13 557 c 0 - 7 594 11 630 30 663 c 0 - 51 701 82 724 122 738 c 0 - 143 745 164 747 185 749 c 0 - 207 751 228 752 250 752 c 0xef - 269 752 288 752 306 749 c 0 - 331 746 356 746 381 747 c 0 - 408 748 436 750 463 749 c 0 - 495 749 526 747 557 742 c 0 - 565 741 573 741 582 740 c 0 - 620 735 655 723 688 702 c 0 - 712 688 733 672 750 650 c 0 - 775 618 795 582 804 541 c 0 - 807 525 812 509 814 493 c 0 - 821 443 815 394 793 347 c 0 - 776 313 752 284 722 260 c 0 - 703 245 684 230 662 220 c 0 - 636 208 609 198 581 196 c 0 - 570 196 559 193 549 193 c 0 - 532 191 515 194 499 197 c 0 - 482 199 465 201 448 205 c 0 - 435 208 423 211 412 217 c 0 - 401 224 392 234 392 249 c 0 - 392 253 392 258 393 262 c 0 - 396 276 405 283 419 284 c 0 - 425 284 429 281 433 278 c 0 - 457 251 489 243 522 238 c 0 - 547 235 572 238 596 246 c 0 - 609 250 621 254 634 258 c 0 - 657 265 676 278 693 294 c 0 - 718 316 734 342 746 372 c 2 - 746 372 746 373 747 374 c 0 - 761 396 764 421 762 446 c 0 - 760 470 760 494 756 518 c 0 - 751 553 736 584 711 611 c 0 - 690 634 663 651 635 666 c 0 - 606 683 574 692 540 697 c 0 - 531 698 521 700 512 702 c 0 - 481 706 451 704 421 701 c 0 - 413 701 406 699 399 696 c 0 - 386 691 380 681 380 667 c 0 - 381 602 382 536 382 471 c 0 - 382 376 380 282 379 187 c 0 - 378 146 378 105 377 64 c 0 - 377 48 381 42 396 37 c 0 - 409 33 421 30 435 27 c 1xf7 -EndSplineSet -Kerns2: 205 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: M1 -Encoding: 65553 -1 205 -Width: 778 -GlyphClass: 2 -Flags: MW -HStem: -14 21G -14 131 -6 22<30 30 30 46 27 30> -VStem: 89 64<418 469.5 401 523 401 532> 628 63<72 438 402 404> -LayerCount: 2 -Fore -SplineSet -751 16 m 0x38 - 752 9 753 3 754 -4 c 1 - 750 -5 747 -6 743 -6 c 0 - 712 -6 681 -6 650 -5 c 0 - 631 -5 613 -4 594 -4 c 0 - 591 -4 588 -3 585 -3 c 0 - 579 16 585 28 601 35 c 0 - 606 37 611 39 615 42 c 0 - 623 47 627 55 628 64 c 2 - 628 72 l 1x38 - 628 389 l 2 - 628 419 627 450 627 481 c 0 - 627 483 626 486 626 487 c 0 - 621 490 619 487 618 483 c 0 - 612 469 607 454 601 440 c 0 - 588 410 576 381 563 351 c 0 - 546 309 529 266 512 224 c 0 - 501 197 490 171 475 146 c 0 - 473 143 471 138 469 134 c 0 - 455 102 440 69 426 37 c 0 - 420 23 413 10 407 -3 c 0 - 405 -6 402 -10 399 -11 c 0 - 389 -16 381 -15 374 -4 c 0 - 371 3 366 9 363 17 c 0x98 - 347 52 332 87 316 123 c 0 - 310 136 303 150 296 163 c 0 - 281 191 271 220 259 249 c 0 - 244 285 229 321 214 358 c 0 - 199 394 184 431 169 468 c 0 - 167 471 166 475 164 479 c 0 - 162 482 159 483 154 481 c 0 - 154 477 153 472 153 467 c 0 - 153 335 153 203 152 72 c 0 - 152 55 160 42 175 36 c 0 - 195 29 199 22 197 -1 c 0 - 193 -5 188 -4 183 -4 c 0 - 137 -5 91 -5 46 -6 c 2 - 27 -6 l 1 - 28 3 29 9 30 16 c 1 - 45 22 l 2 - 66 32 77 48 78 71 c 0x38 - 79 95 80 119 81 142 c 0 - 81 199 85 256 88 312 c 0 - 90 347 89 383 89 418 c 2 - 89 523 l 2 - 89 541 89 558 90 575 c 0 - 91 606 84 637 77 667 c 0 - 64 721 40 771 15 820 c 0 - 9 832 4 845 -3 857 c 0 - -7 866 -12 874 -18 882 c 0 - -25 891 -33 898 -44 899 c 0 - -52 900 -54 907 -49 913 c 0 - -44 920 -37 926 -30 931 c 0 - -18 939 -6 946 7 954 c 1 - 10 951 12 946 15 941 c 0 - 27 918 38 894 51 870 c 0 - 70 837 82 801 96 765 c 0 - 107 735 120 706 134 677 c 0 - 160 622 186 568 212 514 c 0 - 214 511 215 508 216 505 c 0 - 228 471 245 439 259 406 c 0 - 277 361 297 317 316 273 c 0 - 330 241 343 210 356 179 c 0 - 362 164 367 150 374 136 c 0 - 377 130 381 124 385 120 c 0 - 389 116 394 116 397 121 c 0 - 401 127 406 134 409 141 c 0x58 - 437 205 464 270 492 334 c 0 - 506 366 519 400 534 432 c 0 - 559 489 582 548 611 604 c 0 - 633 644 652 687 671 729 c 0 - 681 751 689 775 697 798 c 0 - 706 823 718 847 730 871 c 0 - 742 893 752 916 764 938 c 0 - 767 944 770 949 773 955 c 1 - 787 945 801 937 814 928 c 0 - 820 924 825 919 829 914 c 0 - 834 907 832 901 824 899 c 0 - 813 897 805 890 798 882 c 0 - 793 876 789 869 785 862 c 0 - 764 817 742 772 723 727 c 0 - 712 702 707 676 700 650 c 0 - 689 611 690 572 691 532 c 0 - 692 494 691 457 691 419 c 0 - 691 385 691 351 692 318 c 0 - 693 283 696 248 698 213 c 0 - 699 201 699 189 699 178 c 2 - 702 79 l 2 - 703 46 713 31 743 19 c 0 - 745 18 747 18 751 16 c 0x38 -EndSplineSet -EndChar - -StartChar: R2 -Encoding: 65554 -1 206 -Width: 862 -GlyphClass: 2 -Flags: MW -HStem: -33 50 -3 20 -2 31<184 199> 0 20 695 49 724 20<44 107> -VStem: 75 60 596 64 798 54 -LayerCount: 2 -Fore -SplineSet -852 58 m 2x8b80 - 851 57 850 56 850 54 c 0 - 846 25 827 8 803 -6 c 0 - 787 -16 770 -23 752 -28 c 0 - 738 -31 723 -33 708 -33 c 0 - 692 -33 675 -31 658 -29 c 0 - 618 -24 579 -11 542 5 c 0 - 506 21 471 38 437 60 c 0x8b80 - 430 64 422 68 415 72 c 0 - 390 86 367 100 344 116 c 0 - 332 125 319 133 305 140 c 0 - 277 153 248 166 219 179 c 0 - 213 182 206 185 198 188 c 1 - 200 199 203 209 205 221 c 0 - 209 221 213 222 217 221 c 0 - 262 220 307 223 352 229 c 0 - 375 232 397 238 419 242 c 0 - 456 248 490 264 520 285 c 0 - 531 293 541 303 550 314 c 0 - 591 361 605 416 596 478 c 0 - 593 498 587 518 582 538 c 0 - 575 570 556 593 532 614 c 0 - 528 618 523 621 519 625 c 0 - 496 648 468 662 438 674 c 0 - 425 679 412 682 398 684 c 0 - 365 689 331 694 297 694 c 0 - 276 694 256 696 235 697 c 0 - 204 699 173 698 142 694 c 0 - 134 693 125 685 125 676 c 0 - 124 653 122 630 123 608 c 0 - 123 584 126 561 127 538 c 0 - 133 479 131 421 132 362 c 0 - 133 282 134 203 135 123 c 0 - 135 113 135 102 134 91 c 0 - 133 80 136 69 138 58 c 0 - 141 50 145 44 153 42 c 0 - 165 38 177 34 189 31 c 0 - 192 30 195 29 199 29 c 0x2b80 - 200 20 200 11 201 3 c 1 - 196 -3 190 -2 184 -2 c 0 - 165 -3 146 -3 127 -3 c 0 - 98 -3 69 -2 40 -2 c 0x4b80 - 32 -2 23 -1 13 0 c 1 - 13 8 12 15 12 22 c 1 - 30 28 l 2 - 36 29 42 31 48 34 c 0 - 66 42 75 55 77 74 c 0 - 80 103 80 133 79 162 c 0 - 78 201 76 240 75 279 c 0 - 74 315 75 352 75 388 c 2 - 75 475 l 2 - 75 486 74 496 73 507 c 0 - 70 529 72 550 73 572 c 0 - 74 588 73 604 72 620 c 0 - 70 639 68 658 66 676 c 0 - 64 697 51 709 33 716 c 0 - 26 719 19 721 12 724 c 1x1780 - 9 730 11 737 12 745 c 1 - 23 746 33 745 44 744 c 0 - 65 742 86 740 107 744 c 0 - 117 746 127 745 136 745 c 0 - 178 745 221 744 264 745 c 0 - 295 746 325 745 356 743 c 0 - 374 741 392 739 410 736 c 0 - 435 732 459 725 482 712 c 0 - 502 700 523 691 543 680 c 0 - 591 652 626 613 643 560 c 0 - 650 538 654 516 657 493 c 0 - 662 468 660 443 660 418 c 0 - 659 391 653 366 640 344 c 0 - 615 301 586 262 547 232 c 0 - 529 218 511 207 489 200 c 0 - 464 191 438 185 412 179 c 0 - 403 177 394 178 386 177 c 0 - 382 177 378 176 372 175 c 1 - 375 172 376 170 378 168 c 0 - 428 133 479 100 532 68 c 0 - 546 60 562 53 577 47 c 0x1b80 - 607 35 638 25 670 20 c 0 - 704 14 737 18 766 37 c 0 - 790 52 803 75 798 104 c 0 - 796 116 790 125 781 134 c 0 - 776 138 770 143 764 148 c 1 - 766 156 770 164 775 171 c 1 - 791 169 804 163 816 154 c 0 - 827 145 837 135 843 122 c 0 - 846 117 847 112 849 107 c 2 - 852 98 l 1 - 852 58 l 2x8b80 -EndSplineSet -Kerns2: 207 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: F1 -Encoding: 65555 -1 207 -Width: 493 -GlyphClass: 2 -Flags: MW -HStem: -6 31<188 189 188 198> 200 46 693 52<183 226 208 226 208 353> 716 25 -VStem: 78 64 -LayerCount: 2 -Fore -SplineSet -140 260 m 1xe8 - 149 260 l 1 - 183 264 216 259 249 252 c 0 - 260 250 272 249 284 248 c 0 - 299 247 313 246 328 246 c 0 - 355 244 382 245 408 251 c 0 - 418 253 425 259 432 265 c 0 - 441 272 441 272 453 265 c 1 - 450 248 442 232 432 218 c 0 - 428 212 420 208 414 206 c 0 - 400 201 386 198 372 200 c 0 - 348 201 325 202 302 205 c 0 - 284 207 267 208 250 208 c 0 - 244 208 237 209 230 209 c 2 - 196 209 l 2 - 190 209 184 208 179 208 c 0 - 171 207 163 207 155 205 c 0 - 145 202 142 198 142 187 c 0 - 141 165 141 143 141 121 c 0 - 140 109 140 97 140 86 c 0 - 140 72 141 59 143 46 c 0 - 145 36 154 32 163 29 c 0 - 171 27 180 26 188 25 c 0 - 190 25 193 24 197 23 c 0 - 200 14 200 5 198 -6 c 1 - 168 -6 138 -5 107 -4 c 0 - 78 -4 48 -7 17 -3 c 1 - 17 20 l 1 - 26 23 35 25 43 28 c 0 - 61 34 71 46 72 66 c 0 - 73 91 74 117 75 142 c 0 - 76 160 77 178 77 196 c 2 - 77 246 l 2 - 77 258 78 269 78 280 c 0 - 78 323 78 366 77 409 c 0 - 77 445 76 481 76 516 c 0 - 76 535 78 554 80 572 c 0 - 80 574 81 577 81 580 c 0 - 80 612 80 645 74 677 c 0 - 72 691 64 701 52 706 c 0 - 44 709 37 711 29 713 c 0 - 24 714 19 715 13 716 c 1 - 10 724 10 732 13 740 c 1 - 23 743 32 741 41 741 c 0 - 53 740 64 739 76 740 c 0xd8 - 100 741 123 743 146 744 c 0 - 167 745 188 744 208 745 c 0 - 244 745 280 746 315 747 c 2 - 380 747 l 2 - 388 747 396 745 405 745 c 2 - 459 745 l 1 - 468 745 l 2 - 476 744 480 741 480 732 c 0 - 481 722 481 711 481 701 c 0 - 482 683 482 666 483 648 c 2 - 483 638 l 1 - 476 635 470 631 462 627 c 1 - 458 634 458 641 455 647 c 0 - 452 657 448 666 444 675 c 0 - 439 684 432 690 422 690 c 0 - 399 691 376 693 353 693 c 2 - 188 693 l 2 - 178 693 168 693 157 692 c 0 - 148 691 146 689 146 680 c 0 - 145 665 145 651 145 636 c 0 - 144 582 142 528 142 474 c 2 - 142 322 l 2 - 142 304 141 286 140 267 c 2 - 140 260 l 1xe8 -EndSplineSet -Kerns2: 208 -52 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: N1 -Encoding: 65556 -1 208 -Width: 787 -GlyphClass: 2 -Flags: MW -HStem: -4 25 -2 21G<274 274> 730 20<612 695> -VStem: 167 56<324 471> 676 49 -LayerCount: 2 -Fore -SplineSet -231 568 m 1xb8 - 226 561 226 555 226 548 c 0 - 225 522 223 496 223 471 c 0 - 222 444 223 417 223 391 c 0 - 222 339 221 286 220 234 c 0 - 219 179 218 123 217 68 c 2 - 217 57 l 2 - 218 44 226 33 239 30 c 2 - 263 24 l 2 - 267 23 270 22 274 21 c 1 - 274 -2 l 1 - 248 -5 222 -2 195 -4 c 0 - 169 -6 143 -5 115 -5 c 1xb8 - 115 4 114 10 114 18 c 1 - 118 20 123 21 126 23 c 0 - 135 27 143 29 151 34 c 0 - 161 39 168 47 168 60 c 0x78 - 168 81 169 103 169 124 c 0 - 169 204 167 284 167 364 c 0 - 167 413 169 462 170 510 c 0 - 171 549 170 587 170 626 c 0 - 170 646 164 665 153 682 c 0 - 131 716 109 749 88 783 c 0 - 74 805 60 828 47 851 c 0 - 42 859 36 867 30 875 c 0 - 24 885 17 894 10 905 c 1 - 25 915 37 929 53 936 c 1 - 59 932 62 926 65 921 c 0 - 72 912 77 903 84 894 c 0 - 103 872 118 849 132 824 c 0 - 143 804 156 784 168 765 c 0 - 177 749 187 732 197 716 c 0 - 208 698 221 681 234 664 c 0 - 253 640 270 614 288 590 c 0 - 310 559 327 525 352 496 c 2 - 361 484 l 1 - 388 435 423 392 456 348 c 0 - 477 318 499 289 521 260 c 0 - 547 228 573 197 599 165 c 0 - 621 140 642 114 663 88 c 2 - 670 81 l 1 - 672 85 675 88 676 91 c 0 - 676 97 677 103 677 109 c 0 - 676 172 676 236 676 299 c 0 - 675 342 675 386 672 429 c 0 - 669 487 671 544 669 601 c 0 - 668 632 667 662 662 692 c 0 - 660 708 652 717 638 723 c 0 - 630 725 621 727 612 730 c 1 - 612 749 l 1 - 619 749 625 750 631 750 c 2 - 695 750 l 2 - 705 750 714 752 723 752 c 0 - 740 752 756 751 773 751 c 1 - 776 743 776 736 777 728 c 1 - 770 723 761 722 754 719 c 0 - 749 717 745 716 741 714 c 0 - 726 709 721 698 720 684 c 0 - 719 668 719 651 719 634 c 0 - 721 584 723 534 724 484 c 2 - 727 310 l 2 - 728 271 729 232 729 193 c 0 - 729 170 727 147 727 123 c 2 - 727 -31 l 1 - 727 -39 l 2 - 727 -43 727 -48 722 -50 c 0 - 717 -52 711 -53 706 -49 c 2 - 697 -40 l 2 - 667 -8 636 22 607 55 c 0 - 585 80 565 107 545 133 c 0 - 526 158 508 183 489 208 c 0 - 462 244 434 280 407 316 c 0 - 392 337 378 358 363 379 c 0 - 350 399 335 418 322 437 c 0 - 296 475 269 513 243 551 c 0 - 239 556 235 562 231 568 c 1xb8 -EndSplineSet -EndChar - -StartChar: Q1 -Encoding: 65557 -1 209 -Width: 787 -GlyphClass: 2 -Flags: MW -HStem: -184 40 -17 21G -7 21G -7 34 705 53<405 407 405 419 352 407> -VStem: 13 49 578 55 693 59 -LayerCount: 2 -Fore -SplineSet -588 14 m 0x9f - 591 8 595 7 599 6 c 0 - 618 1 635 -7 653 -14 c 0 - 670 -21 689 -27 706 -33 c 0 - 744 -47 782 -60 818 -77 c 0xaf - 834 -85 851 -90 867 -97 c 0 - 880 -102 893 -107 906 -113 c 0 - 932 -127 961 -134 989 -143 c 0 - 992 -144 995 -144 998 -144 c 0 - 1019 -143 1039 -142 1058 -132 c 0 - 1065 -129 1066 -129 1077 -138 c 1 - 1072 -151 1063 -160 1051 -167 c 0 - 1024 -186 994 -188 963 -184 c 0 - 949 -182 935 -178 921 -172 c 0 - 894 -160 867 -148 840 -137 c 2 - 765 -107 l 2 - 739 -96 713 -85 688 -73 c 0 - 667 -64 646 -54 623 -49 c 0 - 601 -43 579 -36 555 -37 c 0 - 549 -37 542 -35 536 -35 c 0 - 517 -33 498 -33 479 -37 c 1 - 473 -32 474 -24 470 -17 c 1 - 487 -7 503 3 518 14 c 0 - 540 29 560 46 576 67 c 0xcf - 584 78 592 88 600 98 c 0 - 620 121 634 148 649 173 c 0 - 658 189 664 206 670 223 c 0 - 677 242 683 261 687 281 c 0 - 691 300 693 319 694 337 c 0 - 695 365 694 393 693 420 c 0 - 693 428 692 436 691 444 c 0 - 686 482 672 517 651 549 c 0 - 635 573 617 596 599 620 c 0 - 586 637 568 648 550 659 c 0 - 533 669 516 679 500 689 c 0 - 487 697 474 700 460 702 c 0 - 447 704 433 705 419 705 c 0 - 397 706 374 705 352 705 c 0 - 312 703 276 692 242 672 c 0 - 237 669 231 666 226 664 c 0 - 203 652 184 635 166 617 c 0 - 140 593 122 563 107 532 c 0 - 84 489 70 444 67 395 c 0 - 66 375 65 355 63 335 c 0 - 61 302 68 272 78 242 c 0 - 89 213 103 185 118 158 c 0 - 128 141 140 127 152 112 c 0 - 154 110 156 107 158 106 c 0 - 196 78 234 49 280 36 c 0 - 298 30 316 26 334 27 c 0 - 355 28 375 27 395 30 c 0 - 430 37 465 45 495 67 c 0 - 504 74 513 81 520 89 c 0 - 552 124 570 167 578 214 c 0 - 583 240 580 266 571 291 c 0 - 567 301 563 311 560 320 c 0 - 558 324 557 328 556 332 c 0 - 552 345 558 356 571 360 c 0 - 580 362 589 362 598 359 c 0 - 619 351 624 333 629 315 c 0 - 634 300 634 284 633 268 c 0 - 631 245 628 222 620 201 c 0 - 616 190 613 179 609 168 c 0 - 600 141 584 118 566 96 c 0 - 558 87 549 79 542 69 c 0 - 532 57 521 47 509 39 c 0 - 491 26 473 14 454 6 c 0 - 441 0 427 -3 413 -5 c 0 - 381 -10 349 -10 317 -7 c 0 - 276 -3 236 6 198 23 c 0 - 188 27 180 33 172 40 c 0 - 165 46 157 52 150 58 c 0 - 145 62 139 66 135 71 c 0 - 116 91 96 109 80 133 c 0 - 68 151 56 169 44 188 c 0 - 39 197 35 206 32 215 c 0 - 23 248 15 280 12 314 c 0 - 9 342 11 370 15 398 c 0 - 18 425 23 451 28 478 c 0 - 31 488 33 500 38 509 c 0 - 50 535 61 562 76 586 c 0 - 100 625 128 659 165 687 c 0 - 213 723 268 744 326 757 c 0 - 352 763 379 759 405 758 c 0 - 409 758 412 756 416 755 c 0 - 420 754 424 752 429 752 c 0 - 442 752 454 749 467 747 c 0 - 491 744 514 735 536 725 c 0 - 554 717 572 707 589 695 c 0 - 609 680 629 664 646 646 c 0 - 664 627 681 607 694 585 c 0 - 729 528 747 466 752 401 c 0 - 757 346 751 292 737 238 c 0 - 729 208 716 182 700 156 c 0 - 675 115 645 79 613 45 c 0 - 605 37 598 28 591 20 c 0 - 590 18 589 15 588 14 c 0x9f -EndSplineSet -Kerns2: 210 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: S1 -Encoding: 65558 -1 210 -Width: 549 -GlyphClass: 2 -Flags: MW -HStem: -7 53<273 314> 717 39 717 43 -VStem: 10 47 124 31 141 30 357 61 501 37 -LayerCount: 2 -Fore -SplineSet -517 427 m 2xb3 - 512 427 l 2 - 505 428 497 430 490 432 c 1 - 487 440 491 447 492 454 c 0 - 499 479 500 504 501 529 c 0 - 501 544 499 559 494 573 c 0 - 493 575 492 577 492 579 c 0 - 489 603 474 620 459 637 c 0 - 441 656 421 673 398 685 c 0 - 365 702 331 714 293 717 c 0 - 262 719 231 721 201 714 c 0 - 185 710 169 704 155 696 c 0 - 102 665 74 617 62 558 c 0 - 57 535 56 511 57 487 c 0 - 58 476 60 465 64 454 c 0 - 69 436 76 417 87 402 c 0 - 89 400 90 398 91 395 c 0 - 101 369 122 352 146 340 c 0 - 170 327 196 315 222 303 c 0 - 232 299 243 294 254 290 c 0 - 271 283 289 276 307 271 c 0 - 335 263 359 249 381 230 c 0 - 396 216 407 199 412 178 c 0 - 415 167 417 156 418 144 c 0 - 420 110 415 77 395 48 c 0 - 377 21 353 1 320 -6 c 0 - 318 -6 315 -7 313 -7 c 0 - 280 -7 248 -9 216 0 c 0 - 202 5 190 12 178 20 c 1 - 162 16 159 3 155 -10 c 1 - 143 -11 141 -11 124 -6 c 1xbb - 130 49 135 104 141 160 c 1 - 152 162 160 161 170 158 c 0 - 171 154 171 149 171 145 c 2 - 174 103 l 2 - 174 95 178 88 184 84 c 0 - 203 71 220 57 243 51 c 0 - 255 48 267 46 279 46 c 0 - 305 45 325 56 342 76 c 0 - 345 79 347 83 349 87 c 0 - 357 109 360 132 353 155 c 0 - 350 163 347 171 341 177 c 0 - 334 186 327 195 319 203 c 0 - 313 209 305 214 298 218 c 0 - 284 225 269 231 254 233 c 0 - 253 233 252 234 251 234 c 0 - 213 246 175 257 141 279 c 0 - 133 285 124 290 115 294 c 0 - 89 306 70 328 55 351 c 0 - 34 383 21 417 13 454 c 0 - 11 466 11 478 10 490 c 0 - 10 519 10 548 15 577 c 0 - 20 605 29 633 47 656 c 0 - 51 661 54 666 57 671 c 0 - 68 688 83 699 100 710 c 0 - 126 728 153 743 184 750 c 0xb7 - 226 760 268 764 311 756 c 0 - 322 753 334 752 346 750 c 0 - 369 748 390 741 409 731 c 0 - 425 722 440 714 455 705 c 0 - 474 694 488 678 500 659 c 0xd3 - 513 641 523 622 529 600 c 0 - 543 543 542 487 520 432 c 0 - 519 430 519 429 517 427 c 2xb3 -EndSplineSet -Kerns2: 211 14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: T1 -Encoding: 65559 -1 211 -Width: 421 -GlyphClass: 2 -Flags: MW -HStem: -7 31 -3 26<284 284> 688 60<47 285> -VStem: 10 29 164 68<255 334 255 366> 389 20<761.5 788> -LayerCount: 2 -Fore -SplineSet -389 788 m 1xbc - 398 788 l 2 - 401 788 403 787 407 787 c 1 - 407 782 408 777 409 773 c 0 - 409 750 409 728 410 706 c 0 - 410 698 411 691 411 684 c 2 - 411 664 l 2 - 410 652 409 651 397 650 c 0 - 393 649 389 649 384 649 c 1 - 377 661 382 676 375 690 c 1 - 332 691 288 691 245 686 c 0 - 244 682 243 680 243 677 c 0 - 242 634 240 590 239 547 c 2 - 236 433 l 2 - 235 400 233 367 232 334 c 2 - 232 255 l 2 - 233 211 232 167 229 123 c 0 - 228 106 228 88 229 70 c 0 - 230 53 239 41 253 34 c 0 - 262 29 273 27 284 23 c 1 - 287 16 286 7 284 -3 c 1x7c - 277 -3 269 -5 262 -4 c 0 - 233 -2 204 -7 175 -7 c 2 - 104 -7 l 2 - 102 -6 99 -6 97 -5 c 0 - 97 5 98 14 98 24 c 1 - 102 25 105 26 108 27 c 0 - 115 29 123 30 130 32 c 0 - 140 34 148 40 155 48 c 0 - 161 55 163 61 163 70 c 0 - 163 120 164 171 164 221 c 0 - 164 270 163 318 164 366 c 0 - 165 407 168 447 169 488 c 0 - 169 492 170 496 170 500 c 0 - 166 559 170 619 170 679 c 0 - 169 682 169 685 169 688 c 0 - 128 694 88 693 47 688 c 1 - 43 681 42 673 41 665 c 0 - 41 658 41 650 37 642 c 1 - 29 640 21 639 12 637 c 1 - 11 642 10 645 10 649 c 0 - 10 694 10 738 11 783 c 2 - 11 788 l 1 - 20 793 29 790 39 790 c 1 - 40 782 42 775 43 768 c 0 - 46 756 48 753 61 752 c 0 - 94 749 128 748 162 750 c 0 - 175 751 188 748 201 748 c 2 - 285 748 l 2 - 288 748 291 749 294 748 c 0 - 316 745 338 749 359 750 c 0 - 374 751 382 758 385 772 c 0 - 387 777 387 782 389 788 c 1xbc -EndSplineSet -Kerns2: 212 38 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: U1 -Encoding: 65560 -1 212 -Width: 646 -GlyphClass: 2 -Flags: MW -HStem: -14 39 -8 21G -3 61 0 58 723 23 -VStem: 65 56<346.5 354 354 429 429 534> 441 61 -LayerCount: 2 -Fore -SplineSet -371 724 m 1x8e - 371 744 l 1 - 384 747 398 749 411 748 c 0 - 433 747 455 745 477 744 c 0 - 487 744 497 743 507 742 c 1 - 510 726 510 710 508 695 c 0 - 505 658 505 621 505 584 c 0 - 505 557 503 529 503 502 c 0 - 503 425 502 348 502 271 c 0 - 502 215 503 158 505 101 c 0 - 505 78 515 58 531 42 c 0 - 549 23 589 19 611 33 c 0 - 615 35 619 37 624 40 c 1 - 627 37 632 33 636 29 c 0 - 634 26 633 22 631 20 c 0x8e - 604 -11 564 -22 525 -8 c 0 - 516 -5 508 -1 499 2 c 0 - 483 7 473 17 464 30 c 0 - 458 38 453 46 449 53 c 1x4e - 431 43 415 32 398 22 c 0x1e - 377 9 353 3 328 0 c 0 - 288 -7 248 -4 209 7 c 0 - 194 11 180 17 166 26 c 0 - 162 29 157 32 152 34 c 0 - 137 41 126 54 118 68 c 0 - 88 118 74 172 71 229 c 0 - 69 260 66 290 65 320 c 0 - 62 356 65 393 65 429 c 0 - 66 465 66 500 65 536 c 2 - 65 555 l 2 - 64 587 63 618 62 650 c 2 - 62 672 l 2 - 63 697 52 713 27 720 c 0 - 23 721 18 722 12 724 c 1 - 10 730 11 736 12 743 c 1 - 61 749 111 747 159 747 c 1 - 163 737 163 737 161 721 c 0 - 157 719 151 716 146 714 c 0 - 131 707 123 696 122 681 c 0 - 120 649 117 618 119 586 c 0 - 121 569 121 552 121 534 c 0 - 121 474 120 414 121 354 c 0 - 121 339 123 324 123 309 c 0 - 125 272 127 236 129 199 c 0 - 130 193 131 188 131 182 c 0 - 134 151 148 125 168 102 c 0 - 185 83 207 73 230 66 c 0 - 233 65 236 65 239 64 c 0 - 260 57 282 56 303 58 c 0 - 332 62 360 67 386 84 c 0 - 400 93 413 103 426 114 c 0 - 435 122 440 131 440 143 c 0x2e - 439 163 439 183 439 203 c 0 - 439 221 440 239 440 258 c 0 - 441 320 441 383 441 445 c 2 - 441 450 l 2 - 440 523 439 595 439 668 c 2 - 439 672 l 2 - 439 685 438 696 427 706 c 0 - 417 716 405 721 390 723 c 0 - 385 723 379 723 371 724 c 1x8e -EndSplineSet -Kerns2: 213 -109 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: Y1 -Encoding: 65561 -1 213 -Width: 512 -GlyphClass: 2 -Flags: MW -HStem: -4 20 -1 17<185 185> -VStem: 244 60 -LayerCount: 2 -Fore -SplineSet -184 16 m 1xa0 - 189 18 194 20 200 21 c 0 - 219 24 230 35 235 54 c 0 - 242 80 242 107 244 134 c 0 - 245 153 244 173 244 193 c 0 - 245 276 245 359 246 442 c 0 - 246 452 243 460 238 468 c 0 - 220 494 205 521 187 547 c 0 - 163 583 140 619 113 652 c 0 - 110 656 107 659 105 663 c 0 - 94 677 83 691 72 704 c 0 - 63 717 53 730 43 743 c 0 - 30 760 18 777 5 794 c 0 - -8 810 -21 826 -35 843 c 1 - -20 857 -4 867 14 878 c 0 - 15 877 16 877 17 876 c 0 - 32 857 46 838 61 819 c 0 - 112 752 160 683 207 613 c 0 - 216 601 225 590 234 578 c 0 - 245 564 257 549 268 534 c 0 - 271 530 274 527 277 523 c 1 - 284 530 l 2 - 287 534 289 538 292 542 c 0 - 333 606 377 670 415 736 c 0 - 432 767 453 795 472 825 c 0 - 481 838 490 852 498 866 c 2 - 528 911 l 2 - 535 922 537 923 548 916 c 0 - 561 908 573 899 585 889 c 1 - 583 885 581 882 579 879 c 2 - 528 801 l 2 - 520 789 512 777 505 765 c 0 - 491 742 476 719 460 697 c 0 - 442 672 426 645 408 619 c 0 - 375 568 342 518 309 467 c 0 - 306 463 305 458 305 453 c 0 - 305 438 304 424 304 409 c 0 - 302 339 300 269 299 199 c 0 - 298 159 298 120 298 80 c 0 - 298 62 304 47 317 34 c 0 - 324 27 331 23 341 21 c 0 - 345 19 350 18 355 17 c 1 - 355 -4 l 1xa0 - 298 -7 242 -4 185 -1 c 1x60 - 181 4 182 10 184 16 c 1xa0 -EndSplineSet -Kerns2: 214 -99 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: Q2 -Encoding: 65562 -1 214 -Width: 878 -GlyphClass: 2 -Flags: MW -HStem: -214 54 -7 51<429 432> 1 21G<321 321> 704 56<418 419 418 421> -VStem: 11 55 765 61 -LayerCount: 2 -Fore -SplineSet -1305 -214 m 2xdc - 1292 -211 1280 -209 1267 -206 c 0 - 1237 -199 1206 -192 1176 -184 c 0 - 1139 -175 1103 -165 1067 -154 c 0 - 1041 -146 1016 -137 990 -128 c 0 - 981 -125 972 -123 963 -120 c 0 - 934 -111 905 -103 876 -93 c 0 - 850 -83 825 -72 799 -61 c 0 - 776 -52 753 -42 729 -36 c 0 - 718 -32 707 -28 697 -23 c 0 - 681 -17 664 -12 647 -9 c 0 - 640 -8 633 -5 627 -3 c 0 - 609 4 591 11 572 12 c 0 - 568 12 562 12 558 11 c 0 - 536 3 514 1 492 -2 c 0 - 472 -5 453 -6 432 -7 c 0xdc - 408 -7 384 -5 360 -2 c 2 - 321 1 l 2 - 275 3 232 17 191 36 c 0 - 172 45 156 57 141 71 c 0xbc - 128 82 117 94 104 105 c 0 - 74 131 53 164 38 201 c 0 - 23 236 16 272 13 310 c 0 - 13 322 12 333 11 345 c 0 - 10 390 18 433 28 475 c 0 - 30 486 32 496 35 506 c 0 - 44 537 60 565 80 591 c 0 - 99 617 121 638 146 659 c 0 - 165 675 187 687 209 700 c 0 - 242 718 276 734 312 744 c 0 - 327 748 343 751 359 753 c 0 - 378 756 398 758 418 760 c 2 - 419 760 l 2 - 448 759 477 759 505 752 c 0 - 524 747 542 744 561 740 c 0 - 581 736 601 730 618 718 c 0 - 648 699 679 679 709 658 c 0 - 714 655 719 650 723 645 c 0 - 736 629 748 612 760 595 c 0 - 769 582 777 570 784 557 c 0 - 791 545 797 533 802 521 c 0 - 825 465 829 406 826 346 c 0 - 825 321 817 295 809 271 c 0 - 801 243 788 217 770 194 c 0 - 755 176 742 156 729 137 c 0 - 716 119 700 103 682 89 c 0 - 676 84 671 79 665 74 c 0 - 655 64 656 55 669 48 c 0 - 699 32 730 19 762 9 c 0 - 792 -1 821 -13 851 -23 c 0 - 870 -29 890 -36 909 -42 c 0 - 922 -46 934 -50 947 -54 c 0 - 987 -65 1026 -75 1065 -87 c 0 - 1114 -102 1163 -114 1212 -129 c 0 - 1244 -139 1278 -147 1311 -156 c 0 - 1331 -162 1351 -164 1371 -160 c 0 - 1378 -158 1384 -156 1391 -153 c 0 - 1401 -149 1412 -143 1422 -138 c 0 - 1423 -138 1425 -137 1426 -137 c 0 - 1431 -135 1436 -134 1440 -139 c 0 - 1443 -143 1441 -148 1439 -151 c 0 - 1437 -156 1434 -160 1431 -164 c 0 - 1419 -178 1404 -189 1388 -199 c 0 - 1379 -204 1368 -207 1358 -211 c 0 - 1355 -212 1353 -213 1350 -214 c 2 - 1305 -214 l 2xdc -421 706 m 1 - 421 704 l 1 - 407 704 392 706 378 704 c 0 - 355 702 332 698 310 689 c 0 - 298 685 286 679 274 674 c 0 - 253 664 234 652 215 638 c 0 - 198 625 181 612 164 600 c 0 - 154 593 146 584 139 574 c 0 - 124 554 111 532 98 510 c 0 - 84 486 76 459 70 432 c 0 - 65 405 65 377 66 350 c 0 - 67 324 74 300 78 275 c 0 - 83 251 92 227 104 205 c 0 - 115 187 127 170 138 152 c 0 - 146 139 156 128 168 117 c 0 - 174 112 181 107 188 102 c 0 - 207 87 229 77 251 70 c 0 - 285 58 319 50 355 48 c 0 - 357 48 360 47 362 47 c 0 - 384 43 407 42 429 44 c 0 - 441 44 453 46 464 50 c 0 - 508 64 551 78 593 98 c 0 - 616 110 638 124 657 141 c 0 - 684 165 704 193 723 224 c 0 - 740 253 749 286 757 319 c 0 - 766 356 767 394 761 431 c 0 - 758 454 754 476 749 497 c 0 - 746 509 742 521 737 532 c 0 - 728 550 716 565 703 580 c 0 - 693 590 684 600 675 611 c 0 - 666 621 656 630 645 637 c 0 - 605 664 561 682 514 695 c 0 - 504 698 494 700 484 701 c 0 - 463 703 442 705 421 706 c 1 -EndSplineSet -Kerns2: 215 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: S2 -Encoding: 65563 -1 215 -Width: 501 -GlyphClass: 2 -Flags: MW -HStem: -9 37 -5 21G 698 57 -VStem: 10 19 40 60<596 596> 417 73 422 26 425 18<569.5 570> -LayerCount: 2 -Fore -SplineSet -55 -5 m 1x6c - 46 15 42 34 39 53 c 0x7c - 31 90 25 127 18 164 c 0 - 16 179 13 194 11 209 c 0 - 10 214 10 219 10 223 c 0 - 18 228 18 228 29 230 c 0 - 30 227 32 223 33 219 c 0 - 41 182 54 146 67 110 c 0 - 70 103 72 96 74 89 c 0 - 78 75 87 65 100 60 c 0 - 117 53 134 46 151 41 c 0 - 161 37 172 36 182 35 c 0 - 199 32 217 30 234 28 c 0 - 255 26 274 32 293 38 c 0 - 314 45 335 53 353 66 c 0 - 359 70 365 75 370 80 c 0 - 386 97 398 116 407 137 c 0 - 413 150 417 165 417 180 c 0 - 418 204 416 227 412 250 c 0 - 407 270 398 287 385 303 c 0 - 378 313 370 323 362 332 c 0 - 358 337 354 341 349 344 c 0xbc - 327 357 305 369 284 382 c 0 - 268 391 250 394 232 400 c 0 - 213 405 192 409 173 415 c 0 - 140 427 109 442 82 464 c 0 - 77 468 72 473 69 479 c 0 - 45 514 34 553 40 596 c 2 - 43 620 l 2 - 45 648 60 670 79 689 c 0 - 92 702 105 716 122 724 c 0 - 127 727 133 730 139 733 c 0 - 173 746 208 753 245 754 c 0 - 259 754 273 755 287 755 c 0 - 322 755 355 748 386 733 c 2 - 401 727 l 2 - 410 723 415 725 421 733 c 2 - 422 734 l 1 - 427 747 436 750 449 745 c 0 - 449 743 451 740 450 737 c 0xaa - 449 712 447 688 446 663 c 0 - 444 636 444 608 443 580 c 2 - 443 569 l 1 - 438 568 433 567 428 567 c 0 - 426 568 425 569 425 570 c 0 - 419 600 403 625 387 651 c 0 - 379 665 366 675 351 681 c 0xa9 - 340 686 329 690 318 694 c 0 - 313 696 307 697 301 698 c 0 - 262 699 223 699 185 692 c 0 - 169 689 154 683 140 675 c 0 - 114 660 100 637 100 607 c 2 - 100 578 l 2 - 103 537 122 508 161 490 c 0 - 181 481 203 474 225 468 c 0 - 262 459 297 445 332 430 c 0 - 369 413 402 390 432 363 c 0 - 457 339 474 309 483 276 c 0 - 499 216 488 160 462 105 c 0 - 450 78 430 58 407 40 c 0 - 400 34 392 29 384 24 c 0 - 366 12 347 5 325 1 c 0 - 299 -3 272 -6 246 -9 c 0 - 215 -12 184 -10 153 -7 c 0 - 141 -6 130 0 119 4 c 0 - 109 8 100 12 91 16 c 0xac - 80 19 76 17 73 7 c 0 - 70 -3 64 -4 55 -5 c 1x6c -EndSplineSet -Kerns2: 216 5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: T2 -Encoding: 65564 -1 216 -Width: 828 -GlyphClass: 2 -Flags: MW -HStem: -1 20<323 331 323 374> 693 56<75 160> 702 48<555 577> 738 20G -VStem: 376 64<131.5 141> 765 50 -LayerCount: 2 -Fore -SplineSet -488 19 m 1xa8 - 488 0 l 1 - 484 -4 479 -2 475 -2 c 0 - 441 -1 408 0 374 -1 c 2 - 331 -1 l 2 - 329 -1 326 -1 323 0 c 0 - 323 3 322 7 322 10 c 0 - 322 13 322 16 323 19 c 2 - 332 22 l 2 - 340 23 347 24 354 26 c 0 - 371 30 375 36 375 53 c 0 - 376 85 376 116 376 147 c 0 - 376 222 377 296 374 371 c 0 - 372 444 373 516 372 589 c 0 - 371 614 369 639 367 663 c 2 - 367 680 l 2 - 366 690 364 692 354 695 c 0 - 339 699 323 697 307 696 c 0 - 295 696 283 695 272 695 c 0 - 213 694 154 693 95 693 c 2 - 75 693 l 2 - 66 693 60 690 56 680 c 0 - 48 659 39 637 30 615 c 1 - 22 615 l 2 - 18 615 15 616 11 616 c 0 - 10 619 10 622 10 625 c 0xc8 - 10 663 15 700 19 738 c 0 - 20 744 24 747 30 748 c 0 - 42 749 54 750 66 750 c 0 - 92 750 118 749 144 749 c 0 - 176 749 209 750 241 750 c 0 - 257 750 273 748 290 748 c 0 - 311 748 332 748 353 749 c 0 - 421 752 488 751 555 750 c 0xa8 - 599 750 643 751 688 752 c 0 - 702 752 717 756 732 758 c 0 - 740 759 747 764 754 769 c 0 - 761 774 764 781 765 789 c 0 - 766 801 762 807 752 811 c 0 - 748 813 744 815 738 817 c 1 - 738 823 737 828 737 834 c 0 - 738 844 742 849 752 850 c 0 - 769 852 785 848 799 839 c 0 - 809 833 812 823 815 812 c 0 - 821 786 814 764 791 748 c 0 - 771 733 747 723 723 718 c 0 - 706 714 690 712 673 710 c 0x9c - 657 708 640 705 624 704 c 0 - 611 703 598 702 584 702 c 0 - 558 702 532 703 506 702 c 0 - 483 701 461 701 439 696 c 0 - 438 694 437 691 437 689 c 0 - 433 641 433 593 434 545 c 0 - 436 501 437 458 438 415 c 0 - 439 402 439 390 439 377 c 0 - 439 299 440 220 440 141 c 0 - 440 114 441 87 440 59 c 0 - 440 40 449 29 466 25 c 0 - 473 23 480 21 488 19 c 1xa8 -EndSplineSet -Kerns2: 217 9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: V1 -Encoding: 65565 -1 217 -Width: 829 -GlyphClass: 2 -Flags: MW -HStem: -21 21G<398.5 407.5> 717 29 720 27 -VStem: 10 809<718 720.5> 641 178<720 744 718 745> -LayerCount: 2 -Fore -SplineSet -10 717 m 1xd0 - 10 724 10 729 11 734 c 2 - 11 744 l 1 - 17 749 23 748 29 748 c 0 - 54 748 79 748 104 747 c 2 - 191 747 l 2 - 192 747 193 746 195 745 c 0 - 197 737 197 729 193 719 c 1 - 172 716 l 2 - 166 714 159 712 154 709 c 0 - 146 705 145 699 148 690 c 0xd0 - 163 653 178 616 192 578 c 0 - 209 537 227 496 246 456 c 0 - 263 422 279 387 295 353 c 0 - 303 335 312 316 320 298 c 0 - 341 253 359 207 383 164 c 0 - 390 150 398 137 405 124 c 1 - 411 125 412 129 413 133 c 0 - 427 160 440 188 454 216 c 0 - 469 248 484 280 500 312 c 0 - 514 341 529 369 543 398 c 0 - 564 441 585 485 605 529 c 0 - 617 555 627 581 639 606 c 0 - 649 631 660 655 671 679 c 0 - 673 683 674 687 675 690 c 0 - 678 702 673 712 661 716 c 0 - 655 717 648 718 641 720 c 1xa8 - 638 728 639 736 641 745 c 0 - 645 745 650 747 655 747 c 0 - 685 748 714 749 744 748 c 0 - 767 747 790 744 813 745 c 0 - 815 745 817 745 819 744 c 2 - 819 718 l 1 - 815 718 812 717 809 717 c 0 - 794 716 779 712 765 707 c 0 - 757 704 751 698 747 691 c 0 - 746 688 745 686 744 684 c 0xc8 - 733 657 719 630 706 604 c 0 - 692 578 680 551 667 524 c 0 - 654 497 642 468 628 441 c 0 - 606 401 589 358 570 317 c 0 - 564 304 557 292 550 280 c 0 - 533 250 519 219 505 187 c 2 - 472 115 l 2 - 459 86 445 57 432 29 c 0 - 427 17 422 5 418 -7 c 0 - 415 -14 412 -21 403 -21 c 0 - 394 -21 390 -14 387 -7 c 0 - 387 -6 386 -4 386 -3 c 0 - 376 36 357 71 341 106 c 0 - 314 161 288 215 262 270 c 0 - 250 294 238 317 227 341 c 0 - 214 371 201 401 187 431 c 0 - 174 458 160 486 146 513 c 0 - 142 521 140 530 136 537 c 0 - 126 557 116 576 106 595 c 0 - 103 603 99 611 96 618 c 0 - 93 625 91 631 88 637 c 0 - 81 653 73 669 66 686 c 0 - 56 706 41 717 18 716 c 0 - 16 716 14 717 10 717 c 1xd0 -EndSplineSet -Kerns2: 218 -23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: X1 -Encoding: 65566 -1 218 -Width: 722 -GlyphClass: 2 -Flags: MW -HStem: -3 37 -2 23<528 528 709 709> 721 23 723 25 -VStem: 11 700 12 171<-1 4 -1 16> 79 180 527 181 -LayerCount: 2 -Fore -SplineSet -357 482 m 1x52 - 363 491 368 496 372 502 c 0 - 388 529 403 555 419 581 c 0 - 436 610 453 638 471 666 c 0 - 477 677 484 689 491 700 c 0 - 496 709 491 719 482 720 c 0 - 477 721 473 721 468 722 c 0 - 464 723 459 723 454 724 c 1 - 451 731 453 737 455 744 c 1 - 473 748 492 743 510 744 c 0 - 529 745 548 745 567 745 c 0 - 585 744 604 749 623 744 c 1 - 625 736 625 736 625 723 c 0 - 622 722 618 720 614 720 c 0 - 610 719 606 718 603 718 c 0 - 580 717 565 706 553 687 c 0 - 536 661 519 634 505 606 c 0 - 481 560 453 516 425 471 c 0 - 417 459 409 446 402 434 c 1 - 415 414 427 394 439 375 c 0 - 444 369 447 362 451 356 c 0 - 455 349 460 342 464 335 c 0 - 470 325 476 316 481 307 c 0 - 485 300 489 294 494 287 c 0 - 501 274 508 261 517 249 c 0 - 533 224 550 199 567 174 c 0 - 569 170 572 166 574 163 c 0 - 591 132 610 103 631 75 c 0 - 640 62 651 51 661 40 c 0 - 665 37 669 35 674 33 c 0 - 686 29 697 25 710 21 c 1 - 712 14 711 6 709 -2 c 1 - 648 -4 589 -3 528 -2 c 1 - 525 6 526 13 527 21 c 1 - 534 23 540 25 546 27 c 0 - 555 29 562 32 569 38 c 0 - 576 44 577 49 572 57 c 0 - 566 67 560 77 554 86 c 0x61 - 543 104 532 123 520 140 c 0 - 511 154 500 168 489 182 c 0 - 486 187 482 192 479 197 c 0 - 473 206 468 214 463 222 c 0 - 445 250 428 277 409 304 c 0 - 392 328 374 352 357 376 c 0 - 356 376 355 377 353 378 c 0 - 350 375 347 372 345 368 c 0 - 334 351 324 334 313 316 c 0 - 305 303 298 289 290 275 c 0 - 289 273 288 272 288 270 c 0 - 269 240 251 209 232 179 c 0 - 214 150 196 122 179 93 c 0 - 171 80 165 66 158 53 c 0 - 153 43 155 39 165 34 c 0 - 171 32 177 30 184 28 c 1x95 - 184 18 183 9 183 -1 c 1 - 178 -2 175 -3 171 -3 c 0 - 131 -3 91 -2 51 -2 c 2 - 12 -2 l 1 - 9 4 11 9 12 16 c 1 - 21 20 30 24 40 26 c 0 - 61 30 77 44 89 61 c 0x54 - 106 82 121 104 136 126 c 0 - 153 153 170 180 186 208 c 0 - 209 246 230 285 252 324 c 0 - 270 357 288 390 307 423 c 0 - 312 432 310 440 306 448 c 0 - 302 454 298 460 295 465 c 0 - 280 489 265 513 251 537 c 0 - 244 549 237 560 231 572 c 0 - 218 594 205 614 190 634 c 0 - 178 649 167 666 157 683 c 0 - 147 696 137 708 120 714 c 0 - 112 716 103 717 94 719 c 0 - 89 720 85 720 79 720 c 1 - 79 745 l 1 - 89 745 l 2x62 - 105 745 120 744 135 747 c 0 - 139 748 143 747 147 748 c 2 - 253 748 l 2 - 255 748 257 748 260 747 c 0 - 261 739 260 731 258 723 c 1 - 246 720 231 725 220 714 c 0 - 221 712 220 710 221 708 c 0 - 226 698 232 689 237 680 c 0 - 273 616 309 552 351 492 c 0 - 353 490 354 487 357 482 c 1x52 -EndSplineSet -EndChar - -StartChar: Z1 -Encoding: 65567 -1 219 -Width: 892 -GlyphClass: 2 -Flags: MW -HStem: -33 49 -25 21G<764.5 766> -22 21G -9 57 -9 63 0 21G 692 52 738 20G<19 19> 745 20G 749 20G -VStem: 10 29<604 604> 864 18 -LayerCount: 2 -Fore -SplineSet -19 758 m 1x1130 - 31 764 l 2 - 38 768 44 768 52 765 c 0x10b0 - 74 755 96 751 120 750 c 0 - 193 746 265 745 337 744 c 0 - 383 744 428 743 474 742 c 0 - 493 742 511 741 530 742 c 0 - 569 743 609 745 648 746 c 0 - 670 748 688 756 705 768 c 0x1230 - 717 777 722 777 737 769 c 1 - 730 757 723 745 715 733 c 0 - 698 706 680 679 662 652 c 0 - 649 634 637 616 624 598 c 0 - 610 580 597 562 585 542 c 0 - 576 526 565 510 555 494 c 0 - 530 456 505 419 480 381 c 0 - 452 340 425 300 397 259 c 0 - 378 231 359 204 341 176 c 0 - 315 137 291 97 263 60 c 0 - 261 57 259 54 256 49 c 1 - 260 49 263 48 265 48 c 0x1070 - 278 49 290 50 303 52 c 0 - 340 56 377 56 415 54 c 0 - 443 52 472 48 501 44 c 0x0870 - 553 37 605 29 658 23 c 0 - 687 20 716 18 746 16 c 0 - 771 15 795 22 817 35 c 0 - 831 43 844 53 857 62 c 0 - 859 64 862 66 864 68 c 0 - 870 66 873 60 877 56 c 0 - 884 49 883 41 876 34 c 0 - 869 29 862 23 855 18 c 0 - 844 11 833 2 821 -5 c 0x8070 - 804 -16 785 -21 766 -25 c 0 - 763 -25 760 -26 758 -27 c 0 - 734 -35 710 -34 686 -33 c 0 - 657 -31 628 -30 598 -27 c 0x4070 - 538 -23 478 -18 418 -13 c 0 - 392 -11 366 -10 339 -9 c 0x1070 - 308 -7 277 -6 245 -4 c 0 - 229 -3 213 -1 197 0 c 0 - 163 4 130 0 98 -12 c 0 - 90 -14 82 -18 75 -22 c 0 - 68 -26 61 -31 52 -36 c 1x0470 - 45 -32 37 -28 28 -22 c 1 - 39 1 52 20 78 27 c 0 - 91 30 105 34 119 38 c 0 - 148 46 171 61 188 86 c 0 - 211 121 233 155 256 189 c 2 - 286 231 l 2 - 319 281 352 331 388 380 c 0 - 397 394 409 407 419 421 c 0 - 440 450 461 480 483 509 c 0 - 507 544 532 579 557 615 c 0 - 570 634 582 654 595 674 c 0 - 597 679 601 683 598 690 c 1 - 588 691 577 691 567 691 c 0 - 535 692 503 692 471 693 c 0 - 463 693 454 695 446 695 c 0 - 424 698 402 698 380 696 c 0 - 355 694 330 693 304 692 c 0 - 256 691 207 691 159 689 c 0 - 144 688 129 685 114 683 c 0 - 105 681 96 679 86 678 c 0 - 70 676 60 668 56 653 c 0 - 51 636 44 620 39 603 c 1 - 27 601 23 601 10 604 c 0 - 10 608 11 613 12 618 c 0 - 20 648 22 678 19 709 c 0x2230 - 18 725 17 742 19 758 c 1x1130 -EndSplineSet -Kerns2: 220 -95 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: W2 -Encoding: 65568 -1 220 -Width: 866 -GlyphClass: 2 -Flags: MW -HStem: -14 21G -3 21G 711 41<151.5 162.5> 719 34 723 31<850 856> -VStem: 10 846<747 752> 740 116 -LayerCount: 2 -Fore -SplineSet -525 719 m 1x54 - 525 748 l 1 - 528 748 531 748 534 749 c 0x54 - 546 749 559 749 571 750 c 0 - 585 752 599 752 614 752 c 0 - 661 752 709 753 757 753 c 0 - 788 753 819 754 850 754 c 2 - 856 754 l 1x62 - 856 723 l 1 - 847 722 839 720 831 719 c 0 - 826 718 822 716 817 715 c 0 - 805 712 798 702 794 692 c 0 - 784 663 775 633 765 604 c 2 - 747 556 l 1 - 735 520 l 2 - 726 491 718 463 708 434 c 0 - 698 407 688 381 678 354 c 0 - 669 329 660 304 652 278 c 0 - 640 244 630 209 618 174 c 0 - 610 150 600 127 590 104 c 0 - 580 81 571 58 560 35 c 0 - 554 22 547 9 540 -2 c 0 - 536 -7 530 -11 525 -14 c 0 - 519 -17 516 -15 512 -9 c 0 - 500 9 489 28 477 46 c 0x8a - 459 71 448 100 437 129 c 0 - 435 132 433 135 432 139 c 1 - 430 139 l 2 - 428 136 427 134 426 132 c 0 - 413 106 403 79 393 51 c 0 - 387 35 378 20 368 5 c 0 - 362 -5 355 -6 347 3 c 0 - 340 10 334 19 329 29 c 0 - 311 62 301 97 287 132 c 0 - 287 133 286 134 286 135 c 0 - 270 168 261 203 247 237 c 0 - 235 268 220 299 207 329 c 0 - 197 353 187 377 178 401 c 0 - 166 432 154 464 142 496 c 0 - 140 501 138 505 137 510 c 0 - 123 551 108 590 90 629 c 0 - 85 640 81 652 76 663 c 0 - 71 675 66 687 60 699 c 0 - 57 706 53 710 46 711 c 0 - 37 712 29 713 20 714 c 0 - 12 715 12 715 11 724 c 0 - 11 733 10 742 10 752 c 1 - 57 752 l 1 - 171 752 l 1 - 253 752 l 2 - 264 752 276 749 288 749 c 0 - 301 749 315 751 329 752 c 2 - 350 752 l 1 - 350 720 l 1 - 346 719 343 718 339 718 c 0 - 327 716 315 714 304 712 c 0 - 298 711 296 706 297 701 c 0 - 299 695 301 690 303 684 c 0x64 - 344 570 384 457 425 343 c 0 - 428 335 432 327 436 317 c 1 - 437 320 439 322 439 324 c 0 - 447 339 454 354 458 371 c 0 - 458 372 459 373 459 375 c 0 - 482 422 494 472 510 521 c 0 - 527 573 545 624 562 675 c 0 - 564 682 566 689 567 696 c 0 - 568 710 560 719 546 719 c 2 - 525 719 l 1x54 -531 104 m 1 - 533 109 537 113 539 117 c 2 - 554 153 l 2 - 560 169 566 186 572 203 c 0 - 585 236 598 268 611 301 c 0 - 618 320 626 339 631 358 c 0 - 633 365 635 371 637 377 c 0 - 650 410 662 443 674 476 c 0 - 689 517 702 558 713 600 c 0 - 715 608 718 615 720 622 c 0 - 723 630 725 637 727 644 c 0 - 729 652 731 659 733 667 c 0 - 736 679 739 690 740 702 c 0 - 742 713 738 718 727 719 c 0 - 707 720 687 721 668 722 c 0x52 - 649 723 637 713 629 697 c 0 - 619 674 609 652 599 630 c 0 - 592 611 586 592 579 573 c 0 - 564 532 550 492 535 451 c 0 - 525 423 514 395 506 366 c 0 - 495 327 479 291 464 253 c 0 - 463 250 463 247 464 243 c 0 - 475 219 485 195 495 171 c 0 - 504 151 512 132 520 113 c 0 - 522 108 524 105 531 104 c 1 -365 141 m 1 - 367 144 369 147 370 149 c 0 - 374 157 377 164 380 171 c 0 - 385 182 390 192 395 203 c 0 - 396 205 397 208 396 210 c 0 - 395 216 394 222 391 229 c 0 - 379 265 367 302 353 338 c 0 - 337 381 316 423 302 468 c 0 - 292 500 276 530 267 562 c 0 - 257 594 244 625 232 657 c 0 - 227 669 221 682 216 694 c 0 - 212 702 206 708 198 709 c 0 - 184 711 170 711 155 711 c 0 - 148 711 145 705 147 698 c 0 - 150 685 154 672 158 659 c 0x64 - 163 643 167 626 173 610 c 0 - 182 585 193 560 202 535 c 0 - 209 518 215 501 221 484 c 0 - 224 476 226 469 229 462 c 0 - 233 451 238 441 242 430 c 0 - 250 408 258 386 267 364 c 0 - 273 349 279 333 285 318 c 0 - 288 311 291 304 295 297 c 2 - 331 219 l 2 - 342 196 351 172 361 149 c 0 - 362 146 363 144 365 141 c 1 -EndSplineSet -Kerns2: 221 -67 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: O1 -Encoding: 65569 -1 221 -Width: 848 -GlyphClass: 2 -Flags: MW -HStem: -11 47 -7 21G<505 510.5> 712 49 -VStem: 11 59<305 312 312 323.5> 778 58 -LayerCount: 2 -Fore -SplineSet -838 373 m 1xb8 - 836 354 836 334 833 314 c 0 - 828 283 817 253 805 223 c 0 - 795 200 782 178 767 158 c 0 - 752 138 736 120 720 101 c 0 - 716 97 712 93 707 89 c 0 - 687 74 667 59 646 45 c 0 - 625 30 601 19 577 11 c 0 - 564 7 552 2 539 -2 c 0x78 - 527 -5 516 -7 505 -7 c 0 - 465 -9 425 -10 386 -11 c 0xb8 - 380 -11 373 -8 367 -8 c 0 - 344 -7 322 -2 300 3 c 0 - 281 7 262 15 243 21 c 0 - 239 22 235 24 231 26 c 0 - 194 38 162 56 131 80 c 0x78 - 107 99 86 121 68 146 c 0 - 57 163 49 183 39 201 c 0 - 23 234 17 269 11 305 c 1 - 11 312 l 2 - 11 335 10 358 12 381 c 0 - 14 404 18 427 22 451 c 0 - 26 477 34 501 43 525 c 0 - 56 557 73 588 98 612 c 0 - 126 638 154 665 184 689 c 0 - 207 708 234 721 261 732 c 0 - 283 741 305 748 329 752 c 0 - 338 754 348 755 358 756 c 0 - 361 756 364 757 368 758 c 0 - 369 758 371 759 373 759 c 0 - 395 760 418 763 440 761 c 0 - 466 760 491 761 517 755 c 0 - 531 752 546 751 560 747 c 0 - 580 741 599 736 618 727 c 0 - 638 716 658 706 677 694 c 0 - 693 684 708 671 722 658 c 0 - 735 646 746 632 758 619 c 0 - 767 609 775 600 783 589 c 0 - 786 586 787 582 789 578 c 0 - 796 561 804 544 811 527 c 0 - 815 517 818 507 821 497 c 0 - 832 466 835 433 836 400 c 2 - 836 373 l 1 - 838 373 l 1xb8 -70 346 m 0 - 70 329 69 313 70 297 c 0 - 73 268 81 241 93 214 c 0 - 98 204 101 193 108 183 c 0 - 118 168 129 153 143 140 c 0 - 158 128 172 116 188 106 c 0 - 212 90 238 77 266 69 c 0 - 291 63 317 54 343 51 c 0 - 364 48 384 43 404 40 c 0 - 419 37 435 35 451 36 c 0 - 460 37 469 38 479 39 c 0 - 489 40 499 40 508 43 c 0 - 544 52 577 68 609 88 c 0 - 616 93 624 98 631 104 c 0 - 651 120 671 137 687 157 c 0 - 699 171 712 185 722 200 c 0 - 735 220 744 242 751 265 c 0 - 763 302 773 340 776 379 c 0 - 777 389 779 399 778 409 c 0 - 776 431 772 454 768 477 c 0 - 763 504 752 528 742 554 c 0 - 741 556 740 558 738 560 c 0 - 725 583 707 603 687 621 c 0 - 682 626 676 630 671 635 c 0 - 654 650 636 664 617 675 c 0 - 612 678 607 681 602 683 c 0 - 575 691 547 699 520 707 c 0 - 512 709 504 712 497 712 c 0 - 450 716 403 714 356 709 c 0 - 335 707 314 700 296 690 c 0 - 290 687 285 683 280 681 c 0 - 268 676 257 672 246 666 c 0 - 221 653 198 638 179 617 c 0 - 167 603 154 589 142 575 c 0 - 134 566 127 556 121 546 c 0 - 98 507 82 465 74 421 c 0 - 69 396 69 371 70 346 c 0 -EndSplineSet -EndChar - -StartChar: D2 -Encoding: 65570 -1 222 -Width: 819 -GlyphClass: 2 -Flags: MW -HStem: -3 26<10 12 10 17 10 12> -3 60 700 55 725 28<35 39> -VStem: 79 70<138 213> 80 64<453 456 435.5 493> 744 65<339 393> -LayerCount: 2 -Fore -SplineSet -19 728 m 1x9a - 19 753 l 1 - 30 755 41 755 51 753 c 0 - 64 750 77 751 90 751 c 0 - 105 751 119 750 134 751 c 0 - 148 751 162 752 176 753 c 0 - 190 755 204 756 219 755 c 0 - 229 754 240 753 251 753 c 0 - 266 752 281 752 296 751 c 0 - 320 750 344 748 367 747 c 0 - 402 745 437 740 472 736 c 0 - 511 730 549 720 586 707 c 0 - 609 699 630 686 652 673 c 0 - 674 659 693 639 714 622 c 0 - 730 609 744 594 756 577 c 0 - 766 561 776 544 785 528 c 0 - 798 504 803 477 806 450 c 0 - 808 441 808 432 808 423 c 0 - 809 401 808 379 809 357 c 0 - 809 321 802 287 790 253 c 0 - 779 221 762 192 744 164 c 0 - 732 148 720 132 706 118 c 0 - 672 83 634 53 587 35 c 0 - 565 26 541 19 516 15 c 0 - 509 14 501 12 493 11 c 0 - 450 4 406 2 363 0 c 0 - 248 -5 132 -1 17 -3 c 2 - 10 -3 l 1x6a - 10 23 l 1 - 14 23 17 24 21 25 c 0 - 36 30 51 36 61 48 c 0 - 63 50 66 53 66 56 c 0 - 69 70 76 84 76 100 c 0 - 76 112 78 125 79 138 c 2 - 79 347 l 2 - 80 389 80 432 80 474 c 0 - 80 512 79 549 79 587 c 0 - 79 619 80 651 80 683 c 0 - 79 698 72 710 59 718 c 0 - 52 723 43 725 35 725 c 0 - 29 726 24 727 19 728 c 1x9a -149 213 m 2 - 149 74 l 2 - 149 62 152 58 164 57 c 2 - 171 57 l 1 - 267 57 l 2 - 286 57 306 56 325 56 c 0 - 350 56 375 57 400 58 c 2 - 405 58 l 2 - 424 61 443 64 462 66 c 0 - 487 69 511 76 534 86 c 0 - 557 96 579 107 601 118 c 0 - 609 122 616 126 623 132 c 0 - 636 142 648 154 661 165 c 0 - 679 179 693 198 705 218 c 0 - 722 247 731 278 737 310 c 0 - 742 338 744 365 744 393 c 0 - 743 420 743 447 735 474 c 0 - 731 491 723 507 714 523 c 0 - 702 544 687 564 670 581 c 0 - 663 589 655 596 647 602 c 0 - 630 615 611 627 593 638 c 0 - 577 649 560 657 542 662 c 0 - 513 671 484 680 455 688 c 0 - 450 690 446 691 441 691 c 2 - 399 694 l 2 - 392 695 384 695 376 696 c 0 - 361 697 346 699 331 700 c 2 - 235 700 l 2 - 229 700 223 698 217 699 c 0 - 204 699 190 700 177 701 c 0 - 169 702 163 699 158 694 c 0 - 151 688 151 680 151 673 c 0x6a - 149 641 147 610 146 579 c 0 - 145 538 143 497 144 456 c 0x66 - 144 415 146 375 147 334 c 0 - 148 291 148 247 149 213 c 2 -EndSplineSet -EndChar - -StartChar: R3 -Encoding: 65571 -1 223 -Width: 609 -GlyphClass: 2 -Flags: MW -HStem: -8 35 -5 26 356 67<276 313> 703 45<148.5 149.5 118 160> -VStem: 66 58 434 57 -LayerCount: 2 -Fore -SplineSet -135 488 m 0xbc - 142 494 150 501 158 508 c 0 - 160 506 162 504 164 501 c 0 - 179 480 198 462 218 445 c 0 - 235 432 255 425 276 423 c 0 - 289 423 302 422 314 421 c 0 - 331 420 348 422 364 428 c 0 - 381 435 397 444 411 456 c 0 - 425 468 432 484 434 502 c 0 - 436 521 435 540 426 558 c 0 - 423 564 422 571 419 577 c 0 - 411 602 395 622 375 639 c 0 - 361 652 346 663 330 672 c 0 - 320 676 311 681 301 684 c 0 - 268 695 234 700 199 702 c 0 - 183 703 168 703 152 703 c 0 - 145 703 138 703 131 702 c 0 - 120 701 119 699 119 688 c 0 - 121 654 120 620 118 586 c 0 - 117 573 118 561 118 549 c 0 - 118 509 118 471 119 431 c 0 - 119 404 121 376 122 348 c 0 - 123 338 124 328 124 317 c 0 - 125 233 129 148 127 64 c 0 - 126 42 134 29 159 26 c 0 - 167 24 176 23 185 21 c 1 - 185 -4 l 1 - 128 -7 71 -2 15 -5 c 1 - 9 0 11 5 11 10 c 0 - 11 15 14 19 20 21 c 2 - 38 27 l 2 - 50 30 57 38 60 50 c 0 - 63 63 65 76 65 90 c 0x7c - 65 103 66 116 66 130 c 0 - 66 179 66 229 65 278 c 0 - 65 318 63 357 63 397 c 0 - 64 436 61 475 60 514 c 0 - 59 544 59 574 58 604 c 0 - 57 630 56 655 54 680 c 0 - 52 705 42 715 17 721 c 0 - 16 722 14 722 12 723 c 2 - 12 742 l 1 - 25 744 36 746 48 746 c 0 - 76 747 104 748 132 748 c 0 - 167 748 203 748 238 747 c 0 - 241 747 245 747 248 746 c 0 - 280 739 312 735 343 725 c 0 - 374 714 402 698 425 675 c 0 - 435 666 442 654 451 643 c 0 - 468 622 479 597 485 571 c 0 - 496 524 495 478 466 436 c 0 - 463 433 461 430 459 426 c 0 - 447 408 433 394 414 384 c 0 - 395 374 376 362 354 359 c 0 - 340 358 326 357 313 356 c 0 - 307 356 302 357 296 353 c 0 - 297 351 297 348 299 346 c 0 - 303 339 308 332 313 325 c 0 - 332 299 352 272 372 246 c 2 - 441 156 l 2 - 444 151 447 148 449 143 c 0 - 456 128 467 116 476 102 c 0 - 488 85 502 70 516 55 c 0 - 524 47 533 40 543 34 c 0 - 556 26 571 25 586 31 c 0 - 587 31 587 32 588 32 c 0 - 596 35 600 32 598 23 c 0 - 593 3 583 -8 563 -8 c 0 - 546 -8 529 -8 512 -7 c 0 - 501 -7 492 0 484 8 c 0 - 467 27 451 47 436 68 c 0 - 418 94 398 118 379 144 c 2 - 328 213 l 2 - 319 226 310 238 301 250 c 0 - 276 282 253 316 231 350 c 0 - 223 364 212 376 202 389 c 0 - 197 395 193 401 188 407 c 0 - 169 431 151 455 136 482 c 0 - 136 484 136 485 135 488 c 0xbc -EndSplineSet -Kerns2: 224 -90 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: N2 -Encoding: 65572 -1 224 -Width: 1200 -GlyphClass: 2 -Flags: MW -HStem: -8 21G<1125 1140 1125 1125> 0 22<324 358 324 438> 1 13<293 301.5> 719 36 722 30 735 20G<340 360.5> -VStem: 372 77 375 78<550.5 659> 1102 59<104 153> 1109 54 -LayerCount: 2 -Fore -SplineSet -452 633 m 1x4580 - 452 626 l 2 - 452 605 453 585 453 564 c 0 - 453 537 454 510 452 483 c 0 - 447 405 450 326 449 247 c 2 - 449 91 l 2 - 449 79 448 68 447 56 c 0 - 447 49 449 45 455 41 c 0 - 470 31 487 22 506 19 c 0 - 510 18 515 18 520 17 c 1 - 520 12 521 7 521 2 c 0 - 520 1 519 1 518 1 c 0 - 492 0 465 -2 438 0 c 0 - 406 1 374 0 342 0 c 0 - 326 0 310 1 293 1 c 1x4580 - 293 14 l 1x2580 - 303 17 314 20 324 22 c 2 - 327 22 l 1 - 339 30 353 34 361 47 c 0 - 366 54 369 61 369 70 c 0 - 374 168 371 266 372 364 c 0x4680 - 373 436 374 507 375 579 c 0 - 375 606 374 632 375 659 c 0 - 375 668 371 674 364 680 c 0 - 359 683 354 687 348 691 c 0 - 343 695 337 698 331 701 c 0 - 297 714 263 721 227 719 c 0 - 206 718 186 716 165 713 c 0 - 161 713 156 711 151 709 c 0 - 142 707 133 706 124 702 c 0 - 105 695 89 683 74 670 c 0 - 60 658 48 645 35 632 c 0 - 31 627 23 627 17 630 c 0 - 11 633 9 638 11 645 c 0 - 12 651 15 656 17 661 c 0 - 24 673 32 685 44 694 c 0 - 62 706 80 716 101 724 c 0 - 134 737 169 745 205 748 c 0x5180 - 226 750 248 751 269 752 c 0 - 297 753 326 755 354 755 c 0 - 367 755 380 751 392 748 c 0 - 402 746 411 743 420 739 c 0 - 426 737 433 734 439 730 c 0 - 448 724 456 718 465 712 c 0 - 470 709 473 704 477 700 c 0 - 482 695 488 691 493 686 c 0 - 498 682 502 678 507 673 c 0 - 517 664 527 653 538 645 c 0 - 554 632 566 617 580 602 c 0 - 586 596 592 591 598 585 c 2 - 625 558 l 2 - 638 545 652 531 665 517 c 0 - 683 498 702 481 721 463 c 0 - 745 440 768 417 791 394 c 0 - 802 382 814 371 826 359 c 0 - 841 345 855 330 869 315 c 0 - 885 297 900 279 918 263 c 0 - 940 244 960 224 981 204 c 0 - 983 203 984 201 985 201 c 0 - 1025 170 1061 135 1098 101 c 0 - 1099 100 1100 100 1101 99 c 1 - 1102 101 1102 103 1102 105 c 0 - 1102 141 1103 177 1104 213 c 0x4580 - 1104 239 1107 265 1107 291 c 0 - 1108 308 1108 325 1108 343 c 0 - 1108 389 1109 436 1109 482 c 0 - 1109 522 1108 562 1108 601 c 0 - 1107 623 1107 645 1105 666 c 0 - 1104 676 1101 685 1098 693 c 0 - 1096 700 1091 704 1085 708 c 0 - 1069 716 1053 719 1036 721 c 0 - 1029 721 1023 723 1016 723 c 1 - 1018 731 1019 739 1021 745 c 0 - 1024 752 1031 753 1038 752 c 0 - 1046 752 1054 751 1063 750 c 0 - 1067 750 1072 749 1077 749 c 0 - 1110 750 1142 750 1175 750 c 0 - 1178 750 1182 749 1186 747 c 0 - 1189 745 1190 741 1188 738 c 0 - 1185 730 1182 723 1179 716 c 0 - 1178 710 1177 703 1175 698 c 0 - 1170 672 1168 645 1168 619 c 0x4940 - 1167 589 1167 559 1166 530 c 0 - 1162 455 1164 380 1163 305 c 0 - 1162 254 1162 203 1161 153 c 0 - 1161 137 1159 121 1158 105 c 0 - 1157 76 1157 46 1156 16 c 0 - 1155 12 1156 8 1155 5 c 0 - 1155 -4 1149 -9 1140 -8 c 2 - 1125 -8 l 2 - 1116 -9 1109 -6 1103 -1 c 0x8580 - 1062 26 1026 59 991 94 c 0 - 966 119 940 144 915 169 c 0 - 908 175 902 183 896 189 c 0 - 884 201 872 212 860 224 c 0 - 839 245 818 266 797 288 c 0 - 771 314 747 341 721 368 c 0 - 700 389 678 410 657 431 c 0 - 650 438 643 446 635 453 c 0 - 628 460 621 467 615 474 c 0 - 603 486 592 499 580 511 c 0 - 565 525 550 540 536 555 c 0 - 531 559 526 563 522 568 c 0 - 512 579 501 589 491 600 c 0 - 483 609 476 617 469 625 c 0 - 463 632 459 634 452 633 c 1x4580 -EndSplineSet -Kerns2: 225 42 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: D3 -Encoding: 65573 -1 225 -Width: 644 -GlyphClass: 2 -Flags: MW -HStem: -6 35<18 32> 1 47<103 178> 709 45 722 27<16 36.5> -VStem: 71 65<51 141> 74 58 575 59 -LayerCount: 2 -Fore -SplineSet -16 722 m 1x5a - 16 748 l 1 - 20 748 24 749 28 749 c 0x5a - 45 749 62 749 79 750 c 0 - 113 751 146 753 180 754 c 0 - 200 755 221 755 242 755 c 0 - 258 754 274 752 289 751 c 2 - 297 751 l 2 - 308 751 318 750 328 747 c 0 - 337 745 346 745 355 742 c 0 - 370 738 385 733 399 729 c 2 - 405 726 l 2 - 446 703 487 678 519 643 c 0 - 535 626 549 609 564 592 c 0 - 566 589 568 587 570 584 c 0 - 589 566 600 543 606 518 c 0 - 612 498 619 478 623 457 c 0 - 628 427 634 397 634 366 c 0 - 634 331 628 297 617 264 c 0 - 609 240 601 217 591 194 c 0 - 585 180 576 167 565 156 c 0 - 552 142 540 127 528 113 c 0 - 499 82 465 59 426 43 c 0 - 409 35 392 29 374 23 c 0 - 363 20 352 15 341 11 c 0 - 323 6 305 2 287 2 c 0 - 227 1 167 1 107 1 c 0 - 99 1 92 0 84 -1 c 0x6a - 71 -2 58 -3 44 -4 c 0 - 35 -5 27 -6 18 -6 c 0 - 16 -7 13 -7 10 -7 c 1 - 10 27 l 1 - 18 28 25 29 32 29 c 0 - 47 30 57 37 62 51 c 0 - 68 70 71 88 71 108 c 0xaa - 71 174 71 241 72 308 c 0 - 72 337 74 366 74 396 c 0x66 - 75 438 75 480 73 522 c 0 - 73 549 70 576 69 604 c 0 - 68 610 69 617 68 624 c 0 - 67 646 66 668 64 690 c 0 - 62 709 54 714 35 719 c 0 - 29 721 23 721 16 722 c 1x5a -136 51 m 1x6a - 150 50 164 48 178 48 c 0 - 201 47 224 45 247 46 c 0 - 267 48 288 52 307 56 c 0 - 347 63 385 76 420 98 c 0 - 433 106 447 115 459 126 c 0 - 484 148 507 174 523 205 c 0 - 532 221 540 239 549 255 c 0 - 557 269 563 284 567 299 c 0 - 576 324 578 350 575 377 c 0 - 571 412 563 446 552 479 c 0 - 545 497 538 515 530 533 c 0 - 522 549 513 565 501 580 c 0 - 490 592 477 603 465 615 c 0 - 439 638 410 657 381 677 c 0 - 374 681 365 685 358 689 c 0 - 344 696 329 698 314 702 c 0 - 289 709 263 710 237 709 c 0 - 220 709 203 709 187 711 c 0 - 172 713 158 711 144 706 c 0 - 138 704 136 700 135 695 c 0 - 135 692 134 690 134 687 c 0x6a - 134 668 133 649 133 630 c 0 - 132 597 132 565 132 532 c 0x66 - 133 466 133 399 134 332 c 0 - 135 242 135 151 136 60 c 2 - 136 51 l 1x6a -EndSplineSet -EndChar - -StartChar: R4 -Encoding: 65574 -1 226 -Width: 699 -GlyphClass: 2 -Flags: MW -HStem: -20 44 -2 21G<82 93> -1 21G<165.5 180 180 191> 701 53 701 55<132 200 132 239> -VStem: 72 73 580 74<422 495> -LayerCount: 2 -Fore -SplineSet -144 163 m 1x2c - 144 149 143 137 143 124 c 0 - 144 103 144 83 144 62 c 0 - 145 56 145 49 150 43 c 0 - 153 39 157 35 163 34 c 0 - 171 33 178 31 185 29 c 0 - 192 28 192 27 192 20 c 0 - 192 14 191 7 191 -1 c 1 - 180 -1 l 2 - 151 -1 122 -1 93 -2 c 0x2c - 71 -2 49 -3 26 -4 c 0 - 22 -4 18 -2 18 3 c 2 - 18 21 l 2 - 19 26 22 27 25 28 c 0 - 34 30 44 32 52 35 c 0 - 59 36 61 42 63 48 c 0 - 70 68 71 89 73 110 c 0 - 77 142 75 174 74 207 c 2 - 74 225 l 2 - 73 285 73 345 72 405 c 0 - 72 426 70 448 69 469 c 0 - 68 490 68 511 66 532 c 0 - 63 571 61 609 62 647 c 0 - 63 663 63 679 63 695 c 0 - 63 705 59 711 51 716 c 0 - 39 723 28 728 15 730 c 0 - 11 731 10 733 10 737 c 2 - 10 752 l 1x54 - 20 752 30 753 39 753 c 0 - 55 753 72 753 88 754 c 0 - 102 754 117 757 132 756 c 0 - 163 756 194 755 226 754 c 0 - 254 753 282 752 310 749 c 0 - 345 746 379 743 413 735 c 0 - 428 731 442 725 457 720 c 0 - 464 718 471 715 478 712 c 0 - 503 702 525 689 545 671 c 0 - 559 659 572 647 585 634 c 0 - 596 623 605 611 614 599 c 0 - 622 587 630 575 636 562 c 0 - 645 541 653 518 654 495 c 0 - 654 484 655 474 656 463 c 0 - 657 442 654 421 648 401 c 0 - 640 373 631 346 616 321 c 0 - 599 291 576 266 550 243 c 0 - 541 235 531 227 521 220 c 0 - 511 214 500 208 489 202 c 0 - 478 197 467 191 455 186 c 0 - 446 183 436 179 426 177 c 0 - 410 173 395 170 379 167 c 0 - 374 166 370 166 365 166 c 1 - 366 164 367 162 368 161 c 0 - 383 143 401 128 418 113 c 0 - 425 107 433 101 440 95 c 0 - 442 94 444 92 446 91 c 2 - 497 58 l 2 - 506 53 515 49 524 46 c 0 - 545 39 565 31 587 27 c 0 - 601 24 615 25 629 24 c 0 - 648 23 667 25 685 36 c 1 - 689 33 690 29 688 25 c 2 - 682 16 l 2 - 670 0 656 -11 637 -17 c 0 - 611 -25 586 -22 560 -20 c 0 - 551 -18 542 -18 533 -15 c 0 - 522 -12 511 -7 502 -2 c 0 - 479 10 457 22 435 36 c 0x8e - 413 51 391 67 369 83 c 0 - 364 87 358 90 353 93 c 0 - 339 103 324 112 310 122 c 0 - 306 125 302 128 297 131 c 0 - 286 140 275 147 264 156 c 0 - 259 159 255 161 249 161 c 0 - 233 160 217 161 201 162 c 0 - 186 162 170 163 155 163 c 2 - 144 163 l 1x2c -145 223 m 1 - 147 223 148 222 149 222 c 0 - 172 222 195 221 217 221 c 0 - 227 220 236 221 245 221 c 0 - 267 221 288 220 309 220 c 0 - 311 220 313 221 315 221 c 0 - 328 223 341 225 354 228 c 0 - 368 230 382 233 396 236 c 0 - 406 238 415 242 425 244 c 0 - 445 247 461 258 477 269 c 0 - 491 280 505 291 516 305 c 0 - 518 309 522 312 525 315 c 0 - 536 323 544 334 550 346 c 0 - 559 364 567 383 575 401 c 0 - 578 409 580 418 580 426 c 0 - 581 462 580 497 570 532 c 0 - 562 557 550 579 533 599 c 0 - 524 609 515 619 503 626 c 0x2e - 477 642 451 658 423 670 c 0 - 418 672 414 674 409 675 c 0 - 385 680 360 686 336 690 c 0 - 305 696 274 700 242 700 c 0 - 241 700 240 700 239 701 c 2 - 200 701 l 2 - 184 701 168 700 152 699 c 0 - 138 699 138 699 138 684 c 0 - 139 637 140 589 141 542 c 0 - 141 525 141 509 142 493 c 0 - 143 455 145 417 145 380 c 2 - 145 232 l 1 - 145 223 l 1 -EndSplineSet -Kerns2: 227 -43 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: v1 -Encoding: 65575 -1 227 -Width: 441 -GlyphClass: 2 -Flags: MW -HStem: -24 21G 309 28 440 42 -VStem: 12 147<309 330> 250 11 384 46 -LayerCount: 2 -Fore -SplineSet -261 408 m 0 - 251 411 251 412 250 421 c 0 - 249 435 255 445 264 454 c 0 - 274 464 286 471 299 477 c 0 - 304 480 310 482 317 482 c 0 - 335 483 353 481 370 474 c 0 - 386 466 399 456 409 441 c 0 - 417 430 422 419 425 406 c 0 - 428 387 431 370 430 351 c 0 - 428 328 425 305 418 282 c 0 - 408 256 398 229 385 204 c 2 - 361 153 l 2 - 352 135 342 117 332 99 c 0 - 318 73 304 47 285 25 c 0 - 277 15 270 5 268 -9 c 0 - 268 -10 266 -12 264 -13 c 0 - 256 -17 248 -20 240 -24 c 0 - 236 -25 233 -24 231 -21 c 0 - 229 -19 227 -18 225 -15 c 0 - 212 7 193 27 183 52 c 0 - 183 53 182 54 181 55 c 0 - 161 84 148 118 130 148 c 0 - 127 154 125 160 122 165 c 0 - 113 183 105 201 96 218 c 0 - 96 219 95 220 95 221 c 0 - 80 239 71 261 60 280 c 0 - 56 286 52 291 47 295 c 0 - 44 298 40 300 36 300 c 0 - 28 301 20 302 10 303 c 1 - 11 311 11 319 12 328 c 0 - 12 332 15 333 19 334 c 0 - 25 334 31 335 37 335 c 0 - 55 336 74 337 92 337 c 0 - 112 337 132 336 152 335 c 0 - 159 335 159 334 159 327 c 2 - 159 309 l 1 - 146 309 l 2 - 137 309 128 308 121 302 c 0 - 117 300 116 297 118 294 c 0 - 119 289 121 285 123 281 c 0 - 130 267 138 253 146 239 c 0 - 156 219 166 198 177 179 c 0 - 185 164 195 150 203 135 c 0 - 209 126 214 115 219 105 c 2 - 231 81 l 2 - 236 73 241 65 247 57 c 1 - 256 71 265 84 273 98 c 0 - 285 117 295 138 306 158 c 0 - 315 175 325 193 334 211 c 0 - 344 231 354 252 362 273 c 0 - 370 293 377 313 382 333 c 0 - 385 345 384 358 384 370 c 0 - 383 380 383 390 377 399 c 0 - 363 423 342 437 314 440 c 0 - 292 441 275 432 264 413 c 0 - 263 411 262 410 261 408 c 0 -EndSplineSet -Kerns2: 228 23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: w1 -Encoding: 65576 -1 228 -Width: 665 -GlyphClass: 2 -Flags: MW -HStem: -10 21G -4 21G 304 25 308 24 -VStem: 11 125<307 311 307 326 307 328.5> 520 133 -LayerCount: 2 -Fore -SplineSet -520 308 m 1x5c - 520 330 l 1 - 565 333 610 333 655 334 c 1 - 655 327 l 2 - 654 323 654 318 653 314 c 0 - 650 313 647 312 644 312 c 0 - 623 311 607 300 596 283 c 0 - 588 271 582 258 576 244 c 0 - 562 213 550 181 533 152 c 0 - 531 149 530 146 529 144 c 0 - 525 133 520 123 515 112 c 0 - 510 101 506 90 500 79 c 0 - 491 60 481 41 471 23 c 0 - 468 16 464 9 460 2 c 0 - 456 -5 445 -6 439 0 c 0 - 433 7 428 15 423 23 c 2 - 408 56 l 2 - 404 65 399 74 395 82 c 0x5c - 387 100 380 117 372 134 c 2 - 360 158 l 2 - 355 170 348 182 343 194 c 0 - 337 209 331 225 325 240 c 0 - 324 243 322 244 320 248 c 1 - 318 244 316 242 315 239 c 0 - 308 218 301 197 293 177 c 0 - 287 160 279 143 272 126 c 0 - 258 93 244 59 234 24 c 0 - 231 15 230 5 223 -3 c 0 - 216 -12 209 -13 201 -4 c 0 - 195 4 190 12 185 20 c 0 - 178 31 172 43 166 54 c 0 - 157 68 150 83 141 98 c 0 - 129 118 116 137 105 158 c 0 - 90 185 75 212 61 239 c 0 - 53 255 45 272 37 288 c 0 - 33 297 26 303 15 301 c 0 - 14 301 13 301 11 302 c 0 - 11 310 10 318 11 326 c 0 - 11 331 14 333 20 333 c 0 - 29 333 38 332 47 332 c 0 - 76 331 106 330 137 329 c 1 - 137 322 136 315 136 307 c 1 - 131 306 126 305 122 304 c 0 - 119 304 116 303 113 301 c 0 - 105 298 104 294 107 286 c 0 - 109 282 111 278 112 274 c 0xac - 119 249 130 226 143 203 c 0 - 157 178 171 153 184 127 c 0 - 188 121 191 115 197 111 c 0 - 202 107 205 100 208 95 c 0 - 209 94 210 93 211 91 c 1 - 215 94 216 99 217 103 c 0 - 223 122 229 140 236 158 c 0 - 246 185 256 211 266 238 c 0 - 270 246 272 256 276 264 c 0 - 285 289 294 313 303 337 c 0 - 306 345 312 350 320 350 c 2 - 321 350 l 2 - 327 350 334 352 337 349 c 0 - 343 345 346 338 350 332 c 0 - 354 325 357 317 360 310 c 0 - 364 299 367 288 371 277 c 0 - 374 268 378 260 382 252 c 0 - 388 242 393 231 398 220 c 0 - 404 209 408 199 413 188 c 0 - 420 173 425 158 432 143 c 0 - 438 129 445 115 453 101 c 1 - 454 103 454 104 455 105 c 0 - 474 142 494 179 513 218 c 0 - 524 241 532 265 541 289 c 0 - 546 300 541 307 529 308 c 2 - 520 308 l 1x5c -EndSplineSet -Kerns2: 229 28 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: w2 -Encoding: 65577 -1 229 -Width: 587 -GlyphClass: 2 -Flags: MW -HStem: -4 21G<420 430> -4 65 -3 21G<379.5 381> 0 21G<221 222> 286 58 295 34 339 49 -VStem: 10 103<315.5 325.5 315.5 327 315.5 327> -LayerCount: 2 -Fore -SplineSet -10 295 m 1x15 - 10 327 l 1 - 12 327 14 328 16 328 c 0 - 46 328 76 329 106 329 c 0 - 112 329 113 329 113 322 c 0 - 113 309 116 297 124 286 c 0 - 128 280 132 274 136 267 c 1 - 141 272 145 276 149 279 c 2 - 188 315 l 2x15 - 195 321 203 327 211 332 c 0 - 227 344 245 345 264 344 c 0 - 267 344 270 341 272 340 c 0 - 276 339 280 337 284 336 c 0 - 289 335 293 332 296 328 c 0 - 299 324 302 321 306 318 c 0 - 311 314 315 309 318 303 c 0 - 322 296 327 289 332 281 c 1 - 341 290 350 297 357 306 c 0 - 369 322 383 336 399 348 c 0x19 - 415 361 433 370 450 380 c 0 - 453 382 456 382 460 383 c 0 - 471 385 484 387 496 389 c 0 - 509 391 523 391 536 387 c 0 - 547 384 557 379 563 367 c 0 - 567 358 573 350 574 340 c 0 - 575 323 578 306 574 288 c 0 - 570 269 566 250 561 230 c 0 - 557 217 551 203 545 190 c 0 - 530 161 516 131 500 102 c 0 - 490 82 478 63 463 45 c 0 - 462 43 461 41 460 40 c 2 - 436 1 l 2 - 434 -3 432 -4 428 -4 c 0 - 412 -4 396 -4 381 -3 c 0 - 378 -3 375 0 374 2 c 0 - 369 13 363 25 358 36 c 0 - 356 40 355 45 353 49 c 0 - 350 56 347 63 346 70 c 0x27 - 343 82 339 93 335 105 c 0 - 333 111 331 116 329 122 c 0 - 327 125 326 128 324 131 c 1 - 319 121 315 113 311 104 c 0 - 298 79 286 54 274 30 c 0 - 269 20 263 11 259 1 c 0 - 256 -3 254 -5 249 -4 c 0x85 - 240 -3 231 -2 222 0 c 0 - 220 0 219 1 218 2 c 0 - 213 11 209 20 204 29 c 0 - 201 34 199 38 197 43 c 0 - 190 54 185 65 179 76 c 0 - 172 89 166 103 159 115 c 0 - 148 136 136 157 124 178 c 0 - 122 181 121 183 119 186 c 0 - 109 211 92 233 79 256 c 0 - 74 264 69 271 63 278 c 0 - 61 282 57 285 53 287 c 0 - 42 291 32 295 20 295 c 2 - 10 295 l 1x15 -413 61 m 1x47 - 420 71 425 80 431 90 c 0 - 443 109 454 127 466 146 c 0 - 472 157 479 168 485 180 c 0 - 491 191 496 203 503 214 c 0 - 509 225 515 235 519 247 c 0 - 526 264 529 282 527 300 c 0 - 526 303 525 305 524 308 c 0 - 521 313 519 319 516 324 c 0 - 511 331 504 337 495 339 c 0 - 482 344 470 341 459 335 c 0 - 444 328 430 318 417 308 c 0 - 407 302 400 294 393 284 c 0 - 380 267 365 251 352 235 c 0 - 350 233 349 230 350 229 c 0 - 354 214 358 199 363 185 c 0 - 374 154 384 123 395 92 c 0 - 399 81 404 70 413 61 c 1x47 -166 224 m 0x19 - 169 220 172 215 173 211 c 0 - 179 194 185 177 196 162 c 0 - 200 155 204 146 208 138 c 0 - 216 125 223 111 231 98 c 0 - 233 94 236 92 241 92 c 0 - 245 93 247 96 248 100 c 0 - 249 102 249 105 251 107 c 0 - 263 133 276 159 288 185 c 0 - 289 187 290 191 289 193 c 0 - 283 209 278 225 271 240 c 0 - 264 255 255 269 247 283 c 0 - 245 286 242 287 237 286 c 0 - 224 282 215 274 206 265 c 0 - 194 254 183 242 172 231 c 0 - 170 228 168 226 166 224 c 0x19 -EndSplineSet -Kerns2: 230 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: y1 -Encoding: 65578 -1 230 -Width: 461 -GlyphClass: 2 -Flags: MW -HStem: -202 49 302 29 311 22<48 49> 397 35 -VStem: -199 31 48 151<311 332 302 333 302 333> 401 49<330 330> -LayerCount: 2 -Fore -SplineSet -48 311 m 1xbe - 48 333 l 1 - 56 333 l 2 - 75 333 95 334 114 333 c 0 - 127 333 141 331 154 331 c 0 - 167 331 180 332 193 332 c 2 - 199 332 l 1 - 199 302 l 1 - 194 302 188 301 183 300 c 0 - 171 299 172 292 175 285 c 2 - 181 273 l 2 - 184 269 187 264 190 259 c 0 - 198 249 206 238 213 227 c 0 - 215 224 216 222 218 219 c 0xde - 232 200 242 179 254 159 c 0 - 259 150 266 143 271 134 c 0 - 275 128 279 122 281 115 c 0 - 283 108 286 101 292 95 c 0 - 295 92 297 87 300 83 c 1 - 305 89 309 95 313 101 c 0 - 320 114 328 127 336 140 c 0 - 336 141 337 142 337 143 c 0 - 348 167 358 190 369 214 c 0 - 370 218 372 222 373 226 c 0 - 374 229 374 231 375 234 c 0 - 388 259 392 287 398 315 c 0 - 400 320 401 325 401 330 c 0 - 403 351 394 368 386 386 c 0 - 382 396 375 399 365 397 c 0 - 351 394 339 387 329 376 c 0 - 321 367 314 357 306 347 c 1 - 298 352 289 357 281 362 c 1 - 283 366 285 371 288 374 c 0 - 298 387 309 399 319 411 c 0 - 324 417 330 422 336 425 c 0 - 341 428 346 430 352 431 c 0 - 357 432 363 432 369 432 c 0 - 378 433 387 431 395 426 c 0 - 403 421 412 417 419 410 c 0 - 425 405 430 397 434 389 c 0 - 440 377 445 365 449 352 c 0 - 452 345 451 337 450 330 c 0 - 449 318 447 307 444 295 c 0 - 440 273 433 251 425 231 c 0 - 421 219 418 208 413 197 c 0 - 406 180 398 163 390 146 c 0 - 377 120 365 94 352 69 c 0 - 348 61 342 53 338 46 c 0 - 317 11 293 -22 268 -54 c 0 - 253 -72 237 -88 220 -104 c 0 - 212 -113 202 -120 193 -128 c 0 - 186 -133 180 -139 173 -144 c 0 - 159 -154 144 -162 129 -170 c 0 - 111 -179 92 -187 73 -192 c 0 - 44 -200 15 -205 -14 -204 c 0 - -33 -203 -53 -201 -72 -200 c 0 - -75 -199 -78 -198 -82 -197 c 0 - -91 -194 -100 -192 -109 -189 c 0 - -110 -188 -111 -188 -111 -188 c 2 - -130 -178 -150 -170 -166 -156 c 0 - -171 -151 -176 -146 -179 -139 c 0 - -185 -126 -191 -113 -195 -99 c 0 - -200 -84 -202 -68 -199 -53 c 0 - -198 -45 -197 -41 -187 -40 c 0 - -182 -40 -176 -38 -172 -37 c 2 - -168 -37 l 1 - -168 -49 l 2 - -169 -72 -159 -92 -145 -109 c 0 - -144 -111 -142 -112 -141 -114 c 0 - -133 -125 -121 -129 -109 -134 c 0 - -105 -136 -100 -137 -95 -138 c 0 - -79 -143 -63 -148 -46 -152 c 0 - -33 -155 -20 -155 -7 -153 c 0 - 4 -152 16 -151 28 -150 c 2 - 58 -144 l 2 - 71 -141 84 -137 97 -134 c 2 - 106 -131 l 2 - 128 -122 147 -109 165 -93 c 0 - 182 -78 198 -62 212 -43 c 0 - 224 -28 235 -13 248 1 c 0 - 256 12 256 23 250 34 c 0 - 245 45 238 55 231 65 c 0 - 218 86 203 106 190 127 c 0 - 179 144 169 162 159 179 c 0 - 156 183 154 187 151 191 c 0 - 141 204 132 218 124 232 c 0 - 119 244 113 255 105 265 c 0 - 98 276 90 286 81 296 c 0 - 74 304 65 309 54 310 c 0 - 52 310 50 311 48 311 c 1xbe -EndSplineSet -Kerns2: 231 9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: q1 -Encoding: 65579 -1 231 -Width: 549 -GlyphClass: 2 -Flags: MW -HStem: -182 42<661.5 666> -18 41 301 46 312 43 -VStem: 12 50 360 51<-114 20> 485 27 -LayerCount: 2 -Fore -SplineSet -360 24 m 1xee - 354 21 348 19 343 16 c 0 - 330 10 318 3 304 -2 c 0 - 290 -8 274 -13 259 -16 c 0 - 246 -18 232 -18 219 -18 c 0 - 211 -19 203 -17 195 -18 c 0 - 173 -18 152 -14 131 -9 c 0 - 118 -6 104 -1 92 5 c 0 - 84 9 77 15 70 21 c 0 - 55 36 40 51 29 69 c 0 - 28 71 26 73 26 75 c 0 - 19 93 14 110 12 129 c 0 - 10 153 11 177 14 200 c 0 - 16 210 20 220 23 229 c 0 - 27 239 32 249 37 258 c 0 - 38 261 40 265 42 267 c 0 - 63 289 84 311 114 322 c 0 - 133 329 153 333 172 339 c 0 - 179 341 185 343 192 345 c 0 - 211 349 230 349 250 347 c 2 - 298 341 l 2 - 303 340 308 338 313 337 c 0 - 317 336 321 334 325 333 c 2 - 327 333 l 1 - 335 327 342 322 350 317 c 0 - 351 316 352 314 354 314 c 0 - 364 310 372 303 378 294 c 1 - 381 300 l 1 - 384 316 394 328 405 338 c 0xee - 411 343 417 347 423 350 c 0 - 438 358 454 357 469 355 c 0 - 477 353 485 350 493 347 c 0 - 502 344 505 336 508 329 c 0 - 516 311 514 292 512 273 c 0 - 511 268 507 266 502 267 c 0 - 497 268 491 269 485 270 c 1 - 485 285 l 2 - 484 291 483 296 481 301 c 0 - 476 311 469 315 457 312 c 0 - 447 310 439 305 433 296 c 0 - 422 281 419 263 418 245 c 0xde - 416 225 415 204 414 183 c 0 - 413 143 411 102 411 62 c 0 - 411 9 412 -44 412 -97 c 0 - 412 -102 411 -106 411 -111 c 0 - 411 -117 412 -118 419 -118 c 0 - 431 -119 442 -119 454 -120 c 2 - 493 -123 l 2 - 513 -125 533 -128 553 -130 c 0 - 573 -132 593 -136 614 -137 c 0 - 633 -139 652 -140 671 -140 c 0 - 694 -140 718 -139 741 -138 c 0 - 759 -138 778 -138 796 -136 c 0 - 821 -133 846 -132 870 -122 c 0 - 872 -121 875 -121 877 -121 c 0 - 883 -121 887 -124 888 -130 c 0 - 888 -134 889 -139 888 -143 c 0 - 887 -152 881 -155 874 -158 c 0 - 849 -168 824 -172 798 -175 c 2 - 759 -178 l 2 - 728 -179 697 -181 666 -182 c 0 - 633 -182 600 -182 568 -181 c 0 - 562 -181 555 -180 549 -180 c 0 - 517 -176 485 -173 453 -176 c 0 - 421 -179 391 -190 368 -213 c 0 - 367 -215 365 -216 363 -217 c 0 - 359 -219 356 -219 354 -215 c 0 - 351 -211 348 -208 345 -205 c 0 - 342 -202 342 -199 343 -195 c 0 - 354 -163 359 -131 360 -97 c 2 - 360 20 l 1 - 360 24 l 1xee -361 152 m 2 - 361 214 l 2 - 361 216 361 218 360 221 c 0 - 354 232 347 243 337 251 c 0 - 330 257 322 263 316 270 c 0 - 308 281 296 287 284 293 c 0 - 259 304 232 303 205 301 c 0 - 197 300 189 300 182 297 c 0 - 157 287 132 278 110 261 c 0 - 100 253 91 245 85 235 c 0 - 74 218 66 201 65 180 c 0 - 64 164 62 149 62 133 c 0 - 62 122 66 113 70 104 c 0 - 76 93 83 82 90 72 c 0 - 97 63 106 56 114 48 c 0 - 118 44 123 40 128 38 c 0 - 142 32 156 25 172 25 c 0 - 174 25 175 25 177 24 c 0 - 192 21 206 21 221 23 c 0 - 232 24 242 26 252 28 c 0 - 257 29 263 29 268 32 c 0 - 281 38 294 45 307 51 c 0 - 326 60 342 72 358 84 c 0 - 361 86 362 88 362 92 c 0 - 361 112 361 132 361 152 c 2 -EndSplineSet -EndChar - -StartChar: r1 -Encoding: 65580 -1 232 -Width: 486 -GlyphClass: 2 -Flags: MW -HStem: -4 21G<44.5 50> 0 29<153 154.5 126 163 153 153> 348 56 364 43 -VStem: 61 45<121 173> -LayerCount: 2 -Fore -SplineSet -112 243 m 1x58 - 119 253 126 263 134 273 c 0 - 142 283 150 294 159 303 c 0 - 171 317 184 330 200 340 c 0 - 218 352 233 366 253 375 c 0 - 259 378 265 381 270 384 c 0 - 282 391 294 394 307 397 c 0 - 322 400 336 403 351 405 c 0 - 362 407 374 408 385 407 c 0 - 401 406 417 404 433 402 c 0 - 441 401 449 401 456 399 c 0x58 - 468 397 475 389 475 378 c 0 - 476 362 469 353 452 349 c 0 - 441 346 431 346 419 347 c 0 - 414 348 409 348 404 349 c 0x68 - 394 354 382 356 372 360 c 0 - 363 364 354 365 345 364 c 0 - 323 361 302 357 282 349 c 0 - 268 343 255 338 242 331 c 0 - 233 326 226 320 219 314 c 0 - 197 297 177 278 160 256 c 0 - 150 242 140 227 132 211 c 0 - 125 197 120 183 114 169 c 0 - 109 158 106 146 106 134 c 0 - 106 108 104 82 103 56 c 0 - 103 52 104 49 105 46 c 0 - 108 34 113 30 126 29 c 2 - 152 29 l 2 - 157 29 159 28 160 23 c 0 - 160 15 162 8 163 0 c 1 - 153 0 l 2x58 - 118 -2 84 -3 50 -4 c 0 - 39 -4 28 -6 18 -7 c 0 - 16 -7 13 -7 10 -6 c 2 - 10 14 l 2 - 10 16 12 18 15 19 c 0 - 20 21 26 24 32 25 c 0 - 40 27 46 32 51 38 c 0 - 53 41 54 44 54 48 c 0 - 56 59 56 70 57 81 c 0x98 - 58 89 58 98 59 106 c 0 - 60 129 61 150 61 173 c 0 - 62 185 60 196 59 208 c 0 - 58 231 57 253 56 276 c 0 - 55 286 51 292 40 291 c 0 - 32 290 25 288 16 286 c 1 - 15 292 14 299 14 305 c 0 - 14 307 17 310 19 311 c 0 - 24 314 30 317 36 319 c 0 - 46 324 57 330 68 335 c 0 - 78 339 88 337 97 333 c 0 - 102 331 104 326 104 321 c 0 - 106 296 108 272 110 248 c 2 - 110 244 l 1 - 111 244 112 243 112 243 c 1x58 -EndSplineSet -Kerns2: 186 -104 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: b1 -Encoding: 65581 -1 233 -Width: 353 -GlyphClass: 2 -Flags: MW -HStem: -10 67 268 62 553 50 -VStem: 50 59<179 212> 56 54<299 383> 283 57 -LayerCount: 2 -Fore -SplineSet --74 495 m 0xec - -82 496 -91 498 -100 499 c 0 - -100 501 -100 503 -99 504 c 0 - -96 523 -86 539 -74 554 c 0 - -65 566 -57 579 -44 587 c 0 - -24 598 -2 606 21 603 c 0 - 52 599 75 582 90 554 c 0 - 98 538 101 520 104 502 c 0 - 106 486 108 469 109 452 c 0 - 111 437 111 422 112 406 c 0 - 113 398 112 390 112 382 c 0 - 111 378 111 375 111 372 c 0 - 110 348 110 325 110 301 c 0 - 110 297 111 292 111 287 c 1 - 130 301 148 311 169 319 c 0 - 178 323 188 326 197 328 c 0 - 208 331 219 331 230 330 c 0 - 236 330 241 329 248 328 c 2 - 251 328 l 1 - 262 322 275 318 284 308 c 0 - 286 306 288 303 290 301 c 0 - 301 293 309 281 316 269 c 0 - 328 249 335 226 340 203 c 0 - 345 173 343 143 338 114 c 0 - 334 94 327 74 315 57 c 0 - 313 54 312 52 310 50 c 0 - 286 23 258 3 224 -6 c 0 - 201 -12 178 -15 155 -10 c 0 - 154 -9 152 -9 150 -8 c 0 - 141 -3 133 3 124 9 c 0 - 120 12 117 15 113 18 c 0 - 101 29 91 41 82 54 c 0 - 73 68 65 83 61 100 c 0 - 57 118 54 136 52 154 c 0 - 50 169 50 185 50 200 c 0 - 50 224 51 249 52 273 c 0 - 53 294 55 315 56 336 c 0 - 57 352 56 367 56 383 c 2 - 56 400 l 2 - 56 412 57 424 56 436 c 0 - 54 453 54 470 50 486 c 0 - 46 503 39 519 31 534 c 0 - 24 551 8 556 -10 553 c 0 - -39 548 -59 530 -70 503 c 0 - -71 501 -72 498 -74 495 c 0xec -109 179 m 1xf4 - 106 179 l 1 - 110 160 113 141 116 122 c 0 - 118 112 123 103 129 96 c 0 - 133 91 138 86 142 81 c 0 - 150 71 161 65 172 61 c 0 - 186 56 200 55 215 57 c 0 - 232 58 248 61 259 77 c 0 - 260 78 261 79 262 79 c 0 - 268 87 274 95 274 106 c 0 - 274 109 276 111 276 114 c 0 - 279 129 283 145 283 160 c 0 - 283 189 277 217 260 242 c 0 - 255 249 248 257 241 260 c 0 - 223 269 204 272 184 268 c 0 - 165 264 150 256 139 241 c 0 - 133 233 127 224 120 217 c 0 - 111 206 105 194 109 179 c 1xf4 -EndSplineSet -Kerns2: 234 19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: c1 -Encoding: 65582 -1 234 -Width: 393 -GlyphClass: 2 -Flags: MW -HStem: -12 43 -1 21G<140 141> 196 93 283 48<213 215.5 205 221> -VStem: 10 58 -LayerCount: 2 -Fore -SplineSet -352 108 m 1x98 - 360 106 369 102 378 99 c 1 - 377 96 377 94 375 92 c 0 - 365 75 357 57 343 42 c 0 - 335 33 326 26 317 18 c 2 - 311 12 l 2 - 309 10 306 7 304 6 c 0 - 287 0 271 -10 253 -11 c 0 - 236 -13 218 -13 201 -12 c 0 - 191 -12 180 -10 170 -8 c 0 - 166 -7 162 -6 157 -5 c 0x98 - 152 -4 147 -3 141 -1 c 0 - 139 -1 138 -1 136 0 c 0 - 122 6 107 8 93 16 c 0 - 93 17 93 17 92 17 c 0 - 78 21 69 32 59 41 c 0 - 56 43 54 45 52 48 c 0 - 45 57 39 66 33 75 c 0 - 21 91 17 109 13 128 c 0 - 7 156 11 184 18 211 c 0 - 24 236 39 255 56 272 c 0 - 85 299 120 316 158 326 c 0 - 167 329 178 329 187 330 c 0 - 194 331 201 331 209 331 c 0 - 222 331 236 330 250 329 c 0 - 251 329 253 329 254 328 c 0 - 266 324 279 319 291 315 c 0 - 299 312 307 310 315 307 c 0x58 - 323 303 332 299 340 294 c 0 - 349 288 353 288 361 294 c 0 - 367 299 369 299 375 295 c 0 - 376 294 378 293 379 292 c 0 - 383 291 383 288 382 285 c 0 - 379 270 377 256 374 241 c 2 - 371 220 l 2 - 370 212 368 204 366 196 c 1 - 343 196 l 1 - 339 205 335 213 330 221 c 0 - 328 224 326 227 323 229 c 0 - 305 244 287 260 266 270 c 0xa8 - 252 277 237 282 221 283 c 0 - 205 283 189 286 174 285 c 0 - 149 284 126 277 105 262 c 0 - 88 250 80 232 74 213 c 0 - 70 196 68 179 68 161 c 0 - 68 143 72 127 78 110 c 0 - 79 105 82 101 85 96 c 0 - 89 91 91 85 96 81 c 0 - 101 76 107 72 113 69 c 0 - 122 64 132 59 141 55 c 0 - 160 45 181 41 202 36 c 0 - 211 34 221 32 230 31 c 0 - 246 29 261 33 276 39 c 0 - 279 40 281 41 284 42 c 0 - 303 46 316 57 327 72 c 0 - 335 84 343 96 352 108 c 1x98 -EndSplineSet -EndChar - -StartChar: d1 -Encoding: 65583 -1 235 -Width: 448 -GlyphClass: 2 -Flags: MW -HStem: -82 31 0 50 284 42 522 51 -VStem: 12 57 229 16 331 61<273 354 273 362.5> 336 55<209 256> -LayerCount: 2 -Fore -SplineSet -331 304 m 1xfe - 331 354 l 2 - 331 371 332 388 332 405 c 0 - 331 427 330 448 329 470 c 0 - 329 481 326 492 322 503 c 0 - 313 526 296 526 276 516 c 0 - 270 512 266 506 262 500 c 0xfe - 256 491 251 481 245 471 c 0 - 241 472 235 473 229 474 c 1 - 226 481 229 487 231 493 c 0 - 237 509 245 524 254 539 c 0 - 268 560 288 572 313 573 c 0 - 328 574 344 571 358 564 c 0 - 365 560 371 555 373 548 c 0 - 377 537 380 526 382 516 c 0 - 384 502 385 487 386 473 c 0 - 386 465 386 456 387 446 c 0 - 388 424 387 402 389 380 c 0 - 392 345 392 311 392 277 c 0 - 392 269 391 260 391 252 c 0 - 392 225 392 197 394 169 c 0 - 395 154 398 139 400 124 c 0 - 404 104 407 85 411 66 c 0 - 412 60 412 55 413 49 c 0 - 420 18 437 -9 459 -32 c 0 - 467 -41 478 -47 490 -49 c 0xfd - 505 -52 520 -55 536 -51 c 0 - 542 -50 547 -48 554 -46 c 1 - 556 -52 558 -58 560 -65 c 1 - 550 -69 542 -74 532 -76 c 0 - 518 -79 503 -82 487 -82 c 0 - 468 -81 450 -78 432 -71 c 0 - 429 -70 426 -68 424 -66 c 0 - 406 -50 387 -35 374 -14 c 0 - 368 -5 363 6 358 16 c 0 - 353 27 349 38 345 50 c 1 - 339 45 332 40 325 36 c 0 - 312 27 297 21 282 16 c 0 - 268 11 254 6 240 2 c 0 - 215 -3 189 -3 164 0 c 0 - 140 4 117 11 94 20 c 0 - 80 26 67 33 56 46 c 0 - 48 57 36 66 31 79 c 0 - 24 95 16 110 12 127 c 0 - 9 140 11 154 13 167 c 0 - 15 190 24 210 34 230 c 0 - 53 270 85 297 126 313 c 0 - 150 322 175 329 201 328 c 0 - 226 327 251 326 276 324 c 0 - 284 323 292 320 300 317 c 0 - 310 313 320 309 331 304 c 1xfe -70 168 m 0 - 70 143 71 142 80 126 c 0 - 83 120 87 114 90 109 c 0 - 97 99 104 90 114 82 c 0 - 132 68 153 60 175 54 c 0 - 184 51 194 49 204 50 c 0 - 218 50 231 53 246 55 c 0 - 261 57 275 63 288 71 c 0 - 303 80 317 91 332 102 c 0 - 338 106 341 111 340 120 c 0 - 338 150 337 179 336 209 c 0 - 336 222 331 233 321 242 c 0 - 302 258 280 267 257 273 c 0xfd - 246 276 234 277 224 280 c 0 - 203 287 183 285 163 280 c 0 - 159 279 156 279 152 277 c 0 - 132 269 114 257 98 243 c 0 - 91 236 84 226 80 217 c 0 - 73 201 70 184 70 168 c 0 -EndSplineSet -EndChar - -StartChar: e1 -Encoding: 65584 -1 236 -Width: 382 -GlyphClass: 2 -Flags: MW -HStem: -11 47 94 42 287 46 -VStem: 12 47 328 42<123.5 158.5> -LayerCount: 2 -Fore -SplineSet -312 70 m 1 - 320 62 329 54 337 46 c 1 - 333 38 326 34 320 30 c 0 - 303 21 287 11 271 3 c 0 - 266 0 262 0 257 -2 c 0 - 232 -12 206 -15 180 -11 c 0 - 159 -8 138 -7 120 4 c 0 - 106 13 93 21 80 30 c 0 - 73 35 66 40 59 46 c 0 - 55 50 50 55 46 60 c 0 - 25 82 16 108 12 137 c 0 - 8 169 11 200 22 229 c 0 - 27 241 32 253 41 262 c 0 - 42 263 43 263 43 264 c 0 - 46 278 58 283 68 291 c 0 - 77 298 87 304 97 310 c 0 - 115 320 134 326 155 329 c 0 - 169 331 183 334 197 335 c 0 - 211 336 225 335 239 332 c 0 - 249 329 259 328 269 325 c 0 - 276 324 282 320 288 317 c 0 - 296 314 303 310 311 306 c 0 - 321 299 331 292 341 284 c 0 - 344 281 346 277 348 273 c 0 - 358 249 364 224 369 199 c 0 - 373 174 371 150 370 125 c 0 - 370 122 369 119 368 116 c 0 - 365 105 362 103 351 102 c 0 - 343 102 336 101 329 101 c 0 - 319 100 309 98 299 97 c 0 - 275 94 252 93 228 94 c 0 - 206 94 184 91 162 89 c 0 - 147 88 132 88 118 87 c 0 - 116 87 115 88 114 88 c 1 - 114 128 l 1 - 119 129 124 130 129 130 c 0 - 165 128 200 132 236 135 c 0 - 254 136 272 136 290 137 c 0 - 300 138 310 138 320 139 c 0 - 324 139 328 146 328 151 c 0 - 328 166 329 180 327 194 c 0 - 326 206 322 218 319 229 c 0 - 316 241 308 249 298 255 c 0 - 283 264 269 275 253 280 c 0 - 245 283 237 287 228 287 c 0 - 201 290 173 291 146 282 c 0 - 120 273 98 260 84 235 c 0 - 77 222 69 210 64 197 c 0 - 59 182 57 166 59 150 c 0 - 62 135 66 120 73 106 c 0 - 76 100 79 94 84 90 c 0 - 95 79 106 69 118 60 c 0 - 125 54 135 50 145 48 c 0 - 154 46 162 42 171 40 c 0 - 190 35 210 34 229 36 c 0 - 242 37 254 41 266 46 c 0 - 281 54 296 62 312 70 c 1 -EndSplineSet -Kerns2: 237 -38 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: f1 -Encoding: 65585 -1 237 -Width: 311 -GlyphClass: 2 -Flags: MW -HStem: -306 44<-185 -141> 215 33<196.5 236 196.5 215> 523 49 -VStem: -372 39 -LayerCount: 2 -Fore -SplineSet -385 527 m 1 - 370 526 356 525 342 523 c 0 - 336 523 330 520 324 518 c 0 - 318 516 312 512 307 507 c 0 - 302 501 296 496 290 491 c 0 - 272 477 260 459 250 439 c 0 - 243 427 236 415 231 401 c 0 - 225 386 220 371 216 355 c 0 - 211 341 208 327 204 312 c 0 - 201 299 197 286 194 273 c 0 - 192 268 192 263 191 257 c 0 - 190 251 193 248 200 248 c 0 - 209 248 219 249 228 249 c 0 - 232 250 237 249 241 249 c 0 - 246 249 249 251 251 255 c 0 - 252 257 254 260 255 262 c 0 - 261 272 262 273 275 270 c 0 - 275 267 275 263 274 259 c 0 - 273 252 270 244 267 237 c 0 - 262 222 252 214 236 215 c 2 - 215 215 l 2 - 201 216 188 212 174 210 c 0 - 170 210 170 208 169 205 c 0 - 165 189 161 173 156 158 c 0 - 152 146 147 134 144 122 c 0 - 139 106 135 89 130 73 c 0 - 125 52 119 32 114 11 c 0 - 107 -16 96 -42 86 -68 c 0 - 79 -84 71 -100 62 -116 c 0 - 56 -129 48 -142 41 -154 c 0 - 31 -171 21 -188 10 -205 c 0 - 6 -212 -1 -218 -7 -224 c 0 - -33 -254 -65 -275 -100 -292 c 0 - -116 -300 -132 -306 -150 -306 c 0 - -173 -307 -197 -308 -220 -303 c 0 - -223 -303 -226 -303 -229 -302 c 0 - -233 -302 -237 -302 -240 -300 c 0 - -247 -295 -255 -295 -263 -295 c 0 - -279 -294 -294 -288 -307 -279 c 0 - -314 -275 -320 -271 -326 -267 c 0 - -352 -252 -368 -231 -372 -202 c 0 - -374 -189 -373 -175 -371 -163 c 0 - -368 -145 -347 -141 -336 -151 c 0 - -334 -154 -333 -156 -333 -159 c 0 - -333 -165 -333 -171 -332 -176 c 0 - -329 -197 -315 -211 -299 -222 c 0 - -286 -232 -271 -237 -257 -243 c 0 - -241 -250 -224 -256 -207 -259 c 0 - -200 -261 -192 -261 -185 -262 c 2 - -182 -262 l 1 - -174 -258 -166 -258 -158 -257 c 0 - -134 -255 -113 -247 -91 -238 c 0 - -85 -236 -80 -231 -75 -227 c 0 - -57 -213 -40 -199 -28 -179 c 0 - -22 -168 -14 -158 -7 -148 c 0 - 14 -117 32 -84 45 -49 c 0 - 55 -24 63 2 70 29 c 0 - 79 58 87 89 96 118 c 0 - 110 163 121 208 132 254 c 0 - 142 297 153 339 171 380 c 2 - 183 413 l 2 - 193 437 205 458 220 479 c 0 - 233 496 247 512 264 525 c 0 - 272 532 281 537 289 543 c 0 - 302 551 313 561 327 565 c 0 - 337 568 345 571 355 572 c 0 - 378 574 401 572 423 567 c 0 - 445 563 460 550 472 532 c 0 - 476 525 480 519 479 510 c 0 - 478 504 475 499 468 497 c 0 - 452 494 435 494 419 499 c 0 - 405 503 395 514 387 524 c 0 - 386 525 385 526 385 527 c 1 -EndSplineSet -Kerns2: 238 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: g1 -Encoding: 65586 -1 238 -Width: 590 -GlyphClass: 2 -Flags: MW -HStem: -280 40 92 47<338 395> 241 53 291 40 -VStem: 111 48<-114.5 -85.5> 298 46 536 43 -LayerCount: 2 -Fore -SplineSet -448 336 m 1xee - 450 332 453 329 456 325 c 0 - 457 323 457 320 456 318 c 0 - 451 301 439 289 425 279 c 0 - 405 266 384 256 362 248 c 0 - 354 245 345 243 336 241 c 1xee - 344 207 348 173 338 139 c 1 - 365 139 l 2 - 390 140 416 140 441 133 c 0 - 457 128 472 121 486 112 c 0 - 492 108 498 105 504 101 c 0 - 510 98 515 93 521 89 c 0 - 529 82 538 74 546 66 c 0 - 557 56 561 44 566 31 c 0 - 583 -14 582 -58 571 -103 c 0 - 565 -125 556 -146 543 -164 c 0 - 523 -192 500 -218 472 -239 c 0 - 457 -251 439 -261 419 -266 c 0 - 408 -268 398 -272 388 -274 c 0 - 372 -277 357 -279 341 -280 c 0 - 316 -281 292 -281 268 -274 c 0 - 249 -269 231 -262 214 -252 c 0 - 203 -246 191 -240 181 -233 c 0 - 172 -227 164 -219 155 -211 c 1 - 155 -211 154 -210 154 -209 c 0 - 136 -197 130 -176 119 -158 c 0 - 115 -153 114 -145 114 -138 c 0 - 112 -122 111 -107 111 -91 c 0 - 111 -80 113 -69 115 -59 c 0 - 119 -44 112 -35 102 -26 c 0 - 95 -21 89 -15 82 -9 c 0 - 72 0 66 11 64 25 c 0 - 63 36 63 46 69 56 c 0 - 71 60 70 63 68 66 c 0 - 65 70 61 74 57 78 c 0 - 46 86 36 96 31 109 c 0 - 28 115 24 121 22 127 c 0 - 18 137 15 148 13 159 c 0 - 10 178 10 197 13 216 c 0 - 17 236 24 255 38 270 c 0 - 44 277 51 284 59 289 c 0 - 70 296 81 302 93 307 c 0 - 101 311 110 315 119 318 c 0 - 126 320 133 322 140 323 c 2 - 170 329 l 2 - 188 333 207 332 225 331 c 0 - 235 330 245 326 255 323 c 0xde - 275 317 293 307 311 299 c 0 - 329 292 347 289 365 294 c 0 - 379 297 393 300 405 307 c 0 - 419 314 431 324 444 333 c 0 - 445 334 446 335 448 336 c 1xee -320 -240 m 2xde - 330 -240 340 -240 350 -239 c 0 - 363 -238 375 -237 387 -233 c 0 - 401 -229 415 -222 429 -215 c 0 - 458 -201 482 -180 501 -154 c 0 - 507 -144 510 -133 517 -125 c 0 - 527 -113 529 -99 533 -85 c 0 - 538 -66 536 -47 536 -29 c 0 - 536 -23 535 -17 533 -12 c 0 - 530 -3 527 7 523 16 c 0 - 520 23 517 31 513 37 c 0 - 503 50 490 60 475 67 c 0 - 464 73 452 78 439 83 c 0 - 422 89 404 92 386 92 c 0 - 369 91 352 89 335 87 c 0 - 325 85 314 82 304 79 c 0 - 288 75 272 70 259 59 c 0 - 258 58 256 57 254 56 c 0 - 247 52 240 48 235 44 c 0 - 212 26 195 4 181 -21 c 0 - 165 -49 158 -79 159 -111 c 0 - 159 -118 160 -126 163 -133 c 0 - 169 -147 176 -161 183 -174 c 0 - 195 -196 214 -213 237 -223 c 0 - 247 -227 256 -230 265 -234 c 0 - 274 -238 282 -240 292 -240 c 2 - 320 -240 l 2xde -59 191 m 0 - 58 181 59 170 63 159 c 0 - 66 151 69 143 73 135 c 0 - 83 113 101 99 124 91 c 0 - 128 90 132 89 135 88 c 0 - 152 83 169 80 187 82 c 0 - 191 83 196 83 200 82 c 0 - 220 80 237 87 253 97 c 0 - 269 107 279 122 287 138 c 0 - 293 152 299 166 298 181 c 0 - 298 197 294 212 288 226 c 0 - 280 244 270 261 251 270 c 0 - 244 274 238 278 231 282 c 0 - 220 290 208 292 194 291 c 0 - 182 290 169 289 157 288 c 0 - 150 287 144 288 138 286 c 0 - 123 284 110 276 98 267 c 0 - 74 248 57 225 59 191 c 0 -149 36 m 1 - 148 36 148 37 148 37 c 1 - 139 38 129 38 120 38 c 0 - 115 38 114 36 117 31 c 0 - 120 28 122 25 125 22 c 0 - 128 19 133 19 136 22 c 0 - 141 26 144 31 149 36 c 1 -EndSplineSet -Kerns2: 239 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: h1 -Encoding: 65587 -1 239 -Width: 479 -GlyphClass: 2 -Flags: MW -HStem: -12 30 -2 25 -1 22<46 50 46 126> 249 48 506 41<40 42 39 44> -VStem: 74 51<348 394> 77 50<73 197 156 197> 458 11 -LayerCount: 2 -Fore -SplineSet -170 23 m 1x5d - 171 18 172 13 172 8 c 0 - 172 0 169 -2 161 -2 c 0 - 149 -2 137 -2 126 -1 c 2 - 50 -1 l 2 - 48 -1 45 -1 42 0 c 2 - 42 17 l 1 - 46 21 l 1 - 49 21 l 2x3d - 64 24 72 34 74 48 c 0 - 76 57 77 65 77 73 c 2 - 77 156 l 2x3b - 76 193 74 231 73 269 c 0 - 73 301 74 332 74 364 c 0 - 74 389 74 415 73 440 c 0 - 72 454 69 468 66 481 c 0 - 64 487 62 493 58 497 c 0 - 54 503 48 506 40 506 c 0 - 20 507 5 496 -8 481 c 0 - -17 470 -26 458 -35 445 c 0 - -39 441 -41 436 -44 431 c 0 - -45 428 -47 425 -51 425 c 0 - -56 425 -58 428 -60 432 c 0 - -63 439 -64 446 -61 453 c 0 - -51 474 -41 494 -21 509 c 0 - -18 511 -15 515 -12 519 c 0 - -2 530 11 538 24 544 c 0 - 30 546 36 547 42 547 c 0 - 50 548 58 547 66 548 c 0 - 84 549 105 532 110 512 c 0 - 115 494 118 475 121 456 c 0 - 122 449 123 442 123 434 c 0 - 124 418 125 402 125 386 c 0 - 125 368 124 351 124 333 c 0 - 123 319 124 305 124 291 c 1 - 128 292 131 292 134 293 c 0 - 145 298 156 298 167 297 c 0 - 176 297 183 291 191 286 c 0 - 210 273 224 255 236 235 c 0 - 253 208 271 182 291 157 c 0 - 302 141 312 125 322 108 c 0 - 332 92 343 77 356 64 c 0 - 368 52 380 40 392 29 c 0 - 408 15 435 13 452 28 c 0 - 454 30 456 32 458 33 c 2 - 459 33 l 1 - 471 23 472 18 460 8 c 0 - 450 0 440 -6 428 -11 c 0 - 422 -14 414 -13 406 -12 c 0 - 398 -11 389 -10 381 -7 c 0 - 373 -4 365 0 358 6 c 0 - 341 20 323 33 309 50 c 0 - 307 52 306 54 304 56 c 0x9d - 290 67 282 83 272 97 c 0 - 268 104 263 111 258 118 c 0 - 242 138 227 159 211 179 c 0 - 197 197 183 215 170 234 c 0 - 164 241 158 246 150 249 c 0 - 138 252 126 244 126 232 c 0 - 126 218 127 204 127 190 c 0 - 127 162 126 134 126 106 c 0 - 125 91 123 76 124 62 c 0 - 124 53 127 43 131 36 c 0 - 134 28 142 25 151 25 c 0 - 157 24 163 24 170 23 c 1x5d -EndSplineSet -Kerns2: 240 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: k1 -Encoding: 65588 -1 240 -Width: 488 -GlyphClass: 2 -Flags: MW -HStem: -13 33 -13 36 -4 19 -2 32 1 21G<156 162.5> 14 16 43 40 295 35 -VStem: 68 41<331 402.5 385.5 389.5> 332 46<197 219.5> -LayerCount: 2 -Fore -SplineSet -213 41 m 0x83c0 - 212 37 214 35 218 34 c 0 - 233 30 248 26 263 23 c 0 - 286 18 309 19 331 24 c 0 - 342 26 351 31 361 36 c 0 - 369 40 376 45 383 49 c 0 - 398 57 410 68 419 84 c 0 - 426 97 434 109 442 122 c 0x4180 - 444 127 446 132 447 137 c 0 - 448 142 451 145 456 145 c 0 - 461 145 465 145 470 144 c 0 - 477 143 479 142 477 135 c 0 - 473 120 469 104 464 90 c 0 - 458 73 449 57 438 42 c 0 - 425 27 409 14 392 6 c 0 - 365 -7 337 -13 308 -13 c 2 - 277 -13 l 2x8180 - 260 -13 243 -10 227 -5 c 0 - 225 -4 223 -3 221 -3 c 0x2180 - 208 -2 196 5 184 9 c 0x0580 - 179 11 174 13 169 14 c 1 - 169 13 168 13 168 13 c 1 - 167 0 169 1 156 1 c 0x0980 - 147 0 138 -2 129 -2 c 0 - 100 -3 70 -3 41 -4 c 0 - 40 -4 39 -4 37 -3 c 0 - 38 3 38 9 39 15 c 1 - 46 17 52 19 58 21 c 0 - 69 25 74 32 74 44 c 0x2180 - 73 70 72 95 72 121 c 0 - 71 157 71 192 71 227 c 0 - 70 262 69 296 68 331 c 0 - 68 348 69 365 68 383 c 0 - 68 396 68 409 67 422 c 0 - 67 437 66 451 65 466 c 0 - 64 483 64 500 63 517 c 0 - 62 523 62 529 61 535 c 0 - 60 545 55 550 45 549 c 0 - 41 549 37 548 34 547 c 2 - 25 544 l 2 - 19 543 16 544 12 552 c 0 - 9 557 12 561 15 564 c 0 - 22 569 28 574 35 579 c 0 - 47 587 59 594 71 602 c 0 - 79 607 87 606 96 605 c 0 - 103 604 110 593 109 585 c 0 - 106 544 106 504 108 464 c 2 - 108 420 l 2 - 108 413 109 406 109 399 c 0 - 109 372 110 346 110 320 c 0 - 111 304 111 288 111 272 c 2 - 111 263 l 1 - 113 263 l 2 - 114 265 116 267 117 269 c 0 - 124 278 130 286 137 294 c 0 - 142 300 149 303 156 305 c 0 - 158 306 160 306 161 307 c 0 - 174 318 190 321 205 324 c 0 - 230 330 256 335 282 330 c 0 - 293 328 305 326 315 318 c 0 - 322 313 330 309 337 303 c 0 - 345 298 350 291 355 283 c 0 - 357 279 360 276 362 273 c 0 - 365 266 368 259 370 253 c 0 - 375 237 378 222 378 206 c 0 - 378 188 373 172 365 157 c 0 - 362 153 360 148 358 144 c 0 - 343 117 322 97 298 79 c 0 - 274 61 247 51 220 43 c 0 - 217 43 215 42 213 41 c 0x83c0 -124 146 m 1 - 124 146 123 146 123 145 c 0 - 125 134 126 123 128 112 c 0 - 130 103 136 96 145 93 c 0 - 153 91 161 89 169 86 c 0 - 184 81 199 80 214 83 c 0 - 235 86 254 97 271 109 c 0 - 277 113 283 117 288 122 c 0 - 295 128 303 133 308 141 c 0 - 323 162 333 186 332 214 c 0 - 332 225 331 236 325 245 c 0 - 315 261 303 274 288 284 c 0 - 282 288 275 291 268 292 c 0 - 256 294 245 295 233 295 c 0 - 213 296 195 289 178 279 c 0 - 173 276 169 271 165 266 c 0 - 158 257 149 248 143 237 c 0 - 138 227 135 215 132 203 c 0 - 130 196 131 187 129 180 c 0 - 125 169 124 158 124 146 c 1 -128 44 m 1x1180 - 127 30 135 26 149 30 c 1 - 142 35 135 39 128 44 c 1x1180 -EndSplineSet -Kerns2: 241 -24 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: m1 -Encoding: 65589 -1 241 -Width: 446 -GlyphClass: 2 -Flags: MW -HStem: -119 30 -4 23 -1 28<135.5 138 135.5 138> 280 53 295 42<325 357> -VStem: 64 46<83 100 100 100> 210 46<104 170 170 170> 342 56<132.5 214.5> -LayerCount: 2 -Fore -SplineSet -110 306 m 1xb7 - 120 311 130 317 140 322 c 0 - 153 328 168 331 182 333 c 0 - 197 334 210 332 221 323 c 0 - 229 318 236 312 243 306 c 1xb7 - 260 321 284 326 306 335 c 0 - 309 336 313 336 317 336 c 0 - 328 337 339 336 350 337 c 0 - 364 337 374 332 382 322 c 0 - 389 313 392 304 392 293 c 2 - 395 227 l 2 - 396 201 397 174 398 148 c 0 - 398 117 398 86 399 54 c 0 - 399 29 400 2 408 -23 c 0 - 412 -39 419 -53 432 -64 c 0 - 438 -70 446 -75 454 -78 c 0 - 471 -86 489 -90 507 -89 c 0 - 511 -88 515 -88 518 -87 c 0 - 529 -83 539 -79 550 -74 c 0 - 556 -71 559 -72 563 -77 c 0 - 569 -85 568 -95 561 -102 c 0 - 549 -112 536 -117 521 -119 c 0 - 499 -121 478 -121 457 -116 c 0 - 449 -114 440 -113 432 -110 c 0 - 424 -106 414 -105 407 -98 c 0 - 404 -95 401 -93 398 -91 c 0 - 390 -84 383 -77 377 -68 c 0 - 365 -49 356 -29 351 -8 c 0 - 347 8 345 25 344 41 c 0 - 343 94 343 148 342 201 c 0 - 342 228 340 256 339 283 c 0 - 339 289 332 295 325 295 c 0 - 319 294 314 293 308 291 c 0 - 302 289 296 286 291 284 c 0 - 272 275 262 260 258 242 c 0 - 256 236 256 230 256 224 c 2 - 256 66 l 2 - 255 57 254 47 253 38 c 0 - 253 30 254 29 262 26 c 0 - 268 24 275 22 282 19 c 1 - 283 13 283 6 284 -2 c 1 - 275 -5 267 -4 259 -4 c 0xcf - 235 -3 211 -1 188 0 c 0xb7 - 179 0 175 3 175 10 c 2 - 175 19 l 1 - 182 21 188 23 194 26 c 0 - 204 30 209 37 209 47 c 0 - 209 66 210 85 210 104 c 2xd7 - 210 170 l 2 - 209 189 207 208 205 227 c 0 - 204 240 203 252 202 264 c 0 - 201 272 194 278 186 280 c 0 - 167 283 150 281 137 268 c 0 - 124 255 111 241 111 221 c 0 - 111 190 110 159 110 128 c 2 - 110 83 l 2 - 109 72 108 60 108 49 c 0 - 108 44 109 40 111 36 c 0 - 113 31 117 29 123 28 c 0 - 128 28 133 27 138 27 c 1 - 138 -1 l 1 - 34 -1 l 1 - 34 18 l 2 - 34 21 37 22 40 23 c 0 - 45 24 49 26 53 28 c 0 - 60 31 64 37 64 44 c 2 - 64 100 l 2 - 63 113 64 126 63 140 c 0 - 62 163 61 186 60 208 c 0 - 59 222 59 235 57 248 c 0 - 57 256 55 265 54 274 c 0 - 52 288 42 292 26 288 c 0 - 22 287 18 285 13 284 c 1 - 12 289 10 294 10 298 c 0 - 10 300 13 303 15 304 c 0 - 35 315 56 326 80 330 c 0 - 86 331 93 331 100 330 c 0 - 105 330 108 327 109 322 c 0 - 110 317 110 312 110 306 c 1xb7 -EndSplineSet -EndChar - -StartChar: n1 -Encoding: 65590 -1 242 -Width: 356 -GlyphClass: 2 -Flags: MW -HStem: -5 21G -5 39 0 22<132 151 132 151> 272 52<177 180> 292 40 -VStem: 58 50<154 214> 200 43<95.5 141> -LayerCount: 2 -Fore -SplineSet -109 288 m 1x4e - 116 293 123 298 128 302 c 0x4e - 140 313 156 317 170 323 c 0 - 172 324 174 324 176 324 c 2 - 185 324 l 2 - 202 326 214 318 225 310 c 0 - 227 309 229 307 230 304 c 0 - 235 292 240 280 243 268 c 0 - 246 258 247 246 247 236 c 0 - 246 204 244 173 243 141 c 0 - 243 120 243 100 245 79 c 0 - 245 70 249 60 253 51 c 0 - 263 33 289 28 307 40 c 0 - 315 45 321 52 325 59 c 0 - 328 63 331 66 337 66 c 0 - 341 65 346 60 346 55 c 0 - 345 49 344 42 341 37 c 0 - 332 21 321 6 302 -2 c 0 - 296 -4 289 -4 283 -5 c 0 - 268 -7 254 -4 241 1 c 0 - 236 3 232 6 229 9 c 0 - 216 21 205 35 203 52 c 0x56 - 201 70 200 87 200 104 c 0 - 198 147 197 190 196 233 c 0 - 195 243 195 254 190 264 c 0 - 187 269 183 272 177 272 c 0 - 169 271 162 270 156 267 c 0 - 140 261 127 251 116 239 c 0 - 115 238 114 236 113 235 c 0 - 111 226 108 218 108 210 c 0 - 108 158 109 106 109 54 c 0 - 109 49 110 43 110 37 c 0 - 111 30 115 27 123 26 c 0 - 132 25 141 23 151 22 c 1 - 151 6 l 2 - 151 2 149 0 144 0 c 2 - 132 0 l 2 - 106 2 79 0 53 -1 c 0 - 42 -2 31 -1 20 -1 c 0x36 - 13 0 8 11 13 16 c 0 - 13 17 14 17 15 18 c 0 - 25 21 34 25 44 29 c 0 - 51 31 54 36 54 42 c 0 - 55 61 56 80 57 100 c 0x8e - 58 122 58 143 58 165 c 0 - 58 195 57 225 56 255 c 0 - 56 264 55 272 53 280 c 0 - 50 291 45 294 34 292 c 0 - 29 292 24 291 18 289 c 1 - 18 296 17 302 18 308 c 0 - 18 309 21 311 22 312 c 0 - 44 319 65 325 87 332 c 0 - 97 335 103 330 104 321 c 2 - 104 318 l 2 - 102 308 106 298 109 288 c 1x4e -EndSplineSet -EndChar - -StartChar: n2 -Encoding: 65591 -1 243 -Width: 443 -GlyphClass: 2 -Flags: MW -HStem: -2 43 -1 21G<348 349> 1 27<113 133> 286 47 -VStem: 47 53<132 146 129.5 162.5> 421 10 -LayerCount: 2 -Fore -SplineSet -421 70 m 0x9c - 432 67 434 66 431 55 c 0x9c - 425 29 411 10 386 0 c 0x5c - 376 -4 365 -3 354 -2 c 0 - 352 -2 350 -1 348 -1 c 0 - 336 -3 325 2 314 7 c 0 - 310 8 307 11 305 14 c 0 - 290 31 274 49 260 67 c 0 - 241 90 224 114 206 137 c 0 - 197 149 188 161 180 173 c 0 - 173 183 167 193 161 202 c 2 - 155 211 l 2 - 145 226 135 240 124 254 c 0 - 121 258 117 262 113 266 c 0 - 112 267 110 269 108 270 c 0 - 106 272 103 274 101 273 c 0 - 99 273 98 270 97 267 c 0 - 96 266 96 264 96 262 c 0 - 98 223 99 185 100 146 c 0 - 100 113 99 80 98 48 c 0 - 98 33 103 28 118 28 c 2 - 133 28 l 1 - 133 4 l 1 - 127 3 120 1 113 1 c 0 - 90 0 68 0 45 0 c 2 - 29 0 l 2 - 23 1 22 3 22 9 c 2 - 22 15 l 2 - 22 20 24 22 28 24 c 0 - 43 30 48 36 48 51 c 0x3c - 47 83 47 116 47 148 c 0 - 47 177 49 205 49 234 c 0 - 49 247 48 260 47 273 c 0 - 47 275 47 278 46 280 c 0 - 44 286 43 287 37 286 c 0 - 30 285 24 283 17 281 c 1 - 15 288 12 295 10 303 c 0 - 10 305 11 307 12 308 c 0 - 13 310 15 311 17 313 c 0 - 47 331 79 337 113 330 c 0 - 114 330 115 330 115 329 c 0 - 128 323 142 317 154 309 c 0 - 172 298 185 281 195 261 c 0 - 197 256 200 252 203 247 c 0 - 207 241 209 234 214 228 c 0 - 225 212 231 193 244 178 c 0 - 249 173 253 168 257 162 c 0 - 265 149 273 136 280 123 c 0 - 291 103 305 86 320 68 c 0 - 333 53 350 46 369 41 c 0 - 388 37 402 45 414 60 c 0 - 416 63 419 67 421 70 c 0x9c -EndSplineSet -Kerns2: 244 -4 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: o1 -Encoding: 65592 -1 244 -Width: 414 -GlyphClass: 2 -Flags: MW -HStem: -13 36<157 197.5> 302 43 -VStem: 11 43 355 49 -LayerCount: 2 -Fore -SplineSet -11 164 m 0 - 12 176 12 188 13 200 c 0 - 16 216 21 232 30 246 c 0 - 37 257 44 267 52 278 c 0 - 61 289 72 298 83 306 c 0 - 91 311 99 317 107 323 c 0 - 118 330 129 336 142 337 c 0 - 148 337 153 339 158 339 c 0 - 167 341 176 343 184 344 c 0 - 203 346 221 348 239 345 c 0 - 263 341 285 331 307 322 c 0 - 309 321 310 321 312 320 c 0 - 326 308 340 296 355 285 c 0 - 364 278 372 270 379 260 c 0 - 380 258 382 256 383 254 c 0 - 389 237 397 222 399 204 c 0 - 399 201 399 198 400 196 c 0 - 406 181 404 165 401 150 c 0 - 397 130 391 111 382 93 c 0 - 368 69 353 46 330 29 c 0 - 322 23 313 19 304 14 c 0 - 296 10 286 7 278 2 c 0 - 267 -3 255 -5 243 -7 c 0 - 214 -10 185 -13 157 -13 c 0 - 142 -12 128 -7 115 -2 c 0 - 112 -1 110 3 107 5 c 0 - 100 8 94 11 87 15 c 0 - 81 19 74 23 68 29 c 0 - 52 43 39 61 28 79 c 0 - 23 86 20 95 18 104 c 0 - 13 124 10 143 11 164 c 0 -184 23 m 0 - 211 23 236 29 260 37 c 0 - 276 42 291 49 305 59 c 0 - 314 65 322 72 329 80 c 0 - 338 93 344 109 350 124 c 0 - 355 136 356 149 355 162 c 0 - 355 169 355 176 354 183 c 0 - 352 203 348 222 336 239 c 0 - 331 245 325 250 320 257 c 0 - 308 274 287 280 270 291 c 1 - 269 291 l 2 - 256 294 245 300 232 302 c 0 - 210 305 189 307 168 298 c 0 - 166 297 163 297 160 296 c 0 - 146 292 131 288 117 284 c 0 - 113 283 110 280 107 278 c 0 - 97 267 87 256 78 244 c 0 - 71 235 65 224 62 212 c 0 - 56 191 51 170 54 148 c 0 - 56 125 60 104 76 86 c 0 - 87 73 98 61 112 51 c 0 - 114 50 116 48 118 47 c 0 - 126 42 133 35 142 31 c 0 - 156 26 169 20 184 23 c 0 -EndSplineSet -EndChar - -StartChar: p1 -Encoding: 65593 -1 245 -Width: 366 -GlyphClass: 2 -Flags: MW -HStem: -222 27 106 35 295 38<204 256 217 230> -VStem: 61 53<-165 -138> 309 46 -LayerCount: 2 -Fore -SplineSet -159 -197 m 2 - 159 -220 l 1 - 152 -223 29 -224 13 -222 c 1 - 13 -216 12 -211 13 -206 c 0 - 13 -204 15 -202 17 -201 c 0 - 26 -197 35 -194 42 -188 c 0 - 49 -182 54 -175 56 -167 c 0 - 59 -157 61 -147 61 -138 c 0 - 62 -80 64 -23 62 35 c 0 - 61 93 61 151 61 210 c 0 - 61 227 62 244 63 262 c 2 - 63 269 l 1 - 50 268 39 264 29 259 c 0 - 22 255 17 257 14 264 c 2 - 14 265 l 1 - 8 278 8 281 21 288 c 0 - 32 294 44 300 55 306 c 0 - 68 313 80 320 93 328 c 0 - 98 331 102 331 106 327 c 2 - 109 324 l 2 - 115 321 118 316 118 310 c 2 - 118 302 l 1 - 125 307 132 311 139 315 c 0 - 155 325 173 330 191 331 c 0 - 200 331 208 332 217 333 c 2 - 256 333 l 2 - 259 333 262 332 264 331 c 0 - 272 329 280 328 287 326 c 0 - 288 326 290 326 291 325 c 0 - 300 320 311 317 319 308 c 0 - 321 306 323 304 326 302 c 0 - 337 297 344 288 348 277 c 0 - 352 267 355 257 355 246 c 0 - 358 220 351 195 339 172 c 0 - 333 162 325 153 318 143 c 0 - 317 142 315 141 314 140 c 0 - 307 129 297 124 286 120 c 0 - 250 104 212 102 175 113 c 0 - 164 116 153 122 146 129 c 0 - 136 139 131 152 133 167 c 0 - 133 170 133 173 134 177 c 0 - 135 183 139 185 144 183 c 0 - 148 181 152 178 154 175 c 0 - 165 160 180 149 198 144 c 0 - 207 141 216 141 225 141 c 0 - 245 142 262 147 279 159 c 0 - 305 178 314 203 309 234 c 0 - 308 242 308 251 304 258 c 0 - 301 262 297 268 293 272 c 0 - 274 285 255 298 230 295 c 2 - 206 295 l 2 - 202 295 197 295 193 293 c 0 - 184 289 174 285 166 279 c 0 - 155 272 143 265 133 255 c 0 - 123 244 116 232 117 217 c 0 - 117 208 116 199 116 190 c 0 - 115 175 115 160 115 145 c 0 - 115 99 116 53 115 7 c 0 - 115 -49 114 -106 114 -163 c 2 - 114 -165 l 2 - 113 -179 116 -184 129 -189 c 0 - 136 -191 144 -193 151 -195 c 0 - 154 -195 156 -196 159 -197 c 2 -EndSplineSet -EndChar - -StartChar: t1 -Encoding: 65594 -1 246 -Width: 166 -GlyphClass: 2 -Flags: MW -HStem: -200 30 304 30 389 20G -VStem: 12 7<289 289> 33 57<120 158 95 163> -LayerCount: 2 -Fore -SplineSet -12 289 m 1 - 12 294 11 298 11 302 c 0 - 10 310 13 316 18 322 c 0 - 40 349 61 376 83 404 c 0 - 89 411 93 411 99 405 c 0 - 110 394 111 394 102 381 c 0 - 96 372 91 361 91 349 c 0 - 91 348 90 347 90 345 c 0 - 88 338 90 334 98 333 c 0 - 102 333 105 334 109 334 c 0 - 112 334 116 335 119 335 c 2 - 144 335 l 1 - 145 326 146 316 146 306 c 1 - 139 305 131 304 124 303 c 0 - 116 302 108 301 101 300 c 0 - 94 299 90 294 89 287 c 0 - 89 281 88 275 88 269 c 0 - 89 232 89 194 90 158 c 2 - 90 95 l 2 - 88 56 92 17 102 -21 c 0 - 106 -37 110 -54 115 -70 c 0 - 120 -85 127 -100 139 -112 c 0 - 146 -119 152 -125 160 -129 c 2 - 161 -130 l 2 - 173 -142 188 -148 202 -156 c 0 - 207 -158 212 -161 217 -162 c 0 - 234 -167 251 -170 269 -170 c 0 - 275 -170 280 -168 286 -167 c 0 - 290 -166 294 -165 298 -166 c 0 - 304 -166 308 -170 310 -176 c 0 - 312 -182 311 -188 306 -192 c 0 - 303 -194 299 -197 296 -198 c 0 - 283 -199 271 -201 259 -200 c 0 - 242 -198 224 -194 206 -191 c 0 - 190 -189 175 -184 161 -176 c 0 - 156 -174 152 -172 147 -170 c 0 - 143 -168 139 -165 135 -163 c 0 - 132 -161 128 -159 125 -157 c 0 - 117 -151 109 -146 102 -140 c 0 - 87 -129 76 -115 68 -99 c 0 - 55 -75 44 -50 42 -21 c 0 - 41 -8 38 5 37 19 c 0 - 35 59 33 100 33 140 c 0 - 33 186 34 231 35 277 c 0 - 35 289 32 291 19 290 c 0 - 18 289 15 289 12 289 c 1 -EndSplineSet -Kerns2: 187 -19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: h2 -Encoding: 65595 -1 247 -Width: 418 -GlyphClass: 2 -Flags: MW -HStem: -12 34 -2 21G 265 50 -VStem: 56 55<47 230 175 230> 163 51<91 98 91 189> -LayerCount: 2 -Fore -SplineSet -14 517 m 1xb8 - 14 523 14 528 15 532 c 0 - 15 534 17 536 19 537 c 0 - 34 547 49 557 64 566 c 0 - 72 572 81 576 90 581 c 0 - 101 586 111 580 111 568 c 0 - 111 490 112 411 112 333 c 0 - 112 324 111 315 111 305 c 1 - 113 305 114 305 115 306 c 0 - 133 316 152 318 172 315 c 0 - 194 312 205 302 208 280 c 0 - 210 266 210 250 210 235 c 0 - 211 190 212 144 214 98 c 0 - 214 84 215 70 222 58 c 0 - 233 37 248 23 273 23 c 0 - 275 23 277 22 279 22 c 0 - 302 20 325 22 344 35 c 0 - 359 46 371 60 378 78 c 0 - 381 85 386 88 393 88 c 0 - 399 87 406 83 407 77 c 0 - 408 69 408 61 402 54 c 0 - 388 34 369 20 348 7 c 0 - 333 -3 316 -7 298 -10 c 0 - 282 -12 266 -13 250 -12 c 0 - 233 -10 218 -2 205 8 c 0 - 196 15 188 23 182 32 c 0 - 171 49 162 66 163 86 c 2xb8 - 163 189 l 2 - 163 206 162 223 163 240 c 0 - 163 252 156 258 147 264 c 0 - 145 265 142 265 140 265 c 0 - 131 263 124 259 119 251 c 0 - 115 243 111 235 111 225 c 0 - 111 201 111 176 110 151 c 0 - 109 134 107 116 106 98 c 0 - 104 81 104 64 104 47 c 0 - 103 39 107 33 116 30 c 0 - 124 28 132 25 141 24 c 0 - 146 23 148 21 148 16 c 0 - 148 1 148 -1 132 -2 c 0 - 114 -3 97 -3 80 -3 c 0 - 62 -3 44 -4 26 -4 c 0 - 16 -4 12 -1 11 9 c 0 - 10 14 12 16 17 18 c 0 - 27 22 37 27 48 32 c 0 - 54 35 56 40 56 47 c 2x78 - 56 175 l 2 - 57 227 58 278 59 330 c 0 - 59 349 57 368 57 387 c 0 - 56 400 56 412 56 425 c 2 - 56 481 l 2 - 56 489 57 497 57 505 c 0 - 57 516 52 522 41 522 c 0 - 33 522 26 522 19 518 c 0 - 18 517 17 518 14 517 c 1xb8 -EndSplineSet -Kerns2: 248 -9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: s1 -Encoding: 65596 -1 248 -Width: 306 -GlyphClass: 2 -Flags: MW -HStem: -8 36<124 133> 307 33 -VStem: 12 42 43 31<32 66> 182 52 260 34 -LayerCount: 2 -Fore -SplineSet -133 -8 m 0xec - 112 -8 94 -9 76 -3 c 0 - 69 0 63 4 56 8 c 0 - 55 8 54 9 53 10 c 0 - 50 20 43 27 43 37 c 0 - 43 51 42 64 42 78 c 0 - 41 87 45 95 50 102 c 0 - 55 108 62 109 69 108 c 0 - 74 108 75 106 75 101 c 0 - 74 89 73 78 74 66 c 0 - 74 54 80 45 90 38 c 0 - 101 32 112 29 124 28 c 2 - 149 28 l 2 - 160 28 169 33 175 43 c 0 - 184 56 186 70 182 85 c 0 - 180 95 174 103 166 109 c 0 - 149 124 129 136 106 141 c 0 - 101 142 96 145 91 147 c 2xdc - 58 159 l 2 - 37 167 25 182 18 202 c 0 - 15 213 12 223 11 234 c 0 - 10 243 11 252 13 261 c 0 - 14 264 15 266 15 269 c 0 - 18 287 28 300 43 309 c 0 - 66 326 93 335 121 338 c 0 - 139 340 157 343 175 340 c 0 - 191 337 208 334 223 328 c 0 - 241 322 257 311 270 295 c 0 - 274 290 278 286 282 281 c 0 - 291 267 292 251 294 235 c 0 - 296 222 295 210 292 199 c 0 - 289 184 274 171 259 171 c 0 - 250 170 242 175 240 184 c 0 - 238 196 239 208 249 218 c 0 - 262 229 266 263 246 275 c 0 - 238 280 231 287 224 293 c 0 - 220 296 215 298 210 300 c 0xe4 - 188 307 166 310 143 307 c 0 - 130 305 117 304 104 301 c 0 - 81 295 63 283 56 260 c 0 - 54 254 54 247 54 241 c 0 - 55 234 56 228 58 222 c 0 - 61 214 64 207 71 201 c 0 - 87 190 104 183 121 177 c 0 - 136 171 150 166 164 160 c 0 - 167 159 171 157 174 154 c 0 - 178 152 180 150 183 148 c 0 - 196 143 205 134 214 125 c 1 - 214 124 l 1 - 220 113 228 103 230 90 c 0 - 231 86 232 82 232 78 c 0 - 233 73 235 68 234 63 c 0 - 232 35 218 13 193 0 c 0 - 187 -3 179 -4 171 -5 c 0 - 158 -6 144 -7 133 -8 c 0xec -EndSplineSet -EndChar - -StartChar: b2 -Encoding: 65597 -1 249 -Width: 449 -GlyphClass: 2 -Flags: MW -HStem: -3 39 -2 46 26 10 292 56 598 53 -VStem: 126 65<116 212> 127 56<279.5 344.5> 372 49 -LayerCount: 2 -Fore -SplineSet -73 589 m 1x9b - 73 617 l 1 - 79 620 85 623 92 626 c 0 - 114 633 135 641 157 648 c 0 - 163 650 170 653 178 648 c 0 - 179 643 180 636 180 630 c 0 - 182 613 184 595 186 578 c 2 - 186 553 l 2 - 186 531 185 509 184 487 c 0 - 184 455 183 423 183 391 c 0 - 182 372 183 354 183 335 c 0 - 183 334 184 332 184 329 c 1 - 192 329 198 333 203 337 c 0 - 222 347 242 350 263 349 c 0 - 273 348 283 348 293 348 c 0 - 310 348 326 344 342 340 c 0 - 363 333 379 321 391 302 c 0 - 397 292 405 283 408 272 c 0 - 413 250 422 229 421 207 c 0 - 421 179 423 151 417 123 c 0 - 413 104 406 85 400 66 c 0 - 399 64 399 63 397 61 c 0 - 379 37 358 16 329 5 c 0 - 324 3 318 3 312 2 c 0 - 288 -2 264 -3 240 -2 c 0 - 221 -1 204 3 187 10 c 0 - 175 16 161 20 152 32 c 1x5b - 141 23 132 14 121 7 c 0 - 110 0 98 -1 85 -3 c 0 - 71 -4 59 0 47 4 c 0x9b - 34 8 25 16 15 26 c 1x3b - 20 34 24 42 29 51 c 1 - 32 49 34 47 37 45 c 0 - 62 27 97 36 109 65 c 0 - 111 70 113 75 115 81 c 0 - 117 86 119 91 120 96 c 0 - 122 129 126 162 126 195 c 0 - 126 229 127 263 127 296 c 0 - 127 337 126 378 126 419 c 0 - 126 443 127 468 128 492 c 0 - 129 523 128 554 126 585 c 0 - 125 596 120 600 109 598 c 0 - 103 597 97 595 91 593 c 0 - 85 592 80 591 73 589 c 1x9b -372 162 m 0 - 374 188 372 199 365 222 c 0 - 356 246 344 264 323 278 c 0 - 318 281 313 283 308 285 c 0 - 297 291 288 293 278 292 c 0 - 267 291 258 289 249 286 c 0 - 243 285 235 284 230 281 c 0 - 219 273 207 263 201 249 c 0 - 198 243 193 238 193 231 c 0 - 192 195 191 160 191 125 c 2 - 191 116 l 2 - 194 107 197 97 200 88 c 0 - 203 78 207 69 215 63 c 0 - 231 50 251 41 273 42 c 0 - 280 43 286 43 293 44 c 0 - 306 44 317 49 326 57 c 0 - 335 65 343 74 350 84 c 0 - 354 89 358 96 362 102 c 0x5d - 369 122 373 143 372 162 c 0 -EndSplineSet -EndChar - -StartChar: c2 -Encoding: 65598 -1 250 -Width: 346 -GlyphClass: 2 -Flags: MW -HStem: -10 21G<150 156 150 150> -10 53<136 156 136 150> 285 46 -VStem: 11 56 -LayerCount: 2 -Fore -SplineSet -200 337 m 0xb0 - 213 335 226 333 240 331 c 2 - 247 331 l 2 - 259 331 270 329 281 324 c 0 - 290 319 299 320 308 323 c 0 - 316 326 323 324 329 321 c 0 - 334 319 336 315 335 310 c 0 - 331 292 328 274 323 257 c 0 - 322 251 318 248 312 247 c 0 - 297 244 297 244 290 258 c 0 - 283 272 272 279 258 283 c 0 - 256 284 254 284 252 284 c 0 - 231 286 210 288 189 285 c 0 - 176 283 163 279 151 274 c 0 - 131 266 111 255 95 240 c 0 - 80 224 71 204 67 183 c 0 - 61 156 67 132 75 107 c 0 - 81 87 92 72 105 58 c 0 - 114 49 124 44 136 43 c 0 - 148 43 160 40 173 39 c 0 - 187 38 201 39 215 39 c 0 - 227 38 237 43 248 46 c 0 - 253 47 257 49 261 49 c 0 - 269 50 276 54 282 59 c 0 - 293 68 304 76 315 85 c 0 - 320 89 324 85 327 83 c 0 - 331 81 331 78 329 74 c 0 - 322 56 311 40 294 29 c 0 - 283 22 271 16 259 9 c 0 - 245 1 230 -1 214 -5 c 0x70 - 195 -9 175 -11 156 -10 c 2 - 150 -10 l 1 - 135 -6 120 -3 105 0 c 0 - 103 1 102 1 101 2 c 0 - 94 6 87 11 80 15 c 0 - 79 15 79 16 78 17 c 0 - 67 20 59 27 52 35 c 0 - 38 52 24 69 20 91 c 0 - 17 104 13 117 11 130 c 0 - 10 143 10 155 12 167 c 0 - 14 183 18 198 22 213 c 0 - 24 220 27 227 31 233 c 0 - 46 261 66 285 91 304 c 0 - 102 311 113 318 125 322 c 0 - 149 331 174 336 200 337 c 0xb0 -EndSplineSet -EndChar - -StartChar: d2 -Encoding: 65599 -1 251 -Width: 394 -GlyphClass: 2 -Flags: MW -HStem: -139 27 -7 44<173 180 168.5 182 168.5 214> 289 43<193 197> 506 15 -VStem: 11 43 296 46<320 381 381 391.5> -LayerCount: 2 -Fore -SplineSet -296 320 m 1 - 296 381 l 2 - 296 402 296 424 295 445 c 0 - 295 456 292 468 290 479 c 0 - 286 495 275 504 258 505 c 0 - 255 505 251 506 248 506 c 0 - 247 511 247 516 246 521 c 1 - 253 524 260 527 268 529 c 0 - 282 533 297 536 312 540 c 0 - 318 542 323 544 329 546 c 0 - 336 549 346 544 349 537 c 0 - 350 535 350 533 349 531 c 0 - 343 517 342 502 342 487 c 0 - 343 459 342 431 342 403 c 0 - 342 369 341 335 342 301 c 0 - 342 255 344 210 345 164 c 0 - 345 142 345 121 344 99 c 0 - 344 86 343 72 343 59 c 0 - 344 39 344 18 351 -1 c 0 - 358 -22 370 -40 387 -54 c 0 - 405 -69 426 -79 446 -89 c 0 - 464 -97 482 -105 501 -108 c 0 - 508 -110 514 -111 521 -112 c 1 - 520 -120 519 -127 517 -134 c 0 - 517 -136 515 -137 513 -138 c 0 - 513 -139 512 -139 511 -139 c 0 - 494 -138 476 -140 459 -137 c 0 - 441 -134 423 -132 408 -121 c 0 - 407 -120 405 -120 404 -119 c 0 - 392 -118 382 -112 373 -106 c 0 - 371 -104 369 -103 367 -102 c 0 - 357 -93 346 -84 337 -74 c 0 - 332 -70 328 -64 325 -58 c 0 - 318 -47 313 -36 307 -25 c 0 - 299 -10 295 6 294 23 c 1 - 279 16 265 9 250 3 c 0 - 238 -2 227 -7 214 -7 c 2 - 182 -7 l 2 - 164 -7 147 -6 129 -5 c 0 - 124 -5 119 -3 114 0 c 0 - 101 5 89 11 77 16 c 0 - 68 20 61 24 55 31 c 0 - 49 40 41 47 34 55 c 0 - 33 56 32 57 32 58 c 0 - 18 89 7 121 11 155 c 0 - 13 173 14 191 19 207 c 0 - 27 231 38 254 57 272 c 0 - 63 277 69 283 74 289 c 0 - 86 302 102 310 118 316 c 0 - 126 320 134 323 142 327 c 0 - 154 333 167 334 180 333 c 0 - 185 333 189 332 194 332 c 0 - 214 332 234 329 254 324 c 0 - 261 322 268 321 275 319 c 0 - 276 319 277 319 278 318 c 0 - 283 313 289 313 296 320 c 1 -178 37 m 0 - 182 37 187 38 193 38 c 0 - 213 41 232 44 249 56 c 0 - 255 59 261 64 267 67 c 0 - 278 73 282 85 291 93 c 0 - 292 94 292 97 292 99 c 2 - 292 119 l 2 - 293 142 293 164 292 186 c 0 - 292 197 292 208 291 218 c 0 - 291 228 292 237 284 245 c 0 - 283 246 282 248 281 250 c 0 - 274 259 269 270 258 276 c 0 - 255 278 250 277 247 279 c 0 - 237 285 226 285 216 287 c 0 - 209 289 201 289 193 289 c 0 - 181 288 168 286 155 284 c 0 - 134 280 115 272 99 257 c 0 - 90 248 80 240 75 228 c 0 - 69 216 65 204 60 192 c 0 - 59 188 58 184 57 179 c 0 - 56 167 55 154 54 142 c 0 - 54 129 55 116 61 105 c 0 - 67 96 71 87 77 79 c 0 - 83 72 90 64 97 59 c 0 - 106 53 117 50 127 45 c 0 - 143 39 159 37 178 37 c 0 -EndSplineSet -Kerns2: 252 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: e2 -Encoding: 65600 -1 252 -Width: 366 -GlyphClass: 2 -Flags: MW -HStem: -14 33<210 212 205.5 216 210 210> -8 21G<169 171> 151 41<221 244 238 244 238 261> 300 42<201 202 202 205 205 207> -VStem: 13 54 -LayerCount: 2 -Fore -SplineSet -216 -14 m 2xb8 - 210 -14 l 2xb8 - 203 -13 194 -12 187 -10 c 2 - 181 -9 l 2 - 177 -9 173 -8 169 -8 c 0 - 158 -6 146 -4 135 -2 c 0 - 118 1 103 8 90 18 c 0 - 87 21 84 23 82 25 c 0 - 74 30 67 35 62 42 c 0 - 60 44 58 47 56 49 c 0x78 - 44 63 34 77 27 93 c 2 - 25 99 l 2 - 20 112 15 126 13 139 c 0 - 8 174 11 204 22 231 c 0 - 29 250 40 267 53 283 c 0 - 58 289 65 294 71 298 c 2 - 76 301 l 1 - 81 305 l 2 - 90 312 99 319 109 324 c 0 - 117 328 127 330 135 333 c 0 - 138 334 140 334 142 335 c 0 - 146 336 150 337 155 337 c 2 - 158 337 l 2 - 162 338 166 338 170 339 c 0 - 181 340 191 342 201 342 c 2 - 202 342 l 2 - 216 342 232 339 250 333 c 0 - 254 332 259 331 263 331 c 0 - 265 331 268 331 270 330 c 2 - 272 330 l 2 - 274 329 277 329 278 329 c 0 - 283 325 287 322 292 318 c 0 - 299 313 306 307 313 303 c 0 - 322 297 327 288 332 279 c 0 - 333 277 334 275 334 274 c 0 - 338 267 340 260 342 252 c 0 - 342 250 343 247 344 245 c 0 - 345 242 345 238 346 235 c 0 - 347 231 347 227 349 223 c 0 - 353 209 352 195 350 180 c 2 - 350 179 l 2 - 350 176 349 172 349 168 c 0 - 348 166 348 164 348 162 c 0 - 347 157 346 157 342 157 c 2 - 337 156 l 2 - 325 154 313 152 301 152 c 0 - 288 151 274 151 261 151 c 2 - 227 151 l 2 - 215 151 203 150 192 150 c 0 - 184 149 175 149 167 148 c 2 - 147 148 l 2 - 138 148 128 147 119 147 c 0 - 108 146 96 145 85 144 c 0 - 80 143 76 143 71 142 c 2 - 68 142 l 1 - 61 140 l 1 - 62 134 l 2 - 66 117 72 102 82 89 c 0 - 91 77 102 66 113 57 c 0 - 131 44 151 34 174 28 c 0 - 176 27 177 27 179 26 c 0 - 189 23 200 19 211 19 c 0 - 213 19 214 20 216 20 c 2 - 221 20 l 2 - 232 21 243 21 254 26 c 0 - 259 28 265 30 271 32 c 0 - 276 33 280 34 285 36 c 0 - 307 44 324 59 340 73 c 2 - 341 74 l 2 - 343 76 345 78 347 79 c 0 - 348 80 349 80 350 80 c 0 - 352 80 354 79 354 76 c 0 - 355 72 356 68 355 64 c 0 - 351 52 346 38 333 30 c 0 - 329 29 326 26 323 24 c 0 - 314 17 305 12 295 8 c 0 - 290 6 284 4 280 2 c 0 - 273 -1 266 -4 259 -6 c 0 - 245 -10 230 -14 216 -14 c 2xb8 -207 300 m 2 - 205 300 l 2 - 184 300 162 298 141 290 c 0 - 128 286 115 280 103 269 c 0 - 90 257 82 245 78 231 c 0 - 77 224 74 218 71 212 c 0 - 67 204 67 197 67 189 c 2 - 67 185 l 1 - 67 178 l 1 - 67 178 79 179 82 179 c 0 - 89 180 95 181 101 182 c 0 - 105 182 110 183 115 184 c 2 - 130 187 l 1 - 134 187 l 1 - 138 187 l 1 - 141 187 l 2 - 143 186 144 186 146 186 c 2 - 153 186 l 1 - 154 186 l 2 - 158 186 163 186 168 187 c 2 - 175 187 l 1 - 180 187 l 2 - 182 187 184 187 187 188 c 0 - 193 188 199 189 206 189 c 0 - 217 190 227 191 238 192 c 0 - 250 192 262 193 273 193 c 0 - 280 194 286 194 293 195 c 0 - 295 195 296 196 297 196 c 2 - 301 199 l 1 - 300 203 l 2 - 298 208 298 212 296 217 c 0 - 293 232 289 248 280 262 c 2 - 279 263 l 2 - 277 267 274 272 270 276 c 0 - 267 279 263 281 259 283 c 0 - 259 284 258 284 257 285 c 0 - 239 295 223 300 207 300 c 2 -EndSplineSet -EndChar - -StartChar: f2 -Encoding: 65601 -1 253 -Width: 186 -GlyphClass: 2 -Flags: MW -HStem: -6 21G<83.5 99.5> -3 20 286 40<138 143 143 146 146 156 111 158> 531 35<199.5 230> -VStem: 39 56 47 51<62 170 84.5 170> -LayerCount: 2 -Fore -SplineSet -318 478 m 1x74 - 309 477 299 476 290 475 c 0 - 287 475 286 478 285 480 c 0 - 283 487 280 493 278 500 c 0 - 270 518 255 526 237 529 c 0 - 226 530 216 530 205 531 c 0 - 194 531 183 529 172 526 c 0 - 159 522 148 514 138 505 c 0 - 129 498 122 489 117 480 c 0 - 107 462 100 443 97 423 c 0 - 94 402 92 382 95 361 c 0 - 96 354 95 347 96 340 c 0 - 96 331 101 327 111 326 c 2 - 146 326 l 1 - 156 326 l 1 - 156 313 157 300 158 286 c 1 - 152 286 148 287 143 286 c 0x78 - 133 286 124 285 114 284 c 0 - 106 283 99 274 99 267 c 0 - 99 228 98 189 98 151 c 0 - 98 122 99 93 99 65 c 0 - 99 57 100 49 101 41 c 0 - 103 31 108 24 118 21 c 0 - 124 20 130 19 136 17 c 0 - 142 14 144 11 143 5 c 0 - 142 0 139 -3 132 -3 c 0x74 - 119 -4 106 -6 93 -6 c 0 - 74 -6 56 -6 38 -7 c 2 - 28 -7 l 2 - 17 -9 7 -7 11 9 c 1 - 16 11 21 13 27 14 c 0 - 36 15 40 21 42 29 c 0 - 45 40 46 51 47 62 c 0 - 48 71 47 80 47 89 c 0xb4 - 47 112 47 136 46 159 c 0 - 46 185 43 211 41 236 c 0 - 41 245 40 253 39 262 c 2 - 39 356 l 2 - 39 379 41 401 43 423 c 0 - 43 430 46 437 48 443 c 0 - 54 463 60 482 72 500 c 0 - 92 529 119 549 153 558 c 0 - 175 564 197 566 219 566 c 0 - 241 566 262 562 283 554 c 0 - 284 554 286 553 287 551 c 0 - 292 544 299 538 303 530 c 0 - 311 516 316 500 318 484 c 2 - 318 478 l 1x74 -EndSplineSet -EndChar - -StartChar: g2 -Encoding: 65602 -1 254 -Width: 313 -GlyphClass: 2 -Flags: MW -HStem: -258 33<184 189.5> -31 37<139 193.5> 73 36<156 156 156 158 152 156 158 158.5 156 162> 292 39<146.5 164 148 164> 385 13 -VStem: 11 44 19 46 21 39 213 30<345.5 355> 318 54 -LayerCount: 2 -Fore -SplineSet -181 -258 m 0xfac0 - 173 -258 166 -258 159 -257 c 0 - 153 -256 148 -256 142 -256 c 0 - 136 -256 129 -256 123 -255 c 0 - 100 -252 84 -246 70 -235 c 0 - 68 -234 66 -231 63 -229 c 0 - 59 -225 54 -221 50 -216 c 2 - 49 -215 l 2 - 47 -214 45 -212 44 -210 c 0 - 34 -195 23 -176 20 -154 c 0 - 17 -138 17 -122 20 -105 c 2 - 21 -98 l 2 - 21 -95 22 -92 22 -89 c 0 - 26 -71 36 -52 49 -38 c 2 - 54 -34 l 1 - 49 -29 l 2 - 48 -28 46 -26 45 -24 c 2 - 33 -12 l 2xf9c0 - 29 -9 26 -5 23 1 c 0 - 14 26 20 49 28 71 c 0 - 29 75 32 78 35 82 c 0 - 37 84 38 86 39 87 c 2 - 42 90 l 2 - 43 91 43 92 44 92 c 2 - 46 94 l 1 - 46 98 l 2 - 45 99 45 101 43 103 c 0xfac0 - 27 117 20 136 13 156 c 0 - 12 158 11 161 11 165 c 0 - 9 206 18 240 39 268 c 0 - 56 292 78 309 105 319 c 0xfcc0 - 125 327 143 331 161 331 c 2 - 164 331 l 1 - 165 331 l 2 - 173 332 180 334 187 334 c 0 - 192 334 196 333 200 332 c 2 - 206 330 l 1 - 207 336 l 2 - 208 338 209 340 209 342 c 0 - 211 347 213 351 213 355 c 0 - 214 360 213 365 210 370 c 0 - 205 376 198 381 190 382 c 0 - 185 383 181 384 176 385 c 2 - 175 385 l 1 - 175 397 176 397 189 398 c 2 - 202 398 l 1 - 211 398 l 2 - 225 396 234 389 240 374 c 0 - 243 365 243 357 243 349 c 0 - 243 342 243 335 244 328 c 2 - 244 326 l 2 - 245 315 253 308 259 304 c 0 - 278 290 290 270 296 243 c 0 - 299 224 298 205 296 187 c 0 - 294 169 285 153 278 139 c 0 - 272 129 265 120 258 112 c 0 - 246 99 232 90 216 84 c 0 - 201 79 182 73 162 73 c 2 - 158 73 l 1 - 152 73 l 2 - 139 74 126 74 114 79 c 0 - 113 79 112 80 110 80 c 2 - 108 80 l 1 - 107 79 l 2 - 104 78 101 77 97 76 c 0 - 91 75 84 73 78 67 c 0 - 69 60 65 50 65 36 c 0 - 65 25 78 13 87 9 c 0 - 95 6 105 5 116 5 c 2 - 133 5 l 1 - 139 6 l 1 - 154 6 l 1 - 158 6 l 1 - 167 6 l 2 - 172 7 177 7 182 7 c 2 - 189 7 l 2 - 209 6 229 4 250 -1 c 0 - 271 -5 292 -13 319 -27 c 0 - 327 -31 334 -36 342 -41 c 0 - 344 -43 347 -44 350 -46 c 0 - 360 -52 364 -63 368 -74 c 0 - 374 -92 373 -110 372 -130 c 2 - 372 -133 l 2 - 371 -146 365 -158 357 -168 c 0 - 352 -176 345 -183 338 -190 c 0 - 332 -196 325 -202 319 -207 c 0 - 316 -210 314 -212 311 -214 c 0 - 310 -215 309 -216 308 -216 c 0 - 305 -218 301 -220 298 -222 c 0 - 277 -235 257 -246 234 -252 c 0 - 216 -256 198 -258 181 -258 c 0xfac0 -185 -31 m 0 - 176 -31 167 -31 157 -32 c 0 - 143 -33 130 -36 116 -40 c 0 - 103 -44 92 -50 82 -58 c 0 - 79 -60 76 -63 74 -66 c 0 - 64 -87 59 -111 61 -136 c 0 - 62 -145 63 -157 70 -166 c 2 - 74 -171 l 2 - 81 -180 89 -191 100 -198 c 0 - 126 -215 151 -223 178 -224 c 0 - 181 -224 183 -225 184 -225 c 2 - 191 -225 l 2 - 194 -225 197 -225 199 -224 c 0 - 219 -219 245 -212 266 -193 c 0 - 268 -192 269 -191 271 -191 c 0 - 272 -190 273 -189 274 -189 c 1 - 274 -188 275 -188 275 -188 c 2 - 277 -187 279 -186 281 -184 c 0 - 297 -168 308 -153 313 -137 c 0 - 317 -124 321 -106 314 -87 c 0 - 307 -68 292 -56 278 -47 c 0 - 265 -39 250 -37 236 -35 c 2 - 233 -34 l 2 - 218 -32 202 -31 185 -31 c 0 -135 114 m 2xfcc0 - 136 114 l 2 - 142 111 149 109 156 109 c 1 - 156 109 l 1 - 161 109 167 110 174 112 c 0 - 178 114 183 116 187 118 c 0 - 190 119 194 121 197 122 c 0 - 209 126 219 132 229 141 c 0 - 232 143 236 148 239 154 c 2 - 241 158 l 2 - 247 170 253 183 250 199 c 2 - 250 206 l 2 - 249 211 248 216 248 221 c 0 - 247 233 242 242 238 251 c 2 - 235 256 l 2 - 234 260 231 263 228 266 c 0 - 220 277 208 281 198 284 c 2 - 195 286 l 1 - 181 290 169 292 158 292 c 2 - 148 292 l 2 - 145 292 143 291 140 291 c 0 - 133 291 125 290 117 286 c 0 - 114 285 110 283 106 282 c 0 - 98 280 92 276 87 270 c 0 - 74 256 65 238 57 214 c 0 - 54 205 52 196 55 186 c 0 - 60 168 66 149 85 138 c 0 - 89 136 93 133 96 131 c 0 - 108 123 120 115 135 114 c 2xfcc0 -EndSplineSet -EndChar - -StartChar: h3 -Encoding: 65603 -1 255 -Width: 391 -GlyphClass: 2 -Flags: MW -HStem: -15 42 -5 13 286 50 506 32 -VStem: 68 52<354 356 398 413.5> 262 54 -LayerCount: 2 -Fore -SplineSet -163 -7 m 1x7c - 139 -7 l 2 - 104 -6 68 -6 32 -5 c 0 - 20 -5 18 -3 20 8 c 1 - 29 13 37 17 45 22 c 0 - 54 29 60 38 61 50 c 0x7c - 62 72 65 94 66 117 c 0 - 67 153 67 190 67 226 c 0 - 67 250 66 275 66 299 c 0 - 66 317 67 336 68 354 c 0 - 68 358 67 363 67 367 c 0 - 68 380 68 392 68 404 c 0 - 68 423 68 442 67 462 c 0 - 66 471 66 480 65 490 c 0 - 63 501 58 506 47 506 c 0 - 35 506 23 505 11 504 c 1 - 11 509 10 516 11 522 c 0 - 11 523 12 525 14 526 c 0 - 16 527 19 528 21 529 c 0 - 30 530 38 531 46 532 c 0 - 53 533 60 535 67 536 c 0 - 75 537 84 537 92 538 c 0 - 97 538 102 539 107 540 c 0 - 116 540 120 536 120 527 c 2 - 120 429 l 1 - 120 296 l 2 - 120 291 121 286 121 280 c 1 - 122 280 123 281 124 281 c 0 - 134 297 150 305 165 314 c 0 - 174 319 183 324 193 328 c 0 - 203 333 214 337 226 336 c 2 - 240 336 l 2 - 247 337 254 336 260 331 c 0 - 263 330 266 329 268 329 c 0 - 279 326 288 322 294 314 c 0 - 300 306 308 299 312 289 c 0 - 315 280 317 272 317 263 c 0 - 317 230 317 197 316 165 c 0 - 316 135 315 104 314 74 c 0 - 314 64 314 54 315 44 c 0 - 318 27 331 23 344 27 c 0 - 348 28 351 31 353 35 c 0 - 356 40 358 45 361 51 c 0 - 364 56 368 59 374 58 c 0 - 379 58 381 56 380 52 c 0 - 379 43 378 34 375 26 c 0 - 372 15 367 5 358 -4 c 0 - 350 -11 341 -15 331 -15 c 0 - 324 -14 318 -14 311 -13 c 0 - 301 -11 294 -4 287 3 c 0 - 277 14 271 26 267 40 c 0 - 264 51 262 62 262 73 c 0xbc - 261 124 261 175 260 226 c 0 - 260 234 260 242 258 250 c 0 - 257 257 254 264 251 271 c 0 - 250 274 248 277 246 280 c 0 - 245 282 243 284 241 285 c 0 - 232 288 223 289 213 286 c 0 - 189 277 171 262 158 241 c 0 - 143 219 130 196 123 171 c 0 - 120 159 118 147 117 134 c 0 - 116 109 116 83 116 58 c 0 - 116 50 117 42 122 36 c 0 - 125 30 130 26 136 25 c 0 - 141 24 145 23 150 21 c 0 - 159 19 162 14 163 5 c 2 - 163 -7 l 1x7c -EndSplineSet -EndChar - -StartChar: i1 -Encoding: 65604 -1 256 -Width: 135 -GlyphClass: 2 -Flags: MW -HStem: -3 15 301 24 433 64<45 54 42 66 45 45> -VStem: 19 69 40 53<47 245.5> -LayerCount: 2 -Fore -SplineSet -125 12 m 0xe8 - 123 -2 123 -1 110 -2 c 0 - 93 -2 76 -3 60 -3 c 0 - 45 -4 31 -4 17 -4 c 0 - 14 -4 12 -3 12 1 c 0 - 11 9 11 10 20 14 c 0 - 31 19 39 27 40 41 c 2 - 40 47 l 2 - 40 88 41 129 40 169 c 0 - 39 201 37 232 36 263 c 0 - 36 272 35 280 34 289 c 0 - 33 298 30 301 22 301 c 2 - 11 301 l 1 - 11 307 11 313 10 320 c 0 - 13 321 14 321 16 321 c 0 - 37 323 58 326 79 325 c 0 - 87 324 89 323 90 315 c 0 - 91 309 90 304 92 299 c 0 - 96 277 93 256 93 235 c 0 - 93 206 94 178 94 149 c 0 - 95 139 95 128 96 118 c 0 - 97 96 97 75 98 53 c 2 - 98 48 l 2 - 98 32 105 21 120 15 c 0 - 122 14 123 13 125 12 c 0xe8 -54 497 m 1xf0 - 54 498 l 1 - 65 498 74 498 81 488 c 0 - 89 476 92 463 88 449 c 0 - 85 439 76 434 66 433 c 2 - 45 433 l 2 - 38 434 32 437 27 442 c 0 - 16 453 16 470 25 481 c 0 - 27 484 29 488 31 491 c 0 - 34 495 37 497 42 497 c 2 - 54 497 l 1 - 54 497 l 1xf0 -EndSplineSet -EndChar - -StartChar: j1 -Encoding: 65605 -1 257 -Width: 152 -GlyphClass: 2 -Flags: MW -HStem: -222 711 299 35 424 65<110 120.5> -VStem: -217 30<-73 -66.5 -70 -66.5> 76 65 90 51<126 128 125 147> -LayerCount: 2 -Fore -SplineSet -44 299 m 1x54 - 44 302 43 307 44 311 c 0 - 44 315 48 318 52 319 c 0 - 72 320 91 326 109 331 c 0 - 114 332 119 333 123 334 c 0 - 133 335 137 332 138 323 c 0 - 139 311 140 300 141 289 c 0 - 142 278 142 267 142 256 c 2 - 142 198 l 2 - 141 179 141 160 140 142 c 0 - 140 136 141 131 141 125 c 0 - 140 89 140 53 138 17 c 0 - 137 -10 132 -37 126 -63 c 0 - 120 -86 111 -107 100 -127 c 0 - 95 -136 88 -144 81 -152 c 0 - 75 -160 68 -167 61 -175 c 0 - 46 -193 26 -203 4 -211 c 0 - -9 -216 -23 -219 -38 -221 c 0 - -51 -222 -66 -222 -80 -221 c 0 - -94 -220 -107 -217 -121 -215 c 0 - -138 -212 -152 -204 -166 -194 c 0 - -173 -188 -180 -182 -188 -176 c 0 - -205 -164 -213 -146 -216 -126 c 0 - -218 -108 -217 -90 -217 -73 c 2 - -217 -70 l 2 - -218 -64 -217 -58 -211 -57 c 0 - -203 -55 -196 -54 -190 -60 c 0 - -188 -62 -187 -65 -187 -68 c 0 - -190 -100 -180 -127 -163 -152 c 0 - -158 -162 -148 -165 -139 -170 c 0 - -135 -172 -131 -173 -127 -175 c 0 - -113 -181 -98 -183 -82 -184 c 0 - -71 -184 -59 -184 -48 -183 c 0 - -41 -183 -34 -182 -29 -179 c 0 - -20 -175 -11 -170 -3 -165 c 0 - 0 -163 3 -160 6 -158 c 0 - 28 -144 46 -125 58 -102 c 0 - 67 -83 75 -62 79 -41 c 0 - 85 -7 87 26 88 60 c 0 - 88 86 90 113 90 139 c 0 - 90 155 88 170 87 186 c 0 - 85 201 85 218 84 234 c 0 - 83 250 83 267 82 283 c 0 - 82 286 81 288 80 290 c 0 - 79 296 76 299 70 299 c 2 - 44 299 l 1x54 -110 424 m 0x28 - 100 423 91 427 84 433 c 0 - 78 437 76 442 76 448 c 2 - 76 458 l 2 - 76 473 86 484 101 486 c 0 - 107 487 112 488 118 489 c 0 - 123 489 127 487 130 483 c 0 - 143 471 143 450 138 437 c 0 - 135 430 128 426 121 425 c 0 - 117 424 114 424 110 424 c 0x28 -EndSplineSet -EndChar - -StartChar: k2 -Encoding: 65606 -1 258 -Width: 378 -GlyphClass: 2 -Flags: MW -HStem: -8 34<303 332> -1 21G<119.5 132 132 139> -1 149<119.5 120.5 119 132 119 139> 1 21G<24 24> 319 12<324 341> 524 10 -VStem: 63 49<94 156 147 156 156 161 161 173 173 208 208 284 284 311> 254 87<305 331> -LayerCount: 2 -Fore -SplineSet -309 -8 m 0x8f - 297 -8 284 -4 272 3 c 0 - 260 11 250 21 239 36 c 2 - 235 41 l 2x8f - 231 45 228 50 225 55 c 0 - 218 64 214 74 210 86 c 2 - 208 92 l 2 - 205 99 201 105 197 111 c 2 - 196 113 l 2 - 194 116 191 118 189 120 c 0x8e - 188 122 187 123 185 124 c 0 - 183 128 179 130 176 130 c 0 - 173 130 170 129 167 126 c 0 - 166 125 164 124 162 122 c 0 - 159 120 155 117 152 113 c 0 - 140 100 130 90 122 80 c 0 - 118 75 116 70 113 65 c 2 - 111 62 l 2 - 109 59 108 56 108 53 c 0 - 106 34 119 11 136 5 c 0 - 137 4 138 4 139 4 c 1 - 139 -1 l 1 - 132 -1 l 2 - 107 -1 82 -1 57 -2 c 2 - 25 -2 l 1 - 24 1 l 1x1e - 28 4 l 2x4e - 33 7 39 10 45 13 c 0 - 55 19 61 30 62 43 c 0 - 63 61 63 79 63 94 c 2 - 63 142 l 1 - 63 173 l 1 - 63 284 l 1x1e - 63 315 l 1 - 63 342 l 1 - 63 402 l 2 - 63 431 62 462 54 494 c 0 - 53 499 52 505 50 510 c 0 - 48 519 41 525 32 525 c 0 - 31 525 30 524 29 524 c 0 - 24 524 19 523 14 522 c 2 - 13 522 l 1 - 12 526 11 529 10 533 c 1 - 10 533 l 1 - 10 534 11 534 11 534 c 2 - 19 537 26 541 34 544 c 0 - 46 550 57 556 69 560 c 0 - 74 563 79 563 85 564 c 0 - 87 565 88 565 90 565 c 0 - 94 566 99 566 104 566 c 2 - 105 566 l 1 - 105 565 l 1 - 105 550 l 2 - 104 541 104 533 104 524 c 0 - 104 515 105 506 105 497 c 0 - 106 489 107 481 107 473 c 2 - 107 432 l 2 - 107 424 108 417 108 409 c 2 - 108 395 l 2 - 108 393 108 390 109 387 c 0 - 109 380 109 372 110 364 c 0 - 110 347 111 329 112 311 c 2 - 112 208 l 1 - 112 161 l 1 - 112 156 l 1 - 112 147 l 1 - 119 148 l 1 - 119 148 l 1 - 122 148 124 149 125 150 c 0 - 137 170 153 186 168 202 c 2 - 189 226 l 2 - 198 235 207 244 217 253 c 0x2e - 220 256 224 259 227 263 c 0 - 237 272 246 281 251 293 c 0 - 253 297 254 302 254 308 c 0 - 253 317 248 323 238 324 c 1 - 238 324 l 1 - 238 328 l 2 - 238 329 239 329 239 329 c 1 - 246 329 l 2 - 255 330 265 332 275 332 c 2 - 282 332 l 2 - 296 332 310 331 324 331 c 2 - 341 331 l 1 - 341 319 l 1 - 325 313 314 302 304 291 c 2 - 301 288 l 2 - 296 282 291 276 285 271 c 0 - 273 258 261 244 249 231 c 0 - 238 219 228 207 218 195 c 0 - 213 190 209 185 205 180 c 2 - 201 176 l 1 - 212 164 l 2 - 219 157 225 150 231 143 c 2 - 231 143 232 141 233 140 c 2 - 237 133 l 2 - 241 125 246 117 250 108 c 0 - 251 106 252 103 253 100 c 0 - 259 74 275 52 299 35 c 0 - 307 29 316 26 325 26 c 0 - 339 26 352 34 362 48 c 0 - 363 50 363 51 364 53 c 1 - 367 50 368 48 368 45 c 2 - 367 41 l 2 - 367 36 367 31 366 27 c 0 - 362 12 353 3 337 -2 c 2 - 334 -3 l 2 - 330 -5 327 -6 323 -7 c 0 - 318 -8 313 -8 309 -8 c 0x8f -EndSplineSet -Kerns2: 259 -10 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: l1 -Encoding: 65607 -1 259 -Width: 146 -GlyphClass: 2 -Flags: MW -HStem: -2 8<26 26> 1 13<119 136 135 136> 514 22<17 50.5> -VStem: 57 42<181.5 197 197 209.5> -LayerCount: 2 -Fore -SplineSet -26 -2 m 2xb0 - 25 0 25 3 25 6 c 0 - 27 7 28 7 30 7 c 0 - 43 9 52 19 52 34 c 0 - 53 46 53 58 53 71 c 0 - 53 80 54 88 54 97 c 0 - 54 107 55 117 55 127 c 0 - 56 145 57 164 57 183 c 0xb0 - 57 236 55 282 52 325 c 0 - 51 336 51 346 51 357 c 2 - 51 369 l 2 - 51 377 51 386 50 394 c 2 - 50 437 l 2 - 49 454 48 471 47 487 c 2 - 47 490 l 2 - 46 503 38 512 25 514 c 2 - 17 514 l 1 - 11 514 l 1 - 10 514 l 1 - 10 517 10 520 11 523 c 0 - 11 525 13 527 14 528 c 0 - 21 531 26 533 32 534 c 0 - 37 535 43 536 49 536 c 0 - 52 536 55 537 58 537 c 0 - 62 537 65 538 68 538 c 0 - 71 539 73 539 76 539 c 0 - 82 539 88 537 95 533 c 0 - 97 532 97 530 97 528 c 0 - 97 510 98 493 98 475 c 2 - 98 362 l 2 - 98 360 99 359 99 358 c 2 - 99 355 l 1 - 99 325 l 2 - 100 297 100 270 100 243 c 0 - 100 236 100 228 99 221 c 2 - 99 197 l 2 - 99 166 100 133 101 95 c 0 - 101 89 101 83 102 78 c 0 - 103 75 103 71 103 68 c 2 - 104 64 l 2 - 104 58 105 53 104 48 c 0 - 103 31 114 23 122 18 c 0 - 127 16 132 14 136 14 c 1 - 136 14 l 1 - 136 14 l 1 - 136 1 l 1 - 135 1 l 1 - 119 1 l 2 - 110 0 100 0 90 -1 c 0x70 - 76 -1 62 -1 47 -2 c 2 - 26 -2 l 2xb0 -EndSplineSet -EndChar - -StartChar: p2 -Encoding: 65608 -1 260 -Width: 446 -GlyphClass: 2 -Flags: MW -HStem: -316 28<-68 -62> -9 41 7 25 305 47 -VStem: 66 57<11 86 66 86> 372 57 -LayerCount: 2 -Fore -SplineSet -12 302 m 1xdc - 21 306 30 310 39 315 c 0 - 54 322 68 329 82 337 c 0 - 91 342 102 342 112 341 c 0 - 120 341 124 334 125 325 c 0 - 126 320 126 315 127 307 c 1 - 132 311 136 313 139 316 c 0 - 163 337 192 348 224 349 c 0 - 242 350 259 352 276 352 c 0 - 298 351 319 348 339 339 c 0 - 366 328 386 308 404 286 c 0 - 414 273 422 259 425 243 c 0 - 429 215 431 186 426 157 c 0 - 421 123 407 92 388 63 c 0 - 365 28 330 6 289 -3 c 0 - 254 -10 219 -11 184 -9 c 0xdc - 168 -9 154 -2 139 4 c 0 - 123 11 120 9 120 -9 c 2 - 120 -15 l 1xbc - 112 -45 113 -77 109 -107 c 0 - 106 -131 102 -154 94 -176 c 0 - 85 -203 74 -230 55 -254 c 0 - 39 -274 19 -291 -4 -303 c 0 - -17 -309 -32 -313 -47 -314 c 0 - -54 -314 -60 -315 -66 -316 c 0 - -70 -316 -74 -316 -77 -317 c 0 - -83 -306 -79 -298 -73 -291 c 0 - -70 -289 -66 -288 -62 -288 c 0 - -45 -286 -29 -280 -13 -273 c 0 - 5 -264 16 -249 24 -232 c 0 - 42 -198 49 -161 56 -123 c 0 - 64 -79 65 -34 66 11 c 2 - 66 66 l 2 - 65 104 69 142 70 180 c 0 - 71 204 73 228 68 251 c 0 - 67 256 67 261 66 266 c 0 - 65 275 60 280 51 279 c 0 - 44 279 36 278 29 277 c 0 - 24 276 19 274 13 273 c 1 - 10 283 10 292 12 302 c 1xdc -120 144 m 0 - 121 122 121 104 123 86 c 0 - 123 81 124 74 127 71 c 0 - 140 56 156 44 175 39 c 0 - 213 28 251 29 288 43 c 0 - 305 50 320 60 331 75 c 0 - 346 93 355 115 365 136 c 0 - 367 140 368 144 368 149 c 0 - 369 171 371 193 372 215 c 0 - 373 225 370 234 366 242 c 0 - 358 258 345 269 331 279 c 0 - 324 285 315 291 306 294 c 0 - 262 308 217 312 175 287 c 0 - 172 286 169 285 167 284 c 0 - 154 277 142 269 133 257 c 0 - 126 249 123 241 124 230 c 0 - 124 224 124 218 123 211 c 0 - 122 187 121 164 120 144 c 0 -EndSplineSet -Kerns2: 261 23 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: q2 -Encoding: 65609 -1 261 -Width: 475 -GlyphClass: 2 -Flags: MW -HStem: -262 40 -7 46 -2 21G 301 50 -VStem: 23 58 390 55 652 41 -LayerCount: 2 -Fore -SplineSet -362 21 m 1xde - 365 20 368 18 371 17 c 0 - 389 13 402 3 413 -10 c 0 - 436 -37 460 -61 475 -93 c 0 - 484 -111 497 -126 511 -141 c 0 - 522 -152 532 -165 542 -178 c 0 - 556 -194 571 -209 591 -218 c 0 - 605 -224 619 -224 634 -222 c 0 - 643 -221 648 -217 651 -208 c 0 - 652 -207 652 -206 652 -204 c 0 - 659 -188 676 -186 687 -200 c 0 - 696 -211 695 -229 684 -238 c 0 - 673 -246 662 -257 647 -260 c 0 - 640 -262 633 -264 626 -262 c 0 - 594 -257 563 -249 536 -229 c 0 - 525 -222 515 -212 505 -203 c 0 - 480 -182 457 -159 438 -132 c 0 - 420 -108 400 -85 382 -61 c 0 - 364 -38 340 -22 313 -11 c 0 - 309 -10 305 -9 302 -7 c 0 - 289 2 275 2 260 -2 c 0xbe - 241 -6 222 -9 202 -7 c 0 - 174 -4 145 -4 117 6 c 0 - 85 17 61 37 41 65 c 0 - 32 78 29 94 26 110 c 0 - 21 140 22 170 29 200 c 0 - 35 221 43 240 54 258 c 0 - 63 272 73 284 86 294 c 0 - 94 300 101 307 109 312 c 0 - 143 334 179 348 219 352 c 0 - 224 353 229 353 234 353 c 0 - 260 352 287 352 314 351 c 0 - 321 351 327 348 333 346 c 0 - 336 345 338 343 340 343 c 0 - 358 339 371 327 386 318 c 0 - 411 304 427 281 436 254 c 0 - 448 221 447 187 442 154 c 0 - 438 129 430 107 416 88 c 0 - 408 77 401 66 393 55 c 0 - 387 46 379 40 370 34 c 0 - 365 30 365 30 362 21 c 1xde -260 301 m 2 - 248 301 l 1 - 188 289 l 2 - 159 282 135 265 114 244 c 1 - 82 200 72 151 90 98 c 0 - 98 75 115 62 136 52 c 0 - 141 49 148 49 154 47 c 0 - 168 40 183 39 198 40 c 0 - 203 40 208 39 213 39 c 0 - 215 39 219 38 221 39 c 0 - 255 45 289 52 320 69 c 0 - 333 76 345 84 353 97 c 0 - 356 102 360 107 364 112 c 0 - 378 129 384 149 388 170 c 0 - 389 177 390 184 390 191 c 0 - 389 202 386 213 384 224 c 0 - 380 248 367 265 346 277 c 0 - 320 293 290 298 260 301 c 2 -EndSplineSet -Kerns2: 262 19 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: r2 -Encoding: 65610 -1 262 -Width: 277 -GlyphClass: 2 -Flags: MW -HStem: -4 19<10 10> 291 44 300 32 -VStem: 47 53 -LayerCount: 2 -Fore -SplineSet -16 299 m 0xb0 - 15 300 14 302 13 305 c 0 - 9 313 10 315 17 319 c 0 - 26 325 36 326 46 328 c 0 - 50 329 56 330 60 332 c 0 - 72 337 83 334 93 326 c 0 - 95 324 97 319 97 316 c 0 - 99 300 99 284 100 269 c 2 - 100 260 l 1 - 106 265 110 269 114 273 c 0 - 122 281 130 290 137 298 c 0 - 149 311 163 321 178 328 c 0xb0 - 188 333 201 336 213 335 c 0 - 219 335 225 336 231 336 c 0 - 239 335 247 334 254 332 c 0 - 263 329 266 325 267 315 c 2 - 267 296 l 2 - 266 288 262 285 254 285 c 0 - 243 285 231 287 221 291 c 0 - 204 296 190 293 178 281 c 0 - 157 262 141 239 127 215 c 2xd0 - 109 185 l 2 - 107 181 106 176 104 172 c 0 - 95 154 100 134 99 115 c 0 - 98 97 98 79 99 60 c 0 - 99 51 99 43 104 34 c 0 - 107 29 112 26 118 24 c 0 - 123 23 128 21 133 19 c 0 - 137 18 137 15 138 11 c 0 - 139 -4 139 -4 123 -4 c 0 - 106 -4 88 -3 71 -3 c 0 - 53 -3 36 -4 18 -4 c 2 - 10 -4 l 1 - 10 3 11 10 11 15 c 1 - 16 18 21 20 25 22 c 0 - 36 29 41 39 43 51 c 0 - 47 93 47 134 47 176 c 0 - 46 204 46 232 45 260 c 0 - 45 271 43 281 42 292 c 0 - 42 297 39 300 34 300 c 0 - 28 300 23 299 16 299 c 0xb0 -EndSplineSet -Kerns2: 263 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: s2 -Encoding: 65611 -1 263 -Width: 275 -GlyphClass: 2 -Flags: MW -HStem: -177 23 303 57 -VStem: 43 57 209 56 230 13 -LayerCount: 2 -Fore -SplineSet -220 360 m 0xe8 - 232 360 232 360 233 350 c 0 - 235 337 238 324 240 312 c 0 - 241 300 242 287 243 275 c 0 - 244 269 242 265 237 264 c 0 - 234 264 232 262 230 262 c 0 - 225 269 222 277 217 283 c 0 - 206 296 191 301 175 303 c 0xe8 - 154 305 134 302 117 287 c 0 - 108 280 103 271 100 260 c 0 - 96 245 102 234 112 225 c 0 - 121 217 129 209 137 202 c 0 - 143 196 149 192 155 187 c 0 - 168 178 178 165 188 153 c 0 - 192 148 197 142 201 136 c 0 - 211 124 220 112 229 100 c 0 - 233 94 235 88 238 82 c 0 - 242 74 247 66 251 57 c 0 - 258 39 265 20 265 0 c 0 - 264 -12 262 -24 261 -36 c 0 - 257 -58 252 -79 241 -99 c 0 - 228 -122 212 -141 191 -157 c 0 - 184 -163 174 -166 164 -169 c 0 - 139 -178 112 -179 85 -174 c 0 - 79 -173 72 -171 66 -168 c 0 - 54 -163 42 -157 30 -151 c 0 - 28 -150 25 -147 24 -144 c 0 - 16 -131 10 -117 10 -100 c 0 - 11 -84 24 -79 38 -85 c 0 - 40 -86 42 -88 43 -90 c 0 - 47 -98 50 -107 53 -115 c 0 - 59 -128 66 -138 78 -145 c 0 - 88 -151 98 -153 110 -154 c 0 - 122 -154 133 -153 144 -150 c 0 - 157 -145 168 -139 178 -129 c 0 - 188 -121 195 -112 200 -101 c 0 - 212 -79 213 -57 209 -34 c 0 - 206 -16 202 2 198 20 c 0 - 197 29 192 36 187 44 c 0 - 175 60 165 77 153 93 c 0 - 142 107 130 121 118 134 c 0xf0 - 105 149 91 163 76 176 c 0 - 71 179 68 185 65 189 c 0 - 60 196 55 203 51 211 c 0 - 41 232 40 253 50 274 c 1 - 51 275 l 1 - 54 291 64 301 74 312 c 0 - 80 319 87 323 94 327 c 0 - 108 335 123 338 137 342 c 0 - 155 346 173 347 191 343 c 0 - 209 338 213 344 219 357 c 0 - 219 358 219 359 220 360 c 0xe8 -EndSplineSet -EndChar - -StartChar: t2 -Encoding: 65612 -1 264 -Width: 182 -GlyphClass: 2 -Flags: MW -HStem: -9 48 294 17 299 31<151 154 148 155> -VStem: 64 55 -LayerCount: 2 -Fore -SplineSet -10 294 m 1xd0 - 11 300 12 306 12 311 c 1 - 19 312 26 312 32 313 c 0 - 39 314 46 317 51 323 c 0 - 51 324 52 324 52 325 c 0 - 62 328 62 335 62 343 c 2 - 62 394 l 2xd0 - 63 421 63 449 64 477 c 0 - 67 517 65 557 65 597 c 2 - 65 604 l 2 - 64 607 66 609 69 609 c 2 - 107 609 l 2 - 112 609 115 605 115 599 c 0 - 116 591 117 582 117 574 c 0 - 118 494 118 415 119 335 c 2 - 119 328 l 1 - 124 329 129 329 133 329 c 0 - 139 330 145 330 151 330 c 0 - 157 330 160 327 160 321 c 2 - 160 305 l 2 - 160 301 159 300 155 299 c 0 - 147 299 139 298 132 297 c 0 - 119 295 116 291 117 278 c 0 - 117 255 118 232 118 208 c 0xb0 - 119 173 118 137 119 101 c 0 - 119 87 120 73 121 60 c 0 - 124 37 138 35 156 42 c 0 - 159 43 162 44 165 44 c 0 - 169 44 171 42 171 38 c 0 - 173 11 156 -4 134 -9 c 0 - 118 -13 103 -9 89 -3 c 0 - 80 1 75 7 72 16 c 0 - 67 33 65 51 64 69 c 0 - 63 114 62 158 61 202 c 2 - 58 268 l 2 - 57 280 53 285 41 288 c 0 - 35 290 29 291 23 292 c 0 - 19 293 16 293 10 294 c 1xd0 -EndSplineSet -EndChar - -StartChar: u1 -Encoding: 65613 -1 265 -Width: 366 -GlyphClass: 2 -Flags: MW -HStem: -7 44 303 26<230 253.5 230 253.5> 304 20<11 35 11 35> -VStem: 45 49<176 270> 229 98<289 306> 278 46 -LayerCount: 2 -Fore -SplineSet -453 -162 m 1xd4 - 437 -162 423 -161 409 -153 c 0xd4 - 397 -145 383 -140 372 -133 c 0 - 361 -126 352 -117 343 -108 c 0 - 332 -98 323 -87 313 -76 c 0 - 311 -74 309 -72 307 -69 c 2 - 289 -27 l 2 - 282 -7 279 13 278 33 c 2 - 278 44 l 1 - 274 41 271 40 269 37 c 0 - 260 24 249 13 235 5 c 0 - 220 -4 204 -10 186 -7 c 0 - 171 -5 156 -4 141 -2 c 0 - 128 0 115 3 104 13 c 0 - 95 21 87 29 80 39 c 0 - 79 39 79 40 78 40 c 0 - 73 51 66 62 63 74 c 0 - 58 88 56 102 54 117 c 0 - 52 127 51 138 49 149 c 0 - 44 170 45 192 45 214 c 2 - 45 270 l 2 - 45 276 44 282 43 288 c 0 - 43 294 39 298 34 299 c 0 - 26 301 19 302 11 304 c 1 - 11 304 l 1 - 9 317 9 323 27 324 c 0 - 43 324 59 326 74 327 c 0 - 80 328 85 327 91 327 c 0 - 95 326 97 324 97 319 c 0 - 96 307 96 294 96 281 c 0xb4 - 95 246 94 211 94 176 c 0 - 95 150 98 124 103 99 c 0 - 107 77 119 60 136 46 c 0 - 144 40 153 39 162 37 c 0 - 183 34 203 37 220 50 c 0 - 245 67 266 89 271 121 c 0 - 274 138 274 156 275 173 c 0 - 276 178 276 183 275 188 c 2 - 272 275 l 2 - 271 283 268 289 264 295 c 0 - 260 301 255 303 248 303 c 2 - 230 303 l 1 - 230 305 229 306 229 306 c 1 - 228 325 230 328 248 329 c 0 - 259 329 269 328 279 328 c 0 - 292 327 304 326 317 326 c 0 - 322 325 325 322 326 316 c 0xd8 - 327 309 327 301 327 294 c 2 - 327 289 l 2 - 326 238 324 187 324 136 c 0 - 324 95 326 53 334 12 c 0 - 341 -23 354 -55 376 -83 c 0 - 382 -90 388 -97 393 -104 c 0 - 402 -117 414 -128 427 -136 c 0 - 434 -141 441 -146 448 -150 c 0 - 453 -153 455 -156 453 -162 c 1xd4 -EndSplineSet -EndChar - -StartChar: v2 -Encoding: 65614 -1 266 -Width: 403 -GlyphClass: 2 -Flags: MW -HStem: -12 21G 306 17 434 43<462 480.5> -VStem: 10 130<309.5 314 314 321 321 321> 10 504<306 463 321 463> -LayerCount: 2 -Fore -SplineSet -10 306 m 2xf0 - 10 321 l 1 - 20 322 31 324 41 325 c 0 - 55 326 69 324 82 324 c 0 - 98 325 115 326 131 326 c 0 - 134 326 136 327 140 327 c 1 - 140 314 l 2 - 140 305 139 304 130 302 c 0 - 116 298 112 291 117 276 c 0 - 119 270 123 263 126 257 c 0 - 135 238 144 219 154 200 c 0 - 157 194 160 188 163 183 c 0 - 171 169 180 156 188 142 c 0 - 195 129 201 116 208 103 c 0 - 210 99 212 95 214 90 c 1 - 216 94 217 96 219 98 c 0 - 227 116 236 133 244 151 c 0 - 251 165 257 180 262 195 c 0 - 268 213 275 229 283 246 c 0 - 291 261 297 276 304 291 c 0 - 314 311 324 330 335 349 c 0 - 345 366 356 382 368 398 c 0 - 372 404 377 409 382 414 c 0 - 399 429 414 444 431 457 c 0 - 445 466 459 476 477 477 c 0 - 484 477 492 476 499 475 c 0 - 509 473 514 467 514 459 c 0 - 514 446 510 441 499 438 c 0 - 489 436 478 435 468 434 c 0 - 456 434 448 429 439 422 c 0 - 426 410 414 398 405 383 c 0 - 397 372 390 359 384 347 c 0 - 375 333 367 319 359 304 c 0 - 356 299 353 293 350 287 c 0 - 338 261 327 235 314 208 c 0 - 307 191 299 174 291 157 c 0 - 274 122 258 87 244 51 c 0 - 236 31 226 13 217 -6 c 0 - 213 -14 207 -14 202 -7 c 0 - 199 -3 196 0 194 3 c 0 - 191 7 189 10 187 14 c 0 - 176 33 166 51 155 69 c 0 - 153 73 150 77 148 81 c 0 - 141 93 134 104 128 116 c 0 - 124 123 121 130 117 137 c 0 - 111 148 105 160 98 172 c 0 - 95 178 91 184 88 190 c 2 - 85 196 l 1 - 79 214 l 2 - 73 233 61 249 51 266 c 0 - 50 269 48 271 47 273 c 0 - 42 288 32 297 18 303 c 0 - 15 304 13 305 10 306 c 2xf0 -EndSplineSet -EndChar - -StartChar: w3 -Encoding: 65615 -1 267 -Width: 546 -GlyphClass: 2 -Flags: MW -HStem: -8 21G<178 183 361 362.5> 309 21 443 46<640.5 650 640.5 646> -VStem: 10 96 10 657<317 462> -LayerCount: 2 -Fore -SplineSet -258 167 m 1xe8 - 257 165 257 164 256 162 c 0 - 249 146 243 130 236 114 c 0 - 230 100 224 86 219 72 c 0 - 211 50 203 27 195 5 c 0 - 192 -5 188 -8 178 -8 c 0 - 167 -9 160 -6 155 4 c 0 - 145 22 140 42 132 60 c 0 - 121 86 111 114 101 140 c 0 - 94 155 87 170 81 185 c 1 - 80 186 l 1 - 74 210 61 232 52 255 c 0 - 46 268 40 282 31 294 c 0 - 28 298 24 301 19 301 c 0 - 17 302 14 302 11 303 c 0 - 10 308 10 314 10 320 c 0 - 10 323 12 325 16 326 c 0 - 31 328 47 330 63 330 c 0 - 79 329 95 329 110 328 c 0 - 119 328 121 326 122 317 c 2 - 122 309 l 1 - 108 302 102 288 109 274 c 0 - 116 256 123 238 131 221 c 0 - 133 215 135 208 138 202 c 0 - 140 196 143 190 146 183 c 2 - 158 156 l 2 - 165 142 171 127 178 111 c 1 - 182 118 186 123 188 131 c 0 - 192 144 197 157 201 171 c 0 - 207 186 212 200 217 215 c 0xf0 - 221 225 225 236 229 246 c 0 - 231 251 231 255 229 260 c 0 - 223 273 218 287 212 301 c 0 - 210 305 207 308 201 309 c 0 - 196 309 191 311 185 312 c 1 - 185 314 l 2 - 184 325 184 326 196 327 c 0 - 219 328 243 329 267 330 c 2 - 304 330 l 1 - 304 325 305 320 305 315 c 2 - 301 311 l 2 - 296 308 291 305 287 301 c 0 - 285 299 284 296 284 293 c 0 - 285 289 287 285 288 281 c 0 - 295 259 303 238 308 216 c 0 - 314 194 324 175 331 155 c 0 - 337 141 341 127 346 113 c 0 - 348 108 350 103 352 99 c 0 - 353 99 353 99 353 98 c 1 - 357 105 361 111 365 117 c 0 - 379 146 390 176 401 206 c 0 - 411 234 421 261 437 287 c 0 - 443 296 447 306 451 316 c 0 - 464 342 480 366 498 387 c 0 - 515 408 536 425 559 440 c 0 - 570 448 581 458 593 466 c 0 - 607 475 621 484 637 488 c 0 - 639 489 640 489 641 489 c 0 - 653 488 666 474 667 462 c 0 - 667 451 660 444 650 443 c 2 - 646 443 l 1 - 621 447 601 435 584 420 c 0 - 570 408 558 395 546 382 c 0 - 540 375 534 368 529 360 c 0 - 516 338 502 317 490 295 c 0 - 476 269 463 243 451 217 c 0 - 440 193 432 169 424 145 c 0 - 412 115 401 86 390 56 c 0 - 384 40 379 24 373 8 c 0 - 373 6 372 2 370 0 c 0 - 367 -3 364 -8 361 -8 c 0 - 354 -10 346 -10 339 -9 c 0 - 335 -8 331 -2 329 2 c 0 - 323 11 319 20 314 29 c 0 - 300 56 290 84 280 112 c 0 - 273 130 266 148 258 167 c 1xe8 -EndSplineSet -Kerns2: 268 -5 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: x1 -Encoding: 65616 -1 268 -Width: 384 -GlyphClass: 2 -Flags: MW -HStem: -6 25<11 41> -3 19<112 145> -1 9<226 245 226 226> -1 16<245 245> 306 27 452 30 -VStem: 10 422 226 124<1.5 4 4 8 8 8> -LayerCount: 2 -Fore -SplineSet -23 306 m 1x8e - 22 312 21 316 21 321 c 0 - 21 330 22 332 31 332 c 0 - 42 333 53 333 64 333 c 2 - 97 333 l 2 - 102 333 104 331 106 327 c 0 - 116 309 128 292 137 273 c 0 - 141 265 148 259 153 252 c 0 - 156 249 159 250 161 254 c 0 - 170 270 178 286 187 302 c 0 - 196 318 205 332 217 345 c 0 - 228 357 238 369 248 381 c 0 - 261 397 279 409 293 423 c 0 - 313 442 336 456 361 468 c 0 - 377 475 393 479 411 482 c 0 - 423 484 432 476 432 464 c 0 - 433 458 430 455 426 454 c 0 - 418 452 409 451 401 450 c 0 - 391 448 381 448 372 446 c 0 - 352 441 337 430 324 415 c 0 - 302 391 281 366 263 338 c 0 - 256 327 248 316 240 306 c 0 - 225 287 215 266 206 244 c 0 - 201 233 196 221 192 210 c 0 - 191 208 191 205 192 204 c 0 - 195 198 198 192 202 187 c 0 - 214 173 225 158 235 142 c 0 - 243 129 254 117 263 105 c 0 - 269 98 274 90 279 83 c 0 - 285 76 290 70 296 63 c 0 - 297 61 298 60 299 58 c 0 - 306 41 321 33 337 27 c 0 - 341 26 345 25 350 24 c 1 - 350 4 l 2 - 350 -1 348 -2 344 -2 c 0 - 329 -1 315 0 301 0 c 0 - 282 0 264 -1 245 -1 c 2 - 226 -1 l 1 - 226 8 l 1x2d - 233 10 239 12 245 15 c 0 - 253 18 254 20 250 27 c 0 - 246 34 241 41 236 48 c 0 - 224 64 213 80 200 95 c 0 - 188 108 178 122 168 137 c 0 - 167 139 164 141 161 143 c 1 - 159 140 156 137 155 134 c 0x1d - 145 111 135 87 125 64 c 0 - 122 57 121 49 119 42 c 0 - 118 36 120 30 125 26 c 0 - 130 21 136 16 145 16 c 1 - 145 7 l 2 - 144 -1 142 -3 134 -3 c 0x4e - 127 -3 119 -2 112 -3 c 0 - 88 -4 64 -5 41 -6 c 0 - 31 -6 21 -6 10 -5 c 1 - 11 3 11 11 11 19 c 1 - 19 19 l 2 - 35 19 49 25 61 36 c 0 - 66 40 70 47 72 54 c 0 - 82 79 91 105 100 131 c 0 - 106 148 112 165 122 180 c 1 - 118 186 113 193 109 200 c 0 - 92 228 75 257 58 286 c 0 - 55 290 51 295 47 300 c 0 - 43 304 37 306 31 306 c 2 - 23 306 l 1x8e -EndSplineSet -Kerns2: 269 -124 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: y2 -Encoding: 65617 -1 269 -Width: 517 -GlyphClass: 2 -Flags: MW -HStem: -320 59 307 25<496 497> -VStem: 19 151<309 309.5> 367 131 -LayerCount: 2 -Fore -SplineSet -116 -261 m 1 - 127 -252 135 -238 143 -225 c 0 - 164 -186 182 -146 198 -104 c 0 - 206 -83 215 -63 223 -42 c 0 - 229 -27 234 -11 239 4 c 0 - 240 8 237 13 236 17 c 0 - 231 35 222 50 212 64 c 0 - 191 94 169 123 150 154 c 0 - 141 170 129 185 118 200 c 0 - 115 204 113 207 111 211 c 0 - 103 226 94 240 83 253 c 0 - 82 255 80 257 79 259 c 0 - 75 271 66 280 58 289 c 0 - 49 299 39 304 26 305 c 2 - 19 305 l 1 - 19 314 20 322 21 330 c 1 - 27 330 34 331 40 331 c 0 - 72 332 104 333 136 333 c 0 - 147 333 158 331 170 329 c 1 - 170 309 l 1 - 165 308 161 307 157 306 c 0 - 150 303 148 300 151 294 c 0 - 157 282 164 271 170 260 c 0 - 175 252 182 245 186 237 c 0 - 208 200 230 163 256 127 c 0 - 261 121 265 114 269 107 c 0 - 275 98 282 90 290 83 c 1 - 292 86 295 88 296 91 c 0 - 308 114 320 137 331 160 c 0 - 344 187 355 214 368 241 c 0 - 373 253 378 265 382 277 c 0 - 384 284 384 292 384 299 c 0 - 384 300 381 302 379 302 c 0 - 375 303 372 303 367 304 c 1 - 367 332 l 1 - 411 334 455 336 499 332 c 1 - 498 324 498 315 497 307 c 0 - 495 307 494 307 492 306 c 2 - 456 300 l 2 - 446 297 441 289 437 281 c 0 - 424 252 410 222 398 193 c 0 - 377 147 358 101 338 55 c 0 - 332 40 324 25 317 10 c 0 - 309 -6 303 -22 295 -38 c 0 - 284 -62 271 -86 259 -111 c 0 - 252 -126 245 -141 237 -156 c 0 - 221 -186 205 -217 184 -245 c 0 - 179 -251 175 -257 172 -263 c 0 - 163 -278 150 -287 137 -296 c 0 - 130 -301 124 -305 117 -308 c 0 - 92 -322 67 -323 41 -316 c 0 - 39 -315 38 -315 37 -315 c 0 - 32 -314 26 -313 24 -308 c 0 - 22 -302 21 -295 23 -289 c 0 - 24 -286 25 -283 27 -280 c 0 - 40 -264 63 -248 88 -254 c 0 - 97 -256 106 -259 116 -261 c 1 -EndSplineSet -EndChar - -StartChar: z1 -Encoding: 65618 -1 270 -Width: 332 -GlyphClass: 2 -Flags: MW -HStem: -3 33<131 132 131 160 131 187> 0 30 285 45 289 37 -VStem: 246 75 297 9 -LayerCount: 2 -Fore -SplineSet -297 62 m 1xa4 - 308 59 308 59 307 50 c 0xa4 - 307 37 306 25 306 13 c 0 - 306 5 305 3 297 2 c 0x64 - 281 1 265 0 249 0 c 0xa4 - 228 -2 208 -3 187 -3 c 0 - 178 -4 169 -4 160 -3 c 2 - 74 -3 l 2 - 64 -3 53 -1 43 -1 c 1 - 42 5 42 9 46 13 c 0 - 47 14 47 17 49 19 c 0 - 52 26 55 33 60 39 c 0 - 72 55 85 70 96 86 c 0 - 113 110 131 134 151 156 c 0 - 158 163 164 171 170 179 c 0 - 189 202 207 226 226 249 c 0 - 232 257 237 265 243 273 c 0 - 247 278 247 283 246 289 c 1x98 - 237 289 229 290 220 289 c 0 - 180 288 140 287 100 285 c 0 - 86 284 72 282 59 280 c 0 - 48 278 41 269 36 260 c 0 - 33 255 31 250 29 245 c 0 - 28 239 26 239 18 239 c 0 - 13 240 10 243 10 248 c 0 - 10 251 10 255 11 258 c 0 - 12 274 15 290 16 306 c 0 - 17 317 27 327 39 328 c 0 - 63 329 88 330 112 330 c 0xa8 - 141 330 170 330 199 329 c 0 - 238 328 277 327 317 326 c 1 - 323 317 323 309 316 300 c 0 - 311 293 305 286 299 280 c 0 - 284 265 273 249 261 231 c 0 - 247 210 234 187 219 165 c 0x98 - 208 150 195 136 183 121 c 0 - 165 98 147 76 128 53 c 0 - 125 49 123 45 120 40 c 0 - 119 36 120 33 124 32 c 0 - 127 31 130 30 132 30 c 0 - 160 31 188 31 215 32 c 0 - 224 32 233 33 242 34 c 0 - 255 35 267 36 280 37 c 0 - 287 37 292 41 293 48 c 0 - 294 53 296 57 297 62 c 1xa4 -EndSplineSet -EndChar - -StartChar: z2 -Encoding: 65619 -1 271 -Width: 428 -GlyphClass: 2 -Flags: MW -HStem: -56 40 -11 21G -6 21G<21 22.5> -1 44<137 167> 290 41 -VStem: 20 516 -LayerCount: 2 -Fore -SplineSet -137 43 m 1x1c - 143 43 148 43 153 42 c 0 - 168 41 183 40 197 38 c 0 - 211 37 224 35 238 33 c 0 - 265 29 292 24 320 18 c 0 - 330 16 341 13 351 11 c 0 - 370 6 388 1 407 -4 c 0x1c - 419 -7 432 -9 444 -12 c 0 - 454 -15 464 -17 474 -16 c 0 - 491 -16 506 -14 517 0 c 1x9c - 523 -4 530 -7 536 -11 c 1 - 534 -15 532 -18 529 -20 c 0x4c - 511 -37 492 -51 466 -55 c 0 - 456 -57 445 -57 434 -56 c 0 - 401 -53 369 -45 338 -35 c 0 - 314 -27 289 -19 264 -13 c 0 - 249 -9 233 -8 217 -7 c 0x9c - 207 -5 197 -4 187 -3 c 0 - 179 -2 171 -1 163 -1 c 0 - 129 0 94 0 60 -2 c 0x1c - 50 -3 39 -2 29 -5 c 0 - 27 -6 24 -6 21 -6 c 0 - 19 4 21 14 22 23 c 0 - 22 24 25 26 27 27 c 0 - 40 32 52 37 65 43 c 0 - 76 48 84 55 91 64 c 0x2c - 116 101 148 133 179 165 c 0 - 196 182 213 200 230 218 c 0 - 251 239 271 261 291 282 c 0 - 292 284 294 285 296 288 c 1 - 286 289 276 290 267 291 c 0 - 243 294 218 291 194 290 c 0 - 166 288 139 285 112 282 c 0 - 109 282 107 281 104 280 c 0 - 95 274 88 265 86 254 c 0 - 84 244 82 235 81 225 c 0 - 80 218 79 218 72 218 c 2 - 60 218 l 2 - 53 218 50 221 50 228 c 0 - 50 236 51 243 51 251 c 0 - 51 270 51 289 50 308 c 0 - 50 311 49 314 47 317 c 0 - 45 323 46 326 51 329 c 0 - 55 332 59 334 63 337 c 0 - 65 340 68 340 72 339 c 0 - 88 332 105 331 123 331 c 0 - 175 332 227 331 280 332 c 0 - 303 332 327 333 351 335 c 0 - 359 335 367 338 375 341 c 0 - 381 344 387 344 394 343 c 0 - 399 343 402 339 402 334 c 2 - 402 316 l 2 - 402 313 400 310 397 308 c 0 - 390 302 383 295 375 290 c 0 - 361 281 351 268 339 256 c 0 - 327 243 314 229 301 215 c 0 - 288 202 276 188 263 175 c 0 - 230 147 202 115 173 83 c 0 - 163 72 151 60 141 49 c 0 - 139 47 138 46 137 44 c 2 - 137 43 l 1x1c -EndSplineSet -EndChar - -StartChar: ampersand1 -Encoding: 65620 -1 272 -Width: 512 -GlyphClass: 2 -Flags: MW -HStem: -14 29 481 45 -VStem: 159 54 170 48 447 35 455 47 -LayerCount: 2 -Fore -SplineSet -203 195 m 0xd4 - 198 197 195 198 192 200 c 0 - 173 207 163 221 159 240 c 0 - 155 257 161 271 169 285 c 0 - 183 306 202 323 223 337 c 0 - 233 344 242 350 253 357 c 1 - 260 351 266 345 272 338 c 1 - 269 334 266 331 263 330 c 0 - 248 320 236 307 225 294 c 0 - 219 286 215 277 213 267 c 0 - 212 253 217 245 231 241 c 0 - 243 237 255 237 267 245 c 0 - 273 249 280 253 287 257 c 0 - 290 259 293 261 297 263 c 0 - 304 259 308 253 312 245 c 0 - 309 243 307 241 304 239 c 0xe4 - 288 229 273 218 260 205 c 0 - 236 181 223 152 218 120 c 0 - 214 101 220 84 228 68 c 0 - 237 53 249 41 262 30 c 0 - 274 20 289 16 304 15 c 0 - 344 10 381 18 414 41 c 0 - 423 47 431 56 439 65 c 0 - 441 67 443 70 444 74 c 0 - 451 89 447 100 431 108 c 0 - 414 116 397 115 380 109 c 0xd8 - 361 102 342 94 323 86 c 0 - 319 84 314 83 309 81 c 1 - 306 87 304 92 302 97 c 0 - 305 99 308 101 311 102 c 0 - 329 113 348 122 365 133 c 0 - 380 143 392 155 402 170 c 0 - 414 187 423 205 431 224 c 0 - 438 243 444 262 450 281 c 0 - 450 282 450 283 451 284 c 0 - 454 317 458 351 449 384 c 0 - 439 417 420 446 388 462 c 0 - 384 464 381 465 377 467 c 0 - 352 483 324 485 296 481 c 0 - 285 480 275 478 264 477 c 0 - 245 475 228 467 212 459 c 0 - 189 448 168 436 147 422 c 0 - 141 417 134 413 129 408 c 0 - 112 390 96 373 81 354 c 0 - 61 330 49 301 38 272 c 0 - 34 261 30 249 25 237 c 0 - 21 236 17 236 12 235 c 0 - 11 237 10 239 10 240 c 0 - 13 266 19 292 28 317 c 0 - 36 343 46 368 61 391 c 0 - 74 409 87 426 105 439 c 0 - 112 445 119 450 125 456 c 0 - 147 476 173 488 199 499 c 0 - 217 507 236 512 254 518 c 0 - 282 528 310 528 338 526 c 0 - 365 524 390 518 415 509 c 0 - 445 499 468 479 481 449 c 0 - 495 417 501 384 502 350 c 0 - 502 323 501 296 493 270 c 0 - 481 230 464 191 437 158 c 0 - 434 155 432 152 430 148 c 1 - 439 144 447 140 455 136 c 0xd4 - 470 128 478 115 481 99 c 0 - 481 96 481 93 482 90 c 0 - 487 62 477 40 457 22 c 0 - 443 10 427 2 409 -2 c 0xd8 - 399 -5 390 -8 380 -11 c 0 - 357 -18 334 -17 310 -14 c 0 - 306 -14 303 -13 299 -13 c 0 - 277 -14 259 -5 241 4 c 0 - 223 12 207 23 194 39 c 0 - 172 66 164 97 175 131 c 0 - 182 151 191 169 200 188 c 0 - 201 190 202 192 203 195 c 0xd4 -EndSplineSet -EndChar - -StartChar: question1 -Encoding: 65621 -1 273 -Width: 484 -GlyphClass: 2 -Flags: MW -HStem: -2 21G -2 73 717 50 -VStem: 11 41 160 68 165 54<200 209.5> 412 54 -LayerCount: 2 -Fore -SplineSet -228 767 m 0xb6 - 255 770 281 763 306 755 c 0 - 322 750 338 746 353 741 c 0 - 369 736 382 727 394 716 c 0 - 406 706 415 693 422 678 c 0 - 433 653 445 628 455 602 c 0 - 463 581 465 559 466 536 c 0 - 466 510 462 485 459 459 c 0 - 457 443 452 428 445 414 c 0 - 441 403 436 393 428 385 c 0 - 412 369 396 353 376 341 c 0 - 367 335 358 330 348 326 c 2 - 252 284 l 2 - 240 279 234 269 230 258 c 0 - 224 242 219 225 219 207 c 0 - 219 193 219 180 218 167 c 0 - 218 164 217 161 216 157 c 0 - 215 153 212 152 207 152 c 0 - 201 151 193 150 186 151 c 0 - 178 151 169 158 168 166 c 0 - 167 178 165 190 165 201 c 0 - 165 218 166 234 168 250 c 0 - 170 266 175 282 184 296 c 0 - 190 306 199 312 210 316 c 0 - 233 324 256 333 278 342 c 0 - 305 353 330 367 354 385 c 0 - 374 400 390 420 401 444 c 0 - 404 451 406 458 407 466 c 0 - 412 493 416 519 412 546 c 0 - 409 561 407 576 402 591 c 0 - 397 609 390 626 383 644 c 0 - 378 659 368 670 355 678 c 0 - 345 685 334 692 323 698 c 0 - 297 713 270 719 240 717 c 0 - 217 716 195 713 174 708 c 0 - 160 705 147 698 136 691 c 0 - 113 677 92 660 77 638 c 0 - 58 611 47 582 55 548 c 0 - 58 536 63 526 69 515 c 0 - 74 506 81 497 83 485 c 0 - 85 474 85 463 78 454 c 0 - 74 449 70 447 65 446 c 0 - 49 445 37 451 31 467 c 0 - 25 481 20 497 16 512 c 0 - 13 524 11 537 11 550 c 0 - 8 579 13 607 21 635 c 0 - 26 652 33 669 48 682 c 0 - 58 692 68 703 78 714 c 0 - 92 731 111 742 132 748 c 0 - 152 753 171 759 191 764 c 0 - 202 767 215 766 228 767 c 0xb6 -199 -2 m 0xba - 177 -6 160 15 160 31 c 0 - 159 39 160 46 162 53 c 0 - 167 63 175 70 186 71 c 0 - 199 71 210 69 220 59 c 0 - 229 49 231 38 228 25 c 0x7a - 227 20 225 14 223 9 c 0 - 217 0 208 -3 199 -2 c 0xba -EndSplineSet -Kerns2: 274 -14 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: ampersand2 -Encoding: 65622 -1 274 -Width: 502 -GlyphClass: 2 -Flags: MW -HStem: -20 50 -4 53 294 38 -VStem: 53 58 364 38 436 56<310 331.5> 439 9 -LayerCount: 2 -Fore -SplineSet -492 310 m 2xbc - 490 308 489 305 489 302 c 0 - 483 251 460 209 426 171 c 0x7c - 408 151 391 129 374 109 c 0 - 368 102 362 95 356 87 c 1 - 360 82 364 78 369 74 c 0 - 376 68 383 63 390 57 c 0 - 405 46 419 47 433 58 c 2 - 439 64 l 1 - 451 58 452 58 448 47 c 0 - 442 32 433 19 420 8 c 0 - 405 -5 387 -7 368 -4 c 0 - 362 -3 355 -1 348 1 c 0 - 343 2 338 5 334 8 c 0 - 320 19 305 29 293 43 c 0 - 292 45 290 46 287 48 c 0 - 279 42 272 36 264 30 c 0 - 261 27 258 24 255 23 c 0x7a - 232 11 210 -1 188 -13 c 0 - 175 -20 161 -22 147 -21 c 0 - 141 -21 135 -20 129 -20 c 0 - 110 -20 94 -12 80 0 c 0 - 71 9 64 21 56 31 c 0 - 54 35 52 39 51 43 c 0 - 49 61 48 79 55 97 c 0 - 64 121 78 141 96 159 c 0 - 110 174 124 188 140 200 c 0 - 143 202 145 204 148 206 c 1 - 145 210 144 213 142 216 c 0 - 126 237 111 258 92 275 c 0 - 73 291 54 305 31 312 c 0 - 23 315 18 320 13 325 c 0 - 11 327 10 331 10 333 c 0 - 11 337 14 339 18 339 c 0 - 30 339 42 339 54 338 c 0 - 61 338 69 337 76 337 c 0 - 125 335 174 331 223 330 c 0 - 259 329 295 332 331 332 c 2 - 333 332 l 1 - 400 332 l 2 - 401 330 402 329 402 327 c 0 - 405 308 406 290 395 273 c 0 - 386 260 376 248 367 236 c 0 - 363 231 362 231 351 233 c 1 - 354 236 357 240 359 243 c 0 - 370 263 365 279 346 288 c 0 - 330 295 314 297 296 294 c 0 - 280 290 264 288 247 290 c 0 - 225 292 203 292 181 293 c 0 - 177 293 173 294 168 294 c 0 - 163 295 158 296 151 293 c 1 - 154 290 155 288 157 286 c 0 - 197 242 237 198 278 155 c 0 - 290 142 304 130 317 117 c 0 - 320 115 323 112 327 110 c 0 - 336 115 341 123 348 130 c 0 - 368 149 383 170 397 194 c 0 - 408 215 417 236 424 259 c 0 - 431 282 434 306 436 330 c 0 - 436 333 437 337 438 340 c 0 - 440 348 445 352 453 354 c 0 - 465 357 476 352 483 342 c 0 - 486 337 489 330 492 325 c 2 - 492 310 l 2xbc -166 183 m 1 - 144 161 125 139 114 111 c 0 - 109 99 107 85 111 72 c 0 - 113 67 114 62 114 57 c 0 - 115 49 120 43 127 39 c 0 - 139 33 151 29 165 30 c 0 - 178 31 191 33 203 36 c 0 - 227 42 248 53 266 70 c 1 - 264 72 263 74 261 75 c 0 - 251 83 243 92 236 102 c 0 - 233 107 229 111 225 115 c 0 - 209 133 194 151 178 169 c 0 - 174 173 170 178 166 183 c 1 -EndSplineSet -Kerns2: 275 33 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: braceleft1 -Encoding: 65623 -1 275 -Width: 202 -GlyphClass: 2 -Flags: MW -HStem: -37 39 524 41<131 143 131 131 143 166 63 183> -VStem: 67 51<458 485 485 490> -LayerCount: 2 -Fore -SplineSet -118 437 m 1 - 118 414 119 391 118 369 c 0 - 115 339 111 308 99 279 c 0 - 95 271 90 263 86 255 c 0 - 82 249 83 245 88 241 c 0 - 95 237 99 230 103 223 c 0 - 114 202 119 180 119 155 c 0 - 118 136 118 117 118 98 c 0 - 119 71 119 43 120 16 c 0 - 120 7 123 4 133 3 c 0 - 147 3 161 2 175 2 c 0 - 184 1 184 0 185 -9 c 0 - 185 -15 186 -21 186 -27 c 0 - 187 -38 185 -41 174 -39 c 0 - 143 -35 113 -37 82 -37 c 2 - 65 -37 l 2 - 55 -37 50 -33 47 -25 c 0 - 46 -18 44 -12 42 -6 c 0 - 41 -1 41 3 45 6 c 0 - 55 13 59 23 61 34 c 0 - 64 44 65 55 66 66 c 0 - 67 98 67 130 68 163 c 0 - 68 170 66 175 63 182 c 0 - 55 197 46 212 33 224 c 0 - 28 227 24 230 20 233 c 0 - 8 241 7 257 19 265 c 0 - 32 274 39 288 46 301 c 0 - 58 325 61 350 65 376 c 0 - 69 403 68 431 67 458 c 0 - 66 467 68 476 67 485 c 0 - 67 495 67 505 66 515 c 0 - 65 521 62 526 56 530 c 0 - 52 533 51 537 51 541 c 0 - 52 547 53 552 54 558 c 0 - 55 562 58 565 63 565 c 2 - 166 565 l 2 - 173 564 179 563 186 562 c 0 - 190 561 192 559 191 555 c 0 - 191 548 192 540 191 532 c 0 - 191 525 190 524 183 524 c 2 - 143 524 l 1 - 131 524 l 2 - 124 523 119 519 118 511 c 2 - 118 494 l 1 - 118 437 l 1 - 118 437 l 1 -EndSplineSet -Kerns2: 276 9 "'kern' Horizontal Kerning in Latin lookup 0 subtable" -EndChar - -StartChar: bracketleft1 -Encoding: 65624 -1 276 -Width: 170 -GlyphClass: 2 -Flags: MW -HStem: -37 40 524 41<101 112 101 101 112 136 31 151> -VStem: 38 48<260.5 287.5> -LayerCount: 2 -Fore -SplineSet -87 447 m 1 - 87 389 l 2 - 87 387 87 385 88 383 c 0 - 88 378 89 373 88 368 c 0 - 85 346 86 323 86 300 c 0 - 85 278 86 256 86 233 c 0 - 86 177 86 120 87 64 c 0 - 87 48 88 32 89 16 c 0 - 89 7 92 4 101 3 c 0 - 116 3 130 2 144 1 c 0 - 153 1 153 0 154 -8 c 0 - 154 -16 155 -23 155 -30 c 0 - 155 -37 153 -40 146 -40 c 0 - 140 -39 134 -39 128 -38 c 0 - 101 -38 73 -37 46 -37 c 2 - 33 -37 l 2 - 24 -37 19 -32 17 -25 c 0 - 14 -19 12 -12 11 -5 c 0 - 9 -1 10 3 14 6 c 0 - 23 13 28 23 30 33 c 0 - 32 45 34 57 35 69 c 0 - 36 106 36 143 37 180 c 0 - 37 212 38 244 38 277 c 0 - 38 298 36 319 36 340 c 0 - 35 347 36 353 36 360 c 2 - 36 455 l 1 - 36 495 l 2 - 36 502 36 509 34 516 c 0 - 32 521 29 526 25 530 c 0 - 21 534 19 536 20 541 c 0 - 21 547 22 553 23 558 c 0 - 23 562 27 565 31 565 c 2 - 136 565 l 2 - 141 564 148 563 154 562 c 0 - 158 562 160 559 160 554 c 2 - 160 533 l 2 - 160 525 159 524 151 524 c 2 - 112 524 l 1 - 101 524 l 2 - 92 523 87 519 87 510 c 0 - 86 503 86 496 86 489 c 2 - 86 447 l 1 - 87 447 l 1 -EndSplineSet -EndChar - -StartChar: parenleft1 -Encoding: 65625 -1 277 -Width: 208 -GlyphClass: 2 -Flags: MW -HStem: -35 581 -VStem: 12 44<198 204 192 206.5> -LayerCount: 2 -Fore -SplineSet -175 546 m 0 - 182 537 189 529 196 521 c 0 - 199 518 198 516 195 513 c 0 - 178 503 165 489 153 474 c 0 - 146 466 140 457 134 449 c 0 - 122 433 110 418 99 403 c 0 - 91 392 87 380 83 369 c 0 - 80 362 78 355 75 348 c 0 - 67 330 65 309 63 289 c 0 - 62 286 62 283 61 280 c 0 - 55 255 54 230 56 204 c 2 - 56 195 l 2 - 56 189 56 182 60 176 c 0 - 60 175 61 173 61 171 c 0 - 65 139 78 112 97 87 c 0 - 105 74 114 61 124 50 c 0 - 132 39 142 31 151 21 c 2 - 158 14 l 2 - 165 7 172 0 178 -7 c 0 - 182 -11 182 -14 179 -18 c 0 - 174 -23 168 -28 163 -33 c 0 - 160 -35 157 -36 154 -33 c 0 - 138 -20 121 -8 107 7 c 0 - 101 14 96 20 91 26 c 0 - 80 38 68 49 59 62 c 0 - 50 73 43 86 35 97 c 0 - 27 107 23 118 20 130 c 0 - 14 152 11 175 12 198 c 0 - 12 215 10 232 11 249 c 0 - 12 264 14 279 17 294 c 0 - 19 305 21 316 24 326 c 0 - 29 346 30 367 41 385 c 0 - 46 394 52 403 58 412 c 0 - 66 425 74 438 82 450 c 0 - 89 460 97 469 104 479 c 0 - 121 504 144 523 168 542 c 0 - 170 543 172 544 175 546 c 0 -EndSplineSet -EndChar - -StartChar: parenright1 -Encoding: 65626 -1 278 -Width: 207 -GlyphClass: 2 -Flags: MW -HStem: -35 581 -VStem: 151 45<185 186> -LayerCount: 2 -Fore -SplineSet -33 546 m 1 - 39 542 45 539 50 534 c 0 - 62 524 73 514 84 503 c 0 - 96 490 107 476 117 462 c 0 - 130 443 142 423 155 404 c 0 - 163 393 169 382 174 370 c 0 - 175 366 177 361 178 356 c 0 - 182 336 186 316 191 296 c 0 - 193 285 194 274 195 263 c 0 - 198 237 196 210 196 183 c 0 - 196 172 194 161 192 149 c 0 - 189 135 187 120 180 107 c 0 - 166 85 153 62 134 44 c 0 - 127 38 121 30 115 24 c 0 - 107 14 98 4 89 -5 c 0 - 82 -11 73 -18 65 -24 c 0 - 62 -27 57 -30 54 -33 c 0 - 50 -36 48 -35 45 -33 c 0 - 40 -28 34 -23 29 -18 c 0 - 25 -15 26 -11 29 -7 c 0 - 36 1 44 8 51 16 c 0 - 61 26 72 35 80 46 c 0 - 91 57 100 71 109 83 c 0 - 114 90 118 98 123 106 c 0 - 134 121 138 139 145 155 c 0 - 146 157 145 159 146 161 c 0 - 147 167 149 174 150 181 c 0 - 150 182 151 184 151 186 c 0 - 152 212 155 239 150 266 c 0 - 147 281 143 296 142 312 c 0 - 140 338 127 361 119 385 c 0 - 117 390 114 396 110 401 c 0 - 98 418 85 434 72 451 c 0 - 65 461 57 471 49 481 c 0 - 40 492 29 503 16 511 c 0 - 15 512 14 513 13 513 c 0 - 10 516 9 518 12 521 c 0 - 19 529 26 537 33 546 c 1 -EndSplineSet -EndChar - -StartChar: bracketright1 -Encoding: 65627 -1 279 -Width: 171 -GlyphClass: 2 -Flags: MW -HStem: -39 40<32.5 36> 522 40 -VStem: 84 48<236.5 263.5 236.5 293 236.5 318.5> -LayerCount: 2 -Fore -SplineSet -83 79 m 1 - 83 136 l 2 - 83 138 82 140 82 143 c 0 - 82 148 81 153 82 157 c 0 - 86 180 84 203 84 225 c 0 - 85 248 84 270 84 293 c 0 - 84 344 83 395 83 446 c 0 - 83 467 82 488 82 509 c 0 - 81 518 78 521 68 522 c 0 - 54 522 40 523 26 524 c 0 - 17 524 17 525 16 534 c 0 - 16 540 15 546 15 552 c 0 - 14 563 16 566 27 565 c 0 - 58 560 88 562 119 562 c 2 - 137 562 l 2 - 146 562 151 557 153 550 c 0 - 156 544 158 537 160 530 c 0 - 161 526 160 522 156 519 c 0 - 147 512 142 503 140 492 c 0 - 137 480 136 468 135 457 c 0 - 134 420 133 383 133 346 c 0 - 132 313 132 280 132 247 c 0 - 132 226 134 205 135 184 c 0 - 135 178 134 172 134 165 c 2 - 134 71 l 1 - 134 52 l 2 - 135 38 135 24 136 10 c 0 - 136 3 140 -2 146 -6 c 0 - 149 -8 151 -11 150 -16 c 0 - 149 -21 149 -27 147 -33 c 0 - 146 -37 143 -40 138 -40 c 0 - 104 -39 70 -40 36 -39 c 0 - 29 -39 23 -38 16 -37 c 0 - 12 -37 10 -34 10 -30 c 2 - 10 -9 l 2 - 10 1 11 1 21 1 c 2 - 58 1 l 2 - 62 1 65 1 69 2 c 0 - 78 2 82 7 83 15 c 0 - 83 19 84 22 84 26 c 2 - 84 79 l 1 - 83 79 l 1 -EndSplineSet -EndChar - -StartChar: braceright1 -Encoding: 65628 -1 280 -Width: 202 -GlyphClass: 2 -Flags: MW -HStem: -39 40<32 35> 522 40 -VStem: 84 50<32 41.5 32 73 32 88 32 88 32 156> -LayerCount: 2 -Fore -SplineSet -84 88 m 1 - 84 111 82 133 84 156 c 0 - 86 187 91 217 103 246 c 0 - 107 254 112 262 116 270 c 0 - 120 276 119 280 114 283 c 0 - 107 288 102 295 99 303 c 0 - 88 323 83 345 84 368 c 2 - 84 443 l 2 - 83 465 83 487 82 509 c 0 - 82 518 78 521 69 522 c 0 - 55 522 41 523 27 524 c 0 - 18 524 17 525 17 533 c 0 - 16 540 16 547 15 554 c 0 - 15 562 17 565 25 565 c 0 - 31 564 37 563 42 563 c 0 - 70 563 98 562 126 562 c 2 - 138 562 l 2 - 146 562 151 558 154 550 c 0 - 156 544 158 537 160 530 c 0 - 161 526 161 522 156 519 c 0 - 147 512 143 502 140 491 c 0 - 138 480 136 469 136 458 c 0 - 135 430 135 402 134 374 c 0 - 132 354 140 338 150 323 c 0 - 158 311 167 301 180 294 c 0 - 186 290 190 285 191 277 c 0 - 192 271 190 265 184 261 c 0 - 169 251 162 235 154 220 c 0 - 143 197 141 172 137 148 c 0 - 133 121 134 95 135 68 c 0 - 135 58 134 47 134 36 c 0 - 134 28 135 19 136 10 c 0 - 137 3 140 -2 146 -6 c 0 - 150 -8 151 -11 151 -16 c 0 - 150 -21 149 -27 148 -33 c 0 - 147 -37 144 -40 139 -40 c 0 - 105 -39 70 -40 35 -39 c 0 - 29 -39 22 -38 16 -37 c 0 - 12 -36 10 -34 11 -30 c 0 - 11 -22 10 -15 11 -7 c 0 - 11 0 11 1 19 1 c 0 - 35 1 51 2 67 1 c 0 - 77 1 84 7 84 18 c 2 - 84 73 l 1 - 84 88 l 1 - 84 88 l 1 -EndSplineSet -EndChar - -StartChar: exclamdown -Encoding: 161 161 281 -Width: 143 -Flags: W -HStem: -7 65<73 82> -VStem: 40 55<416 442> 40 63 57 21<121.5 139> -LayerCount: 2 -Fore -SplineSet -61 557 m 1x90 - 60 547 58 539 58 530 c 0 - 54 505 52 480 50 455 c 0x90 - 48 439 46 422 44 406 c 0 - 44 399 43 391 43 384 c 0 - 42 332 41 279 41 227 c 0 - 40 197 41 168 42 138 c 0 - 42 96 43 54 43 13 c 0 - 43 3 44 1 54 0 c 0 - 65 0 76 1 87 1 c 0 - 90 1 91 3 92 6 c 2 - 92 11 l 2 - 92 44 91 78 92 111 c 0 - 93 150 95 188 96 227 c 2 - 96 295 l 2 - 96 330 96 365 95 401 c 0 - 95 422 91 442 89 463 c 0xc0 - 86 491 82 519 79 547 c 0 - 79 548 79 550 78 552 c 0 - 78 555 76 557 73 557 c 2 - 61 557 l 1x90 -104 641 m 0xa0 - 103 665 92 676 74 676 c 0 - 58 677 41 660 41 645 c 0 - 41 626 54 610 72 611 c 0 - 95 611 105 625 104 641 c 0xa0 -EndSplineSet -EndChar -EndChars -EndSplineFont diff --git a/font_files/font-tc_kindred/web/kindred.woff b/font_files/font-tc_kindred/web/kindred.woff deleted file mode 100644 index 6b27cb5..0000000 Binary files a/font_files/font-tc_kindred/web/kindred.woff and /dev/null differ diff --git a/font_files/font-tcacrylichand/ttf/tcacrylichand.ttc b/font_files/font-tcacrylichand/ttf/tcacrylichand.ttc deleted file mode 100644 index dd3cddb..0000000 Binary files a/font_files/font-tcacrylichand/ttf/tcacrylichand.ttc and /dev/null differ diff --git a/font_files/font-tcacrylichand/web/download.woff b/font_files/font-tcacrylichand/web/download.woff deleted file mode 100644 index bc6374c..0000000 Binary files a/font_files/font-tcacrylichand/web/download.woff and /dev/null differ diff --git a/font_files/font-tcacrylichand/web/download2.woff b/font_files/font-tcacrylichand/web/download2.woff deleted file mode 100644 index 4b2279f..0000000 Binary files a/font_files/font-tcacrylichand/web/download2.woff and /dev/null differ diff --git a/font_files/font-tcacrylichand/web/download4.woff b/font_files/font-tcacrylichand/web/download4.woff deleted file mode 100644 index f99b20a..0000000 Binary files a/font_files/font-tcacrylichand/web/download4.woff and /dev/null differ diff --git a/font_files/font-tcacrylichand/web/download5.woff b/font_files/font-tcacrylichand/web/download5.woff deleted file mode 100644 index 95bda82..0000000 Binary files a/font_files/font-tcacrylichand/web/download5.woff and /dev/null differ diff --git a/font_files/font-techla/otf/techla.otf b/font_files/font-techla/otf/techla.otf deleted file mode 100644 index b4218c2..0000000 Binary files a/font_files/font-techla/otf/techla.otf and /dev/null differ diff --git a/font_files/font-techla/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-techla/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-techla/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-teenage-yellow-star/otf/teenage-yellow-star-svg.otf b/font_files/font-teenage-yellow-star/otf/teenage-yellow-star-svg.otf deleted file mode 100644 index 971195f..0000000 Binary files a/font_files/font-teenage-yellow-star/otf/teenage-yellow-star-svg.otf and /dev/null differ diff --git a/font_files/font-teenage-yellow-star/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-teenage-yellow-star/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-teenage-yellow-star/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-tf-madcloud-teenage-foundry/otf/tf-madloud-demo.otf b/font_files/font-tf-madcloud-teenage-foundry/otf/tf-madloud-demo.otf deleted file mode 100644 index 2952742..0000000 Binary files a/font_files/font-tf-madcloud-teenage-foundry/otf/tf-madloud-demo.otf and /dev/null differ diff --git a/font_files/font-tf-madcloud-teenage-foundry/other_files/read-me!.txt b/font_files/font-tf-madcloud-teenage-foundry/other_files/read-me!.txt deleted file mode 100644 index bcac199..0000000 --- a/font_files/font-tf-madcloud-teenage-foundry/other_files/read-me!.txt +++ /dev/null @@ -1,34 +0,0 @@ -This font is a DEMO version of the font and the characters in it contain the standard version. Read the description below for more details. - -By installing or using this font, you agree to the Product Use Agreement: - -1. This font is for PERSONAL USE. No commercial use allowed! -2. If you want to use it for commercial purposes, you can download it via the following link and you will get the full version and complete characters: - -https://teenagefoundry.com/product/tf-madloud/ - -3. If you don't mind, give me a cup of coffee to get even more excited! - -Donate click here - -paypal.me/teenagefoundry - -4. For inquiries, you can contact me at: teenagefoundry@gmail.com - -Thank you -Teenage Foundry - -INDONESIAN VERSION: - -1. Font demo ini hanya untuk penggunaan pribadi, tidak untuk komersial/yang menghasilkan profit -atau keuntungan dari hasil menggunakan font ini. Baik itu untuk Pribadi, Agensi Desain Grafis, Youtube, Tv, Percetakan, Perusahaan dll. -(APABILA ANDA MELANGGAR DAN MENGGUNAKAN TANPA MEMBELI LISENSI TERLEBIH DAHULU AKAN DIKENAKAN DENDA SEBESAR 10X LIPAT HARGA LISENSI SESUAI PENGGUNAAN). - -2. Jika ingin menggunakan secara komersial silahkan membeli lisensi melalui link di bawah ini: - -https://teenagefoundry.com/product/tf-madloud/ - -3. Untuk pertanyaan, Anda dapat menghubungi saya di: teenagefoundry@gmail.com - -Terimakasih -Teenage Foundry \ No newline at end of file diff --git a/font_files/font-tf-madcloud-teenage-foundry/other_files/tf-madcloud.png b/font_files/font-tf-madcloud-teenage-foundry/other_files/tf-madcloud.png deleted file mode 100644 index 830202a..0000000 Binary files a/font_files/font-tf-madcloud-teenage-foundry/other_files/tf-madcloud.png and /dev/null differ diff --git a/font_files/font-tf-madcloud-teenage-foundry/ttf/tf-madloud-demo.ttf b/font_files/font-tf-madcloud-teenage-foundry/ttf/tf-madloud-demo.ttf deleted file mode 100644 index 4728f32..0000000 Binary files a/font_files/font-tf-madcloud-teenage-foundry/ttf/tf-madloud-demo.ttf and /dev/null differ diff --git a/font_files/font-the-great-outdoors/otf/thegreatoutdoors-regular.otf b/font_files/font-the-great-outdoors/otf/thegreatoutdoors-regular.otf deleted file mode 100644 index 0f88612..0000000 Binary files a/font_files/font-the-great-outdoors/otf/thegreatoutdoors-regular.otf and /dev/null differ diff --git a/font_files/font-the-great-outdoors/otf/thegreatoutdoors-rough-regular.otf b/font_files/font-the-great-outdoors/otf/thegreatoutdoors-rough-regular.otf deleted file mode 100644 index 34274fd..0000000 Binary files a/font_files/font-the-great-outdoors/otf/thegreatoutdoors-rough-regular.otf and /dev/null differ diff --git a/font_files/font-the-great-outdoors/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-the-great-outdoors/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-the-great-outdoors/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-thourenz-inked/otf/thourenz-inked.otf b/font_files/font-thourenz-inked/otf/thourenz-inked.otf deleted file mode 100644 index 715524f..0000000 Binary files a/font_files/font-thourenz-inked/otf/thourenz-inked.otf and /dev/null differ diff --git a/font_files/font-thourenz-inked/ttf/thourenz-inked.ttf b/font_files/font-thourenz-inked/ttf/thourenz-inked.ttf deleted file mode 100644 index dbf890c..0000000 Binary files a/font_files/font-thourenz-inked/ttf/thourenz-inked.ttf and /dev/null differ diff --git a/font_files/font-titin/ttf/titin.ttf b/font_files/font-titin/ttf/titin.ttf deleted file mode 100755 index 991d798..0000000 Binary files a/font_files/font-titin/ttf/titin.ttf and /dev/null differ diff --git a/font_files/font-tokyo/ttf/Tokyo-Outline.ttf b/font_files/font-tokyo/ttf/Tokyo-Outline.ttf deleted file mode 100755 index f2bf7cf..0000000 Binary files a/font_files/font-tokyo/ttf/Tokyo-Outline.ttf and /dev/null differ diff --git a/font_files/font-tokyo/ttf/Tokyo-Regular.ttf b/font_files/font-tokyo/ttf/Tokyo-Regular.ttf deleted file mode 100755 index 8bbf9c9..0000000 Binary files a/font_files/font-tokyo/ttf/Tokyo-Regular.ttf and /dev/null differ diff --git a/font_files/font-tryal/ttf/Tryal-Eroded.ttf b/font_files/font-tryal/ttf/Tryal-Eroded.ttf deleted file mode 100755 index f0a7f62..0000000 Binary files a/font_files/font-tryal/ttf/Tryal-Eroded.ttf and /dev/null differ diff --git a/font_files/font-tryal/ttf/Tryal-Regular.ttf b/font_files/font-tryal/ttf/Tryal-Regular.ttf deleted file mode 100755 index d42d3d1..0000000 Binary files a/font_files/font-tryal/ttf/Tryal-Regular.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Black.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-Black.ttf deleted file mode 100755 index 0339883..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Black.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-BlackItalic.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-BlackItalic.ttf deleted file mode 100755 index 28f5b04..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-BlackItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Bold.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-Bold.ttf deleted file mode 100755 index b9b092c..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Bold.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-BoldItalic.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-BoldItalic.ttf deleted file mode 100755 index 06a0b81..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-BoldItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Italic.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-Italic.ttf deleted file mode 100755 index bf7aa63..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Italic.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Light.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-Light.ttf deleted file mode 100755 index a9b0fd0..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Light.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-LightItalic.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-LightItalic.ttf deleted file mode 100755 index cc9a2a2..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-LightItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Regular.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-Regular.ttf deleted file mode 100755 index 98a249d..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Regular.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Thin.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-Thin.ttf deleted file mode 100755 index bcfb11c..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-Thin.ttf and /dev/null differ diff --git a/font_files/font-tt-russo-sans/ttf/TTRussoSans-ThinItalic.ttf b/font_files/font-tt-russo-sans/ttf/TTRussoSans-ThinItalic.ttf deleted file mode 100755 index 550cb06..0000000 Binary files a/font_files/font-tt-russo-sans/ttf/TTRussoSans-ThinItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-Black.ttf b/font_files/font-tt-teds/ttf/TT-Teds-Black.ttf deleted file mode 100755 index 0a22e0e..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-Black.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-BlackItalic.ttf b/font_files/font-tt-teds/ttf/TT-Teds-BlackItalic.ttf deleted file mode 100755 index d20ccf7..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-BlackItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-Bold.ttf b/font_files/font-tt-teds/ttf/TT-Teds-Bold.ttf deleted file mode 100755 index 60ab4cd..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-Bold.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-BoldItalic.ttf b/font_files/font-tt-teds/ttf/TT-Teds-BoldItalic.ttf deleted file mode 100755 index 4cfbf11..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-BoldItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-ExtraBold.ttf b/font_files/font-tt-teds/ttf/TT-Teds-ExtraBold.ttf deleted file mode 100755 index d094c31..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-ExtraBold.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-ExtraBoldItalic.ttf b/font_files/font-tt-teds/ttf/TT-Teds-ExtraBoldItalic.ttf deleted file mode 100755 index f2d85b7..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-ExtraBoldItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-ExtraLight.ttf b/font_files/font-tt-teds/ttf/TT-Teds-ExtraLight.ttf deleted file mode 100755 index ad5cfea..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-ExtraLight.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-ExtraLightItalic.ttf b/font_files/font-tt-teds/ttf/TT-Teds-ExtraLightItalic.ttf deleted file mode 100755 index fca803c..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-ExtraLightItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-Hairline.ttf b/font_files/font-tt-teds/ttf/TT-Teds-Hairline.ttf deleted file mode 100755 index 6554d54..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-Hairline.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-HairlineItalic.ttf b/font_files/font-tt-teds/ttf/TT-Teds-HairlineItalic.ttf deleted file mode 100755 index cf7fb9f..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-HairlineItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-Italic.ttf b/font_files/font-tt-teds/ttf/TT-Teds-Italic.ttf deleted file mode 100755 index 84c5541..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-Italic.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-Light.ttf b/font_files/font-tt-teds/ttf/TT-Teds-Light.ttf deleted file mode 100755 index 60b66d6..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-Light.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-LightItalic.ttf b/font_files/font-tt-teds/ttf/TT-Teds-LightItalic.ttf deleted file mode 100755 index 2141694..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-LightItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-Medium.ttf b/font_files/font-tt-teds/ttf/TT-Teds-Medium.ttf deleted file mode 100755 index 2a97a9d..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-Medium.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-MediumItalic.ttf b/font_files/font-tt-teds/ttf/TT-Teds-MediumItalic.ttf deleted file mode 100755 index 649e17e..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-MediumItalic.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-Regular.ttf b/font_files/font-tt-teds/ttf/TT-Teds-Regular.ttf deleted file mode 100755 index 93228f9..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-Regular.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-Thin.ttf b/font_files/font-tt-teds/ttf/TT-Teds-Thin.ttf deleted file mode 100755 index 6c42e4f..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-Thin.ttf and /dev/null differ diff --git a/font_files/font-tt-teds/ttf/TT-Teds-ThinItalic.ttf b/font_files/font-tt-teds/ttf/TT-Teds-ThinItalic.ttf deleted file mode 100755 index 9a8cd9e..0000000 Binary files a/font_files/font-tt-teds/ttf/TT-Teds-ThinItalic.ttf and /dev/null differ diff --git a/font_files/font-twitter-color-emoji/ttf/TwitterColorEmoji-SVGinOT.ttf b/font_files/font-twitter-color-emoji/ttf/TwitterColorEmoji-SVGinOT.ttf deleted file mode 100644 index 580d265..0000000 Binary files a/font_files/font-twitter-color-emoji/ttf/TwitterColorEmoji-SVGinOT.ttf and /dev/null differ diff --git a/font_files/font-tyler-handwriting/otf/tyler-handwriting.otf b/font_files/font-tyler-handwriting/otf/tyler-handwriting.otf deleted file mode 100644 index 05701ca..0000000 Binary files a/font_files/font-tyler-handwriting/otf/tyler-handwriting.otf and /dev/null differ diff --git a/font_files/font-ubuntu/ttf/Ubuntu-Bold.ttf b/font_files/font-ubuntu/ttf/Ubuntu-Bold.ttf deleted file mode 100644 index 7b85515..0000000 Binary files a/font_files/font-ubuntu/ttf/Ubuntu-Bold.ttf and /dev/null differ diff --git a/font_files/font-ubuntu/ttf/Ubuntu-BoldItalic.ttf b/font_files/font-ubuntu/ttf/Ubuntu-BoldItalic.ttf deleted file mode 100644 index 7db9e20..0000000 Binary files a/font_files/font-ubuntu/ttf/Ubuntu-BoldItalic.ttf and /dev/null differ diff --git a/font_files/font-ubuntu/ttf/Ubuntu-Italic.ttf b/font_files/font-ubuntu/ttf/Ubuntu-Italic.ttf deleted file mode 100644 index 9621a39..0000000 Binary files a/font_files/font-ubuntu/ttf/Ubuntu-Italic.ttf and /dev/null differ diff --git a/font_files/font-ubuntu/ttf/Ubuntu-Light.ttf b/font_files/font-ubuntu/ttf/Ubuntu-Light.ttf deleted file mode 100644 index 6a84adc..0000000 Binary files a/font_files/font-ubuntu/ttf/Ubuntu-Light.ttf and /dev/null differ diff --git a/font_files/font-ubuntu/ttf/Ubuntu-LightItalic.ttf b/font_files/font-ubuntu/ttf/Ubuntu-LightItalic.ttf deleted file mode 100644 index 0295cbb..0000000 Binary files a/font_files/font-ubuntu/ttf/Ubuntu-LightItalic.ttf and /dev/null differ diff --git a/font_files/font-ubuntu/ttf/Ubuntu-Medium.ttf b/font_files/font-ubuntu/ttf/Ubuntu-Medium.ttf deleted file mode 100644 index c6f048e..0000000 Binary files a/font_files/font-ubuntu/ttf/Ubuntu-Medium.ttf and /dev/null differ diff --git a/font_files/font-ubuntu/ttf/Ubuntu-MediumItalic.ttf b/font_files/font-ubuntu/ttf/Ubuntu-MediumItalic.ttf deleted file mode 100644 index 5fe5c50..0000000 Binary files a/font_files/font-ubuntu/ttf/Ubuntu-MediumItalic.ttf and /dev/null differ diff --git a/font_files/font-ubuntu/ttf/Ubuntu-Regular.ttf b/font_files/font-ubuntu/ttf/Ubuntu-Regular.ttf deleted file mode 100644 index 2001d6e..0000000 Binary files a/font_files/font-ubuntu/ttf/Ubuntu-Regular.ttf and /dev/null differ diff --git a/font_files/font-untitled1/otf/Untitled1.otf b/font_files/font-untitled1/otf/Untitled1.otf deleted file mode 100644 index 8d0ac97..0000000 Binary files a/font_files/font-untitled1/otf/Untitled1.otf and /dev/null differ diff --git a/font_files/font-upside-down/otf/Upside Down Outline.otf b/font_files/font-upside-down/otf/Upside Down Outline.otf deleted file mode 100644 index 8413949..0000000 Binary files a/font_files/font-upside-down/otf/Upside Down Outline.otf and /dev/null differ diff --git a/font_files/font-upside-down/otf/Upside Down Regular.otf b/font_files/font-upside-down/otf/Upside Down Regular.otf deleted file mode 100644 index 1ee85b1..0000000 Binary files a/font_files/font-upside-down/otf/Upside Down Regular.otf and /dev/null differ diff --git a/font_files/font-valofire/other_files/1.png b/font_files/font-valofire/other_files/1.png deleted file mode 100644 index 9f18663..0000000 Binary files a/font_files/font-valofire/other_files/1.png and /dev/null differ diff --git a/font_files/font-valofire/ttf/valofire-personal-used.ttf b/font_files/font-valofire/ttf/valofire-personal-used.ttf deleted file mode 100644 index dd7adfb..0000000 Binary files a/font_files/font-valofire/ttf/valofire-personal-used.ttf and /dev/null differ diff --git a/font_files/font-vampire-mansion/otf/vampire-mansion.otf b/font_files/font-vampire-mansion/otf/vampire-mansion.otf deleted file mode 100644 index f680b0b..0000000 Binary files a/font_files/font-vampire-mansion/otf/vampire-mansion.otf and /dev/null differ diff --git a/font_files/font-vampire-mansion/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-vampire-mansion/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-vampire-mansion/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-vaselina/otf/veselina-script.otf b/font_files/font-vaselina/otf/veselina-script.otf deleted file mode 100644 index 9b903db..0000000 Binary files a/font_files/font-vaselina/otf/veselina-script.otf and /dev/null differ diff --git a/font_files/font-vaselina/otf/veselina.otf b/font_files/font-vaselina/otf/veselina.otf deleted file mode 100644 index d4251d6..0000000 Binary files a/font_files/font-vaselina/otf/veselina.otf and /dev/null differ diff --git a/font_files/font-vaselina/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-vaselina/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-vaselina/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-vcr-osd-mono/ttf/VCR_OSD_MONO_1.001.ttf b/font_files/font-vcr-osd-mono/ttf/VCR_OSD_MONO_1.001.ttf deleted file mode 100644 index dcca687..0000000 Binary files a/font_files/font-vcr-osd-mono/ttf/VCR_OSD_MONO_1.001.ttf and /dev/null differ diff --git a/font_files/font-vector-line/otf/vector_line_2.1.otf b/font_files/font-vector-line/otf/vector_line_2.1.otf deleted file mode 100644 index 8adaee5..0000000 Binary files a/font_files/font-vector-line/otf/vector_line_2.1.otf and /dev/null differ diff --git a/font_files/font-virus_killer/otf/virus-killer.otf b/font_files/font-virus_killer/otf/virus-killer.otf deleted file mode 100644 index 1fdc852..0000000 Binary files a/font_files/font-virus_killer/otf/virus-killer.otf and /dev/null differ diff --git a/font_files/font-virus_killer/other_files/more-info.txt b/font_files/font-virus_killer/other_files/more-info.txt deleted file mode 100644 index 6f47469..0000000 --- a/font_files/font-virus_killer/other_files/more-info.txt +++ /dev/null @@ -1,24 +0,0 @@ -First of All, - -Thank you for download my product. -This product 100% free for personal use & commercial use - -File include : - -1. Virus Killer.ttf -2. Virus Killer.otf - -More Info : -khurasantype@gmail.com - -For Donation: -paypal.me/jalembe - -My OnlineShop: -https://www.creativefabrica.com/ref/53/ - -My Portofolio: -https://www.behance.net/khurasan - -My web: -www.khurasanstudio.com \ No newline at end of file diff --git a/font_files/font-virus_killer/other_files/read-me.pdf b/font_files/font-virus_killer/other_files/read-me.pdf deleted file mode 100644 index ea409b5..0000000 Binary files a/font_files/font-virus_killer/other_files/read-me.pdf and /dev/null differ diff --git a/font_files/font-virus_killer/other_files/virus-killer.jpg b/font_files/font-virus_killer/other_files/virus-killer.jpg deleted file mode 100644 index fdd7b2a..0000000 Binary files a/font_files/font-virus_killer/other_files/virus-killer.jpg and /dev/null differ diff --git a/font_files/font-virus_killer/ttf/virus-killer.ttf b/font_files/font-virus_killer/ttf/virus-killer.ttf deleted file mode 100644 index 823be8a..0000000 Binary files a/font_files/font-virus_killer/ttf/virus-killer.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Black-RevOblique.ttf b/font_files/font-walkway/ttf/Walkway-Black-RevOblique.ttf deleted file mode 100644 index 1ae0503..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Black-RevOblique.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Black.ttf b/font_files/font-walkway/ttf/Walkway-Black.ttf deleted file mode 100644 index 0cbe4bd..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Black.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Bold-RevOblique.ttf b/font_files/font-walkway/ttf/Walkway-Bold-RevOblique.ttf deleted file mode 100644 index 8a8fca4..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Bold-RevOblique.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Bold.ttf b/font_files/font-walkway/ttf/Walkway-Bold.ttf deleted file mode 100644 index 4d6a90b..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Bold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Condensed-Bold.ttf b/font_files/font-walkway/ttf/Walkway-Condensed-Bold.ttf deleted file mode 100644 index 9f39aee..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Condensed-Bold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Condensed-SemiBold.ttf b/font_files/font-walkway/ttf/Walkway-Condensed-SemiBold.ttf deleted file mode 100644 index da7eef7..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Condensed-SemiBold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Condensed.ttf b/font_files/font-walkway/ttf/Walkway-Condensed.ttf deleted file mode 100644 index 5f76558..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Condensed.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Expand-Black.ttf b/font_files/font-walkway/ttf/Walkway-Expand-Black.ttf deleted file mode 100644 index 15c86d3..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Expand-Black.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Expand-Bold.ttf b/font_files/font-walkway/ttf/Walkway-Expand-Bold.ttf deleted file mode 100644 index 15d8527..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Expand-Bold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Expand-RevOblique.ttf b/font_files/font-walkway/ttf/Walkway-Expand-RevOblique.ttf deleted file mode 100644 index 92d3271..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Expand-RevOblique.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Expand-SemiBold.ttf b/font_files/font-walkway/ttf/Walkway-Expand-SemiBold.ttf deleted file mode 100644 index 08b62ad..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Expand-SemiBold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Expand-UltraBold.ttf b/font_files/font-walkway/ttf/Walkway-Expand-UltraBold.ttf deleted file mode 100644 index 54f46a6..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Expand-UltraBold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Expand.ttf b/font_files/font-walkway/ttf/Walkway-Expand.ttf deleted file mode 100644 index 99b9dbe..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Expand.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Oblique-Black.ttf b/font_files/font-walkway/ttf/Walkway-Oblique-Black.ttf deleted file mode 100644 index 8489c6f..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Oblique-Black.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Oblique-Bold.ttf b/font_files/font-walkway/ttf/Walkway-Oblique-Bold.ttf deleted file mode 100644 index 6cb1050..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Oblique-Bold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Oblique-Expand.ttf b/font_files/font-walkway/ttf/Walkway-Oblique-Expand.ttf deleted file mode 100644 index 540918c..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Oblique-Expand.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Oblique-SemiBold.ttf b/font_files/font-walkway/ttf/Walkway-Oblique-SemiBold.ttf deleted file mode 100644 index 190111d..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Oblique-SemiBold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Oblique-UltraBold.ttf b/font_files/font-walkway/ttf/Walkway-Oblique-UltraBold.ttf deleted file mode 100644 index daffdeb..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Oblique-UltraBold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-Oblique.ttf b/font_files/font-walkway/ttf/Walkway-Oblique.ttf deleted file mode 100644 index 77869a4..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-Oblique.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-RevOblique.ttf b/font_files/font-walkway/ttf/Walkway-RevOblique.ttf deleted file mode 100644 index ba5b823..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-RevOblique.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-SemiBold-RevOblique.ttf b/font_files/font-walkway/ttf/Walkway-SemiBold-RevOblique.ttf deleted file mode 100644 index 2c8b066..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-SemiBold-RevOblique.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-SemiBold.ttf b/font_files/font-walkway/ttf/Walkway-SemiBold.ttf deleted file mode 100644 index d436007..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-SemiBold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-UltraBold-RevOblique.ttf b/font_files/font-walkway/ttf/Walkway-UltraBold-RevOblique.ttf deleted file mode 100644 index 7a190ab..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-UltraBold-RevOblique.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-UltraBold.ttf b/font_files/font-walkway/ttf/Walkway-UltraBold.ttf deleted file mode 100644 index 82c6ac3..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-UltraBold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-UltraCondensed-Bold.ttf b/font_files/font-walkway/ttf/Walkway-UltraCondensed-Bold.ttf deleted file mode 100644 index b104d1b..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-UltraCondensed-Bold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-UltraCondensed-Semi.ttf b/font_files/font-walkway/ttf/Walkway-UltraCondensed-Semi.ttf deleted file mode 100644 index 06308ee..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-UltraCondensed-Semi.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-UltraCondensed.ttf b/font_files/font-walkway/ttf/Walkway-UltraCondensed.ttf deleted file mode 100644 index 376ab26..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-UltraCondensed.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-UltraExpand-Bold.ttf b/font_files/font-walkway/ttf/Walkway-UltraExpand-Bold.ttf deleted file mode 100644 index 7798789..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-UltraExpand-Bold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-UltraExpand-SemiBold.ttf b/font_files/font-walkway/ttf/Walkway-UltraExpand-SemiBold.ttf deleted file mode 100644 index 564b9cc..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-UltraExpand-SemiBold.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-UltraExpand.ttf b/font_files/font-walkway/ttf/Walkway-UltraExpand.ttf deleted file mode 100644 index 61154d5..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-UltraExpand.ttf and /dev/null differ diff --git a/font_files/font-walkway/ttf/Walkway-rounded.ttf b/font_files/font-walkway/ttf/Walkway-rounded.ttf deleted file mode 100644 index 4d51a50..0000000 Binary files a/font_files/font-walkway/ttf/Walkway-rounded.ttf and /dev/null differ diff --git a/font_files/font-west-river/otf/westriver-regular.otf b/font_files/font-west-river/otf/westriver-regular.otf deleted file mode 100644 index a592dfd..0000000 Binary files a/font_files/font-west-river/otf/westriver-regular.otf and /dev/null differ diff --git a/font_files/font-west-river/other_files/personal-use-license.pdf b/font_files/font-west-river/other_files/personal-use-license.pdf deleted file mode 100644 index d7dbdbd..0000000 Binary files a/font_files/font-west-river/other_files/personal-use-license.pdf and /dev/null differ diff --git a/font_files/font-whtpny/otf/whtpny-lcd.otf b/font_files/font-whtpny/otf/whtpny-lcd.otf deleted file mode 100644 index f333920..0000000 Binary files a/font_files/font-whtpny/otf/whtpny-lcd.otf and /dev/null differ diff --git a/font_files/font-whtpny/otf/whtpny.otf b/font_files/font-whtpny/otf/whtpny.otf deleted file mode 100644 index f77fe45..0000000 Binary files a/font_files/font-whtpny/otf/whtpny.otf and /dev/null differ diff --git a/font_files/font-whtpny/otf/whtpnypx.otf b/font_files/font-whtpny/otf/whtpnypx.otf deleted file mode 100644 index 356990e..0000000 Binary files a/font_files/font-whtpny/otf/whtpnypx.otf and /dev/null differ diff --git a/font_files/font-whtpny/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-whtpny/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-whtpny/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-wire-one/ttf/WireOne-Regular.ttf b/font_files/font-wire-one/ttf/WireOne-Regular.ttf deleted file mode 100644 index 600078e..0000000 Binary files a/font_files/font-wire-one/ttf/WireOne-Regular.ttf and /dev/null differ diff --git a/font_files/font-wistonia-signature/otf/wistonia-signature.otf b/font_files/font-wistonia-signature/otf/wistonia-signature.otf deleted file mode 100644 index 86019cc..0000000 Binary files a/font_files/font-wistonia-signature/otf/wistonia-signature.otf and /dev/null differ diff --git a/font_files/font-wistonia-signature/ttf/wistonia-signature.ttf b/font_files/font-wistonia-signature/ttf/wistonia-signature.ttf deleted file mode 100644 index 06abf15..0000000 Binary files a/font_files/font-wistonia-signature/ttf/wistonia-signature.ttf and /dev/null differ diff --git a/font_files/font-ws-lowen/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-ws-lowen/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-ws-lowen/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-ws-lowen/ttf/ws-lowen-demo.ttf b/font_files/font-ws-lowen/ttf/ws-lowen-demo.ttf deleted file mode 100644 index a9859ae..0000000 Binary files a/font_files/font-ws-lowen/ttf/ws-lowen-demo.ttf and /dev/null differ diff --git a/font_files/font-wt-karsa-mono/otf/wt-karsa-mono.otf b/font_files/font-wt-karsa-mono/otf/wt-karsa-mono.otf deleted file mode 100755 index a5afc80..0000000 Binary files a/font_files/font-wt-karsa-mono/otf/wt-karsa-mono.otf and /dev/null differ diff --git a/font_files/font-wt-karsa-mono/other_files/desktop-commercial-use-license-pixel-surplus.pdf b/font_files/font-wt-karsa-mono/other_files/desktop-commercial-use-license-pixel-surplus.pdf deleted file mode 100644 index a485289..0000000 Binary files a/font_files/font-wt-karsa-mono/other_files/desktop-commercial-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-wt-karsa-mono/ttf/wt-karsa-mono.ttf b/font_files/font-wt-karsa-mono/ttf/wt-karsa-mono.ttf deleted file mode 100755 index 396d6eb..0000000 Binary files a/font_files/font-wt-karsa-mono/ttf/wt-karsa-mono.ttf and /dev/null differ diff --git a/font_files/font-you-rock/ttf/YouRock-Extras.ttf b/font_files/font-you-rock/ttf/YouRock-Extras.ttf deleted file mode 100755 index c70dc38..0000000 Binary files a/font_files/font-you-rock/ttf/YouRock-Extras.ttf and /dev/null differ diff --git a/font_files/font-you-rock/ttf/YouRock-Regular.ttf b/font_files/font-you-rock/ttf/YouRock-Regular.ttf deleted file mode 100755 index bb016d0..0000000 Binary files a/font_files/font-you-rock/ttf/YouRock-Regular.ttf and /dev/null differ diff --git a/font_files/font-youchat/otf/youchat.otf b/font_files/font-youchat/otf/youchat.otf deleted file mode 100644 index 00429c9..0000000 Binary files a/font_files/font-youchat/otf/youchat.otf and /dev/null differ diff --git a/font_files/font-youchat/other_files/more-info.txt b/font_files/font-youchat/other_files/more-info.txt deleted file mode 100644 index 87c980f..0000000 --- a/font_files/font-youchat/other_files/more-info.txt +++ /dev/null @@ -1,25 +0,0 @@ -First of All, - -Thank you for download my product. -This product 100% free for personal use & commercial use - -File include : - -1. Youchat.ttf -2. Youchat.otf - -More Info : -khurasantype@gmail.com - -For Donation: -paypal.me/khurasantype - -My OnlineShop: -https://www.creativefabrica.com/ref/53/ - -My Portofolio: -https://www.behance.net/khurasan - -My web: -www.khurasanstudio.com -www.mbkaos.com \ No newline at end of file diff --git a/font_files/font-youchat/other_files/read-me.pdf b/font_files/font-youchat/other_files/read-me.pdf deleted file mode 100644 index 4e5ae0f..0000000 Binary files a/font_files/font-youchat/other_files/read-me.pdf and /dev/null differ diff --git a/font_files/font-youchat/other_files/youchat.jpg b/font_files/font-youchat/other_files/youchat.jpg deleted file mode 100644 index fd61001..0000000 Binary files a/font_files/font-youchat/other_files/youchat.jpg and /dev/null differ diff --git a/font_files/font-youchat/ttf/youchat.ttf b/font_files/font-youchat/ttf/youchat.ttf deleted file mode 100644 index bdb8ee2..0000000 Binary files a/font_files/font-youchat/ttf/youchat.ttf and /dev/null differ diff --git a/font_files/font-zebra/otf/zebra-neg.otf b/font_files/font-zebra/otf/zebra-neg.otf deleted file mode 100644 index 09d9944..0000000 Binary files a/font_files/font-zebra/otf/zebra-neg.otf and /dev/null differ diff --git a/font_files/font-zebra/otf/zebra.otf b/font_files/font-zebra/otf/zebra.otf deleted file mode 100644 index e758e98..0000000 Binary files a/font_files/font-zebra/otf/zebra.otf and /dev/null differ diff --git a/font_files/font-zebra/other_files/free-personal-use-license-pixel-surplus.pdf b/font_files/font-zebra/other_files/free-personal-use-license-pixel-surplus.pdf deleted file mode 100644 index 0b57eee..0000000 Binary files a/font_files/font-zebra/other_files/free-personal-use-license-pixel-surplus.pdf and /dev/null differ diff --git a/font_files/font-zebra/ttf/zebra-neg.ttf b/font_files/font-zebra/ttf/zebra-neg.ttf deleted file mode 100644 index ea6127d..0000000 Binary files a/font_files/font-zebra/ttf/zebra-neg.ttf and /dev/null differ diff --git a/font_files/font-zebra/ttf/zebra.ttf b/font_files/font-zebra/ttf/zebra.ttf deleted file mode 100644 index b2bc560..0000000 Binary files a/font_files/font-zebra/ttf/zebra.ttf and /dev/null differ diff --git a/font_files/font-zipper/ttf/Zipper-Regular.ttf b/font_files/font-zipper/ttf/Zipper-Regular.ttf deleted file mode 100755 index f0e4ce1..0000000 Binary files a/font_files/font-zipper/ttf/Zipper-Regular.ttf and /dev/null differ diff --git a/fonts/font-tyler-handwriting b/fonts/font-tyler-handwriting new file mode 160000 index 0000000..5180705 --- /dev/null +++ b/fonts/font-tyler-handwriting @@ -0,0 +1 @@ +Subproject commit 51807056d15c9fff420303bb9076f99df92bc63d diff --git a/fonts/index.json b/fonts/index.json new file mode 100644 index 0000000..0e8fdd3 --- /dev/null +++ b/fonts/index.json @@ -0,0 +1,9 @@ +{ + "fonts": [ + { + "name": "tyler handwriting", + "path": "/Users/fishy/git/homebrew-fonts/fonts/font-tyler-handwriting", + "formula": "font-tyler handwriting" + } + ] +} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index e2f0358..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,23 +0,0 @@ -[project] -name = "custom-font-tap" -version = "0.1.0" -description = "CLI and tooling for the custom font Homebrew tap" -readme = "README.md" -requires-python = ">=3.10" -dependencies = [ - "pytest>=7.0", -] - -[project.scripts] -add-font = "tap_cli.main:main" - -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" - -[tool.hatch.build.targets.wheel] -packages = ["tap_cli"] - -[tool.pytest.ini_options] -testpaths = ["tests"] -pythonpath = ["."] diff --git a/remove-font.py b/remove-font.py new file mode 100755 index 0000000..3976da5 --- /dev/null +++ b/remove-font.py @@ -0,0 +1,173 @@ +#!/usr/bin/env python3 +import os +import sys +import json +import subprocess +import requests +import re +from pathlib import Path +from dotenv import load_dotenv +from urllib.parse import urlparse + +# Load environment variables from .env file +load_dotenv() + +def get_gitea_credentials(): + """Get Gitea credentials from environment variables.""" + gitea_url = os.getenv("GITEA_URL") + gitea_username = os.getenv("GITEA_USERNAME") + gitea_token = os.getenv("GITEA_API_TOKEN") + + if not all([gitea_url, gitea_username, gitea_token]): + print("Error: Missing Gitea credentials in .env file.") + print("Please make sure GITEA_URL, GITEA_USERNAME, and GITEA_API_TOKEN are set.") + sys.exit(1) + + return gitea_url, gitea_username, gitea_token + +def get_available_fonts(): + """Get a list of available fonts from the index.json file.""" + index_path = Path("fonts/index.json") + if not index_path.exists(): + print("Error: fonts/index.json not found.") + sys.exit(1) + + with open(index_path, "r") as f: + index = json.load(f) + + return [font["name"] for font in index.get("fonts", [])] + +def get_repo_name_from_submodule(font_name): + """Get the repository name from the submodule URL.""" + submodule_path = f"fonts/{font_name}" + if not os.path.exists(submodule_path): + return None + + # Get the submodule URL from .gitmodules + try: + result = subprocess.run( + ["git", "config", "-f", ".gitmodules", f"submodule.{submodule_path}.url"], + capture_output=True, text=True, check=True + ) + url = result.stdout.strip() + + # Handle both HTTP and SSH URLs + if url.startswith('http://') or url.startswith('https://'): + # HTTP URL format: http://clancy.genet-godzilla.ts.net:3002/fishy/homebrew-font-test + match = re.search(r'/([^/]+)/([^/]+)$', url) + if match: + return match.group(2) # Return the repository name + elif url.startswith('git@') or ':' in url: + # SSH URL format: git@clancy.genet-godzilla.ts.net:fishy/homebrew-font-test + # or with custom port: ssh://git@clancy.genet-godzilla.ts.net:2222/fishy/homebrew-font-test + parts = url.split(':') + if len(parts) >= 2: + # Get the last part which should be username/repo + last_part = parts[-1] + if '/' in last_part: + return last_part.split('/')[-1] + + print(f"Warning: Could not extract repository name from URL: {url}") + return None + except subprocess.CalledProcessError: + return None + +def delete_gitea_repo(gitea_url, gitea_username, gitea_token, repo_name): + """Delete a repository from Gitea using the API.""" + api_url = f"{gitea_url}/api/v1/repos/{gitea_username}/{repo_name}" + headers = { + "Authorization": f"token {gitea_token}", + "Content-Type": "application/json" + } + + print(f"Deleting repository {repo_name} from Gitea...") + response = requests.delete(api_url, headers=headers) + + if response.status_code == 204: + print(f"Repository {repo_name} deleted successfully.") + return True + else: + print(f"Error deleting repository: {response.status_code} - {response.text}") + return False + +def remove_font(font_name): + """Remove a font from the Homebrew tap and delete its repository from Gitea.""" + # Get Gitea credentials + gitea_url, gitea_username, gitea_token = get_gitea_credentials() + + # Check if the font exists + available_fonts = get_available_fonts() + if font_name not in available_fonts: + print(f"Error: Font '{font_name}' not found in the available fonts.") + print(f"Available fonts: {', '.join(available_fonts)}") + sys.exit(1) + + # Confirm deletion + print(f"\nWARNING: You are about to remove the font '{font_name}' and delete its repository from Gitea.") + print("This action cannot be undone.") + confirmation = input("Are you sure you want to proceed? (yes/no): ").lower() + + if confirmation != "yes": + print("Operation cancelled.") + sys.exit(0) + + # Get the repository name from the submodule + repo_name = get_repo_name_from_submodule(font_name) + if not repo_name: + print(f"Warning: Could not determine the repository name for font '{font_name}'.") + print("The repository will not be deleted from Gitea.") + repo_name = None + + # Remove the submodule + submodule_path = f"fonts/{font_name}" + if os.path.exists(submodule_path): + print(f"Removing submodule {submodule_path}...") + subprocess.run(["git", "submodule", "deinit", "-f", submodule_path], check=True) + subprocess.run(["git", "rm", "-f", submodule_path], check=True) + subprocess.run(["rm", "-rf", f".git/modules/{submodule_path}"], check=True) + + # Remove the formula + formula_path = f"Formula/font-{font_name}.rb" + if os.path.exists(formula_path): + print(f"Removing formula {formula_path}...") + subprocess.run(["git", "rm", "-f", formula_path], check=True) + + # Update the index.json file + index_path = Path("fonts/index.json") + with open(index_path, "r") as f: + index = json.load(f) + + # Remove the font from the index + index["fonts"] = [font for font in index.get("fonts", []) if font["name"] != font_name] + + # Write the updated index back to the file + with open(index_path, "w") as f: + json.dump(index, f, indent=2) + + # Delete the repository from Gitea if we found the name + if repo_name: + delete_gitea_repo(gitea_url, gitea_username, gitea_token, repo_name) + else: + print("Skipping repository deletion as the repository name could not be determined.") + + # Commit the changes + subprocess.run(["git", "add", "fonts/index.json"], check=True) + subprocess.run(["git", "commit", "-m", f"Remove {font_name} font"], check=True) + + print(f"\nFont '{font_name}' has been removed successfully.") + print("Remember to push your changes to Gitea manually.") + +def main(): + if len(sys.argv) != 2: + print("Usage: python3 remove-font.py ") + print("\nAvailable fonts:") + available_fonts = get_available_fonts() + for font in available_fonts: + print(f" - {font}") + sys.exit(1) + + font_name = sys.argv[1] + remove_font(font_name) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..76bcb73 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +requests>=2.25.1 +python-dotenv>=0.19.0 \ No newline at end of file diff --git a/tap_cli/__init__.py b/tap_cli/__init__.py deleted file mode 100644 index 9f4cb4c..0000000 --- a/tap_cli/__init__.py +++ /dev/null @@ -1 +0,0 @@ -"""CLI and helpers for the custom font Homebrew tap.""" diff --git a/tap_cli/main.py b/tap_cli/main.py deleted file mode 100644 index 5508f72..0000000 --- a/tap_cli/main.py +++ /dev/null @@ -1,123 +0,0 @@ -"""add-font CLI: add or update a font in the tap, then run cleanup, cask generator, and tests.""" -import re -import shutil -import subprocess -import sys -from pathlib import Path - - -def _repo_root() -> Path: - """Repository root (directory containing font_files/ and Casks/).""" - root = Path(__file__).resolve().parent.parent - assert (root / "font_files").exists(), f"Repo root not found: {root}" - return root - - -def _normalize_to_font_name(name: str) -> str: - """Return font- with lowercase, spaces/hyphens normalized.""" - name = name.strip().lower().replace(" ", "-") - # Collapse multiple hyphens - name = re.sub(r"-+", "-", name).strip("-") - if not name.startswith("font-"): - name = f"font-{name}" - return name - - -def _infer_font_name_from_path(path: Path) -> str: - """Infer font- from a folder or archive path.""" - name = path.name - # Strip common suffixes - for suf in (".zip", ".tar.gz", ".tgz", ".tar"): - if name.endswith(suf): - name = name[: -len(suf)] - break - return _normalize_to_font_name(name.replace("font-", "", 1) if name.lower().startswith("font-") else name) - - -def _run(cmd: list[str], cwd: Path | None = None) -> int: - """Run command; return exit code.""" - r = subprocess.run(cmd, cwd=cwd or _repo_root()) - return r.returncode - - -def main() -> None: - import argparse - - parser = argparse.ArgumentParser( - description="Add or update a font in the tap: run cleanup, generate cask, run tests." - ) - parser.add_argument( - "path_or_name", - help="Path to an unpacked font folder (or archive) or font name (e.g. font-acrylic-hand or acrylic-hand)", - ) - parser.add_argument( - "--no-test", - action="store_true", - help="Skip running the test suite after changes", - ) - parser.add_argument( - "--no-audit", - action="store_true", - help="Skip brew audit (default: run audit for touched formula)", - ) - args = parser.parse_args() - root = _repo_root() - font_files_dir = root / "font_files" - script_dir = root / ".fontfoldercleanup" - - path_arg = Path(args.path_or_name) - if path_arg.exists() and path_arg.is_dir(): - # Add from path: copy into font_files/font- - font_name = _infer_font_name_from_path(path_arg) - dest = font_files_dir / font_name - if dest.resolve() == path_arg.resolve(): - # Already in place - pass - else: - if dest.exists(): - print(f"Destination exists: {dest}; merging by copying new files.") - for item in path_arg.iterdir(): - dest_item = dest / item.name - if item.is_dir(): - if dest_item.exists(): - shutil.copytree(item, dest_item, dirs_exist_ok=True) - else: - shutil.copytree(item, dest_item) - else: - shutil.copy2(item, dest_item) - else: - shutil.copytree(path_arg, dest) - print(f"Copied to {dest}") - else: - # Treat as font name - font_name = _normalize_to_font_name(args.path_or_name) - dest = font_files_dir / font_name - if not dest.is_dir(): - print(f"Error: no folder at {dest}", file=sys.stderr) - sys.exit(1) - - # Run cleanup on font_files - cleanup_script = script_dir / "cleanup_font_folders.py" - font_files_abs = str(font_files_dir.resolve()) - if _run([sys.executable, str(cleanup_script), "--path", font_files_abs]) != 0: - sys.exit(1) - - # Run cask generator - cask_script = script_dir / "create_homebrew_formula.py" - if _run([sys.executable, str(cask_script)]) != 0: - sys.exit(1) - - if not args.no_test: - # Run pytest - if _run([sys.executable, "-m", "pytest", "tests/", "-v", "--tb=short"]) != 0: - print("Tests failed.", file=sys.stderr) - sys.exit(1) - - if not args.no_audit: - cask_path = root / "Casks" / f"{font_name}.rb" - if cask_path.exists(): - code = _run(["brew", "audit", "--cask", str(cask_path)]) - if code != 0: - print("brew audit reported issues (non-fatal).", file=sys.stderr) - - print(f"Done: {font_name}") diff --git a/tests/conftest.py b/tests/conftest.py deleted file mode 100644 index 474f5df..0000000 --- a/tests/conftest.py +++ /dev/null @@ -1,42 +0,0 @@ -"""Shared fixtures and repo paths for font tap tests.""" -from pathlib import Path - -import pytest - -# Repo root: directory containing font_files/ and Casks/ -REPO_ROOT = Path(__file__).resolve().parent.parent -FONT_FILES_DIR = REPO_ROOT / "font_files" -CASKS_DIR = REPO_ROOT / "Casks" - -REQUIRED_SUBDIRS = ("ttf", "otf", "web", "other_files") -WEB_EXTENSIONS = (".woff", ".woff2", ".eot", ".svg") - - -def get_font_dir_names(): - """Return sorted list of font-* directory names in font_files/ (single source of truth).""" - if not FONT_FILES_DIR.exists(): - return [] - return sorted( - d.name for d in FONT_FILES_DIR.iterdir() if d.is_dir() and d.name.startswith("font-") - ) - - -@pytest.fixture(scope="session") -def repo_root(): - return REPO_ROOT - - -@pytest.fixture(scope="session") -def font_dir_names(): - """All font folder names (font-) from font_files/.""" - names = get_font_dir_names() - assert names, "No font-* directories found in font_files/" - return names - - -@pytest.fixture(scope="session") -def cask_paths(): - """All Casks/font-*.rb paths that exist.""" - if not CASKS_DIR.exists(): - return [] - return sorted(CASKS_DIR.glob("font-*.rb")) diff --git a/tests/test_font_structure.py b/tests/test_font_structure.py deleted file mode 100644 index 63dbdad..0000000 --- a/tests/test_font_structure.py +++ /dev/null @@ -1,41 +0,0 @@ -"""Tests for font folder structure: required subdirs and at least one font file per font.""" -import pytest - -from tests.conftest import FONT_FILES_DIR, REQUIRED_SUBDIRS, WEB_EXTENSIONS, get_font_dir_names - - -# Top-level names to ignore (e.g. .DS_Store; cleanup script removes these) -IGNORED_TOPLEVEL = {".DS_Store"} - - -@pytest.mark.parametrize("font_name", get_font_dir_names()) -def test_font_has_required_subdirs_only(font_name): - """Each font folder has exactly ttf/, otf/, web/, other_files/ and no other top-level items (except ignored).""" - font_dir = FONT_FILES_DIR / font_name - assert font_dir.is_dir(), f"Font dir missing: {font_dir}" - names = [p.name for p in font_dir.iterdir() if p.name not in IGNORED_TOPLEVEL] - for required in REQUIRED_SUBDIRS: - assert required in names, f"{font_name}: missing subdir {required}/" - # All must be directories (the four subdirs) - for name in names: - assert (font_dir / name).is_dir(), f"{font_name}: unexpected file or non-dir at top level: {name}" - assert len(names) == 4, f"{font_name}: expected exactly 4 subdirs, got {names}" - - -@pytest.mark.parametrize("font_name", get_font_dir_names()) -def test_font_has_at_least_one_font_file_or_other(font_name): - """Each font folder has at least one font file (ttf/otf/web) or content in other_files.""" - font_dir = FONT_FILES_DIR / font_name - has_ttf = any((font_dir / "ttf").glob("*.ttf")) - has_otf = any((font_dir / "otf").glob("*.otf")) - web_dir = font_dir / "web" - has_web = any( - f.suffix.lower() in WEB_EXTENSIONS - for f in web_dir.glob("*") - if f.is_file() - ) - other_dir = font_dir / "other_files" - has_other = any(other_dir.iterdir()) if other_dir.exists() else False - assert has_ttf or has_otf or has_web or has_other, ( - f"{font_name}: no font files in ttf/, otf/, or web/ and no content in other_files/" - ) diff --git a/tests/test_formula_content.py b/tests/test_formula_content.py deleted file mode 100644 index c576274..0000000 --- a/tests/test_formula_content.py +++ /dev/null @@ -1,63 +0,0 @@ -"""Tests for cask content: correct font paths and valid cask identifier.""" -import re - -import pytest - -from tests.conftest import CASKS_DIR, FONT_FILES_DIR, get_font_dir_names - - -def _skip_if_no_cask(font_name): - cask_path = CASKS_DIR / f"{font_name}.rb" - if not cask_path.exists(): - pytest.skip(f"No cask for {font_name} (no installable font files)") - - -@pytest.mark.parametrize("font_name", get_font_dir_names()) -def test_cask_references_correct_font_path(font_name): - """Generated cask contains the correct font_files/font-/ path.""" - _skip_if_no_cask(font_name) - cask_path = CASKS_DIR / f"{font_name}.rb" - content = cask_path.read_text() - assert f"homebrew-fonts/font_files/{font_name}/" in content, ( - f"{font_name}: cask does not reference homebrew-fonts/font_files/{font_name}/" - ) - - -@pytest.mark.parametrize("font_name", get_font_dir_names()) -def test_cask_identifier_matches(font_name): - """Cask declares the correct identifier matching the file name.""" - _skip_if_no_cask(font_name) - cask_path = CASKS_DIR / f"{font_name}.rb" - content = cask_path.read_text() - match = re.search(r'cask\s+"([^"]+)"\s+do', content) - assert match, f"{font_name}: no 'cask \"...\" do' found" - assert match.group(1) == font_name, ( - f"{font_name}: expected cask \"{font_name}\", got \"{match.group(1)}\"" - ) - - -@pytest.mark.parametrize("font_name", get_font_dir_names()) -def test_cask_has_font_artifacts(font_name): - """Cask declares at least one font artifact.""" - _skip_if_no_cask(font_name) - cask_path = CASKS_DIR / f"{font_name}.rb" - content = cask_path.read_text() - font_lines = re.findall(r'^\s*font\s+"[^"]+"', content, re.MULTILINE) - assert font_lines, f"{font_name}: cask has no font artifacts" - - -@pytest.mark.parametrize("font_name", get_font_dir_names()) -def test_cask_font_files_exist_on_disk(font_name): - """Every font artifact declared in the cask corresponds to a real file in font_files/.""" - _skip_if_no_cask(font_name) - cask_path = CASKS_DIR / f"{font_name}.rb" - content = cask_path.read_text() - # Extract paths from font "..." lines; strip the homebrew-fonts/ archive prefix - paths = re.findall(r'^\s*font\s+"([^"]+)"', content, re.MULTILINE) - for rel_path in paths: - # Cask paths include archive root prefix: homebrew-fonts/font_files/... - local_path = rel_path.replace("homebrew-fonts/", "", 1) - full_path = FONT_FILES_DIR.parent / local_path - assert full_path.is_file(), ( - f"{font_name}: font artifact references missing file: {rel_path}" - ) diff --git a/tests/test_formula_exists.py b/tests/test_formula_exists.py deleted file mode 100644 index 68fc419..0000000 --- a/tests/test_formula_exists.py +++ /dev/null @@ -1,26 +0,0 @@ -"""Tests that a Cask file exists for every font with installable files.""" -import pytest - -from tests.conftest import CASKS_DIR, FONT_FILES_DIR, get_font_dir_names - -INSTALLABLE_EXTS = (".ttf", ".otf", ".ttc") - - -def _has_installable_fonts(font_name: str) -> bool: - font_dir = FONT_FILES_DIR / font_name - for ext in INSTALLABLE_EXTS: - pattern = f"*{ext}" - if any((font_dir / "ttf").glob(pattern)) or any((font_dir / "otf").glob(pattern)): - return True - return False - - -@pytest.mark.parametrize("font_name", get_font_dir_names()) -def test_cask_file_exists(font_name): - """Casks/font-.rb exists for each font folder with installable fonts.""" - if not _has_installable_fonts(font_name): - pytest.skip(f"{font_name} has no installable font files (TTF/OTF/TTC)") - cask_path = CASKS_DIR / f"{font_name}.rb" - assert cask_path.is_file(), ( - f"Missing cask for {font_name}: expected {cask_path}" - ) diff --git a/tests/test_install_works.py b/tests/test_install_works.py deleted file mode 100644 index 3613430..0000000 --- a/tests/test_install_works.py +++ /dev/null @@ -1,26 +0,0 @@ -"""Verify that each font's cask references valid font files that exist.""" -import re - -import pytest - -from tests.conftest import CASKS_DIR, FONT_FILES_DIR, get_font_dir_names - - -@pytest.mark.parametrize("font_name", get_font_dir_names()) -def test_cask_font_artifacts_are_installable(font_name): - """Each font artifact in the cask points to a real TTF or OTF file.""" - cask_path = CASKS_DIR / f"{font_name}.rb" - if not cask_path.exists(): - pytest.skip(f"No cask for {font_name} (no TTF/OTF files)") - - content = cask_path.read_text() - paths = re.findall(r'^\s*font\s+"([^"]+)"', content, re.MULTILINE) - assert paths, f"{font_name}: cask has no font artifacts" - - for rel_path in paths: - local_path = rel_path.replace("homebrew-fonts/", "", 1) - full_path = FONT_FILES_DIR.parent / local_path - assert full_path.is_file(), f"{font_name}: missing font file: {rel_path}" - assert full_path.suffix.lower() in (".ttf", ".otf", ".ttc"), ( - f"{font_name}: unexpected font type: {full_path.suffix}" - ) diff --git a/tests/test_no_orphan_formulae.py b/tests/test_no_orphan_formulae.py deleted file mode 100644 index 5b793eb..0000000 --- a/tests/test_no_orphan_formulae.py +++ /dev/null @@ -1,40 +0,0 @@ -"""Global tests: no orphan casks, no duplicate cask names.""" -from tests.conftest import CASKS_DIR, FONT_FILES_DIR, get_font_dir_names - - -def test_every_cask_has_matching_font_folder(): - """Every Casks/font-*.rb has a matching font_files/font-/ directory.""" - cask_files = sorted(CASKS_DIR.glob("font-*.rb")) - for cask_path in cask_files: - name = cask_path.stem # e.g. font-acrylic-hand - font_dir = FONT_FILES_DIR / name - assert font_dir.is_dir(), ( - f"Orphan cask: {cask_path.name} has no matching font folder {font_dir}" - ) - - -def test_no_duplicate_cask_names(): - """Only one cask file per font- (no duplicate basenames).""" - cask_files = list(CASKS_DIR.glob("font-*.rb")) - names = [p.stem for p in cask_files] - seen = set() - for n in names: - assert n not in seen, f"Duplicate cask name: {n}.rb" - seen.add(n) - - -def test_cask_count_matches_font_count(): - """Number of font-*.rb casks equals number of font-* directories with TTF/OTF files.""" - font_names = get_font_dir_names() - # Only count fonts that have TTF or OTF files (casks skip fonts with no installable files) - fonts_with_files = [] - for name in font_names: - font_dir = FONT_FILES_DIR / name - has_ttf = any((font_dir / "ttf").glob("*.ttf")) or any((font_dir / "ttf").glob("*.ttc")) - has_otf = any((font_dir / "otf").glob("*.otf")) - if has_ttf or has_otf: - fonts_with_files.append(name) - cask_count = len(list(CASKS_DIR.glob("font-*.rb"))) - assert cask_count == len(fonts_with_files), ( - f"Cask count ({cask_count}) != font dir count with TTF/OTF ({len(fonts_with_files)})" - ) diff --git a/uv.lock b/uv.lock deleted file mode 100644 index 61e796d..0000000 --- a/uv.lock +++ /dev/null @@ -1,152 +0,0 @@ -version = 1 -revision = 3 -requires-python = ">=3.10" - -[[package]] -name = "colorama" -version = "0.4.6" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, -] - -[[package]] -name = "custom-font-tap" -version = "0.1.0" -source = { editable = "." } -dependencies = [ - { name = "pytest" }, -] - -[package.metadata] -requires-dist = [{ name = "pytest", specifier = ">=7.0" }] - -[[package]] -name = "exceptiongroup" -version = "1.3.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.13'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8a/0e/97c33bf5009bdbac74fd2beace167cab3f978feb69cc36f1ef79360d6c4e/exceptiongroup-1.3.1-py3-none-any.whl", hash = "sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598", size = 16740, upload-time = "2025-11-21T23:01:53.443Z" }, -] - -[[package]] -name = "iniconfig" -version = "2.3.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, -] - -[[package]] -name = "packaging" -version = "26.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/65/ee/299d360cdc32edc7d2cf530f3accf79c4fca01e96ffc950d8a52213bd8e4/packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4", size = 143416, upload-time = "2026-01-21T20:50:39.064Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529", size = 74366, upload-time = "2026-01-21T20:50:37.788Z" }, -] - -[[package]] -name = "pluggy" -version = "1.6.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, -] - -[[package]] -name = "pygments" -version = "2.19.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, -] - -[[package]] -name = "pytest" -version = "9.0.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32'" }, - { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, - { name = "iniconfig" }, - { name = "packaging" }, - { name = "pluggy" }, - { name = "pygments" }, - { name = "tomli", marker = "python_full_version < '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/d1/db/7ef3487e0fb0049ddb5ce41d3a49c235bf9ad299b6a25d5780a89f19230f/pytest-9.0.2.tar.gz", hash = "sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11", size = 1568901, upload-time = "2025-12-06T21:30:51.014Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/pytest-9.0.2-py3-none-any.whl", hash = "sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b", size = 374801, upload-time = "2025-12-06T21:30:49.154Z" }, -] - -[[package]] -name = "tomli" -version = "2.4.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/82/30/31573e9457673ab10aa432461bee537ce6cef177667deca369efb79df071/tomli-2.4.0.tar.gz", hash = "sha256:aa89c3f6c277dd275d8e243ad24f3b5e701491a860d5121f2cdd399fbb31fc9c", size = 17477, upload-time = "2026-01-11T11:22:38.165Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3c/d9/3dc2289e1f3b32eb19b9785b6a006b28ee99acb37d1d47f78d4c10e28bf8/tomli-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b5ef256a3fd497d4973c11bf142e9ed78b150d36f5773f1ca6088c230ffc5867", size = 153663, upload-time = "2026-01-11T11:21:45.27Z" }, - { url = "https://files.pythonhosted.org/packages/51/32/ef9f6845e6b9ca392cd3f64f9ec185cc6f09f0a2df3db08cbe8809d1d435/tomli-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5572e41282d5268eb09a697c89a7bee84fae66511f87533a6f88bd2f7b652da9", size = 148469, upload-time = "2026-01-11T11:21:46.873Z" }, - { url = "https://files.pythonhosted.org/packages/d6/c2/506e44cce89a8b1b1e047d64bd495c22c9f71f21e05f380f1a950dd9c217/tomli-2.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:551e321c6ba03b55676970b47cb1b73f14a0a4dce6a3e1a9458fd6d921d72e95", size = 236039, upload-time = "2026-01-11T11:21:48.503Z" }, - { url = "https://files.pythonhosted.org/packages/b3/40/e1b65986dbc861b7e986e8ec394598187fa8aee85b1650b01dd925ca0be8/tomli-2.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e3f639a7a8f10069d0e15408c0b96a2a828cfdec6fca05296ebcdcc28ca7c76", size = 243007, upload-time = "2026-01-11T11:21:49.456Z" }, - { url = "https://files.pythonhosted.org/packages/9c/6f/6e39ce66b58a5b7ae572a0f4352ff40c71e8573633deda43f6a379d56b3e/tomli-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1b168f2731796b045128c45982d3a4874057626da0e2ef1fdd722848b741361d", size = 240875, upload-time = "2026-01-11T11:21:50.755Z" }, - { url = "https://files.pythonhosted.org/packages/aa/ad/cb089cb190487caa80204d503c7fd0f4d443f90b95cf4ef5cf5aa0f439b0/tomli-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:133e93646ec4300d651839d382d63edff11d8978be23da4cc106f5a18b7d0576", size = 246271, upload-time = "2026-01-11T11:21:51.81Z" }, - { url = "https://files.pythonhosted.org/packages/0b/63/69125220e47fd7a3a27fd0de0c6398c89432fec41bc739823bcc66506af6/tomli-2.4.0-cp311-cp311-win32.whl", hash = "sha256:b6c78bdf37764092d369722d9946cb65b8767bfa4110f902a1b2542d8d173c8a", size = 96770, upload-time = "2026-01-11T11:21:52.647Z" }, - { url = "https://files.pythonhosted.org/packages/1e/0d/a22bb6c83f83386b0008425a6cd1fa1c14b5f3dd4bad05e98cf3dbbf4a64/tomli-2.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:d3d1654e11d724760cdb37a3d7691f0be9db5fbdaef59c9f532aabf87006dbaa", size = 107626, upload-time = "2026-01-11T11:21:53.459Z" }, - { url = "https://files.pythonhosted.org/packages/2f/6d/77be674a3485e75cacbf2ddba2b146911477bd887dda9d8c9dfb2f15e871/tomli-2.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:cae9c19ed12d4e8f3ebf46d1a75090e4c0dc16271c5bce1c833ac168f08fb614", size = 94842, upload-time = "2026-01-11T11:21:54.831Z" }, - { url = "https://files.pythonhosted.org/packages/3c/43/7389a1869f2f26dba52404e1ef13b4784b6b37dac93bac53457e3ff24ca3/tomli-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:920b1de295e72887bafa3ad9f7a792f811847d57ea6b1215154030cf131f16b1", size = 154894, upload-time = "2026-01-11T11:21:56.07Z" }, - { url = "https://files.pythonhosted.org/packages/e9/05/2f9bf110b5294132b2edf13fe6ca6ae456204f3d749f623307cbb7a946f2/tomli-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7d6d9a4aee98fac3eab4952ad1d73aee87359452d1c086b5ceb43ed02ddb16b8", size = 149053, upload-time = "2026-01-11T11:21:57.467Z" }, - { url = "https://files.pythonhosted.org/packages/e8/41/1eda3ca1abc6f6154a8db4d714a4d35c4ad90adc0bcf700657291593fbf3/tomli-2.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:36b9d05b51e65b254ea6c2585b59d2c4cb91c8a3d91d0ed0f17591a29aaea54a", size = 243481, upload-time = "2026-01-11T11:21:58.661Z" }, - { url = "https://files.pythonhosted.org/packages/d2/6d/02ff5ab6c8868b41e7d4b987ce2b5f6a51d3335a70aa144edd999e055a01/tomli-2.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c8a885b370751837c029ef9bc014f27d80840e48bac415f3412e6593bbc18c1", size = 251720, upload-time = "2026-01-11T11:22:00.178Z" }, - { url = "https://files.pythonhosted.org/packages/7b/57/0405c59a909c45d5b6f146107c6d997825aa87568b042042f7a9c0afed34/tomli-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8768715ffc41f0008abe25d808c20c3d990f42b6e2e58305d5da280ae7d1fa3b", size = 247014, upload-time = "2026-01-11T11:22:01.238Z" }, - { url = "https://files.pythonhosted.org/packages/2c/0e/2e37568edd944b4165735687cbaf2fe3648129e440c26d02223672ee0630/tomli-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7b438885858efd5be02a9a133caf5812b8776ee0c969fea02c45e8e3f296ba51", size = 251820, upload-time = "2026-01-11T11:22:02.727Z" }, - { url = "https://files.pythonhosted.org/packages/5a/1c/ee3b707fdac82aeeb92d1a113f803cf6d0f37bdca0849cb489553e1f417a/tomli-2.4.0-cp312-cp312-win32.whl", hash = "sha256:0408e3de5ec77cc7f81960c362543cbbd91ef883e3138e81b729fc3eea5b9729", size = 97712, upload-time = "2026-01-11T11:22:03.777Z" }, - { url = "https://files.pythonhosted.org/packages/69/13/c07a9177d0b3bab7913299b9278845fc6eaaca14a02667c6be0b0a2270c8/tomli-2.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:685306e2cc7da35be4ee914fd34ab801a6acacb061b6a7abca922aaf9ad368da", size = 108296, upload-time = "2026-01-11T11:22:04.86Z" }, - { url = "https://files.pythonhosted.org/packages/18/27/e267a60bbeeee343bcc279bb9e8fbed0cbe224bc7b2a3dc2975f22809a09/tomli-2.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:5aa48d7c2356055feef06a43611fc401a07337d5b006be13a30f6c58f869e3c3", size = 94553, upload-time = "2026-01-11T11:22:05.854Z" }, - { url = "https://files.pythonhosted.org/packages/34/91/7f65f9809f2936e1f4ce6268ae1903074563603b2a2bd969ebbda802744f/tomli-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:84d081fbc252d1b6a982e1870660e7330fb8f90f676f6e78b052ad4e64714bf0", size = 154915, upload-time = "2026-01-11T11:22:06.703Z" }, - { url = "https://files.pythonhosted.org/packages/20/aa/64dd73a5a849c2e8f216b755599c511badde80e91e9bc2271baa7b2cdbb1/tomli-2.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9a08144fa4cba33db5255f9b74f0b89888622109bd2776148f2597447f92a94e", size = 149038, upload-time = "2026-01-11T11:22:07.56Z" }, - { url = "https://files.pythonhosted.org/packages/9e/8a/6d38870bd3d52c8d1505ce054469a73f73a0fe62c0eaf5dddf61447e32fa/tomli-2.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c73add4bb52a206fd0c0723432db123c0c75c280cbd67174dd9d2db228ebb1b4", size = 242245, upload-time = "2026-01-11T11:22:08.344Z" }, - { url = "https://files.pythonhosted.org/packages/59/bb/8002fadefb64ab2669e5b977df3f5e444febea60e717e755b38bb7c41029/tomli-2.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fb2945cbe303b1419e2706e711b7113da57b7db31ee378d08712d678a34e51e", size = 250335, upload-time = "2026-01-11T11:22:09.951Z" }, - { url = "https://files.pythonhosted.org/packages/a5/3d/4cdb6f791682b2ea916af2de96121b3cb1284d7c203d97d92d6003e91c8d/tomli-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bbb1b10aa643d973366dc2cb1ad94f99c1726a02343d43cbc011edbfac579e7c", size = 245962, upload-time = "2026-01-11T11:22:11.27Z" }, - { url = "https://files.pythonhosted.org/packages/f2/4a/5f25789f9a460bd858ba9756ff52d0830d825b458e13f754952dd15fb7bb/tomli-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4cbcb367d44a1f0c2be408758b43e1ffb5308abe0ea222897d6bfc8e8281ef2f", size = 250396, upload-time = "2026-01-11T11:22:12.325Z" }, - { url = "https://files.pythonhosted.org/packages/aa/2f/b73a36fea58dfa08e8b3a268750e6853a6aac2a349241a905ebd86f3047a/tomli-2.4.0-cp313-cp313-win32.whl", hash = "sha256:7d49c66a7d5e56ac959cb6fc583aff0651094ec071ba9ad43df785abc2320d86", size = 97530, upload-time = "2026-01-11T11:22:13.865Z" }, - { url = "https://files.pythonhosted.org/packages/3b/af/ca18c134b5d75de7e8dc551c5234eaba2e8e951f6b30139599b53de9c187/tomli-2.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:3cf226acb51d8f1c394c1b310e0e0e61fecdd7adcb78d01e294ac297dd2e7f87", size = 108227, upload-time = "2026-01-11T11:22:15.224Z" }, - { url = "https://files.pythonhosted.org/packages/22/c3/b386b832f209fee8073c8138ec50f27b4460db2fdae9ffe022df89a57f9b/tomli-2.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:d20b797a5c1ad80c516e41bc1fb0443ddb5006e9aaa7bda2d71978346aeb9132", size = 94748, upload-time = "2026-01-11T11:22:16.009Z" }, - { url = "https://files.pythonhosted.org/packages/f3/c4/84047a97eb1004418bc10bdbcfebda209fca6338002eba2dc27cc6d13563/tomli-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:26ab906a1eb794cd4e103691daa23d95c6919cc2fa9160000ac02370cc9dd3f6", size = 154725, upload-time = "2026-01-11T11:22:17.269Z" }, - { url = "https://files.pythonhosted.org/packages/a8/5d/d39038e646060b9d76274078cddf146ced86dc2b9e8bbf737ad5983609a0/tomli-2.4.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:20cedb4ee43278bc4f2fee6cb50daec836959aadaf948db5172e776dd3d993fc", size = 148901, upload-time = "2026-01-11T11:22:18.287Z" }, - { url = "https://files.pythonhosted.org/packages/73/e5/383be1724cb30f4ce44983d249645684a48c435e1cd4f8b5cded8a816d3c/tomli-2.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:39b0b5d1b6dd03684b3fb276407ebed7090bbec989fa55838c98560c01113b66", size = 243375, upload-time = "2026-01-11T11:22:19.154Z" }, - { url = "https://files.pythonhosted.org/packages/31/f0/bea80c17971c8d16d3cc109dc3585b0f2ce1036b5f4a8a183789023574f2/tomli-2.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a26d7ff68dfdb9f87a016ecfd1e1c2bacbe3108f4e0f8bcd2228ef9a766c787d", size = 250639, upload-time = "2026-01-11T11:22:20.168Z" }, - { url = "https://files.pythonhosted.org/packages/2c/8f/2853c36abbb7608e3f945d8a74e32ed3a74ee3a1f468f1ffc7d1cb3abba6/tomli-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:20ffd184fb1df76a66e34bd1b36b4a4641bd2b82954befa32fe8163e79f1a702", size = 246897, upload-time = "2026-01-11T11:22:21.544Z" }, - { url = "https://files.pythonhosted.org/packages/49/f0/6c05e3196ed5337b9fe7ea003e95fd3819a840b7a0f2bf5a408ef1dad8ed/tomli-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:75c2f8bbddf170e8effc98f5e9084a8751f8174ea6ccf4fca5398436e0320bc8", size = 254697, upload-time = "2026-01-11T11:22:23.058Z" }, - { url = "https://files.pythonhosted.org/packages/f3/f5/2922ef29c9f2951883525def7429967fc4d8208494e5ab524234f06b688b/tomli-2.4.0-cp314-cp314-win32.whl", hash = "sha256:31d556d079d72db7c584c0627ff3a24c5d3fb4f730221d3444f3efb1b2514776", size = 98567, upload-time = "2026-01-11T11:22:24.033Z" }, - { url = "https://files.pythonhosted.org/packages/7b/31/22b52e2e06dd2a5fdbc3ee73226d763b184ff21fc24e20316a44ccc4d96b/tomli-2.4.0-cp314-cp314-win_amd64.whl", hash = "sha256:43e685b9b2341681907759cf3a04e14d7104b3580f808cfde1dfdb60ada85475", size = 108556, upload-time = "2026-01-11T11:22:25.378Z" }, - { url = "https://files.pythonhosted.org/packages/48/3d/5058dff3255a3d01b705413f64f4306a141a8fd7a251e5a495e3f192a998/tomli-2.4.0-cp314-cp314-win_arm64.whl", hash = "sha256:3d895d56bd3f82ddd6faaff993c275efc2ff38e52322ea264122d72729dca2b2", size = 96014, upload-time = "2026-01-11T11:22:26.138Z" }, - { url = "https://files.pythonhosted.org/packages/b8/4e/75dab8586e268424202d3a1997ef6014919c941b50642a1682df43204c22/tomli-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:5b5807f3999fb66776dbce568cc9a828544244a8eb84b84b9bafc080c99597b9", size = 163339, upload-time = "2026-01-11T11:22:27.143Z" }, - { url = "https://files.pythonhosted.org/packages/06/e3/b904d9ab1016829a776d97f163f183a48be6a4deb87304d1e0116a349519/tomli-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c084ad935abe686bd9c898e62a02a19abfc9760b5a79bc29644463eaf2840cb0", size = 159490, upload-time = "2026-01-11T11:22:28.399Z" }, - { url = "https://files.pythonhosted.org/packages/e3/5a/fc3622c8b1ad823e8ea98a35e3c632ee316d48f66f80f9708ceb4f2a0322/tomli-2.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f2e3955efea4d1cfbcb87bc321e00dc08d2bcb737fd1d5e398af111d86db5df", size = 269398, upload-time = "2026-01-11T11:22:29.345Z" }, - { url = "https://files.pythonhosted.org/packages/fd/33/62bd6152c8bdd4c305ad9faca48f51d3acb2df1f8791b1477d46ff86e7f8/tomli-2.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e0fe8a0b8312acf3a88077a0802565cb09ee34107813bba1c7cd591fa6cfc8d", size = 276515, upload-time = "2026-01-11T11:22:30.327Z" }, - { url = "https://files.pythonhosted.org/packages/4b/ff/ae53619499f5235ee4211e62a8d7982ba9e439a0fb4f2f351a93d67c1dd2/tomli-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:413540dce94673591859c4c6f794dfeaa845e98bf35d72ed59636f869ef9f86f", size = 273806, upload-time = "2026-01-11T11:22:32.56Z" }, - { url = "https://files.pythonhosted.org/packages/47/71/cbca7787fa68d4d0a9f7072821980b39fbb1b6faeb5f5cf02f4a5559fa28/tomli-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0dc56fef0e2c1c470aeac5b6ca8cc7b640bb93e92d9803ddaf9ea03e198f5b0b", size = 281340, upload-time = "2026-01-11T11:22:33.505Z" }, - { url = "https://files.pythonhosted.org/packages/f5/00/d595c120963ad42474cf6ee7771ad0d0e8a49d0f01e29576ee9195d9ecdf/tomli-2.4.0-cp314-cp314t-win32.whl", hash = "sha256:d878f2a6707cc9d53a1be1414bbb419e629c3d6e67f69230217bb663e76b5087", size = 108106, upload-time = "2026-01-11T11:22:34.451Z" }, - { url = "https://files.pythonhosted.org/packages/de/69/9aa0c6a505c2f80e519b43764f8b4ba93b5a0bbd2d9a9de6e2b24271b9a5/tomli-2.4.0-cp314-cp314t-win_amd64.whl", hash = "sha256:2add28aacc7425117ff6364fe9e06a183bb0251b03f986df0e78e974047571fd", size = 120504, upload-time = "2026-01-11T11:22:35.764Z" }, - { url = "https://files.pythonhosted.org/packages/b3/9f/f1668c281c58cfae01482f7114a4b88d345e4c140386241a1a24dcc9e7bc/tomli-2.4.0-cp314-cp314t-win_arm64.whl", hash = "sha256:2b1e3b80e1d5e52e40e9b924ec43d81570f0e7d09d11081b797bc4692765a3d4", size = 99561, upload-time = "2026-01-11T11:22:36.624Z" }, - { url = "https://files.pythonhosted.org/packages/23/d1/136eb2cb77520a31e1f64cbae9d33ec6df0d78bdf4160398e86eec8a8754/tomli-2.4.0-py3-none-any.whl", hash = "sha256:1f776e7d669ebceb01dee46484485f43a4048746235e683bcdffacdf1fb4785a", size = 14477, upload-time = "2026-01-11T11:22:37.446Z" }, -] - -[[package]] -name = "typing-extensions" -version = "4.15.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, -]