Merge branch 'beta' into deep-sea-items

This commit is contained in:
Madmadness65 2025-04-01 17:24:03 -05:00 committed by GitHub
commit 44f89f05c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
788 changed files with 59561 additions and 49790 deletions

1
.gitattributes vendored
View File

@ -1,2 +1,3 @@
# Auto detect text files and perform LF normalization
* text=auto
* -crlf

View File

@ -29,4 +29,4 @@ jobs:
- name: Install Node.js dependencies
run: npm ci
- name: Run tests
run: npx vitest --project ${{ inputs.project }} --shard=${{ inputs.shard }}/${{ inputs.totalShards }} ${{ !runner.debug && '--silent' || '' }}
run: npx vitest --project ${{ inputs.project }} --no-isolate --shard=${{ inputs.shard }}/${{ inputs.totalShards }} ${{ !runner.debug && '--silent' || '' }}

View File

@ -15,29 +15,8 @@ on:
types: [checks_requested]
jobs:
pre-test:
name: Run Pre-test
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
with:
submodules: 'recursive'
path: tests-action
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Node.js dependencies
working-directory: tests-action
run: npm ci
- name: Run Pre-test
working-directory: tests-action
run: npx vitest run --project pre ${{ !runner.debug && '--silent' || '' }}
run-tests:
name: Run Tests
needs: [pre-test]
strategy:
matrix:
shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

View File

