diff --git a/cbzProject/.gitignore b/.gitignore similarity index 100% rename from cbzProject/.gitignore rename to .gitignore diff --git a/cbzProject/CHANGELOG.md b/CHANGELOG.md similarity index 100% rename from cbzProject/CHANGELOG.md rename to CHANGELOG.md diff --git a/cbzProject/LICENSE b/LICENSE similarity index 100% rename from cbzProject/LICENSE rename to LICENSE diff --git a/cbzProject/README.md b/README.md similarity index 100% rename from cbzProject/README.md rename to README.md diff --git a/cbzProject/cbz/__init__.py b/cbz/__init__.py similarity index 100% rename from cbzProject/cbz/__init__.py rename to cbz/__init__.py diff --git a/cbzProject/cbz/comic.py b/cbz/comic.py similarity index 100% rename from cbzProject/cbz/comic.py rename to cbz/comic.py diff --git a/cbzProject/cbz/constants.py b/cbz/constants.py similarity index 100% rename from cbzProject/cbz/constants.py rename to cbz/constants.py diff --git a/cbzProject/cbz/page.py b/cbz/page.py similarity index 100% rename from cbzProject/cbz/page.py rename to cbz/page.py diff --git a/cbzProject/cbz/utils.py b/cbz/utils.py similarity index 100% rename from cbzProject/cbz/utils.py rename to cbz/utils.py diff --git a/cbzProject/docs/schema/v1.0/ComicInfo.xsd b/docs/schema/v1.0/ComicInfo.xsd similarity index 100% rename from cbzProject/docs/schema/v1.0/ComicInfo.xsd rename to docs/schema/v1.0/ComicInfo.xsd diff --git a/cbzProject/docs/schema/v2.0/ComicInfo.xsd b/docs/schema/v2.0/ComicInfo.xsd similarity index 100% rename from cbzProject/docs/schema/v2.0/ComicInfo.xsd rename to docs/schema/v2.0/ComicInfo.xsd diff --git a/cbzProject/docs/schema/v2.1/ComicInfo.xsd b/docs/schema/v2.1/ComicInfo.xsd similarity index 100% rename from cbzProject/docs/schema/v2.1/ComicInfo.xsd rename to docs/schema/v2.1/ComicInfo.xsd diff --git a/cbzProject/example/example.py b/example/example.py similarity index 100% rename from cbzProject/example/example.py rename to example/example.py diff --git a/cbzProject/example/images/page-000.jpg b/example/images/page-000.jpg similarity index 100% rename from cbzProject/example/images/page-000.jpg rename to example/images/page-000.jpg diff --git a/cbzProject/example/images/page-001.jpg b/example/images/page-001.jpg similarity index 100% rename from cbzProject/example/images/page-001.jpg rename to example/images/page-001.jpg diff --git a/cbzProject/example/images/page-002.jpg b/example/images/page-002.jpg similarity index 100% rename from cbzProject/example/images/page-002.jpg rename to example/images/page-002.jpg diff --git a/cbzProject/example/images/page-003.jpg b/example/images/page-003.jpg similarity index 100% rename from cbzProject/example/images/page-003.jpg rename to example/images/page-003.jpg diff --git a/cbzProject/example/images/page-004.jpg b/example/images/page-004.jpg similarity index 100% rename from cbzProject/example/images/page-004.jpg rename to example/images/page-004.jpg diff --git a/cbzProject/example/images/page-005.jpg b/example/images/page-005.jpg similarity index 100% rename from cbzProject/example/images/page-005.jpg rename to example/images/page-005.jpg diff --git a/cbzProject/example/images/page-006.jpg b/example/images/page-006.jpg similarity index 100% rename from cbzProject/example/images/page-006.jpg rename to example/images/page-006.jpg diff --git a/cbzProject/example/images/page-007.jpg b/example/images/page-007.jpg similarity index 100% rename from cbzProject/example/images/page-007.jpg rename to example/images/page-007.jpg diff --git a/cbzProject/example/images/page-008.jpg b/example/images/page-008.jpg similarity index 100% rename from cbzProject/example/images/page-008.jpg rename to example/images/page-008.jpg diff --git a/cbzProject/example/images/page-009.jpg b/example/images/page-009.jpg similarity index 100% rename from cbzProject/example/images/page-009.jpg rename to example/images/page-009.jpg diff --git a/cbzProject/example/images/page-010.jpg b/example/images/page-010.jpg similarity index 100% rename from cbzProject/example/images/page-010.jpg rename to example/images/page-010.jpg diff --git a/hidive/__init__.py b/hidive/__init__.py deleted file mode 100644 index b053191..0000000 --- a/hidive/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -from .client import * -from .constants import * -from .utils import * - -__version__ = '2.2.7' diff --git a/hidive/client.py b/hidive/client.py deleted file mode 100644 index 2c3a498..0000000 --- a/hidive/client.py +++ /dev/null @@ -1,319 +0,0 @@ -import time -from urllib.parse import urlencode -from uuid import UUID - -import requests -from requests import Response - -from hidive.constants import View, Filter -from hidive.utils import jwt_expired, b64encode - - -class Client: - USER_AGENT = 'ExoDoris/2.2.7 (Linux;Android 10) AndroidXMedia3/1.0.2' - - def __init__(self, access_token: str = None, refresh_token: str = None): - self.api = 'https://dce-frontoffice.imggaming.com/api' - self.guide = 'https://guide.imggaming.com' - self.algolia = 'https://h99xldr8mj-dsn.algolia.net' - self.user = { - 'authorisationToken': access_token or '', - 'refreshToken': refresh_token or '' - } - - def __request(self, **kwargs) -> Response: - headers = { - 'Accept': '*/*', - 'User-Agent': 'okhttp/4.9.2', - **kwargs.get('headers', {}) - } - - url: str = kwargs.get('url') - params = kwargs.get('params', {}) - - if url.startswith(self.api) or url.startswith(self.guide): - headers['app'] = 'dice' - headers['realm'] = 'dce.hidive' - headers['x-api-key'] = '4dc1e8df-5869-41ea-95c2-6f04c67459ed' - headers['x-app-var'] = '2.2.7' - - if kwargs.get('auth', True): - headers['Authorization'] = self.__token() - elif url.startswith(self.algolia): - params['x-algolia-agent'] = 'Algolia for JavaScript (3.35.1); React Native' - params['x-algolia-application-id'] = 'H99XLDR8MJ' - params['x-algolia-api-key'] = 'e55ccb3db0399eabe2bfc37a0314c346' - - r = requests.request( - method=kwargs.get('method', 'GET'), - url=url, - params=params, - json=kwargs.get('json'), - data=kwargs.get('data'), - headers=headers - ) - r.raise_for_status() - return r - - def __token(self) -> str: - access_token = self.user.get('authorisationToken') - if not access_token: - self.guest() - elif jwt_expired(access_token): - self.refresh() - return 'Bearer %s' % self.user['authorisationToken'] - - # @package: login - def guest(self) -> dict: - content = self.__request(method='POST', url=f'{self.api}/v2/login/guest/checkin', auth=False).json() - self.user.update(content) - return content - - def refresh(self) -> dict: - refresh_token = self.user['refreshToken'] - if jwt_expired(refresh_token): - raise ValueError('Refresh token expired') - - content = self.__request( - method='POST', - url=f'{self.api}/v2/token/refresh', - json={'refreshToken': refresh_token} - ).json() - self.user.update(content) - return content - - def login(self, email: str, password: str) -> dict: - content = self.__request( - method='POST', - url=f'{self.api}/v2/login', - json={'id': email, 'secret': password} - ).json() - self.user.update(content) - return content - - def reset(self, email: str) -> dict: - return self.__request( - method='POST', - url=f'{self.api}/v2/reset-password/create', - json={'id': email, 'provider': 'ID'}, - auth=False - ).json() - - def create(self, email: str, password: str) -> dict: - content = self.__request( - method='POST', - url=f'{self.api}/v2/user', - json={ - 'email': email, - 'secret': password, - 'consentAnswers': [{ - 'answer': f['required'], - 'promptField': f['fieldName'] - } for f in self.consent()['fields']] - } - ).json() - self.user.update(content) - return content - - # @package: realm - def providers(self) -> list[dict]: - return self.__request( - method='GET', - url=f'{self.api}/v2/realm/authentication-providers' - ).json()['authenticationProviders'] - - def settings(self) -> dict: - return self.__request(method='GET', url=f'{self.api}/v2/realm-settings/realm/dce.hidive').json() - - def label(self) -> dict: - return self.__request(method='GET', url=f'{self.api}/v2/label/dce.hidive').json() - - def licence(self) -> dict: - return self.__request(method='GET', url=f'{self.api}/v2/licence').json() - - def consent(self) -> dict: - return self.__request(method='GET', url=f'{self.api}/v2/consent-prompt').json() - - # @package: user - def preferences(self, auto_play: bool = None) -> dict: - method = 'GET' if auto_play is None else 'PUT' - data = None if auto_play is None else {'autoAdvance': auto_play} - return self.__request(method=method, url=f'{self.api}/v2/user/preferences', json=data).json() - - def profile(self) -> dict: - return self.__request(method='GET', url=f'{self.api}/v2/user/profile').json() - - def notification(self, limit: int = 1) -> dict: - return self.__request( - method='GET', - url=f'{self.api}/v2/promo-notification', - params={'maxNotifications': limit} - ).json() - - def watch_create(self, name: str) -> dict: - return self.__request( - method='POST', - url=f'{self.api}/v3/user/watchlist', - json={'name': name} - ).json() - - def watch_delete(self, watch_id: int) -> None: - href = b64encode('480211|dce.hidive') - self.__request(method='DELETE', url=f'{self.api}/v3/user/watchlist/{href}/{watch_id}') - - def watch(self, limit: int = 25) -> dict: - return self.__request(method='GET', url=f'{self.api}/v3/user/watchlist', params={'rpp': limit}).json() - - def watch_add(self, watch_id: int, content_type: str, content_id: int) -> dict: - return self.__request( - method='POST', - url=f'{self.api}/v4/user/watchlist/{watch_id}/content', - json={'content': [{'contentType': content_type, 'id': content_id}]} - ).json() - - def watch_remove(self, watch_id: int, content_type: str, content_id: int) -> None: - self.__request( - method='DELETE', - url=f'{self.api}/v4/user/watchlist/{watch_id}/content/{content_type}/{content_id}' - ) - - def watch_details(self, watch_id: int, limit: int = 25) -> dict: - return self.__request( - method='GET', - url=f'{self.api}/v4/user/watchlist/{watch_id}', - params={'rpp': limit} - ).json() - - # @package: content - def menu(self) -> list[dict]: - return self.__request(method='GET', url=f'{self.api}/v2/menu-items').json() - - def event(self, limit: int = 20) -> dict: - return self.__request(method='GET', url=f'{self.api}/v2/event/live', params={'rpp': limit}).json() - - def content(self, title: str = 'home') -> dict: - # @Default: home | browse - return self.__request( - method='GET', - url=f'{self.api}/v4/content/{title}', - params={ - 'bpp': 10, - 'rpp': 12, - 'displaySectionLinkBuckets': 'SHOW', - 'displayEpgBuckets': 'SHOW', - 'displayEmptyBucketShortcuts': 'SHOW', - 'displayGeoblocked': 'SHOW', - 'bspp': 20 - } - ).json() - - def popular(self) -> dict: - return self.__request(method='GET', url=f'{self.api}/v2/popular').json() - - def view(self, view: View, view_id: int) -> dict: - return self.__request( - method='GET', - url=f'{self.api}/v1/view', - params={'type': view.value, 'id': view_id} - ).json() - - def series(self, series_id: int, limit: int = 1) -> dict: - return self.__request(method='GET', url=f'{self.api}/v4/series/{series_id}', params={'rpp': limit}).json() - - def query( - self, - query: str, - facets: list = None, - facet_filters: list = None, - page: int = 0, - filters: Filter = None - ) -> dict: - params = { - 'facets': facets or [], - 'query': query, - 'facetFilters': facet_filters or [] - } - if filters: - params['filters'] = f'type:{filters.value}' - else: - params['page'] = page - - return self.__request( - method='POST', - url=f'{self.algolia}/1/indexes/prod-dce.hidive-livestreaming-events/query', - json={'params': urlencode(params)} - ).json() - - # @package: vod - def live(self, video_id: int) -> dict: - return self.__request(method='GET', url=f'{self.api}/v4/vods/live/{video_id}').json() - - def stream(self, video_id: int) -> dict: - return self.__request(method='GET', url=f'{self.api}/v3/stream/vod/{video_id}').json() - - def details(self, video_id: int, playback: bool = True) -> dict: - return self.__request( - method='GET', - url=f'{self.api}/v2/vod/{video_id}', - params={'includePlaybackDetails': 'URL'} if playback else None, - headers={ - 'cm-app-bundle': 'com.hidive.android', - 'cm-app-name': 'HIDIVE', - 'cm-app-storeid': 'com.hidive.android', - 'cm-app-version': '2.2.7', - 'cm-cst-ifa': '', - 'cm-cst-lat': '0', - 'cm-cst-tcf': '', - 'cm-cst-usp': '', - 'cm-dvc-dnt': '0', - 'cm-dvc-h': '720', - 'cm-dvc-lang': 'en_US', - 'cm-dvc-make': 'Xiaomi', - 'cm-dvc-model': 'Mi A2', - 'cm-dvc-os': '2', - 'cm-dvc-osv': '10', - 'cm-dvc-type': '4', - 'cm-dvc-w': '360' - } - ).json() - - def adjacent(self, video_id: int, limit: int = 20) -> dict: - return self.__request( - method='GET', - url=f'{self.api}/v4/vod/{video_id}/adjacent', - params={'size': limit} - ).json() - - # @package: player - def progress(self, video_id: int, cid: str, progress: int) -> dict: - return self.__request( - method='PUT', - url=f'{self.guide}/prod', - params={ - 'action': 2, - 'cid': cid, - 'nature': 'last', - 'progress': progress, - 'startedAt': round(time.time()), - 'video': video_id - } - ).json() - - def playback(self, url: str) -> dict: - return self.__request(method='GET', url=url, auth=False).json() - - def drm(self, url: str, token: str, key_ids: list[UUID], challenge: bytes) -> bytes: - # @Info: widevine DRM - return self.__request( - method='POST', - url=url, - data=challenge, - headers={ - 'Authorization': f'Bearer {token}', - 'User-Agent': 'Dice Shield/2.2.7 (Linux;Android 10) AndroidXMedia3/1.0.2', - 'X-DRM-INFO': b64encode({ - 'system': 'com.widevine.alpha', - 'key_ids': [str(k) for k in key_ids] - }) - } - ).content diff --git a/hidive/constants.py b/hidive/constants.py deleted file mode 100644 index 7603e4a..0000000 --- a/hidive/constants.py +++ /dev/null @@ -1,20 +0,0 @@ -from enum import Enum - - -class Filter(Enum): - SERIES = 'VOD_SERIES' - VIDEO = 'VOD_VIDEO' - EVENT = 'LIVE_EVENT' - PLAYLIST = 'VOD_PLAYLIST' - - -class Format(Enum): - VTT = 'vtt' - SRT = 'srt' - SCC = 'scc' - - -class View(Enum): - SEASON = 'season' - PLAYLIST = 'playlist' - VOD = 'VOD' diff --git a/hidive/utils.py b/hidive/utils.py deleted file mode 100644 index f92356c..0000000 --- a/hidive/utils.py +++ /dev/null @@ -1,31 +0,0 @@ -import base64 -import json -import re -import time -from typing import Union - - -def b64decode(value: str) -> bytes: - return base64.b64decode(value + '=' * (4 - len(value) % 4)) - - -def b64encode(value: Union[str, bytes, dict, list]) -> str: - if isinstance(value, (dict, list)): - value = json.dumps(value, separators=(',', ':')) - if isinstance(value, str): - value = value.encode('utf-8') - return base64.b64encode(value).decode('utf-8') - - -def jwt_expired(value: str) -> bool: - header, payload, signature = value.split('.', 2) - payload = json.loads(b64decode(payload)) - return payload['exp'] < round(time.time()) - - -def parse_pssh(value: str) -> str: - lines = value.splitlines() - for i, line in enumerate(lines): - if 'urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed' in line: - return re.search(r'(.+)', lines[i + 1]).group(1) - raise ValueError('Could not find pssh') diff --git a/main.py b/main.py deleted file mode 100644 index 50a652a..0000000 --- a/main.py +++ /dev/null @@ -1,88 +0,0 @@ -import requests -from pathlib import Path - -from hidive.client import Client -from hidive.constants import Format, View -from hidive.utils import parse_pssh, b64encode - -from pywidevine.cdm import Cdm -from pywidevine.device import Device -from pywidevine.pssh import PSSH - -DEVICE = Path() / 'DEVICE.wvd' - -if __name__ == '__main__': - client = Client() - client.login(email='EMAIL', password='PASSWORD') - - # @Info: series - series = client.series(series_id=1049) - print('[+] Series: %s' % series['title']) - print('[+] Cover: %s' % series['coverUrl']) - print('[+] Poster: %s' % series['posterUrl']) - - # @Info: seasons - for view in series['seasons']: - print('[+] Season: %s' % view['seasonNumber']) - season = client.view(view=View.SEASON, view_id=view['id']) - - # @Info: episodes - bucket = next(e for e in season['elements'] if e['$type'] == 'bucket') - for episode in bucket['attributes']['items']: - video_id = episode['id'] - print('[+] Title: %s' % episode['title']) - print('[+] Description: %s' % episode['description']) - - details = client.details(video_id=video_id, playback=True) - print('[+] Thumbnail: %s' % details['thumbnailUrl']) - - # @Info: subtitles - playback = client.playback(url=details['playerUrlCallback']) - dash = playback['dash'][0] - for subtitle in dash['subtitles']: - if subtitle['format'] == Format.VTT: - print('[+] Subtitle (%s): %s' % (subtitle['language'], subtitle['url'])) - - # @Info: widevine DRM - manifest_url = dash['url'] - print(f'[+] Manifest: {manifest_url}') - assert 'WIDEVINE' in dash['drm']['keySystems'], 'Unsupported DRM system' - - manifest = requests.request(method='GET', url=manifest_url, headers={'User-Agent': Client.USER_AGENT}).text - pssh = PSSH(parse_pssh(manifest)) - print(f'[+] PSSH: {pssh}') - - device = Device.load(DEVICE) - cdm = Cdm.from_device(device) - session_id = cdm.open() - - challenge = cdm.get_license_challenge(session_id, pssh) - print('[+] Challenge: %s' % b64encode(challenge)) - - licence = client.drm( - url=dash['drm']['url'], - token=dash['drm']['jwtToken'], - key_ids=pssh.key_ids, - challenge=challenge - ) - print(f'[+] Licence: {b64encode(licence)}') - - cdm.parse_license(session_id, licence) - keys = cdm.get_keys(session_id, type_='CONTENT') - if not keys: - raise ValueError('Could not find key') - - keys = [f'{k.kid.hex}:{k.key.hex()}' for k in keys] - cdm.close(session_id) - - print('[+] Keys: %s' % '|'.join(keys)) - - # @Info: download - print('[+] Prompt: %s' % ' '.join([ - 'N_m3u8DL-RE', - f'"{manifest_url}"', - *[f'--key "{k}"' for k in keys], - '--header', - f'"User-Agent: {Client.USER_AGENT}"' - ])) - exit(0) diff --git a/profiles/.idea/.gitignore b/profiles/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/profiles/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/profiles/.idea/inspectionProfiles/profiles_settings.xml b/profiles/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2d..0000000 --- a/profiles/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/profiles/.idea/misc.xml b/profiles/.idea/misc.xml deleted file mode 100644 index 9de2865..0000000 --- a/profiles/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/profiles/.idea/modules.xml b/profiles/.idea/modules.xml deleted file mode 100644 index 04c6e90..0000000 --- a/profiles/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/profiles/.idea/profiles.iml b/profiles/.idea/profiles.iml deleted file mode 100644 index d0876a7..0000000 --- a/profiles/.idea/profiles.iml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/profiles/Avatar.zip b/profiles/Avatar.zip deleted file mode 100644 index 59079ca..0000000 Binary files a/profiles/Avatar.zip and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_annie-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_annie-avatar.png deleted file mode 100644 index 1eabff6..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_annie-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_armin-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_armin-avatar.png deleted file mode 100644 index 685fd1f..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_armin-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_conny-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_conny-avatar.png deleted file mode 100644 index e15f8a3..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_conny-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_eren-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_eren-avatar.png deleted file mode 100644 index 81394d8..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_eren-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_hange-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_hange-avatar.png deleted file mode 100644 index e0bd362..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_hange-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_jean-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_jean-avatar.png deleted file mode 100644 index ac99df9..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_jean-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_levi-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_levi-avatar.png deleted file mode 100644 index d04290c..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_levi-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_mikasa-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_mikasa-avatar.png deleted file mode 100644 index 61e50fd..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_mikasa-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_reiner-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_reiner-avatar.png deleted file mode 100644 index c7caca8..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_reiner-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Attack on Titan/aot_fc_sasha-avatar.png b/profiles/Avatar/Attack on Titan/aot_fc_sasha-avatar.png deleted file mode 100644 index d4fb015..0000000 Binary files a/profiles/Avatar/Attack on Titan/aot_fc_sasha-avatar.png and /dev/null differ diff --git a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-avatar.png b/profiles/Avatar/BOCCHI THE ROCK!/bocchi-avatar.png deleted file mode 100644 index da13b49..0000000 Binary files a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-avatar.png and /dev/null differ diff --git a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-iita-kv-avatar.png b/profiles/Avatar/BOCCHI THE ROCK!/bocchi-iita-kv-avatar.png deleted file mode 100644 index 18d11bf..0000000 Binary files a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-iita-kv-avatar.png and /dev/null differ diff --git a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-kita-avatar.png b/profiles/Avatar/BOCCHI THE ROCK!/bocchi-kita-avatar.png deleted file mode 100644 index c9d3cac..0000000 Binary files a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-kita-avatar.png and /dev/null differ diff --git a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-kv-avatar.png b/profiles/Avatar/BOCCHI THE ROCK!/bocchi-kv-avatar.png deleted file mode 100644 index 6681e4f..0000000 Binary files a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-kv-avatar.png and /dev/null differ diff --git a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-nijika-kv-avatar.png b/profiles/Avatar/BOCCHI THE ROCK!/bocchi-nijika-kv-avatar.png deleted file mode 100644 index f6d65f2..0000000 Binary files a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-nijika-kv-avatar.png and /dev/null differ diff --git a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-ryo-avatar.png b/profiles/Avatar/BOCCHI THE ROCK!/bocchi-ryo-avatar.png deleted file mode 100644 index 164d86f..0000000 Binary files a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-ryo-avatar.png and /dev/null differ diff --git a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-ryo-kv-avatar.png b/profiles/Avatar/BOCCHI THE ROCK!/bocchi-ryo-kv-avatar.png deleted file mode 100644 index 7d25b0f..0000000 Binary files a/profiles/Avatar/BOCCHI THE ROCK!/bocchi-ryo-kv-avatar.png and /dev/null differ diff --git a/profiles/Avatar/BOCCHI THE ROCK!/bochhi-nijika-avatar.png b/profiles/Avatar/BOCCHI THE ROCK!/bochhi-nijika-avatar.png deleted file mode 100644 index a0ec3d6..0000000 Binary files a/profiles/Avatar/BOCCHI THE ROCK!/bochhi-nijika-avatar.png and /dev/null differ diff --git a/profiles/Avatar/Bananya/21-bananya-bananya.png b/profiles/Avatar/Bananya/21-bananya-bananya.png deleted file mode 100644 index bf87889..0000000 Binary files a/profiles/Avatar/Bananya/21-bananya-bananya.png and /dev/null differ diff --git a/profiles/Avatar/Bananya/22-bananya-droopy-eared.png b/profiles/Avatar/Bananya/22-bananya-droopy-eared.png deleted file mode 100644 index b853d06..0000000 Binary files a/profiles/Avatar/Bananya/22-bananya-droopy-eared.png and /dev/null differ diff --git a/profiles/Avatar/Bananya/23-bananya-pirate.png b/profiles/Avatar/Bananya/23-bananya-pirate.png deleted file mode 100644 index 7a3c1e2..0000000 Binary files a/profiles/Avatar/Bananya/23-bananya-pirate.png and /dev/null differ diff --git a/profiles/Avatar/Bananya/24-bananya-night-rainbow.png b/profiles/Avatar/Bananya/24-bananya-night-rainbow.png deleted file mode 100644 index be4a68f..0000000 Binary files a/profiles/Avatar/Bananya/24-bananya-night-rainbow.png and /dev/null differ diff --git a/profiles/Avatar/Bananya/25-bananya-emo.png b/profiles/Avatar/Bananya/25-bananya-emo.png deleted file mode 100644 index 04b685b..0000000 Binary files a/profiles/Avatar/Bananya/25-bananya-emo.png and /dev/null differ diff --git a/profiles/Avatar/Black Clover/1056-black-clover-asta.png b/profiles/Avatar/Black Clover/1056-black-clover-asta.png deleted file mode 100644 index e470a28..0000000 Binary files a/profiles/Avatar/Black Clover/1056-black-clover-asta.png and /dev/null differ diff --git a/profiles/Avatar/Black Clover/1057-black-clover-yuno.png b/profiles/Avatar/Black Clover/1057-black-clover-yuno.png deleted file mode 100644 index f86e621..0000000 Binary files a/profiles/Avatar/Black Clover/1057-black-clover-yuno.png and /dev/null differ diff --git a/profiles/Avatar/Black Clover/1058-black-clover-noelle.png b/profiles/Avatar/Black Clover/1058-black-clover-noelle.png deleted file mode 100644 index c02d1ef..0000000 Binary files a/profiles/Avatar/Black Clover/1058-black-clover-noelle.png and /dev/null differ diff --git a/profiles/Avatar/Black Clover/1059-black-clover-yami.png b/profiles/Avatar/Black Clover/1059-black-clover-yami.png deleted file mode 100644 index 08dac2e..0000000 Binary files a/profiles/Avatar/Black Clover/1059-black-clover-yami.png and /dev/null differ diff --git a/profiles/Avatar/Black Clover/1060-black-clover-nero.png b/profiles/Avatar/Black Clover/1060-black-clover-nero.png deleted file mode 100644 index 4b70284..0000000 Binary files a/profiles/Avatar/Black Clover/1060-black-clover-nero.png and /dev/null differ diff --git a/profiles/Avatar/Chainsaw Man/chainsawman-aki.png b/profiles/Avatar/Chainsaw Man/chainsawman-aki.png deleted file mode 100644 index f3a0c04..0000000 Binary files a/profiles/Avatar/Chainsaw Man/chainsawman-aki.png and /dev/null differ diff --git a/profiles/Avatar/Chainsaw Man/chainsawman-chainsawman.png b/profiles/Avatar/Chainsaw Man/chainsawman-chainsawman.png deleted file mode 100644 index 537c4db..0000000 Binary files a/profiles/Avatar/Chainsaw Man/chainsawman-chainsawman.png and /dev/null differ diff --git a/profiles/Avatar/Chainsaw Man/chainsawman-denji.png b/profiles/Avatar/Chainsaw Man/chainsawman-denji.png deleted file mode 100644 index be78698..0000000 Binary files a/profiles/Avatar/Chainsaw Man/chainsawman-denji.png and /dev/null differ diff --git a/profiles/Avatar/Chainsaw Man/chainsawman-himeno.png b/profiles/Avatar/Chainsaw Man/chainsawman-himeno.png deleted file mode 100644 index 0dc3246..0000000 Binary files a/profiles/Avatar/Chainsaw Man/chainsawman-himeno.png and /dev/null differ diff --git a/profiles/Avatar/Chainsaw Man/chainsawman-kishibe.png b/profiles/Avatar/Chainsaw Man/chainsawman-kishibe.png deleted file mode 100644 index 5ec9631..0000000 Binary files a/profiles/Avatar/Chainsaw Man/chainsawman-kishibe.png and /dev/null differ diff --git a/profiles/Avatar/Chainsaw Man/chainsawman-kobeni.png b/profiles/Avatar/Chainsaw Man/chainsawman-kobeni.png deleted file mode 100644 index 5f4080f..0000000 Binary files a/profiles/Avatar/Chainsaw Man/chainsawman-kobeni.png and /dev/null differ diff --git a/profiles/Avatar/Chainsaw Man/chainsawman-makima.png b/profiles/Avatar/Chainsaw Man/chainsawman-makima.png deleted file mode 100644 index 97f2d82..0000000 Binary files a/profiles/Avatar/Chainsaw Man/chainsawman-makima.png and /dev/null differ diff --git a/profiles/Avatar/Chainsaw Man/chainsawman-pochita.png b/profiles/Avatar/Chainsaw Man/chainsawman-pochita.png deleted file mode 100644 index 882b33f..0000000 Binary files a/profiles/Avatar/Chainsaw Man/chainsawman-pochita.png and /dev/null differ diff --git a/profiles/Avatar/Chainsaw Man/chainsawman-power.png b/profiles/Avatar/Chainsaw Man/chainsawman-power.png deleted file mode 100644 index 5c2bfda..0000000 Binary files a/profiles/Avatar/Chainsaw Man/chainsawman-power.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0001-cr-white-orange.png b/profiles/Avatar/Crunchyroll/0001-cr-white-orange.png deleted file mode 100644 index 8d8ae3c..0000000 Binary files a/profiles/Avatar/Crunchyroll/0001-cr-white-orange.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0002-cr-orange-white.png b/profiles/Avatar/Crunchyroll/0002-cr-orange-white.png deleted file mode 100644 index 450982d..0000000 Binary files a/profiles/Avatar/Crunchyroll/0002-cr-orange-white.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0003-cr-white-gradient1.png b/profiles/Avatar/Crunchyroll/0003-cr-white-gradient1.png deleted file mode 100644 index ea33ec2..0000000 Binary files a/profiles/Avatar/Crunchyroll/0003-cr-white-gradient1.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0004-cr-white-gradient2.png b/profiles/Avatar/Crunchyroll/0004-cr-white-gradient2.png deleted file mode 100644 index 473fb43..0000000 Binary files a/profiles/Avatar/Crunchyroll/0004-cr-white-gradient2.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0005-cr-white-gradient3.png b/profiles/Avatar/Crunchyroll/0005-cr-white-gradient3.png deleted file mode 100644 index 4874e70..0000000 Binary files a/profiles/Avatar/Crunchyroll/0005-cr-white-gradient3.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0006-cr-white-black.png b/profiles/Avatar/Crunchyroll/0006-cr-white-black.png deleted file mode 100644 index 7a2902e..0000000 Binary files a/profiles/Avatar/Crunchyroll/0006-cr-white-black.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0007-cr-orange-blue.png b/profiles/Avatar/Crunchyroll/0007-cr-orange-blue.png deleted file mode 100644 index ceb5c9a..0000000 Binary files a/profiles/Avatar/Crunchyroll/0007-cr-orange-blue.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0008-cr-orange-black.png b/profiles/Avatar/Crunchyroll/0008-cr-orange-black.png deleted file mode 100644 index bec30f2..0000000 Binary files a/profiles/Avatar/Crunchyroll/0008-cr-orange-black.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0009-cr-rainbow-white.png b/profiles/Avatar/Crunchyroll/0009-cr-rainbow-white.png deleted file mode 100644 index 0db94a6..0000000 Binary files a/profiles/Avatar/Crunchyroll/0009-cr-rainbow-white.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/001-cr-hime-happy.png b/profiles/Avatar/Crunchyroll/001-cr-hime-happy.png deleted file mode 100644 index e084f83..0000000 Binary files a/profiles/Avatar/Crunchyroll/001-cr-hime-happy.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/0010-cr-white-rainbow.png b/profiles/Avatar/Crunchyroll/0010-cr-white-rainbow.png deleted file mode 100644 index 499f06d..0000000 Binary files a/profiles/Avatar/Crunchyroll/0010-cr-white-rainbow.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/002-cr-hime-annoyed.png b/profiles/Avatar/Crunchyroll/002-cr-hime-annoyed.png deleted file mode 100644 index 88f58ea..0000000 Binary files a/profiles/Avatar/Crunchyroll/002-cr-hime-annoyed.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/003-cr-hime-excited.png b/profiles/Avatar/Crunchyroll/003-cr-hime-excited.png deleted file mode 100644 index 6d37469..0000000 Binary files a/profiles/Avatar/Crunchyroll/003-cr-hime-excited.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/004-cr-hime-mischievous.png b/profiles/Avatar/Crunchyroll/004-cr-hime-mischievous.png deleted file mode 100644 index 90d08ee..0000000 Binary files a/profiles/Avatar/Crunchyroll/004-cr-hime-mischievous.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/005-cr-hime-sleepy.png b/profiles/Avatar/Crunchyroll/005-cr-hime-sleepy.png deleted file mode 100644 index b0b5f36..0000000 Binary files a/profiles/Avatar/Crunchyroll/005-cr-hime-sleepy.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/006-cr-hime-sad.png b/profiles/Avatar/Crunchyroll/006-cr-hime-sad.png deleted file mode 100644 index 5b6fd28..0000000 Binary files a/profiles/Avatar/Crunchyroll/006-cr-hime-sad.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/007-cr-hime-relaxed.png b/profiles/Avatar/Crunchyroll/007-cr-hime-relaxed.png deleted file mode 100644 index f06a663..0000000 Binary files a/profiles/Avatar/Crunchyroll/007-cr-hime-relaxed.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/008-cr-hime-angry.png b/profiles/Avatar/Crunchyroll/008-cr-hime-angry.png deleted file mode 100644 index 94e65db..0000000 Binary files a/profiles/Avatar/Crunchyroll/008-cr-hime-angry.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/009-cr-hime-winking.png b/profiles/Avatar/Crunchyroll/009-cr-hime-winking.png deleted file mode 100644 index ae44719..0000000 Binary files a/profiles/Avatar/Crunchyroll/009-cr-hime-winking.png and /dev/null differ diff --git a/profiles/Avatar/Crunchyroll/010-cr-hime-accomplished.png b/profiles/Avatar/Crunchyroll/010-cr-hime-accomplished.png deleted file mode 100644 index f902f6a..0000000 Binary files a/profiles/Avatar/Crunchyroll/010-cr-hime-accomplished.png and /dev/null differ diff --git a/profiles/Avatar/Dr. STONE/1046-dr-stone-senku.png b/profiles/Avatar/Dr. STONE/1046-dr-stone-senku.png deleted file mode 100644 index 1834789..0000000 Binary files a/profiles/Avatar/Dr. STONE/1046-dr-stone-senku.png and /dev/null differ diff --git a/profiles/Avatar/Dr. STONE/1047-dr-stone-suika.png b/profiles/Avatar/Dr. STONE/1047-dr-stone-suika.png deleted file mode 100644 index d69d8e5..0000000 Binary files a/profiles/Avatar/Dr. STONE/1047-dr-stone-suika.png and /dev/null differ diff --git a/profiles/Avatar/Dr. STONE/1048-dr-stone-kohaku.png b/profiles/Avatar/Dr. STONE/1048-dr-stone-kohaku.png deleted file mode 100644 index ee153ff..0000000 Binary files a/profiles/Avatar/Dr. STONE/1048-dr-stone-kohaku.png and /dev/null differ diff --git a/profiles/Avatar/Dr. STONE/1049-dr-stone-chrome.png b/profiles/Avatar/Dr. STONE/1049-dr-stone-chrome.png deleted file mode 100644 index 7903acd..0000000 Binary files a/profiles/Avatar/Dr. STONE/1049-dr-stone-chrome.png and /dev/null differ diff --git a/profiles/Avatar/Dr. STONE/1050-dr-stone-gen.png b/profiles/Avatar/Dr. STONE/1050-dr-stone-gen.png deleted file mode 100644 index 93e1417..0000000 Binary files a/profiles/Avatar/Dr. STONE/1050-dr-stone-gen.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1011-fena-pirate-princess-fena.png b/profiles/Avatar/Fena_ Pirate Princess/1011-fena-pirate-princess-fena.png deleted file mode 100644 index 6c78d38..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1011-fena-pirate-princess-fena.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1012-fena-pirate-princess-yukimaru.png b/profiles/Avatar/Fena_ Pirate Princess/1012-fena-pirate-princess-yukimaru.png deleted file mode 100644 index 5edb235..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1012-fena-pirate-princess-yukimaru.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1013-fena-pirate-princess-shitan.png b/profiles/Avatar/Fena_ Pirate Princess/1013-fena-pirate-princess-shitan.png deleted file mode 100644 index 1d23241..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1013-fena-pirate-princess-shitan.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1014-fena-pirate-princess-karin.png b/profiles/Avatar/Fena_ Pirate Princess/1014-fena-pirate-princess-karin.png deleted file mode 100644 index 237a984..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1014-fena-pirate-princess-karin.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1015-fena-pirate-princess-twins.png b/profiles/Avatar/Fena_ Pirate Princess/1015-fena-pirate-princess-twins.png deleted file mode 100644 index 348f07b..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1015-fena-pirate-princess-twins.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1016-fena-pirate-princess-makaba.png b/profiles/Avatar/Fena_ Pirate Princess/1016-fena-pirate-princess-makaba.png deleted file mode 100644 index faec6a2..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1016-fena-pirate-princess-makaba.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1017-fena-pirate-princess-tsubaki.png b/profiles/Avatar/Fena_ Pirate Princess/1017-fena-pirate-princess-tsubaki.png deleted file mode 100644 index 5615a53..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1017-fena-pirate-princess-tsubaki.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1018-fena-pirate-princess-brule.png b/profiles/Avatar/Fena_ Pirate Princess/1018-fena-pirate-princess-brule.png deleted file mode 100644 index b644c41..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1018-fena-pirate-princess-brule.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1019-fena-pirate-princess-fena-young.png b/profiles/Avatar/Fena_ Pirate Princess/1019-fena-pirate-princess-fena-young.png deleted file mode 100644 index 55a3c74..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1019-fena-pirate-princess-fena-young.png and /dev/null differ diff --git a/profiles/Avatar/Fena_ Pirate Princess/1020-fena-pirate-princess-yukimaru-young.png b/profiles/Avatar/Fena_ Pirate Princess/1020-fena-pirate-princess-yukimaru-young.png deleted file mode 100644 index b48b4a0..0000000 Binary files a/profiles/Avatar/Fena_ Pirate Princess/1020-fena-pirate-princess-yukimaru-young.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/freiren-avatar-1.png b/profiles/Avatar/Frieren_ Beyond Journey's End/freiren-avatar-1.png deleted file mode 100644 index 192f99a..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/freiren-avatar-1.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/freiren-avatar-2.png b/profiles/Avatar/Frieren_ Beyond Journey's End/freiren-avatar-2.png deleted file mode 100644 index 88522f0..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/freiren-avatar-2.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/freiren-avatar-3.png b/profiles/Avatar/Frieren_ Beyond Journey's End/freiren-avatar-3.png deleted file mode 100644 index 500b145..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/freiren-avatar-3.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_eisen-avatar-1.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_eisen-avatar-1.png deleted file mode 100644 index e3f6d86..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_eisen-avatar-1.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_eisen-avatar-2.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_eisen-avatar-2.png deleted file mode 100644 index 63ae3f2..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_eisen-avatar-2.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_fern-avatar-1.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_fern-avatar-1.png deleted file mode 100644 index 15793fa..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_fern-avatar-1.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_fern-avatar-2.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_fern-avatar-2.png deleted file mode 100644 index fd39a4c..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_fern-avatar-2.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_heiter-avatar-1.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_heiter-avatar-1.png deleted file mode 100644 index c33611a..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_heiter-avatar-1.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_heiter-avatar-2.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_heiter-avatar-2.png deleted file mode 100644 index 16d3f9e..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_heiter-avatar-2.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_himmel-avatar-1.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_himmel-avatar-1.png deleted file mode 100644 index 2818347..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_himmel-avatar-1.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_himmel-avatar-2.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_himmel-avatar-2.png deleted file mode 100644 index ae2c152..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_himmel-avatar-2.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_stark-avatar-1.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_stark-avatar-1.png deleted file mode 100644 index 9177b19..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_stark-avatar-1.png and /dev/null differ diff --git a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_stark-avatar-2.png b/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_stark-avatar-2.png deleted file mode 100644 index 2895670..0000000 Binary files a/profiles/Avatar/Frieren_ Beyond Journey's End/frieren_stark-avatar-2.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/chris-1.png b/profiles/Avatar/HIGH CARD/chris-1.png deleted file mode 100644 index c928b6b..0000000 Binary files a/profiles/Avatar/HIGH CARD/chris-1.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/chris-2.png b/profiles/Avatar/HIGH CARD/chris-2.png deleted file mode 100644 index c791417..0000000 Binary files a/profiles/Avatar/HIGH CARD/chris-2.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/finn-1.png b/profiles/Avatar/HIGH CARD/finn-1.png deleted file mode 100644 index e6dc251..0000000 Binary files a/profiles/Avatar/HIGH CARD/finn-1.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/finn-2.png b/profiles/Avatar/HIGH CARD/finn-2.png deleted file mode 100644 index 09f4d80..0000000 Binary files a/profiles/Avatar/HIGH CARD/finn-2.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/leo-1.png b/profiles/Avatar/HIGH CARD/leo-1.png deleted file mode 100644 index 524ab6f..0000000 Binary files a/profiles/Avatar/HIGH CARD/leo-1.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/leo-2.png b/profiles/Avatar/HIGH CARD/leo-2.png deleted file mode 100644 index ecd938f..0000000 Binary files a/profiles/Avatar/HIGH CARD/leo-2.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/vijay-1.png b/profiles/Avatar/HIGH CARD/vijay-1.png deleted file mode 100644 index fb882f7..0000000 Binary files a/profiles/Avatar/HIGH CARD/vijay-1.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/vijay-2.png b/profiles/Avatar/HIGH CARD/vijay-2.png deleted file mode 100644 index c247c14..0000000 Binary files a/profiles/Avatar/HIGH CARD/vijay-2.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/wendy-1.png b/profiles/Avatar/HIGH CARD/wendy-1.png deleted file mode 100644 index 1d1ff31..0000000 Binary files a/profiles/Avatar/HIGH CARD/wendy-1.png and /dev/null differ diff --git a/profiles/Avatar/HIGH CARD/wendy-2.png b/profiles/Avatar/HIGH CARD/wendy-2.png deleted file mode 100644 index abfdec4..0000000 Binary files a/profiles/Avatar/HIGH CARD/wendy-2.png and /dev/null differ diff --git a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_clarie-kv1.png b/profiles/Avatar/I'm in Love with the Villainess/im_in_love_clarie-kv1.png deleted file mode 100644 index c035027..0000000 Binary files a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_clarie-kv1.png and /dev/null differ diff --git a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_clarie-kv2.png b/profiles/Avatar/I'm in Love with the Villainess/im_in_love_clarie-kv2.png deleted file mode 100644 index 28c2d19..0000000 Binary files a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_clarie-kv2.png and /dev/null differ diff --git a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_clarie.png b/profiles/Avatar/I'm in Love with the Villainess/im_in_love_clarie.png deleted file mode 100644 index 7b4dc6b..0000000 Binary files a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_clarie.png and /dev/null differ diff --git a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_lene.png b/profiles/Avatar/I'm in Love with the Villainess/im_in_love_lene.png deleted file mode 100644 index 4a4c446..0000000 Binary files a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_lene.png and /dev/null differ diff --git a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_manaria.png b/profiles/Avatar/I'm in Love with the Villainess/im_in_love_manaria.png deleted file mode 100644 index 0036732..0000000 Binary files a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_manaria.png and /dev/null differ diff --git a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_misha.png b/profiles/Avatar/I'm in Love with the Villainess/im_in_love_misha.png deleted file mode 100644 index 41aa440..0000000 Binary files a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_misha.png and /dev/null differ diff --git a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_rae-kv1.png b/profiles/Avatar/I'm in Love with the Villainess/im_in_love_rae-kv1.png deleted file mode 100644 index 3adf463..0000000 Binary files a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_rae-kv1.png and /dev/null differ diff --git a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_rae-kv2.png b/profiles/Avatar/I'm in Love with the Villainess/im_in_love_rae-kv2.png deleted file mode 100644 index f5639ea..0000000 Binary files a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_rae-kv2.png and /dev/null differ diff --git a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_rae.png b/profiles/Avatar/I'm in Love with the Villainess/im_in_love_rae.png deleted file mode 100644 index 0babb96..0000000 Binary files a/profiles/Avatar/I'm in Love with the Villainess/im_in_love_rae.png and /dev/null differ diff --git a/profiles/Avatar/In_Spectre/26-inspectre-kotoko-iwanaga.png b/profiles/Avatar/In_Spectre/26-inspectre-kotoko-iwanaga.png deleted file mode 100644 index 7da3a08..0000000 Binary files a/profiles/Avatar/In_Spectre/26-inspectre-kotoko-iwanaga.png and /dev/null differ diff --git a/profiles/Avatar/In_Spectre/27-inspectre-kuro-sakuragawa.png b/profiles/Avatar/In_Spectre/27-inspectre-kuro-sakuragawa.png deleted file mode 100644 index 41c5584..0000000 Binary files a/profiles/Avatar/In_Spectre/27-inspectre-kuro-sakuragawa.png and /dev/null differ diff --git a/profiles/Avatar/In_Spectre/28-inspectre-saki-yumihara.png b/profiles/Avatar/In_Spectre/28-inspectre-saki-yumihara.png deleted file mode 100644 index 8d3e3b1..0000000 Binary files a/profiles/Avatar/In_Spectre/28-inspectre-saki-yumihara.png and /dev/null differ diff --git a/profiles/Avatar/In_Spectre/29-inspectre-steel-lady-nanase.png b/profiles/Avatar/In_Spectre/29-inspectre-steel-lady-nanase.png deleted file mode 100644 index d5bd005..0000000 Binary files a/profiles/Avatar/In_Spectre/29-inspectre-steel-lady-nanase.png and /dev/null differ diff --git a/profiles/Avatar/In_Spectre/30-inspectre-komainu.png b/profiles/Avatar/In_Spectre/30-inspectre-komainu.png deleted file mode 100644 index 18c3012..0000000 Binary files a/profiles/Avatar/In_Spectre/30-inspectre-komainu.png and /dev/null differ diff --git a/profiles/Avatar/JUJUTSU KAISEN/1041-jujutsu-kaisen-yuji-itadori.png b/profiles/Avatar/JUJUTSU KAISEN/1041-jujutsu-kaisen-yuji-itadori.png deleted file mode 100644 index 13b338f..0000000 Binary files a/profiles/Avatar/JUJUTSU KAISEN/1041-jujutsu-kaisen-yuji-itadori.png and /dev/null differ diff --git a/profiles/Avatar/JUJUTSU KAISEN/1042-jujutsu-kaisen-megumi-fushigoro.png b/profiles/Avatar/JUJUTSU KAISEN/1042-jujutsu-kaisen-megumi-fushigoro.png deleted file mode 100644 index 62b3c03..0000000 Binary files a/profiles/Avatar/JUJUTSU KAISEN/1042-jujutsu-kaisen-megumi-fushigoro.png and /dev/null differ diff --git a/profiles/Avatar/JUJUTSU KAISEN/1043-jujutsu-kaisen-nobara-kugisaki.png b/profiles/Avatar/JUJUTSU KAISEN/1043-jujutsu-kaisen-nobara-kugisaki.png deleted file mode 100644 index f69ddde..0000000 Binary files a/profiles/Avatar/JUJUTSU KAISEN/1043-jujutsu-kaisen-nobara-kugisaki.png and /dev/null differ diff --git a/profiles/Avatar/JUJUTSU KAISEN/1044-jujutsu-kaisen-satoru-gojo.png b/profiles/Avatar/JUJUTSU KAISEN/1044-jujutsu-kaisen-satoru-gojo.png deleted file mode 100644 index ac082bf..0000000 Binary files a/profiles/Avatar/JUJUTSU KAISEN/1044-jujutsu-kaisen-satoru-gojo.png and /dev/null differ diff --git a/profiles/Avatar/JUJUTSU KAISEN/1045-jujutsu-kaisen-ryomen-sukuna.png b/profiles/Avatar/JUJUTSU KAISEN/1045-jujutsu-kaisen-ryomen-sukuna.png deleted file mode 100644 index 5bdfbbb..0000000 Binary files a/profiles/Avatar/JUJUTSU KAISEN/1045-jujutsu-kaisen-ryomen-sukuna.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/afdal.png b/profiles/Avatar/Metallic Rouge/afdal.png deleted file mode 100644 index 5b658a3..0000000 Binary files a/profiles/Avatar/Metallic Rouge/afdal.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/ash.png b/profiles/Avatar/Metallic Rouge/ash.png deleted file mode 100644 index e093459..0000000 Binary files a/profiles/Avatar/Metallic Rouge/ash.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/eden.png b/profiles/Avatar/Metallic Rouge/eden.png deleted file mode 100644 index 3038e6a..0000000 Binary files a/profiles/Avatar/Metallic Rouge/eden.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/gene-1.png b/profiles/Avatar/Metallic Rouge/gene-1.png deleted file mode 100644 index 318f539..0000000 Binary files a/profiles/Avatar/Metallic Rouge/gene-1.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/gene-2.png b/profiles/Avatar/Metallic Rouge/gene-2.png deleted file mode 100644 index 785137f..0000000 Binary files a/profiles/Avatar/Metallic Rouge/gene-2.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/giallon-1.png b/profiles/Avatar/Metallic Rouge/giallon-1.png deleted file mode 100644 index 0295271..0000000 Binary files a/profiles/Avatar/Metallic Rouge/giallon-1.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/giallon-2.png b/profiles/Avatar/Metallic Rouge/giallon-2.png deleted file mode 100644 index 5ade5b9..0000000 Binary files a/profiles/Avatar/Metallic Rouge/giallon-2.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/jill.png b/profiles/Avatar/Metallic Rouge/jill.png deleted file mode 100644 index 31e0de2..0000000 Binary files a/profiles/Avatar/Metallic Rouge/jill.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/naomi-1.png b/profiles/Avatar/Metallic Rouge/naomi-1.png deleted file mode 100644 index f4ed375..0000000 Binary files a/profiles/Avatar/Metallic Rouge/naomi-1.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/naomi-2.png b/profiles/Avatar/Metallic Rouge/naomi-2.png deleted file mode 100644 index 4dcc8f6..0000000 Binary files a/profiles/Avatar/Metallic Rouge/naomi-2.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/noid.png b/profiles/Avatar/Metallic Rouge/noid.png deleted file mode 100644 index 6088bec..0000000 Binary files a/profiles/Avatar/Metallic Rouge/noid.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/rouge-1.png b/profiles/Avatar/Metallic Rouge/rouge-1.png deleted file mode 100644 index 979f87f..0000000 Binary files a/profiles/Avatar/Metallic Rouge/rouge-1.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/rouge-2.png b/profiles/Avatar/Metallic Rouge/rouge-2.png deleted file mode 100644 index 46b1e05..0000000 Binary files a/profiles/Avatar/Metallic Rouge/rouge-2.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/rouge-3.png b/profiles/Avatar/Metallic Rouge/rouge-3.png deleted file mode 100644 index d8f87ce..0000000 Binary files a/profiles/Avatar/Metallic Rouge/rouge-3.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/rouge-4.png b/profiles/Avatar/Metallic Rouge/rouge-4.png deleted file mode 100644 index 55391d0..0000000 Binary files a/profiles/Avatar/Metallic Rouge/rouge-4.png and /dev/null differ diff --git a/profiles/Avatar/Metallic Rouge/sarah.png b/profiles/Avatar/Metallic Rouge/sarah.png deleted file mode 100644 index d98ca92..0000000 Binary files a/profiles/Avatar/Metallic Rouge/sarah.png and /dev/null differ diff --git a/profiles/Avatar/Mitrasphere/1006-mitrasphere-hime.png b/profiles/Avatar/Mitrasphere/1006-mitrasphere-hime.png deleted file mode 100644 index d9a5285..0000000 Binary files a/profiles/Avatar/Mitrasphere/1006-mitrasphere-hime.png and /dev/null differ diff --git a/profiles/Avatar/Mitrasphere/1007-mitrasphere-yuzu.png b/profiles/Avatar/Mitrasphere/1007-mitrasphere-yuzu.png deleted file mode 100644 index 7f720b7..0000000 Binary files a/profiles/Avatar/Mitrasphere/1007-mitrasphere-yuzu.png and /dev/null differ diff --git a/profiles/Avatar/Mitrasphere/1008-mitrasphere-matilda.png b/profiles/Avatar/Mitrasphere/1008-mitrasphere-matilda.png deleted file mode 100644 index 005c936..0000000 Binary files a/profiles/Avatar/Mitrasphere/1008-mitrasphere-matilda.png and /dev/null differ diff --git a/profiles/Avatar/Mitrasphere/1009-mitrasphere-hildegard.png b/profiles/Avatar/Mitrasphere/1009-mitrasphere-hildegard.png deleted file mode 100644 index 5095288..0000000 Binary files a/profiles/Avatar/Mitrasphere/1009-mitrasphere-hildegard.png and /dev/null differ diff --git a/profiles/Avatar/Mitrasphere/1010-mitrasphere-upa.png b/profiles/Avatar/Mitrasphere/1010-mitrasphere-upa.png deleted file mode 100644 index a8b61d7..0000000 Binary files a/profiles/Avatar/Mitrasphere/1010-mitrasphere-upa.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_ariel.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_ariel.png deleted file mode 100644 index 322fe82..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_ariel.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_cliff.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_cliff.png deleted file mode 100644 index 55a2174..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_cliff.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_elinalise.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_elinalise.png deleted file mode 100644 index d376ca7..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_elinalise.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_eris.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_eris.png deleted file mode 100644 index 5fd84e6..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_eris.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_ghislaine.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_ghislaine.png deleted file mode 100644 index 11e7bdc..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_ghislaine.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_juli.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_juli.png deleted file mode 100644 index 7c13e9e..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_juli.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_linia.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_linia.png deleted file mode 100644 index aa1461f..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_linia.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_luke.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_luke.png deleted file mode 100644 index 8200f90..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_luke.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_pursena.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_pursena.png deleted file mode 100644 index 1a779e9..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_pursena.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_rudeus-school-uniform.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_rudeus-school-uniform.png deleted file mode 100644 index 9499837..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_rudeus-school-uniform.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_rudeus.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_rudeus.png deleted file mode 100644 index 8f22a41..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_rudeus.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_ruijerd.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_ruijerd.png deleted file mode 100644 index 9dd5ce6..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_ruijerd.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_sara.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_sara.png deleted file mode 100644 index 7bf433c..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_sara.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_soldat.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_soldat.png deleted file mode 100644 index e38cb2f..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_soldat.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_suzanne.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_suzanne.png deleted file mode 100644 index d5d7999..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_suzanne.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_sylphie-fitz.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_sylphie-fitz.png deleted file mode 100644 index aac3099..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_sylphie-fitz.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_sylphie.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_sylphie.png deleted file mode 100644 index 4d72823..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_sylphie.png and /dev/null differ diff --git a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_zanoba.png b/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_zanoba.png deleted file mode 100644 index 42e3297..0000000 Binary files a/profiles/Avatar/Mushoku Tensei_ Jobless Reincarnation/mushokutensei_zanoba.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-gojo-1-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-gojo-1-avatar.png deleted file mode 100644 index d0d330c..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-gojo-1-avatar.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-gojo-2-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-gojo-2-avatar.png deleted file mode 100644 index 248efe7..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-gojo-2-avatar.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-1-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-1-avatar.png deleted file mode 100644 index 5b906d8..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-1-avatar.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-2-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-2-avatar.png deleted file mode 100644 index 95a33cb..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-2-avatar.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-cosplay-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-cosplay-avatar.png deleted file mode 100644 index a3fe5ca..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-cosplay-avatar.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-normal-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-normal-avatar.png deleted file mode 100644 index a55b324..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-marin-normal-avatar.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-sajuna-1-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-sajuna-1-avatar.png deleted file mode 100644 index 41d5493..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-sajuna-1-avatar.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-sajuna-2-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-sajuna-2-avatar.png deleted file mode 100644 index b309816..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-sajuna-2-avatar.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-shinju-1-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-shinju-1-avatar.png deleted file mode 100644 index 684e69d..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-shinju-1-avatar.png and /dev/null differ diff --git a/profiles/Avatar/My Dress-Up Darling/my-dress-up-shinju-2-avatar.png b/profiles/Avatar/My Dress-Up Darling/my-dress-up-shinju-2-avatar.png deleted file mode 100644 index 8d13aec..0000000 Binary files a/profiles/Avatar/My Dress-Up Darling/my-dress-up-shinju-2-avatar.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-big_mom.png b/profiles/Avatar/One Piece/avatars-big_mom.png deleted file mode 100644 index 864469b..0000000 Binary files a/profiles/Avatar/One Piece/avatars-big_mom.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-brook.png b/profiles/Avatar/One Piece/avatars-brook.png deleted file mode 100644 index 3bb7694..0000000 Binary files a/profiles/Avatar/One Piece/avatars-brook.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-chopper.png b/profiles/Avatar/One Piece/avatars-chopper.png deleted file mode 100644 index 50a793a..0000000 Binary files a/profiles/Avatar/One Piece/avatars-chopper.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-franky.png b/profiles/Avatar/One Piece/avatars-franky.png deleted file mode 100644 index 14be1d7..0000000 Binary files a/profiles/Avatar/One Piece/avatars-franky.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-jinbei.png b/profiles/Avatar/One Piece/avatars-jinbei.png deleted file mode 100644 index b90fc6d..0000000 Binary files a/profiles/Avatar/One Piece/avatars-jinbei.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-kaido.png b/profiles/Avatar/One Piece/avatars-kaido.png deleted file mode 100644 index 3822618..0000000 Binary files a/profiles/Avatar/One Piece/avatars-kaido.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-kid.png b/profiles/Avatar/One Piece/avatars-kid.png deleted file mode 100644 index 67a840d..0000000 Binary files a/profiles/Avatar/One Piece/avatars-kid.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-law.png b/profiles/Avatar/One Piece/avatars-law.png deleted file mode 100644 index 7dca180..0000000 Binary files a/profiles/Avatar/One Piece/avatars-law.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-luffy.png b/profiles/Avatar/One Piece/avatars-luffy.png deleted file mode 100644 index 24aa061..0000000 Binary files a/profiles/Avatar/One Piece/avatars-luffy.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-nami.png b/profiles/Avatar/One Piece/avatars-nami.png deleted file mode 100644 index a600224..0000000 Binary files a/profiles/Avatar/One Piece/avatars-nami.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-perona.png b/profiles/Avatar/One Piece/avatars-perona.png deleted file mode 100644 index 474a101..0000000 Binary files a/profiles/Avatar/One Piece/avatars-perona.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-robin.png b/profiles/Avatar/One Piece/avatars-robin.png deleted file mode 100644 index 684e88b..0000000 Binary files a/profiles/Avatar/One Piece/avatars-robin.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-sanji.png b/profiles/Avatar/One Piece/avatars-sanji.png deleted file mode 100644 index 4783833..0000000 Binary files a/profiles/Avatar/One Piece/avatars-sanji.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-shanks.png b/profiles/Avatar/One Piece/avatars-shanks.png deleted file mode 100644 index 5aa8cb6..0000000 Binary files a/profiles/Avatar/One Piece/avatars-shanks.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-usopp.png b/profiles/Avatar/One Piece/avatars-usopp.png deleted file mode 100644 index 302fdcf..0000000 Binary files a/profiles/Avatar/One Piece/avatars-usopp.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-yamato.png b/profiles/Avatar/One Piece/avatars-yamato.png deleted file mode 100644 index b1bc330..0000000 Binary files a/profiles/Avatar/One Piece/avatars-yamato.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/avatars-zoro.png b/profiles/Avatar/One Piece/avatars-zoro.png deleted file mode 100644 index d38c468..0000000 Binary files a/profiles/Avatar/One Piece/avatars-zoro.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-brook.png b/profiles/Avatar/One Piece/egghead-brook.png deleted file mode 100644 index 1a32033..0000000 Binary files a/profiles/Avatar/One Piece/egghead-brook.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-chopper.png b/profiles/Avatar/One Piece/egghead-chopper.png deleted file mode 100644 index 4d84d37..0000000 Binary files a/profiles/Avatar/One Piece/egghead-chopper.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-franky.png b/profiles/Avatar/One Piece/egghead-franky.png deleted file mode 100644 index c2ece29..0000000 Binary files a/profiles/Avatar/One Piece/egghead-franky.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-jimbei.png b/profiles/Avatar/One Piece/egghead-jimbei.png deleted file mode 100644 index d7e08ca..0000000 Binary files a/profiles/Avatar/One Piece/egghead-jimbei.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-luffy.png b/profiles/Avatar/One Piece/egghead-luffy.png deleted file mode 100644 index 9b8f569..0000000 Binary files a/profiles/Avatar/One Piece/egghead-luffy.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-nami.png b/profiles/Avatar/One Piece/egghead-nami.png deleted file mode 100644 index a3efc2b..0000000 Binary files a/profiles/Avatar/One Piece/egghead-nami.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-robin.png b/profiles/Avatar/One Piece/egghead-robin.png deleted file mode 100644 index 9a52abc..0000000 Binary files a/profiles/Avatar/One Piece/egghead-robin.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-sanji.png b/profiles/Avatar/One Piece/egghead-sanji.png deleted file mode 100644 index 63d48d1..0000000 Binary files a/profiles/Avatar/One Piece/egghead-sanji.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-usopp.png b/profiles/Avatar/One Piece/egghead-usopp.png deleted file mode 100644 index 9ecb8ac..0000000 Binary files a/profiles/Avatar/One Piece/egghead-usopp.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/egghead-zoro.png b/profiles/Avatar/One Piece/egghead-zoro.png deleted file mode 100644 index f43b845..0000000 Binary files a/profiles/Avatar/One Piece/egghead-zoro.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-chopper-1.png b/profiles/Avatar/One Piece/one-piece-chopper-1.png deleted file mode 100644 index 488a4dd..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-chopper-1.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-chopper-2.png b/profiles/Avatar/One Piece/one-piece-chopper-2.png deleted file mode 100644 index d16f259..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-chopper-2.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-chopper-3.png b/profiles/Avatar/One Piece/one-piece-chopper-3.png deleted file mode 100644 index 41f0b6f..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-chopper-3.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-franky-1.png b/profiles/Avatar/One Piece/one-piece-franky-1.png deleted file mode 100644 index 7298d9e..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-franky-1.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-franky-2.png b/profiles/Avatar/One Piece/one-piece-franky-2.png deleted file mode 100644 index e4d71a2..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-franky-2.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-franky-3.png b/profiles/Avatar/One Piece/one-piece-franky-3.png deleted file mode 100644 index 5d6ad2e..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-franky-3.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-jimbei-1.png b/profiles/Avatar/One Piece/one-piece-jimbei-1.png deleted file mode 100644 index d4fb21e..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-jimbei-1.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-jimbei-2.png b/profiles/Avatar/One Piece/one-piece-jimbei-2.png deleted file mode 100644 index dbc7648..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-jimbei-2.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-jimbei-3.png b/profiles/Avatar/One Piece/one-piece-jimbei-3.png deleted file mode 100644 index 6b3beb0..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-jimbei-3.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-jimbei-4.png b/profiles/Avatar/One Piece/one-piece-jimbei-4.png deleted file mode 100644 index b36aadd..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-jimbei-4.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-luffy-1.png b/profiles/Avatar/One Piece/one-piece-luffy-1.png deleted file mode 100644 index ef271c6..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-luffy-1.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-luffy-2.png b/profiles/Avatar/One Piece/one-piece-luffy-2.png deleted file mode 100644 index 382667a..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-luffy-2.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-luffy-3.png b/profiles/Avatar/One Piece/one-piece-luffy-3.png deleted file mode 100644 index 3ca6c1d..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-luffy-3.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-luffy-4.png b/profiles/Avatar/One Piece/one-piece-luffy-4.png deleted file mode 100644 index edd54e3..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-luffy-4.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-luffy-5.png b/profiles/Avatar/One Piece/one-piece-luffy-5.png deleted file mode 100644 index db6fe9a..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-luffy-5.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-nico-robin-1.png b/profiles/Avatar/One Piece/one-piece-nico-robin-1.png deleted file mode 100644 index 52e5fcf..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-nico-robin-1.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-nico-robin-2.png b/profiles/Avatar/One Piece/one-piece-nico-robin-2.png deleted file mode 100644 index 5894d75..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-nico-robin-2.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-nico-robin-3.png b/profiles/Avatar/One Piece/one-piece-nico-robin-3.png deleted file mode 100644 index d8b4c51..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-nico-robin-3.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-roronoa-zoro-1.png b/profiles/Avatar/One Piece/one-piece-roronoa-zoro-1.png deleted file mode 100644 index 84e32f1..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-roronoa-zoro-1.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-roronoa-zoro-2.png b/profiles/Avatar/One Piece/one-piece-roronoa-zoro-2.png deleted file mode 100644 index 2c9d535..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-roronoa-zoro-2.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-sanji-1.png b/profiles/Avatar/One Piece/one-piece-sanji-1.png deleted file mode 100644 index 5855337..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-sanji-1.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-sanji-2.png b/profiles/Avatar/One Piece/one-piece-sanji-2.png deleted file mode 100644 index 58ce4a5..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-sanji-2.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-sanji-3.png b/profiles/Avatar/One Piece/one-piece-sanji-3.png deleted file mode 100644 index 3c83a1d..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-sanji-3.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-usopp-1.png b/profiles/Avatar/One Piece/one-piece-usopp-1.png deleted file mode 100644 index 0b5dcc6..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-usopp-1.png and /dev/null differ diff --git a/profiles/Avatar/One Piece/one-piece-usopp-2.png b/profiles/Avatar/One Piece/one-piece-usopp-2.png deleted file mode 100644 index b31fe0c..0000000 Binary files a/profiles/Avatar/One Piece/one-piece-usopp-2.png and /dev/null differ diff --git a/profiles/Avatar/One Piece_ Gear Five/gear5avatar1.png b/profiles/Avatar/One Piece_ Gear Five/gear5avatar1.png deleted file mode 100644 index 609d8d4..0000000 Binary files a/profiles/Avatar/One Piece_ Gear Five/gear5avatar1.png and /dev/null differ diff --git a/profiles/Avatar/One Piece_ Gear Five/gear5avatar2.png b/profiles/Avatar/One Piece_ Gear Five/gear5avatar2.png deleted file mode 100644 index d0d945d..0000000 Binary files a/profiles/Avatar/One Piece_ Gear Five/gear5avatar2.png and /dev/null differ diff --git a/profiles/Avatar/One Piece_ Gear Five/gear5avatar3.png b/profiles/Avatar/One Piece_ Gear Five/gear5avatar3.png deleted file mode 100644 index e372f9b..0000000 Binary files a/profiles/Avatar/One Piece_ Gear Five/gear5avatar3.png and /dev/null differ diff --git a/profiles/Avatar/One Piece_ Gear Five/gear5avatar4.png b/profiles/Avatar/One Piece_ Gear Five/gear5avatar4.png deleted file mode 100644 index adef69a..0000000 Binary files a/profiles/Avatar/One Piece_ Gear Five/gear5avatar4.png and /dev/null differ diff --git a/profiles/Avatar/One Piece_ Gear Five/gear5avatar5.png b/profiles/Avatar/One Piece_ Gear Five/gear5avatar5.png deleted file mode 100644 index 697bd79..0000000 Binary files a/profiles/Avatar/One Piece_ Gear Five/gear5avatar5.png and /dev/null differ diff --git a/profiles/Avatar/One Piece_ Gear Five/gear5avatar6.png b/profiles/Avatar/One Piece_ Gear Five/gear5avatar6.png deleted file mode 100644 index 725ebf2..0000000 Binary files a/profiles/Avatar/One Piece_ Gear Five/gear5avatar6.png and /dev/null differ diff --git a/profiles/Avatar/One Piece_ Gear Five/gear5avatar7.png b/profiles/Avatar/One Piece_ Gear Five/gear5avatar7.png deleted file mode 100644 index cdf88ab..0000000 Binary files a/profiles/Avatar/One Piece_ Gear Five/gear5avatar7.png and /dev/null differ diff --git a/profiles/Avatar/One Piece_ Gear Five/gear5avatar8.png b/profiles/Avatar/One Piece_ Gear Five/gear5avatar8.png deleted file mode 100644 index f2503f2..0000000 Binary files a/profiles/Avatar/One Piece_ Gear Five/gear5avatar8.png and /dev/null differ diff --git a/profiles/Avatar/One Piece_ Gear Five/gear5avatar9.png b/profiles/Avatar/One Piece_ Gear Five/gear5avatar9.png deleted file mode 100644 index ff2daf0..0000000 Binary files a/profiles/Avatar/One Piece_ Gear Five/gear5avatar9.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-chizuru-s1-date-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-chizuru-s1-date-kv.png deleted file mode 100644 index 6765a4b..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-chizuru-s1-date-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-chizuru-s2-date-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-chizuru-s2-date-kv.png deleted file mode 100644 index eae4140..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-chizuru-s2-date-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-chizuru-s3-date-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-chizuru-s3-date-kv.png deleted file mode 100644 index 13adb56..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-chizuru-s3-date-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s1-date-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s1-date-kv.png deleted file mode 100644 index 23caab2..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s1-date-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s2-date-kv_1.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s2-date-kv_1.png deleted file mode 100644 index 34d5450..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s2-date-kv_1.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s2-date-kv_2.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s2-date-kv_2.png deleted file mode 100644 index a38e223..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s2-date-kv_2.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s3-date-kv_1.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s3-date-kv_1.png deleted file mode 100644 index ea850e0..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s3-date-kv_1.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s3-date-kv_2.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s3-date-kv_2.png deleted file mode 100644 index 034f597..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-mami-s3-date-kv_2.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-ruka-s1-date-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-ruka-s1-date-kv.png deleted file mode 100644 index 3899157..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-ruka-s1-date-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-ruka-s2-date-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-ruka-s2-date-kv.png deleted file mode 100644 index e9d5d88..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-ruka-s2-date-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-ruka-s3-date-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-ruka-s3-date-kv.png deleted file mode 100644 index 55c4e04..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-ruka-s3-date-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-sumi-s1-date-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-sumi-s1-date-kv.png deleted file mode 100644 index 7f46964..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-sumi-s1-date-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-yaemori-s3-date-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-yaemori-s3-date-kv.png deleted file mode 100644 index 53177f9..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-yaemori-s3-date-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-yaemori-s3-main-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-yaemori-s3-main-kv.png deleted file mode 100644 index 6a672aa..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-yaemori-s3-main-kv.png and /dev/null differ diff --git a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-yaemori-s3-teaser-kv.png b/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-yaemori-s3-teaser-kv.png deleted file mode 100644 index 43d1c86..0000000 Binary files a/profiles/Avatar/Rent-a-Girlfriend/rent-a-gf-yaemori-s3-teaser-kv.png and /dev/null differ diff --git a/profiles/Avatar/SPY x FAMILY/100006-spy-x-family-loid.png b/profiles/Avatar/SPY x FAMILY/100006-spy-x-family-loid.png deleted file mode 100644 index bc69f6d..0000000 Binary files a/profiles/Avatar/SPY x FAMILY/100006-spy-x-family-loid.png and /dev/null differ diff --git a/profiles/Avatar/SPY x FAMILY/100007-spy-x-family-yor.png b/profiles/Avatar/SPY x FAMILY/100007-spy-x-family-yor.png deleted file mode 100644 index b9b2511..0000000 Binary files a/profiles/Avatar/SPY x FAMILY/100007-spy-x-family-yor.png and /dev/null differ diff --git a/profiles/Avatar/SPY x FAMILY/100008-spy-x-family-anya-1.png b/profiles/Avatar/SPY x FAMILY/100008-spy-x-family-anya-1.png deleted file mode 100644 index 5b29c35..0000000 Binary files a/profiles/Avatar/SPY x FAMILY/100008-spy-x-family-anya-1.png and /dev/null differ diff --git a/profiles/Avatar/SPY x FAMILY/100009-spy-x-family-anya-2.png b/profiles/Avatar/SPY x FAMILY/100009-spy-x-family-anya-2.png deleted file mode 100644 index 9a93d6f..0000000 Binary files a/profiles/Avatar/SPY x FAMILY/100009-spy-x-family-anya-2.png and /dev/null differ diff --git a/profiles/Avatar/SPY x FAMILY/100010-spy-x-family-anya-3.png b/profiles/Avatar/SPY x FAMILY/100010-spy-x-family-anya-3.png deleted file mode 100644 index d35285c..0000000 Binary files a/profiles/Avatar/SPY x FAMILY/100010-spy-x-family-anya-3.png and /dev/null differ diff --git a/profiles/Avatar/So I'm a Spider, So What_/1051-so-im-a-spider-so-what-kumoko.png b/profiles/Avatar/So I'm a Spider, So What_/1051-so-im-a-spider-so-what-kumoko.png deleted file mode 100644 index ea2fc09..0000000 Binary files a/profiles/Avatar/So I'm a Spider, So What_/1051-so-im-a-spider-so-what-kumoko.png and /dev/null differ diff --git a/profiles/Avatar/So I'm a Spider, So What_/1052-so-im-a-spider-so-what-shun.png b/profiles/Avatar/So I'm a Spider, So What_/1052-so-im-a-spider-so-what-shun.png deleted file mode 100644 index 0a8f7b6..0000000 Binary files a/profiles/Avatar/So I'm a Spider, So What_/1052-so-im-a-spider-so-what-shun.png and /dev/null differ diff --git a/profiles/Avatar/So I'm a Spider, So What_/1053-so-im-a-spider-so-what-katia.png b/profiles/Avatar/So I'm a Spider, So What_/1053-so-im-a-spider-so-what-katia.png deleted file mode 100644 index 4edc075..0000000 Binary files a/profiles/Avatar/So I'm a Spider, So What_/1053-so-im-a-spider-so-what-katia.png and /dev/null differ diff --git a/profiles/Avatar/So I'm a Spider, So What_/1054-so-im-a-spider-so-what-sue.png b/profiles/Avatar/So I'm a Spider, So What_/1054-so-im-a-spider-so-what-sue.png deleted file mode 100644 index a140e83..0000000 Binary files a/profiles/Avatar/So I'm a Spider, So What_/1054-so-im-a-spider-so-what-sue.png and /dev/null differ diff --git a/profiles/Avatar/So I'm a Spider, So What_/1055-so-im-a-spider-so-what-fei.png b/profiles/Avatar/So I'm a Spider, So What_/1055-so-im-a-spider-so-what-fei.png deleted file mode 100644 index 666c0d0..0000000 Binary files a/profiles/Avatar/So I'm a Spider, So What_/1055-so-im-a-spider-so-what-fei.png and /dev/null differ diff --git a/profiles/Avatar/Solo Leveling/solo_baekyoonho.png b/profiles/Avatar/Solo Leveling/solo_baekyoonho.png deleted file mode 100644 index a9db75a..0000000 Binary files a/profiles/Avatar/Solo Leveling/solo_baekyoonho.png and /dev/null differ diff --git a/profiles/Avatar/Solo Leveling/solo_chahaein.png b/profiles/Avatar/Solo Leveling/solo_chahaein.png deleted file mode 100644 index 5122f6c..0000000 Binary files a/profiles/Avatar/Solo Leveling/solo_chahaein.png and /dev/null differ diff --git a/profiles/Avatar/Solo Leveling/solo_choijongin.png b/profiles/Avatar/Solo Leveling/solo_choijongin.png deleted file mode 100644 index d6b7b49..0000000 Binary files a/profiles/Avatar/Solo Leveling/solo_choijongin.png and /dev/null differ diff --git a/profiles/Avatar/Solo Leveling/solo_gogunhee.png b/profiles/Avatar/Solo Leveling/solo_gogunhee.png deleted file mode 100644 index 1c2ff94..0000000 Binary files a/profiles/Avatar/Solo Leveling/solo_gogunhee.png and /dev/null differ diff --git a/profiles/Avatar/Solo Leveling/solo_sungjinwoo.png b/profiles/Avatar/Solo Leveling/solo_sungjinwoo.png deleted file mode 100644 index aae1a08..0000000 Binary files a/profiles/Avatar/Solo Leveling/solo_sungjinwoo.png and /dev/null differ diff --git a/profiles/Avatar/Solo Leveling/solo_teaser_visual.png b/profiles/Avatar/Solo Leveling/solo_teaser_visual.png deleted file mode 100644 index 886da63..0000000 Binary files a/profiles/Avatar/Solo Leveling/solo_teaser_visual.png and /dev/null differ diff --git a/profiles/Avatar/Solo Leveling/solo_woojinchul.png b/profiles/Avatar/Solo Leveling/solo_woojinchul.png deleted file mode 100644 index 92794cc..0000000 Binary files a/profiles/Avatar/Solo Leveling/solo_woojinchul.png and /dev/null differ diff --git a/profiles/Avatar/Solo Leveling/solo_yoojinho.png b/profiles/Avatar/Solo Leveling/solo_yoojinho.png deleted file mode 100644 index 0b4224b..0000000 Binary files a/profiles/Avatar/Solo Leveling/solo_yoojinho.png and /dev/null differ diff --git a/profiles/Avatar/Somali and the Forest Spirit/31-somali-and-the-forest-spirit-golem.jpg b/profiles/Avatar/Somali and the Forest Spirit/31-somali-and-the-forest-spirit-golem.jpg deleted file mode 100644 index 6b7c099..0000000 Binary files a/profiles/Avatar/Somali and the Forest Spirit/31-somali-and-the-forest-spirit-golem.jpg and /dev/null differ diff --git a/profiles/Avatar/Somali and the Forest Spirit/32-somali-and-the-forest-spirit-somali.jpg b/profiles/Avatar/Somali and the Forest Spirit/32-somali-and-the-forest-spirit-somali.jpg deleted file mode 100644 index be3ea87..0000000 Binary files a/profiles/Avatar/Somali and the Forest Spirit/32-somali-and-the-forest-spirit-somali.jpg and /dev/null differ diff --git a/profiles/Avatar/Somali and the Forest Spirit/33-somali-and-the-forest-spirit-shizuno.jpg b/profiles/Avatar/Somali and the Forest Spirit/33-somali-and-the-forest-spirit-shizuno.jpg deleted file mode 100644 index c05286a..0000000 Binary files a/profiles/Avatar/Somali and the Forest Spirit/33-somali-and-the-forest-spirit-shizuno.jpg and /dev/null differ diff --git a/profiles/Avatar/Somali and the Forest Spirit/34-somali-and-the-forest-spirit-uzoi.jpg b/profiles/Avatar/Somali and the Forest Spirit/34-somali-and-the-forest-spirit-uzoi.jpg deleted file mode 100644 index 1f44f7e..0000000 Binary files a/profiles/Avatar/Somali and the Forest Spirit/34-somali-and-the-forest-spirit-uzoi.jpg and /dev/null differ diff --git a/profiles/Avatar/Somali and the Forest Spirit/35-somali-and-the-forest-spirit-kikila.jpg b/profiles/Avatar/Somali and the Forest Spirit/35-somali-and-the-forest-spirit-kikila.jpg deleted file mode 100644 index 095458c..0000000 Binary files a/profiles/Avatar/Somali and the Forest Spirit/35-somali-and-the-forest-spirit-kikila.jpg and /dev/null differ diff --git a/profiles/Avatar/That Time I Got Reincarnated as a Slime/36-that-time-i-got-reincarnated-as-a-slime-rimuru-human.png b/profiles/Avatar/That Time I Got Reincarnated as a Slime/36-that-time-i-got-reincarnated-as-a-slime-rimuru-human.png deleted file mode 100644 index a37d3cf..0000000 Binary files a/profiles/Avatar/That Time I Got Reincarnated as a Slime/36-that-time-i-got-reincarnated-as-a-slime-rimuru-human.png and /dev/null differ diff --git a/profiles/Avatar/That Time I Got Reincarnated as a Slime/37-that-time-i-got-reincarnated-as-a-slime-shuna.png b/profiles/Avatar/That Time I Got Reincarnated as a Slime/37-that-time-i-got-reincarnated-as-a-slime-shuna.png deleted file mode 100644 index 1d54f25..0000000 Binary files a/profiles/Avatar/That Time I Got Reincarnated as a Slime/37-that-time-i-got-reincarnated-as-a-slime-shuna.png and /dev/null differ diff --git a/profiles/Avatar/That Time I Got Reincarnated as a Slime/38-that-time-i-got-reincarnated-as-a-slime-shion.png b/profiles/Avatar/That Time I Got Reincarnated as a Slime/38-that-time-i-got-reincarnated-as-a-slime-shion.png deleted file mode 100644 index ad5dcde..0000000 Binary files a/profiles/Avatar/That Time I Got Reincarnated as a Slime/38-that-time-i-got-reincarnated-as-a-slime-shion.png and /dev/null differ diff --git a/profiles/Avatar/That Time I Got Reincarnated as a Slime/39-that-time-i-got-reincarnated-as-a-slime-rimuru-slime.png b/profiles/Avatar/That Time I Got Reincarnated as a Slime/39-that-time-i-got-reincarnated-as-a-slime-rimuru-slime.png deleted file mode 100644 index e8f79f5..0000000 Binary files a/profiles/Avatar/That Time I Got Reincarnated as a Slime/39-that-time-i-got-reincarnated-as-a-slime-rimuru-slime.png and /dev/null differ diff --git a/profiles/Avatar/That Time I Got Reincarnated as a Slime/40-that-time-i-got-reincarnated-as-a-slime-hinata.png b/profiles/Avatar/That Time I Got Reincarnated as a Slime/40-that-time-i-got-reincarnated-as-a-slime-hinata.png deleted file mode 100644 index b9ad2a7..0000000 Binary files a/profiles/Avatar/That Time I Got Reincarnated as a Slime/40-that-time-i-got-reincarnated-as-a-slime-hinata.png and /dev/null differ diff --git a/profiles/Avatar/The Apothecary Diaries/apothecary_gaoshun.png b/profiles/Avatar/The Apothecary Diaries/apothecary_gaoshun.png deleted file mode 100644 index 003b2e1..0000000 Binary files a/profiles/Avatar/The Apothecary Diaries/apothecary_gaoshun.png and /dev/null differ diff --git a/profiles/Avatar/The Apothecary Diaries/apothecary_gyokuyou.png b/profiles/Avatar/The Apothecary Diaries/apothecary_gyokuyou.png deleted file mode 100644 index c9bc20e..0000000 Binary files a/profiles/Avatar/The Apothecary Diaries/apothecary_gyokuyou.png and /dev/null differ diff --git a/profiles/Avatar/The Apothecary Diaries/apothecary_jinshi-1.png b/profiles/Avatar/The Apothecary Diaries/apothecary_jinshi-1.png deleted file mode 100644 index 448903e..0000000 Binary files a/profiles/Avatar/The Apothecary Diaries/apothecary_jinshi-1.png and /dev/null differ diff --git a/profiles/Avatar/The Apothecary Diaries/apothecary_jinshi-2.png b/profiles/Avatar/The Apothecary Diaries/apothecary_jinshi-2.png deleted file mode 100644 index 867c232..0000000 Binary files a/profiles/Avatar/The Apothecary Diaries/apothecary_jinshi-2.png and /dev/null differ diff --git a/profiles/Avatar/The Apothecary Diaries/apothecary_lihaku.png b/profiles/Avatar/The Apothecary Diaries/apothecary_lihaku.png deleted file mode 100644 index 06b69c2..0000000 Binary files a/profiles/Avatar/The Apothecary Diaries/apothecary_lihaku.png and /dev/null differ diff --git a/profiles/Avatar/The Apothecary Diaries/apothecary_maomao-1.png b/profiles/Avatar/The Apothecary Diaries/apothecary_maomao-1.png deleted file mode 100644 index b31e6f8..0000000 Binary files a/profiles/Avatar/The Apothecary Diaries/apothecary_maomao-1.png and /dev/null differ diff --git a/profiles/Avatar/The Apothecary Diaries/apothecary_maomao-2.png b/profiles/Avatar/The Apothecary Diaries/apothecary_maomao-2.png deleted file mode 100644 index b57b82c..0000000 Binary files a/profiles/Avatar/The Apothecary Diaries/apothecary_maomao-2.png and /dev/null differ diff --git a/profiles/Avatar/The Apothecary Diaries/apothecary_xiaolan.png b/profiles/Avatar/The Apothecary Diaries/apothecary_xiaolan.png deleted file mode 100644 index 54dfaca..0000000 Binary files a/profiles/Avatar/The Apothecary Diaries/apothecary_xiaolan.png and /dev/null differ diff --git a/profiles/Avatar/The God of High School/16-the-god-of-high-school-jin-mori.png b/profiles/Avatar/The God of High School/16-the-god-of-high-school-jin-mori.png deleted file mode 100644 index 83f5e9e..0000000 Binary files a/profiles/Avatar/The God of High School/16-the-god-of-high-school-jin-mori.png and /dev/null differ diff --git a/profiles/Avatar/The God of High School/17-the-god-of-high-school-han-daewi.png b/profiles/Avatar/The God of High School/17-the-god-of-high-school-han-daewi.png deleted file mode 100644 index 12199ef..0000000 Binary files a/profiles/Avatar/The God of High School/17-the-god-of-high-school-han-daewi.png and /dev/null differ diff --git a/profiles/Avatar/The God of High School/18-the-god-of-high-school-yoo-mira.png b/profiles/Avatar/The God of High School/18-the-god-of-high-school-yoo-mira.png deleted file mode 100644 index d6af18b..0000000 Binary files a/profiles/Avatar/The God of High School/18-the-god-of-high-school-yoo-mira.png and /dev/null differ diff --git a/profiles/Avatar/The God of High School/19-the-god-of-high-school-park-mujin.png b/profiles/Avatar/The God of High School/19-the-god-of-high-school-park-mujin.png deleted file mode 100644 index 1fee0dd..0000000 Binary files a/profiles/Avatar/The God of High School/19-the-god-of-high-school-park-mujin.png and /dev/null differ diff --git a/profiles/Avatar/The God of High School/20-the-god-of-high-school-park-ilpyo.png b/profiles/Avatar/The God of High School/20-the-god-of-high-school-park-ilpyo.png deleted file mode 100644 index 5839059..0000000 Binary files a/profiles/Avatar/The God of High School/20-the-god-of-high-school-park-ilpyo.png and /dev/null differ diff --git a/profiles/Avatar/The Rising of the Shield Hero/100001-the-rising-of-the-shield-hero-naofumi.png b/profiles/Avatar/The Rising of the Shield Hero/100001-the-rising-of-the-shield-hero-naofumi.png deleted file mode 100644 index 440bbbe..0000000 Binary files a/profiles/Avatar/The Rising of the Shield Hero/100001-the-rising-of-the-shield-hero-naofumi.png and /dev/null differ diff --git a/profiles/Avatar/The Rising of the Shield Hero/100002-the-rising-of-the-shield-hero-raphtalia.png b/profiles/Avatar/The Rising of the Shield Hero/100002-the-rising-of-the-shield-hero-raphtalia.png deleted file mode 100644 index d50596f..0000000 Binary files a/profiles/Avatar/The Rising of the Shield Hero/100002-the-rising-of-the-shield-hero-raphtalia.png and /dev/null differ diff --git a/profiles/Avatar/The Rising of the Shield Hero/100003-the-rising-of-the-shield-hero-filo.png b/profiles/Avatar/The Rising of the Shield Hero/100003-the-rising-of-the-shield-hero-filo.png deleted file mode 100644 index cd2a07b..0000000 Binary files a/profiles/Avatar/The Rising of the Shield Hero/100003-the-rising-of-the-shield-hero-filo.png and /dev/null differ diff --git a/profiles/Avatar/The Rising of the Shield Hero/100004-the-rising-of-the-shield-hero-melty.png b/profiles/Avatar/The Rising of the Shield Hero/100004-the-rising-of-the-shield-hero-melty.png deleted file mode 100644 index ed6041f..0000000 Binary files a/profiles/Avatar/The Rising of the Shield Hero/100004-the-rising-of-the-shield-hero-melty.png and /dev/null differ diff --git a/profiles/Avatar/The Rising of the Shield Hero/100005-the-rising-of-the-shield-hero-rishia.png b/profiles/Avatar/The Rising of the Shield Hero/100005-the-rising-of-the-shield-hero-rishia.png deleted file mode 100644 index b0fa3cc..0000000 Binary files a/profiles/Avatar/The Rising of the Shield Hero/100005-the-rising-of-the-shield-hero-rishia.png and /dev/null differ diff --git a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1001-the-worlds-finest-assassin-lugh.png b/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1001-the-worlds-finest-assassin-lugh.png deleted file mode 100644 index 299e4a2..0000000 Binary files a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1001-the-worlds-finest-assassin-lugh.png and /dev/null differ diff --git a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1002-the-worlds-finest-assassin-dia.png b/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1002-the-worlds-finest-assassin-dia.png deleted file mode 100644 index e1d715b..0000000 Binary files a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1002-the-worlds-finest-assassin-dia.png and /dev/null differ diff --git a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1003-the-worlds-finest-assassin-tart.png b/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1003-the-worlds-finest-assassin-tart.png deleted file mode 100644 index fa56479..0000000 Binary files a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1003-the-worlds-finest-assassin-tart.png and /dev/null differ diff --git a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1004-the-worlds-finest-assassin-maha.png b/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1004-the-worlds-finest-assassin-maha.png deleted file mode 100644 index 18d8e48..0000000 Binary files a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1004-the-worlds-finest-assassin-maha.png and /dev/null differ diff --git a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1005-the-worlds-finest-assassin-assassin.png b/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1005-the-worlds-finest-assassin-assassin.png deleted file mode 100644 index afebfd5..0000000 Binary files a/profiles/Avatar/The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat/1005-the-worlds-finest-assassin-assassin.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1021-to-your-eternity-fushi.png b/profiles/Avatar/To Your Eternity/1021-to-your-eternity-fushi.png deleted file mode 100644 index 258f198..0000000 Binary files a/profiles/Avatar/To Your Eternity/1021-to-your-eternity-fushi.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1022-to-your-eternity-joann.png b/profiles/Avatar/To Your Eternity/1022-to-your-eternity-joann.png deleted file mode 100644 index 5f39102..0000000 Binary files a/profiles/Avatar/To Your Eternity/1022-to-your-eternity-joann.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1023-to-your-eternity-march.png b/profiles/Avatar/To Your Eternity/1023-to-your-eternity-march.png deleted file mode 100644 index 282419b..0000000 Binary files a/profiles/Avatar/To Your Eternity/1023-to-your-eternity-march.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1024-to-your-eternity-parona.png b/profiles/Avatar/To Your Eternity/1024-to-your-eternity-parona.png deleted file mode 100644 index 15093d2..0000000 Binary files a/profiles/Avatar/To Your Eternity/1024-to-your-eternity-parona.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1025-to-your-eternity-thebeholder.png b/profiles/Avatar/To Your Eternity/1025-to-your-eternity-thebeholder.png deleted file mode 100644 index 29e43f3..0000000 Binary files a/profiles/Avatar/To Your Eternity/1025-to-your-eternity-thebeholder.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1026-to-your-eternity-gugu.png b/profiles/Avatar/To Your Eternity/1026-to-your-eternity-gugu.png deleted file mode 100644 index 8ff8169..0000000 Binary files a/profiles/Avatar/To Your Eternity/1026-to-your-eternity-gugu.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1027-to-your-eternity-tonari.png b/profiles/Avatar/To Your Eternity/1027-to-your-eternity-tonari.png deleted file mode 100644 index f661ab9..0000000 Binary files a/profiles/Avatar/To Your Eternity/1027-to-your-eternity-tonari.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1028-to-your-eternity-theboy.png b/profiles/Avatar/To Your Eternity/1028-to-your-eternity-theboy.png deleted file mode 100644 index c5a6c38..0000000 Binary files a/profiles/Avatar/To Your Eternity/1028-to-your-eternity-theboy.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1029-to-your-eternity-fushi.png b/profiles/Avatar/To Your Eternity/1029-to-your-eternity-fushi.png deleted file mode 100644 index 0f72d4d..0000000 Binary files a/profiles/Avatar/To Your Eternity/1029-to-your-eternity-fushi.png and /dev/null differ diff --git a/profiles/Avatar/To Your Eternity/1030-to-your-eternity-march.png b/profiles/Avatar/To Your Eternity/1030-to-your-eternity-march.png deleted file mode 100644 index 5019d46..0000000 Binary files a/profiles/Avatar/To Your Eternity/1030-to-your-eternity-march.png and /dev/null differ diff --git a/profiles/Avatar/Tokyo Revengers/1036-tokyo-revengers-takemichi.png b/profiles/Avatar/Tokyo Revengers/1036-tokyo-revengers-takemichi.png deleted file mode 100644 index 4cc6d87..0000000 Binary files a/profiles/Avatar/Tokyo Revengers/1036-tokyo-revengers-takemichi.png and /dev/null differ diff --git a/profiles/Avatar/Tokyo Revengers/1037-tokyo-revengers-mikey.png b/profiles/Avatar/Tokyo Revengers/1037-tokyo-revengers-mikey.png deleted file mode 100644 index b4d0e36..0000000 Binary files a/profiles/Avatar/Tokyo Revengers/1037-tokyo-revengers-mikey.png and /dev/null differ diff --git a/profiles/Avatar/Tokyo Revengers/1038-tokyo-revengers-draken.png b/profiles/Avatar/Tokyo Revengers/1038-tokyo-revengers-draken.png deleted file mode 100644 index 6dd54ae..0000000 Binary files a/profiles/Avatar/Tokyo Revengers/1038-tokyo-revengers-draken.png and /dev/null differ diff --git a/profiles/Avatar/Tokyo Revengers/1039-tokyo-revengers-mitsuya.png b/profiles/Avatar/Tokyo Revengers/1039-tokyo-revengers-mitsuya.png deleted file mode 100644 index 980a853..0000000 Binary files a/profiles/Avatar/Tokyo Revengers/1039-tokyo-revengers-mitsuya.png and /dev/null differ diff --git a/profiles/Avatar/Tokyo Revengers/1040-tokyo-revengers-baji.png b/profiles/Avatar/Tokyo Revengers/1040-tokyo-revengers-baji.png deleted file mode 100644 index 7e0e1e8..0000000 Binary files a/profiles/Avatar/Tokyo Revengers/1040-tokyo-revengers-baji.png and /dev/null differ diff --git a/profiles/Avatar/Tower of God/11-tower-of-god-bam.png b/profiles/Avatar/Tower of God/11-tower-of-god-bam.png deleted file mode 100644 index 763e635..0000000 Binary files a/profiles/Avatar/Tower of God/11-tower-of-god-bam.png and /dev/null differ diff --git a/profiles/Avatar/Tower of God/12-tower-of-god-khun.png b/profiles/Avatar/Tower of God/12-tower-of-god-khun.png deleted file mode 100644 index 2f09440..0000000 Binary files a/profiles/Avatar/Tower of God/12-tower-of-god-khun.png and /dev/null differ diff --git a/profiles/Avatar/Tower of God/13-tower-of-god-rak.png b/profiles/Avatar/Tower of God/13-tower-of-god-rak.png deleted file mode 100644 index 11e8ad7..0000000 Binary files a/profiles/Avatar/Tower of God/13-tower-of-god-rak.png and /dev/null differ diff --git a/profiles/Avatar/Tower of God/14-tower-of-god-yuri-jahad.png b/profiles/Avatar/Tower of God/14-tower-of-god-yuri-jahad.png deleted file mode 100644 index 75f4285..0000000 Binary files a/profiles/Avatar/Tower of God/14-tower-of-god-yuri-jahad.png and /dev/null differ diff --git a/profiles/Avatar/Tower of God/15-tower-of-god-endorsi-jahad.png b/profiles/Avatar/Tower of God/15-tower-of-god-endorsi-jahad.png deleted file mode 100644 index 4ff3825..0000000 Binary files a/profiles/Avatar/Tower of God/15-tower-of-god-endorsi-jahad.png and /dev/null differ diff --git a/profiles/Avatar/ZOMBIE LAND SAGA/41-zombieland-saga-revenge-sakura-minamoto.png b/profiles/Avatar/ZOMBIE LAND SAGA/41-zombieland-saga-revenge-sakura-minamoto.png deleted file mode 100644 index cb8b959..0000000 Binary files a/profiles/Avatar/ZOMBIE LAND SAGA/41-zombieland-saga-revenge-sakura-minamoto.png and /dev/null differ diff --git a/profiles/Avatar/ZOMBIE LAND SAGA/42-zombieland-saga-revenge-saki-nikaido.png b/profiles/Avatar/ZOMBIE LAND SAGA/42-zombieland-saga-revenge-saki-nikaido.png deleted file mode 100644 index d9a21c4..0000000 Binary files a/profiles/Avatar/ZOMBIE LAND SAGA/42-zombieland-saga-revenge-saki-nikaido.png and /dev/null differ diff --git a/profiles/Avatar/ZOMBIE LAND SAGA/43-zombieland-saga-revenge-ai-mizuno.png b/profiles/Avatar/ZOMBIE LAND SAGA/43-zombieland-saga-revenge-ai-mizuno.png deleted file mode 100644 index f22f4f4..0000000 Binary files a/profiles/Avatar/ZOMBIE LAND SAGA/43-zombieland-saga-revenge-ai-mizuno.png and /dev/null differ diff --git a/profiles/Avatar/ZOMBIE LAND SAGA/44-zombieland-saga-revenge-junko-konno.png b/profiles/Avatar/ZOMBIE LAND SAGA/44-zombieland-saga-revenge-junko-konno.png deleted file mode 100644 index a5ff294..0000000 Binary files a/profiles/Avatar/ZOMBIE LAND SAGA/44-zombieland-saga-revenge-junko-konno.png and /dev/null differ diff --git a/profiles/Avatar/ZOMBIE LAND SAGA/45-zombieland-saga-revenge-yugiri.png b/profiles/Avatar/ZOMBIE LAND SAGA/45-zombieland-saga-revenge-yugiri.png deleted file mode 100644 index ad4616a..0000000 Binary files a/profiles/Avatar/ZOMBIE LAND SAGA/45-zombieland-saga-revenge-yugiri.png and /dev/null differ diff --git a/profiles/Avatar/ZOMBIE LAND SAGA/46-zombieland-saga-revenge-lily-hoshikawa.png b/profiles/Avatar/ZOMBIE LAND SAGA/46-zombieland-saga-revenge-lily-hoshikawa.png deleted file mode 100644 index 294653e..0000000 Binary files a/profiles/Avatar/ZOMBIE LAND SAGA/46-zombieland-saga-revenge-lily-hoshikawa.png and /dev/null differ diff --git a/profiles/Avatar/ZOMBIE LAND SAGA/47-zombieland-saga-revenge-tae-yamada.png b/profiles/Avatar/ZOMBIE LAND SAGA/47-zombieland-saga-revenge-tae-yamada.png deleted file mode 100644 index ec11ce4..0000000 Binary files a/profiles/Avatar/ZOMBIE LAND SAGA/47-zombieland-saga-revenge-tae-yamada.png and /dev/null differ diff --git a/profiles/avatar.json b/profiles/avatar.json deleted file mode 100644 index 9bc6855..0000000 --- a/profiles/avatar.json +++ /dev/null @@ -1,1437 +0,0 @@ -{ - "items": [ - { - "title": "Crunchyroll", - "assets": [ - { - "id": "0001-cr-white-orange.png", - "title": "0001-cr-white-orange.png" - }, - { - "id": "0002-cr-orange-white.png", - "title": "0002-cr-orange-white.png" - }, - { - "id": "0003-cr-white-gradient1.png", - "title": "0003-cr-white-gradient1.png" - }, - { - "id": "0004-cr-white-gradient2.png", - "title": "0004-cr-white-gradient2.png" - }, - { - "id": "0005-cr-white-gradient3.png", - "title": "0005-cr-white-gradient3.png" - }, - { - "id": "0006-cr-white-black.png", - "title": "0006-cr-white-black.png" - }, - { - "id": "0007-cr-orange-blue.png", - "title": "0007-cr-orange-blue.png" - }, - { - "id": "0008-cr-orange-black.png", - "title": "0008-cr-orange-black.png" - }, - { - "id": "0009-cr-rainbow-white.png", - "title": "0009-cr-rainbow-white.png" - }, - { - "id": "0010-cr-white-rainbow.png", - "title": "0010-cr-white-rainbow.png" - }, - { - "id": "001-cr-hime-happy.png", - "title": "Happy Crunchyroll Hime" - }, - { - "id": "002-cr-hime-annoyed.png", - "title": "Annoyed Crunchyroll Hime" - }, - { - "id": "003-cr-hime-excited.png", - "title": "Excited Crunchyroll Hime" - }, - { - "id": "004-cr-hime-mischievous.png", - "title": "Mischievous Crunchyroll Hime" - }, - { - "id": "005-cr-hime-sleepy.png", - "title": "Sleepy Crunchyroll Hime" - }, - { - "id": "006-cr-hime-sad.png", - "title": "Crying Crunchyroll Hime" - }, - { - "id": "007-cr-hime-relaxed.png", - "title": "Relaxed Crunchyroll Hime" - }, - { - "id": "008-cr-hime-angry.png", - "title": "Angry Crunchyroll Hime" - }, - { - "id": "009-cr-hime-winking.png", - "title": "Winking Crunchyroll Hime" - }, - { - "id": "010-cr-hime-accomplished.png", - "title": "Peace Sign Crunchyroll Hime" - } - ] - }, - { - "title": "One Piece", - "assets": [ - { - "id": "egghead-luffy.png", - "title": "One Piece" - }, - { - "id": "egghead-nami.png", - "title": "One Piece" - }, - { - "id": "egghead-sanji.png", - "title": "One Piece" - }, - { - "id": "egghead-zoro.png", - "title": "One Piece" - }, - { - "id": "egghead-robin.png", - "title": "One Piece" - }, - { - "id": "egghead-chopper.png", - "title": "One Piece" - }, - { - "id": "egghead-usopp.png", - "title": "One Piece" - }, - { - "id": "egghead-franky.png", - "title": "One Piece" - }, - { - "id": "egghead-brook.png", - "title": "One Piece" - }, - { - "id": "egghead-jimbei.png", - "title": "One Piece" - }, - { - "id": "avatars-luffy.png", - "title": "luffy from one piece" - }, - { - "id": "avatars-law.png", - "title": "Law from One Piece" - }, - { - "id": "avatars-chopper.png", - "title": "Chopper from One Piece" - }, - { - "id": "avatars-kid.png", - "title": "Kid from One Piece" - }, - { - "id": "avatars-kaido.png", - "title": "Kaido from One Piece" - }, - { - "id": "avatars-jinbei.png", - "title": "Jinbei from One Piece" - }, - { - "id": "avatars-big_mom.png", - "title": "Big Mom from One Piece" - }, - { - "id": "avatars-usopp.png", - "title": "USOPP from One Piece" - }, - { - "id": "avatars-shanks.png", - "title": "Shanks from One Piece" - }, - { - "id": "avatars-sanji.png", - "title": "Sanji from One Piece" - }, - { - "id": "avatars-robin.png", - "title": "Robin from One Piece" - }, - { - "id": "avatars-zoro.png", - "title": "Zoro from One Piece" - }, - { - "id": "avatars-yamato.png", - "title": "Yamato from One Piece" - }, - { - "id": "avatars-perona.png", - "title": "Perona from One Piece" - }, - { - "id": "avatars-franky.png", - "title": "Franky from One Piece" - }, - { - "id": "avatars-brook.png", - "title": "Brook from One Piece" - }, - { - "id": "avatars-nami.png", - "title": "Nami from One Piece" - }, - { - "id": "one-piece-luffy-4.png", - "title": "Luffy from One Piece" - }, - { - "id": "one-piece-roronoa-zoro-1.png", - "title": "Roronoa Zoro from One PIece" - }, - { - "id": "one-piece-sanji-1.png", - "title": "Sanji from One Piece" - }, - { - "id": "one-piece-chopper-3.png", - "title": "Chopper from One Piece" - }, - { - "id": "one-piece-usopp-1.png", - "title": "Usopp from One PIece" - }, - { - "id": "one-piece-franky-3.png", - "title": "Franky from One Piece" - }, - { - "id": "one-piece-nico-robin-1.png", - "title": "Nico Robin from One Piece" - }, - { - "id": "one-piece-jimbei-3.png", - "title": "Jimbei from One Piece" - }, - { - "id": "one-piece-luffy-5.png", - "title": "Luffy from One Piece" - }, - { - "id": "one-piece-luffy-3.png", - "title": "Luffy from One Piece" - }, - { - "id": "one-piece-luffy-2.png", - "title": "Luffy from One Piece" - }, - { - "id": "one-piece-luffy-1.png", - "title": "Luffy from One Piece" - }, - { - "id": "one-piece-roronoa-zoro-2.png", - "title": "Roronoa Zoro from One PIece" - }, - { - "id": "one-piece-chopper-1.png", - "title": "Chopper from One Piece" - }, - { - "id": "one-piece-chopper-2.png", - "title": "Chopper from One Piece" - }, - { - "id": "one-piece-sanji-3.png", - "title": "Sanji from One Piece" - }, - { - "id": "one-piece-sanji-2.png", - "title": "Sanji from One Piece" - }, - { - "id": "one-piece-usopp-2.png", - "title": "Usopp from One PIece" - }, - { - "id": "one-piece-franky-1.png", - "title": "Franky from One Piece" - }, - { - "id": "one-piece-franky-2.png", - "title": "Franky from One Piece" - }, - { - "id": "one-piece-nico-robin-2.png", - "title": "Nico Robin from One Piece" - }, - { - "id": "one-piece-nico-robin-3.png", - "title": "Nico Robin from One Piece" - }, - { - "id": "one-piece-jimbei-4.png", - "title": "Jimbei from One Piece" - }, - { - "id": "one-piece-jimbei-2.png", - "title": "Jimbei from One Piece" - }, - { - "id": "one-piece-jimbei-1.png", - "title": "Jimbei from One Piece" - } - ] - }, - { - "title": "One Piece: Gear Five", - "assets": [ - { - "id": "gear5avatar1.png", - "title": "Luffy’s Peak – Attained! Gear Five" - }, - { - "id": "gear5avatar2.png", - "title": "Luffy’s Peak – Attained! Gear Five" - }, - { - "id": "gear5avatar3.png", - "title": "Luffy’s Peak – Attained! Gear Five" - }, - { - "id": "gear5avatar4.png", - "title": "Luffy’s Peak – Attained! Gear Five" - }, - { - "id": "gear5avatar5.png", - "title": "Luffy’s Peak – Attained! Gear Five" - }, - { - "id": "gear5avatar6.png", - "title": "Luffy’s Peak – Attained! Gear Five" - }, - { - "id": "gear5avatar7.png", - "title": "Luffy’s Peak – Attained! Gear Five" - }, - { - "id": "gear5avatar8.png", - "title": "Luffy’s Peak – Attained! Gear Five" - }, - { - "id": "gear5avatar9.png", - "title": "Luffy’s Peak – Attained! Gear Five" - } - ] - }, - { - "title": "Solo Leveling", - "assets": [ - { - "id": "solo_sungjinwoo.png", - "title": "Solo Leveling" - }, - { - "id": "solo_chahaein.png", - "title": "Solo Leveling" - }, - { - "id": "solo_yoojinho.png", - "title": "Solo Leveling" - }, - { - "id": "solo_choijongin.png", - "title": "Solo Leveling" - }, - { - "id": "solo_woojinchul.png", - "title": "Solo Leveling" - }, - { - "id": "solo_gogunhee.png", - "title": "Solo Leveling" - }, - { - "id": "solo_baekyoonho.png", - "title": "Solo Leveling" - }, - { - "id": "solo_teaser_visual.png", - "title": "Solo Leveling" - } - ] - }, - { - "title": "JUJUTSU KAISEN", - "assets": [ - { - "id": "1041-jujutsu-kaisen-yuji-itadori.png", - "title": "1041-jujutsu-kaisen-yuji-itadori.png" - }, - { - "id": "1042-jujutsu-kaisen-megumi-fushigoro.png", - "title": "1042-jujutsu-kaisen-megumi-fushigoro.png" - }, - { - "id": "1043-jujutsu-kaisen-nobara-kugisaki.png", - "title": "1043-jujutsu-kaisen-nobara-kugisaki.png" - }, - { - "id": "1044-jujutsu-kaisen-satoru-gojo.png", - "title": "1044-jujutsu-kaisen-satoru-gojo.png" - }, - { - "id": "1045-jujutsu-kaisen-ryomen-sukuna.png", - "title": "1045-jujutsu-kaisen-ryomen-sukuna.png" - } - ] - }, - { - "title": "Frieren: Beyond Journey's End", - "assets": [ - { - "id": "freiren-avatar-1.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "freiren-avatar-2.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "freiren-avatar-3.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_fern-avatar-1.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_fern-avatar-2.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_stark-avatar-1.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_stark-avatar-2.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_himmel-avatar-1.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_himmel-avatar-2.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_heiter-avatar-1.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_heiter-avatar-2.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_eisen-avatar-1.png", - "title": "Frieren: Beyond Journey's End" - }, - { - "id": "frieren_eisen-avatar-2.png", - "title": "Frieren: Beyond Journey's End" - } - ] - }, - { - "title": "Attack on Titan", - "assets": [ - { - "id": "aot_fc_eren-avatar.png", - "title": "Attack on Titan" - }, - { - "id": "aot_fc_mikasa-avatar.png", - "title": "Attack on Titan" - }, - { - "id": "aot_fc_armin-avatar.png", - "title": "Attack on Titan" - }, - { - "id": "aot_fc_levi-avatar.png", - "title": "Attack on Titan" - }, - { - "id": "aot_fc_reiner-avatar.png", - "title": "Attack on Titan" - }, - { - "id": "aot_fc_annie-avatar.png", - "title": "Attack on Titan" - }, - { - "id": "aot_fc_jean-avatar.png", - "title": "Attack on Titan" - }, - { - "id": "aot_fc_conny-avatar.png", - "title": "Attack on Titan" - }, - { - "id": "aot_fc_hange-avatar.png", - "title": "Attack on Titan" - }, - { - "id": "aot_fc_sasha-avatar.png", - "title": "Attack on Titan" - } - ] - }, - { - "title": "Mushoku Tensei: Jobless Reincarnation", - "assets": [ - { - "id": "mushokutensei_rudeus-school-uniform.png", - "title": "Rudeus - School Uniform from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_sylphie-fitz.png", - "title": "Sylphie from Mushoku Tensei" - }, - { - "id": "mushokutensei_sara.png", - "title": "Mushoku Tensei: Sara" - }, - { - "id": "mushokutensei_juli.png", - "title": "Juli from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_cliff.png", - "title": "Cliff from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_ariel.png", - "title": "Ariel from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_elinalise.png", - "title": "Elinalise from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_eris.png", - "title": "Eris from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_ghislaine.png", - "title": "Ghislaine from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_linia.png", - "title": "Linia from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_luke.png", - "title": "Luke from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_pursena.png", - "title": "Pursena from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_rudeus.png", - "title": "Rudeus from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_ruijerd.png", - "title": "Ruijerd from Mushoku Tensei: Jobless Reincarnation" - }, - { - "id": "mushokutensei_soldat.png", - "title": "Soldat from Mushoku Tensei" - }, - { - "id": "mushokutensei_suzanne.png", - "title": "Suzanne from MushokuTensei" - }, - { - "id": "mushokutensei_sylphie.png", - "title": "Sylphie from Mushoku Tensei" - }, - { - "id": "mushokutensei_zanoba.png", - "title": "Zanoba from Mushoku Tensei" - } - ] - }, - { - "title": "SPY x FAMILY", - "assets": [ - { - "id": "100006-spy-x-family-loid.png", - "title": "100006-spy-x-family-loid.png" - }, - { - "id": "100007-spy-x-family-yor.png", - "title": "100007-spy-x-family-yor.png" - }, - { - "id": "100008-spy-x-family-anya-1.png", - "title": "100008-spy-x-family-anya-1.png" - }, - { - "id": "100009-spy-x-family-anya-2.png", - "title": "100009-spy-x-family-anya-2.png" - }, - { - "id": "100010-spy-x-family-anya-3.png", - "title": "100010-spy-x-family-anya-3.png" - } - ] - }, - { - "title": "Chainsaw Man", - "assets": [ - { - "id": "chainsawman-denji.png", - "title": "Avatar of Denji from Chainsaw Man" - }, - { - "id": "chainsawman-aki.png", - "title": "Avatar of Aki from Chainsaw Man holding a sword" - }, - { - "id": "chainsawman-power.png", - "title": "Avatar of Power from Chainsaw Man" - }, - { - "id": "chainsawman-makima.png", - "title": "Avatar of Makima from Chainsaw Man" - }, - { - "id": "chainsawman-pochita.png", - "title": "Avatar of Pochita from Chainsaw Man" - }, - { - "id": "chainsawman-chainsawman.png", - "title": "Avatar of Chainsaw Man from Chainsaw Man" - }, - { - "id": "chainsawman-kobeni.png", - "title": "Avatar of Kobeni from Chainsaw Man holding up two peace signs" - }, - { - "id": "chainsawman-himeno.png", - "title": "Avatar of Himeno from Chainsaw Man" - }, - { - "id": "chainsawman-kishibe.png", - "title": "Avatar of Kishibe from Chainsaw Man" - } - ] - }, - { - "title": "BOCCHI THE ROCK!", - "assets": [ - { - "id": "bocchi-avatar.png", - "title": "BOCCHI THE ROCK!" - }, - { - "id": "bocchi-kv-avatar.png", - "title": "BOCCHI THE ROCK!" - }, - { - "id": "bochhi-nijika-avatar.png", - "title": "BOCCHI THE ROCK!" - }, - { - "id": "bocchi-nijika-kv-avatar.png", - "title": "BOCCHI THE ROCK!" - }, - { - "id": "bocchi-ryo-avatar.png", - "title": "BOCCHI THE ROCK!" - }, - { - "id": "bocchi-ryo-kv-avatar.png", - "title": "BOCCHI THE ROCK!" - }, - { - "id": "bocchi-kita-avatar.png", - "title": "BOCCHI THE ROCK!" - }, - { - "id": "bocchi-iita-kv-avatar.png", - "title": "BOCCHI THE ROCK!" - } - ] - }, - { - "title": "The Apothecary Diaries", - "assets": [ - { - "id": "apothecary_maomao-1.png", - "title": "The Apothecary Diaries" - }, - { - "id": "apothecary_maomao-2.png", - "title": "The Apothecary Diaries" - }, - { - "id": "apothecary_jinshi-1.png", - "title": "The Apothecary Diaries" - }, - { - "id": "apothecary_jinshi-2.png", - "title": "The Apothecary Diaries" - }, - { - "id": "apothecary_gyokuyou.png", - "title": "The Apothecary Diaries" - }, - { - "id": "apothecary_xiaolan.png", - "title": "The Apothecary Diaries" - }, - { - "id": "apothecary_gaoshun.png", - "title": "The Apothecary Diaries" - }, - { - "id": "apothecary_lihaku.png", - "title": "The Apothecary Diaries" - } - ] - }, - { - "title": "HIGH CARD", - "assets": [ - { - "id": "finn-1.png", - "title": "HIGH CARD" - }, - { - "id": "chris-1.png", - "title": "HIGH CARD" - }, - { - "id": "leo-1.png", - "title": "HIGH CARD" - }, - { - "id": "wendy-1.png", - "title": "HIGH CARD" - }, - { - "id": "vijay-1.png", - "title": "HIGH CARD" - }, - { - "id": "finn-2.png", - "title": "HIGH CARD" - }, - { - "id": "chris-2.png", - "title": "HIGH CARD" - }, - { - "id": "leo-2.png", - "title": "HIGH CARD" - }, - { - "id": "wendy-2.png", - "title": "HIGH CARD" - }, - { - "id": "vijay-2.png", - "title": "HIGH CARD" - } - ] - }, - { - "title": "My Dress-Up Darling", - "assets": [ - { - "id": "my-dress-up-marin-1-avatar.png", - "title": "My Dress-Up Darling" - }, - { - "id": "my-dress-up-marin-2-avatar.png", - "title": "My Dress-Up Darling" - }, - { - "id": "my-dress-up-marin-normal-avatar.png", - "title": "My Dress-Up Darling" - }, - { - "id": "my-dress-up-marin-cosplay-avatar.png", - "title": "My Dress-Up Darling" - }, - { - "id": "my-dress-up-gojo-1-avatar.png", - "title": "My Dress-Up Darling" - }, - { - "id": "my-dress-up-gojo-2-avatar.png", - "title": "My Dress-Up Darling" - }, - { - "id": "my-dress-up-sajuna-1-avatar.png", - "title": "My Dress-Up Darling" - }, - { - "id": "my-dress-up-sajuna-2-avatar.png", - "title": "My Dress-Up Darling" - }, - { - "id": "my-dress-up-shinju-1-avatar.png", - "title": "My Dress-Up Darling" - }, - { - "id": "my-dress-up-shinju-2-avatar.png", - "title": "My Dress-Up Darling" - } - ] - }, - { - "title": "Metallic Rouge", - "assets": [ - { - "id": "rouge-1.png", - "title": "Metallic Rouge" - }, - { - "id": "rouge-2.png", - "title": "Metallic Rouge" - }, - { - "id": "rouge-3.png", - "title": "Metallic Rouge" - }, - { - "id": "rouge-4.png", - "title": "Metallic Rouge" - }, - { - "id": "naomi-1.png", - "title": "Metallic Rouge" - }, - { - "id": "naomi-2.png", - "title": "Metallic Rouge" - }, - { - "id": "gene-1.png", - "title": "Metallic Rouge" - }, - { - "id": "gene-2.png", - "title": "Metallic Rouge" - }, - { - "id": "giallon-1.png", - "title": "Metallic Rouge" - }, - { - "id": "giallon-2.png", - "title": "Metallic Rouge" - }, - { - "id": "sarah.png", - "title": "Metallic Rouge" - }, - { - "id": "jill.png", - "title": "Metallic Rouge" - }, - { - "id": "afdal.png", - "title": "Metallic Rouge" - }, - { - "id": "eden.png", - "title": "Metallic Rouge" - }, - { - "id": "ash.png", - "title": "Metallic Rouge" - }, - { - "id": "noid.png", - "title": "Metallic Rouge" - } - ] - }, - { - "title": "I'm in Love with the Villainess", - "assets": [ - { - "id": "im_in_love_rae-kv1.png", - "title": "I'm in Love with the Villainess" - }, - { - "id": "im_in_love_clarie-kv1.png", - "title": "I'm in Love with the Villainess" - }, - { - "id": "im_in_love_rae-kv2.png", - "title": "I'm in Love with the Villainess" - }, - { - "id": "im_in_love_clarie-kv2.png", - "title": "I'm in Love with the Villainess" - }, - { - "id": "im_in_love_rae.png", - "title": "I'm in Love with the Villainess" - }, - { - "id": "im_in_love_clarie.png", - "title": "I'm in Love with the Villainess" - }, - { - "id": "im_in_love_lene.png", - "title": "I'm in Love with the Villainess" - }, - { - "id": "im_in_love_misha.png", - "title": "I'm in Love with the Villainess" - }, - { - "id": "im_in_love_manaria.png", - "title": "I'm in Love with the Villainess" - } - ] - }, - { - "title": "Rent-a-Girlfriend", - "assets": [ - { - "id": "rent-a-gf-chizuru-s1-date-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-chizuru-s2-date-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-chizuru-s3-date-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-mami-s1-date-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-mami-s2-date-kv_2.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-mami-s3-date-kv_2.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-ruka-s1-date-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-ruka-s2-date-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-ruka-s3-date-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-mami-s2-date-kv_1.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-mami-s3-date-kv_1.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-sumi-s1-date-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-yaemori-s3-date-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-yaemori-s3-main-kv.png", - "title": "Rent-a-Girlfriend" - }, - { - "id": "rent-a-gf-yaemori-s3-teaser-kv.png", - "title": "Rent-a-Girlfriend" - } - ] - }, - { - "title": "The Rising of the Shield Hero", - "assets": [ - { - "id": "100001-the-rising-of-the-shield-hero-naofumi.png", - "title": "100001-the-rising-of-the-shield-hero-naofumi.png" - }, - { - "id": "100002-the-rising-of-the-shield-hero-raphtalia.png", - "title": "100002-the-rising-of-the-shield-hero-raphtalia.png" - }, - { - "id": "100003-the-rising-of-the-shield-hero-filo.png", - "title": "100003-the-rising-of-the-shield-hero-filo.png" - }, - { - "id": "100004-the-rising-of-the-shield-hero-melty.png", - "title": "100004-the-rising-of-the-shield-hero-melty.png" - }, - { - "id": "100005-the-rising-of-the-shield-hero-rishia.png", - "title": "100005-the-rising-of-the-shield-hero-rishia.png" - } - ] - }, - { - "title": "Tokyo Revengers", - "assets": [ - { - "id": "1040-tokyo-revengers-baji.png", - "title": "1040-tokyo-revengers-baji.png" - }, - { - "id": "1039-tokyo-revengers-mitsuya.png", - "title": "1039-tokyo-revengers-mitsuya.png" - }, - { - "id": "1038-tokyo-revengers-draken.png", - "title": "1038-tokyo-revengers-draken.png" - }, - { - "id": "1037-tokyo-revengers-mikey.png", - "title": "1037-tokyo-revengers-mikey.png" - }, - { - "id": "1036-tokyo-revengers-takemichi.png", - "title": "1036-tokyo-revengers-takemichi.png" - } - ] - }, - { - "title": "Black Clover", - "assets": [ - { - "id": "1056-black-clover-asta.png", - "title": "1056-black-clover-asta.png" - }, - { - "id": "1057-black-clover-yuno.png", - "title": "1057-black-clover-yuno.png" - }, - { - "id": "1058-black-clover-noelle.png", - "title": "1058-black-clover-noelle.png" - }, - { - "id": "1059-black-clover-yami.png", - "title": "1059-black-clover-yami.png" - }, - { - "id": "1060-black-clover-nero.png", - "title": "1060-black-clover-nero.png" - } - ] - }, - { - "title": "That Time I Got Reincarnated as a Slime", - "assets": [ - { - "id": "40-that-time-i-got-reincarnated-as-a-slime-hinata.png", - "title": "40-that-time-i-got-reincarnated-as-a-slime-hinata.png" - }, - { - "id": "39-that-time-i-got-reincarnated-as-a-slime-rimuru-slime.png", - "title": "39-that-time-i-got-reincarnated-as-a-slime-rimuru-slime.png" - }, - { - "id": "38-that-time-i-got-reincarnated-as-a-slime-shion.png", - "title": "38-that-time-i-got-reincarnated-as-a-slime-shion.png" - }, - { - "id": "37-that-time-i-got-reincarnated-as-a-slime-shuna.png", - "title": "37-that-time-i-got-reincarnated-as-a-slime-shuna.png" - }, - { - "id": "36-that-time-i-got-reincarnated-as-a-slime-rimuru-human.png", - "title": "36-that-time-i-got-reincarnated-as-a-slime-rimuru-human.png" - } - ] - }, - { - "title": "Dr. STONE", - "assets": [ - { - "id": "1046-dr-stone-senku.png", - "title": "1046-dr-stone-senku.png" - }, - { - "id": "1047-dr-stone-suika.png", - "title": "1047-dr-stone-suika.png" - }, - { - "id": "1048-dr-stone-kohaku.png", - "title": "1048-dr-stone-kohaku.png" - }, - { - "id": "1049-dr-stone-chrome.png", - "title": "1049-dr-stone-chrome.png" - }, - { - "id": "1050-dr-stone-gen.png", - "title": "1050-dr-stone-gen.png" - } - ] - }, - { - "title": "The World's Finest Assassin Gets Reincarnated in Another World as an Aristocrat", - "assets": [ - { - "id": "1001-the-worlds-finest-assassin-lugh.png", - "title": "1001-the-worlds-finest-assassin-lugh.png" - }, - { - "id": "1002-the-worlds-finest-assassin-dia.png", - "title": "1002-the-worlds-finest-assassin-dia.png" - }, - { - "id": "1003-the-worlds-finest-assassin-tart.png", - "title": "1003-the-worlds-finest-assassin-tart.png" - }, - { - "id": "1004-the-worlds-finest-assassin-maha.png", - "title": "1004-the-worlds-finest-assassin-maha.png" - }, - { - "id": "1005-the-worlds-finest-assassin-assassin.png", - "title": "1005-the-worlds-finest-assassin-assassin.png" - } - ] - }, - { - "title": "So I'm a Spider, So What?", - "assets": [ - { - "id": "1051-so-im-a-spider-so-what-kumoko.png", - "title": "1051-so-im-a-spider-so-what-kumoko.png" - }, - { - "id": "1052-so-im-a-spider-so-what-shun.png", - "title": "1052-so-im-a-spider-so-what-shun.png" - }, - { - "id": "1053-so-im-a-spider-so-what-katia.png", - "title": "1053-so-im-a-spider-so-what-katia.png" - }, - { - "id": "1054-so-im-a-spider-so-what-sue.png", - "title": "1054-so-im-a-spider-so-what-sue.png" - }, - { - "id": "1055-so-im-a-spider-so-what-fei.png", - "title": "1055-so-im-a-spider-so-what-fei.png" - } - ] - }, - { - "title": "To Your Eternity", - "assets": [ - { - "id": "1021-to-your-eternity-fushi.png", - "title": "1021-to-your-eternity-fushi.png" - }, - { - "id": "1022-to-your-eternity-joann.png", - "title": "1022-to-your-eternity-joann.png" - }, - { - "id": "1023-to-your-eternity-march.png", - "title": "1023-to-your-eternity-march.png" - }, - { - "id": "1024-to-your-eternity-parona.png", - "title": "1024-to-your-eternity-parona.png" - }, - { - "id": "1025-to-your-eternity-thebeholder.png", - "title": "1025-to-your-eternity-thebeholder.png" - }, - { - "id": "1026-to-your-eternity-gugu.png", - "title": "1026-to-your-eternity-gugu.png" - }, - { - "id": "1027-to-your-eternity-tonari.png", - "title": "1027-to-your-eternity-tonari.png" - }, - { - "id": "1028-to-your-eternity-theboy.png", - "title": "1028-to-your-eternity-theboy.png" - }, - { - "id": "1029-to-your-eternity-fushi.png", - "title": "1029-to-your-eternity-fushi.png" - }, - { - "id": "1030-to-your-eternity-march.png", - "title": "1030-to-your-eternity-march.png" - } - ] - }, - { - "title": "ZOMBIE LAND SAGA", - "assets": [ - { - "id": "46-zombieland-saga-revenge-lily-hoshikawa.png", - "title": "46-zombieland-saga-revenge-lily-hoshikawa.png" - }, - { - "id": "45-zombieland-saga-revenge-yugiri.png", - "title": "45-zombieland-saga-revenge-yugiri.png" - }, - { - "id": "47-zombieland-saga-revenge-tae-yamada.png", - "title": "47-zombieland-saga-revenge-tae-yamada.png" - }, - { - "id": "44-zombieland-saga-revenge-junko-konno.png", - "title": "44-zombieland-saga-revenge-junko-konno.png" - }, - { - "id": "43-zombieland-saga-revenge-ai-mizuno.png", - "title": "43-zombieland-saga-revenge-ai-mizuno.png" - }, - { - "id": "42-zombieland-saga-revenge-saki-nikaido.png", - "title": "42-zombieland-saga-revenge-saki-nikaido.png" - }, - { - "id": "41-zombieland-saga-revenge-sakura-minamoto.png", - "title": "41-zombieland-saga-revenge-sakura-minamoto.png" - } - ] - }, - { - "title": "Somali and the Forest Spirit", - "assets": [ - { - "id": "35-somali-and-the-forest-spirit-kikila.jpg", - "title": "35-somali-and-the-forest-spirit-kikila.jpg" - }, - { - "id": "34-somali-and-the-forest-spirit-uzoi.jpg", - "title": "34-somali-and-the-forest-spirit-uzoi.jpg" - }, - { - "id": "33-somali-and-the-forest-spirit-shizuno.jpg", - "title": "33-somali-and-the-forest-spirit-shizuno.jpg" - }, - { - "id": "32-somali-and-the-forest-spirit-somali.jpg", - "title": "32-somali-and-the-forest-spirit-somali.jpg" - }, - { - "id": "31-somali-and-the-forest-spirit-golem.jpg", - "title": "31-somali-and-the-forest-spirit-golem.jpg" - } - ] - }, - { - "title": "In/Spectre", - "assets": [ - { - "id": "30-inspectre-komainu.png", - "title": "30-inspectre-komainu.png" - }, - { - "id": "29-inspectre-steel-lady-nanase.png", - "title": "29-inspectre-steel-lady-nanase.png" - }, - { - "id": "28-inspectre-saki-yumihara.png", - "title": "28-inspectre-saki-yumihara.png" - }, - { - "id": "27-inspectre-kuro-sakuragawa.png", - "title": "27-inspectre-kuro-sakuragawa.png" - }, - { - "id": "26-inspectre-kotoko-iwanaga.png", - "title": "26-inspectre-kotoko-iwanaga.png" - } - ] - }, - { - "title": "The God of High School", - "assets": [ - { - "id": "20-the-god-of-high-school-park-ilpyo.png", - "title": "20-the-god-of-high-school-park-ilpyo.png" - }, - { - "id": "19-the-god-of-high-school-park-mujin.png", - "title": "19-the-god-of-high-school-park-mujin.png" - }, - { - "id": "18-the-god-of-high-school-yoo-mira.png", - "title": "18-the-god-of-high-school-yoo-mira.png" - }, - { - "id": "17-the-god-of-high-school-han-daewi.png", - "title": "17-the-god-of-high-school-han-daewi.png" - }, - { - "id": "16-the-god-of-high-school-jin-mori.png", - "title": "16-the-god-of-high-school-jin-mori.png" - } - ] - }, - { - "title": "Tower of God", - "assets": [ - { - "id": "15-tower-of-god-endorsi-jahad.png", - "title": "15-tower-of-god-endorsi-jahad.png" - }, - { - "id": "14-tower-of-god-yuri-jahad.png", - "title": "14-tower-of-god-yuri-jahad.png" - }, - { - "id": "13-tower-of-god-rak.png", - "title": "13-tower-of-god-rak.png" - }, - { - "id": "11-tower-of-god-bam.png", - "title": "11-tower-of-god-bam.png" - }, - { - "id": "12-tower-of-god-khun.png", - "title": "12-tower-of-god-khun.png" - } - ] - }, - { - "title": "Fena: Pirate Princess", - "assets": [ - { - "id": "1011-fena-pirate-princess-fena.png", - "title": "1011-fena-pirate-princess-fena.png" - }, - { - "id": "1013-fena-pirate-princess-shitan.png", - "title": "1013-fena-pirate-princess-shitan.png" - }, - { - "id": "1012-fena-pirate-princess-yukimaru.png", - "title": "1012-fena-pirate-princess-yukimaru.png" - }, - { - "id": "1014-fena-pirate-princess-karin.png", - "title": "1014-fena-pirate-princess-karin.png" - }, - { - "id": "1015-fena-pirate-princess-twins.png", - "title": "1015-fena-pirate-princess-twins.png" - }, - { - "id": "1016-fena-pirate-princess-makaba.png", - "title": "1016-fena-pirate-princess-makaba.png" - }, - { - "id": "1017-fena-pirate-princess-tsubaki.png", - "title": "1017-fena-pirate-princess-tsubaki.png" - }, - { - "id": "1019-fena-pirate-princess-fena-young.png", - "title": "1019-fena-pirate-princess-fena-young.png" - }, - { - "id": "1018-fena-pirate-princess-brule.png", - "title": "1018-fena-pirate-princess-brule.png" - }, - { - "id": "1020-fena-pirate-princess-yukimaru-young.png", - "title": "1020-fena-pirate-princess-yukimaru-young.png" - } - ] - }, - { - "title": "Bananya", - "assets": [ - { - "id": "25-bananya-emo.png", - "title": "25-bananya-emo.png" - }, - { - "id": "24-bananya-night-rainbow.png", - "title": "24-bananya-night-rainbow.png" - }, - { - "id": "23-bananya-pirate.png", - "title": "23-bananya-pirate.png" - }, - { - "id": "22-bananya-droopy-eared.png", - "title": "22-bananya-droopy-eared.png" - }, - { - "id": "21-bananya-bananya.png", - "title": "21-bananya-bananya.png" - } - ] - }, - { - "title": "Mitrasphere", - "assets": [ - { - "id": "1006-mitrasphere-hime.png", - "title": "1006-mitrasphere-hime.png" - }, - { - "id": "1007-mitrasphere-yuzu.png", - "title": "1007-mitrasphere-yuzu.png" - }, - { - "id": "1008-mitrasphere-matilda.png", - "title": "1008-mitrasphere-matilda.png" - }, - { - "id": "1009-mitrasphere-hildegard.png", - "title": "1009-mitrasphere-hildegard.png" - }, - { - "id": "1010-mitrasphere-upa.png", - "title": "1010-mitrasphere-upa.png" - } - ] - } - ] -} \ No newline at end of file diff --git a/profiles/dynamic.py b/profiles/dynamic.py deleted file mode 100644 index a26d8d7..0000000 --- a/profiles/dynamic.py +++ /dev/null @@ -1,105 +0,0 @@ -import secrets -import random - -import requests - -from requests_toolbelt.multipart.encoder import MultipartEncoder - - -def fields(value: dict) -> dict: - return {key: str(val) for key, val in value.items()} - - -def get_id() -> str: - group1 = '-'.join([f'{random.randint(0, 255):02x}' for _ in range(6)]) - group2 = '-'.join([f'{random.randint(0, 255):02x}' for _ in range(6)]) - return f'{group1}:{group2}' - - -if __name__ == '__main__': - user_email = 'example@mail.com' - user_token = secrets.token_hex(16) - user_subscription = 'register' - device_token = secrets.token_hex(16) - device_platform = 49 - device_id = get_id() - app_version = 6169 - media_id = 'B0CPPH5WK4' - pssh = 'CAESEM235gyo/kFAk//K99EUxOAaBmFtYXpvbiI1Y2lkOnpiZm1ES2orUVVDVC84cjMwUlRFNEE9PSxRWVJUWXJnd1JxbXBzMngvTnM0alVRPT0qAlNEMgA=' - certificate = 'CAUSwgUKvAIIAxIQCuQRtZRasVgFt7DIvVtVHBi17OSpBSKOAjCCAQoCggEBAKU2UrYVOSDlcXajWhpEgGhqGraJtFdUPgu6plJGy9ViaRn5mhyXON5PXmw1krQdi0SLxf00FfIgnYFLpDfvNeItGn9rcx0RNPwP39PW7aW0Fbqi6VCaKWlR24kRpd7NQ4woyMXr7xlBWPwPNxK4xmR/6UuvKyYWEkroyeIjWHAqgCjCmpfIpVcPsyrnMuPFGl82MMVnAhTweTKnEPOqJpxQ1bdQvVNCvkba5gjOTbEnJ7aXegwhmCdRQzXjTeEV2dO8oo5YfxW6pRBovzF6wYBMQYpSCJIA24ptAP/2TkneyJuqm4hJNFvtF8fsBgTQQ4TIhnX4bZ9imuhivYLa6HsCAwEAAToPYW1hem9uLmNvbS1wcm9kEoADETQD6R0H/h9fyg0Hw7mj0M7T4s0bcBf4fMhARpwk2X4HpvB49bJ5Yvc4t41mAnXGe/wiXbzsddKMiMffkSE1QWK1CFPBgziU23y1PjQToGiIv/sJIFRKRJ4qMBxIl95xlvSEzKdt68n7wqGa442+uAgk7CXU3uTfVofYY76CrPBnEKQfad/CVqTh48geNTb4qRH1TX30NzCsB9NWlcdvg10pCnWSm8cSHu1d9yH+2yQgsGe52QoHHCqHNzG/wAxMYWTevXQW7EPTBeFySPY0xUN+2F2FhCf5/A7uFUHywd0zNTswh0QJc93LBTh46clRLO+d4RKBiBSj3rah6Y5iXMw9N9o58tCRc9gFHrjfMNubopWHjDOO3ATUgqXrTp+fKVCmsGuGl1ComHxXV9i1AqHwzzY2JY2vFqo73jR3IElr6oChPIwcNokmNc0D4TXtjE0BoYkbWKJfHvJJihzMOvDicWUsemVHvua9/FBtpbHgpbgwijFPjtQF9Ldb8Swf' - - multipart_data = MultipartEncoder( - fields({ - 'T': 10, - 'B': 6, - 'C': user_email, - 'D': user_token, - 'E': user_subscription, - 'F': device_token, - 'G': device_platform, - 'H': device_id, - 'I': 1, - 'Z': app_version, - 'K': 2, - 'L': media_id, - 'M': pssh, - 'N': certificate - }) - ) - - # @Info: Challenge - r = requests.request( - method='POST', - url='https://drm-w-j2.dvdfab.cn/ex/', - data=multipart_data, - headers={ - 'Accept': '*/*', - 'Content-Type': multipart_data.content_type, - 'Expect': '100-continue', - 'User-Agent': 'DVDFab' - } - ) - r.raise_for_status() - - challenge = r.json()['FB'] - print(f'[+] Challenge: {challenge}') - - licence = '' # TODO: AMZ License - - # @Info: Keys - multipart_data = MultipartEncoder( - fields({ - 'T': 12, - 'B': 6, - 'C': email, - 'D': user_token, - 'E': user_subscription, - 'F': device_token, - 'G': device_platform, - 'H': device_id, - 'I': 1, - 'Z': app_version, - 'K': 2, - 'L': media_id, - 'M': pssh, - 'N': certificate, - 'O': licence - }) - ) - - r = requests.request( - method='POST', - url='https://drm-w-j2.dvdfab.cn/ex/', - data=multipart_data, - headers={ - 'Accept': '*/*', - 'Content-Type': multipart_data.content_type, - 'Expect': '100-continue', - 'User-Agent': 'DVDFab' - } - ) - r.raise_for_status() - content = r.json() - - data = content['D'] - mod_key = content['T'] diff --git a/profiles/intercept.py b/profiles/intercept.py deleted file mode 100644 index 28d4069..0000000 --- a/profiles/intercept.py +++ /dev/null @@ -1,146 +0,0 @@ -# scans PID for utf-8 string with option to stop on first occurence -# adjusted code taken from Awesometech here https://python-forum.io/thread-5517.html - -import ctypes -from ctypes.wintypes import WORD, DWORD, LPVOID -import psutil -import sys, os - - -class SYSTEM_INFO(ctypes.Structure): - """https://msdn.microsoft.com/en-us/library/ms724958""" - - class _U(ctypes.Union): - class _S(ctypes.Structure): - _fields_ = (('wProcessorArchitecture', WORD), - ('wReserved', WORD)) - - _fields_ = (('dwOemId', DWORD), # obsolete - ('_s', _S)) - _anonymous_ = ('_s',) - - if ctypes.sizeof(ctypes.c_void_p) == ctypes.sizeof(ctypes.c_ulonglong): - DWORD_PTR = ctypes.c_ulonglong - elif ctypes.sizeof(ctypes.c_void_p) == ctypes.sizeof(ctypes.c_ulong): - DWORD_PTR = ctypes.c_ulong - - _fields_ = (('_u', _U), - ('dwPageSize', DWORD), - ('lpMinimumApplicationAddress', LPVOID), - ('lpMaximumApplicationAddress', LPVOID), - ('dwActiveProcessorMask', DWORD_PTR), - ('dwNumberOfProcessors', DWORD), - ('dwProcessorType', DWORD), - ('dwAllocationGranularity', DWORD), - ('wProcessorLevel', WORD), - ('wProcessorRevision', WORD)) - _anonymous_ = ('_u',) - - -class MEMORY_BASIC_INFORMATION(ctypes.Structure): - """https://msdn.microsoft.com/en-us/library/aa366775""" - PVOID = LPVOID - SIZE_T = ctypes.c_size_t - _fields_ = (('BaseAddress', PVOID), - ('AllocationBase', PVOID), - ('AllocationProtect', DWORD), - ('RegionSize', SIZE_T), - ('State', DWORD), - ('Protect', DWORD), - ('Type', DWORD)) - - -def main(PID=os.getpid(), FIND_STR='ąsdf1234', _exit_on_first_match=True): - findstr = bytearray(FIND_STR.encode('utf-8')) - - print(f'\n*** Searching {FIND_STR} in PID {PID} _exit_on_first_match {_exit_on_first_match}\n') - - LPSYSTEM_INFO = ctypes.POINTER( - SYSTEM_INFO) ##PMEMORY_BASIC_INFORMATION = ctypes.POINTER(MEMORY_BASIC_INFORMATION) - - Kernel32 = ctypes.WinDLL('kernel32', use_last_error=True) - Kernel32.GetSystemInfo.restype = None - Kernel32.GetSystemInfo.argtypes = (LPSYSTEM_INFO,) - ReadProcessMemory = Kernel32.ReadProcessMemory - - sysinfo = SYSTEM_INFO() - Kernel32.GetSystemInfo(ctypes.byref(sysinfo)) - start_addr = sysinfo.lpMinimumApplicationAddress - current_address = sysinfo.lpMinimumApplicationAddress - end_address = sysinfo.lpMaximumApplicationAddress - - PROCESS_QUERY_INFORMATION = 0x0400 - PROCESS_VM_READ = 0x0010 - MEM_COMMIT = 0x00001000; - PAGE_READWRITE = 0x04; - - Process = Kernel32.OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, False, - PID) # print('process:', Process) - - mbi = MEMORY_BASIC_INFORMATION() - - buffer = ctypes.c_char() # c_double() ##buffer = ctypes.c_uint() - nread = ctypes.c_size_t() # SIZE_T() - - # start = ctypes.c_void_p(mbi.BaseAddress) - - ci = 0 - count_occur = 0 - while current_address < end_address: - current_address_ctypes = ctypes.c_void_p(current_address) - _k = Kernel32.VirtualQueryEx(Process, current_address_ctypes, ctypes.byref(mbi), - ctypes.sizeof(mbi)) # read cur region to mbi - if mbi.Protect == PAGE_READWRITE and mbi.State == MEM_COMMIT: # print('This region can be scanned!',index,end, end-index) - index = current_address - end = current_address + mbi.RegionSize - - ci = 0 - vi = [] - f_ind = -1 - while index < end: # index -> ctypes.c_void_p(index) ? - rm = ReadProcessMemory(Process, ctypes.c_void_p(index), ctypes.byref(buffer), ctypes.sizeof(buffer), - ctypes.byref(nread)) # read cur region bytes to bugger - # print('rm',rm) - if rm > 0: - _x = findstr[ci].to_bytes(1, 'little') - if buffer.value == _x: - if ci == 0: f_ind = index - vi.append(buffer.value) - ci += 1 - if ci == len(findstr): - count_occur += 1 - print( - f'MATCHED [{count_occur}] STRING between indexes {f_ind} and {index}') # , ,, b''.join(vi).decode('utf-8')) - if _exit_on_first_match: - # current_address = end_address - print('\texiting on _exit_on_first_match', _exit_on_first_match) - return - - else: - ci, f_ind, vi = 0, -1, [] - else: - ci, f_ind, vi = 0, -1, [] - else: - ci, f_ind, vi = 0, -1, [] - - index += ctypes.sizeof(buffer) - - print( - f"\tProgress done {current_address - start_addr} {round(100 * (current_address - start_addr) / (end_address - start_addr))}%, left {end_address - current_address}, this iter did {mbi.RegionSize}") # {round(100*(end_address-current_address)/(end_address-start_addr))} - - current_address += mbi.RegionSize - -# https://medium.com/@algolithics/scanning-windows-memory-with-python-memory-string-detection-6b80e1dac1d0 -# arg1: pid, arg2=search string unicode , arg3=True/False if exit on first match -if __name__ == '__main__': - - if len(sys.argv) == 3: - main(int(sys.argv[1]), sys.argv[2]) - elif len(sys.argv) == 4: - main(int(sys.argv[1]), sys.argv[2], sys.argv[3].lower() == 'true') - else: - print('\n=== To customize provide arguments: PID UTF8_STRING_TO_SEARCH EXIT_ON_FIRST_MATCH=True/False') - print('=== Arguments example: 1234 sometext False\n') - main() - - print('\n*** Finished scanning memory\n') diff --git a/profiles/main.py b/profiles/main.py deleted file mode 100644 index 89357cb..0000000 --- a/profiles/main.py +++ /dev/null @@ -1,33 +0,0 @@ -import json -import re -from pathlib import Path - -import requests - -PARENT = Path() - - -def sanitize(value: str) -> str: - return re.sub(r'[<>:"/\\|?*]', '_', value) - - -if __name__ == '__main__': - avatar = json.loads((PARENT / 'avatar.json').read_bytes()) - for item in avatar['items']: - path = PARENT / 'Avatar' / sanitize(item['title']) - path.mkdir(parents=True, exist_ok=True) - for asset in item['assets']: - url = 'https://static.crunchyroll.com/assets/avatar/170x170/' + asset['id'] - r = requests.request( - method='GET', - url=url, - headers={ - 'Accept': '*/*', - 'User-Agent': 'Dalvik/2.1.0 (Linux; U; Android 10; Mi A2 Build/QKQ1.190910.002)' - } - ) - r.raise_for_status() - - file = path / sanitize(asset['id']) - file.write_bytes(r.content) - print(file) diff --git a/profiles/static.py b/profiles/static.py deleted file mode 100644 index 36e579d..0000000 --- a/profiles/static.py +++ /dev/null @@ -1,68 +0,0 @@ -import secrets -import random -from datetime import datetime - -import requests - -from requests_toolbelt.multipart.encoder import MultipartEncoder - - -def fields(value: dict) -> dict: - return {key: str(val) for key, val in value.items()} - - -def get_id() -> str: - group1 = '-'.join([f'{random.randint(0, 255):02x}' for _ in range(6)]) - group2 = '-'.join([f'{random.randint(0, 255):02x}' for _ in range(6)]) - return f'{group1}:{group2}' - - -if __name__ == '__main__': - database_table = 20 # Amazon - device_token = secrets.token_hex(16) - media_key_id = 'ac397b17ffaf4787af545de3035ca77c' - device_id = get_id() - user_email = 'example@mail.com' - user_token = secrets.token_hex(16) - device_platform = 49 - app_version = 6169 - user_subscription = 'register' - media_id = 'B0CPPH5WK4' - date = datetime.now().strftime('%Y-%m-%d') - - multipart_data = MultipartEncoder( - fields({ - 'IV': 100, - 'CM': 103, - 'TB': database_table, - 'KD': media_key_id, - 'MD': device_id, - 'EM': user_email, - 'PW': user_token, - 'CD': device_platform, - 'AV': app_version, - 'RT': user_subscription, - 'PD': media_id, - 'WD': 2, - 'LT': date - }) - ) - - # @Info: Cached keys - r = requests.request( - method='POST', - url='https://drm-u1.dvdfab.cn/ak/uc/', - data=multipart_data, - headers={ - 'Accept': '*/*', - 'Content-Type': multipart_data.content_type, - 'Expect': '100-continue', - 'User-Agent': 'DVDFab' - } - ) - r.raise_for_status() - content = r.json() - - data = content['d'] - mod_key = content['k'] - unknown = content['u'] # TODO: ?? diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 5f1da7d..0000000 --- a/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -requests~=2.31.0 -pywidevine~=1.6.0 \ No newline at end of file diff --git a/cbzProject/setup.py b/setup.py similarity index 100% rename from cbzProject/setup.py rename to setup.py