Merge branch 'dev'
This commit is contained in:
6
.gitattributes
vendored
6
.gitattributes
vendored
@@ -61,3 +61,9 @@
|
||||
#*.PDF diff=astextplain
|
||||
#*.rtf diff=astextplain
|
||||
#*.RTF diff=astextplain
|
||||
|
||||
###############################################################################
|
||||
# Executable files - preserve execution permissions on Unix systems
|
||||
# (https://git-scm.com/docs/gitattributes#_executable)
|
||||
###############################################################################
|
||||
runtime/*.exe binary
|
||||
60
.github/tweak_changelogs.sh
vendored
Executable file
60
.github/tweak_changelogs.sh
vendored
Executable file
@@ -0,0 +1,60 @@
|
||||
#!/bin/bash
|
||||
|
||||
RELEASE_VERSION="$1"
|
||||
|
||||
# Delete until and including the first line containing "<!-- Release notes generated"
|
||||
sed -i '1,/^<!-- Release notes generated/d' temp_change.md
|
||||
|
||||
# Check if there is more than one non-empty line (the full changelog line) before we continue
|
||||
if [ $(grep -c '^[[:space:]]*[^[:space:]]' temp_change.md) -le 1 ]; then
|
||||
echo "No changes to release $RELEASE_VERSION"
|
||||
rm temp_change.md
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Remove all CR characters from all changelog files
|
||||
sed -i 's/\r//g' temp_change.md CHANGELOG.md changelog.txt
|
||||
|
||||
# Reverse the order of lines in the file (last line becomes first, etc.)
|
||||
sed -i '1h;1d;$!H;$!d;G' temp_change.md
|
||||
# Convert "**Full Changelog**: URL" format to markdown link format "[Full Changelog](URL)"
|
||||
sed -i -re 's/\*\*Full Changelog\*\*: (.*)/\[Full Changelog\]\(\1\)\n/' temp_change.md
|
||||
# Delete everything from "## New Contributors" line to the end of file
|
||||
sed -i '/## New Contributors/,$d' temp_change.md
|
||||
# Convert GitHub changelog entries to markdown format
|
||||
# "* description by (@username1, @username2) in #1310, #1311" → "- description #1310, #1311 (@username1, @username2)"
|
||||
sed -i -re 's/^\*\s(.*)\sby\s\(?(@[^)]*[^) ])\)?\s+in\s+(.*)/- \1 \3 (\2)/' temp_change.md
|
||||
# Convert @usernames to github links
|
||||
# "(@username1, @username2)" → "([username1](https://github.com/username1), [username2](https://github.com/username2))"
|
||||
sed -i -re 's/@([a-zA-Z0-9_-]+)/[\1](https:\/\/github.com\/\1)/g' temp_change.md
|
||||
# Convert full PR URLs to linked format
|
||||
# "https://github.com/repo/pull/1310" → "[\#1310](https://github.com/repo/pull/1310)"
|
||||
sed -i -re 's/(https:\/\/[^) ]*\/pull\/([0-9]+))/[\\#\2](\1)/g' temp_change.md
|
||||
|
||||
# Username substitutions for preferred display names
|
||||
sed -i 's/\[Quotae/\[Quote_a/' temp_change.md
|
||||
sed -i 's/\[learn2draw/\[Lexy/' temp_change.md
|
||||
sed -i 's/\[Voronoff/\[Tom Clancy Is Dead/' temp_change.md
|
||||
sed -i 's/\[PJacek/\[TPlant/' temp_change.md
|
||||
sed -i 's/\[justjuangui/\[trompetin17/' temp_change.md
|
||||
|
||||
cp temp_change.md changelog_temp.txt
|
||||
# Append existing CHANGELOG.md content (excluding first line) to temp_change.md
|
||||
cat CHANGELOG.md | sed '1d' >> temp_change.md
|
||||
# Create new CHANGELOG.md with header containing version and date, followed by processed changes
|
||||
printf "# Changelog\n\n## [$RELEASE_VERSION](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/tree/$RELEASE_VERSION) ($(date +'%Y/%m/%d'))\n\n" | cat - temp_change.md > CHANGELOG.md
|
||||
# Convert changelog entries from markdown link format to simplified "* description (username)" format
|
||||
# First remove all PR links
|
||||
sed -i -re 's/( \()?\[\\#[0-9]+\]\([^)]*\),? ?\)?//g' changelog_temp.txt
|
||||
# Remove markdown link formatting from usernames in parentheses
|
||||
sed -i -re 's/\[([^]]*)\]\(https:\/\/github\.com\/[^)]*\)/\1/g' changelog_temp.txt
|
||||
# Create new changelog format: add version header, remove lines 2-3, format section headers, remove ## headers with following line, prepend to existing changelog
|
||||
echo "VERSION[${RELEASE_VERSION#v}][$(date +'%Y/%m/%d')]" | cat - changelog_temp.txt | sed '2,3d' | sed -re 's/^### (.*)/\n--- \1 ---/' | sed -e '/^##.*/,+1 d' | cat - changelog.txt > changelog_new.txt
|
||||
mv changelog_new.txt changelog.txt
|
||||
|
||||
# Normalize line endings to CRLF for all output files to ensure consistent checksums with Windows
|
||||
sed -i 's/\r*$/\r/' CHANGELOG.md changelog.txt
|
||||
|
||||
# Clean up temporary files
|
||||
rm temp_change.md
|
||||
rm changelog_temp.txt
|
||||
5
.github/workflows/backport_receive.yml
vendored
5
.github/workflows/backport_receive.yml
vendored
@@ -1,4 +1,5 @@
|
||||
name: Update code with code from PoB2
|
||||
run-name: ${{ github.event.client_payload.title }}
|
||||
|
||||
on:
|
||||
repository_dispatch:
|
||||
@@ -14,8 +15,9 @@ jobs:
|
||||
with:
|
||||
ref: 'dev'
|
||||
- name: Apply patch
|
||||
continue-on-error: true
|
||||
run: |
|
||||
curl -L ${{ github.event.client_payload.patch_url }} | git apply -v --index
|
||||
curl -L ${{ github.event.client_payload.patch_url }} | patch -p1 --merge --verbose -f -l --no-backup-if-mismatch
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v5
|
||||
with:
|
||||
@@ -23,6 +25,7 @@ jobs:
|
||||
branch: pob2-pr-${{ github.event.client_payload.id }}
|
||||
body: |
|
||||
${{ github.event.client_payload.msg }}
|
||||
committer: ${{ github.event.client_payload.name || github.event.client_payload.user }} <${{ github.event.client_payload.user }}@users.noreply.github.com>
|
||||
author: ${{ github.event.client_payload.name || github.event.client_payload.user }} <${{ github.event.client_payload.user }}@users.noreply.github.com>
|
||||
commit-message: ${{ github.event.client_payload.msg }}
|
||||
labels: ${{ github.event.client_payload.labels }}
|
||||
|
||||
26
.github/workflows/beta.yml
vendored
26
.github/workflows/beta.yml
vendored
@@ -16,10 +16,36 @@ jobs:
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
ref: 'dev'
|
||||
fetch-depth: 0
|
||||
- name: Configure bot user
|
||||
run: |
|
||||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git config --global user.name "github-actions[bot]"
|
||||
- name: Generate Release notes
|
||||
run: |
|
||||
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
|
||||
# Delete existing beta draft if it exists
|
||||
if gh release view beta >/dev/null 2>&1; then
|
||||
gh release delete beta --yes
|
||||
fi
|
||||
# Create new beta draft release with generated notes
|
||||
# Make sure the latest tag is correct, even if the current commit is already tagged
|
||||
LATEST_TAG=$(git describe --tags --abbrev=0)
|
||||
gh release create beta --title "Beta Release" --draft --generate-notes --notes-start-tag "$LATEST_TAG"
|
||||
gh release view beta > temp_change.md
|
||||
- name: Tweak changelogs
|
||||
id: tweak-changelogs
|
||||
continue-on-error: true
|
||||
run: |
|
||||
# Remove carriage returns to be able to run the script
|
||||
sed -i 's/\r$//' .github/tweak_changelogs.sh
|
||||
chmod +x .github/tweak_changelogs.sh
|
||||
.github/tweak_changelogs.sh beta
|
||||
# The hash suffix will help identifying if the beta version is up-to-date
|
||||
- name: Add commit hash suffix to manifest version
|
||||
if: steps.tweak-changelogs.outcome == 'success'
|
||||
run: |
|
||||
sed -i "s/<Version number=\"\([^\"]*\)\"/<Version number=\"\1-$(git rev-parse --short HEAD)\"/g" manifest.xml
|
||||
- name: Update manifest.xml
|
||||
run: python3 update_manifest.py --quiet --in-place
|
||||
- name: Push to beta branch
|
||||
|
||||
13
.github/workflows/installer.yml
vendored
13
.github/workflows/installer.yml
vendored
@@ -2,6 +2,12 @@ name: Create new installer
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag_name:
|
||||
description: 'Tag to build'
|
||||
required: true
|
||||
default: 'v2.x.x'
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
jobs:
|
||||
@@ -14,9 +20,12 @@ jobs:
|
||||
repository: 'PathOfBuildingCommunity/PathOfBuilding-Installer'
|
||||
ref: 'master'
|
||||
ssh-key: '${{ secrets.POB_INSTALLER_KEY }}'
|
||||
- name: Install NSIS
|
||||
run: |
|
||||
choco install nsis --yes
|
||||
echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
||||
- name: Create installer
|
||||
run: 'python3 make_release.py --game-version 1'
|
||||
- name: Upload artifact
|
||||
run: >
|
||||
gh release upload ${{ github.event.release.tag_name }} (Get-ChildItem Dist -File).FullName --clobber -R ${{ github.repository }};
|
||||
|
||||
gh release upload ${{ github.event.release.tag_name || github.event.inputs.tag_name }} (Get-ChildItem Dist -File).FullName --clobber -R ${{ github.repository }};
|
||||
|
||||
26
.github/workflows/release.yml
vendored
26
.github/workflows/release.yml
vendored
@@ -29,27 +29,11 @@ jobs:
|
||||
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token;
|
||||
gh release view $(basename ${{ github.event.inputs.releaseNoteUrl }}) > temp_change.md
|
||||
- name: Tweak changelogs
|
||||
run: >
|
||||
sed -i '1,10d' temp_change.md;
|
||||
sed -i '1h;1d;$!H;$!d;G' temp_change.md;
|
||||
sed -i -re 's/\*\*Full Changelog\*\*: (.*)/\[Full Changelog\]\(\1\)\n/' temp_change.md;
|
||||
sed -i '/## New Contributors/,$d' temp_change.md;
|
||||
sed -i -re 's/^\*(.*)\sby\s@(.*)\sin\s(.*\/pull\/)(.*)\r?/-\1 [\\#\4](\3\4) ([\2](https:\/\/github.com\/\2))/' temp_change.md;
|
||||
sed -i 's/\[Quotae/\[Quote_a/' temp_change.md;
|
||||
sed -i 's/\[learn2draw/\[Lexy/' temp_change.md;
|
||||
sed -i 's/\[Voronoff/\[Tom Clancy Is Dead/' temp_change.md;
|
||||
sed -i 's/\[PJacek/\[TPlant/' temp_change.md;
|
||||
sed -i 's/\[justjuangui/\[trompetin17/' temp_change.md;
|
||||
sed -i 's/\r//g' temp_change.md;
|
||||
cp temp_change.md changelog_temp.txt;
|
||||
cat CHANGELOG.md | tr \\r \\n | sed '1d' >> temp_change.md;
|
||||
printf "# Changelog\n\n## [v${{ github.event.inputs.releaseVersion }}](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v${{ github.event.inputs.releaseVersion }}) ($(date +'%Y/%m/%d'))\n\n" | cat - temp_change.md > CHANGELOG.md;
|
||||
|
||||
sed -i -re 's/^- (.*) \[.*\) \(\[(.*)\]\(.*/* \1 (\2)/' changelog_temp.txt;
|
||||
echo "VERSION[${{ github.event.inputs.releaseVersion }}][`date +'%Y/%m/%d'`]" | cat - changelog_temp.txt | tr -d \\r | sed '2,3d' | sed -re 's/^### (.*)/\n--- \1 ---/' | sed -e '/^##.*/,+1 d' | cat - changelog.txt > changelog_new.txt;
|
||||
rm temp_change.md;
|
||||
rm changelog_temp.txt;
|
||||
mv changelog_new.txt changelog.txt
|
||||
run: |
|
||||
# Remove carriage returns to be able to run the script
|
||||
sed -i 's/\r$//' .github/tweak_changelogs.sh
|
||||
chmod +x .github/tweak_changelogs.sh
|
||||
.github/tweak_changelogs.sh "v${{ github.event.inputs.releaseVersion }}"
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v5
|
||||
with:
|
||||
|
||||
25
.github/workflows/spellcheck.yml
vendored
25
.github/workflows/spellcheck.yml
vendored
@@ -1,6 +1,8 @@
|
||||
name: 'Spell Checker'
|
||||
name: Spell Checker
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ dev ]
|
||||
pull_request:
|
||||
branches: [ dev ]
|
||||
workflow_dispatch:
|
||||
@@ -13,27 +15,26 @@ on:
|
||||
jobs:
|
||||
spellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
env:
|
||||
CONFIG_URL: https://raw.githubusercontent.com/Nightblade/pob-dict/main
|
||||
steps:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ inputs.ref }}
|
||||
|
||||
- name: Fetch config file and dictionaries
|
||||
run: |
|
||||
curl --silent --show-error --parallel --remote-name-all \
|
||||
${{ env.CONFIG_URL }}/cspell.json \
|
||||
${{ env.CONFIG_URL }}/pob-dict.txt \
|
||||
${{ env.CONFIG_URL }}/poe-dict.txt \
|
||||
${{ env.CONFIG_URL }}/ignore-dict.txt \
|
||||
${{ env.CONFIG_URL }}/extra-en-dict.txt \
|
||||
run:
|
||||
curl --silent --show-error --parallel --remote-name-all
|
||||
${{ env.CONFIG_URL }}/cspell.json
|
||||
${{ env.CONFIG_URL }}/pob-dict.txt
|
||||
${{ env.CONFIG_URL }}/poe-dict.txt
|
||||
${{ env.CONFIG_URL }}/ignore-dict.txt
|
||||
${{ env.CONFIG_URL }}/extra-en-dict.txt
|
||||
${{ env.CONFIG_URL }}/contribs-dict.txt
|
||||
|
||||
- name: Run cspell
|
||||
uses: streetsidesoftware/cspell-action@v6.9.0
|
||||
uses: streetsidesoftware/cspell-action@v7
|
||||
with:
|
||||
files: '**' # needed as workaround for non-incremental runs (overrides in config still work ok)
|
||||
config: "cspell.json"
|
||||
|
||||
17
.github/workflows/test.yml
vendored
17
.github/workflows/test.yml
vendored
@@ -15,4 +15,21 @@ jobs:
|
||||
- name: Run tests
|
||||
run: busted --lua=luajit
|
||||
- name: Report coverage
|
||||
continue-on-error: true # May fail on server errors (of coveralls.io)
|
||||
run: cd src; luacov-coveralls --repo-token=${{ secrets.github_token }} -e TestData -e Data -e runtime
|
||||
check_modcache:
|
||||
runs-on: ubuntu-latest
|
||||
container: ghcr.io/pathofbuildingcommunity/pathofbuilding-tests:latest
|
||||
steps:
|
||||
- name: Install git dependency
|
||||
run: apk add git
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Regenerate ModCache
|
||||
env:
|
||||
LUA_PATH: ../runtime/lua/?.lua;../runtime/lua/?/init.lua
|
||||
REGENERATE_MOD_CACHE: 1
|
||||
run: cd src; luajit HeadlessWrapper.lua
|
||||
- run: git config --global --add safe.directory $(pwd)
|
||||
- name: Check if the generated ModCache is different
|
||||
run: git diff --exit-code src/Data/ModCache.lua
|
||||
|
||||
4
.github/workflows/update-simple-graphic.yml
vendored
4
.github/workflows/update-simple-graphic.yml
vendored
@@ -18,6 +18,8 @@ jobs:
|
||||
fileName: SimpleGraphicDLLs-x64-windows.tar
|
||||
extract: true
|
||||
out-file-path: runtime
|
||||
- name: Delete .tar file
|
||||
run: rm runtime/SimpleGraphicDLLs-x64-windows.tar
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v5
|
||||
with:
|
||||
@@ -26,4 +28,4 @@ jobs:
|
||||
body: |
|
||||
Update DLLs to SimpleGraphic-${{ github.event.client_payload.tag }} from ${{ github.event.client_payload.release_link }}
|
||||
commit-message: Update DLLs to SimpleGraphic-${{ github.event.client_payload.tag }}
|
||||
|
||||
|
||||
|
||||
62
CHANGELOG.md
62
CHANGELOG.md
@@ -1,5 +1,63 @@
|
||||
# Changelog
|
||||
|
||||
## [v2.57.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/tree/v2.57.0) (2025/10/30)
|
||||
|
||||
[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.56.0...v2.57.0)
|
||||
|
||||
|
||||
## What's Changed
|
||||
### Keepers of the Flame
|
||||
- Add 3.27 Skill Tree [\#9068](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9068) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Add support for Aul Bloodline [\#9054](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9054) ([Peechey](https://github.com/Peechey))
|
||||
- Add support for Chaos Bloodline [\#9070](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9070) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Add support for Oshabi Bloodline [\#9056](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9056) ([Peechey](https://github.com/Peechey))
|
||||
- Add support for Ritualist Bloodline [\#9055](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9055) ([Peechey](https://github.com/Peechey))
|
||||
- Add support for new & reworked Assassin Ascendancy nodes [\#9025](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9025) ([majochem](https://github.com/majochem))
|
||||
- Update "Rupture" stack maximum from 3 to 4 [\#9024](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9024) ([majochem](https://github.com/majochem))
|
||||
- Implement "Minion Attacks now inherently always Hit" [\#9023](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9023) ([majochem](https://github.com/majochem))
|
||||
### New to Path of Building
|
||||
- Add support for high DPI awareness to keep PoB looking crisp on higher resolution screens [\#8989](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8989) ([LeonSparta](https://github.com/LeonSparta), [LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Add setting to override Windows scaling from PoB [\#9048](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9048) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Add four new spectres and update three existing spectres [\#9069](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9069) ([Lothrik](https://github.com/Lothrik))
|
||||
- Add Maxroll as a new build site you can export to ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Auto URL encode when pasting an account name into the import [\#8949](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8949) ([Nightblade](https://github.com/Nightblade))
|
||||
- Update 3.26 uniques [\#8976](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8976) ([Paliak](https://github.com/Paliak))
|
||||
- Add support for Projectile count of Spiral skills [\#8995](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8995) ([Inzagini](https://github.com/Inzagini))
|
||||
- Improve skill level breakdown and add gem quality breakdown to calcs tab [\#9002](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9002) ([Paliak](https://github.com/Paliak))
|
||||
- Improve PoB performance when adding gems [\#9047](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9047), [\#9049](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9049) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
### Fixed Crashes
|
||||
- Fixed crash when sorting Minion skill gems in some builds [\#9062](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9062) ([Lothrik](https://github.com/Lothrik), [Paliak](https://github.com/Paliak))
|
||||
### User Interface
|
||||
- Improve UI to match in-game fonts and Item previews [\#9063](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9063) ([Blitz54](https://github.com/Blitz54))
|
||||
- Add passive tree search tip [\#8986](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8986) ([Nightblade](https://github.com/Nightblade))
|
||||
- Sort Gem list Alphabetically by default [\#9007](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9007) ([Blitz54](https://github.com/Blitz54))
|
||||
- Add CTRL + C to error message to copy error text [\#8992](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8992) ([Blitz54](https://github.com/Blitz54))
|
||||
- Update font files [\#9053](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9053) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
### Fixed Calculations
|
||||
- Fix Spell Echo not working with some Minion skills [\#8956](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8956) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Correct skill slot comparison for General's Cry detection [\#8954](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8954) ([emmanuel-ferdman](https://github.com/emmanuel-ferdman))
|
||||
- Use correct stat to set "Every3UseCrit" flag for Glacial Hammer of Shattering [\#8997](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8997) ([fabianmaurer](https://github.com/fabianmaurer))
|
||||
### Fixed Behaviours
|
||||
- Fix Runegraft of the Bound duplicating some mods [\#8977](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8977) ([Paliak](https://github.com/Paliak))
|
||||
- Fix "Monsters cannot be Leeched from" map mod to disable ES leech [\#8970](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8970) ([n1tr0xs](https://github.com/n1tr0xs))
|
||||
- Fix "Chaos Golem of the Maelström" not enabling Wither config option [\#8988](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8988) ([majochem](https://github.com/majochem))
|
||||
- Fix Elemental Overload incorrectly setting ailment chance to 0% for critical strikes [\#9061](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9061) ([majochem](https://github.com/majochem))
|
||||
### Accuracy Improvements
|
||||
- Update mods on several uniques to use metres for radius instead of units [\#8950](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8950) ([jeremykvlim](https://github.com/jeremykvlim))
|
||||
- Change "other Ring" wording to "opposite Ring" [\#9028](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9028) ([majochem](https://github.com/majochem))
|
||||
- Fix Breakdown of Crit Damage when using Dance with Death [\#9012](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9012) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix missing Malevolence Aura Effect on String of Servitude [\#9000](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9000) ([Inzagini](https://github.com/Inzagini))
|
||||
### Fixed Bugs
|
||||
- Disable trade UI elements when leagues are not populated [\#8984](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8984) ([Wires77](https://github.com/Wires77))
|
||||
### Other changes
|
||||
- Add better support for Unicode filepaths [\#76](https://github.com/PathOfBuildingCommunity/PathOfBuilding-SimpleGraphic/pull/76) ([Zao](https://github.com/Zao))
|
||||
- Add support for loading webp images [\#88](https://github.com/PathOfBuildingCommunity/PathOfBuilding-SimpleGraphic/pull/88) ([Wires77](https://github.com/Wires77))
|
||||
- Update PoE.Ninja URLs after migration [\#8967](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8967), [\#9006](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9006) ([Antorell](https://github.com/Antorell), [Wires77](https://github.com/Wires77))
|
||||
- Update permissions for Linux [\#9040](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9040) ([Wires77](https://github.com/Wires77))
|
||||
- Fix subscript errors [\#9041](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9041) ([Wires77](https://github.com/Wires77))
|
||||
- Fix erroneous call to GetUserPath and update pop-up message [\#9082](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9082) ([Wires77](https://github.com/Wires77))
|
||||
|
||||
|
||||
## [v2.56.0](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.56.0) (2025/08/11)
|
||||
|
||||
[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.55.5...v2.56.0)
|
||||
@@ -35,14 +93,14 @@
|
||||
- Fix Ancestral Bond disabling Generals Cry damage [\#8877](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8877) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix Hand of Phrecia disabling Mine Auras [\#8876](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8876) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix Light of Meaning double counting starting nodes on Ascendant [\#8875](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8875) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix Kaladra's Touch not copying influence from other ring [\#8888](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8888) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix Kalandra's Touch not copying influence from other ring [\#8888](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8888) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix Howlcrack causing inf DPS with Generals Cry [\#8889](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8889) ([Paliak](https://github.com/Paliak))
|
||||
- Fix issue where Rage Support was affecting Herald of Purity [\#8907](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8907) ([Wires77](https://github.com/Wires77))
|
||||
- Fix Volatility applying to Minion Spell skills [\#8912](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8912) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix Influence not appearing correctly in PoB Trader [\#8913](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8913) ([t1nky](https://github.com/t1nky))
|
||||
- Fix enemy Ailment Immunity not working with Rune of Treachery [\#8917](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8917) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix Shepherd of Souls applying twice with 2 Yaomac's Accord equipped [\#8918](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8918) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix node tooltip when using Untuitive Leap or Impossible Escape [\#8921](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8921) ([Kojoley](https://github.com/Kojoley))
|
||||
- Fix node tooltip when using Intuitive Leap or Impossible Escape [\#8921](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8921) ([Kojoley](https://github.com/Kojoley))
|
||||
- Fix Ancestral Vision not working correctly with The Arkhon's Tools [\#8946](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8946) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
- Fix Ascendant/Gladiator Block Chance when using Necromantic Aegis [\#8944](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/8944) ([LocalIdentity](https://github.com/LocalIdentity))
|
||||
### Accuracy Improvements
|
||||
|
||||
@@ -67,7 +67,7 @@ The easiest way to make and test changes is by setting up a development installa
|
||||
cd PathOfBuilding
|
||||
|
||||
3. Start Path of Building from the repository by running `./runtime/Path{space}of{space}Building.exe`.
|
||||
|
||||
* <ins>Note for Linux users:</ins> The executable files should automatically have the correct permissions when cloned fresh. If you still encounter permission issues, run once: `chmod +x ./runtime/Path{space}of{space}Building-PoE2.exe`
|
||||
You can now use the shortcut to run the program from the repository. Running the program in this manner automatically enables "Dev Mode", which has some handy debugging feature:
|
||||
* `F5` restarts the program in-place (this is what usually happens when an update is applied).
|
||||
* `Ctrl` + `~` toggles the console (Note that this does not work with all keyboard layouts. US layout is a safe bet though).
|
||||
@@ -190,7 +190,7 @@ Files in `/Data` `/Export` and `/TreeData` can be massive and cause the EmmyLua
|
||||
### PyCharm Community / IntelliJ Idea Community
|
||||
|
||||
1. Create a new "Debug Configuration" of type "Emmy Debugger(NEW)".
|
||||
2. Select "x86" version.
|
||||
2. Select "x64" version.
|
||||
3. Select if you want the program to block (checkbox) until you attached the debugger (useful if you have to debug the startup process).
|
||||
4. Copy the generated code snippet directly below `function launch:OnInit()` in `./src/Launch.lua`.
|
||||
5. Start Path of Building Community
|
||||
|
||||
@@ -1,3 +1,64 @@
|
||||
VERSION[2.57.0][2025/10/30]
|
||||
|
||||
--- Keepers of the Flame ---
|
||||
* Add 3.27 Skill Tree (LocalIdentity)
|
||||
* Add support for Aul Bloodline (Peechey)
|
||||
* Add support for Chaos Bloodline (LocalIdentity)
|
||||
* Add support for Oshabi Bloodline (Peechey)
|
||||
* Add support for Ritualist Bloodline (Peechey)
|
||||
* Add support for new & reworked Assassin Ascendancy nodes (majochem)
|
||||
* Update "Rupture" stack maximum from 3 to 4 (majochem)
|
||||
* Implement "Minion Attacks now inherently always Hit" (majochem)
|
||||
|
||||
--- New to Path of Building ---
|
||||
* Add support for high DPI awareness to keep PoB looking crisp on higher resolution screens (LeonSparta, LocalIdentity)
|
||||
* Add setting to override Windows scaling from PoB (LocalIdentity)
|
||||
* Add four new spectres and update three existing spectres (Lothrik)
|
||||
* Add Maxroll as a new build site you can export to (LocalIdentity)
|
||||
* Auto URL encode when pasting an account name into the import (Nightblade)
|
||||
* Update 3.26 uniques (Paliak)
|
||||
* Add support for Projectile count of Spiral skills (Inzagini)
|
||||
* Improve skill level breakdown and add gem quality breakdown to calcs tab (Paliak)
|
||||
* Improve PoB performance when adding gems (LocalIdentity)
|
||||
|
||||
--- Fixed Crashes ---
|
||||
* Fixed crash when sorting Minion skill gems in some builds (Lothrik, Paliak)
|
||||
|
||||
--- User Interface ---
|
||||
* Improve UI to match in-game fonts and item previews (Blitz54)
|
||||
* Add passive tree search tip (Nightblade)
|
||||
* Sort Gem list Alphabetically by default (Blitz54)
|
||||
* Add CTRL + C to error message to copy error text (Blitz54)
|
||||
* Update font files (LocalIdentity)
|
||||
|
||||
--- Fixed Calculations ---
|
||||
* Fix Spell Echo not working with some Minion skills (LocalIdentity)
|
||||
* Correct skill slot comparison for General's Cry detection (emmanuel-ferdman)
|
||||
* Use correct stat to set "Every3UseCrit" flag for Glacial Hammer of Shattering (fabianmaurer)
|
||||
|
||||
--- Fixed Behaviours ---
|
||||
* Fix Runegraft of the Bound duplicating some mods (Paliak)
|
||||
* Fix "Monsters cannot be Leeched from" map mod to disable ES leech (n1tr0xs)
|
||||
* Fix "Chaos Golem of the Maelström" not enabling Wither config option (majochem)
|
||||
* Fix Elemental Overload incorrectly setting ailment chance to 0% for critical strikes (majochem)
|
||||
|
||||
--- Accuracy Improvements ---
|
||||
* Update mods on several uniques to use metres for radius instead of units (jeremykvlim)
|
||||
* Change "other Ring" wording to "opposite Ring" (majochem)
|
||||
* Fix Breakdown of Crit Damage when using Dance with Death (LocalIdentity)
|
||||
* Fix missing Malevolence Aura Effect on String of Servitude (Inzagini)
|
||||
|
||||
--- Fixed Bugs ---
|
||||
* Disable trade UI elements when leagues are not populated (Wires77)
|
||||
|
||||
--- Other changes ---
|
||||
* Add better support for Unicode filepaths (Zao)
|
||||
* Add support for loading webp images (Wires77)
|
||||
* Update PoE.Ninja URLs after migration (Antorell, Wires77)
|
||||
* Update permissions for Linux (Wires77)
|
||||
* Fix subscript errors (Wires77)
|
||||
* Fix erroneous call to GetUserPath and update pop-up message (Wires77)
|
||||
|
||||
VERSION[2.56.0][2025/08/11]
|
||||
|
||||
--- New to Path of Building ---
|
||||
@@ -33,14 +94,14 @@ VERSION[2.56.0][2025/08/11]
|
||||
* Fix Ancestral Bond disabling Generals Cry damage (LocalIdentity)
|
||||
* Fix Hand of Phrecia disabling Mine Auras (LocalIdentity)
|
||||
* Fix Light of Meaning double counting starting nodes on Ascendant (LocalIdentity)
|
||||
* Fix Kaladra's Touch not copying influence from other ring (LocalIdentity)
|
||||
* Fix Kalandra's Touch not copying influence from other ring (LocalIdentity)
|
||||
* Fix Howlcrack causing inf DPS with Generals Cry (Paliak)
|
||||
* Fix issue where Rage Support was affecting Herald of Purity (Wires77)
|
||||
* Fix Volatility applying to Minion Spell skills (LocalIdentity)
|
||||
* Fix Influence not appearing correctly in PoB Trader (t1nky)
|
||||
* Fix enemy Ailment Immunity not working with Rune of Treachery (LocalIdentity)
|
||||
* Fix Shepherd of Souls applying twice with 2 Yaomac's Accord equipped (LocalIdentity)
|
||||
* Fix node tooltip when using Untuitive Leap or Impossible Escape (Kojoley)
|
||||
* Fix node tooltip when using Intuitive Leap or Impossible Escape (Kojoley)
|
||||
* Fix Ancestral Vision not working correctly with The Arkhon's Tools (LocalIdentity)
|
||||
* Fix Ascendant/Gladiator Block Chance when using Necromantic Aegis (LocalIdentity)
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@ Often a mod will only apply under certain conditions, apply multiple times based
|
||||
* effectEnemyCond: Specify a condition so this mod applies to the enemy when that condition is fulfilled
|
||||
* effectStackVar: Multiplies the mod by this variable (usually another mod)
|
||||
* modCond: Apply the mod when the actor has this condition
|
||||
* unscaleable: boolean that determines whether this buff can be scaled by buff effect
|
||||
* unscalable: boolean that determines whether this buff can be scaled by buff effect
|
||||
* DistanceRamp: A rare type that is used on skills and effects that do different things at different distances from the character
|
||||
* ramp: Numbers to multiply the mod by at different distances. e.g. `ramp = {{35,0},{70,1}}` means the mod does nothing at 35 units, but has its full value at 70 units.
|
||||
* ModFlagOr: Used when you only need one ModFlag to match, e.g. `["with axes or swords"] = { flags = ModFlag.Hit, tag = { type = "ModFlagOr", modFlags = bor(ModFlag.Axe, ModFlag.Sword) } },` needs `Hit`, but can use either of the other two flags
|
||||
|
||||
@@ -42,6 +42,16 @@ NODE_GROUPS = {
|
||||
"Warden": Point2D(8250, 8350),
|
||||
"Primalist": Point2D(7200, 9400),
|
||||
"Warlock": Point2D(9300, 7300),
|
||||
"Aul": Point2D(-6750, 12000),
|
||||
"Breachlord": Point2D(-5250, 12000),
|
||||
"Catarina": Point2D(-3750, 12000),
|
||||
"Trialmaster": Point2D(-2250, 12000),
|
||||
"Delirious": Point2D(-750, 12000),
|
||||
"Farrul": Point2D(750, 12000),
|
||||
"Lycia": Point2D(2250, 12000),
|
||||
"KingInTheMists": Point2D(3750, 12000),
|
||||
"Olroth": Point2D(5250, 12000),
|
||||
"Oshabi": Point2D(6750, 12000),
|
||||
}
|
||||
EXTRA_NODES = {
|
||||
"Necromancer": [{"Node": {"name": "Nine Lives", "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Int.png", "isNotable": True, "skill" : 27602},
|
||||
@@ -74,7 +84,7 @@ EXTRA_NODES_STATS = { # these should not be hardcoded here, but should be insert
|
||||
"Searing Purity": {"stats": ["45% of Chaos Damage taken as Fire Damage", "45% of Chaos Damage taken as Lightning Damage"], "reminderText": []},
|
||||
"Soul Drinker": {"stats": ["2% of Damage Leeched as Energy Shield", "20% increased Attack and Cast Speed while Leeching Energy Shield", "Energy Shield Leech effects are not removed when Energy Shield is Filled"], "reminderText": ["(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)"]},
|
||||
"Harness the Void": {"stats": ["27% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", "13% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage", "7% chance to gain 100% of Non-Chaos Damage with Hits as Extra Chaos Damage"], "reminderText": []},
|
||||
"Fury of Nature" : {"stats": ["Non-Damaging Elemental Ailments you inflict spread to nearby enemies in a radius of 20", "Non-Damaging Elemental Ailments you inflict have 100% more Effect"], "reminderText": ["(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittled, Shocked, and Sapped)"]},
|
||||
"Fury of Nature" : {"stats": ["Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres", "Non-Damaging Elemental Ailments you inflict have 100% more Effect"], "reminderText": ["(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittled, Shocked, and Sapped)"]},
|
||||
"Fatal Flourish": {"stats": ["Final Repeat of Attack Skills deals 60% more Damage", "Non-Travel Attack Skills Repeat an additional Time"], "reminderText": []},
|
||||
"Indomitable Resolve": {"stats": ["Deal 10% less Damage", "Take 25% less Damage"], "reminderText": []},
|
||||
"Unleashed Potential" : {"stats": ["400% increased Endurance, Frenzy and Power Charge Duration", "25% chance to gain a Power, Frenzy or Endurance Charge on Kill", "+1 to Maximum Endurance Charges", "+1 to Maximum Frenzy Charges", "+1 to Maximum Power Charges"], "reminderText": []},
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<PoBVersion>
|
||||
<Version number="2.56.0" />
|
||||
<Version number="2.57.0" />
|
||||
<Source part="default" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/" />
|
||||
<Source part="runtime" platform="win32" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/runtime/" />
|
||||
<Source part="program" url="https://raw.githubusercontent.com/PathOfBuildingCommunity/PathOfBuilding/{branch}/src/" />
|
||||
@@ -339,7 +339,6 @@
|
||||
<File name="SimpleGraphic/Fonts/Liberation Sans.28.tga" part="runtime" sha1="3175f25ff2ba00f95f10078bea790ff591943c46" />
|
||||
<File name="SimpleGraphic/Fonts/Liberation Sans.32.tga" part="runtime" sha1="526edb97597a06ed0d9689107a4e130a22faf810" />
|
||||
<File name="SimpleGraphic/Fonts/Liberation Sans.tgf" part="runtime" sha1="31fdef9c0e2ad46df47123e7d81f5e8d4fe399ed" />
|
||||
<File name="SimpleGraphicDLLs-x64-windows.tar" part="runtime" sha1="f8c453fa92b25c666d58e92dea76fd093ac6e2c8" />
|
||||
<File name="socket.dll" part="runtime" runtime="win32" sha1="3e1788d82d5ded8feb527a5b927004f6f8e6765d" />
|
||||
<File name="vcruntime140.dll" part="runtime" runtime="win32" sha1="2ea840a5faa87a2fe8d7e5cb4367f2418077d66b" />
|
||||
<File name="vcruntime140_1.dll" part="runtime" runtime="win32" sha1="523f515eed3af6d50e57a3eaeb906f4ccc1865fe" />
|
||||
|
||||
0
runtime/Path{space}of{space}Building.exe
Normal file → Executable file
0
runtime/Path{space}of{space}Building.exe
Normal file → Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.22.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.22.tga
Normal file
Binary file not shown.
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.26.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.26.tga
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.36.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.36.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.40.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.40.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.48.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.48.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.56.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.56.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.64.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Bitstream Vera Sans Mono.64.tga
Normal file
Binary file not shown.
@@ -772,6 +772,135 @@ GLYPH 92 150 1 4 5; // 124 (|)
|
||||
GLYPH 98 150 7 2 1; // 125 (})
|
||||
GLYPH 110 150 9 1 0; // 126 (~)
|
||||
GLYPH 124 150 9 1 0; // 127
|
||||
HEIGHT 22;
|
||||
GLYPH 0 0 10 1 0; // 0
|
||||
GLYPH 15 0 10 1 0; // 1
|
||||
GLYPH 30 0 10 1 0; // 2
|
||||
GLYPH 45 0 10 1 0; // 3
|
||||
GLYPH 60 0 10 1 0; // 4
|
||||
GLYPH 75 0 10 1 0; // 5
|
||||
GLYPH 90 0 10 1 0; // 6
|
||||
GLYPH 105 0 10 1 0; // 7
|
||||
GLYPH 120 0 10 1 0; // 8
|
||||
GLYPH 135 0 10 1 0; // 9
|
||||
GLYPH 150 0 10 1 0; // 10
|
||||
GLYPH 165 0 10 1 0; // 11
|
||||
GLYPH 180 0 10 1 0; // 12
|
||||
GLYPH 195 0 10 1 0; // 13
|
||||
GLYPH 210 0 10 1 0; // 14
|
||||
GLYPH 225 0 10 1 0; // 15
|
||||
GLYPH 240 0 10 1 0; // 16
|
||||
GLYPH 0 27 10 1 0; // 17
|
||||
GLYPH 15 27 10 1 0; // 18
|
||||
GLYPH 30 27 10 1 0; // 19
|
||||
GLYPH 45 27 10 1 0; // 20
|
||||
GLYPH 60 27 10 1 0; // 21
|
||||
GLYPH 75 27 10 1 0; // 22
|
||||
GLYPH 90 27 10 1 0; // 23
|
||||
GLYPH 105 27 10 1 0; // 24
|
||||
GLYPH 120 27 10 1 0; // 25
|
||||
GLYPH 135 27 10 1 0; // 26
|
||||
GLYPH 150 27 10 1 0; // 27
|
||||
GLYPH 165 27 10 1 0; // 28
|
||||
GLYPH 180 27 10 1 0; // 29
|
||||
GLYPH 195 27 10 1 0; // 30
|
||||
GLYPH 210 27 10 1 0; // 31
|
||||
GLYPH 225 27 1 0 10; // 32 ( )
|
||||
GLYPH 231 27 2 5 4; // 33 (!)
|
||||
GLYPH 238 27 6 3 2; // 34 (")
|
||||
GLYPH 0 54 11 0 0; // 35 (#)
|
||||
GLYPH 16 54 9 2 0; // 36 ($)
|
||||
GLYPH 30 54 11 0 0; // 37 (%)
|
||||
GLYPH 46 54 11 1 -1; // 38 (&)
|
||||
GLYPH 62 54 2 5 4; // 39 (')
|
||||
GLYPH 69 54 4 4 3; // 40 (()
|
||||
GLYPH 78 54 4 4 3; // 41 ())
|
||||
GLYPH 87 54 9 1 1; // 42 (*)
|
||||
GLYPH 101 54 10 1 0; // 43 (+)
|
||||
GLYPH 116 54 3 4 4; // 44 (,)
|
||||
GLYPH 124 54 5 3 3; // 45 (-)
|
||||
GLYPH 134 54 2 5 4; // 46 (.)
|
||||
GLYPH 141 54 9 1 1; // 47 (/)
|
||||
GLYPH 155 54 9 1 1; // 48 (0)
|
||||
GLYPH 169 54 8 2 1; // 49 (1)
|
||||
GLYPH 182 54 10 1 0; // 50 (2)
|
||||
GLYPH 197 54 9 1 1; // 51 (3)
|
||||
GLYPH 211 54 10 1 0; // 52 (4)
|
||||
GLYPH 226 54 9 1 1; // 53 (5)
|
||||
GLYPH 240 54 9 1 1; // 54 (6)
|
||||
GLYPH 0 81 9 1 1; // 55 (7)
|
||||
GLYPH 14 81 9 1 1; // 56 (8)
|
||||
GLYPH 28 81 9 1 1; // 57 (9)
|
||||
GLYPH 42 81 2 5 4; // 58 (:)
|
||||
GLYPH 49 81 3 4 4; // 59 (;)
|
||||
GLYPH 57 81 10 1 0; // 60 (<)
|
||||
GLYPH 72 81 10 1 0; // 61 (=)
|
||||
GLYPH 87 81 10 1 0; // 62 (>)
|
||||
GLYPH 102 81 7 3 1; // 63 (?)
|
||||
GLYPH 114 81 9 1 1; // 64 (@)
|
||||
GLYPH 128 81 9 1 1; // 65 (A)
|
||||
GLYPH 142 81 9 1 1; // 66 (B)
|
||||
GLYPH 156 81 9 1 1; // 67 (C)
|
||||
GLYPH 170 81 9 1 1; // 68 (D)
|
||||
GLYPH 184 81 9 1 1; // 69 (E)
|
||||
GLYPH 198 81 9 1 1; // 70 (F)
|
||||
GLYPH 212 81 9 1 1; // 71 (G)
|
||||
GLYPH 226 81 9 1 1; // 72 (H)
|
||||
GLYPH 240 81 8 2 1; // 73 (I)
|
||||
GLYPH 0 108 8 1 2; // 74 (J)
|
||||
GLYPH 13 108 11 1 -1; // 75 (K)
|
||||
GLYPH 29 108 9 1 1; // 76 (L)
|
||||
GLYPH 43 108 9 1 1; // 77 (M)
|
||||
GLYPH 57 108 9 1 1; // 78 (N)
|
||||
GLYPH 71 108 9 1 1; // 79 (O)
|
||||
GLYPH 85 108 9 1 1; // 80 (P)
|
||||
GLYPH 99 108 9 1 1; // 81 (Q)
|
||||
GLYPH 113 108 11 1 -1; // 82 (R)
|
||||
GLYPH 129 108 9 1 1; // 83 (S)
|
||||
GLYPH 143 108 10 1 0; // 84 (T)
|
||||
GLYPH 158 108 9 1 1; // 85 (U)
|
||||
GLYPH 172 108 9 1 1; // 86 (V)
|
||||
GLYPH 186 108 11 0 0; // 87 (W)
|
||||
GLYPH 202 108 9 1 1; // 88 (X)
|
||||
GLYPH 216 108 10 1 0; // 89 (Y)
|
||||
GLYPH 231 108 9 1 1; // 90 (Z)
|
||||
GLYPH 245 108 4 4 3; // 91 ([)
|
||||
GLYPH 0 135 9 1 1; // 92 (\)
|
||||
GLYPH 14 135 4 3 4; // 93 (])
|
||||
GLYPH 23 135 10 1 0; // 94 (^)
|
||||
GLYPH 38 135 10 0 1; // 95 (_)
|
||||
GLYPH 53 135 4 3 4; // 96 (`)
|
||||
GLYPH 62 135 9 1 1; // 97 (a)
|
||||
GLYPH 76 135 9 1 1; // 98 (b)
|
||||
GLYPH 90 135 8 1 2; // 99 (c)
|
||||
GLYPH 103 135 9 1 1; // 100 (d)
|
||||
GLYPH 117 135 9 1 1; // 101 (e)
|
||||
GLYPH 131 135 9 2 0; // 102 (f)
|
||||
GLYPH 145 135 9 1 1; // 103 (g)
|
||||
GLYPH 159 135 9 1 1; // 104 (h)
|
||||
GLYPH 173 135 8 2 1; // 105 (i)
|
||||
GLYPH 186 135 6 2 3; // 106 (j)
|
||||
GLYPH 197 135 10 1 0; // 107 (k)
|
||||
GLYPH 212 135 9 1 1; // 108 (l)
|
||||
GLYPH 226 135 10 1 0; // 109 (m)
|
||||
GLYPH 241 135 9 1 1; // 110 (n)
|
||||
GLYPH 0 162 9 1 1; // 111 (o)
|
||||
GLYPH 14 162 9 1 1; // 112 (p)
|
||||
GLYPH 28 162 9 1 1; // 113 (q)
|
||||
GLYPH 42 162 7 3 1; // 114 (r)
|
||||
GLYPH 54 162 9 1 1; // 115 (s)
|
||||
GLYPH 68 162 9 1 1; // 116 (t)
|
||||
GLYPH 82 162 9 1 1; // 117 (u)
|
||||
GLYPH 96 162 9 1 1; // 118 (v)
|
||||
GLYPH 110 162 11 0 0; // 119 (w)
|
||||
GLYPH 126 162 9 1 1; // 120 (x)
|
||||
GLYPH 140 162 9 1 1; // 121 (y)
|
||||
GLYPH 154 162 9 1 1; // 122 (z)
|
||||
GLYPH 168 162 8 2 1; // 123 ({)
|
||||
GLYPH 181 162 2 5 4; // 124 (|)
|
||||
GLYPH 188 162 8 2 1; // 125 (})
|
||||
GLYPH 201 162 10 1 0; // 126 (~)
|
||||
GLYPH 216 162 10 1 0; // 127
|
||||
HEIGHT 24;
|
||||
GLYPH 0 0 11 1 1; // 0
|
||||
GLYPH 17 0 11 1 1; // 1
|
||||
@@ -901,6 +1030,135 @@ GLYPH 30 480 2 5 6; // 124 (|)
|
||||
GLYPH 38 480 8 2 3; // 125 (})
|
||||
GLYPH 52 480 11 1 1; // 126 (~)
|
||||
GLYPH 69 480 11 1 1; // 127
|
||||
HEIGHT 26;
|
||||
GLYPH 0 0 11 1 1; // 0
|
||||
GLYPH 17 0 11 1 1; // 1
|
||||
GLYPH 34 0 11 1 1; // 2
|
||||
GLYPH 51 0 11 1 1; // 3
|
||||
GLYPH 68 0 11 1 1; // 4
|
||||
GLYPH 85 0 11 1 1; // 5
|
||||
GLYPH 102 0 11 1 1; // 6
|
||||
GLYPH 119 0 11 1 1; // 7
|
||||
GLYPH 136 0 11 1 1; // 8
|
||||
GLYPH 153 0 11 1 1; // 9
|
||||
GLYPH 170 0 11 1 1; // 10
|
||||
GLYPH 187 0 11 1 1; // 11
|
||||
GLYPH 204 0 11 1 1; // 12
|
||||
GLYPH 221 0 11 1 1; // 13
|
||||
GLYPH 238 0 11 1 1; // 14
|
||||
GLYPH 0 32 11 1 1; // 15
|
||||
GLYPH 17 32 11 1 1; // 16
|
||||
GLYPH 34 32 11 1 1; // 17
|
||||
GLYPH 51 32 11 1 1; // 18
|
||||
GLYPH 68 32 11 1 1; // 19
|
||||
GLYPH 85 32 11 1 1; // 20
|
||||
GLYPH 102 32 11 1 1; // 21
|
||||
GLYPH 119 32 11 1 1; // 22
|
||||
GLYPH 136 32 11 1 1; // 23
|
||||
GLYPH 153 32 11 1 1; // 24
|
||||
GLYPH 170 32 11 1 1; // 25
|
||||
GLYPH 187 32 11 1 1; // 26
|
||||
GLYPH 204 32 11 1 1; // 27
|
||||
GLYPH 221 32 11 1 1; // 28
|
||||
GLYPH 238 32 11 1 1; // 29
|
||||
GLYPH 0 64 11 1 1; // 30
|
||||
GLYPH 17 64 11 1 1; // 31
|
||||
GLYPH 34 64 1 0 12; // 32 ( )
|
||||
GLYPH 41 64 2 6 5; // 33 (!)
|
||||
GLYPH 49 64 6 4 3; // 34 (")
|
||||
GLYPH 61 64 13 0 0; // 35 (#)
|
||||
GLYPH 80 64 10 2 1; // 36 ($)
|
||||
GLYPH 96 64 13 0 0; // 37 (%)
|
||||
GLYPH 115 64 13 1 -1; // 38 (&)
|
||||
GLYPH 134 64 2 6 5; // 39 (')
|
||||
GLYPH 142 64 5 5 3; // 40 (()
|
||||
GLYPH 153 64 5 4 4; // 41 ())
|
||||
GLYPH 164 64 9 2 2; // 42 (*)
|
||||
GLYPH 179 64 12 1 0; // 43 (+)
|
||||
GLYPH 197 64 4 4 5; // 44 (,)
|
||||
GLYPH 207 64 6 4 3; // 45 (-)
|
||||
GLYPH 219 64 3 5 5; // 46 (.)
|
||||
GLYPH 228 64 10 1 2; // 47 (/)
|
||||
GLYPH 0 96 10 1 2; // 48 (0)
|
||||
GLYPH 16 96 9 2 2; // 49 (1)
|
||||
GLYPH 31 96 11 2 0; // 50 (2)
|
||||
GLYPH 48 96 10 1 2; // 51 (3)
|
||||
GLYPH 64 96 11 1 1; // 52 (4)
|
||||
GLYPH 81 96 10 1 2; // 53 (5)
|
||||
GLYPH 97 96 10 1 2; // 54 (6)
|
||||
GLYPH 113 96 10 1 2; // 55 (7)
|
||||
GLYPH 129 96 10 1 2; // 56 (8)
|
||||
GLYPH 145 96 10 1 2; // 57 (9)
|
||||
GLYPH 161 96 3 5 5; // 58 (:)
|
||||
GLYPH 170 96 4 4 5; // 59 (;)
|
||||
GLYPH 180 96 11 1 1; // 60 (<)
|
||||
GLYPH 197 96 11 1 1; // 61 (=)
|
||||
GLYPH 214 96 11 1 1; // 62 (>)
|
||||
GLYPH 231 96 9 2 2; // 63 (?)
|
||||
GLYPH 0 128 12 1 0; // 64 (@)
|
||||
GLYPH 18 128 11 1 1; // 65 (A)
|
||||
GLYPH 35 128 10 1 2; // 66 (B)
|
||||
GLYPH 51 128 10 1 2; // 67 (C)
|
||||
GLYPH 67 128 10 1 2; // 68 (D)
|
||||
GLYPH 83 128 10 1 2; // 69 (E)
|
||||
GLYPH 99 128 10 1 2; // 70 (F)
|
||||
GLYPH 115 128 11 1 1; // 71 (G)
|
||||
GLYPH 132 128 10 1 2; // 72 (H)
|
||||
GLYPH 148 128 8 3 2; // 73 (I)
|
||||
GLYPH 162 128 9 1 3; // 74 (J)
|
||||
GLYPH 177 128 12 1 0; // 75 (K)
|
||||
GLYPH 195 128 10 1 2; // 76 (L)
|
||||
GLYPH 211 128 11 1 1; // 77 (M)
|
||||
GLYPH 228 128 10 1 2; // 78 (N)
|
||||
GLYPH 0 160 11 1 1; // 79 (O)
|
||||
GLYPH 17 160 10 1 2; // 80 (P)
|
||||
GLYPH 33 160 11 1 1; // 81 (Q)
|
||||
GLYPH 50 160 12 1 0; // 82 (R)
|
||||
GLYPH 68 160 10 1 2; // 83 (S)
|
||||
GLYPH 84 160 12 1 0; // 84 (T)
|
||||
GLYPH 102 160 10 1 2; // 85 (U)
|
||||
GLYPH 118 160 11 1 1; // 86 (V)
|
||||
GLYPH 135 160 13 0 0; // 87 (W)
|
||||
GLYPH 154 160 11 1 1; // 88 (X)
|
||||
GLYPH 171 160 12 1 0; // 89 (Y)
|
||||
GLYPH 189 160 11 1 1; // 90 (Z)
|
||||
GLYPH 206 160 5 5 3; // 91 ([)
|
||||
GLYPH 217 160 10 1 2; // 92 (\)
|
||||
GLYPH 233 160 5 3 5; // 93 (])
|
||||
GLYPH 0 192 12 1 0; // 94 (^)
|
||||
GLYPH 18 192 11 0 2; // 95 (_)
|
||||
GLYPH 35 192 5 3 5; // 96 (`)
|
||||
GLYPH 46 192 10 1 2; // 97 (a)
|
||||
GLYPH 62 192 10 1 2; // 98 (b)
|
||||
GLYPH 78 192 9 1 3; // 99 (c)
|
||||
GLYPH 93 192 10 1 2; // 100 (d)
|
||||
GLYPH 109 192 10 1 2; // 101 (e)
|
||||
GLYPH 125 192 9 2 2; // 102 (f)
|
||||
GLYPH 140 192 10 1 2; // 103 (g)
|
||||
GLYPH 156 192 10 1 2; // 104 (h)
|
||||
GLYPH 172 192 10 2 1; // 105 (i)
|
||||
GLYPH 188 192 6 2 5; // 106 (j)
|
||||
GLYPH 200 192 10 1 2; // 107 (k)
|
||||
GLYPH 216 192 10 1 2; // 108 (l)
|
||||
GLYPH 232 192 12 0 1; // 109 (m)
|
||||
GLYPH 0 224 10 1 2; // 110 (n)
|
||||
GLYPH 16 224 10 1 2; // 111 (o)
|
||||
GLYPH 32 224 10 1 2; // 112 (p)
|
||||
GLYPH 48 224 10 1 2; // 113 (q)
|
||||
GLYPH 64 224 9 4 0; // 114 (r)
|
||||
GLYPH 79 224 10 1 2; // 115 (s)
|
||||
GLYPH 95 224 9 2 2; // 116 (t)
|
||||
GLYPH 110 224 10 1 2; // 117 (u)
|
||||
GLYPH 126 224 10 1 2; // 118 (v)
|
||||
GLYPH 142 224 13 0 0; // 119 (w)
|
||||
GLYPH 161 224 10 1 2; // 120 (x)
|
||||
GLYPH 177 224 10 1 2; // 121 (y)
|
||||
GLYPH 193 224 10 1 2; // 122 (z)
|
||||
GLYPH 209 224 8 3 2; // 123 ({)
|
||||
GLYPH 223 224 2 6 5; // 124 (|)
|
||||
GLYPH 231 224 8 3 2; // 125 (})
|
||||
GLYPH 0 256 11 1 1; // 126 (~)
|
||||
GLYPH 17 256 11 1 1; // 127
|
||||
HEIGHT 28;
|
||||
GLYPH 0 0 12 1 1; // 0
|
||||
GLYPH 19 0 12 1 1; // 1
|
||||
@@ -1159,3 +1417,648 @@ GLYPH 130 400 2 7 8; // 124 (|)
|
||||
GLYPH 140 400 11 3 3; // 125 (})
|
||||
GLYPH 159 400 14 1 2; // 126 (~)
|
||||
GLYPH 181 400 14 1 2; // 127
|
||||
HEIGHT 36;
|
||||
GLYPH 0 0 16 2 1; // 0
|
||||
GLYPH 25 0 16 2 1; // 1
|
||||
GLYPH 50 0 16 2 1; // 2
|
||||
GLYPH 75 0 16 2 1; // 3
|
||||
GLYPH 100 0 16 2 1; // 4
|
||||
GLYPH 125 0 16 2 1; // 5
|
||||
GLYPH 150 0 16 2 1; // 6
|
||||
GLYPH 175 0 16 2 1; // 7
|
||||
GLYPH 200 0 16 2 1; // 8
|
||||
GLYPH 225 0 16 2 1; // 9
|
||||
GLYPH 250 0 16 2 1; // 10
|
||||
GLYPH 275 0 16 2 1; // 11
|
||||
GLYPH 300 0 16 2 1; // 12
|
||||
GLYPH 325 0 16 2 1; // 13
|
||||
GLYPH 350 0 16 2 1; // 14
|
||||
GLYPH 375 0 16 2 1; // 15
|
||||
GLYPH 400 0 16 2 1; // 16
|
||||
GLYPH 425 0 16 2 1; // 17
|
||||
GLYPH 450 0 16 2 1; // 18
|
||||
GLYPH 475 0 16 2 1; // 19
|
||||
GLYPH 0 45 16 2 1; // 20
|
||||
GLYPH 25 45 16 2 1; // 21
|
||||
GLYPH 50 45 16 2 1; // 22
|
||||
GLYPH 75 45 16 2 1; // 23
|
||||
GLYPH 100 45 16 2 1; // 24
|
||||
GLYPH 125 45 16 2 1; // 25
|
||||
GLYPH 150 45 16 2 1; // 26
|
||||
GLYPH 175 45 16 2 1; // 27
|
||||
GLYPH 200 45 16 2 1; // 28
|
||||
GLYPH 225 45 16 2 1; // 29
|
||||
GLYPH 250 45 16 2 1; // 30
|
||||
GLYPH 275 45 16 2 1; // 31
|
||||
GLYPH 300 45 1 0 18; // 32 ( )
|
||||
GLYPH 310 45 3 8 8; // 33 (!)
|
||||
GLYPH 322 45 9 5 5; // 34 (")
|
||||
GLYPH 340 45 19 0 0; // 35 (#)
|
||||
GLYPH 368 45 14 3 2; // 36 ($)
|
||||
GLYPH 391 45 17 1 1; // 37 (%)
|
||||
GLYPH 417 45 18 1 0; // 38 (&)
|
||||
GLYPH 444 45 3 8 8; // 39 (')
|
||||
GLYPH 456 45 7 6 6; // 40 (()
|
||||
GLYPH 472 45 7 5 7; // 41 ())
|
||||
GLYPH 488 45 14 2 3; // 42 (*)
|
||||
GLYPH 0 90 17 1 1; // 43 (+)
|
||||
GLYPH 26 90 6 6 7; // 44 (,)
|
||||
GLYPH 41 90 8 5 6; // 45 (-)
|
||||
GLYPH 58 90 4 7 8; // 46 (.)
|
||||
GLYPH 71 90 15 2 2; // 47 (/)
|
||||
GLYPH 95 90 15 2 2; // 48 (0)
|
||||
GLYPH 119 90 13 4 2; // 49 (1)
|
||||
GLYPH 141 90 16 2 1; // 50 (2)
|
||||
GLYPH 166 90 15 2 2; // 51 (3)
|
||||
GLYPH 190 90 16 2 1; // 52 (4)
|
||||
GLYPH 215 90 15 2 2; // 53 (5)
|
||||
GLYPH 239 90 15 2 2; // 54 (6)
|
||||
GLYPH 263 90 15 2 2; // 55 (7)
|
||||
GLYPH 287 90 15 2 2; // 56 (8)
|
||||
GLYPH 311 90 15 2 2; // 57 (9)
|
||||
GLYPH 335 90 4 7 8; // 58 (:)
|
||||
GLYPH 348 90 6 5 8; // 59 (;)
|
||||
GLYPH 363 90 16 1 2; // 60 (<)
|
||||
GLYPH 388 90 16 1 2; // 61 (=)
|
||||
GLYPH 413 90 16 1 2; // 62 (>)
|
||||
GLYPH 438 90 12 3 4; // 63 (?)
|
||||
GLYPH 459 90 17 1 1; // 64 (@)
|
||||
GLYPH 485 90 18 1 0; // 65 (A)
|
||||
GLYPH 0 135 15 3 1; // 66 (B)
|
||||
GLYPH 24 135 14 2 3; // 67 (C)
|
||||
GLYPH 47 135 15 2 2; // 68 (D)
|
||||
GLYPH 71 135 14 3 2; // 69 (E)
|
||||
GLYPH 94 135 13 3 3; // 70 (F)
|
||||
GLYPH 116 135 15 2 2; // 71 (G)
|
||||
GLYPH 140 135 15 2 2; // 72 (H)
|
||||
GLYPH 164 135 13 3 3; // 73 (I)
|
||||
GLYPH 186 135 13 2 4; // 74 (J)
|
||||
GLYPH 208 135 17 2 0; // 75 (K)
|
||||
GLYPH 234 135 14 3 2; // 76 (L)
|
||||
GLYPH 257 135 16 1 2; // 77 (M)
|
||||
GLYPH 282 135 14 2 3; // 78 (N)
|
||||
GLYPH 305 135 15 2 2; // 79 (O)
|
||||
GLYPH 329 135 14 3 2; // 80 (P)
|
||||
GLYPH 352 135 15 2 2; // 81 (Q)
|
||||
GLYPH 376 135 17 2 0; // 82 (R)
|
||||
GLYPH 402 135 15 2 2; // 83 (S)
|
||||
GLYPH 426 135 17 1 1; // 84 (T)
|
||||
GLYPH 452 135 14 2 3; // 85 (U)
|
||||
GLYPH 475 135 17 1 1; // 86 (V)
|
||||
GLYPH 0 180 19 0 0; // 87 (W)
|
||||
GLYPH 28 180 18 1 0; // 88 (X)
|
||||
GLYPH 55 180 17 1 1; // 89 (Y)
|
||||
GLYPH 81 180 15 2 2; // 90 (Z)
|
||||
GLYPH 105 180 7 7 5; // 91 ([)
|
||||
GLYPH 121 180 15 2 2; // 92 (\)
|
||||
GLYPH 145 180 7 5 7; // 93 (])
|
||||
GLYPH 161 180 16 1 2; // 94 (^)
|
||||
GLYPH 186 180 16 0 3; // 95 (_)
|
||||
GLYPH 211 180 7 4 8; // 96 (`)
|
||||
GLYPH 227 180 15 2 2; // 97 (a)
|
||||
GLYPH 251 180 15 3 1; // 98 (b)
|
||||
GLYPH 275 180 13 3 3; // 99 (c)
|
||||
GLYPH 297 180 15 2 2; // 100 (d)
|
||||
GLYPH 321 180 15 2 2; // 101 (e)
|
||||
GLYPH 345 180 14 2 3; // 102 (f)
|
||||
GLYPH 368 180 15 2 2; // 103 (g)
|
||||
GLYPH 392 180 13 3 3; // 104 (h)
|
||||
GLYPH 414 180 15 2 2; // 105 (i)
|
||||
GLYPH 438 180 9 3 7; // 106 (j)
|
||||
GLYPH 456 180 15 4 0; // 107 (k)
|
||||
GLYPH 480 180 15 1 3; // 108 (l)
|
||||
GLYPH 0 225 17 2 0; // 109 (m)
|
||||
GLYPH 26 225 13 3 3; // 110 (n)
|
||||
GLYPH 48 225 15 2 2; // 111 (o)
|
||||
GLYPH 72 225 15 3 1; // 112 (p)
|
||||
GLYPH 96 225 15 2 2; // 113 (q)
|
||||
GLYPH 120 225 12 5 2; // 114 (r)
|
||||
GLYPH 141 225 13 3 3; // 115 (s)
|
||||
GLYPH 163 225 14 2 3; // 116 (t)
|
||||
GLYPH 186 225 13 3 3; // 117 (u)
|
||||
GLYPH 208 225 16 2 1; // 118 (v)
|
||||
GLYPH 233 225 19 0 0; // 119 (w)
|
||||
GLYPH 261 225 16 1 2; // 120 (x)
|
||||
GLYPH 286 225 16 2 1; // 121 (y)
|
||||
GLYPH 311 225 13 3 3; // 122 (z)
|
||||
GLYPH 333 225 12 3 4; // 123 ({)
|
||||
GLYPH 354 225 3 8 8; // 124 (|)
|
||||
GLYPH 366 225 12 4 3; // 125 (})
|
||||
GLYPH 387 225 16 1 2; // 126 (~)
|
||||
GLYPH 412 225 16 2 1; // 127
|
||||
HEIGHT 40;
|
||||
GLYPH 0 0 17 2 1; // 0
|
||||
GLYPH 27 0 17 2 1; // 1
|
||||
GLYPH 54 0 17 2 1; // 2
|
||||
GLYPH 81 0 17 2 1; // 3
|
||||
GLYPH 108 0 17 2 1; // 4
|
||||
GLYPH 135 0 17 2 1; // 5
|
||||
GLYPH 162 0 17 2 1; // 6
|
||||
GLYPH 189 0 17 2 1; // 7
|
||||
GLYPH 216 0 17 2 1; // 8
|
||||
GLYPH 243 0 17 2 1; // 9
|
||||
GLYPH 270 0 17 2 1; // 10
|
||||
GLYPH 297 0 17 2 1; // 11
|
||||
GLYPH 324 0 17 2 1; // 12
|
||||
GLYPH 351 0 17 2 1; // 13
|
||||
GLYPH 378 0 17 2 1; // 14
|
||||
GLYPH 405 0 17 2 1; // 15
|
||||
GLYPH 432 0 17 2 1; // 16
|
||||
GLYPH 459 0 17 2 1; // 17
|
||||
GLYPH 0 50 17 2 1; // 18
|
||||
GLYPH 27 50 17 2 1; // 19
|
||||
GLYPH 54 50 17 2 1; // 20
|
||||
GLYPH 81 50 17 2 1; // 21
|
||||
GLYPH 108 50 17 2 1; // 22
|
||||
GLYPH 135 50 17 2 1; // 23
|
||||
GLYPH 162 50 17 2 1; // 24
|
||||
GLYPH 189 50 17 2 1; // 25
|
||||
GLYPH 216 50 17 2 1; // 26
|
||||
GLYPH 243 50 17 2 1; // 27
|
||||
GLYPH 270 50 17 2 1; // 28
|
||||
GLYPH 297 50 17 2 1; // 29
|
||||
GLYPH 324 50 17 2 1; // 30
|
||||
GLYPH 351 50 17 2 1; // 31
|
||||
GLYPH 378 50 1 0 19; // 32 ( )
|
||||
GLYPH 389 50 3 9 8; // 33 (!)
|
||||
GLYPH 402 50 9 6 5; // 34 (")
|
||||
GLYPH 421 50 20 0 0; // 35 (#)
|
||||
GLYPH 451 50 16 3 1; // 36 ($)
|
||||
GLYPH 477 50 19 1 0; // 37 (%)
|
||||
GLYPH 0 100 19 1 0; // 38 (&)
|
||||
GLYPH 29 100 3 9 8; // 39 (')
|
||||
GLYPH 42 100 8 7 5; // 40 (()
|
||||
GLYPH 60 100 8 5 7; // 41 ())
|
||||
GLYPH 78 100 16 2 2; // 42 (*)
|
||||
GLYPH 104 100 17 2 1; // 43 (+)
|
||||
GLYPH 131 100 6 6 8; // 44 (,)
|
||||
GLYPH 147 100 9 6 5; // 45 (-)
|
||||
GLYPH 166 100 4 8 8; // 46 (.)
|
||||
GLYPH 180 100 16 2 2; // 47 (/)
|
||||
GLYPH 206 100 16 2 2; // 48 (0)
|
||||
GLYPH 232 100 14 4 2; // 49 (1)
|
||||
GLYPH 256 100 17 3 0; // 50 (2)
|
||||
GLYPH 283 100 16 2 2; // 51 (3)
|
||||
GLYPH 309 100 17 2 1; // 52 (4)
|
||||
GLYPH 336 100 16 2 2; // 53 (5)
|
||||
GLYPH 362 100 16 2 2; // 54 (6)
|
||||
GLYPH 388 100 16 2 2; // 55 (7)
|
||||
GLYPH 414 100 16 2 2; // 56 (8)
|
||||
GLYPH 440 100 16 2 2; // 57 (9)
|
||||
GLYPH 466 100 4 8 8; // 58 (:)
|
||||
GLYPH 480 100 6 6 8; // 59 (;)
|
||||
GLYPH 0 150 18 1 1; // 60 (<)
|
||||
GLYPH 28 150 18 1 1; // 61 (=)
|
||||
GLYPH 56 150 18 1 1; // 62 (>)
|
||||
GLYPH 84 150 13 4 3; // 63 (?)
|
||||
GLYPH 107 150 19 1 0; // 64 (@)
|
||||
GLYPH 136 150 19 1 0; // 65 (A)
|
||||
GLYPH 165 150 16 3 1; // 66 (B)
|
||||
GLYPH 191 150 16 2 2; // 67 (C)
|
||||
GLYPH 217 150 16 2 2; // 68 (D)
|
||||
GLYPH 243 150 15 3 2; // 69 (E)
|
||||
GLYPH 268 150 15 4 1; // 70 (F)
|
||||
GLYPH 293 150 17 2 1; // 71 (G)
|
||||
GLYPH 320 150 16 2 2; // 72 (H)
|
||||
GLYPH 346 150 13 4 3; // 73 (I)
|
||||
GLYPH 369 150 14 2 4; // 74 (J)
|
||||
GLYPH 393 150 18 2 0; // 75 (K)
|
||||
GLYPH 421 150 15 4 1; // 76 (L)
|
||||
GLYPH 446 150 18 1 1; // 77 (M)
|
||||
GLYPH 474 150 16 2 2; // 78 (N)
|
||||
GLYPH 0 200 17 2 1; // 79 (O)
|
||||
GLYPH 27 200 16 3 1; // 80 (P)
|
||||
GLYPH 53 200 17 2 1; // 81 (Q)
|
||||
GLYPH 80 200 18 2 0; // 82 (R)
|
||||
GLYPH 108 200 16 2 2; // 83 (S)
|
||||
GLYPH 134 200 19 1 0; // 84 (T)
|
||||
GLYPH 163 200 16 2 2; // 85 (U)
|
||||
GLYPH 189 200 19 1 0; // 86 (V)
|
||||
GLYPH 218 200 20 0 0; // 87 (W)
|
||||
GLYPH 248 200 20 1 -1; // 88 (X)
|
||||
GLYPH 278 200 19 1 0; // 89 (Y)
|
||||
GLYPH 307 200 17 3 0; // 90 (Z)
|
||||
GLYPH 334 200 7 8 5; // 91 ([)
|
||||
GLYPH 351 200 16 2 2; // 92 (\)
|
||||
GLYPH 377 200 7 6 7; // 93 (])
|
||||
GLYPH 394 200 18 1 1; // 94 (^)
|
||||
GLYPH 422 200 17 0 3; // 95 (_)
|
||||
GLYPH 449 200 8 5 7; // 96 (`)
|
||||
GLYPH 467 200 16 2 2; // 97 (a)
|
||||
GLYPH 0 250 16 3 1; // 98 (b)
|
||||
GLYPH 26 250 14 3 3; // 99 (c)
|
||||
GLYPH 50 250 16 2 2; // 100 (d)
|
||||
GLYPH 76 250 16 2 2; // 101 (e)
|
||||
GLYPH 102 250 14 3 3; // 102 (f)
|
||||
GLYPH 126 250 16 2 2; // 103 (g)
|
||||
GLYPH 152 250 14 3 3; // 104 (h)
|
||||
GLYPH 176 250 15 3 2; // 105 (i)
|
||||
GLYPH 201 250 10 3 7; // 106 (j)
|
||||
GLYPH 221 250 16 4 0; // 107 (k)
|
||||
GLYPH 247 250 16 2 2; // 108 (l)
|
||||
GLYPH 273 250 17 2 1; // 109 (m)
|
||||
GLYPH 300 250 14 3 3; // 110 (n)
|
||||
GLYPH 324 250 16 2 2; // 111 (o)
|
||||
GLYPH 350 250 16 3 1; // 112 (p)
|
||||
GLYPH 376 250 16 2 2; // 113 (q)
|
||||
GLYPH 402 250 13 6 1; // 114 (r)
|
||||
GLYPH 425 250 14 4 2; // 115 (s)
|
||||
GLYPH 449 250 15 2 3; // 116 (t)
|
||||
GLYPH 474 250 14 3 3; // 117 (u)
|
||||
GLYPH 0 300 17 2 1; // 118 (v)
|
||||
GLYPH 27 300 20 0 0; // 119 (w)
|
||||
GLYPH 57 300 18 1 1; // 120 (x)
|
||||
GLYPH 85 300 17 2 1; // 121 (y)
|
||||
GLYPH 112 300 14 3 3; // 122 (z)
|
||||
GLYPH 136 300 13 4 3; // 123 ({)
|
||||
GLYPH 159 300 3 9 8; // 124 (|)
|
||||
GLYPH 172 300 13 4 3; // 125 (})
|
||||
GLYPH 195 300 18 1 1; // 126 (~)
|
||||
GLYPH 223 300 17 2 1; // 127
|
||||
HEIGHT 48;
|
||||
GLYPH 0 0 21 2 2; // 0
|
||||
GLYPH 33 0 21 2 2; // 1
|
||||
GLYPH 66 0 21 2 2; // 2
|
||||
GLYPH 99 0 21 2 2; // 3
|
||||
GLYPH 132 0 21 2 2; // 4
|
||||
GLYPH 165 0 21 2 2; // 5
|
||||
GLYPH 198 0 21 2 2; // 6
|
||||
GLYPH 231 0 21 2 2; // 7
|
||||
GLYPH 264 0 21 2 2; // 8
|
||||
GLYPH 297 0 21 2 2; // 9
|
||||
GLYPH 330 0 21 2 2; // 10
|
||||
GLYPH 363 0 21 2 2; // 11
|
||||
GLYPH 396 0 21 2 2; // 12
|
||||
GLYPH 429 0 21 2 2; // 13
|
||||
GLYPH 462 0 21 2 2; // 14
|
||||
GLYPH 0 60 21 2 2; // 15
|
||||
GLYPH 33 60 21 2 2; // 16
|
||||
GLYPH 66 60 21 2 2; // 17
|
||||
GLYPH 99 60 21 2 2; // 18
|
||||
GLYPH 132 60 21 2 2; // 19
|
||||
GLYPH 165 60 21 2 2; // 20
|
||||
GLYPH 198 60 21 2 2; // 21
|
||||
GLYPH 231 60 21 2 2; // 22
|
||||
GLYPH 264 60 21 2 2; // 23
|
||||
GLYPH 297 60 21 2 2; // 24
|
||||
GLYPH 330 60 21 2 2; // 25
|
||||
GLYPH 363 60 21 2 2; // 26
|
||||
GLYPH 396 60 21 2 2; // 27
|
||||
GLYPH 429 60 21 2 2; // 28
|
||||
GLYPH 462 60 21 2 2; // 29
|
||||
GLYPH 0 120 21 2 2; // 30
|
||||
GLYPH 33 120 21 2 2; // 31
|
||||
GLYPH 66 120 1 0 24; // 32 ( )
|
||||
GLYPH 79 120 4 10 11; // 33 (!)
|
||||
GLYPH 95 120 10 7 8; // 34 (")
|
||||
GLYPH 117 120 25 0 0; // 35 (#)
|
||||
GLYPH 154 120 18 4 3; // 36 ($)
|
||||
GLYPH 184 120 23 1 1; // 37 (%)
|
||||
GLYPH 219 120 23 1 1; // 38 (&)
|
||||
GLYPH 254 120 3 11 11; // 39 (')
|
||||
GLYPH 269 120 9 9 7; // 40 (()
|
||||
GLYPH 290 120 9 7 9; // 41 ())
|
||||
GLYPH 311 120 18 3 4; // 42 (*)
|
||||
GLYPH 341 120 21 2 2; // 43 (+)
|
||||
GLYPH 374 120 7 8 10; // 44 (,)
|
||||
GLYPH 393 120 10 7 8; // 45 (-)
|
||||
GLYPH 415 120 5 10 10; // 46 (.)
|
||||
GLYPH 432 120 20 2 3; // 47 (/)
|
||||
GLYPH 464 120 19 3 3; // 48 (0)
|
||||
GLYPH 0 180 17 5 3; // 49 (1)
|
||||
GLYPH 29 180 20 3 2; // 50 (2)
|
||||
GLYPH 61 180 19 3 3; // 51 (3)
|
||||
GLYPH 92 180 21 2 2; // 52 (4)
|
||||
GLYPH 125 180 19 3 3; // 53 (5)
|
||||
GLYPH 156 180 19 3 3; // 54 (6)
|
||||
GLYPH 187 180 19 3 3; // 55 (7)
|
||||
GLYPH 218 180 19 3 3; // 56 (8)
|
||||
GLYPH 249 180 19 3 3; // 57 (9)
|
||||
GLYPH 280 180 5 10 10; // 58 (:)
|
||||
GLYPH 297 180 7 8 10; // 59 (;)
|
||||
GLYPH 316 180 21 2 2; // 60 (<)
|
||||
GLYPH 349 180 21 2 2; // 61 (=)
|
||||
GLYPH 382 180 21 2 2; // 62 (>)
|
||||
GLYPH 415 180 16 5 4; // 63 (?)
|
||||
GLYPH 443 180 23 1 1; // 64 (@)
|
||||
GLYPH 0 240 23 1 1; // 65 (A)
|
||||
GLYPH 35 240 19 3 3; // 66 (B)
|
||||
GLYPH 66 240 19 3 3; // 67 (C)
|
||||
GLYPH 97 240 19 3 3; // 68 (D)
|
||||
GLYPH 128 240 18 4 3; // 69 (E)
|
||||
GLYPH 158 240 18 4 3; // 70 (F)
|
||||
GLYPH 188 240 20 2 3; // 71 (G)
|
||||
GLYPH 220 240 19 3 3; // 72 (H)
|
||||
GLYPH 251 240 16 4 5; // 73 (I)
|
||||
GLYPH 279 240 17 2 6; // 74 (J)
|
||||
GLYPH 308 240 22 3 0; // 75 (K)
|
||||
GLYPH 342 240 19 4 2; // 76 (L)
|
||||
GLYPH 373 240 21 2 2; // 77 (M)
|
||||
GLYPH 406 240 19 3 3; // 78 (N)
|
||||
GLYPH 437 240 20 2 3; // 79 (O)
|
||||
GLYPH 469 240 19 4 2; // 80 (P)
|
||||
GLYPH 0 300 20 2 3; // 81 (Q)
|
||||
GLYPH 32 300 22 3 0; // 82 (R)
|
||||
GLYPH 66 300 19 3 3; // 83 (S)
|
||||
GLYPH 97 300 22 1 2; // 84 (T)
|
||||
GLYPH 131 300 19 3 3; // 85 (U)
|
||||
GLYPH 162 300 22 1 2; // 86 (V)
|
||||
GLYPH 196 300 25 0 0; // 87 (W)
|
||||
GLYPH 233 300 24 1 0; // 88 (X)
|
||||
GLYPH 269 300 24 0 1; // 89 (Y)
|
||||
GLYPH 305 300 20 3 2; // 90 (Z)
|
||||
GLYPH 337 300 9 9 7; // 91 ([)
|
||||
GLYPH 358 300 20 2 3; // 92 (\)
|
||||
GLYPH 390 300 9 7 9; // 93 (])
|
||||
GLYPH 411 300 22 1 2; // 94 (^)
|
||||
GLYPH 445 300 21 0 4; // 95 (_)
|
||||
GLYPH 478 300 10 6 9; // 96 (`)
|
||||
GLYPH 0 360 19 3 3; // 97 (a)
|
||||
GLYPH 31 360 19 4 2; // 98 (b)
|
||||
GLYPH 62 360 17 4 4; // 99 (c)
|
||||
GLYPH 91 360 19 2 4; // 100 (d)
|
||||
GLYPH 122 360 20 2 3; // 101 (e)
|
||||
GLYPH 154 360 18 4 3; // 102 (f)
|
||||
GLYPH 184 360 19 2 4; // 103 (g)
|
||||
GLYPH 215 360 17 4 4; // 104 (h)
|
||||
GLYPH 244 360 18 4 3; // 105 (i)
|
||||
GLYPH 274 360 12 4 9; // 106 (j)
|
||||
GLYPH 298 360 19 5 1; // 107 (k)
|
||||
GLYPH 329 360 19 2 4; // 108 (l)
|
||||
GLYPH 360 360 22 2 1; // 109 (m)
|
||||
GLYPH 394 360 17 4 4; // 110 (n)
|
||||
GLYPH 423 360 19 3 3; // 111 (o)
|
||||
GLYPH 454 360 19 4 2; // 112 (p)
|
||||
GLYPH 0 420 19 3 3; // 113 (q)
|
||||
GLYPH 31 420 16 7 2; // 114 (r)
|
||||
GLYPH 59 420 17 4 4; // 115 (s)
|
||||
GLYPH 88 420 18 3 4; // 116 (t)
|
||||
GLYPH 118 420 17 4 4; // 117 (u)
|
||||
GLYPH 147 420 21 2 2; // 118 (v)
|
||||
GLYPH 180 420 25 0 0; // 119 (w)
|
||||
GLYPH 217 420 22 2 1; // 120 (x)
|
||||
GLYPH 251 420 21 2 2; // 121 (y)
|
||||
GLYPH 284 420 17 4 4; // 122 (z)
|
||||
GLYPH 313 420 16 5 4; // 123 ({)
|
||||
GLYPH 341 420 3 11 11; // 124 (|)
|
||||
GLYPH 356 420 16 4 5; // 125 (})
|
||||
GLYPH 384 420 21 2 2; // 126 (~)
|
||||
GLYPH 417 420 21 2 2; // 127
|
||||
HEIGHT 56;
|
||||
GLYPH 0 0 24 2 3; // 0
|
||||
GLYPH 38 0 24 2 3; // 1
|
||||
GLYPH 76 0 24 2 3; // 2
|
||||
GLYPH 114 0 24 2 3; // 3
|
||||
GLYPH 152 0 24 2 3; // 4
|
||||
GLYPH 190 0 24 2 3; // 5
|
||||
GLYPH 228 0 24 2 3; // 6
|
||||
GLYPH 266 0 24 2 3; // 7
|
||||
GLYPH 304 0 24 2 3; // 8
|
||||
GLYPH 342 0 24 2 3; // 9
|
||||
GLYPH 380 0 24 2 3; // 10
|
||||
GLYPH 418 0 24 2 3; // 11
|
||||
GLYPH 456 0 24 2 3; // 12
|
||||
GLYPH 0 70 24 2 3; // 13
|
||||
GLYPH 38 70 24 2 3; // 14
|
||||
GLYPH 76 70 24 2 3; // 15
|
||||
GLYPH 114 70 24 2 3; // 16
|
||||
GLYPH 152 70 24 2 3; // 17
|
||||
GLYPH 190 70 24 2 3; // 18
|
||||
GLYPH 228 70 24 2 3; // 19
|
||||
GLYPH 266 70 24 2 3; // 20
|
||||
GLYPH 304 70 24 2 3; // 21
|
||||
GLYPH 342 70 24 2 3; // 22
|
||||
GLYPH 380 70 24 2 3; // 23
|
||||
GLYPH 418 70 24 2 3; // 24
|
||||
GLYPH 456 70 24 2 3; // 25
|
||||
GLYPH 0 140 24 2 3; // 26
|
||||
GLYPH 38 140 24 2 3; // 27
|
||||
GLYPH 76 140 24 2 3; // 28
|
||||
GLYPH 114 140 24 2 3; // 29
|
||||
GLYPH 152 140 24 2 3; // 30
|
||||
GLYPH 190 140 24 2 3; // 31
|
||||
GLYPH 228 140 1 0 28; // 32 ( )
|
||||
GLYPH 243 140 4 12 13; // 33 (!)
|
||||
GLYPH 261 140 13 8 8; // 34 (")
|
||||
GLYPH 288 140 29 0 0; // 35 (#)
|
||||
GLYPH 331 140 21 5 3; // 36 ($)
|
||||
GLYPH 366 140 27 1 1; // 37 (%)
|
||||
GLYPH 407 140 27 1 1; // 38 (&)
|
||||
GLYPH 448 140 4 12 13; // 39 (')
|
||||
GLYPH 466 140 11 10 8; // 40 (()
|
||||
GLYPH 0 210 11 7 11; // 41 ())
|
||||
GLYPH 25 210 21 4 4; // 42 (*)
|
||||
GLYPH 60 210 24 2 3; // 43 (+)
|
||||
GLYPH 98 210 8 10 11; // 44 (,)
|
||||
GLYPH 120 210 12 8 9; // 45 (-)
|
||||
GLYPH 146 210 6 11 12; // 46 (.)
|
||||
GLYPH 166 210 22 2 5; // 47 (/)
|
||||
GLYPH 202 210 23 3 3; // 48 (0)
|
||||
GLYPH 239 210 19 6 4; // 49 (1)
|
||||
GLYPH 272 210 24 4 1; // 50 (2)
|
||||
GLYPH 310 210 23 3 3; // 51 (3)
|
||||
GLYPH 347 210 24 2 3; // 52 (4)
|
||||
GLYPH 385 210 23 3 3; // 53 (5)
|
||||
GLYPH 422 210 23 3 3; // 54 (6)
|
||||
GLYPH 459 210 23 3 3; // 55 (7)
|
||||
GLYPH 0 280 23 3 3; // 56 (8)
|
||||
GLYPH 37 280 23 3 3; // 57 (9)
|
||||
GLYPH 74 280 6 11 12; // 58 (:)
|
||||
GLYPH 94 280 8 9 12; // 59 (;)
|
||||
GLYPH 116 280 25 2 2; // 60 (<)
|
||||
GLYPH 155 280 25 2 2; // 61 (=)
|
||||
GLYPH 194 280 25 2 2; // 62 (>)
|
||||
GLYPH 233 280 19 5 5; // 63 (?)
|
||||
GLYPH 266 280 27 1 1; // 64 (@)
|
||||
GLYPH 307 280 27 1 1; // 65 (A)
|
||||
GLYPH 348 280 23 4 2; // 66 (B)
|
||||
GLYPH 385 280 22 3 4; // 67 (C)
|
||||
GLYPH 421 280 23 3 3; // 68 (D)
|
||||
GLYPH 458 280 21 5 3; // 69 (E)
|
||||
GLYPH 0 350 21 5 3; // 70 (F)
|
||||
GLYPH 35 350 23 3 3; // 71 (G)
|
||||
GLYPH 72 350 22 3 4; // 72 (H)
|
||||
GLYPH 108 350 18 5 6; // 73 (I)
|
||||
GLYPH 140 350 20 3 6; // 74 (J)
|
||||
GLYPH 174 350 25 3 1; // 75 (K)
|
||||
GLYPH 213 350 22 5 2; // 76 (L)
|
||||
GLYPH 249 350 25 2 2; // 77 (M)
|
||||
GLYPH 288 350 22 3 4; // 78 (N)
|
||||
GLYPH 324 350 23 3 3; // 79 (O)
|
||||
GLYPH 361 350 22 5 2; // 80 (P)
|
||||
GLYPH 397 350 23 3 3; // 81 (Q)
|
||||
GLYPH 434 350 26 3 0; // 82 (R)
|
||||
GLYPH 474 350 22 3 4; // 83 (S)
|
||||
GLYPH 0 420 26 1 2; // 84 (T)
|
||||
GLYPH 40 420 22 3 4; // 85 (U)
|
||||
GLYPH 76 420 26 1 2; // 86 (V)
|
||||
GLYPH 116 420 29 0 0; // 87 (W)
|
||||
GLYPH 159 420 28 1 0; // 88 (X)
|
||||
GLYPH 201 420 26 1 2; // 89 (Y)
|
||||
GLYPH 241 420 24 4 1; // 90 (Z)
|
||||
GLYPH 279 420 10 11 8; // 91 ([)
|
||||
GLYPH 303 420 22 2 5; // 92 (\)
|
||||
GLYPH 339 420 10 8 11; // 93 (])
|
||||
GLYPH 363 420 26 2 1; // 94 (^)
|
||||
GLYPH 403 420 24 0 5; // 95 (_)
|
||||
GLYPH 441 420 11 7 11; // 96 (`)
|
||||
GLYPH 466 420 22 3 4; // 97 (a)
|
||||
GLYPH 0 490 22 5 2; // 98 (b)
|
||||
GLYPH 36 490 20 5 4; // 99 (c)
|
||||
GLYPH 70 490 22 3 4; // 100 (d)
|
||||
GLYPH 106 490 23 3 3; // 101 (e)
|
||||
GLYPH 143 490 20 5 4; // 102 (f)
|
||||
GLYPH 177 490 22 3 4; // 103 (g)
|
||||
GLYPH 213 490 20 5 4; // 104 (h)
|
||||
GLYPH 247 490 22 4 3; // 105 (i)
|
||||
GLYPH 283 490 14 4 11; // 106 (j)
|
||||
GLYPH 311 490 22 6 1; // 107 (k)
|
||||
GLYPH 347 490 22 2 5; // 108 (l)
|
||||
GLYPH 383 490 24 3 2; // 109 (m)
|
||||
GLYPH 421 490 20 5 4; // 110 (n)
|
||||
GLYPH 455 490 22 3 4; // 111 (o)
|
||||
GLYPH 0 560 22 5 2; // 112 (p)
|
||||
GLYPH 36 560 22 3 4; // 113 (q)
|
||||
GLYPH 72 560 19 8 2; // 114 (r)
|
||||
GLYPH 105 560 19 5 5; // 115 (s)
|
||||
GLYPH 138 560 21 3 5; // 116 (t)
|
||||
GLYPH 173 560 20 5 4; // 117 (u)
|
||||
GLYPH 207 560 24 2 3; // 118 (v)
|
||||
GLYPH 245 560 29 0 0; // 119 (w)
|
||||
GLYPH 288 560 25 2 2; // 120 (x)
|
||||
GLYPH 327 560 25 2 2; // 121 (y)
|
||||
GLYPH 366 560 20 5 4; // 122 (z)
|
||||
GLYPH 400 560 18 5 6; // 123 ({)
|
||||
GLYPH 432 560 4 12 13; // 124 (|)
|
||||
GLYPH 450 560 18 5 6; // 125 (})
|
||||
GLYPH 0 630 25 2 2; // 126 (~)
|
||||
GLYPH 39 630 24 2 3; // 127
|
||||
HEIGHT 64;
|
||||
GLYPH 0 0 28 3 2; // 0
|
||||
GLYPH 44 0 28 3 2; // 1
|
||||
GLYPH 88 0 28 3 2; // 2
|
||||
GLYPH 132 0 28 3 2; // 3
|
||||
GLYPH 176 0 28 3 2; // 4
|
||||
GLYPH 220 0 28 3 2; // 5
|
||||
GLYPH 264 0 28 3 2; // 6
|
||||
GLYPH 308 0 28 3 2; // 7
|
||||
GLYPH 352 0 28 3 2; // 8
|
||||
GLYPH 396 0 28 3 2; // 9
|
||||
GLYPH 440 0 28 3 2; // 10
|
||||
GLYPH 0 80 28 3 2; // 11
|
||||
GLYPH 44 80 28 3 2; // 12
|
||||
GLYPH 88 80 28 3 2; // 13
|
||||
GLYPH 132 80 28 3 2; // 14
|
||||
GLYPH 176 80 28 3 2; // 15
|
||||
GLYPH 220 80 28 3 2; // 16
|
||||
GLYPH 264 80 28 3 2; // 17
|
||||
GLYPH 308 80 28 3 2; // 18
|
||||
GLYPH 352 80 28 3 2; // 19
|
||||
GLYPH 396 80 28 3 2; // 20
|
||||
GLYPH 440 80 28 3 2; // 21
|
||||
GLYPH 0 160 28 3 2; // 22
|
||||
GLYPH 44 160 28 3 2; // 23
|
||||
GLYPH 88 160 28 3 2; // 24
|
||||
GLYPH 132 160 28 3 2; // 25
|
||||
GLYPH 176 160 28 3 2; // 26
|
||||
GLYPH 220 160 28 3 2; // 27
|
||||
GLYPH 264 160 28 3 2; // 28
|
||||
GLYPH 308 160 28 3 2; // 29
|
||||
GLYPH 352 160 28 3 2; // 30
|
||||
GLYPH 396 160 28 3 2; // 31
|
||||
GLYPH 440 160 1 0 32; // 32 ( )
|
||||
GLYPH 457 160 5 14 14; // 33 (!)
|
||||
GLYPH 478 160 16 9 8; // 34 (")
|
||||
GLYPH 0 240 33 0 0; // 35 (#)
|
||||
GLYPH 49 240 25 5 3; // 36 ($)
|
||||
GLYPH 90 240 31 1 1; // 37 (%)
|
||||
GLYPH 137 240 31 2 0; // 38 (&)
|
||||
GLYPH 184 240 5 14 14; // 39 (')
|
||||
GLYPH 205 240 12 11 10; // 40 (()
|
||||
GLYPH 233 240 12 9 12; // 41 ())
|
||||
GLYPH 261 240 25 4 4; // 42 (*)
|
||||
GLYPH 302 240 28 2 3; // 43 (+)
|
||||
GLYPH 346 240 10 10 13; // 44 (,)
|
||||
GLYPH 372 240 14 10 9; // 45 (-)
|
||||
GLYPH 402 240 7 13 13; // 46 (.)
|
||||
GLYPH 425 240 26 3 4; // 47 (/)
|
||||
GLYPH 467 240 26 4 3; // 48 (0)
|
||||
GLYPH 0 320 22 7 4; // 49 (1)
|
||||
GLYPH 38 320 27 4 2; // 50 (2)
|
||||
GLYPH 81 320 26 4 3; // 51 (3)
|
||||
GLYPH 123 320 28 3 2; // 52 (4)
|
||||
GLYPH 167 320 26 4 3; // 53 (5)
|
||||
GLYPH 209 320 26 4 3; // 54 (6)
|
||||
GLYPH 251 320 26 4 3; // 55 (7)
|
||||
GLYPH 293 320 26 4 3; // 56 (8)
|
||||
GLYPH 335 320 26 4 3; // 57 (9)
|
||||
GLYPH 377 320 7 13 13; // 58 (:)
|
||||
GLYPH 400 320 10 10 13; // 59 (;)
|
||||
GLYPH 426 320 28 2 3; // 60 (<)
|
||||
GLYPH 0 400 28 2 3; // 61 (=)
|
||||
GLYPH 44 400 28 2 3; // 62 (>)
|
||||
GLYPH 88 400 21 6 6; // 63 (?)
|
||||
GLYPH 125 400 31 1 1; // 64 (@)
|
||||
GLYPH 172 400 31 1 1; // 65 (A)
|
||||
GLYPH 219 400 26 4 3; // 66 (B)
|
||||
GLYPH 261 400 25 4 4; // 67 (C)
|
||||
GLYPH 302 400 26 4 3; // 68 (D)
|
||||
GLYPH 344 400 24 5 4; // 69 (E)
|
||||
GLYPH 384 400 24 6 3; // 70 (F)
|
||||
GLYPH 424 400 27 3 3; // 71 (G)
|
||||
GLYPH 467 400 26 4 3; // 72 (H)
|
||||
GLYPH 0 480 21 6 6; // 73 (I)
|
||||
GLYPH 37 480 23 3 7; // 74 (J)
|
||||
GLYPH 76 480 29 4 0; // 75 (K)
|
||||
GLYPH 121 480 25 6 2; // 76 (L)
|
||||
GLYPH 162 480 28 2 3; // 77 (M)
|
||||
GLYPH 206 480 26 4 3; // 78 (N)
|
||||
GLYPH 248 480 27 3 3; // 79 (O)
|
||||
GLYPH 291 480 26 5 2; // 80 (P)
|
||||
GLYPH 333 480 27 3 3; // 81 (Q)
|
||||
GLYPH 376 480 29 4 0; // 82 (R)
|
||||
GLYPH 421 480 26 4 3; // 83 (S)
|
||||
GLYPH 463 480 31 1 1; // 84 (T)
|
||||
GLYPH 0 560 25 4 4; // 85 (U)
|
||||
GLYPH 41 560 30 2 1; // 86 (V)
|
||||
GLYPH 87 560 33 0 0; // 87 (W)
|
||||
GLYPH 136 560 32 1 0; // 88 (X)
|
||||
GLYPH 184 560 31 1 1; // 89 (Y)
|
||||
GLYPH 231 560 27 4 2; // 90 (Z)
|
||||
GLYPH 274 560 11 12 10; // 91 ([)
|
||||
GLYPH 301 560 26 3 4; // 92 (\)
|
||||
GLYPH 343 560 11 10 12; // 93 (])
|
||||
GLYPH 370 560 29 2 2; // 94 (^)
|
||||
GLYPH 415 560 28 0 5; // 95 (_)
|
||||
GLYPH 459 560 13 8 12; // 96 (`)
|
||||
GLYPH 0 640 26 4 3; // 97 (a)
|
||||
GLYPH 42 640 26 5 2; // 98 (b)
|
||||
GLYPH 84 640 23 5 5; // 99 (c)
|
||||
GLYPH 123 640 26 3 4; // 100 (d)
|
||||
GLYPH 165 640 27 3 3; // 101 (e)
|
||||
GLYPH 208 640 23 5 5; // 102 (f)
|
||||
GLYPH 247 640 26 3 4; // 103 (g)
|
||||
GLYPH 289 640 23 5 5; // 104 (h)
|
||||
GLYPH 328 640 25 5 3; // 105 (i)
|
||||
GLYPH 369 640 16 5 12; // 106 (j)
|
||||
GLYPH 401 640 26 6 1; // 107 (k)
|
||||
GLYPH 443 640 26 2 5; // 108 (l)
|
||||
GLYPH 0 720 28 3 2; // 109 (m)
|
||||
GLYPH 44 720 23 5 5; // 110 (n)
|
||||
GLYPH 83 720 26 4 3; // 111 (o)
|
||||
GLYPH 125 720 26 5 2; // 112 (p)
|
||||
GLYPH 167 720 26 4 3; // 113 (q)
|
||||
GLYPH 209 720 21 10 2; // 114 (r)
|
||||
GLYPH 246 720 22 6 5; // 115 (s)
|
||||
GLYPH 284 720 24 4 5; // 116 (t)
|
||||
GLYPH 324 720 23 5 5; // 117 (u)
|
||||
GLYPH 363 720 28 3 2; // 118 (v)
|
||||
GLYPH 407 720 33 0 0; // 119 (w)
|
||||
GLYPH 456 720 29 2 2; // 120 (x)
|
||||
GLYPH 0 800 28 3 2; // 121 (y)
|
||||
GLYPH 44 800 22 5 6; // 122 (z)
|
||||
GLYPH 82 800 21 6 6; // 123 ({)
|
||||
GLYPH 119 800 5 14 14; // 124 (|)
|
||||
GLYPH 140 800 21 6 6; // 125 (})
|
||||
GLYPH 177 800 28 2 3; // 126 (~)
|
||||
GLYPH 221 800 28 3 2; // 127
|
||||
|
||||
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.10.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.10.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.12.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.12.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.14.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.14.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.16.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.16.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.18.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.18.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.20.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.20.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.22.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.22.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.24.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.24.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.26.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.26.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.28.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.28.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.32.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.32.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.36.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.36.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.40.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.40.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.48.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.48.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.56.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.56.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.64.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin Italic.64.tga
Normal file
Binary file not shown.
2064
runtime/SimpleGraphic/Fonts/Fontin Italic.tgf
Normal file
2064
runtime/SimpleGraphic/Fonts/Fontin Italic.tgf
Normal file
File diff suppressed because it is too large
Load Diff
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.10.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.10.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.12.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.12.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.14.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.14.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.16.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.16.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.18.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.18.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.20.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.20.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.22.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.22.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.24.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.24.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.26.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.26.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.28.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.28.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.32.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.32.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.36.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.36.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.40.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.40.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.48.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.48.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.56.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.56.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.64.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.64.tga
Normal file
Binary file not shown.
2064
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.tgf
Normal file
2064
runtime/SimpleGraphic/Fonts/Fontin SmallCaps Italic.tgf
Normal file
File diff suppressed because it is too large
Load Diff
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.10.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.10.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.12.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.12.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.14.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.14.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.16.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.16.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.18.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.18.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.20.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.20.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.22.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.22.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.24.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.24.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.26.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.26.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.28.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.28.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.32.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.32.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.36.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.36.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.40.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.40.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.48.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.48.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.56.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.56.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.64.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.64.tga
Normal file
Binary file not shown.
2064
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.tgf
Normal file
2064
runtime/SimpleGraphic/Fonts/Fontin SmallCaps.tgf
Normal file
File diff suppressed because it is too large
Load Diff
BIN
runtime/SimpleGraphic/Fonts/Fontin.10.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.10.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.12.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.12.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.14.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.14.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.16.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.16.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.18.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.18.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.20.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.20.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.22.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.22.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.24.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.24.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.26.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.26.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.28.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.28.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.32.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.32.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.36.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.36.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.40.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.40.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.48.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.48.tga
Normal file
Binary file not shown.
BIN
runtime/SimpleGraphic/Fonts/Fontin.56.tga
Normal file
BIN
runtime/SimpleGraphic/Fonts/Fontin.56.tga
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user