@ -50,7 +50,8 @@
"noUndeclaredVariables": "off",
"noUnusedVariables": "error",
"noSwitchDeclarations": "warn", // TODO: refactor and make this an error
"noVoidTypeReturn": "warn" // TODO: Refactor and make this an error
"noVoidTypeReturn": "warn", // TODO: Refactor and make this an error
"noUnusedImports": "error"
},
"style": {
"noVar": "error",

View File

@ -68,6 +68,10 @@ input:-internal-autofill-selected {
background-clip: text;
}
input:-webkit-autofill {
-webkit-text-fill-color: #a1a1a1;
}
/* Need adjust input font-size */
input {
font-size: 3.2rem;

View File

@ -8,12 +8,6 @@ pre-commit:
skip:
- merge
- rebase
pre-push:
commands:
biome-lint:
glob: "*.{js,ts,jsx,tsx}"
run: npx @biomejs/biome check --write --reporter=summary {push_files} --no-errors-on-unmatched
post-merge:
commands:

3038
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{
"name": "pokemon-rogue-battle",
"private": true,
"version": "1.7.7",
"version": "1.8.1",
"type": "module",
"scripts": {
"start": "vite",
@ -9,10 +9,10 @@
"build": "vite build",
"build:beta": "vite build --mode beta",
"preview": "vite preview",
"test": "vitest run --project pre && vitest run --project main",
"test:cov": "vitest run --project pre && vitest run --project main --coverage",
"test:watch": "vitest run --project pre && vitest watch --project main --coverage",
"test:silent": "vitest run --project pre && vitest run --project main --silent",
"test": "vitest run",
"test:cov": "vitest run --coverage --no-isolate",
"test:watch": "vitest watch --coverage --no-isolate",
"test:silent": "vitest run --silent --no-isolate",
"typecheck": "tsc --noEmit",
"eslint": "eslint --fix .",
"eslint-ci": "eslint .",
@ -29,41 +29,41 @@
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "^9.3.0",
"@hpcc-js/wasm": "^2.18.0",
"@stylistic/eslint-plugin-ts": "^2.6.0-beta.0",
"@eslint/js": "^9.23.0",
"@hpcc-js/wasm": "^2.22.4",
"@stylistic/eslint-plugin-ts": "^4.1.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54",
"@typescript-eslint/parser": "^8.0.0-alpha.54",
"@vitest/coverage-istanbul": "^2.1.9",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitest/coverage-istanbul": "^3.0.9",
"dependency-cruiser": "^16.3.10",
"eslint": "^9.7.0",
"eslint-plugin-import-x": "^4.2.1",
"inquirer": "^11.0.2",
"jsdom": "^24.0.0",
"lefthook": "^1.6.12",
"msw": "^2.4.9",
"eslint": "^9.23.0",
"eslint-plugin-import-x": "^4.9.4",
"inquirer": "^12.4.2",
"jsdom": "^26.0.0",
"lefthook": "^1.11.5",
"msw": "^2.7.3",
"phaser3spectorjs": "^0.0.8",
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.54",
"vite": "^5.4.14",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.9",
"typedoc": "^0.28.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vite": "^6.2.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9",
"vitest-canvas-mock": "^0.3.3"
},
"dependencies": {
"@material/material-color-utilities": "^0.2.7",
"crypto-js": "^4.2.0",
"i18next": "^23.11.1",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-http-backend": "^2.6.1",
"i18next": "^24.2.2",
"i18next-browser-languagedetector": "^8.0.4",
"i18next-http-backend": "^3.0.2",
"i18next-korean-postposition-processor": "^1.0.0",
"json-stable-stringify": "^1.1.0",
"json-stable-stringify": "^1.2.0",
"jszip": "^3.10.1",
"phaser": "^3.70.0",
"phaser3-rex-plugins": "^1.1.84"
"phaser3-rex-plugins": "^1.80.14"
},
"engines": {
"node": ">=20.0.0"

Binary file not shown.

Binary file not shown.

View File

@ -13,10 +13,10 @@
"1005",
"1006",
"1006",
"1007-apex",
"1007-apex",
"1008-ultimate",
"1008-ultimate",
"1007-apex-build-Disabled",
"1007-apex-build-Disabled",
"1008-ultimate-mode-Disabled",
"1008-ultimate-mode-Disabled",
"115-mega",
"115-mega",
"127-mega",
@ -185,9 +185,9 @@
"531-mega",
"569-gigantamax",
"569-gigantamax",
"6-mega",
"6-mega",
"6-mega-x",
"6-mega-x",
"6-mega-y",
"6-mega-y",
"6058",
"6058",
@ -825,8 +825,8 @@
"873",
"874",
"874",
"875-no",
"875-no",
"875-no-ice",
"875-no-ice",
"875",
"875",
"876-female",
@ -963,26 +963,26 @@
"929",
"930",
"930",
"931-blue",
"931-blue",
"931-green",
"931-green",
"931-white",
"931-white",
"931-yellow",
"931-yellow",
"931-blue-plumage-Disabled",
"931-blue-plumage-Disabled",
"931-green-plumage-Disabled",
"931-green-plumage-Disabled",
"931-white-plumage-Disabled",
"931-white-plumage-Disabled",
"931-yellow-plumage-Disabled",
"931-yellow-plumage-Disabled",
"932",
"932",
"933",
"933",
"934",
"934",
"935",
"935",
"936",
"936",
"937",
"937",
"935-Disabled",
"935-Disabled",
"936-Disabled",
"936-Disabled",
"937-Disabled",
"937-Disabled",
"938",
"938",
"939",
@ -1073,6 +1073,8 @@
"978-droopy",
"978-stretchy",
"978-stretchy",
"979-Disabled",
"979-Disabled",
"980",
"980",
"981",
@ -1131,10 +1133,10 @@
"1005b",
"1006b",
"1006b",
"1007b-apex",
"1007b-apex",
"1008b-ultimate",
"1008b-ultimate",
"1007b-apex-build-Disabled",
"1007b-apex-build-Disabled",
"1008b-ultimate-mode-Disabled",
"1008b-ultimate-mode-Disabled",
"115b-mega",
"115b-mega",
"127b-mega",
@ -1303,9 +1305,9 @@
"531b-mega",
"569b-gigantamax",
"569b-gigantamax",
"6b-mega",
"6b-mega",
"6b-mega-x",
"6b-mega-x",
"6b-mega-y",
"6b-mega-y",
"6058b",
"6058b",
@ -1943,8 +1945,8 @@
"873b",
"874b",
"874b",
"875b-no",
"875b-no",
"875b-no-ice",
"875b-no-ice",
"875b",
"875b",
"876b-female",
@ -2083,26 +2085,26 @@
"929b",
"930b",
"930b",
"931b-blue",
"931b-blue",
"931b-green",
"931b-green",
"931b-white",
"931b-white",
"931b-yellow",
"931b-yellow",
"931b-blue-plumage-Disabled",
"931b-blue-plumage-Disabled",
"931b-green-plumage-Disabled",
"931b-green-plumage-Disabled",
"931b-white-plumage-Disabled",
"931b-white-plumage-Disabled",
"931b-yellow-plumage-Disabled",
"931b-yellow-plumage-Disabled",
"932b",
"932b",
"933b",
"933b",
"934b",
"934b",
"935b",
"935b",
"936b",
"936b",
"937b",
"937b",
"935b-Disabled",
"935b-Disabled",
"936b-Disabled",
"936b-Disabled",
"937b-Disabled",
"937b-Disabled",
"938b",
"938b",
"939b",
@ -2251,10 +2253,10 @@
"1005sb",
"1006sb",
"1006sb",
"1007sb-apex",
"1007sb-apex",
"1008sb-ultimate",
"1008sb-ultimate",
"1007sb-apex-build-Disabled",
"1007sb-apex-build-Disabled",
"1008sb-ultimate-mode-Disabled",
"1008sb-ultimate-mode-Disabled",
"115sb-mega",
"115sb-mega",
"127sb-mega",
@ -3063,8 +3065,8 @@
"873sb",
"874sb",
"874sb",
"875sb-no",
"875sb-no",
"875sb-no-ice",
"875sb-no-ice",
"875sb",
"875sb",
"876sb-female",
@ -3203,26 +3205,26 @@
"929sb",
"930sb",
"930sb",
"931sb-blue",
"931sb-blue",
"931sb-green",
"931sb-green",
"931sb-white",
"931sb-white",
"931sb-yellow",
"931sb-yellow",
"931sb-blue-plumage-Disabled",
"931sb-blue-plumage-Disabled",
"931sb-green-plumage-Disabled",
"931sb-green-plumage-Disabled",
"931sb-white-plumage-Disabled",
"931sb-white-plumage-Disabled",
"931sb-yellow-plumage-Disabled",
"931sb-yellow-plumage-Disabled",
"932sb",
"932sb",
"933sb",
"933sb",
"934sb",
"934sb",
"935sb",
"935sb",
"936sb",
"936sb",
"937sb",
"937sb",
"935sb-Disabled",
"935sb-Disabled",
"936sb-Disabled",
"936sb-Disabled",
"937sb-Disabled",
"937sb-Disabled",
"938sb",
"938sb",
"939sb",
@ -3376,10 +3378,10 @@
"1005s",
"1006s",
"1006s",
"1007s-apex",
"1007s-apex",
"1008s-ultimate",
"1008s-ultimate",
"1007s-apex-build-Disabled",
"1007s-apex-build-Disabled",
"1008s-ultimate-mode-Disabled",
"1008s-ultimate-mode-Disabled",
"115s-mega",
"115s-mega",
"127s-mega",
@ -4188,8 +4190,8 @@
"873s",
"874s",
"874s",
"875s-no",
"875s-no",
"875s-no-ice",
"875s-no-ice",
"875s",
"875s",
"876s-female",
@ -4328,26 +4330,26 @@
"929s",
"930s",
"930s",
"931s-blue",
"931s-blue",
"931s-green",
"931s-green",
"931s-white",
"931s-white",
"931s-yellow",
"931s-yellow",
"931s-blue-plumage-Disabled",
"931s-blue-plumage-Disabled",
"931s-green-plumage-Disabled",
"931s-green-plumage-Disabled",
"931s-white-plumage-Disabled",
"931s-white-plumage-Disabled",
"931s-yellow-plumage-Disabled",
"931s-yellow-plumage-Disabled",
"932s",
"932s",
"933s",
"933s",
"934s",
"934s",
"935s",
"935s",
"936s",
"936s",
"937s",
"937s",
"935s-Disabled",
"935s-Disabled",
"936s-Disabled",
"936s-Disabled",
"937s-Disabled",
"937s-Disabled",
"938s",
"938s",
"939s",
@ -4438,6 +4440,8 @@
"978s-droopy",
"978s-stretchy",
"978s-stretchy",
"979s-Disabled",
"979s-Disabled",
"980s",
"980s",
"981s",
@ -4485,11 +4489,10 @@
"1000",
"1001",
"1004",
"1007-apex",
"1007-apex",
"1007-apex",
"1007-apex",
"1008-ultimate",
"1007-apex-build-Disabled",
"1007-apex-build-Disabled",
"1008-ultimate-mode-Disabled",
"1008-ultimate-mode-Disabled",
"127-mega",
"142-mega",
"150-mega",
@ -4596,8 +4599,6 @@
"728",
"729",
"730",
"730_2",
"730_2",
"747",
"748",
"753",
@ -4698,21 +4699,21 @@
"933_3",
"933_3",
"934",
"935",
"935_3",
"935_3",
"936_1",
"936_1",
"936_2",
"936_2",
"936_3",
"936_3",
"937_1",
"937_1",
"937_2",
"937_2",
"937_3",
"937_3",
"935-Disabled",
"935_3-Disabled",
"935_3-Disabled",
"936_1-Disabled",
"936_1-Disabled",
"936_2-Disabled",
"936_2-Disabled",
"936_3-Disabled",
"936_3-Disabled",
"937_1-Disabled",
"937_1-Disabled",
"937_2-Disabled",
"937_2-Disabled",
"937_3-Disabled",
"937_3-Disabled",
"94-mega_1",
"94-mega_1",
"94-mega_2",
@ -4755,11 +4756,10 @@
"1000b",
"1001b",
"1004b",
"1007b-apex",
"1007b-apex",
"1007b-apex",
"1007b-apex",
"1008b-ultimate",
"1007b-apex-build-Disabled",
"1007b-apex-build-Disabled",
"1008b-ultimate-mode-Disabled",
"1008b-ultimate-mode-Disabled",
"127b-mega",
"142b-mega",
"150b-mega",
@ -4920,24 +4920,24 @@
"932b",
"933b",
"934b",
"935_1b",
"935_1b",
"935_2b",
"935_2b",
"935_3b",
"935_3b",
"936_1b",
"936_1b",
"936_2b",
"936_2b",
"936_3b",
"936_3b",
"937_1b",
"937_1b",
"937_2b",
"937_2b",
"937_3b",
"937_3b",
"935_1b-Disabled",
"935_1b-Disabled",
"935_2b-Disabled",
"935_2b-Disabled",
"935_3b-Disabled",
"935_3b-Disabled",
"936_1b-Disabled",
"936_1b-Disabled",
"936_2b-Disabled",
"936_2b-Disabled",
"936_3b-Disabled",
"936_3b-Disabled",
"937_1b-Disabled",
"937_1b-Disabled",
"937_2b-Disabled",
"937_2b-Disabled",
"937_3b-Disabled",
"937_3b-Disabled",
"94b-mega",
"948b",
"949b",

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 257 B

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 556 B

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 241 B

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 B

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 245 B

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 B

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 B

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 228 B

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 250 B

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 293 B

After

Width:  |  Height:  |  Size: 270 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 290 B

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 B

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 695 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 245 B

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 653 B

After

Width:  |  Height:  |  Size: 596 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 B

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 390 B

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 275 B

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 354 B

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 273 B

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 275 B

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 347 B

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 218 B

After

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 374 B

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 258 B

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 B

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 B

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 308 B

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 B

After

Width:  |  Height:  |  Size: 247 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

After

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 306 B

After

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 261 B

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 400 B

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 396 B

After

Width:  |  Height:  |  Size: 349 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 349 B

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 303 B

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 295 B

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 B

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 402 B

After

Width:  |  Height:  |  Size: 259 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 511 B

After

Width:  |  Height:  |  Size: 316 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 263 B

After

Width:  |  Height:  |  Size: 289 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 287 B

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 322 B

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 B

After

Width:  |  Height:  |  Size: 251 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 B

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 243 B

After

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 303 B

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 856 B

After

Width:  |  Height:  |  Size: 785 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 404 B

After

Width:  |  Height:  |  Size: 350 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 283 B

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 329 B

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 245 B

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 392 B

After

Width:  |  Height:  |  Size: 320 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 B

After

Width:  |  Height:  |  Size: 262 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 823 B

After

Width:  |  Height:  |  Size: 752 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 358 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 298 B

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 349 B

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

After

Width:  |  Height:  |  Size: 262 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 B

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 B

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 335 B

After

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 293 B

After

Width:  |  Height:  |  Size: 275 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 303 B

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 308 B

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 289 B

After

Width:  |  Height:  |  Size: 275 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 378 B

After

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 233 B

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 349 B

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 308 B

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 298 B

After

Width:  |  Height:  |  Size: 291 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 269 B

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 907 B

After

Width:  |  Height:  |  Size: 834 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 308 B

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 282 B

After

Width:  |  Height:  |  Size: 269 B

Some files were not shown because too many files have changed in this diff Show More