-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a4fdf2
commit 0623a70
Showing
111 changed files
with
7,825 additions
and
912 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for Python | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 10 | ||
target-branch: "main" | ||
labels: | ||
- "dependencies" | ||
- "python" | ||
commit-message: | ||
prefix: "pip" | ||
include: "scope" | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
open-pull-requests-limit: 10 | ||
target-branch: "main" | ||
labels: | ||
- "dependencies" | ||
- "github-actions" | ||
commit-message: | ||
prefix: "github-actions" | ||
include: "scope" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Build and Test | ||
|
||
on: | ||
pull_request: | ||
branches: [ main, develop ] | ||
push: | ||
branches: [ main, develop ] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.12"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Check formatting with black | ||
run: black --check . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 24.10.0 | ||
hooks: | ||
- id: black | ||
language_version: python3.12 | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v5.0.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-added-large-files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# alembic.ini | ||
[alembic] | ||
# path to migration scripts | ||
script_location = migrations | ||
|
||
# database connection URL | ||
sqlalchemy.url = postgresql://rpg_user:secure_password@localhost:5432/rpg_game | ||
|
||
[loggers] | ||
keys = root, sqlalchemy | ||
|
||
[handlers] | ||
keys = console | ||
|
||
[formatters] | ||
keys = generic | ||
|
||
[logger_root] | ||
level = WARN | ||
handlers = console | ||
|
||
[logger_sqlalchemy] | ||
level = WARN | ||
handlers = | ||
qualname = sqlalchemy.engine | ||
|
||
[handler_console] | ||
class = StreamHandler | ||
args = (sys.stderr,) | ||
level = NOTSET | ||
formatter = generic | ||
|
||
[formatter_generic] | ||
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import asyncio | ||
import websockets | ||
import json | ||
|
||
|
||
async def connect_to_server(): | ||
uri = "ws://localhost:8765" | ||
async with websockets.connect(uri) as websocket: | ||
# Authenticate player | ||
await websocket.send( | ||
json.dumps( | ||
{"action": "authenticate", "username": "player", "password": "password"} | ||
) | ||
) | ||
response = await websocket.recv() | ||
print(response) | ||
|
||
# If class selection is required | ||
response_data = json.loads(response) | ||
if "classes" in response_data: | ||
print("Available classes:") | ||
for i, class_name in enumerate(response_data["classes"], 1): | ||
print(f"{i}. {class_name}") | ||
|
||
class_choice = int(input("Select your class: ")) - 1 | ||
selected_class = response_data["classes"][class_choice] | ||
|
||
# Send class selection to server | ||
await websocket.send( | ||
json.dumps({"action": "select_class", "class_name": selected_class}) | ||
) | ||
response = await websocket.recv() | ||
print(response) | ||
|
||
# Load game state | ||
await websocket.send( | ||
json.dumps({"action": "load_game_state", "player": {"name": "player"}}) | ||
) | ||
response = await websocket.recv() | ||
print(response) | ||
|
||
|
||
if __name__ == "__main__": | ||
asyncio.run(connect_to_server()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;140;20;20m[48;2;0;0;0m♦[38;2;140;20;20m[48;2;0;0;0m♦[38;2;140;20;20m[48;2;0;0;0m♦[38;2;140;20;20m[48;2;0;0;0m♦[38;2;140;20;20m[48;2;0;0;0m♦[38;2;140;20;20m[48;2;0;0;0m♦[38;2;140;20;20m[48;2;0;0;0m♦[38;2;140;20;20m[48;2;0;0;0m♦[38;2;140;20;20m[48;2;0;0;0m♦[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;180;180;220m[48;2;0;0;0m◆[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;180;180;220m[48;2;0;0;0m◆[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m║[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;80;80;100m[48;2;0;0;0m█[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m | ||
[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[38;2;0;0;0m[48;2;0;0;0m▀[0m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
|
||
╔ | ||
║ ▄▄███████████▄ | ||
║ ▄█▀▓▒░░░░░░▒▓▀█▄ | ||
║ ██░░╳┌┐ └┘░█ | ||
║ ██╱░─┼┼─╲▁ ▂╱─┤██ | ||
║ █▒█│◆│ ▃ │█ | ||
║ █▓█╲┴┴─┘ ▅ └─╱█▓ | ||
║ ██▓██╳╲ ▆ █ | ||
║ ████╱◥──────◤╲███ | ||
║ ██╱█▒█╳◣──────◢╱█╲ | ||
║ ██╌█─◆│─◤──────◥─│◆ | ||
║ ██╌│───◢───────◣─── | ||
║ ██╳│────────────── |
Oops, something went wrong.