From 876757b0b974889fa799d8ecf4bda934ebada53b Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 27 Jun 2020 20:04:53 +0300 Subject: [PATCH 01/39] socid_extractor integration added --- requirements.txt | 1 + sherlock/notify.py | 14 ++++++++++---- sherlock/resources/data.json | 1 + sherlock/result.py | 3 ++- sherlock/sherlock.py | 11 +++++++++++ 5 files changed, 25 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index 6c338c96b..c10ffe5d9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,3 +9,4 @@ requests-futures>=1.0.0 soupsieve>=1.9.2 stem>=1.8.0 torrequest>=0.1.0 +git+https://github.com/soxoj/socid_extractor diff --git a/sherlock/notify.py b/sherlock/notify.py index c232a8cf3..0523668af 100644 --- a/sherlock/notify.py +++ b/sherlock/notify.py @@ -185,7 +185,12 @@ def update(self, result): else: response_time_text = f" [{round(self.result.query_time * 1000)} ms]" - #Output to the terminal is desired. + if not self.result.ids_data: + ids_data_text = "" + else: + ids_data_text = '\nAdditional ID data: ' + ', '.join([f'{a}: {b}' for a,b in self.result.ids_data.items()]) + + # Output to the terminal is desired. if result.status == QueryStatus.CLAIMED: if self.color: print((Style.BRIGHT + Fore.WHITE + "[" + @@ -195,9 +200,10 @@ def update(self, result): Fore.GREEN + f" {self.result.site_name}: " + Style.RESET_ALL + - f"{self.result.site_url_user}")) + f"{self.result.site_url_user}" + + f"{ids_data_text}")) else: - print(f"[+]{response_time_text} {self.result.site_name}: {self.result.site_url_user}") + print(f"[+]{response_time_text} {self.result.site_name}: {self.result.site_url_user} {ids_data_text}") elif result.status == QueryStatus.AVAILABLE: if not self.print_found_only: if self.color: @@ -218,7 +224,7 @@ def update(self, result): Fore.RED + f" {self.result.context}" + Fore.YELLOW + f" ") else: - print(f"[-] {self.result.site_name}: {self.result.context} ") + print(f"[-] {self.result.site_name}: {self.result.context} {ids_data_text}") elif result.status == QueryStatus.ILLEGAL: if not self.print_found_only: msg = "Illegal Username Format For This Site!" diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 7473482d8..1e9c1f885 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -1929,6 +1929,7 @@ "errorType": "status_code", "rank": 55, "url": "https://yandex.ru/collections/user/{}/", + "request_head_only": false, "urlMain": "https://yandex.ru/collections/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" diff --git a/sherlock/result.py b/sherlock/result.py index 3c33ba9c3..121da916b 100644 --- a/sherlock/result.py +++ b/sherlock/result.py @@ -31,7 +31,7 @@ class QueryResult(): Describes result of query about a given username. """ - def __init__(self, username, site_name, site_url_user, status, + def __init__(self, username, site_name, site_url_user, status, ids_data=None, query_time=None, context=None): """Create Query Result Object. @@ -67,6 +67,7 @@ def __init__(self, username, site_name, site_url_user, status, self.status = status self.query_time = query_time self.context = context + self.ids_data = ids_data return diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index 37c0fd8fe..dee4dde3b 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -16,6 +16,7 @@ from time import monotonic import requests +from socid_extractor import extract from requests_futures.sessions import FuturesSession from torrequest import TorRequest @@ -314,14 +315,18 @@ def sherlock(username, site_data, query_notify, http_status = "?" try: response_text = r.text.encode(r.encoding) + # Extract IDs data from page except: response_text = "" + extracted_ids_data = extract(r.text) if r else "" + if error_text is not None: result = QueryResult(username, social_network, url, QueryStatus.UNKNOWN, + ids_data=extracted_ids_data, query_time=response_time, context=error_text) elif error_type == "message": @@ -332,12 +337,14 @@ def sherlock(username, site_data, query_notify, social_network, url, QueryStatus.CLAIMED, + ids_data=extracted_ids_data, query_time=response_time) else: result = QueryResult(username, social_network, url, QueryStatus.AVAILABLE, + ids_data=extracted_ids_data, query_time=response_time) elif error_type == "status_code": # Checks if the status code of the response is 2XX @@ -346,12 +353,14 @@ def sherlock(username, site_data, query_notify, social_network, url, QueryStatus.CLAIMED, + ids_data=extracted_ids_data, query_time=response_time) else: result = QueryResult(username, social_network, url, QueryStatus.AVAILABLE, + ids_data=extracted_ids_data, query_time=response_time) elif error_type == "response_url": # For this detection method, we have turned off the redirect. @@ -364,12 +373,14 @@ def sherlock(username, site_data, query_notify, social_network, url, QueryStatus.CLAIMED, + ids_data=extracted_ids_data, query_time=response_time) else: result = QueryResult(username, social_network, url, QueryStatus.AVAILABLE, + ids_data=extracted_ids_data, query_time=response_time) else: #It should be impossible to ever get here... From dd9b70a2c3ac8ae1d41d4adaa4099360f18ba90f Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 27 Jun 2020 22:10:04 +0300 Subject: [PATCH 02/39] Search by additional found usernames --- sherlock/sherlock.py | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index dee4dde3b..2557b2cf4 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -8,6 +8,7 @@ """ import csv +import logging import os import platform import re @@ -279,6 +280,7 @@ def sherlock(username, site_data, query_notify, # Add this site's results into final dictionary with all of the other results. results_total[social_network] = results_site + results_total['ids_usernames'] = [] # Open the file containing account links # Core logic: If tor requests, make them here. If multi-threaded requests, wait for responses for social_network, net_info in site_data.items(): @@ -321,6 +323,14 @@ def sherlock(username, site_data, query_notify, extracted_ids_data = extract(r.text) if r else "" + if extracted_ids_data: + new_usernames = [] + for k,v in extracted_ids_data.items(): + if 'username' in k: + new_usernames.append(v) + + results_total['ids_usernames'] += new_usernames + if error_text is not None: result = QueryResult(username, social_network, @@ -584,8 +594,16 @@ def main(): color=not args.no_color) # Run report on all specified users. - for username in args.username: - print() + usernames = [*args.username] + already_checked = set() + + while usernames: + username = usernames.pop() + + if username.lower() in already_checked: + continue + else: + already_checked.add(username.lower()) results = sherlock(username, site_data, @@ -595,6 +613,10 @@ def main(): proxy=args.proxy, timeout=args.timeout) + if results.get('ids_usernames'): + usernames += results['ids_usernames'] + del results['ids_usernames'] + if args.output: result_file = args.output elif args.folderoutput: @@ -609,6 +631,8 @@ def main(): exists_counter = 0 for website_name in results: dictionary = results[website_name] + if type(dictionary) == list: + continue if dictionary.get("status").status == QueryStatus.CLAIMED: exists_counter += 1 file.write(dictionary["url_user"] + "\n") From 9ddbe5cf9354006c35b6945cee5206acaba3af8a Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 28 Jun 2020 20:09:23 +0300 Subject: [PATCH 03/39] Docs update --- README.md | 4 +++- sherlock/result.py | 2 ++ sherlock/sherlock.py | 29 ++++++++++++++++++----------- 3 files changed, 23 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 99f2b340b..217f9d759 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,9 @@ optional arguments: results. --print-found Do not output sites where the username was not found. --no-color Don't color terminal output - --browse, -b Browse to all results on default bowser. + --browse, -b Browse to all results on default browser. + --ids, -i Search for other usernames in website pages and make + recursive search by them. ``` To search for only one user: diff --git a/sherlock/result.py b/sherlock/result.py index 121da916b..1c0538a80 100644 --- a/sherlock/result.py +++ b/sherlock/result.py @@ -56,6 +56,8 @@ def __init__(self, username, site_name, site_url_user, status, ids_data=None, an error, this might indicate the type of error that occurred. Default of None. + ids_data -- Extracted from website page info about other + usernames and inner ids. Return Value: Nothing. diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index 2557b2cf4..09622f276 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -128,7 +128,7 @@ def get_response(request_future, error_type, social_network): def sherlock(username, site_data, query_notify, tor=False, unique_tor=False, - proxy=None, timeout=None): + proxy=None, timeout=None, ids_search=False): """Run Sherlock Analysis. Checks for existence of username on various social media sites. @@ -145,6 +145,7 @@ def sherlock(username, site_data, query_notify, proxy -- String indicating the proxy URL timeout -- Time in seconds to wait before timing out request. Default is no timeout. + ids_search -- Search for other usernames in website pages & recursive search by them. Return Value: Dictionary containing results from report. Key of dictionary is the name @@ -321,15 +322,18 @@ def sherlock(username, site_data, query_notify, except: response_text = "" - extracted_ids_data = extract(r.text) if r else "" + extracted_ids_data = "" - if extracted_ids_data: - new_usernames = [] - for k,v in extracted_ids_data.items(): - if 'username' in k: - new_usernames.append(v) + if ids_search and r: + extracted_ids_data = extract(r.text) - results_total['ids_usernames'] += new_usernames + if extracted_ids_data: + new_usernames = [] + for k,v in extracted_ids_data.items(): + if 'username' in k: + new_usernames.append(v) + + results_total['ids_usernames'] += new_usernames if error_text is not None: result = QueryResult(username, @@ -514,6 +518,9 @@ def main(): parser.add_argument("--browse", "-b", action="store_true", dest="browse", default=False, help="Browse to all results on default bowser.") + parser.add_argument("--ids", "-i", + action="store_true", dest="ids_search", default=False, + help="Make scan of pages for other usernames and recursive search by them.") args = parser.parse_args() @@ -611,11 +618,11 @@ def main(): tor=args.tor, unique_tor=args.unique_tor, proxy=args.proxy, - timeout=args.timeout) + timeout=args.timeout, + ids_search=args.ids_search) if results.get('ids_usernames'): usernames += results['ids_usernames'] - del results['ids_usernames'] if args.output: result_file = args.output @@ -631,7 +638,7 @@ def main(): exists_counter = 0 for website_name in results: dictionary = results[website_name] - if type(dictionary) == list: + if type(dictionary) == list: # skip non-sites info continue if dictionary.get("status").status == QueryStatus.CLAIMED: exists_counter += 1 From deb8a8e27465231d91a72adadba7719a97e4e672 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 28 Jun 2020 20:25:49 +0300 Subject: [PATCH 04/39] Extracted ids data storing fix --- README.md | 2 +- sherlock/sherlock.py | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 217f9d759..341652ddd 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ optional arguments: hand, this may cause a long delay to gather all results. --print-found Do not output sites where the username was not found. - --no-color Don't color terminal output + --no-color Don\'t color terminal output --browse, -b Browse to all results on default browser. --ids, -i Search for other usernames in website pages and make recursive search by them. diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index 09622f276..1d92854f5 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -281,7 +281,6 @@ def sherlock(username, site_data, query_notify, # Add this site's results into final dictionary with all of the other results. results_total[social_network] = results_site - results_total['ids_usernames'] = [] # Open the file containing account links # Core logic: If tor requests, make them here. If multi-threaded requests, wait for responses for social_network, net_info in site_data.items(): @@ -333,7 +332,7 @@ def sherlock(username, site_data, query_notify, if 'username' in k: new_usernames.append(v) - results_total['ids_usernames'] += new_usernames + results_site['ids_usernames'] = new_usernames if error_text is not None: result = QueryResult(username, @@ -621,8 +620,6 @@ def main(): timeout=args.timeout, ids_search=args.ids_search) - if results.get('ids_usernames'): - usernames += results['ids_usernames'] if args.output: result_file = args.output @@ -638,8 +635,10 @@ def main(): exists_counter = 0 for website_name in results: dictionary = results[website_name] - if type(dictionary) == list: # skip non-sites info - continue + + if dictionary.get('ids_usernames'): + usernames += dictionary['ids_usernames'] + if dictionary.get("status").status == QueryStatus.CLAIMED: exists_counter += 1 file.write(dictionary["url_user"] + "\n") From d1377018a709f6bb99bb10f4b6511a15d40b4fbe Mon Sep 17 00:00:00 2001 From: Soxoj Date: Wed, 1 Jul 2020 20:14:45 +0300 Subject: [PATCH 05/39] Various sites fixes - custom failures detecting (such as country restriction) - methods changing - remove bad sites --- sherlock/resources/data.json | 58 ++++++++++++++---------------------- sherlock/sherlock.py | 14 +++++++++ 2 files changed, 37 insertions(+), 35 deletions(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 1e9c1f885..52b476711 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -284,8 +284,12 @@ "rank": 0, "url": "https://cash.me/${}", "urlMain": "https://cash.me/", + "request_head_only": false, "username_claimed": "Jenny", - "username_unclaimed": "noonewouldeverusethis7" + "username_unclaimed": "noonewouldeverusethis7", + "errors": { + "Cash isn't available in your country yet.": "Access denied in your country, use tor/proxy" + } }, "Cent": { "errorMsg": "Cent", @@ -520,7 +524,7 @@ "username_unclaimed": "noonewouldeverusethis7" }, "Ebay": { - "errorMsg": "The User ID you entered was not found", + "errorMsg": "

", "errorType": "message", "rank": 56, "url": "https://www.ebay.com/usr/{}", @@ -858,10 +862,10 @@ }, "ImageShack": { "errorType": "response_url", - "errorUrl": "https://imageshack.us/", + "errorUrl": "https://imageshack.com/", "rank": 42021, - "url": "https://imageshack.us/user/{}", - "urlMain": "https://imageshack.us/", + "url": "https://imageshack.com/user/{}", + "urlMain": "https://imageshack.com/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, @@ -1019,15 +1023,6 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, - "LiveLeak": { - "errorMsg": "channel not found", - "errorType": "message", - "rank": 3625, - "url": "https://www.liveleak.com/c/{}", - "urlMain": "https://www.liveleak.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, "Lobsters": { "errorType": "status_code", "rank": 152798, @@ -1047,7 +1042,8 @@ "username_unclaimed": "noonewouldeverusethis7" }, "Medium": { - "errorType": "status_code", + "errorMsg": "We couldn’t find this page.", + "errorType": "message", "rank": 72, "url": "https://medium.com/@{}", "urlMain": "https://medium.com/", @@ -1408,15 +1404,6 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, - "Redsun.tf": { - "errorMsg": "The specified member cannot be found", - "errorType": "message", - "rank": 3796657, - "url": "https://forum.redsun.tf/members/?username={}", - "urlMain": "https://redsun.tf/", - "username_claimed": "dan", - "username_unclaimed": "noonewouldeverusethis" - }, "Repl.it": { "errorMsg": "404", "errorType": "message", @@ -1591,8 +1578,12 @@ "rank": 87, "url": "https://open.spotify.com/user/{}", "urlMain": "https://open.spotify.com/", + "request_head_only": false, "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" + "username_unclaimed": "noonewouldeverusethis7", + "errors": { + "Spotify is currently not available in your country.": "Access denied in your country, use tor/proxy" + } }, "Star Citizen": { "errorType": "status_code", @@ -1812,14 +1803,6 @@ "username_claimed": "jenny", "username_unclaimed": "noonewouldeverusethis7" }, - "Viadeo": { - "errorType": "status_code", - "rank": 16796, - "url": "http://fr.viadeo.com/en/profile/{}", - "urlMain": "http://fr.viadeo.com/en/", - "username_claimed": "franck.patissier", - "username_unclaimed": "noonewouldeverusethis" - }, "Vimeo": { "errorType": "status_code", "rank": 169, @@ -2431,7 +2414,11 @@ "url": "https://pvpru.com/board/member.php?username={}&tab=aboutme#aboutme", "urlMain": "https://pvpru.com/", "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" + "request_head_only": false, + "username_unclaimed": "noonewouldeverusethis7", + "errors": { + "Access denied": "Cloudflare security protection detected" + } }, "radio_echo_msk": { "errorType": "status_code", @@ -2568,7 +2555,8 @@ "username_unclaimed": "noonewouldeverusethis77777" }, "kofi": { - "errorType": "status_code", + "errorMsg": "Make income from your art!", + "errorType": "message", "rank": 89891, "url": "https://ko-fi.com/{}", "urlMain": "https://ko-fi.com", diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index 1d92854f5..98a5388f7 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -298,6 +298,9 @@ def sherlock(username, site_data, query_notify, # Get the expected error type error_type = net_info["errorType"] + # Get the failure messages and comments + failure_errors = net_info.get("errors", {}) + # Retrieve future and ensure it has finished future = net_info["request_future"] r, error_text, expection_text = get_response(request_future=future, @@ -321,6 +324,17 @@ def sherlock(username, site_data, query_notify, except: response_text = "" + + # Detect failures such as a country restriction + for text, comment in failure_errors.items(): + if text in r.text: + error_context = "Some error" + error_text = comment + break + + # TODO: return error for captcha and some specific cases (CashMe) + # make all result invalid + extracted_ids_data = "" if ids_search and r: From 56ea0a355680b5989862e68de7eb1e6d8d34fd38 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Tue, 7 Jul 2020 21:01:31 +0300 Subject: [PATCH 06/39] Search with parsing urls for usernames --- sherlock/sherlock.py | 37 +++++++++++++++++++++++++++---------- 1 file changed, 27 insertions(+), 10 deletions(-) diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index 98a5388f7..ca8dadd2f 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -8,6 +8,7 @@ """ import csv +import json import logging import os import platform @@ -17,7 +18,7 @@ from time import monotonic import requests -from socid_extractor import extract +from socid_extractor import parse, extract from requests_futures.sessions import FuturesSession from torrequest import TorRequest @@ -523,22 +524,30 @@ def main(): action="store_true", dest="no_color", default=False, help="Don't color terminal output" ) + parser.add_argument("--browse", "-b", + action="store_true", dest="browse", default=False, + help="Browse to all results on default bowser." + ) + parser.add_argument("--ids", "-i", + action="store_true", dest="ids_search", default=False, + help="Make scan of pages for other usernames and recursive search by them." + ) + parser.add_argument("--parse", + dest="parse_url", default='', + help="Parse page by URL and extract username and IDs to use for search." + ) parser.add_argument("username", nargs='+', metavar='USERNAMES', action="store", help="One or more usernames to check with social networks." ) - parser.add_argument("--browse", "-b", - action="store_true", dest="browse", default=False, - help="Browse to all results on default bowser.") - parser.add_argument("--ids", "-i", - action="store_true", dest="ids_search", default=False, - help="Make scan of pages for other usernames and recursive search by them.") args = parser.parse_args() + # Argument check + # Usernames initial list + usernames = args.username - # Argument check # TODO regex check on args.proxy if args.tor and (args.proxy is not None): raise Exception("Tor and Proxy cannot be set at the same time.") @@ -561,6 +570,16 @@ def main(): print("You can only use --output with a single username") sys.exit(1) + if args.parse_url: + page, _ = parse(args.parse_url) + info = extract(page) + text = 'Extracted ID data from webpage: ' + ', '.join([f'{a}: {b}' for a,b in info.items()]) + print(text) + for k, v in info.items(): + if 'username' in k: + usernames.append(v) + + usernames = [u for u in usernames if u not in ('-')] #Create object with all information about sites we are aware of. try: @@ -613,8 +632,6 @@ def main(): print_found_only=args.print_found_only, color=not args.no_color) - # Run report on all specified users. - usernames = [*args.username] already_checked = set() while usernames: From 8bb3e7a17cdb847d69ab7157c8aeacbf4978460a Mon Sep 17 00:00:00 2001 From: Soxoj Date: Tue, 7 Jul 2020 21:56:14 +0300 Subject: [PATCH 07/39] Search by yandex_public_id --- sherlock/resources/data.json | 32 ++++++++++++++++++++++++++++++++ sherlock/sherlock.py | 29 +++++++++++++++++++++-------- 2 files changed, 53 insertions(+), 8 deletions(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 52b476711..b664ac656 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2570,5 +2570,37 @@ "urlMain": "https://aminoapps.com/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis77777" + }, + "Yandex": { + "errorType": "status_code", + "url": "https://yandex.ru/user/{}", + "urlMain": "https://yandex.ru/", + "type": "yandex_public_id", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YandexLocal": { + "errorType": "status_code", + "url": "https://local.yandex.ru/users/{}", + "urlMain": "https://local.yandex.ru/", + "type": "yandex_public_id", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YandexMusic": { + "errorType": "status_code", + "url": "https://music.yandex.ru/users/{}/playlists", + "urlMain": "https://music.yandex.ru/", + "type": "username", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YandexZnatoki": { + "errorType": "status_code", + "url": "https://yandex.ru/q/profile/{}", + "urlMain": "ttps://yandex.ru/q/", + "type": "yandex_public_id", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" } } \ No newline at end of file diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index ca8dadd2f..e6dcc7f28 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -129,7 +129,8 @@ def get_response(request_future, error_type, social_network): def sherlock(username, site_data, query_notify, tor=False, unique_tor=False, - proxy=None, timeout=None, ids_search=False): + proxy=None, timeout=None, ids_search=False, + id_type='username'): """Run Sherlock Analysis. Checks for existence of username on various social media sites. @@ -193,6 +194,9 @@ def sherlock(username, site_data, query_notify, # First create futures for all requests. This allows for the requests to run in parallel for social_network, net_info in site_data.items(): + if net_info.get('type', 'username') != id_type: + continue + # Results from analysis of this specific site results_site = {} @@ -288,6 +292,8 @@ def sherlock(username, site_data, query_notify, # Retrieve results again results_site = results_total.get(social_network) + if not results_site: + continue # Retrieve other site information again url = results_site.get("url_user") @@ -546,7 +552,11 @@ def main(): # Argument check # Usernames initial list - usernames = args.username + usernames = { + u: 'username' + for u in args.username + if u not in ('-') + } # TODO regex check on args.proxy if args.tor and (args.proxy is not None): @@ -577,9 +587,9 @@ def main(): print(text) for k, v in info.items(): if 'username' in k: - usernames.append(v) - - usernames = [u for u in usernames if u not in ('-')] + usernames[v] = 'username' + if k == 'yandex_public_id': + usernames[v] = 'yandex_public_id' #Create object with all information about sites we are aware of. try: @@ -635,7 +645,8 @@ def main(): already_checked = set() while usernames: - username = usernames.pop() + username, id_type = list(usernames.items())[0] + del usernames[username] if username.lower() in already_checked: continue @@ -649,7 +660,8 @@ def main(): unique_tor=args.unique_tor, proxy=args.proxy, timeout=args.timeout, - ids_search=args.ids_search) + ids_search=args.ids_search, + id_type=id_type) if args.output: @@ -668,7 +680,8 @@ def main(): dictionary = results[website_name] if dictionary.get('ids_usernames'): - usernames += dictionary['ids_usernames'] + for u in dictionary.get('ids_usernames'): + usernames[u] = 'username' if dictionary.get("status").status == QueryStatus.CLAIMED: exists_counter += 1 From 630e64d0038f9fb74a6482b8e7324bd2f35fab70 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Wed, 8 Jul 2020 01:06:38 +0300 Subject: [PATCH 08/39] Different URLs for check and display --- sherlock/resources/data.json | 4 +++- sherlock/sherlock.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index b664ac656..f92b2ee9b 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -946,9 +946,11 @@ "username_unclaimed": "noonewouldeverusethis7" }, "Keybase": { - "errorType": "status_code", + "errorMsg": "them\":[null]", + "errorType": "message", "rank": 56712, "url": "https://keybase.io/{}", + "urlCheck": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={}", "urlMain": "https://keybase.io/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index e6dcc7f28..fdea34644 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -214,7 +214,7 @@ def sherlock(username, site_data, query_notify, headers.update(net_info["headers"]) # URL of user on site (if it exists) - url = net_info["url"].format(username) + url = net_info.get('urlCheck', net_info["url"]).format(username) # Don't make request if username is invalid for the site regex_check = net_info.get("regexCheck") From c3e56c17ac1aeca592756999d97a5f38d3d281ba Mon Sep 17 00:00:00 2001 From: Soxoj Date: Thu, 9 Jul 2020 23:54:52 +0300 Subject: [PATCH 09/39] Wikimapia recursive search --- sherlock/notify.py | 4 ++-- sherlock/resources/data.json | 19 +++++++++++++++++++ sherlock/sherlock.py | 19 +++++++++++-------- 3 files changed, 32 insertions(+), 10 deletions(-) diff --git a/sherlock/notify.py b/sherlock/notify.py index 0523668af..90b61b31f 100644 --- a/sherlock/notify.py +++ b/sherlock/notify.py @@ -139,7 +139,7 @@ def __init__(self, result=None, verbose=False, print_found_only=False, return - def start(self, message): + def start(self, message, id_type): """Notify Start. Will print the title to the standard output. @@ -153,7 +153,7 @@ def start(self, message): Nothing. """ - title = "Checking username" + title = f"Checking {id_type}" if self.color: print(Style.BRIGHT + Fore.GREEN + "[" + Fore.YELLOW + "*" + diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index f92b2ee9b..bbc998182 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2604,5 +2604,24 @@ "type": "yandex_public_id", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis77777" + }, + "WikimapiaSearch": { + "errorMsg": "Not found", + "errorType": "message", + "url": "http://wikimapia.org/user/tools/users_rating/?username={}", + "urlMain": "http://wikimapia.org", + "request_head_only": false, + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "WikimapiaProfile": { + "errorMsg": "January 01, 1970", + "errorType": "message", + "url": "http://wikimapia.org/user/{}", + "urlMain": "http://wikimapia.org", + "request_head_only": false, + "type": "wikimapia_uid", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" } } \ No newline at end of file diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index fdea34644..a9fc5cbc7 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -164,7 +164,7 @@ def sherlock(username, site_data, query_notify, """ #Notify caller that we are starting the query. - query_notify.start(username) + query_notify.start(username, id_type) # Create session based on request methodology if tor or unique_tor: @@ -348,10 +348,12 @@ def sherlock(username, site_data, query_notify, extracted_ids_data = extract(r.text) if extracted_ids_data: - new_usernames = [] + new_usernames = {} for k,v in extracted_ids_data.items(): if 'username' in k: - new_usernames.append(v) + new_usernames[v] = 'username' + if k in ('yandex_public_id', 'wikimapia_uid'): + new_usernames[v] = k results_site['ids_usernames'] = new_usernames @@ -588,8 +590,8 @@ def main(): for k, v in info.items(): if 'username' in k: usernames[v] = 'username' - if k == 'yandex_public_id': - usernames[v] = 'yandex_public_id' + if k in ('yandex_public_id', 'wikimapia_uid'): + usernames[v] = k #Create object with all information about sites we are aware of. try: @@ -679,9 +681,10 @@ def main(): for website_name in results: dictionary = results[website_name] - if dictionary.get('ids_usernames'): - for u in dictionary.get('ids_usernames'): - usernames[u] = 'username' + new_usernames = dictionary.get('ids_usernames') + if new_usernames: + for u, utype in new_usernames.items(): + usernames[u] = utype if dictionary.get("status").status == QueryStatus.CLAIMED: exists_counter += 1 From dee2a0e3cd0e2ec7e374daca0416f47c7b3f599e Mon Sep 17 00:00:00 2001 From: soxoj <31013580+soxoj@users.noreply.github.com> Date: Sat, 11 Jul 2020 01:38:40 +0300 Subject: [PATCH 10/39] Update README.md --- README.md | 49 +++++-------------------------------------------- 1 file changed, 5 insertions(+), 44 deletions(-) diff --git a/README.md b/README.md index 341652ddd..e798d0b91 100644 --- a/README.md +++ b/README.md @@ -1,41 +1,6 @@ -

- - - -
- Hunt down social media accounts by username across social networks -
- - - - - - Website - docker image -

- -

- Demo -    |    - Installation -    |    - Usage -    |    - Docker Notes -    |    - Adding New Sites -

- -

- - - -

- -## Demo - -Use this link to test Sherlock directly in your browser: -https://elody.com/scenario/plan/16/ +## WARNING + +This is a sherlock fork under heavy development. ## Installation @@ -203,11 +168,7 @@ If some sites are failing due to connection problems (site is down, in maintenan you can exclude them from tests by creating a `tests/.excluded_sites` file with a list of sites to ignore (one site name per line). -## Stargazers over time - -[![Stargazers over time](https://starcharts.herokuapp.com/TheYahya/sherlock.svg)](https://starcharts.herokuapp.com/TheYahya/sherlock) - ## License -MIT © Sherlock Project
-Original Creator - [Siddharth Dushantha](https://github.com/sdushantha) +MIT © Maigret
+Original Creator of Sherlock Project - [Siddharth Dushantha](https://github.com/sdushantha) From a40e47cb6787e129e18bab171a180fa826263b38 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 11 Jul 2020 16:24:22 +0300 Subject: [PATCH 11/39] Tags added --- sherlock/resources/data.json | 5521 ++++++++++++++++++---------------- sherlock/sherlock.py | 17 +- 2 files changed, 2910 insertions(+), 2628 deletions(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index bbc998182..dadf40adf 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -1,2627 +1,2896 @@ -{ - "2Dimensions": { - "errorType": "status_code", - "rank": 664639, - "url": "https://2Dimensions.com/a/{}", - "urlMain": "https://2Dimensions.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "3dnews": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "errorType": "message", - "rank": 10569, - "url": "http://forum.3dnews.ru/member.php?username={}", - "urlMain": "http://forum.3dnews.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "4pda": { - "errorMsg": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.", - "errorType": "message", - "rank": 2814, - "url": "https://4pda.ru/forum/index.php?act=search&source=pst&noform=1&username={}", - "urlMain": "https://4pda.ru/", - "username_claimed": "green", - "username_unclaimed": "noonewouldeverusethis7" - }, - "500px": { - "errorMsg": "Oops! This page doesn\u2019t exist.", - "errorType": "message", - "rank": 3453, - "url": "https://500px.com/{}", - "urlMain": "https://500px.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "7Cups": { - "errorType": "status_code", - "rank": 51294, - "url": "https://www.7cups.com/@{}", - "urlMain": "https://www.7cups.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "About.me": { - "errorType": "status_code", - "rank": 11447, - "url": "https://about.me/{}", - "urlMain": "https://about.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Academia.edu": { - "errorType": "status_code", - "rank": 218, - "url": "https://independent.academia.edu/{}", - "urlMain": "https://www.academia.edu/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Alik.cz": { - "errorType": "status_code", - "rank": 845452, - "url": "https://www.alik.cz/u/{}", - "urlMain": "https://www.alik.cz/", - "username_claimed": "julian", - "username_unclaimed": "noonewouldeverusethis" - }, - "AllTrails": { - "errorMsg": "User could not be found.", - "errorType": "message", - "rank": 8256, - "url": "https://www.alltrails.com/members/{}", - "urlMain": "https://www.alltrails.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Anobii": { - "errorType": "response_url", - "rank": 43870, - "url": "https://www.anobii.com/{}/profile", - "urlMain": "https://www.anobii.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Aptoide": { - "errorType": "status_code", - "rank": 5114, - "url": "https://{}.en.aptoide.com/", - "urlMain": "https://en.aptoide.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Archive.org": { - "errorMsg": "cannot find account", - "errorType": "message", - "rank": 196, - "url": "https://archive.org/details/@{}", - "urlMain": "https://archive.org", - "username_claimed": "blue", - "username_unclaimed": "noonewould" - }, - "Asciinema": { - "errorType": "status_code", - "rank": 77227, - "url": "https://asciinema.org/~{}", - "urlMain": "https://asciinema.org", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Ask Fedora": { - "errorType": "status_code", - "rank": 27465, - "url": "https://ask.fedoraproject.org/u/{}", - "urlMain": "https://ask.fedoraproject.org/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "AskFM": { - "errorMsg": "Well, apparently not anymore.", - "errorType": "message", - "rank": 2888, - "regexCheck": "^[a-zA-Z0-9_]{3,40}$", - "url": "https://ask.fm/{}", - "urlMain": "https://ask.fm/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Audiojungle": { - "errorType": "status_code", - "rank": 5604, - "url": "https://audiojungle.net/user/{}", - "urlMain": "https://audiojungle.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Avizo": { - "errorType": "response_url", - "errorUrl": "https://www.avizo.cz/", - "rank": 507599, - "url": "https://www.avizo.cz/{}/", - "urlMain": "https://www.avizo.cz/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "BLIP.fm": { - "errorType": "status_code", - "rank": 145919, - "url": "https://blip.fm/{}", - "urlMain": "https://blip.fm/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BOOTH": { - "errorType": "response_url", - "errorUrl": "https://booth.pm/", - "rank": 7165, - "url": "https://{}.booth.pm/", - "urlMain": "https://booth.pm/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Badoo": { - "errorType": "status_code", - "rank": 2111, - "url": "https://badoo.com/profile/{}", - "urlMain": "https://badoo.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Bandcamp": { - "errorType": "status_code", - "rank": 1090, - "url": "https://www.bandcamp.com/{}", - "urlMain": "https://www.bandcamp.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Bazar.cz": { - "errorType": "response_url", - "errorUrl": "https://www.bazar.cz/error404.aspx", - "rank": 708771, - "url": "https://www.bazar.cz/{}/", - "urlMain": "https://www.bazar.cz/", - "username_claimed": "pianina", - "username_unclaimed": "noonewouldeverusethis" - }, - "Behance": { - "errorType": "status_code", - "rank": 324, - "url": "https://www.behance.net/{}", - "urlMain": "https://www.behance.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BitBucket": { - "errorType": "status_code", - "rank": 2831, - "url": "https://bitbucket.org/{}/", - "urlMain": "https://bitbucket.org/", - "username_claimed": "white", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BitCoinForum": { - "errorMsg": "The user whose profile you are trying to view does not exist.", - "errorType": "message", - "rank": 164864, - "url": "https://bitcoinforum.com/profile/{}", - "urlMain": "https://bitcoinforum.com", - "username_claimed": "bitcoinforum.com", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Blogger": { - "errorType": "status_code", - "rank": 289, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.blogspot.com", - "urlMain": "https://www.blogger.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BodyBuilding": { - "errorType": "response_url", - "errorUrl": "https://bodyspace.bodybuilding.com/", - "rank": 2925, - "url": "https://bodyspace.bodybuilding.com/{}", - "urlMain": "https://bodyspace.bodybuilding.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Bookcrossing": { - "errorType": "status_code", - "rank": 54059, - "url": "https://www.bookcrossing.com/mybookshelf/{}/", - "urlMain": "https://www.bookcrossing.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "BuyMeACoffee": { - "errorType": "status_code", - "rank": 13282, - "url": "https://buymeacoff.ee/{}", - "urlMain": "https://www.buymeacoffee.com/", - "urlProbe": "https://www.buymeacoffee.com/{}", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BuzzFeed": { - "errorType": "status_code", - "rank": 402, - "url": "https://buzzfeed.com/{}", - "urlMain": "https://buzzfeed.com/", - "username_claimed": "blue", - "username_unclaimed": "xgtrq" - }, - "CNET": { - "errorType": "status_code", - "rank": 147, - "url": "https://www.cnet.com/profiles/{}/", - "urlMain": "https://www.cnet.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Carbonmade": { - "errorType": "response_url", - "errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com", - "rank": 26142, - "url": "https://{}.carbonmade.com", - "urlMain": "https://carbonmade.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Career.habr": { - "errorMsg": "

\u041e\u0448\u0438\u0431\u043a\u0430 404

", - "errorType": "message", - "rank": 1337, - "url": "https://career.habr.com/{}", - "urlMain": "https://career.habr.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "CashMe": { - "errorType": "status_code", - "rank": 0, - "url": "https://cash.me/${}", - "urlMain": "https://cash.me/", - "request_head_only": false, - "username_claimed": "Jenny", - "username_unclaimed": "noonewouldeverusethis7", - "errors": { - "Cash isn't available in your country yet.": "Access denied in your country, use tor/proxy" - } - }, - "Cent": { - "errorMsg": "Cent", - "errorType": "message", - "rank": 118892, - "url": "https://beta.cent.co/@{}", - "urlMain": "https://cent.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Championat": { - "errorType": "status_code", - "rank": 1945, - "url": "https://www.championat.com/user/{}", - "urlMain": "https://www.championat.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Chatujme.cz": { - "errorMsg": "Neexistujic\u00ed profil", - "errorType": "message", - "rank": 9812219, - "url": "https://profil.chatujme.cz/{}", - "urlMain": "https://chatujme.cz/", - "username_claimed": "david", - "username_unclaimed": "noonewouldeverusethis" - }, - "Chess": { - "errorMsg": "Missing page... somebody made a wrong move.", - "errorType": "message", - "rank": 590, - "url": "https://www.chess.com/ru/member/{}", - "urlMain": "https://www.chess.com/ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Cloob": { - "errorType": "status_code", - "rank": 10574, - "url": "https://www.cloob.com/name/{}", - "urlMain": "https://www.cloob.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "CloudflareCommunity": { - "errorType": "status_code", - "rank": 1469, - "url": "https://community.cloudflare.com/u/{}", - "urlMain": "https://community.cloudflare.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Clozemaster": { - "errorType": "status_code", - "rank": 66473, - "url": "https://www.clozemaster.com/players/{}", - "urlMain": "https://www.clozemaster.com", - "username_claimed": "green", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Codecademy": { - "errorType": "status_code", - "rank": 1883, - "url": "https://www.codecademy.com/profiles/{}", - "urlMain": "https://www.codecademy.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Codechef": { - "errorType": "response_url", - "errorUrl": "https://www.codechef.com/", - "rank": 9625, - "url": "https://www.codechef.com/users/{}", - "urlMain": "https://www.codechef.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Coderwall": { - "errorMsg": "404! Our feels when that url is used", - "errorType": "message", - "rank": 11256, - "url": "https://coderwall.com/{}", - "urlMain": "https://coderwall.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Codewars": { - "errorType": "status_code", - "rank": 19606, - "url": "https://www.codewars.com/users/{}", - "urlMain": "https://www.codewars.com", - "username_claimed": "example", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Contently": { - "errorMsg": "We can't find that page!", - "errorType": "message", - "rank": 13782, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.contently.com/", - "urlMain": "https://contently.com/", - "username_claimed": "jordanteicher", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Coroflot": { - "errorType": "status_code", - "rank": 40597, - "url": "https://www.coroflot.com/{}", - "urlMain": "https://coroflot.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Cracked": { - "errorType": "response_url", - "errorUrl": "https://www.cracked.com/", - "rank": 4551, - "url": "https://www.cracked.com/members/{}/", - "urlMain": "https://www.cracked.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "CreativeMarket": { - "errorType": "response_url", - "errorUrl": "https://www.creativemarket.com/", - "rank": 1896, - "url": "https://creativemarket.com/users/{}", - "urlMain": "https://creativemarket.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Crevado": { - "errorType": "status_code", - "rank": 200626, - "url": "https://{}.crevado.com", - "urlMain": "https://crevado.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Crunchyroll": { - "errorType": "status_code", - "rank": 545, - "url": "https://www.crunchyroll.com/user/{}", - "urlMain": "https://www.crunchyroll.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "DEV Community": { - "errorType": "status_code", - "rank": 7362, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://dev.to/{}", - "urlMain": "https://dev.to/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "DailyMotion": { - "errorType": "status_code", - "rank": 207, - "url": "https://www.dailymotion.com/{}", - "urlMain": "https://www.dailymotion.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Designspiration": { - "errorType": "status_code", - "rank": 5627019, - "url": "https://www.designspiration.net/{}/", - "urlMain": "https://www.designspiration.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "DeviantART": { - "errorType": "status_code", - "rank": 529, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.deviantart.com", - "urlMain": "https://deviantart.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Discogs": { - "errorType": "status_code", - "rank": 1056, - "url": "https://www.discogs.com/user/{}", - "urlMain": "https://www.discogs.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Discuss.Elastic.co": { - "errorType": "status_code", - "rank": 6815, - "url": "https://discuss.elastic.co/u/{}", - "urlMain": "https://discuss.elastic.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Disqus": { - "errorType": "status_code", - "rank": 1078, - "url": "https://disqus.com/{}", - "urlMain": "https://disqus.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Docker Hub": { - "errorType": "status_code", - "rank": 3310, - "url": "https://hub.docker.com/u/{}/", - "urlMain": "https://hub.docker.com/", - "urlProbe": "https://hub.docker.com/v2/users/{}/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Dribbble": { - "errorMsg": "Whoops, that page is gone.", - "errorType": "message", - "rank": 1163, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://dribbble.com/{}", - "urlMain": "https://dribbble.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Duolingo": { - "errorMsg": "{\"users\":[]}", - "errorType": "message", - "rank": 397, - "url": "https://www.duolingo.com/profile/{}", - "urlMain": "https://duolingo.com/", - "urlProbe": "https://www.duolingo.com/2017-06-30/users?username={}", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Ebay": { - "errorMsg": "

", - "errorType": "message", - "rank": 56, - "url": "https://www.ebay.com/usr/{}", - "urlMain": "https://www.ebay.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Ello": { - "errorMsg": "We couldn't find the page you're looking for", - "errorType": "message", - "rank": 50193, - "url": "https://ello.co/{}", - "urlMain": "https://ello.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Etsy": { - "errorType": "status_code", - "rank": 161, - "url": "https://www.etsy.com/shop/{}", - "urlMain": "https://www.etsy.com/", - "username_claimed": "JennyKrafts", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Euw": { - "errorMsg": "This summoner is not registered at OP.GG. Please check spelling.", - "errorType": "message", - "rank": 291, - "url": "https://euw.op.gg/summoner/userName={}", - "urlMain": "https://euw.op.gg/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "EyeEm": { - "errorType": "response_url", - "errorUrl": "https://www.eyeem.com/", - "rank": 38664, - "url": "https://www.eyeem.com/u/{}", - "urlMain": "https://www.eyeem.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "F3.cool": { - "errorType": "status_code", - "rank": 54043, - "url": "https://f3.cool/{}/", - "urlMain": "https://f3.cool/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Facebook": { - "errorType": "status_code", - "rank": 7, - "regexCheck": "^[a-zA-Z0-9\\.]{3,49}(?", - "errorType": "message", - "rank": 1337, - "url": "https://freelance.habr.com/freelancers/{}", - "urlMain": "https://freelance.habr.com/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Freelancer.com": { - "errorMsg": "\"users\":{}", - "errorType": "message", - "rank": 576, - "url": "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={}&compact=true", - "urlMain": "https://www.freelancer.com/", - "username_claimed": "red0xff", - "username_unclaimed": "noonewouldeverusethis" - }, - "Freesound": { - "errorType": "status_code", - "rank": 6938, - "url": "https://freesound.org/people/{}/", - "urlMain": "https://freesound.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "GDProfiles": { - "errorType": "status_code", - "rank": 1610005, - "url": "https://gdprofiles.com/{}", - "urlMain": "https://gdprofiles.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Gamespot": { - "errorType": "status_code", - "rank": 519, - "url": "https://www.gamespot.com/profile/{}/", - "urlMain": "https://www.gamespot.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Giphy": { - "errorType": "status_code", - "rank": 580, - "url": "https://giphy.com/{}", - "urlMain": "https://giphy.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GitHub": { - "errorType": "status_code", - "rank": 81, - "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", - "url": "https://www.github.com/{}", - "urlMain": "https://www.github.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GitLab": { - "errorMsg": "[]", - "errorType": "message", - "rank": 3707, - "url": "https://gitlab.com/{}", - "urlMain": "https://gitlab.com/", - "urlProbe": "https://gitlab.com/api/v4/users?username={}", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Gitee": { - "errorType": "status_code", - "rank": 5518, - "url": "https://gitee.com/{}", - "urlMain": "https://gitee.com/", - "username_claimed": "wizzer", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GoodReads": { - "errorType": "status_code", - "rank": 326, - "url": "https://www.goodreads.com/{}", - "urlMain": "https://www.goodreads.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Gravatar": { - "errorType": "status_code", - "rank": 5492, - "url": "http://en.gravatar.com/{}", - "urlMain": "http://en.gravatar.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Gumroad": { - "errorMsg": "Page not found.", - "errorType": "message", - "rank": 4049, - "url": "https://www.gumroad.com/{}", - "urlMain": "https://www.gumroad.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GunsAndAmmo": { - "errorType": "status_code", - "rank": 160298, - "url": "https://forums.gunsandammo.com/profile/{}", - "urlMain": "https://gunsandammo.com/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GuruShots": { - "errorType": "status_code", - "rank": 17413, - "url": "https://gurushots.com/{}/photos", - "urlMain": "https://gurushots.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "HackTheBox": { - "errorType": "status_code", - "rank": 44381, - "url": "https://forum.hackthebox.eu/profile/{}", - "urlMain": "https://forum.hackthebox.eu/", - "username_claimed": "angar", - "username_unclaimed": "noonewouldeverusethis" - }, - "HackerNews": { - "errorMsg": "No such user.", - "errorType": "message", - "rank": 5220, - "url": "https://news.ycombinator.com/user?id={}", - "urlMain": "https://news.ycombinator.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "HackerOne": { - "errorMsg": "Page not found", - "errorType": "message", - "rank": 24074, - "url": "https://hackerone.com/{}", - "urlMain": "https://hackerone.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "HackerRank": { - "errorMsg": "Something went wrong", - "errorType": "message", - "rank": 3044, - "url": "https://hackerrank.com/{}", - "urlMain": "https://hackerrank.com/", - "username_claimed": "satznova", - "username_unclaimed": "noonewouldeverusethis7" - }, - "House-Mixes.com": { - "errorMsg": "Profile Not Found", - "errorType": "message", - "rank": 979956, - "regexCheck": "^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$", - "url": "https://www.house-mixes.com/profile/{}", - "urlMain": "https://www.house-mixes.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Houzz": { - "errorMsg": "The page you requested was not found.", - "errorType": "message", - "rank": 1833, - "url": "https://houzz.com/user/{}", - "urlMain": "https://houzz.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "HubPages": { - "errorType": "status_code", - "rank": 3739, - "url": "https://hubpages.com/@{}", - "urlMain": "https://hubpages.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Hubski": { - "errorMsg": "No such user", - "errorType": "message", - "rank": 199033, - "url": "https://hubski.com/user/{}", - "urlMain": "https://hubski.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "IFTTT": { - "errorMsg": "The requested page or file does not exist", - "errorType": "message", - "rank": 9039, - "regexCheck": "^[A-Za-z0-9]{3,35}$", - "url": "https://www.ifttt.com/p/{}", - "urlMain": "https://www.ifttt.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ImageShack": { - "errorType": "response_url", - "errorUrl": "https://imageshack.com/", - "rank": 42021, - "url": "https://imageshack.com/user/{}", - "urlMain": "https://imageshack.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ImgUp.cz": { - "errorType": "status_code", - "rank": 2727868, - "url": "https://imgup.cz/{}", - "urlMain": "https://imgup.cz/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis" - }, - "Instagram": { - "errorType": "status_code", - "rank": 35, - "request_head_only": false, - "url": "https://www.instagram.com/{}", - "urlMain": "https://www.instagram.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Instructables": { - "errorMsg": "404: We're sorry, things break sometimes", - "errorType": "message", - "rank": 1165, - "url": "https://www.instructables.com/member/{}", - "urlMain": "https://www.instructables.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Issuu": { - "errorType": "status_code", - "rank": 543, - "url": "https://issuu.com/{}", - "urlMain": "https://issuu.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Itch.io": { - "errorType": "status_code", - "rank": 2210, - "url": "https://{}.itch.io/", - "urlMain": "https://itch.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Jimdo": { - "errorType": "status_code", - "noPeriod": "True", - "rank": 27580, - "url": "https://{}.jimdosite.com", - "urlMain": "https://jimdosite.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Kaggle": { - "errorType": "status_code", - "rank": 2648, - "url": "https://www.kaggle.com/{}", - "urlMain": "https://www.kaggle.com/", - "username_claimed": "dansbecker", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Kali community": { - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorType": "message", - "rank": 7440, - "url": "https://forums.kali.org/member.php?username={}", - "urlMain": "https://forums.kali.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "KanoWorld": { - "errorType": "status_code", - "rank": 181933, - "url": "https://api.kano.me/progress/user/{}", - "urlMain": "https://world.kano.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Keybase": { - "errorMsg": "them\":[null]", - "errorType": "message", - "rank": 56712, - "url": "https://keybase.io/{}", - "urlCheck": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={}", - "urlMain": "https://keybase.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Kik": { - "errorMsg": "The page you requested was not found", - "errorType": "message", - "rank": 565825, - "url": "https://ws2.kik.com/user/{}", - "urlMain": "http://kik.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Kongregate": { - "errorMsg": "Sorry, no account with that name was found.", - "errorType": "message", - "rank": 2732, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://www.kongregate.com/accounts/{}", - "urlMain": "https://www.kongregate.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "LOR": { - "errorType": "status_code", - "rank": 38696, - "url": "https://www.linux.org.ru/people/{}/profile", - "urlMain": "https://linux.org.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Launchpad": { - "errorType": "status_code", - "rank": 9993, - "url": "https://launchpad.net/~{}", - "urlMain": "https://launchpad.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "LeetCode": { - "errorType": "status_code", - "rank": 2895, - "url": "https://leetcode.com/{}", - "urlMain": "https://leetcode.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Letterboxd": { - "errorMsg": "Sorry, we can\u2019t find the page you\u2019ve requested.", - "errorType": "message", - "rank": 4053, - "url": "https://letterboxd.com/{}", - "urlMain": "https://letterboxd.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Lichess": { - "errorMsg": "Page not found!", - "errorType": "message", - "rank": 2163, - "url": "https://lichess.org/@/{}", - "urlMain": "https://lichess.org", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "LiveJournal": { - "errorType": "status_code", - "rank": 430, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.livejournal.com", - "urlMain": "https://www.livejournal.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Lobsters": { - "errorType": "status_code", - "rank": 152798, - "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", - "url": "https://lobste.rs/u/{}", - "urlMain": "https://lobste.rs/", - "username_claimed": "jcs", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Lolchess": { - "errorMsg": "No search results", - "errorType": "message", - "rank": 3195, - "url": "https://lolchess.gg/profile/na/{}", - "urlMain": "https://lolchess.gg/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Medium": { - "errorMsg": "We couldn’t find this page.", - "errorType": "message", - "rank": 72, - "url": "https://medium.com/@{}", - "urlMain": "https://medium.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "MeetMe": { - "errorType": "response_url", - "errorUrl": "https://www.meetme.com/", - "rank": 23062, - "url": "https://www.meetme.com/{}", - "urlMain": "https://www.meetme.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Memrise": { - "errorType": "response_url", - "errorUrl": "https://www.memrise.com/", - "rank": 4813, - "url": "https://www.memrise.com/user/{}/", - "urlMain": "https://www.memrise.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "MixCloud": { - "errorType": "status_code", - "rank": 2403, - "url": "https://www.mixcloud.com/{}/", - "urlMain": "https://www.mixcloud.com/", - "urlProbe": "https://api.mixcloud.com/{}/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "MyAnimeList": { - "errorType": "status_code", - "rank": 957, - "url": "https://myanimelist.net/profile/{}", - "urlMain": "https://myanimelist.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Myspace": { - "errorType": "status_code", - "rank": 2540, - "url": "https://myspace.com/{}", - "urlMain": "https://myspace.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "NICommunityForum": { - "errorMsg": "The specified member cannot be found", - "errorType": "message", - "rank": 6996, - "url": "https://www.native-instruments.com/forum/members?username={}", - "urlMain": "https://www.native-instruments.com/forum/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "NPM": { - "errorType": "status_code", - "rank": 5926, - "url": "https://www.npmjs.com/~{}", - "urlMain": "https://www.npmjs.com/", - "username_claimed": "kennethsweezy", - "username_unclaimed": "noonewould" - }, - "NPM-Package": { - "errorType": "status_code", - "rank": 5926, - "url": "https://www.npmjs.com/package/{}", - "urlMain": "https://www.npmjs.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "NameMC (Minecraft.net skins)": { - "errorMsg": "Profiles: 0 results", - "errorType": "message", - "rank": 7282, - "url": "https://namemc.com/profile/{}", - "urlMain": "https://namemc.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "NationStates Nation": { - "errorMsg": "Was this your nation? It may have ceased to exist due to inactivity, but can rise again!", - "errorType": "message", - "rank": 48529, - "url": "https://nationstates.net/nation={}", - "urlMain": "https://nationstates.net", - "username_claimed": "the_holy_principality_of_saint_mark", - "username_unclaimed": "noonewould" - }, - "NationStates Region": { - "errorMsg": "does not exist.", - "errorType": "message", - "rank": 48529, - "url": "https://nationstates.net/region={}", - "urlMain": "https://nationstates.net", - "username_claimed": "the_west_pacific", - "username_unclaimed": "noonewould" - }, - "Newgrounds": { - "errorType": "status_code", - "rank": 6797, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.newgrounds.com", - "urlMain": "https://newgrounds.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "OK": { - "errorType": "status_code", - "rank": 63, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$", - "url": "https://ok.ru/{}", - "urlMain": "https://ok.ru/", - "username_claimed": "ok", - "username_unclaimed": "noonewouldeverusethis7" - }, - "OpenCollective": { - "errorType": "status_code", - "rank": 39473, - "url": "https://opencollective.com/{}", - "urlMain": "https://opencollective.com/", - "username_claimed": "sindresorhus", - "username_unclaimed": "noonewouldeverusethis7" - }, - "OpenStreetMap": { - "errorType": "status_code", - "rank": 8544, - "url": "https://www.openstreetmap.org/user/{}", - "urlMain": "https://www.openstreetmap.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Oracle Community": { - "errorType": "status_code", - "rank": 587, - "url": "https://community.oracle.com/people/{}", - "urlMain": "https://community.oracle.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Otzovik": { - "errorType": "status_code", - "rank": 2058, - "url": "https://otzovik.com/profile/{}", - "urlMain": "https://otzovik.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "OurDJTalk": { - "errorMsg": "The specified member cannot be found", - "errorType": "message", - "rank": 2697698, - "url": "https://ourdjtalk.com/members?username={}", - "urlMain": "https://ourdjtalk.com/", - "username_claimed": "steve", - "username_unclaimed": "noonewouldeverusethis" - }, - "PCGamer": { - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorType": "message", - "rank": 973, - "url": "https://forums.pcgamer.com/members/?username={}", - "urlMain": "https://pcgamer.com", - "username_claimed": "admin", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PCPartPicker": { - "errorType": "status_code", - "rank": 2471, - "url": "https://pcpartpicker.com/user/{}", - "urlMain": "https://pcpartpicker.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PSNProfiles.com": { - "errorType": "response_url", - "errorUrl": "https://psnprofiles.com/?psnId={}", - "rank": 11533, - "url": "https://psnprofiles.com/{}", - "urlMain": "https://psnprofiles.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Packagist": { - "errorType": "response_url", - "errorUrl": "https://packagist.org/search/?q={}&reason=vendor_not_found", - "rank": 19371, - "url": "https://packagist.org/packages/{}/", - "urlMain": "https://packagist.org/", - "username_claimed": "psr", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pastebin": { - "errorType": "response_url", - "errorUrl": "https://pastebin.com/index", - "rank": 1221, - "url": "https://pastebin.com/u/{}", - "urlMain": "https://pastebin.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Patreon": { - "errorType": "status_code", - "rank": 374, - "url": "https://www.patreon.com/{}", - "urlMain": "https://www.patreon.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Periscope": { - "errorType": "status_code", - "rank": 27375, - "url": "https://www.periscope.tv/{}/", - "urlMain": "https://www.periscope.tv/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Photobucket": { - "errorType": "status_code", - "rank": 3893, - "url": "https://photobucket.com/user/{}/library", - "urlMain": "https://photobucket.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pinkbike": { - "errorType": "status_code", - "rank": 9280, - "url": "https://www.pinkbike.com/u/{}/", - "urlMain": "https://www.pinkbike.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pinterest": { - "errorType": "status_code", - "rank": 172, - "url": "https://www.pinterest.com/{}/", - "urlMain": "https://www.pinterest.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PlayStore": { - "errorType": "status_code", - "rank": 1, - "url": "https://play.google.com/store/apps/developer?id={}", - "urlMain": "https://play.google.com/store", - "username_claimed": "Facebook", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pling": { - "errorType": "response_url", - "errorUrl": "https://www.pling.com/", - "rank": 114656, - "url": "https://www.pling.com/u/{}/", - "urlMain": "https://www.pling.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Plug.DJ": { - "errorType": "status_code", - "rank": 40338, - "url": "https://plug.dj/@/{}", - "urlMain": "https://plug.dj/", - "username_claimed": "plug-dj-rock", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pokemon Showdown": { - "errorType": "status_code", - "rank": 5323, - "url": "https://pokemonshowdown.com/users/{}", - "urlMain": "https://pokemonshowdown.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PokerStrategy": { - "errorType": "status_code", - "rank": 3558413, - "url": "http://www.pokerstrategy.net/user/{}/profile/", - "urlMain": "http://www.pokerstrategy.net", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Polygon": { - "errorType": "status_code", - "rank": 1151, - "url": "https://www.polygon.com/users/{}", - "urlMain": "https://www.polygon.com/", - "username_claimed": "swiftstickler", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ProductHunt": { - "errorMsg": "Product Hunt is a curation of the best new products", - "errorType": "message", - "rank": 10865, - "url": "https://www.producthunt.com/@{}", - "urlMain": "https://www.producthunt.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PromoDJ": { - "errorType": "status_code", - "rank": 34124, - "url": "http://promodj.com/{}", - "urlMain": "http://promodj.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Quora": { - "errorType": "response_url", - "errorUrl": "https://www.quora.com/profile/{}", - "rank": 221, - "url": "https://www.quora.com/profile/{}", - "urlMain": "https://www.quora.com/", - "username_claimed": "Matt-Riggsby", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Rajce.net": { - "errorType": "status_code", - "rank": 1656, - "url": "https://{}.rajce.idnes.cz/", - "urlMain": "https://www.rajce.idnes.cz/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Rate Your Music": { - "errorType": "status_code", - "rank": 5239, - "url": "https://rateyourmusic.com/~{}", - "urlMain": "https://rateyourmusic.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Realmeye": { - "errorMsg": "Sorry, but we either:", - "errorType": "message", - "rank": 25898, - "url": "https://www.realmeye.com/player/{}", - "urlMain": "https://www.realmeye.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Redbubble": { - "errorType": "status_code", - "rank": 1367, - "url": "https://www.redbubble.com/people/{}", - "urlMain": "https://www.redbubble.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "Reddit": { - "errorType": "status_code", - "rank": 19, - "url": "https://www.reddit.com/user/{}", - "urlMain": "https://www.reddit.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Repl.it": { - "errorMsg": "404", - "errorType": "message", - "rank": 3343, - "url": "https://repl.it/@{}", - "urlMain": "https://repl.it/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ResearchGate": { - "errorType": "response_url", - "errorUrl": "https://www.researchgate.net/directory/profiles", - "rank": 138, - "regexCheck": "\\w+_\\w+", - "url": "https://www.researchgate.net/profile/{}", - "urlMain": "https://www.researchgate.net/", - "username_claimed": "John_Smith", - "username_unclaimed": "noonewould_everusethis7" - }, - "ReverbNation": { - "errorMsg": "Sorry, we couldn't find that page", - "errorType": "message", - "rank": 9539, - "url": "https://www.reverbnation.com/{}", - "urlMain": "https://www.reverbnation.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Roblox": { - "errorMsg": "Page cannot be found or no longer exists", - "errorType": "message", - "rank": 124, - "url": "https://www.roblox.com/user.aspx?username={}", - "urlMain": "https://www.roblox.com/", - "username_claimed": "bluewolfekiller", - "username_unclaimed": "noonewouldeverusethis7" - }, - "RubyGems": { - "errorType": "status_code", - "rank": 38430, - "url": "https://rubygems.org/profiles/{}", - "urlMain": "https://rubygems.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Sbazar.cz": { - "errorType": "status_code", - "rank": 16505, - "url": "https://www.sbazar.cz/{}", - "urlMain": "https://www.sbazar.cz/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Scratch": { - "errorType": "status_code", - "rank": 440, - "url": "https://scratch.mit.edu/users/{}", - "urlMain": "https://scratch.mit.edu/", - "username_claimed": "griffpatch", - "username_unclaimed": "noonewould" - }, - "Scribd": { - "errorMsg": "Page not found", - "errorType": "message", - "rank": 234, - "url": "https://www.scribd.com/{}", - "urlMain": "https://www.scribd.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ShitpostBot5000": { - "errorType": "status_code", - "rank": 580064, - "url": "https://www.shitpostbot.com/user/{}", - "urlMain": "https://www.shitpostbot.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Signal": { - "errorMsg": "Oops! That page doesn\u2019t exist or is private.", - "errorType": "message", - "rank": 918113, - "url": "https://community.signalusers.org/u/{}", - "urlMain": "https://community.signalusers.org", - "username_claimed": "jlund", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Slack": { - "errorType": "status_code", - "rank": 285, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.slack.com", - "urlMain": "https://slack.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SlideShare": { - "errorType": "status_code", - "rank": 127, - "url": "https://slideshare.net/{}", - "urlMain": "https://slideshare.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Smashcast": { - "errorType": "status_code", - "rank": 192503, - "url": "https://www.smashcast.tv/api/media/live/{}", - "urlMain": "https://www.smashcast.tv/", - "username_claimed": "hello", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Smule": { - "errorType": "status_code", - "rank": 7785, - "url": "https://www.smule.com/{}", - "urlMain": "https://www.smule.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SoundCloud": { - "errorType": "status_code", - "rank": 96, - "url": "https://soundcloud.com/{}", - "urlMain": "https://soundcloud.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SourceForge": { - "errorType": "status_code", - "rank": 405, - "url": "https://sourceforge.net/u/{}", - "urlMain": "https://sourceforge.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Speedrun.com": { - "errorMsg": "not found.", - "errorType": "message", - "rank": 10864, - "url": "https://speedrun.com/user/{}", - "urlMain": "https://speedrun.com/", - "username_claimed": "3Tau", - "username_unclaimed": "noonewould" - }, - "Splits.io": { - "errorType": "status_code", - "rank": 655157, - "url": "https://splits.io/users/{}", - "urlMain": "https://splits.io", - "username_claimed": "cambosteve", - "username_unclaimed": "noonewould" - }, - "Sporcle": { - "errorType": "status_code", - "rank": 3128, - "url": "https://www.sporcle.com/user/{}/people", - "urlMain": "https://www.sporcle.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SportsRU": { - "errorType": "status_code", - "rank": 2936, - "url": "https://www.sports.ru/profile/{}/", - "urlMain": "https://www.sports.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Spotify": { - "errorType": "status_code", - "rank": 87, - "url": "https://open.spotify.com/user/{}", - "urlMain": "https://open.spotify.com/", - "request_head_only": false, - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7", - "errors": { - "Spotify is currently not available in your country.": "Access denied in your country, use tor/proxy" - } - }, - "Star Citizen": { - "errorType": "status_code", - "rank": 7927, - "url": "https://robertsspaceindustries.com/citizens/{}", - "urlMain": "https://robertsspaceindustries.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Steam": { - "errorMsg": "The specified profile could not be found", - "errorType": "message", - "rank": 168, - "url": "https://steamcommunity.com/id/{}", - "urlMain": "https://steamcommunity.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SteamGroup": { - "errorMsg": "No group could be retrieved for the given URL", - "errorType": "message", - "rank": 168, - "url": "https://steamcommunity.com/groups/{}", - "urlMain": "https://steamcommunity.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Steamid": { - "errorMsg": "

Profile not found
", - "errorType": "message", - "rank": 119934, - "url": "https://steamid.uk/profile/{}", - "urlMain": "https://steamid.uk/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SublimeForum": { - "errorType": "status_code", - "rank": 6503, - "url": "https://forum.sublimetext.com/u/{}", - "urlMain": "https://forum.sublimetext.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "T-MobileSupport": { - "errorType": "status_code", - "rank": 1759, - "url": "https://support.t-mobile.com/people/{}", - "urlMain": "https://support.t-mobile.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "TamTam": { - "errorType": "response_url", - "errorUrl": "https://tamtam.chat/", - "rank": 87903, - "url": "https://tamtam.chat/{}", - "urlMain": "https://tamtam.chat/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Taringa": { - "errorType": "status_code", - "rank": 1092, - "url": "https://www.taringa.net/{}", - "urlMain": "https://taringa.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Tellonym.me": { - "errorType": "status_code", - "rank": 26963, - "url": "https://tellonym.me/{}", - "urlMain": "https://tellonym.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Tinder": { - "errorMsg": "Looking for Someone?", - "errorType": "message", - "rank": 1149, - "url": "https://www.gotinder.com/@{}", - "urlMain": "https://tinder.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "TrackmaniaLadder": { - "errorMsg": "player unknown or invalid", - "errorType": "message", - "rank": 537293, - "url": "http://en.tm-ladder.com/{}_rech.php", - "urlMain": "http://en.tm-ladder.com/index.php", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "TradingView": { - "errorType": "status_code", - "rank": 171, - "url": "https://www.tradingview.com/u/{}/", - "urlMain": "https://www.tradingview.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Trakt": { - "errorType": "status_code", - "rank": 6415, - "url": "https://www.trakt.tv/users/{}", - "urlMain": "https://www.trakt.tv/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "TrashboxRU": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "rank": 17595, - "regexCheck": "^[A-Za-z0-9_-]{3,16}$", - "url": "https://trashbox.ru/users/{}", - "urlMain": "https://trashbox.ru/", - "username_claimed": "blue", - "username_unclaimed": "never-never-ever" - }, - "Trello": { - "errorMsg": "model not found", - "errorType": "message", - "rank": 181, - "url": "https://trello.com/{}", - "urlMain": "https://trello.com/", - "urlProbe": "https://trello.com/1/Members/{}", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "TripAdvisor": { - "errorMsg": "This page is on vacation\u2026", - "errorType": "message", - "rank": 627, - "url": "https://tripadvisor.com/members/{}", - "urlMain": "https://tripadvisor.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Twitch": { - "errorType": "status_code", - "rank": 33, - "url": "https://www.twitch.tv/{}", - "urlMain": "https://www.twitch.tv/", - "urlProbe": "https://m.twitch.tv/{}", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Twitter": { - "errorType": "status_code", - "headers": { - "User-Agent": "" - }, - "rank": 59, - "url": "https://www.twitter.com/{}", - "urlMain": "https://www.twitter.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Typeracer": { - "errorMsg": "Profile Not Found", - "errorType": "message", - "rank": 9093, - "url": "https://data.typeracer.com/pit/profile?user={}", - "urlMain": "https://typeracer.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Ultimate-Guitar": { - "errorType": "status_code", - "rank": 600, - "url": "https://ultimate-guitar.com/u/{}", - "urlMain": "https://ultimate-guitar.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Unsplash": { - "errorType": "status_code", - "rank": 365, - "url": "https://unsplash.com/@{}", - "urlMain": "https://unsplash.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "VK": { - "errorType": "response_url", - "errorUrl": "https://www.quora.com/profile/{}", - "rank": 23, - "url": "https://vk.com/{}", - "urlMain": "https://vk.com/", - "username_claimed": "smith", - "username_unclaimed": "blah62831" - }, - "VSCO": { - "errorType": "status_code", - "rank": 5172, - "url": "https://vsco.co/{}", - "urlMain": "https://vsco.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Velomania": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "errorType": "message", - "rank": 142077, - "url": "https://forum.velomania.ru/member.php?username={}", - "urlMain": "https://forum.velomania.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Venmo": { - "errorType": "status_code", - "rank": 6580, - "url": "https://venmo.com/{}", - "urlMain": "https://venmo.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Vimeo": { - "errorType": "status_code", - "rank": 169, - "url": "https://vimeo.com/{}", - "urlMain": "https://vimeo.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Virgool": { - "errorMsg": "\u06f4\u06f0\u06f4", - "errorType": "message", - "rank": 2548, - "url": "https://virgool.io/@{}", - "urlMain": "https://virgool.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "VirusTotal": { - "errorMsg": "not found", - "errorType": "message", - "rank": 5398, - "url": "https://www.virustotal.com/ui/users/{}/trusted_users", - "urlMain": "https://www.virustotal.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Wattpad": { - "errorMsg": "userError-404", - "errorType": "message", - "rank": 574, - "url": "https://www.wattpad.com/user/{}", - "urlMain": "https://www.wattpad.com/", - "username_claimed": "Dogstho7951", - "username_unclaimed": "noonewouldeverusethis7" - }, - "We Heart It": { - "errorMsg": "Oops! You've landed on a moving target!", - "errorType": "message", - "rank": 3005, - "url": "https://weheartit.com/{}", - "urlMain": "https://weheartit.com/", - "username_claimed": "ventivogue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "WebNode": { - "errorType": "status_code", - "rank": 22436, - "url": "https://{}.webnode.cz/", - "urlMain": "https://www.webnode.cz/", - "username_claimed": "radkabalcarova", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Whonix Forum": { - "errorType": "status_code", - "rank": 245814, - "url": "https://forums.whonix.org/u/{}", - "urlMain": "https://forums.whonix.org/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Wikidot": { - "errorMsg": "User does not exist.", - "errorType": "message", - "rank": 3290, - "url": "http://www.wikidot.com/user:info/{}", - "urlMain": "http://www.wikidot.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Wikipedia": { - "errorMsg": "is not registered.", - "errorType": "message", - "rank": 10, - "url": "https://www.wikipedia.org/wiki/User:{}", - "urlMain": "https://www.wikipedia.org/", - "username_claimed": "Hoadlck", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Wix": { - "errorType": "status_code", - "rank": 226, - "url": "https://{}.wix.com", - "urlMain": "https://wix.com/", - "username_claimed": "support", - "username_unclaimed": "noonewouldeverusethis7" - }, - "WordPress": { - "errorType": "response_url", - "errorUrl": "wordpress.com/typo/?subdomain=", - "rank": 52, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.wordpress.com/", - "urlMain": "https://wordpress.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "WordPressOrg": { - "errorType": "response_url", - "errorUrl": "https://wordpress.org", - "rank": 636, - "url": "https://profiles.wordpress.org/{}/", - "urlMain": "https://wordpress.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "YandexCollection": { - "errorType": "status_code", - "rank": 55, - "url": "https://yandex.ru/collections/user/{}/", - "request_head_only": false, - "urlMain": "https://yandex.ru/collections/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "YouNow": { - "errorMsg": "No users found", - "errorType": "message", - "rank": 13091, - "url": "https://www.younow.com/{}/", - "urlMain": "https://www.younow.com/", - "urlProbe": "https://api.younow.com/php/api/broadcast/info/user={}/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "YouPic": { - "errorType": "status_code", - "rank": 26640, - "url": "https://youpic.com/photographer/{}/", - "urlMain": "https://youpic.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "YouTube": { - "errorMsg": "Not Found", - "errorType": "message", - "rank": 2, - "url": "https://www.youtube.com/{}", - "urlMain": "https://www.youtube.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Zhihu": { - "errorType": "response_url", - "errorUrl": "https://www.zhihu.com/people/{}", - "rank": 135, - "url": "https://www.zhihu.com/people/{}", - "urlMain": "https://www.zhihu.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Zomato": { - "errorType": "status_code", - "headers": { - "Accept-Language": "en-US,en;q=0.9" - }, - "rank": 1920, - "url": "https://www.zomato.com/pl/{}/foodjourney", - "urlMain": "https://www.zomato.com/", - "username_claimed": "deepigoyal", - "username_unclaimed": "noonewouldeverusethis7" - }, - "akniga": { - "errorType": "status_code", - "rank": 14884, - "url": "https://akniga.org/profile/{}", - "urlMain": "https://akniga.org/profile/blue/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "allmylinks": { - "errorMsg": "Page not found", - "errorType": "message", - "rank": 40997, - "url": "https://allmylinks.com/{}", - "urlMain": "https://allmylinks.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "authorSTREAM": { - "errorType": "status_code", - "rank": 7220, - "url": "http://www.authorstream.com/{}/", - "urlMain": "http://www.authorstream.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "babyRU": { - "errorMsg": "\u0423\u043f\u0441, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0438\u0441\u043a\u0430\u043b\u0438, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442", - "errorType": "message", - "rank": 7704, - "url": "https://www.baby.ru/u/{}/", - "urlMain": "https://www.baby.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "babyblogRU": { - "errorType": "status_code", - "rank": 15174, - "url": "https://www.babyblog.ru/user/info/{}", - "urlMain": "https://www.babyblog.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "chaos.social": { - "errorType": "status_code", - "rank": 4228716, - "url": "https://chaos.social/@{}", - "urlMain": "https://chaos.social/", - "username_claimed": "rixx", - "username_unclaimed": "noonewouldeverusethis7" - }, - "couchsurfing": { - "errorType": "status_code", - "rank": 11652, - "url": "https://www.couchsurfing.com/people/{}", - "urlMain": "https://www.couchsurfing.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "d3RU": { - "errorType": "status_code", - "rank": 35510, - "url": "https://d3.ru/user/{}/posts", - "urlMain": "https://d3.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "dailykos": { - "errorType": "status_code", - "rank": 6038, - "url": "https://www.dailykos.com/user/{}", - "urlMain": "https://www.dailykos.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "datingRU": { - "errorType": "status_code", - "rank": 82211, - "url": "http://dating.ru/{}", - "urlMain": "http://dating.ru", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "devRant": { - "errorType": "response_url", - "errorUrl": "https://devrant.com/", - "rank": 86451, - "url": "https://devrant.com/users/{}", - "urlMain": "https://devrant.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "drive2": { - "errorType": "status_code", - "rank": 1703, - "url": "https://www.drive2.ru/users/{}", - "urlMain": "https://www.drive2.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "eGPU": { - "errorType": "status_code", - "rank": 90682, - "url": "https://egpu.io/forums/profile/{}/", - "urlMain": "https://egpu.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "easyen": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "rank": 11564, - "url": "https://easyen.ru/index/8-0-{}", - "urlMain": "https://easyen.ru/", - "username_claimed": "wd", - "username_unclaimed": "noonewouldeverusethis7" - }, - "eintracht": { - "errorType": "status_code", - "rank": 201404, - "url": "https://community.eintracht.de/fans/{}", - "urlMain": "https://eintracht.de", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "fixya": { - "errorType": "status_code", - "rank": 6178, - "url": "https://www.fixya.com/users/{}", - "urlMain": "https://www.fixya.com", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "fl": { - "errorType": "status_code", - "rank": 50803, - "url": "https://www.fl.ru/users/{}", - "urlMain": "https://www.fl.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "forum_guns": { - "errorMsg": "action=https://forum.guns.ru/forummisc/blog/search", - "errorType": "message", - "rank": 20931, - "url": "https://forum.guns.ru/forummisc/blog/{}", - "urlMain": "https://forum.guns.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "forumhouseRU": { - "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", - "errorType": "message", - "rank": 15756, - "url": "https://www.forumhouse.ru/members/?username={}", - "urlMain": "https://www.forumhouse.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "geocaching": { - "errorType": "status_code", - "rank": 13000, - "url": "https://www.geocaching.com/profile/?u={}", - "urlMain": "https://www.geocaching.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "gfycat": { - "errorType": "status_code", - "rank": 267, - "url": "https://gfycat.com/@{}", - "urlMain": "https://gfycat.com/", - "username_claimed": "Test", - "username_unclaimed": "noonewouldeverusethis7" - }, - "habr": { - "errorType": "status_code", - "rank": 1337, - "url": "https://habr.com/ru/users/{}", - "urlMain": "https://habr.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "hackster": { - "errorType": "status_code", - "rank": 19616, - "url": "https://www.hackster.io/{}", - "urlMain": "https://www.hackster.io", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "hunting": { - "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", - "errorType": "message", - "rank": 135360, - "url": "https://www.hunting.ru/forum/members/?username={}", - "urlMain": "https://www.hunting.ru/forum/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "iMGSRC.RU": { - "errorType": "response_url", - "errorUrl": "https://imgsrc.ru/", - "rank": 14987, - "url": "https://imgsrc.ru/main/user.php?user={}", - "urlMain": "https://imgsrc.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "igromania": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "errorType": "message", - "rank": 14909, - "url": "http://forum.igromania.ru/member.php?username={}", - "urlMain": "http://forum.igromania.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "interpals": { - "errorMsg": "The requested user does not exist or is inactive", - "errorType": "message", - "rank": 7604, - "url": "https://www.interpals.net/{}", - "urlMain": "https://www.interpals.net/", - "username_claimed": "blue", - "username_unclaimed": "noneownsthisusername" - }, - "irecommend": { - "errorType": "status_code", - "rank": 2376, - "url": "https://irecommend.ru/users/{}", - "urlMain": "https://irecommend.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "jeuxvideo": { - "errorMsg": "Vous \u00eates", - "errorType": "message", - "rank": 1557, - "url": "http://www.jeuxvideo.com/profil/{}?mode=infos", - "urlMain": "http://www.jeuxvideo.com", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "kwork": { - "errorType": "status_code", - "rank": 7137, - "url": "https://kwork.ru/user/{}", - "urlMain": "https://www.kwork.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "labpentestit": { - "errorType": "response_url", - "errorUrl": "https://lab.pentestit.ru/{}", - "rank": 2280092, - "url": "https://lab.pentestit.ru/profile/{}", - "urlMain": "https://lab.pentestit.ru/", - "username_claimed": "CSV", - "username_unclaimed": "noonewouldeverusethis7" - }, - "last.fm": { - "errorType": "status_code", - "rank": 1666, - "url": "https://last.fm/user/{}", - "urlMain": "https://last.fm/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "leasehackr": { - "errorType": "status_code", - "rank": 85106, - "url": "https://forum.leasehackr.com/u/{}/summary/", - "urlMain": "https://forum.leasehackr.com/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis" - }, - "livelib": { - "errorType": "status_code", - "rank": 3809, - "url": "https://www.livelib.ru/reader/{}", - "urlMain": "https://www.livelib.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mastodon.cloud": { - "errorType": "status_code", - "rank": 285280, - "url": "https://mastodon.cloud/@{}", - "urlMain": "https://mastodon.cloud/", - "username_claimed": "TheAdmin", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mastodon.social": { - "errorType": "status_code", - "rank": 4228716, - "url": "https://mastodon.social/@{}", - "urlMain": "https://chaos.social/", - "username_claimed": "Gargron", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mastodon.technology": { - "errorType": "status_code", - "rank": 1051451, - "url": "https://mastodon.technology/@{}", - "urlMain": "https://mastodon.xyz/", - "username_claimed": "ashfurrow", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mastodon.xyz": { - "errorType": "status_code", - "rank": 1051451, - "url": "https://mastodon.xyz/@{}", - "urlMain": "https://mastodon.xyz/", - "username_claimed": "TheKinrar", - "username_unclaimed": "noonewouldeverusethis7" - }, - "metacritic": { - "errorMsg": "User not found", - "errorType": "message", - "rank": 2499, - "regexCheck": "^(?![-_])[A-Za-z0-9-_]{3,15}$", - "url": "https://www.metacritic.com/user/{}", - "urlMain": "https://www.metacritic.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewould" - }, - "mixer.com": { - "errorType": "status_code", - "rank": 1544, - "url": "https://mixer.com/{}", - "urlMain": "https://mixer.com/", - "urlProbe": "https://mixer.com/api/v1/channels/{}", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "moikrug": { - "errorType": "status_code", - "rank": 174869, - "url": "https://moikrug.ru/{}", - "urlMain": "https://moikrug.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mstdn.io": { - "errorType": "status_code", - "rank": 1333764, - "url": "https://mstdn.io/@{}", - "urlMain": "https://mstdn.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "nightbot": { - "errorType": "status_code", - "rank": 10776, - "url": "https://nightbot.tv/t/{}/commands", - "urlMain": "https://nightbot.tv/", - "urlProbe": "https://api.nightbot.tv/1/channels/t/{}", - "username_claimed": "green", - "username_unclaimed": "noonewouldeverusethis" - }, - "nnRU": { - "errorType": "status_code", - "rank": 0, - "url": "https://{}.www.nn.ru/", - "urlMain": "https://https://www.nn.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "notabug.org": { - "errorType": "status_code", - "rank": 145085, - "url": "https://notabug.org/{}", - "urlMain": "https://notabug.org/", - "urlProbe": "https://notabug.org/{}/followers", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "note": { - "errorType": "status_code", - "rank": 861, - "url": "https://note.com/{}", - "urlMain": "https://note.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "opennet": { - "errorMsg": "\u0418\u043c\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e", - "errorType": "message", - "rank": 65050, - "url": "https://www.opennet.ru/~{}", - "urlMain": "https://www.opennet.ru/", - "username_claimed": "anonismus", - "username_unclaimed": "noneownsthisusername" - }, - "opensource": { - "errorType": "status_code", - "rank": 7771, - "url": "https://opensource.com/users/{}", - "urlMain": "https://opensource.com/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "osu!": { - "errorType": "status_code", - "rank": 5124, - "url": "https://osu.ppy.sh/users/{}", - "urlMain": "https://osu.ppy.sh/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "pedsovet": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "rank": 6776, - "url": "http://pedsovet.su/index/8-0-{}", - "urlMain": "http://pedsovet.su/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "phpRU": { - "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", - "errorType": "message", - "rank": 113717, - "url": "https://php.ru/forum/members/?username={}", - "urlMain": "https://php.ru/forum/", - "username_claimed": "apple", - "username_unclaimed": "noonewouldeverusethis7" - }, - "pikabu": { - "errorType": "status_code", - "rank": 962, - "url": "https://pikabu.ru/@{}", - "urlMain": "https://pikabu.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "pr0gramm": { - "errorType": "status_code", - "rank": 3343, - "url": "https://pr0gramm.com/api/profile/info?name={}", - "urlMain": "https://pr0gramm.com/", - "username_claimed": "cha0s", - "username_unclaimed": "noonewouldeverusethis123123123123123123" - }, - "pvpru": { - "errorType": "status_code", - "rank": 405547, - "url": "https://pvpru.com/board/member.php?username={}&tab=aboutme#aboutme", - "urlMain": "https://pvpru.com/", - "username_claimed": "blue", - "request_head_only": false, - "username_unclaimed": "noonewouldeverusethis7", - "errors": { - "Access denied": "Cloudflare security protection detected" - } - }, - "radio_echo_msk": { - "errorType": "status_code", - "rank": 1578, - "url": "https://echo.msk.ru/users/{}", - "urlMain": "https://echo.msk.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "radioskot": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "rank": 105878, - "url": "https://radioskot.ru/index/8-0-{}", - "urlMain": "https://radioskot.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "satsisRU": { - "errorType": "status_code", - "rank": 447395, - "url": "https://satsis.info/user/{}", - "urlMain": "https://satsis.info/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "segmentfault": { - "errorType": "status_code", - "rank": 678, - "url": "https://segmentfault.com/u/{}", - "urlMain": "https://segmentfault.com/", - "username_claimed": "bule", - "username_unclaimed": "noonewouldeverusethis7" - }, - "social.tchncs.de": { - "errorType": "status_code", - "rank": 463325, - "url": "https://social.tchncs.de/@{}", - "urlMain": "https://social.tchncs.de/", - "username_claimed": "Milan", - "username_unclaimed": "noonewouldeverusethis7" - }, - "soylentnews": { - "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", - "errorType": "message", - "rank": 892920, - "url": "https://soylentnews.org/~{}", - "urlMain": "https://soylentnews.org", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "sparkpeople": { - "errorMsg": "We couldn't find that user", - "errorType": "message", - "rank": 20132, - "url": "https://www.sparkpeople.com/mypage.asp?id={}", - "urlMain": "https://www.sparkpeople.com", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "spletnik": { - "errorType": "status_code", - "rank": 9356, - "url": "https://spletnik.ru/user/{}", - "urlMain": "https://spletnik.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "svidbook": { - "errorType": "status_code", - "rank": 5680929, - "url": "https://www.svidbook.ru/user/{}", - "urlMain": "https://www.svidbook.ru/", - "username_claimed": "green", - "username_unclaimed": "noonewouldeverusethis7" - }, - "toster": { - "errorType": "status_code", - "rank": 10529871, - "url": "https://www.toster.ru/user/{}/answers", - "urlMain": "https://www.toster.ru/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "tracr.co": { - "errorMsg": "No search results", - "errorType": "message", - "rank": 1104278, - "regexCheck": "^[A-Za-z0-9]{2,32}$", - "url": "https://tracr.co/users/1/{}", - "urlMain": "https://tracr.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "travellerspoint": { - "errorMsg": "Wooops. Sorry!", - "errorType": "message", - "rank": 65743, - "url": "https://www.travellerspoint.com/users/{}", - "urlMain": "https://www.travellerspoint.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "uid": { - "errorType": "status_code", - "rank": 22088, - "url": "http://uid.me/{}", - "urlMain": "https://uid.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "warriorforum": { - "errorType": "status_code", - "rank": 3524, - "url": "https://www.warriorforum.com/members/{}.html", - "urlMain": "https://www.warriorforum.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "windy": { - "errorType": "status_code", - "rank": 2279, - "url": "https://community.windy.com/user/{}", - "urlMain": "https://windy.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mercadolivre": { - "errorType": "status_code", - "rank": 27839, - "url": "https://www.mercadolivre.com.br/perfil/{}", - "urlMain": "https://www.mercadolivre.com.br", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "kofi": { - "errorMsg": "Make income from your art!", - "errorType": "message", - "rank": 89891, - "url": "https://ko-fi.com/{}", - "urlMain": "https://ko-fi.com", - "username_claimed": "yeahkenny", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "aminoapp": { - "errorType": "status_code", - "rank": 9125, - "url": "https://aminoapps.com/u/{}", - "urlMain": "https://aminoapps.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "Yandex": { - "errorType": "status_code", - "url": "https://yandex.ru/user/{}", - "urlMain": "https://yandex.ru/", - "type": "yandex_public_id", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "YandexLocal": { - "errorType": "status_code", - "url": "https://local.yandex.ru/users/{}", - "urlMain": "https://local.yandex.ru/", - "type": "yandex_public_id", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "YandexMusic": { - "errorType": "status_code", - "url": "https://music.yandex.ru/users/{}/playlists", - "urlMain": "https://music.yandex.ru/", - "type": "username", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "YandexZnatoki": { - "errorType": "status_code", - "url": "https://yandex.ru/q/profile/{}", - "urlMain": "ttps://yandex.ru/q/", - "type": "yandex_public_id", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "WikimapiaSearch": { - "errorMsg": "Not found", - "errorType": "message", - "url": "http://wikimapia.org/user/tools/users_rating/?username={}", - "urlMain": "http://wikimapia.org", - "request_head_only": false, - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "WikimapiaProfile": { - "errorMsg": "January 01, 1970", - "errorType": "message", - "url": "http://wikimapia.org/user/{}", - "urlMain": "http://wikimapia.org", - "request_head_only": false, - "type": "wikimapia_uid", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - } +{ + "2Dimensions": { + "errorType": "status_code", + "rank": 664639, + "url": "https://2Dimensions.com/a/{}", + "urlMain": "https://2Dimensions.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "3dnews": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", + "errorType": "message", + "rank": 10569, + "url": "http://forum.3dnews.ru/member.php?username={}", + "urlMain": "http://forum.3dnews.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "4pda": { + "errorMsg": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.", + "errorType": "message", + "rank": 2814, + "url": "https://4pda.ru/forum/index.php?act=search&source=pst&noform=1&username={}", + "urlMain": "https://4pda.ru/", + "username_claimed": "green", + "username_unclaimed": "noonewouldeverusethis7" + }, + "500px": { + "errorMsg": "Oops! This page doesn\u2019t exist.", + "errorType": "message", + "rank": 3453, + "tags": [ + "images" + ], + "url": "https://500px.com/{}", + "urlMain": "https://500px.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "7Cups": { + "errorType": "status_code", + "rank": 51294, + "url": "https://www.7cups.com/@{}", + "urlMain": "https://www.7cups.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "About.me": { + "errorType": "status_code", + "rank": 11447, + "tags": [ + "social" + ], + "url": "https://about.me/{}", + "urlMain": "https://about.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Academia.edu": { + "errorType": "status_code", + "rank": 218, + "url": "https://independent.academia.edu/{}", + "urlMain": "https://www.academia.edu/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Alik.cz": { + "errorType": "status_code", + "rank": 845452, + "url": "https://www.alik.cz/u/{}", + "urlMain": "https://www.alik.cz/", + "username_claimed": "julian", + "username_unclaimed": "noonewouldeverusethis" + }, + "AllTrails": { + "errorMsg": "User could not be found.", + "errorType": "message", + "rank": 8256, + "url": "https://www.alltrails.com/members/{}", + "urlMain": "https://www.alltrails.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Anobii": { + "errorType": "response_url", + "rank": 43870, + "tags": [ + "books" + ], + "url": "https://www.anobii.com/{}/profile", + "urlMain": "https://www.anobii.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Aptoide": { + "errorType": "status_code", + "rank": 5114, + "url": "https://{}.en.aptoide.com/", + "urlMain": "https://en.aptoide.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Archive.org": { + "errorMsg": "cannot find account", + "errorType": "message", + "rank": 196, + "url": "https://archive.org/details/@{}", + "urlMain": "https://archive.org", + "username_claimed": "blue", + "username_unclaimed": "noonewould" + }, + "Asciinema": { + "errorType": "status_code", + "rank": 77227, + "url": "https://asciinema.org/~{}", + "urlMain": "https://asciinema.org", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Ask Fedora": { + "errorType": "status_code", + "rank": 27465, + "url": "https://ask.fedoraproject.org/u/{}", + "urlMain": "https://ask.fedoraproject.org/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "AskFM": { + "errorMsg": "Well, apparently not anymore.", + "errorType": "message", + "rank": 2888, + "regexCheck": "^[a-zA-Z0-9_]{3,40}$", + "url": "https://ask.fm/{}", + "urlMain": "https://ask.fm/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Audiojungle": { + "errorType": "status_code", + "rank": 5604, + "url": "https://audiojungle.net/user/{}", + "urlMain": "https://audiojungle.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Avizo": { + "errorType": "response_url", + "errorUrl": "https://www.avizo.cz/", + "rank": 507599, + "url": "https://www.avizo.cz/{}/", + "urlMain": "https://www.avizo.cz/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "BLIP.fm": { + "errorType": "status_code", + "rank": 145919, + "tags": [ + "music" + ], + "url": "https://blip.fm/{}", + "urlMain": "https://blip.fm/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BOOTH": { + "errorType": "response_url", + "errorUrl": "https://booth.pm/", + "rank": 7165, + "url": "https://{}.booth.pm/", + "urlMain": "https://booth.pm/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Badoo": { + "errorType": "status_code", + "rank": 2111, + "tags": [ + "social" + ], + "url": "https://badoo.com/profile/{}", + "urlMain": "https://badoo.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Bandcamp": { + "errorType": "status_code", + "rank": 1090, + "tags": [ + "music" + ], + "url": "https://www.bandcamp.com/{}", + "urlMain": "https://www.bandcamp.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Bazar.cz": { + "errorType": "response_url", + "errorUrl": "https://www.bazar.cz/error404.aspx", + "rank": 708771, + "url": "https://www.bazar.cz/{}/", + "urlMain": "https://www.bazar.cz/", + "username_claimed": "pianina", + "username_unclaimed": "noonewouldeverusethis" + }, + "Behance": { + "errorType": "status_code", + "rank": 324, + "tags": [ + "business" + ], + "url": "https://www.behance.net/{}", + "urlMain": "https://www.behance.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BitBucket": { + "errorType": "status_code", + "rank": 2831, + "tags": [ + "coding" + ], + "url": "https://bitbucket.org/{}/", + "urlMain": "https://bitbucket.org/", + "username_claimed": "white", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BitCoinForum": { + "errorMsg": "The user whose profile you are trying to view does not exist.", + "errorType": "message", + "rank": 164864, + "url": "https://bitcoinforum.com/profile/{}", + "urlMain": "https://bitcoinforum.com", + "username_claimed": "bitcoinforum.com", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Blogger": { + "errorType": "status_code", + "rank": 289, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "url": "https://{}.blogspot.com", + "urlMain": "https://www.blogger.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BodyBuilding": { + "errorType": "response_url", + "errorUrl": "https://bodyspace.bodybuilding.com/", + "rank": 2925, + "url": "https://bodyspace.bodybuilding.com/{}", + "urlMain": "https://bodyspace.bodybuilding.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Bookcrossing": { + "errorType": "status_code", + "rank": 54059, + "url": "https://www.bookcrossing.com/mybookshelf/{}/", + "urlMain": "https://www.bookcrossing.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "BuyMeACoffee": { + "errorType": "status_code", + "rank": 13282, + "url": "https://buymeacoff.ee/{}", + "urlMain": "https://www.buymeacoffee.com/", + "urlProbe": "https://www.buymeacoffee.com/{}", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BuzzFeed": { + "errorType": "status_code", + "rank": 402, + "tags": [ + "social" + ], + "url": "https://buzzfeed.com/{}", + "urlMain": "https://buzzfeed.com/", + "username_claimed": "blue", + "username_unclaimed": "xgtrq" + }, + "CNET": { + "errorType": "status_code", + "rank": 147, + "url": "https://www.cnet.com/profiles/{}/", + "urlMain": "https://www.cnet.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Carbonmade": { + "errorType": "response_url", + "errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com", + "rank": 26142, + "url": "https://{}.carbonmade.com", + "urlMain": "https://carbonmade.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Career.habr": { + "errorMsg": "

\u041e\u0448\u0438\u0431\u043a\u0430 404

", + "errorType": "message", + "rank": 1337, + "url": "https://career.habr.com/{}", + "urlMain": "https://career.habr.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "CashMe": { + "errorType": "status_code", + "errors": { + "Cash isn't available in your country yet.": "Access denied in your country, use tor/proxy" + }, + "rank": 0, + "request_head_only": false, + "url": "https://cash.me/${}", + "urlMain": "https://cash.me/", + "username_claimed": "Jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Cent": { + "errorMsg": "Cent", + "errorType": "message", + "rank": 118892, + "url": "https://beta.cent.co/@{}", + "urlMain": "https://cent.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Championat": { + "errorType": "status_code", + "rank": 1945, + "url": "https://www.championat.com/user/{}", + "urlMain": "https://www.championat.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Chatujme.cz": { + "errorMsg": "Neexistujic\u00ed profil", + "errorType": "message", + "rank": 9812219, + "url": "https://profil.chatujme.cz/{}", + "urlMain": "https://chatujme.cz/", + "username_claimed": "david", + "username_unclaimed": "noonewouldeverusethis" + }, + "Chess": { + "errorMsg": "Missing page... somebody made a wrong move.", + "errorType": "message", + "rank": 590, + "url": "https://www.chess.com/ru/member/{}", + "urlMain": "https://www.chess.com/ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Cloob": { + "errorType": "status_code", + "rank": 10574, + "url": "https://www.cloob.com/name/{}", + "urlMain": "https://www.cloob.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "CloudflareCommunity": { + "errorType": "status_code", + "rank": 1469, + "url": "https://community.cloudflare.com/u/{}", + "urlMain": "https://community.cloudflare.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Clozemaster": { + "errorType": "status_code", + "rank": 66473, + "url": "https://www.clozemaster.com/players/{}", + "urlMain": "https://www.clozemaster.com", + "username_claimed": "green", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Codecademy": { + "errorType": "status_code", + "rank": 1883, + "tags": [ + "education" + ], + "url": "https://www.codecademy.com/profiles/{}", + "urlMain": "https://www.codecademy.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Codechef": { + "errorType": "response_url", + "errorUrl": "https://www.codechef.com/", + "rank": 9625, + "url": "https://www.codechef.com/users/{}", + "urlMain": "https://www.codechef.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Coderwall": { + "errorMsg": "404! Our feels when that url is used", + "errorType": "message", + "rank": 11256, + "url": "https://coderwall.com/{}", + "urlMain": "https://coderwall.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Codewars": { + "errorType": "status_code", + "rank": 19606, + "url": "https://www.codewars.com/users/{}", + "urlMain": "https://www.codewars.com", + "username_claimed": "example", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Contently": { + "errorMsg": "We can't find that page!", + "errorType": "message", + "rank": 13782, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "url": "https://{}.contently.com/", + "urlMain": "https://contently.com/", + "username_claimed": "jordanteicher", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Coroflot": { + "errorType": "status_code", + "rank": 40597, + "url": "https://www.coroflot.com/{}", + "urlMain": "https://coroflot.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Cracked": { + "errorType": "response_url", + "errorUrl": "https://www.cracked.com/", + "rank": 4551, + "url": "https://www.cracked.com/members/{}/", + "urlMain": "https://www.cracked.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "CreativeMarket": { + "errorType": "response_url", + "errorUrl": "https://www.creativemarket.com/", + "rank": 1896, + "url": "https://creativemarket.com/users/{}", + "urlMain": "https://creativemarket.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Crevado": { + "errorType": "status_code", + "rank": 200626, + "url": "https://{}.crevado.com", + "urlMain": "https://crevado.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Crunchyroll": { + "errorType": "status_code", + "rank": 545, + "url": "https://www.crunchyroll.com/user/{}", + "urlMain": "https://www.crunchyroll.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "DEV Community": { + "errorType": "status_code", + "rank": 7362, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "url": "https://dev.to/{}", + "urlMain": "https://dev.to/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "DailyMotion": { + "errorType": "status_code", + "rank": 207, + "tags": [ + "video" + ], + "url": "https://www.dailymotion.com/{}", + "urlMain": "https://www.dailymotion.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Designspiration": { + "errorType": "status_code", + "rank": 5627019, + "url": "https://www.designspiration.net/{}/", + "urlMain": "https://www.designspiration.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "DeviantART": { + "errorType": "status_code", + "rank": 529, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "images" + ], + "url": "https://{}.deviantart.com", + "urlMain": "https://deviantart.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Discogs": { + "errorType": "status_code", + "rank": 1056, + "url": "https://www.discogs.com/user/{}", + "urlMain": "https://www.discogs.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Discuss.Elastic.co": { + "errorType": "status_code", + "rank": 6815, + "tags": [ + "tech" + ], + "url": "https://discuss.elastic.co/u/{}", + "urlMain": "https://discuss.elastic.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Disqus": { + "errorType": "status_code", + "rank": 1078, + "tags": [ + "global", + "discussion" + ], + "url": "https://disqus.com/{}", + "urlMain": "https://disqus.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Docker Hub": { + "errorType": "status_code", + "rank": 3310, + "url": "https://hub.docker.com/u/{}/", + "urlMain": "https://hub.docker.com/", + "urlProbe": "https://hub.docker.com/v2/users/{}/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Dribbble": { + "errorMsg": "Whoops, that page is gone.", + "errorType": "message", + "rank": 1163, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "business" + ], + "url": "https://dribbble.com/{}", + "urlMain": "https://dribbble.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Duolingo": { + "errorMsg": "{\"users\":[]}", + "errorType": "message", + "rank": 397, + "url": "https://www.duolingo.com/profile/{}", + "urlMain": "https://duolingo.com/", + "urlProbe": "https://www.duolingo.com/2017-06-30/users?username={}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Ebay": { + "errorMsg": "

", + "errorType": "message", + "rank": 56, + "tags": [ + "shopping" + ], + "url": "https://www.ebay.com/usr/{}", + "urlMain": "https://www.ebay.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Ello": { + "errorMsg": "We couldn't find the page you're looking for", + "errorType": "message", + "rank": 50193, + "url": "https://ello.co/{}", + "urlMain": "https://ello.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Etsy": { + "errorType": "status_code", + "rank": 161, + "tags": [ + "shopping" + ], + "url": "https://www.etsy.com/shop/{}", + "urlMain": "https://www.etsy.com/", + "username_claimed": "JennyKrafts", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Euw": { + "errorMsg": "This summoner is not registered at OP.GG. Please check spelling.", + "errorType": "message", + "rank": 291, + "url": "https://euw.op.gg/summoner/userName={}", + "urlMain": "https://euw.op.gg/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "EyeEm": { + "errorType": "response_url", + "errorUrl": "https://www.eyeem.com/", + "rank": 38664, + "url": "https://www.eyeem.com/u/{}", + "urlMain": "https://www.eyeem.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "F3.cool": { + "errorType": "status_code", + "rank": 54043, + "url": "https://f3.cool/{}/", + "urlMain": "https://f3.cool/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Facebook": { + "errorType": "status_code", + "rank": 7, + "regexCheck": "^[a-zA-Z0-9\\.]{3,49}(?", + "errorType": "message", + "rank": 1337, + "url": "https://freelance.habr.com/freelancers/{}", + "urlMain": "https://freelance.habr.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Freelancer.com": { + "errorMsg": "\"users\":{}", + "errorType": "message", + "rank": 576, + "url": "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={}&compact=true", + "urlMain": "https://www.freelancer.com/", + "username_claimed": "red0xff", + "username_unclaimed": "noonewouldeverusethis" + }, + "Freesound": { + "errorType": "status_code", + "rank": 6938, + "tags": [ + "music" + ], + "url": "https://freesound.org/people/{}/", + "urlMain": "https://freesound.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "GDProfiles": { + "errorType": "status_code", + "rank": 1610005, + "url": "https://gdprofiles.com/{}", + "urlMain": "https://gdprofiles.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Gamespot": { + "errorType": "status_code", + "rank": 519, + "tags": [ + "gaming" + ], + "url": "https://www.gamespot.com/profile/{}/", + "urlMain": "https://www.gamespot.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Giphy": { + "errorType": "status_code", + "rank": 580, + "tags": [ + "social" + ], + "url": "https://giphy.com/{}", + "urlMain": "https://giphy.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GitHub": { + "errorType": "status_code", + "rank": 81, + "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", + "tags": [ + "coding" + ], + "url": "https://www.github.com/{}", + "urlMain": "https://www.github.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GitLab": { + "errorMsg": "[]", + "errorType": "message", + "rank": 3707, + "tags": [ + "coding" + ], + "url": "https://gitlab.com/{}", + "urlMain": "https://gitlab.com/", + "urlProbe": "https://gitlab.com/api/v4/users?username={}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Gitee": { + "errorType": "status_code", + "rank": 5518, + "url": "https://gitee.com/{}", + "urlMain": "https://gitee.com/", + "username_claimed": "wizzer", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GoodReads": { + "errorType": "status_code", + "rank": 326, + "tags": [ + "books" + ], + "url": "https://www.goodreads.com/{}", + "urlMain": "https://www.goodreads.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Gravatar": { + "errorType": "status_code", + "rank": 5492, + "tags": [ + "images" + ], + "url": "http://en.gravatar.com/{}", + "urlMain": "http://en.gravatar.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Gumroad": { + "errorMsg": "Page not found.", + "errorType": "message", + "rank": 4049, + "url": "https://www.gumroad.com/{}", + "urlMain": "https://www.gumroad.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GunsAndAmmo": { + "errorType": "status_code", + "rank": 160298, + "url": "https://forums.gunsandammo.com/profile/{}", + "urlMain": "https://gunsandammo.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GuruShots": { + "errorType": "status_code", + "rank": 17413, + "url": "https://gurushots.com/{}/photos", + "urlMain": "https://gurushots.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "HackTheBox": { + "errorType": "status_code", + "rank": 44381, + "url": "https://forum.hackthebox.eu/profile/{}", + "urlMain": "https://forum.hackthebox.eu/", + "username_claimed": "angar", + "username_unclaimed": "noonewouldeverusethis" + }, + "HackerNews": { + "errorMsg": "No such user.", + "errorType": "message", + "rank": 5220, + "url": "https://news.ycombinator.com/user?id={}", + "urlMain": "https://news.ycombinator.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "HackerOne": { + "errorMsg": "Page not found", + "errorType": "message", + "rank": 24074, + "tags": [ + "hacker" + ], + "url": "https://hackerone.com/{}", + "urlMain": "https://hackerone.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "HackerRank": { + "errorMsg": "Something went wrong", + "errorType": "message", + "rank": 3044, + "url": "https://hackerrank.com/{}", + "urlMain": "https://hackerrank.com/", + "username_claimed": "satznova", + "username_unclaimed": "noonewouldeverusethis7" + }, + "House-Mixes.com": { + "errorMsg": "Profile Not Found", + "errorType": "message", + "rank": 979956, + "regexCheck": "^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$", + "url": "https://www.house-mixes.com/profile/{}", + "urlMain": "https://www.house-mixes.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Houzz": { + "errorMsg": "The page you requested was not found.", + "errorType": "message", + "rank": 1833, + "url": "https://houzz.com/user/{}", + "urlMain": "https://houzz.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "HubPages": { + "errorType": "status_code", + "rank": 3739, + "tags": [ + "blog" + ], + "url": "https://hubpages.com/@{}", + "urlMain": "https://hubpages.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Hubski": { + "errorMsg": "No such user", + "errorType": "message", + "rank": 199033, + "url": "https://hubski.com/user/{}", + "urlMain": "https://hubski.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "IFTTT": { + "errorMsg": "The requested page or file does not exist", + "errorType": "message", + "rank": 9039, + "regexCheck": "^[A-Za-z0-9]{3,35}$", + "tags": [ + "misc" + ], + "url": "https://www.ifttt.com/p/{}", + "urlMain": "https://www.ifttt.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ImageShack": { + "errorType": "response_url", + "errorUrl": "https://imageshack.com/", + "rank": 42021, + "tags": [ + "images" + ], + "url": "https://imageshack.com/user/{}", + "urlMain": "https://imageshack.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ImgUp.cz": { + "errorType": "status_code", + "rank": 2727868, + "url": "https://imgup.cz/{}", + "urlMain": "https://imgup.cz/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis" + }, + "Instagram": { + "errorType": "status_code", + "rank": 35, + "request_head_only": false, + "tags": [ + "social" + ], + "url": "https://www.instagram.com/{}", + "urlMain": "https://www.instagram.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Instructables": { + "errorMsg": "404: We're sorry, things break sometimes", + "errorType": "message", + "rank": 1165, + "tags": [ + "hobby" + ], + "url": "https://www.instructables.com/member/{}", + "urlMain": "https://www.instructables.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Issuu": { + "errorType": "status_code", + "rank": 543, + "url": "https://issuu.com/{}", + "urlMain": "https://issuu.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Itch.io": { + "errorType": "status_code", + "rank": 2210, + "url": "https://{}.itch.io/", + "urlMain": "https://itch.io/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Jimdo": { + "errorType": "status_code", + "noPeriod": "True", + "rank": 27580, + "url": "https://{}.jimdosite.com", + "urlMain": "https://jimdosite.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Kaggle": { + "errorType": "status_code", + "rank": 2648, + "url": "https://www.kaggle.com/{}", + "urlMain": "https://www.kaggle.com/", + "username_claimed": "dansbecker", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Kali community": { + "errorMsg": "This user has not registered and therefore does not have a profile to view.", + "errorType": "message", + "rank": 7440, + "url": "https://forums.kali.org/member.php?username={}", + "urlMain": "https://forums.kali.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "KanoWorld": { + "errorType": "status_code", + "rank": 181933, + "url": "https://api.kano.me/progress/user/{}", + "urlMain": "https://world.kano.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Keybase": { + "errorMsg": "them\":[null]", + "errorType": "message", + "rank": 56712, + "tags": [ + "business" + ], + "url": "https://keybase.io/{}", + "urlCheck": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={}", + "urlMain": "https://keybase.io/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Kik": { + "errorMsg": "The page you requested was not found", + "errorType": "message", + "rank": 565825, + "url": "https://ws2.kik.com/user/{}", + "urlMain": "http://kik.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Kongregate": { + "errorMsg": "Sorry, no account with that name was found.", + "errorType": "message", + "rank": 2732, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "gaming" + ], + "url": "https://www.kongregate.com/accounts/{}", + "urlMain": "https://www.kongregate.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "LOR": { + "errorType": "status_code", + "rank": 38696, + "url": "https://www.linux.org.ru/people/{}/profile", + "urlMain": "https://linux.org.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Launchpad": { + "errorType": "status_code", + "rank": 9993, + "url": "https://launchpad.net/~{}", + "urlMain": "https://launchpad.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "LeetCode": { + "errorType": "status_code", + "rank": 2895, + "url": "https://leetcode.com/{}", + "urlMain": "https://leetcode.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Letterboxd": { + "errorMsg": "Sorry, we can\u2019t find the page you\u2019ve requested.", + "errorType": "message", + "rank": 4053, + "url": "https://letterboxd.com/{}", + "urlMain": "https://letterboxd.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Lichess": { + "errorMsg": "Page not found!", + "errorType": "message", + "rank": 2163, + "url": "https://lichess.org/@/{}", + "urlMain": "https://lichess.org", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "LiveJournal": { + "errorType": "status_code", + "rank": 430, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "blog" + ], + "url": "https://{}.livejournal.com", + "urlMain": "https://www.livejournal.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Lobsters": { + "errorType": "status_code", + "rank": 152798, + "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", + "url": "https://lobste.rs/u/{}", + "urlMain": "https://lobste.rs/", + "username_claimed": "jcs", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Lolchess": { + "errorMsg": "No search results", + "errorType": "message", + "rank": 3195, + "url": "https://lolchess.gg/profile/na/{}", + "urlMain": "https://lolchess.gg/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Medium": { + "errorMsg": "We couldn\u2019t find this page.", + "errorType": "message", + "rank": 72, + "tags": [ + "news" + ], + "url": "https://medium.com/@{}", + "urlMain": "https://medium.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "MeetMe": { + "errorType": "response_url", + "errorUrl": "https://www.meetme.com/", + "rank": 23062, + "url": "https://www.meetme.com/{}", + "urlMain": "https://www.meetme.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Memrise": { + "errorType": "response_url", + "errorUrl": "https://www.memrise.com/", + "rank": 4813, + "url": "https://www.memrise.com/user/{}/", + "urlMain": "https://www.memrise.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "MixCloud": { + "errorType": "status_code", + "rank": 2403, + "tags": [ + "music" + ], + "url": "https://www.mixcloud.com/{}/", + "urlMain": "https://www.mixcloud.com/", + "urlProbe": "https://api.mixcloud.com/{}/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "MyAnimeList": { + "errorType": "status_code", + "rank": 957, + "tags": [ + "movies" + ], + "url": "https://myanimelist.net/profile/{}", + "urlMain": "https://myanimelist.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Myspace": { + "errorType": "status_code", + "rank": 2540, + "tags": [ + "social" + ], + "url": "https://myspace.com/{}", + "urlMain": "https://myspace.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "NICommunityForum": { + "errorMsg": "The specified member cannot be found", + "errorType": "message", + "rank": 6996, + "url": "https://www.native-instruments.com/forum/members?username={}", + "urlMain": "https://www.native-instruments.com/forum/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "NPM": { + "errorType": "status_code", + "rank": 5926, + "url": "https://www.npmjs.com/~{}", + "urlMain": "https://www.npmjs.com/", + "username_claimed": "kennethsweezy", + "username_unclaimed": "noonewould" + }, + "NPM-Package": { + "errorType": "status_code", + "rank": 5926, + "url": "https://www.npmjs.com/package/{}", + "urlMain": "https://www.npmjs.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "NameMC (Minecraft.net skins)": { + "errorMsg": "Profiles: 0 results", + "errorType": "message", + "rank": 7282, + "url": "https://namemc.com/profile/{}", + "urlMain": "https://namemc.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "NationStates Nation": { + "errorMsg": "Was this your nation? It may have ceased to exist due to inactivity, but can rise again!", + "errorType": "message", + "rank": 48529, + "url": "https://nationstates.net/nation={}", + "urlMain": "https://nationstates.net", + "username_claimed": "the_holy_principality_of_saint_mark", + "username_unclaimed": "noonewould" + }, + "NationStates Region": { + "errorMsg": "does not exist.", + "errorType": "message", + "rank": 48529, + "url": "https://nationstates.net/region={}", + "urlMain": "https://nationstates.net", + "username_claimed": "the_west_pacific", + "username_unclaimed": "noonewould" + }, + "Newgrounds": { + "errorType": "status_code", + "rank": 6797, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "url": "https://{}.newgrounds.com", + "urlMain": "https://newgrounds.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "OK": { + "errorType": "status_code", + "rank": 63, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$", + "url": "https://ok.ru/{}", + "urlMain": "https://ok.ru/", + "username_claimed": "ok", + "username_unclaimed": "noonewouldeverusethis7" + }, + "OpenCollective": { + "errorType": "status_code", + "rank": 39473, + "url": "https://opencollective.com/{}", + "urlMain": "https://opencollective.com/", + "username_claimed": "sindresorhus", + "username_unclaimed": "noonewouldeverusethis7" + }, + "OpenStreetMap": { + "errorType": "status_code", + "rank": 8544, + "tags": [ + "social" + ], + "url": "https://www.openstreetmap.org/user/{}", + "urlMain": "https://www.openstreetmap.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Oracle Community": { + "errorType": "status_code", + "rank": 587, + "url": "https://community.oracle.com/people/{}", + "urlMain": "https://community.oracle.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Otzovik": { + "errorType": "status_code", + "rank": 2058, + "url": "https://otzovik.com/profile/{}", + "urlMain": "https://otzovik.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "OurDJTalk": { + "errorMsg": "The specified member cannot be found", + "errorType": "message", + "rank": 2697698, + "url": "https://ourdjtalk.com/members?username={}", + "urlMain": "https://ourdjtalk.com/", + "username_claimed": "steve", + "username_unclaimed": "noonewouldeverusethis" + }, + "PCGamer": { + "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", + "errorType": "message", + "rank": 973, + "url": "https://forums.pcgamer.com/members/?username={}", + "urlMain": "https://pcgamer.com", + "username_claimed": "admin", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PCPartPicker": { + "errorType": "status_code", + "rank": 2471, + "url": "https://pcpartpicker.com/user/{}", + "urlMain": "https://pcpartpicker.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PSNProfiles.com": { + "errorType": "response_url", + "errorUrl": "https://psnprofiles.com/?psnId={}", + "rank": 11533, + "url": "https://psnprofiles.com/{}", + "urlMain": "https://psnprofiles.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Packagist": { + "errorType": "response_url", + "errorUrl": "https://packagist.org/search/?q={}&reason=vendor_not_found", + "rank": 19371, + "url": "https://packagist.org/packages/{}/", + "urlMain": "https://packagist.org/", + "username_claimed": "psr", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pastebin": { + "errorType": "response_url", + "errorUrl": "https://pastebin.com/index", + "rank": 1221, + "tags": [ + "sharing" + ], + "url": "https://pastebin.com/u/{}", + "urlMain": "https://pastebin.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Patreon": { + "errorType": "status_code", + "rank": 374, + "tags": [ + "finance" + ], + "url": "https://www.patreon.com/{}", + "urlMain": "https://www.patreon.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Periscope": { + "errorType": "status_code", + "rank": 27375, + "tags": [ + "video" + ], + "url": "https://www.periscope.tv/{}/", + "urlMain": "https://www.periscope.tv/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Photobucket": { + "errorType": "status_code", + "rank": 3893, + "tags": [ + "images" + ], + "url": "https://photobucket.com/user/{}/library", + "urlMain": "https://photobucket.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pinkbike": { + "errorType": "status_code", + "rank": 9280, + "tags": [ + "hobby" + ], + "url": "https://www.pinkbike.com/u/{}/", + "urlMain": "https://www.pinkbike.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pinterest": { + "errorType": "status_code", + "rank": 172, + "tags": [ + "social" + ], + "url": "https://www.pinterest.com/{}/", + "urlMain": "https://www.pinterest.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PlayStore": { + "errorType": "status_code", + "rank": 1, + "url": "https://play.google.com/store/apps/developer?id={}", + "urlMain": "https://play.google.com/store", + "username_claimed": "Facebook", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pling": { + "errorType": "response_url", + "errorUrl": "https://www.pling.com/", + "rank": 114656, + "url": "https://www.pling.com/u/{}/", + "urlMain": "https://www.pling.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Plug.DJ": { + "errorType": "status_code", + "rank": 40338, + "url": "https://plug.dj/@/{}", + "urlMain": "https://plug.dj/", + "username_claimed": "plug-dj-rock", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pokemon Showdown": { + "errorType": "status_code", + "rank": 5323, + "url": "https://pokemonshowdown.com/users/{}", + "urlMain": "https://pokemonshowdown.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PokerStrategy": { + "errorType": "status_code", + "rank": 3558413, + "url": "http://www.pokerstrategy.net/user/{}/profile/", + "urlMain": "http://www.pokerstrategy.net", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Polygon": { + "errorType": "status_code", + "rank": 1151, + "url": "https://www.polygon.com/users/{}", + "urlMain": "https://www.polygon.com/", + "username_claimed": "swiftstickler", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ProductHunt": { + "errorMsg": "Product Hunt is a curation of the best new products", + "errorType": "message", + "rank": 10865, + "tags": [ + "tech" + ], + "url": "https://www.producthunt.com/@{}", + "urlMain": "https://www.producthunt.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PromoDJ": { + "errorType": "status_code", + "rank": 34124, + "url": "http://promodj.com/{}", + "urlMain": "http://promodj.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Quora": { + "errorType": "response_url", + "errorUrl": "https://www.quora.com/profile/{}", + "rank": 221, + "url": "https://www.quora.com/profile/{}", + "urlMain": "https://www.quora.com/", + "username_claimed": "Matt-Riggsby", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Rajce.net": { + "errorType": "status_code", + "rank": 1656, + "url": "https://{}.rajce.idnes.cz/", + "urlMain": "https://www.rajce.idnes.cz/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Rate Your Music": { + "errorType": "status_code", + "rank": 5239, + "url": "https://rateyourmusic.com/~{}", + "urlMain": "https://rateyourmusic.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Realmeye": { + "errorMsg": "Sorry, but we either:", + "errorType": "message", + "rank": 25898, + "url": "https://www.realmeye.com/player/{}", + "urlMain": "https://www.realmeye.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Redbubble": { + "errorType": "status_code", + "rank": 1367, + "url": "https://www.redbubble.com/people/{}", + "urlMain": "https://www.redbubble.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "Reddit": { + "errorType": "status_code", + "rank": 19, + "tags": [ + "news" + ], + "url": "https://www.reddit.com/user/{}", + "urlMain": "https://www.reddit.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Repl.it": { + "errorMsg": "404", + "errorType": "message", + "rank": 3343, + "tags": [ + "coding" + ], + "url": "https://repl.it/@{}", + "urlMain": "https://repl.it/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ResearchGate": { + "errorType": "response_url", + "errorUrl": "https://www.researchgate.net/directory/profiles", + "rank": 138, + "regexCheck": "\\w+_\\w+", + "url": "https://www.researchgate.net/profile/{}", + "urlMain": "https://www.researchgate.net/", + "username_claimed": "John_Smith", + "username_unclaimed": "noonewould_everusethis7" + }, + "ReverbNation": { + "errorMsg": "Sorry, we couldn't find that page", + "errorType": "message", + "rank": 9539, + "url": "https://www.reverbnation.com/{}", + "urlMain": "https://www.reverbnation.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Roblox": { + "errorMsg": "Page cannot be found or no longer exists", + "errorType": "message", + "rank": 124, + "url": "https://www.roblox.com/user.aspx?username={}", + "urlMain": "https://www.roblox.com/", + "username_claimed": "bluewolfekiller", + "username_unclaimed": "noonewouldeverusethis7" + }, + "RubyGems": { + "errorType": "status_code", + "rank": 38430, + "url": "https://rubygems.org/profiles/{}", + "urlMain": "https://rubygems.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Sbazar.cz": { + "errorType": "status_code", + "rank": 16505, + "url": "https://www.sbazar.cz/{}", + "urlMain": "https://www.sbazar.cz/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Scratch": { + "errorType": "status_code", + "rank": 440, + "tags": [ + "coding" + ], + "url": "https://scratch.mit.edu/users/{}", + "urlMain": "https://scratch.mit.edu/", + "username_claimed": "griffpatch", + "username_unclaimed": "noonewould" + }, + "Scribd": { + "errorMsg": "Page not found", + "errorType": "message", + "rank": 234, + "tags": [ + "coding" + ], + "url": "https://www.scribd.com/{}", + "urlMain": "https://www.scribd.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ShitpostBot5000": { + "errorType": "status_code", + "rank": 580064, + "url": "https://www.shitpostbot.com/user/{}", + "urlMain": "https://www.shitpostbot.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Signal": { + "errorMsg": "Oops! That page doesn\u2019t exist or is private.", + "errorType": "message", + "rank": 918113, + "url": "https://community.signalusers.org/u/{}", + "urlMain": "https://community.signalusers.org", + "username_claimed": "jlund", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Slack": { + "errorType": "status_code", + "rank": 285, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "url": "https://{}.slack.com", + "urlMain": "https://slack.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SlideShare": { + "errorType": "status_code", + "rank": 127, + "tags": [ + "presos" + ], + "url": "https://slideshare.net/{}", + "urlMain": "https://slideshare.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Smashcast": { + "errorType": "status_code", + "rank": 192503, + "url": "https://www.smashcast.tv/api/media/live/{}", + "urlMain": "https://www.smashcast.tv/", + "username_claimed": "hello", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Smule": { + "errorType": "status_code", + "rank": 7785, + "tags": [ + "music" + ], + "url": "https://www.smule.com/{}", + "urlMain": "https://www.smule.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SoundCloud": { + "errorType": "status_code", + "rank": 96, + "tags": [ + "music" + ], + "url": "https://soundcloud.com/{}", + "urlMain": "https://soundcloud.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SourceForge": { + "errorType": "status_code", + "rank": 405, + "tags": [ + "coding" + ], + "url": "https://sourceforge.net/u/{}", + "urlMain": "https://sourceforge.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Speedrun.com": { + "errorMsg": "not found.", + "errorType": "message", + "rank": 10864, + "url": "https://speedrun.com/user/{}", + "urlMain": "https://speedrun.com/", + "username_claimed": "3Tau", + "username_unclaimed": "noonewould" + }, + "Splits.io": { + "errorType": "status_code", + "rank": 655157, + "url": "https://splits.io/users/{}", + "urlMain": "https://splits.io", + "username_claimed": "cambosteve", + "username_unclaimed": "noonewould" + }, + "Sporcle": { + "errorType": "status_code", + "rank": 3128, + "tags": [ + "gaming" + ], + "url": "https://www.sporcle.com/user/{}/people", + "urlMain": "https://www.sporcle.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SportsRU": { + "errorType": "status_code", + "rank": 2936, + "url": "https://www.sports.ru/profile/{}/", + "urlMain": "https://www.sports.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Spotify": { + "errorType": "status_code", + "errors": { + "Spotify is currently not available in your country.": "Access denied in your country, use tor/proxy" + }, + "rank": 87, + "request_head_only": false, + "tags": [ + "music" + ], + "url": "https://open.spotify.com/user/{}", + "urlMain": "https://open.spotify.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Star Citizen": { + "errorType": "status_code", + "rank": 7927, + "url": "https://robertsspaceindustries.com/citizens/{}", + "urlMain": "https://robertsspaceindustries.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Steam": { + "errorMsg": "The specified profile could not be found", + "errorType": "message", + "rank": 168, + "tags": [ + "gaming" + ], + "url": "https://steamcommunity.com/id/{}", + "urlMain": "https://steamcommunity.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SteamGroup": { + "errorMsg": "No group could be retrieved for the given URL", + "errorType": "message", + "rank": 168, + "url": "https://steamcommunity.com/groups/{}", + "urlMain": "https://steamcommunity.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Steamid": { + "errorMsg": "

Profile not found
", + "errorType": "message", + "rank": 119934, + "url": "https://steamid.uk/profile/{}", + "urlMain": "https://steamid.uk/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SublimeForum": { + "errorType": "status_code", + "rank": 6503, + "url": "https://forum.sublimetext.com/u/{}", + "urlMain": "https://forum.sublimetext.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "T-MobileSupport": { + "errorType": "status_code", + "rank": 1759, + "url": "https://support.t-mobile.com/people/{}", + "urlMain": "https://support.t-mobile.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TamTam": { + "errorType": "response_url", + "errorUrl": "https://tamtam.chat/", + "rank": 87903, + "url": "https://tamtam.chat/{}", + "urlMain": "https://tamtam.chat/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Taringa": { + "errorType": "status_code", + "rank": 1092, + "tags": [ + "social" + ], + "url": "https://www.taringa.net/{}", + "urlMain": "https://taringa.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Tellonym.me": { + "errorType": "status_code", + "rank": 26963, + "url": "https://tellonym.me/{}", + "urlMain": "https://tellonym.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Tinder": { + "errorMsg": "Looking for Someone?", + "errorType": "message", + "rank": 1149, + "tags": [ + "dating" + ], + "url": "https://www.gotinder.com/@{}", + "urlMain": "https://tinder.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TrackmaniaLadder": { + "errorMsg": "player unknown or invalid", + "errorType": "message", + "rank": 537293, + "url": "http://en.tm-ladder.com/{}_rech.php", + "urlMain": "http://en.tm-ladder.com/index.php", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "TradingView": { + "errorType": "status_code", + "rank": 171, + "url": "https://www.tradingview.com/u/{}/", + "urlMain": "https://www.tradingview.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Trakt": { + "errorType": "status_code", + "rank": 6415, + "url": "https://www.trakt.tv/users/{}", + "urlMain": "https://www.trakt.tv/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TrashboxRU": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 17595, + "regexCheck": "^[A-Za-z0-9_-]{3,16}$", + "url": "https://trashbox.ru/users/{}", + "urlMain": "https://trashbox.ru/", + "username_claimed": "blue", + "username_unclaimed": "never-never-ever" + }, + "Trello": { + "errorMsg": "model not found", + "errorType": "message", + "rank": 181, + "url": "https://trello.com/{}", + "urlMain": "https://trello.com/", + "urlProbe": "https://trello.com/1/Members/{}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TripAdvisor": { + "errorMsg": "This page is on vacation\u2026", + "errorType": "message", + "rank": 627, + "tags": [ + "travel" + ], + "url": "https://tripadvisor.com/members/{}", + "urlMain": "https://tripadvisor.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Twitch": { + "errorType": "status_code", + "rank": 33, + "url": "https://www.twitch.tv/{}", + "urlMain": "https://www.twitch.tv/", + "urlProbe": "https://m.twitch.tv/{}", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Twitter": { + "errorType": "status_code", + "headers": { + "User-Agent": "Mozilla" + }, + "rank": 59, + "request_head_only": false, + "tags": [ + "global", + "social" + ], + "url": "https://www.twitter.com/{}", + "urlMain": "https://www.twitter.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Typeracer": { + "errorMsg": "Profile Not Found", + "errorType": "message", + "rank": 9093, + "url": "https://data.typeracer.com/pit/profile?user={}", + "urlMain": "https://typeracer.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Ultimate-Guitar": { + "errorType": "status_code", + "rank": 600, + "url": "https://ultimate-guitar.com/u/{}", + "urlMain": "https://ultimate-guitar.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Unsplash": { + "errorType": "status_code", + "rank": 365, + "url": "https://unsplash.com/@{}", + "urlMain": "https://unsplash.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "VK": { + "errorType": "response_url", + "errorUrl": "https://www.quora.com/profile/{}", + "rank": 23, + "tags": [ + "social" + ], + "url": "https://vk.com/{}", + "urlMain": "https://vk.com/", + "username_claimed": "smith", + "username_unclaimed": "blah62831" + }, + "VSCO": { + "errorType": "status_code", + "rank": 5172, + "url": "https://vsco.co/{}", + "urlMain": "https://vsco.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Velomania": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", + "errorType": "message", + "rank": 142077, + "url": "https://forum.velomania.ru/member.php?username={}", + "urlMain": "https://forum.velomania.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Venmo": { + "errorType": "status_code", + "rank": 6580, + "tags": [ + "finance" + ], + "url": "https://venmo.com/{}", + "urlMain": "https://venmo.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Vimeo": { + "errorType": "status_code", + "rank": 169, + "tags": [ + "video" + ], + "url": "https://vimeo.com/{}", + "urlMain": "https://vimeo.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Virgool": { + "errorMsg": "\u06f4\u06f0\u06f4", + "errorType": "message", + "rank": 2548, + "url": "https://virgool.io/@{}", + "urlMain": "https://virgool.io/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "VirusTotal": { + "errorMsg": "not found", + "errorType": "message", + "rank": 5398, + "url": "https://www.virustotal.com/ui/users/{}/trusted_users", + "urlMain": "https://www.virustotal.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Wattpad": { + "errorMsg": "userError-404", + "errorType": "message", + "rank": 574, + "tags": [ + "social" + ], + "url": "https://www.wattpad.com/user/{}", + "urlMain": "https://www.wattpad.com/", + "username_claimed": "Dogstho7951", + "username_unclaimed": "noonewouldeverusethis7" + }, + "We Heart It": { + "errorMsg": "Oops! You've landed on a moving target!", + "errorType": "message", + "rank": 3005, + "url": "https://weheartit.com/{}", + "urlMain": "https://weheartit.com/", + "username_claimed": "ventivogue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "WebNode": { + "errorType": "status_code", + "rank": 22436, + "url": "https://{}.webnode.cz/", + "urlMain": "https://www.webnode.cz/", + "username_claimed": "radkabalcarova", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Whonix Forum": { + "errorType": "status_code", + "rank": 245814, + "url": "https://forums.whonix.org/u/{}", + "urlMain": "https://forums.whonix.org/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Wikidot": { + "errorMsg": "User does not exist.", + "errorType": "message", + "rank": 3290, + "url": "http://www.wikidot.com/user:info/{}", + "urlMain": "http://www.wikidot.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "WikimapiaProfile": { + "errorMsg": "January 01, 1970", + "errorType": "message", + "request_head_only": false, + "tags": [ + "ru" + ], + "type": "wikimapia_uid", + "url": "http://wikimapia.org/user/{}", + "urlMain": "http://wikimapia.org", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "WikimapiaSearch": { + "errorMsg": "20", + "errorType": "message", + "request_head_only": false, + "tags": [ + "ru" + ], + "url": "http://wikimapia.org/user/tools/users_rating/?username={}", + "urlMain": "http://wikimapia.org", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "Wikipedia": { + "errorMsg": "is not registered.", + "errorType": "message", + "rank": 10, + "tags": [ + "" + ], + "url": "https://www.wikipedia.org/wiki/User:{}", + "urlMain": "https://www.wikipedia.org/", + "username_claimed": "Hoadlck", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Wix": { + "errorType": "status_code", + "rank": 226, + "url": "https://{}.wix.com", + "urlMain": "https://wix.com/", + "username_claimed": "support", + "username_unclaimed": "noonewouldeverusethis7" + }, + "WordPress": { + "errorType": "response_url", + "errorUrl": "wordpress.com/typo/?subdomain=", + "rank": 52, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "blog" + ], + "url": "https://{}.wordpress.com/", + "urlMain": "https://wordpress.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "WordPressOrg": { + "errorType": "response_url", + "errorUrl": "https://wordpress.org", + "rank": 636, + "url": "https://profiles.wordpress.org/{}/", + "urlMain": "https://wordpress.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Yandex": { + "errorType": "status_code", + "tags": [ + "global", + "ru" + ], + "type": "yandex_public_id", + "url": "https://yandex.ru/user/{}", + "urlMain": "https://yandex.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YandexCollection": { + "errorType": "status_code", + "rank": 55, + "request_head_only": false, + "tags": [ + "global", + "ru" + ], + "url": "https://yandex.ru/collections/user/{}/", + "urlMain": "https://yandex.ru/collections/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "YandexLocal": { + "errorType": "status_code", + "tags": [ + "global", + "ru" + ], + "type": "yandex_public_id", + "url": "https://local.yandex.ru/users/{}", + "urlMain": "https://local.yandex.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YandexMusic": { + "errorType": "status_code", + "tags": [ + "global", + "ru" + ], + "type": "username", + "url": "https://music.yandex.ru/users/{}/playlists", + "urlMain": "https://music.yandex.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YandexZnatoki": { + "errorType": "status_code", + "tags": [ + "global", + "ru" + ], + "type": "yandex_public_id", + "url": "https://yandex.ru/q/profile/{}", + "urlMain": "ttps://yandex.ru/q/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YouNow": { + "errorMsg": "No users found", + "errorType": "message", + "rank": 13091, + "url": "https://www.younow.com/{}/", + "urlMain": "https://www.younow.com/", + "urlProbe": "https://api.younow.com/php/api/broadcast/info/user={}/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "YouPic": { + "errorType": "status_code", + "rank": 26640, + "url": "https://youpic.com/photographer/{}/", + "urlMain": "https://youpic.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "YouTube": { + "errorMsg": "Not Found", + "errorType": "message", + "rank": 2, + "tags": [ + "video" + ], + "url": "https://www.youtube.com/{}", + "urlMain": "https://www.youtube.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Zhihu": { + "errorType": "response_url", + "errorUrl": "https://www.zhihu.com/people/{}", + "rank": 135, + "url": "https://www.zhihu.com/people/{}", + "urlMain": "https://www.zhihu.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Zomato": { + "errorType": "status_code", + "headers": { + "Accept-Language": "en-US,en;q=0.9" + }, + "rank": 1920, + "tags": [ + "food" + ], + "url": "https://www.zomato.com/pl/{}/foodjourney", + "urlMain": "https://www.zomato.com/", + "username_claimed": "deepigoyal", + "username_unclaimed": "noonewouldeverusethis7" + }, + "akniga": { + "errorType": "status_code", + "rank": 14884, + "url": "https://akniga.org/profile/{}", + "urlMain": "https://akniga.org/profile/blue/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "allmylinks": { + "errorMsg": "Page not found", + "errorType": "message", + "rank": 40997, + "url": "https://allmylinks.com/{}", + "urlMain": "https://allmylinks.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "aminoapp": { + "errorType": "status_code", + "rank": 9125, + "url": "https://aminoapps.com/u/{}", + "urlMain": "https://aminoapps.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "authorSTREAM": { + "errorType": "status_code", + "rank": 7220, + "tags": [ + "presos" + ], + "url": "http://www.authorstream.com/{}/", + "urlMain": "http://www.authorstream.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "babyRU": { + "errorMsg": "\u0423\u043f\u0441, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0438\u0441\u043a\u0430\u043b\u0438, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442", + "errorType": "message", + "rank": 7704, + "url": "https://www.baby.ru/u/{}/", + "urlMain": "https://www.baby.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "babyblogRU": { + "errorType": "status_code", + "rank": 15174, + "url": "https://www.babyblog.ru/user/info/{}", + "urlMain": "https://www.babyblog.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "chaos.social": { + "errorType": "status_code", + "rank": 4228716, + "url": "https://chaos.social/@{}", + "urlMain": "https://chaos.social/", + "username_claimed": "rixx", + "username_unclaimed": "noonewouldeverusethis7" + }, + "couchsurfing": { + "errorType": "status_code", + "rank": 11652, + "url": "https://www.couchsurfing.com/people/{}", + "urlMain": "https://www.couchsurfing.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "d3RU": { + "errorType": "status_code", + "rank": 35510, + "url": "https://d3.ru/user/{}/posts", + "urlMain": "https://d3.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "dailykos": { + "errorType": "status_code", + "rank": 6038, + "url": "https://www.dailykos.com/user/{}", + "urlMain": "https://www.dailykos.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "datingRU": { + "errorType": "status_code", + "rank": 82211, + "url": "http://dating.ru/{}", + "urlMain": "http://dating.ru", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "devRant": { + "errorType": "response_url", + "errorUrl": "https://devrant.com/", + "rank": 86451, + "tags": [ + "social" + ], + "url": "https://devrant.com/users/{}", + "urlMain": "https://devrant.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "drive2": { + "errorType": "status_code", + "rank": 1703, + "url": "https://www.drive2.ru/users/{}", + "urlMain": "https://www.drive2.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "eGPU": { + "errorType": "status_code", + "rank": 90682, + "url": "https://egpu.io/forums/profile/{}/", + "urlMain": "https://egpu.io/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "easyen": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 11564, + "url": "https://easyen.ru/index/8-0-{}", + "urlMain": "https://easyen.ru/", + "username_claimed": "wd", + "username_unclaimed": "noonewouldeverusethis7" + }, + "eintracht": { + "errorType": "status_code", + "rank": 201404, + "url": "https://community.eintracht.de/fans/{}", + "urlMain": "https://eintracht.de", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "fixya": { + "errorType": "status_code", + "rank": 6178, + "url": "https://www.fixya.com/users/{}", + "urlMain": "https://www.fixya.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "fl": { + "errorType": "status_code", + "rank": 50803, + "tags": [ + "ru" + ], + "url": "https://www.fl.ru/users/{}", + "urlMain": "https://www.fl.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "forum_guns": { + "errorMsg": "action=https://forum.guns.ru/forummisc/blog/search", + "errorType": "message", + "rank": 20931, + "url": "https://forum.guns.ru/forummisc/blog/{}", + "urlMain": "https://forum.guns.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "forumhouseRU": { + "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", + "errorType": "message", + "rank": 15756, + "url": "https://www.forumhouse.ru/members/?username={}", + "urlMain": "https://www.forumhouse.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "geocaching": { + "errorType": "status_code", + "rank": 13000, + "tags": [ + "social" + ], + "url": "https://www.geocaching.com/profile/?u={}", + "urlMain": "https://www.geocaching.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "gfycat": { + "errorType": "status_code", + "rank": 267, + "url": "https://gfycat.com/@{}", + "urlMain": "https://gfycat.com/", + "username_claimed": "Test", + "username_unclaimed": "noonewouldeverusethis7" + }, + "habr": { + "errorType": "status_code", + "rank": 1337, + "url": "https://habr.com/ru/users/{}", + "urlMain": "https://habr.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "hackster": { + "errorType": "status_code", + "rank": 19616, + "url": "https://www.hackster.io/{}", + "urlMain": "https://www.hackster.io", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "hunting": { + "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", + "errorType": "message", + "rank": 135360, + "url": "https://www.hunting.ru/forum/members/?username={}", + "urlMain": "https://www.hunting.ru/forum/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "iMGSRC.RU": { + "errorType": "response_url", + "errorUrl": "https://imgsrc.ru/", + "rank": 14987, + "url": "https://imgsrc.ru/main/user.php?user={}", + "urlMain": "https://imgsrc.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "igromania": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", + "errorType": "message", + "rank": 14909, + "url": "http://forum.igromania.ru/member.php?username={}", + "urlMain": "http://forum.igromania.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "interpals": { + "errorMsg": "The requested user does not exist or is inactive", + "errorType": "message", + "rank": 7604, + "tags": [ + "dating" + ], + "url": "https://www.interpals.net/{}", + "urlMain": "https://www.interpals.net/", + "username_claimed": "blue", + "username_unclaimed": "noneownsthisusername" + }, + "irecommend": { + "errorType": "status_code", + "rank": 2376, + "tags": [ + "ru" + ], + "url": "https://irecommend.ru/users/{}", + "urlMain": "https://irecommend.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "jeuxvideo": { + "errorMsg": "Vous \u00eates", + "errorType": "message", + "rank": 1557, + "url": "http://www.jeuxvideo.com/profil/{}?mode=infos", + "urlMain": "http://www.jeuxvideo.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "kofi": { + "errorMsg": "Make income from your art!", + "errorType": "message", + "rank": 89891, + "url": "https://ko-fi.com/{}", + "urlMain": "https://ko-fi.com", + "username_claimed": "yeahkenny", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "kwork": { + "errorType": "status_code", + "rank": 7137, + "url": "https://kwork.ru/user/{}", + "urlMain": "https://www.kwork.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "labpentestit": { + "errorType": "response_url", + "errorUrl": "https://lab.pentestit.ru/{}", + "rank": 2280092, + "url": "https://lab.pentestit.ru/profile/{}", + "urlMain": "https://lab.pentestit.ru/", + "username_claimed": "CSV", + "username_unclaimed": "noonewouldeverusethis7" + }, + "last.fm": { + "errorType": "status_code", + "rank": 1666, + "tags": [ + "music" + ], + "url": "https://last.fm/user/{}", + "urlMain": "https://last.fm/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "leasehackr": { + "errorType": "status_code", + "rank": 85106, + "url": "https://forum.leasehackr.com/u/{}/summary/", + "urlMain": "https://forum.leasehackr.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis" + }, + "livelib": { + "errorType": "status_code", + "rank": 3809, + "url": "https://www.livelib.ru/reader/{}", + "urlMain": "https://www.livelib.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mastodon.cloud": { + "errorType": "status_code", + "rank": 285280, + "url": "https://mastodon.cloud/@{}", + "urlMain": "https://mastodon.cloud/", + "username_claimed": "TheAdmin", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mastodon.social": { + "errorType": "status_code", + "rank": 4228716, + "url": "https://mastodon.social/@{}", + "urlMain": "https://chaos.social/", + "username_claimed": "Gargron", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mastodon.technology": { + "errorType": "status_code", + "rank": 1051451, + "url": "https://mastodon.technology/@{}", + "urlMain": "https://mastodon.xyz/", + "username_claimed": "ashfurrow", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mastodon.xyz": { + "errorType": "status_code", + "rank": 1051451, + "url": "https://mastodon.xyz/@{}", + "urlMain": "https://mastodon.xyz/", + "username_claimed": "TheKinrar", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mercadolivre": { + "errorType": "status_code", + "rank": 27839, + "url": "https://www.mercadolivre.com.br/perfil/{}", + "urlMain": "https://www.mercadolivre.com.br", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "metacritic": { + "errorMsg": "User not found", + "errorType": "message", + "rank": 2499, + "regexCheck": "^(?![-_])[A-Za-z0-9-_]{3,15}$", + "url": "https://www.metacritic.com/user/{}", + "urlMain": "https://www.metacritic.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewould" + }, + "mixer.com": { + "errorType": "status_code", + "rank": 1544, + "url": "https://mixer.com/{}", + "urlMain": "https://mixer.com/", + "urlProbe": "https://mixer.com/api/v1/channels/{}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "moikrug": { + "errorType": "status_code", + "rank": 174869, + "url": "https://moikrug.ru/{}", + "urlMain": "https://moikrug.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mstdn.io": { + "errorType": "status_code", + "rank": 1333764, + "url": "https://mstdn.io/@{}", + "urlMain": "https://mstdn.io/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "nightbot": { + "errorType": "status_code", + "rank": 10776, + "url": "https://nightbot.tv/t/{}/commands", + "urlMain": "https://nightbot.tv/", + "urlProbe": "https://api.nightbot.tv/1/channels/t/{}", + "username_claimed": "green", + "username_unclaimed": "noonewouldeverusethis" + }, + "nnRU": { + "errorType": "status_code", + "rank": 0, + "url": "https://{}.www.nn.ru/", + "urlMain": "https://https://www.nn.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "notabug.org": { + "errorType": "status_code", + "rank": 145085, + "url": "https://notabug.org/{}", + "urlMain": "https://notabug.org/", + "urlProbe": "https://notabug.org/{}/followers", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "note": { + "errorType": "status_code", + "rank": 861, + "url": "https://note.com/{}", + "urlMain": "https://note.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "opennet": { + "errorMsg": "\u0418\u043c\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e", + "errorType": "message", + "rank": 65050, + "url": "https://www.opennet.ru/~{}", + "urlMain": "https://www.opennet.ru/", + "username_claimed": "anonismus", + "username_unclaimed": "noneownsthisusername" + }, + "opensource": { + "errorType": "status_code", + "rank": 7771, + "url": "https://opensource.com/users/{}", + "urlMain": "https://opensource.com/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "osu!": { + "errorType": "status_code", + "rank": 5124, + "url": "https://osu.ppy.sh/users/{}", + "urlMain": "https://osu.ppy.sh/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "pedsovet": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 6776, + "url": "http://pedsovet.su/index/8-0-{}", + "urlMain": "http://pedsovet.su/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "phpRU": { + "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", + "errorType": "message", + "rank": 113717, + "url": "https://php.ru/forum/members/?username={}", + "urlMain": "https://php.ru/forum/", + "username_claimed": "apple", + "username_unclaimed": "noonewouldeverusethis7" + }, + "pikabu": { + "errorType": "status_code", + "rank": 962, + "tags": [ + "ru" + ], + "url": "https://pikabu.ru/@{}", + "urlMain": "https://pikabu.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "pr0gramm": { + "errorType": "status_code", + "rank": 3343, + "url": "https://pr0gramm.com/api/profile/info?name={}", + "urlMain": "https://pr0gramm.com/", + "username_claimed": "cha0s", + "username_unclaimed": "noonewouldeverusethis123123123123123123" + }, + "pvpru": { + "errorType": "status_code", + "errors": { + "Access denied": "Cloudflare security protection detected" + }, + "rank": 405547, + "request_head_only": false, + "url": "https://pvpru.com/board/member.php?username={}&tab=aboutme#aboutme", + "urlMain": "https://pvpru.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "radio_echo_msk": { + "errorType": "status_code", + "rank": 1578, + "url": "https://echo.msk.ru/users/{}", + "urlMain": "https://echo.msk.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "radioskot": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 105878, + "url": "https://radioskot.ru/index/8-0-{}", + "urlMain": "https://radioskot.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "satsisRU": { + "errorType": "status_code", + "rank": 447395, + "url": "https://satsis.info/user/{}", + "urlMain": "https://satsis.info/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "segmentfault": { + "errorType": "status_code", + "rank": 678, + "url": "https://segmentfault.com/u/{}", + "urlMain": "https://segmentfault.com/", + "username_claimed": "bule", + "username_unclaimed": "noonewouldeverusethis7" + }, + "social.tchncs.de": { + "errorType": "status_code", + "rank": 463325, + "url": "https://social.tchncs.de/@{}", + "urlMain": "https://social.tchncs.de/", + "username_claimed": "Milan", + "username_unclaimed": "noonewouldeverusethis7" + }, + "soylentnews": { + "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", + "errorType": "message", + "rank": 892920, + "url": "https://soylentnews.org/~{}", + "urlMain": "https://soylentnews.org", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "sparkpeople": { + "errorMsg": "We couldn't find that user", + "errorType": "message", + "rank": 20132, + "url": "https://www.sparkpeople.com/mypage.asp?id={}", + "urlMain": "https://www.sparkpeople.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "spletnik": { + "errorType": "status_code", + "rank": 9356, + "url": "https://spletnik.ru/user/{}", + "urlMain": "https://spletnik.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "svidbook": { + "errorType": "status_code", + "rank": 5680929, + "url": "https://www.svidbook.ru/user/{}", + "urlMain": "https://www.svidbook.ru/", + "username_claimed": "green", + "username_unclaimed": "noonewouldeverusethis7" + }, + "toster": { + "errorType": "status_code", + "rank": 10529871, + "url": "https://www.toster.ru/user/{}/answers", + "urlMain": "https://www.toster.ru/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "tracr.co": { + "errorMsg": "No search results", + "errorType": "message", + "rank": 1104278, + "regexCheck": "^[A-Za-z0-9]{2,32}$", + "url": "https://tracr.co/users/1/{}", + "urlMain": "https://tracr.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "travellerspoint": { + "errorMsg": "Wooops. Sorry!", + "errorType": "message", + "rank": 65743, + "url": "https://www.travellerspoint.com/users/{}", + "urlMain": "https://www.travellerspoint.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "uid": { + "errorType": "status_code", + "rank": 22088, + "url": "http://uid.me/{}", + "urlMain": "https://uid.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "warriorforum": { + "errorType": "status_code", + "rank": 3524, + "url": "https://www.warriorforum.com/members/{}.html", + "urlMain": "https://www.warriorforum.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "windy": { + "errorType": "status_code", + "rank": 2279, + "url": "https://community.windy.com/user/{}", + "urlMain": "https://windy.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + } } \ No newline at end of file diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index a9fc5cbc7..bfa163cd9 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -130,7 +130,7 @@ def get_response(request_future, error_type, social_network): def sherlock(username, site_data, query_notify, tor=False, unique_tor=False, proxy=None, timeout=None, ids_search=False, - id_type='username'): + id_type='username',tags=[]): """Run Sherlock Analysis. Checks for existence of username on various social media sites. @@ -197,6 +197,11 @@ def sherlock(username, site_data, query_notify, if net_info.get('type', 'username') != id_type: continue + site_tags = set(net_info.get('tags', [])) + if tags: + if not tags.intersection(site_tags): + continue + # Results from analysis of this specific site results_site = {} @@ -549,6 +554,10 @@ def main(): action="store", help="One or more usernames to check with social networks." ) + parser.add_argument("--tags", + dest="tags", default='', + help="Specify tags of sites." + ) args = parser.parse_args() # Argument check @@ -593,6 +602,9 @@ def main(): if k in ('yandex_public_id', 'wikimapia_uid'): usernames[v] = k + if args.tags: + args.tags = set(args.tags.split(',')) + #Create object with all information about sites we are aware of. try: sites = SitesInformation(args.json_file) @@ -663,7 +675,8 @@ def main(): proxy=args.proxy, timeout=args.timeout, ids_search=args.ids_search, - id_type=id_type) + id_type=id_type, + tags=args.tags) if args.output: From 141b2522a66a3e01ddc0906348aa30ffd669e6a9 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Mon, 13 Jul 2020 23:03:44 +0300 Subject: [PATCH 12/39] Gaia ID search --- sherlock/resources/data.json | 10 ++++++++++ sherlock/sherlock.py | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index dadf40adf..d1033c298 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -2103,6 +2103,7 @@ ], "url": "http://wikimapia.org/user/tools/users_rating/?username={}", "urlMain": "http://wikimapia.org", + "caseSentitive": true, "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis77777" }, @@ -2892,5 +2893,14 @@ "urlMain": "https://windy.com/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" + }, + "GoogleMaps": { + "errorType": "status_code", + "url": "https://www.google.com/maps/contrib/{}", + "urlMain": "https://maps.google.com/", + "request_head_only": false, + "type": "gaia_id", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" } } \ No newline at end of file diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index bfa163cd9..425baf21a 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -357,7 +357,7 @@ def sherlock(username, site_data, query_notify, for k,v in extracted_ids_data.items(): if 'username' in k: new_usernames[v] = 'username' - if k in ('yandex_public_id', 'wikimapia_uid'): + if k in ('yandex_public_id', 'wikimapia_uid', 'gaia_id'): new_usernames[v] = k results_site['ids_usernames'] = new_usernames @@ -599,7 +599,7 @@ def main(): for k, v in info.items(): if 'username' in k: usernames[v] = 'username' - if k in ('yandex_public_id', 'wikimapia_uid'): + if k in ('yandex_public_id', 'wikimapia_uid', 'gaia_id'): usernames[v] = k if args.tags: From 4974e5612ea3548fc6fc90f2bd87da076b1ef5e4 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Mon, 13 Jul 2020 23:46:37 +0300 Subject: [PATCH 13/39] Rebranding --- README.md | 105 ++------------------- {sherlock => maigret}/__init__.py | 0 {sherlock => maigret}/__main__.py | 6 +- sherlock/sherlock.py => maigret/maigret.py | 20 ++-- {sherlock => maigret}/notify.py | 0 {sherlock => maigret}/resources/data.json | 9 ++ {sherlock => maigret}/result.py | 0 {sherlock => maigret}/sites.py | 0 {sherlock => maigret}/tests/__init__.py | 0 {sherlock => maigret}/tests/all.py | 0 {sherlock => maigret}/tests/base.py | 0 11 files changed, 36 insertions(+), 104 deletions(-) rename {sherlock => maigret}/__init__.py (100%) rename {sherlock => maigret}/__main__.py (58%) rename sherlock/sherlock.py => maigret/maigret.py (97%) rename {sherlock => maigret}/notify.py (100%) rename {sherlock => maigret}/resources/data.json (99%) rename {sherlock => maigret}/result.py (100%) rename {sherlock => maigret}/sites.py (100%) rename {sherlock => maigret}/tests/__init__.py (100%) rename {sherlock => maigret}/tests/all.py (100%) rename {sherlock => maigret}/tests/base.py (100%) diff --git a/README.md b/README.md index e798d0b91..09458bbeb 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,33 @@ ## WARNING -This is a sherlock fork under heavy development. +This is a [sherlock](https://github.com/sherlock-project/) fork under heavy development. ## Installation -**NOTE**: Python 3.6 or higher is required. +**NOTE**: Python 3.6 or higher and pip is required. ```bash -# clone the repo -$ git clone https://github.com/sherlock-project/sherlock.git - -# change the working directory to sherlock -$ cd sherlock - -# install python3 and python3-pip if they are not installed +# clone the repo and change directory +$ git clone https://github.com/soxoj/maigret && cd maigret # install the requirements $ python3 -m pip install -r requirements.txt ``` -[![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.png)](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/sherlock-project/sherlock&tutorial=README.md) +[![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.png)](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/soxoj/maigret&tutorial=README.md) ## Usage ```bash -$ python3 sherlock --help -usage: sherlock [-h] [--version] [--verbose] [--rank] +$ python3 maigret --help +usage: maigret [-h] [--version] [--verbose] [--rank] [--folderoutput FOLDEROUTPUT] [--output OUTPUT] [--tor] [--unique-tor] [--csv] [--site SITE_NAME] [--proxy PROXY_URL] [--json JSON_FILE] [--timeout TIMEOUT] [--print-found] [--no-color] [--browse] USERNAMES [USERNAMES ...] -Sherlock: Find Usernames Across Social Networks (Version 0.12.2) +Maigret (Sherlock fork): Find Usernames Across Social Networks (Version 0.12.2) positional arguments: USERNAMES One or more usernames to check with social networks. @@ -78,96 +73,16 @@ optional arguments: To search for only one user: ``` -python3 sherlock user123 +python3 maigret user123 ``` To search for more than one user: ``` -python3 sherlock user1 user2 user3 +python3 maigret user1 user2 user3 ``` Accounts found will be stored in an individual text file with the corresponding username (e.g ```user123.txt```). -## Anaconda (Windows) Notes - -If you are using Anaconda in Windows, using 'python3' might not work. Use 'python' instead. - -## Docker Notes - -If docker is installed you can build an image and run this as a container. - -``` -docker build -t mysherlock-image . -``` - -Once the image is built, sherlock can be invoked by running the following: - -``` -docker run --rm -t mysherlock-image user123 -``` - -The optional ```--rm``` flag removes the container filesystem on completion to prevent cruft build-up. See: https://docs.docker.com/engine/reference/run/#clean-up---rm - -The optional ```-t``` flag allocates a pseudo-TTY which allows colored output. See: https://docs.docker.com/engine/reference/run/#foreground - -Use the following command to access the saved results: - -``` -docker run --rm -t -v "$PWD/results:/opt/sherlock/results" mysherlock-image -o /opt/sherlock/results/text.txt user123 -``` - -The ```-v "$PWD/results:/opt/sherlock/results"``` option tells docker to create (or use) the folder `results` in the -present working directory and to mount it at `/opt/sherlock/results` on the docker container. -The `-o /opt/sherlock/results/text.txt` option tells `sherlock` to output the result. - -Or you can use "Docker Hub" to run `sherlock`: -``` -docker run theyahya/sherlock user123 -``` - -### Using `docker-compose` - -You can use the `docker-compose.yml` file from the repository and use this command: - -``` -docker-compose run sherlock -o /opt/sherlock/results/text.txt user123 -``` - -## Adding New Sites - -Please look at the Wiki entry on -[adding new sites](https://github.com/TheYahya/sherlock/wiki/Adding-Sites-To-Sherlock) -to understand the issues. - -**NOTE**: Sherlock is not accepting adult sites in the standard list. - -## Tests - -Thank you for contributing to Sherlock! - -Before creating a pull request with new development, please run the tests -to ensure that everything is working great. It would also be a good idea to run the tests -before starting development to distinguish problems between your -environment and the Sherlock software. - -The following is an example of the command line to run all the tests for -Sherlock. This invocation hides the progress text that Sherlock normally -outputs, and instead shows the verbose output of the tests. - -``` -$ cd sherlock -$ python3 -m unittest tests.all --verbose -``` - -Note that we do currently have 100% test coverage. Unfortunately, some of -the sites that Sherlock checks are not always reliable, so it is common -to get response problems. Any problems in connection will show up as -warnings in the tests instead of true errors. - -If some sites are failing due to connection problems (site is down, in maintenance, etc) -you can exclude them from tests by creating a `tests/.excluded_sites` file with a -list of sites to ignore (one site name per line). - ## License MIT © Maigret
diff --git a/sherlock/__init__.py b/maigret/__init__.py similarity index 100% rename from sherlock/__init__.py rename to maigret/__init__.py diff --git a/sherlock/__main__.py b/maigret/__main__.py similarity index 58% rename from sherlock/__main__.py rename to maigret/__main__.py index 8c2b2e78d..9bfcc7292 100644 --- a/sherlock/__main__.py +++ b/maigret/__main__.py @@ -1,14 +1,14 @@ #! /usr/bin/env python3 """ -Sherlock: Find Usernames Across Social Networks Module +Maigret (Sherlock fork): Find Usernames Across Social Networks Module This module contains the main logic to search for usernames at social networks. """ -import sherlock +import maigret if __name__ == "__main__": - sherlock.main() + maigret.main() diff --git a/sherlock/sherlock.py b/maigret/maigret.py similarity index 97% rename from sherlock/sherlock.py rename to maigret/maigret.py index 425baf21a..acc2351fb 100644 --- a/sherlock/sherlock.py +++ b/maigret/maigret.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 """ -Sherlock: Find Usernames Across Social Networks Module +Maigret (Sherlock fork): Find Usernames Across Social Networks Module This module contains the main logic to search for usernames at social networks. @@ -16,6 +16,7 @@ import sys from argparse import ArgumentParser, RawDescriptionHelpFormatter from time import monotonic +from http.cookies import SimpleCookie import requests from socid_extractor import parse, extract @@ -27,7 +28,7 @@ from notify import QueryNotifyPrint from sites import SitesInformation -module_name = "Sherlock: Find Usernames Across Social Networks" +module_name = "Maigret (Sherlock fork): Find Usernames Across Social Networks" __version__ = "0.12.2" @@ -194,6 +195,7 @@ def sherlock(username, site_data, query_notify, # First create futures for all requests. This allows for the requests to run in parallel for social_network, net_info in site_data.items(): + # print(id_type) # print(social_network) if net_info.get('type', 'username') != id_type: continue @@ -211,7 +213,7 @@ def sherlock(username, site_data, query_notify, # A user agent is needed because some sites don't return the correct # information since they think that we are bots (Which we actually are...) headers = { - 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:55.0) Gecko/20100101 Firefox/55.0', + 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:55.0) Gecko/20100101 Firefox/55.0', } if "headers" in net_info: @@ -267,18 +269,23 @@ def sherlock(username, site_data, query_notify, # The final result of the request will be what is available. allow_redirects = True + def parse_cookies(cookies_str): + cookies = SimpleCookie() + cookies.load(cookies_str) + return {key: morsel.value for key, morsel in cookies.items()} + # This future starts running the request in a new thread, doesn't block the main thread if proxy is not None: proxies = {"http": proxy, "https": proxy} future = request_method(url=url_probe, headers=headers, proxies=proxies, allow_redirects=allow_redirects, - timeout=timeout + timeout=timeout, ) else: future = request_method(url=url_probe, headers=headers, allow_redirects=allow_redirects, - timeout=timeout + timeout=timeout, ) # Store future in data for access later @@ -350,6 +357,7 @@ def sherlock(username, site_data, query_notify, extracted_ids_data = "" if ids_search and r: + # print(r.text) extracted_ids_data = extract(r.text) if extracted_ids_data: @@ -592,7 +600,7 @@ def main(): sys.exit(1) if args.parse_url: - page, _ = parse(args.parse_url) + page, _ = parse(args.parse_url, cookies_str='') info = extract(page) text = 'Extracted ID data from webpage: ' + ', '.join([f'{a}: {b}' for a,b in info.items()]) print(text) diff --git a/sherlock/notify.py b/maigret/notify.py similarity index 100% rename from sherlock/notify.py rename to maigret/notify.py diff --git a/sherlock/resources/data.json b/maigret/resources/data.json similarity index 99% rename from sherlock/resources/data.json rename to maigret/resources/data.json index d1033c298..6319f3db3 100644 --- a/sherlock/resources/data.json +++ b/maigret/resources/data.json @@ -1605,6 +1605,15 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Samlib": { + "errorType": "status_code", + "url": "http://samlib.ru/e/{}", + "urlMain": "http://samlib.ru/", + "username_claimed": "e_melokumow", + "caseSentitive": true, + "username_unclaimed": "noonewouldeverusethis", + "tags": ["ru", "writing"] + }, "Sbazar.cz": { "errorType": "status_code", "rank": 16505, diff --git a/sherlock/result.py b/maigret/result.py similarity index 100% rename from sherlock/result.py rename to maigret/result.py diff --git a/sherlock/sites.py b/maigret/sites.py similarity index 100% rename from sherlock/sites.py rename to maigret/sites.py diff --git a/sherlock/tests/__init__.py b/maigret/tests/__init__.py similarity index 100% rename from sherlock/tests/__init__.py rename to maigret/tests/__init__.py diff --git a/sherlock/tests/all.py b/maigret/tests/all.py similarity index 100% rename from sherlock/tests/all.py rename to maigret/tests/all.py diff --git a/sherlock/tests/base.py b/maigret/tests/base.py similarity index 100% rename from sherlock/tests/base.py rename to maigret/tests/base.py From 912037cc699e4dfbea1a5082f37373a9c8939aea Mon Sep 17 00:00:00 2001 From: Soxoj Date: Tue, 14 Jul 2020 03:22:09 +0300 Subject: [PATCH 14/39] Tags added and checks fixes --- maigret/maigret.py | 2 +- maigret/notify.py | 2 +- maigret/resources/data.json | 59 +++++++++++++++++++++++++------------ 3 files changed, 42 insertions(+), 21 deletions(-) diff --git a/maigret/maigret.py b/maigret/maigret.py index acc2351fb..7d380e17d 100644 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -221,7 +221,7 @@ def sherlock(username, site_data, query_notify, headers.update(net_info["headers"]) # URL of user on site (if it exists) - url = net_info.get('urlCheck', net_info["url"]).format(username) + url = net_info.get('url').format(username) # Don't make request if username is invalid for the site regex_check = net_info.get("regexCheck") diff --git a/maigret/notify.py b/maigret/notify.py index 90b61b31f..a1f11a401 100644 --- a/maigret/notify.py +++ b/maigret/notify.py @@ -218,7 +218,7 @@ def update(self, result): elif result.status == QueryStatus.UNKNOWN: if self.color: print(Style.BRIGHT + Fore.WHITE + "[" + - Fore.RED + "-" + + Fore.RED + "?" + Fore.WHITE + "]" + Fore.GREEN + f" {self.result.site_name}:" + Fore.RED + f" {self.result.context}" + diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 6319f3db3..2fcf565ff 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -209,6 +209,9 @@ "tags": [ "business" ], + "headers": { + "User-Agent": "Curl" + }, "url": "https://www.behance.net/{}", "urlMain": "https://www.behance.net/", "username_claimed": "blue", @@ -1056,7 +1059,7 @@ "business" ], "url": "https://keybase.io/{}", - "urlCheck": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={}", + "urlProbe": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={}", "urlMain": "https://keybase.io/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" @@ -2489,7 +2492,8 @@ "url": "https://www.hunting.ru/forum/members/?username={}", "urlMain": "https://www.hunting.ru/forum/", "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" + "username_unclaimed": "noonewouldeverusethis7", + "tags": ["ru"] }, "iMGSRC.RU": { "errorType": "response_url", @@ -2498,7 +2502,8 @@ "url": "https://imgsrc.ru/main/user.php?user={}", "urlMain": "https://imgsrc.ru/", "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" + "username_unclaimed": "noonewouldeverusethis7", + "tags": ["ru"] }, "igromania": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", @@ -2507,7 +2512,8 @@ "url": "http://forum.igromania.ru/member.php?username={}", "urlMain": "http://forum.igromania.ru/", "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" + "username_unclaimed": "noonewouldeverusethis7", + "tags": ["gaming", "ru"] }, "interpals": { "errorMsg": "The requested user does not exist or is inactive", @@ -2539,7 +2545,8 @@ "url": "http://www.jeuxvideo.com/profil/{}?mode=infos", "urlMain": "http://www.jeuxvideo.com", "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" + "username_unclaimed": "noonewouldeverusethis7", + "tags": ["fr", "gaming"] }, "kofi": { "errorMsg": "Make income from your art!", @@ -2548,7 +2555,8 @@ "url": "https://ko-fi.com/{}", "urlMain": "https://ko-fi.com", "username_claimed": "yeahkenny", - "username_unclaimed": "noonewouldeverusethis77777" + "username_unclaimed": "noonewouldeverusethis77777", + "tags": ["ru", "freelance"] }, "kwork": { "errorType": "status_code", @@ -2565,7 +2573,8 @@ "url": "https://lab.pentestit.ru/profile/{}", "urlMain": "https://lab.pentestit.ru/", "username_claimed": "CSV", - "username_unclaimed": "noonewouldeverusethis7" + "username_unclaimed": "noonewouldeverusethis7", + "tags": ["cybersec"] }, "last.fm": { "errorType": "status_code", @@ -2592,7 +2601,8 @@ "url": "https://www.livelib.ru/reader/{}", "urlMain": "https://www.livelib.ru/", "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" + "username_unclaimed": "noonewouldeverusethis7", + "tags": ["ru", "reading"] }, "mastodon.cloud": { "errorType": "status_code", @@ -2632,7 +2642,8 @@ "url": "https://www.mercadolivre.com.br/perfil/{}", "urlMain": "https://www.mercadolivre.com.br", "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" + "username_unclaimed": "noonewouldeverusethis77777", + "tags": ["br"] }, "metacritic": { "errorMsg": "User not found", @@ -2728,15 +2739,6 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, - "pedsovet": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "rank": 6776, - "url": "http://pedsovet.su/index/8-0-{}", - "urlMain": "http://pedsovet.su/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, "phpRU": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", @@ -2868,7 +2870,8 @@ "url": "https://tracr.co/users/1/{}", "urlMain": "https://tracr.co/", "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" + "username_unclaimed": "noonewouldeverusethis7", + "tags": ["gaming", "discord"] }, "travellerspoint": { "errorMsg": "Wooops. Sorry!", @@ -2887,6 +2890,24 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Proza.ru": { + "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "url": "https://www.proza.ru/avtor/{}", + "urlMain": "https://www.proza.ru/", + "username_unclaimed": "noonewouldeverusethis7", + "username_claimed": "blue", + "tags": ["ru", "writing"] + }, + "Stihi.ru": { + "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "url": "https://www.stihi.ru/avtor/{}", + "urlMain": "https://www.stihi.ru/", + "username_unclaimed": "noonewouldeverusethis7", + "username_claimed": "blue", + "tags": ["ru", "writing"] + }, "warriorforum": { "errorType": "status_code", "rank": 3524, From 5499bb389656536bf1cd1a5af997c6da211b130f Mon Sep 17 00:00:00 2001 From: soxoj <31013580+soxoj@users.noreply.github.com> Date: Mon, 13 Jul 2020 23:48:54 +0300 Subject: [PATCH 15/39] Delete CODE_OF_CONDUCT.md --- CODE_OF_CONDUCT.md | 76 ---------------------------------------------- 1 file changed, 76 deletions(-) delete mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index f54c40d51..000000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,76 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, sex characteristics, gender identity and expression, -level of experience, education, socio-economic status, nationality, personal -appearance, race, religion, or sexual identity and orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at yahya.arbabi@gmail.com. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq From bc4d502c0b37c5eb95dd07ef29281ea0c12eec77 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Fri, 17 Jul 2020 23:26:57 +0300 Subject: [PATCH 16/39] Several fixes, `skip-errors` flag, extended errors checking --- maigret/maigret.py | 9 ++++++++- maigret/notify.py | 22 ++++++++++++---------- maigret/resources/data.json | 26 +++++++++++--------------- 3 files changed, 31 insertions(+), 26 deletions(-) diff --git a/maigret/maigret.py b/maigret/maigret.py index 7d380e17d..c9bcf2a7a 100644 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -380,8 +380,10 @@ def parse_cookies(cookies_str): context=error_text) elif error_type == "message": error = net_info.get("errorMsg") + errors_set = set(error) if type(error) == list else set({error}) # Checks if the error message is in the HTML - if not error in r.text: + error_found = any([(err in r.text) for err in errors_set]) + if not error_found: result = QueryResult(username, social_network, url, @@ -541,6 +543,10 @@ def main(): action="store_true", dest="print_found_only", default=False, help="Do not output sites where the username was not found." ) + parser.add_argument("--skip-errors", + action="store_true", dest="skip_check_errors", default=False, + help="Do not print errors messages: connection, captcha, site country ban, etc." + ) parser.add_argument("--no-color", action="store_true", dest="no_color", default=False, help="Don't color terminal output" @@ -662,6 +668,7 @@ def main(): query_notify = QueryNotifyPrint(result=None, verbose=args.verbose, print_found_only=args.print_found_only, + skip_check_errors=args.skip_check_errors, color=not args.no_color) already_checked = set() diff --git a/maigret/notify.py b/maigret/notify.py index a1f11a401..392e08bb1 100644 --- a/maigret/notify.py +++ b/maigret/notify.py @@ -111,7 +111,7 @@ class QueryNotifyPrint(QueryNotify): Query notify class that prints results. """ def __init__(self, result=None, verbose=False, print_found_only=False, - color=True): + skip_check_errors=False, color=True): """Create Query Notify Print Object. Contains information about a specific method of notifying the results @@ -135,6 +135,7 @@ def __init__(self, result=None, verbose=False, print_found_only=False, super().__init__(result) self.verbose = verbose self.print_found_only = print_found_only + self.skip_check_errors = skip_check_errors self.color = color return @@ -216,15 +217,16 @@ def update(self, result): else: print(f"[-]{response_time_text} {self.result.site_name}: Not Found!") elif result.status == QueryStatus.UNKNOWN: - if self.color: - print(Style.BRIGHT + Fore.WHITE + "[" + - Fore.RED + "?" + - Fore.WHITE + "]" + - Fore.GREEN + f" {self.result.site_name}:" + - Fore.RED + f" {self.result.context}" + - Fore.YELLOW + f" ") - else: - print(f"[-] {self.result.site_name}: {self.result.context} {ids_data_text}") + if not self.skip_check_errors: + if self.color: + print(Style.BRIGHT + Fore.WHITE + "[" + + Fore.RED + "?" + + Fore.WHITE + "]" + + Fore.GREEN + f" {self.result.site_name}:" + + Fore.RED + f" {self.result.context}" + + Fore.YELLOW + f" ") + else: + print(f"[-] {self.result.site_name}: {self.result.context} {ids_data_text}") elif result.status == QueryStatus.ILLEGAL: if not self.print_found_only: msg = "Illegal Username Format For This Site!" diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 2fcf565ff..b83b040e1 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -1052,7 +1052,7 @@ "username_unclaimed": "noonewouldeverusethis7" }, "Keybase": { - "errorMsg": "them\":[null]", + "errorMsg": ["them\":[null]", "bad list value"], "errorType": "message", "rank": 56712, "tags": [ @@ -1170,15 +1170,6 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, - "MeetMe": { - "errorType": "response_url", - "errorUrl": "https://www.meetme.com/", - "rank": 23062, - "url": "https://www.meetme.com/{}", - "urlMain": "https://www.meetme.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, "Memrise": { "errorType": "response_url", "errorUrl": "https://www.memrise.com/", @@ -1860,13 +1851,13 @@ "username_unclaimed": "noonewouldeverusethis7" }, "Tinder": { - "errorMsg": "Looking for Someone?", + "errorMsg": "twitter:title\" content=\"Tinder |", "errorType": "message", "rank": 1149, "tags": [ "dating" ], - "url": "https://www.gotinder.com/@{}", + "url": "https://www.tinder.com/@{}", "urlMain": "https://tinder.com/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" @@ -1938,7 +1929,8 @@ "username_unclaimed": "noonewouldeverusethis7" }, "Twitter": { - "errorType": "status_code", + "errorMsg": "Sorry, that page doesn't exist", + "errorType": "message", "headers": { "User-Agent": "Mozilla" }, @@ -1948,7 +1940,8 @@ "global", "social" ], - "url": "https://www.twitter.com/{}", + "url": "https://twitter.com/{}", + "urlProbe": "https://mobile.twitter.com/{}", "urlMain": "https://www.twitter.com/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" @@ -2120,7 +2113,7 @@ "username_unclaimed": "noonewouldeverusethis77777" }, "Wikipedia": { - "errorMsg": "is not registered.", + "errorMsg": "is not registered", "errorType": "message", "rank": 10, "tags": [ @@ -2181,6 +2174,9 @@ "global", "ru" ], + "errors": { + "action=\"/checkcaptcha\" onsubmit": "Captcha detected, use proxy/vpn" + }, "url": "https://yandex.ru/collections/user/{}/", "urlMain": "https://yandex.ru/collections/", "username_claimed": "blue", From 0cb96f7a49f74fc4ff10225d735629bd65f531ad Mon Sep 17 00:00:00 2001 From: soxoj <31013580+soxoj@users.noreply.github.com> Date: Fri, 17 Jul 2020 23:29:18 +0300 Subject: [PATCH 17/39] Update README.md --- README.md | 82 +++++++++++++------------------------------------------ 1 file changed, 19 insertions(+), 63 deletions(-) diff --git a/README.md b/README.md index 09458bbeb..6ee05a20e 100644 --- a/README.md +++ b/README.md @@ -16,72 +16,28 @@ $ python3 -m pip install -r requirements.txt [![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.png)](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/soxoj/maigret&tutorial=README.md) -## Usage +## Demo with page parsing and recursive username search ```bash -$ python3 maigret --help -usage: maigret [-h] [--version] [--verbose] [--rank] - [--folderoutput FOLDEROUTPUT] [--output OUTPUT] [--tor] - [--unique-tor] [--csv] [--site SITE_NAME] [--proxy PROXY_URL] - [--json JSON_FILE] [--timeout TIMEOUT] [--print-found] - [--no-color] [--browse] - USERNAMES [USERNAMES ...] - -Maigret (Sherlock fork): Find Usernames Across Social Networks (Version 0.12.2) - -positional arguments: - USERNAMES One or more usernames to check with social networks. - -optional arguments: - -h, --help show this help message and exit - --version Display version information and dependencies. - --verbose, -v, -d, --debug - Display extra debugging information and metrics. - --rank, -r Present websites ordered by their Alexa.com global - rank in popularity. - --folderoutput FOLDEROUTPUT, -fo FOLDEROUTPUT - If using multiple usernames, the output of the results - will be saved to this folder. - --output OUTPUT, -o OUTPUT - If using single username, the output of the result - will be saved to this file. - --tor, -t Make requests over Tor; increases runtime; requires - Tor to be installed and in system path. - --unique-tor, -u Make requests over Tor with new Tor circuit after each - request; increases runtime; requires Tor to be - installed and in system path. - --csv Create Comma-Separated Values (CSV) File. - --site SITE_NAME Limit analysis to just the listed sites. Add multiple - options to specify more than one site. - --proxy PROXY_URL, -p PROXY_URL - Make requests over a proxy. e.g. - socks5://127.0.0.1:1080 - --json JSON_FILE, -j JSON_FILE - Load data from a JSON file or an online, valid, JSON - file. - --timeout TIMEOUT Time (in seconds) to wait for response to requests. - Default timeout of 60.0s.A longer timeout will be more - likely to get results from slow sites.On the other - hand, this may cause a long delay to gather all - results. - --print-found Do not output sites where the username was not found. - --no-color Don\'t color terminal output - --browse, -b Browse to all results on default browser. - --ids, -i Search for other usernames in website pages and make - recursive search by them. -``` - -To search for only one user: +$ python3 maigret --ids --print-found --skip-errors alexaimephotographycars + +[*] Checking username alexaimephotographycars on: +[+] 500px: https://500px.com/alexaimephotographycars +Additional ID data: uid: 26403415, username: alexaimephotographycars, name: Alex Aimé, website: www.flickr.com/photos/alexaimephotography/, facebook_page: www.instagram.com/street.reality.photography/, instagram_username: alexaimephotography, twitter_username: Alexaimephotogr +[*] Checking username alexaimephotography on: +[+] DeviantART: https://alexaimephotography.deviantart.com +[+] EyeEm: https://www.eyeem.com/u/alexaimephotography +[+] Facebook: https://www.facebook.com/alexaimephotography +[+] Instagram: https://www.instagram.com/alexaimephotography +Additional ID data: uid: 6828488620, username: alexaimephotography +[+] Pinterest: https://www.pinterest.com/alexaimephotography/ +[+] Reddit: https://www.reddit.com/user/alexaimephotography +[+] VK: https://vk.com/alexaimephotography +[+] Vimeo: https://vimeo.com/alexaimephotography +[+] We Heart It: https://weheartit.com/alexaimephotography +[*] Checking username Alexaimephotogr on: +[+] Twitter: https://twitter.com/Alexaimephotogr ``` -python3 maigret user123 -``` - -To search for more than one user: -``` -python3 maigret user1 user2 user3 -``` - -Accounts found will be stored in an individual text file with the corresponding username (e.g ```user123.txt```). ## License From 43c748bc05c59fc2cc47e435952396739f518088 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 18 Jul 2020 13:12:13 +0300 Subject: [PATCH 18/39] Telegram & Teletype added --- maigret/maigret.py | 2 +- maigret/resources/data.json | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/maigret/maigret.py b/maigret/maigret.py index c9bcf2a7a..bc4e1630e 100644 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -346,7 +346,7 @@ def parse_cookies(cookies_str): # Detect failures such as a country restriction for text, comment in failure_errors.items(): - if text in r.text: + if r and text in r.text: error_context = "Some error" error_text = comment break diff --git a/maigret/resources/data.json b/maigret/resources/data.json index b83b040e1..ed6d3cacd 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -1842,6 +1842,27 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Telegram": { + "errorMsg": "twitter:title\" content=\"Telegram: Contact", + "errorType": "message", + "tags": [ + "social" + ], + "url": "https://t.me/{}", + "urlMain": "https://t.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Teletype": { + "errorType": "status_code", + "tags": [ + "writing" + ], + "url": "https://teletype.in/@{}", + "urlMain": "https://teletype.in", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "Tellonym.me": { "errorType": "status_code", "rank": 26963, From f47bf3cf1c0a94f9ab13f2aae8f078aac4984f3c Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 18 Jul 2020 14:55:33 +0300 Subject: [PATCH 19/39] Tests fixes --- maigret/maigret.py | 2 +- maigret/notify.py | 2 +- maigret/resources/data.json | 16 ++++++++++------ maigret/tests/base.py | 6 +++--- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/maigret/maigret.py b/maigret/maigret.py index bc4e1630e..f98d750d5 100644 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -346,7 +346,7 @@ def parse_cookies(cookies_str): # Detect failures such as a country restriction for text, comment in failure_errors.items(): - if r and text in r.text: + if r.text and text in r.text: error_context = "Some error" error_text = comment break diff --git a/maigret/notify.py b/maigret/notify.py index 392e08bb1..529d211a0 100644 --- a/maigret/notify.py +++ b/maigret/notify.py @@ -34,7 +34,7 @@ def __init__(self, result=None): return - def start(self, message=None): + def start(self, message=None, id_type='username'): """Notify Start. Notify method for start of query. This method will be called before diff --git a/maigret/resources/data.json b/maigret/resources/data.json index ed6d3cacd..655a37d7f 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -445,9 +445,13 @@ "username_unclaimed": "noonewouldeverusethis" }, "CreativeMarket": { - "errorType": "response_url", - "errorUrl": "https://www.creativemarket.com/", + "errorMsg": "The page you were looking for was not found.", + "errorType": "message", + "errors": { + "/cdn-cgi/scripts/hcaptcha.challenge.js": "Captcha detected" + }, "rank": 1896, + "request_head_only": false, "url": "https://creativemarket.com/users/{}", "urlMain": "https://creativemarket.com/", "username_claimed": "blue", @@ -876,7 +880,7 @@ "username_unclaimed": "noonewouldeverusethis" }, "HackerNews": { - "errorMsg": "No such user.", + "errorMsg": "No such user", "errorType": "message", "rank": 5220, "url": "https://news.ycombinator.com/user?id={}", @@ -893,7 +897,7 @@ ], "url": "https://hackerone.com/{}", "urlMain": "https://hackerone.com/", - "username_claimed": "blue", + "username_claimed": "test", "username_unclaimed": "noonewouldeverusethis7" }, "HackerRank": { @@ -2224,7 +2228,7 @@ "type": "username", "url": "https://music.yandex.ru/users/{}/playlists", "urlMain": "https://music.yandex.ru/", - "username_claimed": "blue", + "username_claimed": "YandexMusic", "username_unclaimed": "noonewouldeverusethis77777" }, "YandexZnatoki": { @@ -2913,7 +2917,7 @@ "url": "https://www.proza.ru/avtor/{}", "urlMain": "https://www.proza.ru/", "username_unclaimed": "noonewouldeverusethis7", - "username_claimed": "blue", + "username_claimed": "gpola", "tags": ["ru", "writing"] }, "Stihi.ru": { diff --git a/maigret/tests/base.py b/maigret/tests/base.py index 190aaaaec..02c5f57a9 100644 --- a/maigret/tests/base.py +++ b/maigret/tests/base.py @@ -5,7 +5,7 @@ import os import os.path import unittest -import sherlock +import maigret from result import QueryStatus from result import QueryResult from notify import QueryNotify @@ -42,7 +42,7 @@ def setUp(self): self.site_data_all = site_data_all # Load excluded sites list, if any - excluded_sites_path = os.path.join(os.path.dirname(os.path.realpath(sherlock.__file__)), "tests/.excluded_sites") + excluded_sites_path = os.path.join(os.path.dirname(os.path.realpath(maigret.__file__)), "tests/.excluded_sites") try: with open(excluded_sites_path, "r", encoding="utf-8") as excluded_sites_file: self.excluded_sites = excluded_sites_file.read().splitlines() @@ -113,7 +113,7 @@ def username_check(self, username_list, site_list, exist_check=True): exist_result_desired = QueryStatus.AVAILABLE for username in username_list: - results = sherlock.sherlock(username, + results = maigret.sherlock(username, site_data, self.query_notify, tor=self.tor, From b7628485242b91612f9fb04f7f92907f5881bba0 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 18 Jul 2020 16:06:33 +0300 Subject: [PATCH 20/39] Yandex.Music search improved --- maigret/resources/data.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 655a37d7f..eb26495d4 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -2226,7 +2226,12 @@ "ru" ], "type": "username", + "request_head_only": false, "url": "https://music.yandex.ru/users/{}/playlists", + "urlProbe": "https://music.yandex.ru/handlers/library.jsx?owner={}", + "headers": { + "Referer": "https://music.yandex.ru/users/test/playlists" + }, "urlMain": "https://music.yandex.ru/", "username_claimed": "YandexMusic", "username_unclaimed": "noonewouldeverusethis77777" From 007b2ff359318267d25f6144cb31c5d834d35ff6 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 18 Jul 2020 16:32:28 +0300 Subject: [PATCH 21/39] Several fixes --- maigret/maigret.py | 6 +++++- maigret/resources/data.json | 7 +++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/maigret/maigret.py b/maigret/maigret.py index f98d750d5..4e288534c 100644 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -343,7 +343,6 @@ def parse_cookies(cookies_str): except: response_text = "" - # Detect failures such as a country restriction for text, comment in failure_errors.items(): if r.text and text in r.text: @@ -351,6 +350,11 @@ def parse_cookies(cookies_str): error_text = comment break + # workaround for 403 empty page + if not r is None and r.status_code == 403: + error_context = "Access denied" + error_text = "Access denied, use proxy/vpn" + # TODO: return error for captcha and some specific cases (CashMe) # make all result invalid diff --git a/maigret/resources/data.json b/maigret/resources/data.json index eb26495d4..8bee605d7 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -312,7 +312,7 @@ "CashMe": { "errorType": "status_code", "errors": { - "Cash isn't available in your country yet.": "Access denied in your country, use tor/proxy" + "Cash isn't available in your country yet.": "Access denied in your country, use proxy/vpn" }, "rank": 0, "request_head_only": false, @@ -1760,7 +1760,7 @@ "Spotify": { "errorType": "status_code", "errors": { - "Spotify is currently not available in your country.": "Access denied in your country, use tor/proxy" + "Spotify is currently not available in your country.": "Access denied in your country, use proxy/vpn" }, "rank": 87, "request_head_only": false, @@ -1848,6 +1848,7 @@ }, "Telegram": { "errorMsg": "twitter:title\" content=\"Telegram: Contact", + "regexCheck": "^[a-zA-Z0-9_]{5,}$", "errorType": "message", "tags": [ "social" @@ -2743,6 +2744,7 @@ "opennet": { "errorMsg": "\u0418\u043c\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e", "errorType": "message", + "regexCheck": "^[^-]+$", "rank": 65050, "url": "https://www.opennet.ru/~{}", "urlMain": "https://www.opennet.ru/", @@ -2816,6 +2818,7 @@ "radioskot": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", + "regexCheck": "^[^-]+$", "rank": 105878, "url": "https://radioskot.ru/index/8-0-{}", "urlMain": "https://radioskot.ru/", From 3f2dff0133b9598c5cd4af176f9640d9893cf8bf Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 18 Jul 2020 19:14:08 +0300 Subject: [PATCH 22/39] Site list script update --- maigret/resources/data.json | 6609 +++++++++++++++++++---------------- site_list.py | 97 +- sites.md | 616 ++-- 3 files changed, 4016 insertions(+), 3306 deletions(-) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 8bee605d7..3ad8924a2 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -1,2965 +1,3648 @@ { - "2Dimensions": { - "errorType": "status_code", - "rank": 664639, - "url": "https://2Dimensions.com/a/{}", - "urlMain": "https://2Dimensions.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "3dnews": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "errorType": "message", - "rank": 10569, - "url": "http://forum.3dnews.ru/member.php?username={}", - "urlMain": "http://forum.3dnews.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "4pda": { - "errorMsg": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.", - "errorType": "message", - "rank": 2814, - "url": "https://4pda.ru/forum/index.php?act=search&source=pst&noform=1&username={}", - "urlMain": "https://4pda.ru/", - "username_claimed": "green", - "username_unclaimed": "noonewouldeverusethis7" - }, - "500px": { - "errorMsg": "Oops! This page doesn\u2019t exist.", - "errorType": "message", - "rank": 3453, - "tags": [ - "images" - ], - "url": "https://500px.com/{}", - "urlMain": "https://500px.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "7Cups": { - "errorType": "status_code", - "rank": 51294, - "url": "https://www.7cups.com/@{}", - "urlMain": "https://www.7cups.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "About.me": { - "errorType": "status_code", - "rank": 11447, - "tags": [ - "social" - ], - "url": "https://about.me/{}", - "urlMain": "https://about.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Academia.edu": { - "errorType": "status_code", - "rank": 218, - "url": "https://independent.academia.edu/{}", - "urlMain": "https://www.academia.edu/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Alik.cz": { - "errorType": "status_code", - "rank": 845452, - "url": "https://www.alik.cz/u/{}", - "urlMain": "https://www.alik.cz/", - "username_claimed": "julian", - "username_unclaimed": "noonewouldeverusethis" - }, - "AllTrails": { - "errorMsg": "User could not be found.", - "errorType": "message", - "rank": 8256, - "url": "https://www.alltrails.com/members/{}", - "urlMain": "https://www.alltrails.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Anobii": { - "errorType": "response_url", - "rank": 43870, - "tags": [ - "books" - ], - "url": "https://www.anobii.com/{}/profile", - "urlMain": "https://www.anobii.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Aptoide": { - "errorType": "status_code", - "rank": 5114, - "url": "https://{}.en.aptoide.com/", - "urlMain": "https://en.aptoide.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Archive.org": { - "errorMsg": "cannot find account", - "errorType": "message", - "rank": 196, - "url": "https://archive.org/details/@{}", - "urlMain": "https://archive.org", - "username_claimed": "blue", - "username_unclaimed": "noonewould" - }, - "Asciinema": { - "errorType": "status_code", - "rank": 77227, - "url": "https://asciinema.org/~{}", - "urlMain": "https://asciinema.org", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Ask Fedora": { - "errorType": "status_code", - "rank": 27465, - "url": "https://ask.fedoraproject.org/u/{}", - "urlMain": "https://ask.fedoraproject.org/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "AskFM": { - "errorMsg": "Well, apparently not anymore.", - "errorType": "message", - "rank": 2888, - "regexCheck": "^[a-zA-Z0-9_]{3,40}$", - "url": "https://ask.fm/{}", - "urlMain": "https://ask.fm/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Audiojungle": { - "errorType": "status_code", - "rank": 5604, - "url": "https://audiojungle.net/user/{}", - "urlMain": "https://audiojungle.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Avizo": { - "errorType": "response_url", - "errorUrl": "https://www.avizo.cz/", - "rank": 507599, - "url": "https://www.avizo.cz/{}/", - "urlMain": "https://www.avizo.cz/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "BLIP.fm": { - "errorType": "status_code", - "rank": 145919, - "tags": [ - "music" - ], - "url": "https://blip.fm/{}", - "urlMain": "https://blip.fm/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BOOTH": { - "errorType": "response_url", - "errorUrl": "https://booth.pm/", - "rank": 7165, - "url": "https://{}.booth.pm/", - "urlMain": "https://booth.pm/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Badoo": { - "errorType": "status_code", - "rank": 2111, - "tags": [ - "social" - ], - "url": "https://badoo.com/profile/{}", - "urlMain": "https://badoo.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Bandcamp": { - "errorType": "status_code", - "rank": 1090, - "tags": [ - "music" - ], - "url": "https://www.bandcamp.com/{}", - "urlMain": "https://www.bandcamp.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Bazar.cz": { - "errorType": "response_url", - "errorUrl": "https://www.bazar.cz/error404.aspx", - "rank": 708771, - "url": "https://www.bazar.cz/{}/", - "urlMain": "https://www.bazar.cz/", - "username_claimed": "pianina", - "username_unclaimed": "noonewouldeverusethis" - }, - "Behance": { - "errorType": "status_code", - "rank": 324, - "tags": [ - "business" - ], - "headers": { - "User-Agent": "Curl" - }, - "url": "https://www.behance.net/{}", - "urlMain": "https://www.behance.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BitBucket": { - "errorType": "status_code", - "rank": 2831, - "tags": [ - "coding" - ], - "url": "https://bitbucket.org/{}/", - "urlMain": "https://bitbucket.org/", - "username_claimed": "white", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BitCoinForum": { - "errorMsg": "The user whose profile you are trying to view does not exist.", - "errorType": "message", - "rank": 164864, - "url": "https://bitcoinforum.com/profile/{}", - "urlMain": "https://bitcoinforum.com", - "username_claimed": "bitcoinforum.com", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Blogger": { - "errorType": "status_code", - "rank": 289, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.blogspot.com", - "urlMain": "https://www.blogger.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BodyBuilding": { - "errorType": "response_url", - "errorUrl": "https://bodyspace.bodybuilding.com/", - "rank": 2925, - "url": "https://bodyspace.bodybuilding.com/{}", - "urlMain": "https://bodyspace.bodybuilding.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Bookcrossing": { - "errorType": "status_code", - "rank": 54059, - "url": "https://www.bookcrossing.com/mybookshelf/{}/", - "urlMain": "https://www.bookcrossing.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "BuyMeACoffee": { - "errorType": "status_code", - "rank": 13282, - "url": "https://buymeacoff.ee/{}", - "urlMain": "https://www.buymeacoffee.com/", - "urlProbe": "https://www.buymeacoffee.com/{}", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "BuzzFeed": { - "errorType": "status_code", - "rank": 402, - "tags": [ - "social" - ], - "url": "https://buzzfeed.com/{}", - "urlMain": "https://buzzfeed.com/", - "username_claimed": "blue", - "username_unclaimed": "xgtrq" - }, - "CNET": { - "errorType": "status_code", - "rank": 147, - "url": "https://www.cnet.com/profiles/{}/", - "urlMain": "https://www.cnet.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Carbonmade": { - "errorType": "response_url", - "errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com", - "rank": 26142, - "url": "https://{}.carbonmade.com", - "urlMain": "https://carbonmade.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Career.habr": { - "errorMsg": "

\u041e\u0448\u0438\u0431\u043a\u0430 404

", - "errorType": "message", - "rank": 1337, - "url": "https://career.habr.com/{}", - "urlMain": "https://career.habr.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "CashMe": { - "errorType": "status_code", - "errors": { - "Cash isn't available in your country yet.": "Access denied in your country, use proxy/vpn" - }, - "rank": 0, - "request_head_only": false, - "url": "https://cash.me/${}", - "urlMain": "https://cash.me/", - "username_claimed": "Jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Cent": { - "errorMsg": "Cent", - "errorType": "message", - "rank": 118892, - "url": "https://beta.cent.co/@{}", - "urlMain": "https://cent.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Championat": { - "errorType": "status_code", - "rank": 1945, - "url": "https://www.championat.com/user/{}", - "urlMain": "https://www.championat.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Chatujme.cz": { - "errorMsg": "Neexistujic\u00ed profil", - "errorType": "message", - "rank": 9812219, - "url": "https://profil.chatujme.cz/{}", - "urlMain": "https://chatujme.cz/", - "username_claimed": "david", - "username_unclaimed": "noonewouldeverusethis" - }, - "Chess": { - "errorMsg": "Missing page... somebody made a wrong move.", - "errorType": "message", - "rank": 590, - "url": "https://www.chess.com/ru/member/{}", - "urlMain": "https://www.chess.com/ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Cloob": { - "errorType": "status_code", - "rank": 10574, - "url": "https://www.cloob.com/name/{}", - "urlMain": "https://www.cloob.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "CloudflareCommunity": { - "errorType": "status_code", - "rank": 1469, - "url": "https://community.cloudflare.com/u/{}", - "urlMain": "https://community.cloudflare.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Clozemaster": { - "errorType": "status_code", - "rank": 66473, - "url": "https://www.clozemaster.com/players/{}", - "urlMain": "https://www.clozemaster.com", - "username_claimed": "green", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Codecademy": { - "errorType": "status_code", - "rank": 1883, - "tags": [ - "education" - ], - "url": "https://www.codecademy.com/profiles/{}", - "urlMain": "https://www.codecademy.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Codechef": { - "errorType": "response_url", - "errorUrl": "https://www.codechef.com/", - "rank": 9625, - "url": "https://www.codechef.com/users/{}", - "urlMain": "https://www.codechef.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Coderwall": { - "errorMsg": "404! Our feels when that url is used", - "errorType": "message", - "rank": 11256, - "url": "https://coderwall.com/{}", - "urlMain": "https://coderwall.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Codewars": { - "errorType": "status_code", - "rank": 19606, - "url": "https://www.codewars.com/users/{}", - "urlMain": "https://www.codewars.com", - "username_claimed": "example", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Contently": { - "errorMsg": "We can't find that page!", - "errorType": "message", - "rank": 13782, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.contently.com/", - "urlMain": "https://contently.com/", - "username_claimed": "jordanteicher", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Coroflot": { - "errorType": "status_code", - "rank": 40597, - "url": "https://www.coroflot.com/{}", - "urlMain": "https://coroflot.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Cracked": { - "errorType": "response_url", - "errorUrl": "https://www.cracked.com/", - "rank": 4551, - "url": "https://www.cracked.com/members/{}/", - "urlMain": "https://www.cracked.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "CreativeMarket": { - "errorMsg": "The page you were looking for was not found.", - "errorType": "message", - "errors": { - "/cdn-cgi/scripts/hcaptcha.challenge.js": "Captcha detected" - }, - "rank": 1896, - "request_head_only": false, - "url": "https://creativemarket.com/users/{}", - "urlMain": "https://creativemarket.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Crevado": { - "errorType": "status_code", - "rank": 200626, - "url": "https://{}.crevado.com", - "urlMain": "https://crevado.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Crunchyroll": { - "errorType": "status_code", - "rank": 545, - "url": "https://www.crunchyroll.com/user/{}", - "urlMain": "https://www.crunchyroll.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "DEV Community": { - "errorType": "status_code", - "rank": 7362, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://dev.to/{}", - "urlMain": "https://dev.to/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "DailyMotion": { - "errorType": "status_code", - "rank": 207, - "tags": [ - "video" - ], - "url": "https://www.dailymotion.com/{}", - "urlMain": "https://www.dailymotion.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Designspiration": { - "errorType": "status_code", - "rank": 5627019, - "url": "https://www.designspiration.net/{}/", - "urlMain": "https://www.designspiration.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "DeviantART": { - "errorType": "status_code", - "rank": 529, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "tags": [ - "images" - ], - "url": "https://{}.deviantart.com", - "urlMain": "https://deviantart.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Discogs": { - "errorType": "status_code", - "rank": 1056, - "url": "https://www.discogs.com/user/{}", - "urlMain": "https://www.discogs.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Discuss.Elastic.co": { - "errorType": "status_code", - "rank": 6815, - "tags": [ - "tech" - ], - "url": "https://discuss.elastic.co/u/{}", - "urlMain": "https://discuss.elastic.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Disqus": { - "errorType": "status_code", - "rank": 1078, - "tags": [ - "global", - "discussion" - ], - "url": "https://disqus.com/{}", - "urlMain": "https://disqus.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Docker Hub": { - "errorType": "status_code", - "rank": 3310, - "url": "https://hub.docker.com/u/{}/", - "urlMain": "https://hub.docker.com/", - "urlProbe": "https://hub.docker.com/v2/users/{}/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Dribbble": { - "errorMsg": "Whoops, that page is gone.", - "errorType": "message", - "rank": 1163, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "tags": [ - "business" - ], - "url": "https://dribbble.com/{}", - "urlMain": "https://dribbble.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Duolingo": { - "errorMsg": "{\"users\":[]}", - "errorType": "message", - "rank": 397, - "url": "https://www.duolingo.com/profile/{}", - "urlMain": "https://duolingo.com/", - "urlProbe": "https://www.duolingo.com/2017-06-30/users?username={}", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Ebay": { - "errorMsg": "

", - "errorType": "message", - "rank": 56, - "tags": [ - "shopping" - ], - "url": "https://www.ebay.com/usr/{}", - "urlMain": "https://www.ebay.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Ello": { - "errorMsg": "We couldn't find the page you're looking for", - "errorType": "message", - "rank": 50193, - "url": "https://ello.co/{}", - "urlMain": "https://ello.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Etsy": { - "errorType": "status_code", - "rank": 161, - "tags": [ - "shopping" - ], - "url": "https://www.etsy.com/shop/{}", - "urlMain": "https://www.etsy.com/", - "username_claimed": "JennyKrafts", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Euw": { - "errorMsg": "This summoner is not registered at OP.GG. Please check spelling.", - "errorType": "message", - "rank": 291, - "url": "https://euw.op.gg/summoner/userName={}", - "urlMain": "https://euw.op.gg/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "EyeEm": { - "errorType": "response_url", - "errorUrl": "https://www.eyeem.com/", - "rank": 38664, - "url": "https://www.eyeem.com/u/{}", - "urlMain": "https://www.eyeem.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "F3.cool": { - "errorType": "status_code", - "rank": 54043, - "url": "https://f3.cool/{}/", - "urlMain": "https://f3.cool/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Facebook": { - "errorType": "status_code", - "rank": 7, - "regexCheck": "^[a-zA-Z0-9\\.]{3,49}(?", - "errorType": "message", - "rank": 1337, - "url": "https://freelance.habr.com/freelancers/{}", - "urlMain": "https://freelance.habr.com/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Freelancer.com": { - "errorMsg": "\"users\":{}", - "errorType": "message", - "rank": 576, - "url": "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={}&compact=true", - "urlMain": "https://www.freelancer.com/", - "username_claimed": "red0xff", - "username_unclaimed": "noonewouldeverusethis" - }, - "Freesound": { - "errorType": "status_code", - "rank": 6938, - "tags": [ - "music" - ], - "url": "https://freesound.org/people/{}/", - "urlMain": "https://freesound.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "GDProfiles": { - "errorType": "status_code", - "rank": 1610005, - "url": "https://gdprofiles.com/{}", - "urlMain": "https://gdprofiles.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Gamespot": { - "errorType": "status_code", - "rank": 519, - "tags": [ - "gaming" - ], - "url": "https://www.gamespot.com/profile/{}/", - "urlMain": "https://www.gamespot.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Giphy": { - "errorType": "status_code", - "rank": 580, - "tags": [ - "social" - ], - "url": "https://giphy.com/{}", - "urlMain": "https://giphy.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GitHub": { - "errorType": "status_code", - "rank": 81, - "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", - "tags": [ - "coding" - ], - "url": "https://www.github.com/{}", - "urlMain": "https://www.github.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GitLab": { - "errorMsg": "[]", - "errorType": "message", - "rank": 3707, - "tags": [ - "coding" - ], - "url": "https://gitlab.com/{}", - "urlMain": "https://gitlab.com/", - "urlProbe": "https://gitlab.com/api/v4/users?username={}", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Gitee": { - "errorType": "status_code", - "rank": 5518, - "url": "https://gitee.com/{}", - "urlMain": "https://gitee.com/", - "username_claimed": "wizzer", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GoodReads": { - "errorType": "status_code", - "rank": 326, - "tags": [ - "books" - ], - "url": "https://www.goodreads.com/{}", - "urlMain": "https://www.goodreads.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Gravatar": { - "errorType": "status_code", - "rank": 5492, - "tags": [ - "images" - ], - "url": "http://en.gravatar.com/{}", - "urlMain": "http://en.gravatar.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Gumroad": { - "errorMsg": "Page not found.", - "errorType": "message", - "rank": 4049, - "url": "https://www.gumroad.com/{}", - "urlMain": "https://www.gumroad.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GunsAndAmmo": { - "errorType": "status_code", - "rank": 160298, - "url": "https://forums.gunsandammo.com/profile/{}", - "urlMain": "https://gunsandammo.com/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GuruShots": { - "errorType": "status_code", - "rank": 17413, - "url": "https://gurushots.com/{}/photos", - "urlMain": "https://gurushots.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "HackTheBox": { - "errorType": "status_code", - "rank": 44381, - "url": "https://forum.hackthebox.eu/profile/{}", - "urlMain": "https://forum.hackthebox.eu/", - "username_claimed": "angar", - "username_unclaimed": "noonewouldeverusethis" - }, - "HackerNews": { - "errorMsg": "No such user", - "errorType": "message", - "rank": 5220, - "url": "https://news.ycombinator.com/user?id={}", - "urlMain": "https://news.ycombinator.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "HackerOne": { - "errorMsg": "Page not found", - "errorType": "message", - "rank": 24074, - "tags": [ - "hacker" - ], - "url": "https://hackerone.com/{}", - "urlMain": "https://hackerone.com/", - "username_claimed": "test", - "username_unclaimed": "noonewouldeverusethis7" - }, - "HackerRank": { - "errorMsg": "Something went wrong", - "errorType": "message", - "rank": 3044, - "url": "https://hackerrank.com/{}", - "urlMain": "https://hackerrank.com/", - "username_claimed": "satznova", - "username_unclaimed": "noonewouldeverusethis7" - }, - "House-Mixes.com": { - "errorMsg": "Profile Not Found", - "errorType": "message", - "rank": 979956, - "regexCheck": "^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$", - "url": "https://www.house-mixes.com/profile/{}", - "urlMain": "https://www.house-mixes.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Houzz": { - "errorMsg": "The page you requested was not found.", - "errorType": "message", - "rank": 1833, - "url": "https://houzz.com/user/{}", - "urlMain": "https://houzz.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "HubPages": { - "errorType": "status_code", - "rank": 3739, - "tags": [ - "blog" - ], - "url": "https://hubpages.com/@{}", - "urlMain": "https://hubpages.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Hubski": { - "errorMsg": "No such user", - "errorType": "message", - "rank": 199033, - "url": "https://hubski.com/user/{}", - "urlMain": "https://hubski.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "IFTTT": { - "errorMsg": "The requested page or file does not exist", - "errorType": "message", - "rank": 9039, - "regexCheck": "^[A-Za-z0-9]{3,35}$", - "tags": [ - "misc" - ], - "url": "https://www.ifttt.com/p/{}", - "urlMain": "https://www.ifttt.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ImageShack": { - "errorType": "response_url", - "errorUrl": "https://imageshack.com/", - "rank": 42021, - "tags": [ - "images" - ], - "url": "https://imageshack.com/user/{}", - "urlMain": "https://imageshack.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ImgUp.cz": { - "errorType": "status_code", - "rank": 2727868, - "url": "https://imgup.cz/{}", - "urlMain": "https://imgup.cz/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis" - }, - "Instagram": { - "errorType": "status_code", - "rank": 35, - "request_head_only": false, - "tags": [ - "social" - ], - "url": "https://www.instagram.com/{}", - "urlMain": "https://www.instagram.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Instructables": { - "errorMsg": "404: We're sorry, things break sometimes", - "errorType": "message", - "rank": 1165, - "tags": [ - "hobby" - ], - "url": "https://www.instructables.com/member/{}", - "urlMain": "https://www.instructables.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Issuu": { - "errorType": "status_code", - "rank": 543, - "url": "https://issuu.com/{}", - "urlMain": "https://issuu.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Itch.io": { - "errorType": "status_code", - "rank": 2210, - "url": "https://{}.itch.io/", - "urlMain": "https://itch.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Jimdo": { - "errorType": "status_code", - "noPeriod": "True", - "rank": 27580, - "url": "https://{}.jimdosite.com", - "urlMain": "https://jimdosite.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Kaggle": { - "errorType": "status_code", - "rank": 2648, - "url": "https://www.kaggle.com/{}", - "urlMain": "https://www.kaggle.com/", - "username_claimed": "dansbecker", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Kali community": { - "errorMsg": "This user has not registered and therefore does not have a profile to view.", - "errorType": "message", - "rank": 7440, - "url": "https://forums.kali.org/member.php?username={}", - "urlMain": "https://forums.kali.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "KanoWorld": { - "errorType": "status_code", - "rank": 181933, - "url": "https://api.kano.me/progress/user/{}", - "urlMain": "https://world.kano.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Keybase": { - "errorMsg": ["them\":[null]", "bad list value"], - "errorType": "message", - "rank": 56712, - "tags": [ - "business" - ], - "url": "https://keybase.io/{}", - "urlProbe": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={}", - "urlMain": "https://keybase.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Kik": { - "errorMsg": "The page you requested was not found", - "errorType": "message", - "rank": 565825, - "url": "https://ws2.kik.com/user/{}", - "urlMain": "http://kik.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Kongregate": { - "errorMsg": "Sorry, no account with that name was found.", - "errorType": "message", - "rank": 2732, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "tags": [ - "gaming" - ], - "url": "https://www.kongregate.com/accounts/{}", - "urlMain": "https://www.kongregate.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "LOR": { - "errorType": "status_code", - "rank": 38696, - "url": "https://www.linux.org.ru/people/{}/profile", - "urlMain": "https://linux.org.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Launchpad": { - "errorType": "status_code", - "rank": 9993, - "url": "https://launchpad.net/~{}", - "urlMain": "https://launchpad.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "LeetCode": { - "errorType": "status_code", - "rank": 2895, - "url": "https://leetcode.com/{}", - "urlMain": "https://leetcode.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Letterboxd": { - "errorMsg": "Sorry, we can\u2019t find the page you\u2019ve requested.", - "errorType": "message", - "rank": 4053, - "url": "https://letterboxd.com/{}", - "urlMain": "https://letterboxd.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Lichess": { - "errorMsg": "Page not found!", - "errorType": "message", - "rank": 2163, - "url": "https://lichess.org/@/{}", - "urlMain": "https://lichess.org", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "LiveJournal": { - "errorType": "status_code", - "rank": 430, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "tags": [ - "blog" - ], - "url": "https://{}.livejournal.com", - "urlMain": "https://www.livejournal.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Lobsters": { - "errorType": "status_code", - "rank": 152798, - "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", - "url": "https://lobste.rs/u/{}", - "urlMain": "https://lobste.rs/", - "username_claimed": "jcs", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Lolchess": { - "errorMsg": "No search results", - "errorType": "message", - "rank": 3195, - "url": "https://lolchess.gg/profile/na/{}", - "urlMain": "https://lolchess.gg/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Medium": { - "errorMsg": "We couldn\u2019t find this page.", - "errorType": "message", - "rank": 72, - "tags": [ - "news" - ], - "url": "https://medium.com/@{}", - "urlMain": "https://medium.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Memrise": { - "errorType": "response_url", - "errorUrl": "https://www.memrise.com/", - "rank": 4813, - "url": "https://www.memrise.com/user/{}/", - "urlMain": "https://www.memrise.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "MixCloud": { - "errorType": "status_code", - "rank": 2403, - "tags": [ - "music" - ], - "url": "https://www.mixcloud.com/{}/", - "urlMain": "https://www.mixcloud.com/", - "urlProbe": "https://api.mixcloud.com/{}/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "MyAnimeList": { - "errorType": "status_code", - "rank": 957, - "tags": [ - "movies" - ], - "url": "https://myanimelist.net/profile/{}", - "urlMain": "https://myanimelist.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Myspace": { - "errorType": "status_code", - "rank": 2540, - "tags": [ - "social" - ], - "url": "https://myspace.com/{}", - "urlMain": "https://myspace.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "NICommunityForum": { - "errorMsg": "The specified member cannot be found", - "errorType": "message", - "rank": 6996, - "url": "https://www.native-instruments.com/forum/members?username={}", - "urlMain": "https://www.native-instruments.com/forum/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "NPM": { - "errorType": "status_code", - "rank": 5926, - "url": "https://www.npmjs.com/~{}", - "urlMain": "https://www.npmjs.com/", - "username_claimed": "kennethsweezy", - "username_unclaimed": "noonewould" - }, - "NPM-Package": { - "errorType": "status_code", - "rank": 5926, - "url": "https://www.npmjs.com/package/{}", - "urlMain": "https://www.npmjs.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "NameMC (Minecraft.net skins)": { - "errorMsg": "Profiles: 0 results", - "errorType": "message", - "rank": 7282, - "url": "https://namemc.com/profile/{}", - "urlMain": "https://namemc.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "NationStates Nation": { - "errorMsg": "Was this your nation? It may have ceased to exist due to inactivity, but can rise again!", - "errorType": "message", - "rank": 48529, - "url": "https://nationstates.net/nation={}", - "urlMain": "https://nationstates.net", - "username_claimed": "the_holy_principality_of_saint_mark", - "username_unclaimed": "noonewould" - }, - "NationStates Region": { - "errorMsg": "does not exist.", - "errorType": "message", - "rank": 48529, - "url": "https://nationstates.net/region={}", - "urlMain": "https://nationstates.net", - "username_claimed": "the_west_pacific", - "username_unclaimed": "noonewould" - }, - "Newgrounds": { - "errorType": "status_code", - "rank": 6797, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.newgrounds.com", - "urlMain": "https://newgrounds.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "OK": { - "errorType": "status_code", - "rank": 63, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$", - "url": "https://ok.ru/{}", - "urlMain": "https://ok.ru/", - "username_claimed": "ok", - "username_unclaimed": "noonewouldeverusethis7" - }, - "OpenCollective": { - "errorType": "status_code", - "rank": 39473, - "url": "https://opencollective.com/{}", - "urlMain": "https://opencollective.com/", - "username_claimed": "sindresorhus", - "username_unclaimed": "noonewouldeverusethis7" - }, - "OpenStreetMap": { - "errorType": "status_code", - "rank": 8544, - "tags": [ - "social" - ], - "url": "https://www.openstreetmap.org/user/{}", - "urlMain": "https://www.openstreetmap.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Oracle Community": { - "errorType": "status_code", - "rank": 587, - "url": "https://community.oracle.com/people/{}", - "urlMain": "https://community.oracle.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Otzovik": { - "errorType": "status_code", - "rank": 2058, - "url": "https://otzovik.com/profile/{}", - "urlMain": "https://otzovik.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "OurDJTalk": { - "errorMsg": "The specified member cannot be found", - "errorType": "message", - "rank": 2697698, - "url": "https://ourdjtalk.com/members?username={}", - "urlMain": "https://ourdjtalk.com/", - "username_claimed": "steve", - "username_unclaimed": "noonewouldeverusethis" - }, - "PCGamer": { - "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", - "errorType": "message", - "rank": 973, - "url": "https://forums.pcgamer.com/members/?username={}", - "urlMain": "https://pcgamer.com", - "username_claimed": "admin", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PCPartPicker": { - "errorType": "status_code", - "rank": 2471, - "url": "https://pcpartpicker.com/user/{}", - "urlMain": "https://pcpartpicker.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PSNProfiles.com": { - "errorType": "response_url", - "errorUrl": "https://psnprofiles.com/?psnId={}", - "rank": 11533, - "url": "https://psnprofiles.com/{}", - "urlMain": "https://psnprofiles.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Packagist": { - "errorType": "response_url", - "errorUrl": "https://packagist.org/search/?q={}&reason=vendor_not_found", - "rank": 19371, - "url": "https://packagist.org/packages/{}/", - "urlMain": "https://packagist.org/", - "username_claimed": "psr", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pastebin": { - "errorType": "response_url", - "errorUrl": "https://pastebin.com/index", - "rank": 1221, - "tags": [ - "sharing" - ], - "url": "https://pastebin.com/u/{}", - "urlMain": "https://pastebin.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Patreon": { - "errorType": "status_code", - "rank": 374, - "tags": [ - "finance" - ], - "url": "https://www.patreon.com/{}", - "urlMain": "https://www.patreon.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Periscope": { - "errorType": "status_code", - "rank": 27375, - "tags": [ - "video" - ], - "url": "https://www.periscope.tv/{}/", - "urlMain": "https://www.periscope.tv/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Photobucket": { - "errorType": "status_code", - "rank": 3893, - "tags": [ - "images" - ], - "url": "https://photobucket.com/user/{}/library", - "urlMain": "https://photobucket.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pinkbike": { - "errorType": "status_code", - "rank": 9280, - "tags": [ - "hobby" - ], - "url": "https://www.pinkbike.com/u/{}/", - "urlMain": "https://www.pinkbike.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pinterest": { - "errorType": "status_code", - "rank": 172, - "tags": [ - "social" - ], - "url": "https://www.pinterest.com/{}/", - "urlMain": "https://www.pinterest.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PlayStore": { - "errorType": "status_code", - "rank": 1, - "url": "https://play.google.com/store/apps/developer?id={}", - "urlMain": "https://play.google.com/store", - "username_claimed": "Facebook", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pling": { - "errorType": "response_url", - "errorUrl": "https://www.pling.com/", - "rank": 114656, - "url": "https://www.pling.com/u/{}/", - "urlMain": "https://www.pling.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Plug.DJ": { - "errorType": "status_code", - "rank": 40338, - "url": "https://plug.dj/@/{}", - "urlMain": "https://plug.dj/", - "username_claimed": "plug-dj-rock", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Pokemon Showdown": { - "errorType": "status_code", - "rank": 5323, - "url": "https://pokemonshowdown.com/users/{}", - "urlMain": "https://pokemonshowdown.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PokerStrategy": { - "errorType": "status_code", - "rank": 3558413, - "url": "http://www.pokerstrategy.net/user/{}/profile/", - "urlMain": "http://www.pokerstrategy.net", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Polygon": { - "errorType": "status_code", - "rank": 1151, - "url": "https://www.polygon.com/users/{}", - "urlMain": "https://www.polygon.com/", - "username_claimed": "swiftstickler", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ProductHunt": { - "errorMsg": "Product Hunt is a curation of the best new products", - "errorType": "message", - "rank": 10865, - "tags": [ - "tech" - ], - "url": "https://www.producthunt.com/@{}", - "urlMain": "https://www.producthunt.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "PromoDJ": { - "errorType": "status_code", - "rank": 34124, - "url": "http://promodj.com/{}", - "urlMain": "http://promodj.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Quora": { - "errorType": "response_url", - "errorUrl": "https://www.quora.com/profile/{}", - "rank": 221, - "url": "https://www.quora.com/profile/{}", - "urlMain": "https://www.quora.com/", - "username_claimed": "Matt-Riggsby", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Rajce.net": { - "errorType": "status_code", - "rank": 1656, - "url": "https://{}.rajce.idnes.cz/", - "urlMain": "https://www.rajce.idnes.cz/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Rate Your Music": { - "errorType": "status_code", - "rank": 5239, - "url": "https://rateyourmusic.com/~{}", - "urlMain": "https://rateyourmusic.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Realmeye": { - "errorMsg": "Sorry, but we either:", - "errorType": "message", - "rank": 25898, - "url": "https://www.realmeye.com/player/{}", - "urlMain": "https://www.realmeye.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Redbubble": { - "errorType": "status_code", - "rank": 1367, - "url": "https://www.redbubble.com/people/{}", - "urlMain": "https://www.redbubble.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "Reddit": { - "errorType": "status_code", - "rank": 19, - "tags": [ - "news" - ], - "url": "https://www.reddit.com/user/{}", - "urlMain": "https://www.reddit.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Repl.it": { - "errorMsg": "404", - "errorType": "message", - "rank": 3343, - "tags": [ - "coding" - ], - "url": "https://repl.it/@{}", - "urlMain": "https://repl.it/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ResearchGate": { - "errorType": "response_url", - "errorUrl": "https://www.researchgate.net/directory/profiles", - "rank": 138, - "regexCheck": "\\w+_\\w+", - "url": "https://www.researchgate.net/profile/{}", - "urlMain": "https://www.researchgate.net/", - "username_claimed": "John_Smith", - "username_unclaimed": "noonewould_everusethis7" - }, - "ReverbNation": { - "errorMsg": "Sorry, we couldn't find that page", - "errorType": "message", - "rank": 9539, - "url": "https://www.reverbnation.com/{}", - "urlMain": "https://www.reverbnation.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Roblox": { - "errorMsg": "Page cannot be found or no longer exists", - "errorType": "message", - "rank": 124, - "url": "https://www.roblox.com/user.aspx?username={}", - "urlMain": "https://www.roblox.com/", - "username_claimed": "bluewolfekiller", - "username_unclaimed": "noonewouldeverusethis7" - }, - "RubyGems": { - "errorType": "status_code", - "rank": 38430, - "url": "https://rubygems.org/profiles/{}", - "urlMain": "https://rubygems.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Samlib": { - "errorType": "status_code", - "url": "http://samlib.ru/e/{}", - "urlMain": "http://samlib.ru/", - "username_claimed": "e_melokumow", - "caseSentitive": true, - "username_unclaimed": "noonewouldeverusethis", - "tags": ["ru", "writing"] - }, - "Sbazar.cz": { - "errorType": "status_code", - "rank": 16505, - "url": "https://www.sbazar.cz/{}", - "urlMain": "https://www.sbazar.cz/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Scratch": { - "errorType": "status_code", - "rank": 440, - "tags": [ - "coding" - ], - "url": "https://scratch.mit.edu/users/{}", - "urlMain": "https://scratch.mit.edu/", - "username_claimed": "griffpatch", - "username_unclaimed": "noonewould" - }, - "Scribd": { - "errorMsg": "Page not found", - "errorType": "message", - "rank": 234, - "tags": [ - "coding" - ], - "url": "https://www.scribd.com/{}", - "urlMain": "https://www.scribd.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "ShitpostBot5000": { - "errorType": "status_code", - "rank": 580064, - "url": "https://www.shitpostbot.com/user/{}", - "urlMain": "https://www.shitpostbot.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "Signal": { - "errorMsg": "Oops! That page doesn\u2019t exist or is private.", - "errorType": "message", - "rank": 918113, - "url": "https://community.signalusers.org/u/{}", - "urlMain": "https://community.signalusers.org", - "username_claimed": "jlund", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Slack": { - "errorType": "status_code", - "rank": 285, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "url": "https://{}.slack.com", - "urlMain": "https://slack.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SlideShare": { - "errorType": "status_code", - "rank": 127, - "tags": [ - "presos" - ], - "url": "https://slideshare.net/{}", - "urlMain": "https://slideshare.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Smashcast": { - "errorType": "status_code", - "rank": 192503, - "url": "https://www.smashcast.tv/api/media/live/{}", - "urlMain": "https://www.smashcast.tv/", - "username_claimed": "hello", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Smule": { - "errorType": "status_code", - "rank": 7785, - "tags": [ - "music" - ], - "url": "https://www.smule.com/{}", - "urlMain": "https://www.smule.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SoundCloud": { - "errorType": "status_code", - "rank": 96, - "tags": [ - "music" - ], - "url": "https://soundcloud.com/{}", - "urlMain": "https://soundcloud.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SourceForge": { - "errorType": "status_code", - "rank": 405, - "tags": [ - "coding" - ], - "url": "https://sourceforge.net/u/{}", - "urlMain": "https://sourceforge.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Speedrun.com": { - "errorMsg": "not found.", - "errorType": "message", - "rank": 10864, - "url": "https://speedrun.com/user/{}", - "urlMain": "https://speedrun.com/", - "username_claimed": "3Tau", - "username_unclaimed": "noonewould" - }, - "Splits.io": { - "errorType": "status_code", - "rank": 655157, - "url": "https://splits.io/users/{}", - "urlMain": "https://splits.io", - "username_claimed": "cambosteve", - "username_unclaimed": "noonewould" - }, - "Sporcle": { - "errorType": "status_code", - "rank": 3128, - "tags": [ - "gaming" - ], - "url": "https://www.sporcle.com/user/{}/people", - "urlMain": "https://www.sporcle.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SportsRU": { - "errorType": "status_code", - "rank": 2936, - "url": "https://www.sports.ru/profile/{}/", - "urlMain": "https://www.sports.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Spotify": { - "errorType": "status_code", - "errors": { - "Spotify is currently not available in your country.": "Access denied in your country, use proxy/vpn" - }, - "rank": 87, - "request_head_only": false, - "tags": [ - "music" - ], - "url": "https://open.spotify.com/user/{}", - "urlMain": "https://open.spotify.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Star Citizen": { - "errorType": "status_code", - "rank": 7927, - "url": "https://robertsspaceindustries.com/citizens/{}", - "urlMain": "https://robertsspaceindustries.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Steam": { - "errorMsg": "The specified profile could not be found", - "errorType": "message", - "rank": 168, - "tags": [ - "gaming" - ], - "url": "https://steamcommunity.com/id/{}", - "urlMain": "https://steamcommunity.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SteamGroup": { - "errorMsg": "No group could be retrieved for the given URL", - "errorType": "message", - "rank": 168, - "url": "https://steamcommunity.com/groups/{}", - "urlMain": "https://steamcommunity.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Steamid": { - "errorMsg": "

Profile not found
", - "errorType": "message", - "rank": 119934, - "url": "https://steamid.uk/profile/{}", - "urlMain": "https://steamid.uk/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "SublimeForum": { - "errorType": "status_code", - "rank": 6503, - "url": "https://forum.sublimetext.com/u/{}", - "urlMain": "https://forum.sublimetext.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "T-MobileSupport": { - "errorType": "status_code", - "rank": 1759, - "url": "https://support.t-mobile.com/people/{}", - "urlMain": "https://support.t-mobile.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "TamTam": { - "errorType": "response_url", - "errorUrl": "https://tamtam.chat/", - "rank": 87903, - "url": "https://tamtam.chat/{}", - "urlMain": "https://tamtam.chat/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Taringa": { - "errorType": "status_code", - "rank": 1092, - "tags": [ - "social" - ], - "url": "https://www.taringa.net/{}", - "urlMain": "https://taringa.net/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Telegram": { - "errorMsg": "twitter:title\" content=\"Telegram: Contact", - "regexCheck": "^[a-zA-Z0-9_]{5,}$", - "errorType": "message", - "tags": [ - "social" - ], - "url": "https://t.me/{}", - "urlMain": "https://t.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Teletype": { - "errorType": "status_code", - "tags": [ - "writing" - ], - "url": "https://teletype.in/@{}", - "urlMain": "https://teletype.in", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Tellonym.me": { - "errorType": "status_code", - "rank": 26963, - "url": "https://tellonym.me/{}", - "urlMain": "https://tellonym.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Tinder": { - "errorMsg": "twitter:title\" content=\"Tinder |", - "errorType": "message", - "rank": 1149, - "tags": [ - "dating" - ], - "url": "https://www.tinder.com/@{}", - "urlMain": "https://tinder.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "TrackmaniaLadder": { - "errorMsg": "player unknown or invalid", - "errorType": "message", - "rank": 537293, - "url": "http://en.tm-ladder.com/{}_rech.php", - "urlMain": "http://en.tm-ladder.com/index.php", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "TradingView": { - "errorType": "status_code", - "rank": 171, - "url": "https://www.tradingview.com/u/{}/", - "urlMain": "https://www.tradingview.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Trakt": { - "errorType": "status_code", - "rank": 6415, - "url": "https://www.trakt.tv/users/{}", - "urlMain": "https://www.trakt.tv/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "TrashboxRU": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "rank": 17595, - "regexCheck": "^[A-Za-z0-9_-]{3,16}$", - "url": "https://trashbox.ru/users/{}", - "urlMain": "https://trashbox.ru/", - "username_claimed": "blue", - "username_unclaimed": "never-never-ever" - }, - "Trello": { - "errorMsg": "model not found", - "errorType": "message", - "rank": 181, - "url": "https://trello.com/{}", - "urlMain": "https://trello.com/", - "urlProbe": "https://trello.com/1/Members/{}", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "TripAdvisor": { - "errorMsg": "This page is on vacation\u2026", - "errorType": "message", - "rank": 627, - "tags": [ - "travel" - ], - "url": "https://tripadvisor.com/members/{}", - "urlMain": "https://tripadvisor.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Twitch": { - "errorType": "status_code", - "rank": 33, - "url": "https://www.twitch.tv/{}", - "urlMain": "https://www.twitch.tv/", - "urlProbe": "https://m.twitch.tv/{}", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Twitter": { - "errorMsg": "Sorry, that page doesn't exist", - "errorType": "message", - "headers": { - "User-Agent": "Mozilla" - }, - "rank": 59, - "request_head_only": false, - "tags": [ - "global", - "social" - ], - "url": "https://twitter.com/{}", - "urlProbe": "https://mobile.twitter.com/{}", - "urlMain": "https://www.twitter.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Typeracer": { - "errorMsg": "Profile Not Found", - "errorType": "message", - "rank": 9093, - "url": "https://data.typeracer.com/pit/profile?user={}", - "urlMain": "https://typeracer.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Ultimate-Guitar": { - "errorType": "status_code", - "rank": 600, - "url": "https://ultimate-guitar.com/u/{}", - "urlMain": "https://ultimate-guitar.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Unsplash": { - "errorType": "status_code", - "rank": 365, - "url": "https://unsplash.com/@{}", - "urlMain": "https://unsplash.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "VK": { - "errorType": "response_url", - "errorUrl": "https://www.quora.com/profile/{}", - "rank": 23, - "tags": [ - "social" - ], - "url": "https://vk.com/{}", - "urlMain": "https://vk.com/", - "username_claimed": "smith", - "username_unclaimed": "blah62831" - }, - "VSCO": { - "errorType": "status_code", - "rank": 5172, - "url": "https://vsco.co/{}", - "urlMain": "https://vsco.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Velomania": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "errorType": "message", - "rank": 142077, - "url": "https://forum.velomania.ru/member.php?username={}", - "urlMain": "https://forum.velomania.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Venmo": { - "errorType": "status_code", - "rank": 6580, - "tags": [ - "finance" - ], - "url": "https://venmo.com/{}", - "urlMain": "https://venmo.com/", - "username_claimed": "jenny", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Vimeo": { - "errorType": "status_code", - "rank": 169, - "tags": [ - "video" - ], - "url": "https://vimeo.com/{}", - "urlMain": "https://vimeo.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Virgool": { - "errorMsg": "\u06f4\u06f0\u06f4", - "errorType": "message", - "rank": 2548, - "url": "https://virgool.io/@{}", - "urlMain": "https://virgool.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "VirusTotal": { - "errorMsg": "not found", - "errorType": "message", - "rank": 5398, - "url": "https://www.virustotal.com/ui/users/{}/trusted_users", - "urlMain": "https://www.virustotal.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Wattpad": { - "errorMsg": "userError-404", - "errorType": "message", - "rank": 574, - "tags": [ - "social" - ], - "url": "https://www.wattpad.com/user/{}", - "urlMain": "https://www.wattpad.com/", - "username_claimed": "Dogstho7951", - "username_unclaimed": "noonewouldeverusethis7" - }, - "We Heart It": { - "errorMsg": "Oops! You've landed on a moving target!", - "errorType": "message", - "rank": 3005, - "url": "https://weheartit.com/{}", - "urlMain": "https://weheartit.com/", - "username_claimed": "ventivogue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "WebNode": { - "errorType": "status_code", - "rank": 22436, - "url": "https://{}.webnode.cz/", - "urlMain": "https://www.webnode.cz/", - "username_claimed": "radkabalcarova", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Whonix Forum": { - "errorType": "status_code", - "rank": 245814, - "url": "https://forums.whonix.org/u/{}", - "urlMain": "https://forums.whonix.org/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Wikidot": { - "errorMsg": "User does not exist.", - "errorType": "message", - "rank": 3290, - "url": "http://www.wikidot.com/user:info/{}", - "urlMain": "http://www.wikidot.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "WikimapiaProfile": { - "errorMsg": "January 01, 1970", - "errorType": "message", - "request_head_only": false, - "tags": [ - "ru" - ], - "type": "wikimapia_uid", - "url": "http://wikimapia.org/user/{}", - "urlMain": "http://wikimapia.org", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "WikimapiaSearch": { - "errorMsg": "20", - "errorType": "message", - "request_head_only": false, - "tags": [ - "ru" - ], - "url": "http://wikimapia.org/user/tools/users_rating/?username={}", - "urlMain": "http://wikimapia.org", - "caseSentitive": true, - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "Wikipedia": { - "errorMsg": "is not registered", - "errorType": "message", - "rank": 10, - "tags": [ - "" - ], - "url": "https://www.wikipedia.org/wiki/User:{}", - "urlMain": "https://www.wikipedia.org/", - "username_claimed": "Hoadlck", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Wix": { - "errorType": "status_code", - "rank": 226, - "url": "https://{}.wix.com", - "urlMain": "https://wix.com/", - "username_claimed": "support", - "username_unclaimed": "noonewouldeverusethis7" - }, - "WordPress": { - "errorType": "response_url", - "errorUrl": "wordpress.com/typo/?subdomain=", - "rank": 52, - "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", - "tags": [ - "blog" - ], - "url": "https://{}.wordpress.com/", - "urlMain": "https://wordpress.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "WordPressOrg": { - "errorType": "response_url", - "errorUrl": "https://wordpress.org", - "rank": 636, - "url": "https://profiles.wordpress.org/{}/", - "urlMain": "https://wordpress.org/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Yandex": { - "errorType": "status_code", - "tags": [ - "global", - "ru" - ], - "type": "yandex_public_id", - "url": "https://yandex.ru/user/{}", - "urlMain": "https://yandex.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "YandexCollection": { - "errorType": "status_code", - "rank": 55, - "request_head_only": false, - "tags": [ - "global", - "ru" - ], - "errors": { - "action=\"/checkcaptcha\" onsubmit": "Captcha detected, use proxy/vpn" - }, - "url": "https://yandex.ru/collections/user/{}/", - "urlMain": "https://yandex.ru/collections/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "YandexLocal": { - "errorType": "status_code", - "tags": [ - "global", - "ru" - ], - "type": "yandex_public_id", - "url": "https://local.yandex.ru/users/{}", - "urlMain": "https://local.yandex.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "YandexMusic": { - "errorType": "status_code", - "tags": [ - "global", - "ru" - ], - "type": "username", - "request_head_only": false, - "url": "https://music.yandex.ru/users/{}/playlists", - "urlProbe": "https://music.yandex.ru/handlers/library.jsx?owner={}", - "headers": { - "Referer": "https://music.yandex.ru/users/test/playlists" - }, - "urlMain": "https://music.yandex.ru/", - "username_claimed": "YandexMusic", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "YandexZnatoki": { - "errorType": "status_code", - "tags": [ - "global", - "ru" - ], - "type": "yandex_public_id", - "url": "https://yandex.ru/q/profile/{}", - "urlMain": "ttps://yandex.ru/q/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "YouNow": { - "errorMsg": "No users found", - "errorType": "message", - "rank": 13091, - "url": "https://www.younow.com/{}/", - "urlMain": "https://www.younow.com/", - "urlProbe": "https://api.younow.com/php/api/broadcast/info/user={}/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "YouPic": { - "errorType": "status_code", - "rank": 26640, - "url": "https://youpic.com/photographer/{}/", - "urlMain": "https://youpic.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "YouTube": { - "errorMsg": "Not Found", - "errorType": "message", - "rank": 2, - "tags": [ - "video" - ], - "url": "https://www.youtube.com/{}", - "urlMain": "https://www.youtube.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Zhihu": { - "errorType": "response_url", - "errorUrl": "https://www.zhihu.com/people/{}", - "rank": 135, - "url": "https://www.zhihu.com/people/{}", - "urlMain": "https://www.zhihu.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Zomato": { - "errorType": "status_code", - "headers": { - "Accept-Language": "en-US,en;q=0.9" - }, - "rank": 1920, - "tags": [ - "food" - ], - "url": "https://www.zomato.com/pl/{}/foodjourney", - "urlMain": "https://www.zomato.com/", - "username_claimed": "deepigoyal", - "username_unclaimed": "noonewouldeverusethis7" - }, - "akniga": { - "errorType": "status_code", - "rank": 14884, - "url": "https://akniga.org/profile/{}", - "urlMain": "https://akniga.org/profile/blue/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "allmylinks": { - "errorMsg": "Page not found", - "errorType": "message", - "rank": 40997, - "url": "https://allmylinks.com/{}", - "urlMain": "https://allmylinks.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "aminoapp": { - "errorType": "status_code", - "rank": 9125, - "url": "https://aminoapps.com/u/{}", - "urlMain": "https://aminoapps.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "authorSTREAM": { - "errorType": "status_code", - "rank": 7220, - "tags": [ - "presos" - ], - "url": "http://www.authorstream.com/{}/", - "urlMain": "http://www.authorstream.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "babyRU": { - "errorMsg": "\u0423\u043f\u0441, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0438\u0441\u043a\u0430\u043b\u0438, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442", - "errorType": "message", - "rank": 7704, - "url": "https://www.baby.ru/u/{}/", - "urlMain": "https://www.baby.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "babyblogRU": { - "errorType": "status_code", - "rank": 15174, - "url": "https://www.babyblog.ru/user/info/{}", - "urlMain": "https://www.babyblog.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "chaos.social": { - "errorType": "status_code", - "rank": 4228716, - "url": "https://chaos.social/@{}", - "urlMain": "https://chaos.social/", - "username_claimed": "rixx", - "username_unclaimed": "noonewouldeverusethis7" - }, - "couchsurfing": { - "errorType": "status_code", - "rank": 11652, - "url": "https://www.couchsurfing.com/people/{}", - "urlMain": "https://www.couchsurfing.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "d3RU": { - "errorType": "status_code", - "rank": 35510, - "url": "https://d3.ru/user/{}/posts", - "urlMain": "https://d3.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "dailykos": { - "errorType": "status_code", - "rank": 6038, - "url": "https://www.dailykos.com/user/{}", - "urlMain": "https://www.dailykos.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "datingRU": { - "errorType": "status_code", - "rank": 82211, - "url": "http://dating.ru/{}", - "urlMain": "http://dating.ru", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "devRant": { - "errorType": "response_url", - "errorUrl": "https://devrant.com/", - "rank": 86451, - "tags": [ - "social" - ], - "url": "https://devrant.com/users/{}", - "urlMain": "https://devrant.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "drive2": { - "errorType": "status_code", - "rank": 1703, - "url": "https://www.drive2.ru/users/{}", - "urlMain": "https://www.drive2.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "eGPU": { - "errorType": "status_code", - "rank": 90682, - "url": "https://egpu.io/forums/profile/{}/", - "urlMain": "https://egpu.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis" - }, - "easyen": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "rank": 11564, - "url": "https://easyen.ru/index/8-0-{}", - "urlMain": "https://easyen.ru/", - "username_claimed": "wd", - "username_unclaimed": "noonewouldeverusethis7" - }, - "eintracht": { - "errorType": "status_code", - "rank": 201404, - "url": "https://community.eintracht.de/fans/{}", - "urlMain": "https://eintracht.de", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "fixya": { - "errorType": "status_code", - "rank": 6178, - "url": "https://www.fixya.com/users/{}", - "urlMain": "https://www.fixya.com", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "fl": { - "errorType": "status_code", - "rank": 50803, - "tags": [ - "ru" - ], - "url": "https://www.fl.ru/users/{}", - "urlMain": "https://www.fl.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "forum_guns": { - "errorMsg": "action=https://forum.guns.ru/forummisc/blog/search", - "errorType": "message", - "rank": 20931, - "url": "https://forum.guns.ru/forummisc/blog/{}", - "urlMain": "https://forum.guns.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "forumhouseRU": { - "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", - "errorType": "message", - "rank": 15756, - "url": "https://www.forumhouse.ru/members/?username={}", - "urlMain": "https://www.forumhouse.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "geocaching": { - "errorType": "status_code", - "rank": 13000, - "tags": [ - "social" - ], - "url": "https://www.geocaching.com/profile/?u={}", - "urlMain": "https://www.geocaching.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "gfycat": { - "errorType": "status_code", - "rank": 267, - "url": "https://gfycat.com/@{}", - "urlMain": "https://gfycat.com/", - "username_claimed": "Test", - "username_unclaimed": "noonewouldeverusethis7" - }, - "habr": { - "errorType": "status_code", - "rank": 1337, - "url": "https://habr.com/ru/users/{}", - "urlMain": "https://habr.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "hackster": { - "errorType": "status_code", - "rank": 19616, - "url": "https://www.hackster.io/{}", - "urlMain": "https://www.hackster.io", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "hunting": { - "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", - "errorType": "message", - "rank": 135360, - "url": "https://www.hunting.ru/forum/members/?username={}", - "urlMain": "https://www.hunting.ru/forum/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7", - "tags": ["ru"] - }, - "iMGSRC.RU": { - "errorType": "response_url", - "errorUrl": "https://imgsrc.ru/", - "rank": 14987, - "url": "https://imgsrc.ru/main/user.php?user={}", - "urlMain": "https://imgsrc.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7", - "tags": ["ru"] - }, - "igromania": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "errorType": "message", - "rank": 14909, - "url": "http://forum.igromania.ru/member.php?username={}", - "urlMain": "http://forum.igromania.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7", - "tags": ["gaming", "ru"] - }, - "interpals": { - "errorMsg": "The requested user does not exist or is inactive", - "errorType": "message", - "rank": 7604, - "tags": [ - "dating" - ], - "url": "https://www.interpals.net/{}", - "urlMain": "https://www.interpals.net/", - "username_claimed": "blue", - "username_unclaimed": "noneownsthisusername" - }, - "irecommend": { - "errorType": "status_code", - "rank": 2376, - "tags": [ - "ru" - ], - "url": "https://irecommend.ru/users/{}", - "urlMain": "https://irecommend.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "jeuxvideo": { - "errorMsg": "Vous \u00eates", - "errorType": "message", - "rank": 1557, - "url": "http://www.jeuxvideo.com/profil/{}?mode=infos", - "urlMain": "http://www.jeuxvideo.com", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7", - "tags": ["fr", "gaming"] - }, - "kofi": { - "errorMsg": "Make income from your art!", - "errorType": "message", - "rank": 89891, - "url": "https://ko-fi.com/{}", - "urlMain": "https://ko-fi.com", - "username_claimed": "yeahkenny", - "username_unclaimed": "noonewouldeverusethis77777", - "tags": ["ru", "freelance"] - }, - "kwork": { - "errorType": "status_code", - "rank": 7137, - "url": "https://kwork.ru/user/{}", - "urlMain": "https://www.kwork.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "labpentestit": { - "errorType": "response_url", - "errorUrl": "https://lab.pentestit.ru/{}", - "rank": 2280092, - "url": "https://lab.pentestit.ru/profile/{}", - "urlMain": "https://lab.pentestit.ru/", - "username_claimed": "CSV", - "username_unclaimed": "noonewouldeverusethis7", - "tags": ["cybersec"] - }, - "last.fm": { - "errorType": "status_code", - "rank": 1666, - "tags": [ - "music" - ], - "url": "https://last.fm/user/{}", - "urlMain": "https://last.fm/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "leasehackr": { - "errorType": "status_code", - "rank": 85106, - "url": "https://forum.leasehackr.com/u/{}/summary/", - "urlMain": "https://forum.leasehackr.com/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis" - }, - "livelib": { - "errorType": "status_code", - "rank": 3809, - "url": "https://www.livelib.ru/reader/{}", - "urlMain": "https://www.livelib.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7", - "tags": ["ru", "reading"] - }, - "mastodon.cloud": { - "errorType": "status_code", - "rank": 285280, - "url": "https://mastodon.cloud/@{}", - "urlMain": "https://mastodon.cloud/", - "username_claimed": "TheAdmin", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mastodon.social": { - "errorType": "status_code", - "rank": 4228716, - "url": "https://mastodon.social/@{}", - "urlMain": "https://chaos.social/", - "username_claimed": "Gargron", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mastodon.technology": { - "errorType": "status_code", - "rank": 1051451, - "url": "https://mastodon.technology/@{}", - "urlMain": "https://mastodon.xyz/", - "username_claimed": "ashfurrow", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mastodon.xyz": { - "errorType": "status_code", - "rank": 1051451, - "url": "https://mastodon.xyz/@{}", - "urlMain": "https://mastodon.xyz/", - "username_claimed": "TheKinrar", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mercadolivre": { - "errorType": "status_code", - "rank": 27839, - "url": "https://www.mercadolivre.com.br/perfil/{}", - "urlMain": "https://www.mercadolivre.com.br", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777", - "tags": ["br"] - }, - "metacritic": { - "errorMsg": "User not found", - "errorType": "message", - "rank": 2499, - "regexCheck": "^(?![-_])[A-Za-z0-9-_]{3,15}$", - "url": "https://www.metacritic.com/user/{}", - "urlMain": "https://www.metacritic.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewould" - }, - "mixer.com": { - "errorType": "status_code", - "rank": 1544, - "url": "https://mixer.com/{}", - "urlMain": "https://mixer.com/", - "urlProbe": "https://mixer.com/api/v1/channels/{}", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "moikrug": { - "errorType": "status_code", - "rank": 174869, - "url": "https://moikrug.ru/{}", - "urlMain": "https://moikrug.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "mstdn.io": { - "errorType": "status_code", - "rank": 1333764, - "url": "https://mstdn.io/@{}", - "urlMain": "https://mstdn.io/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "nightbot": { - "errorType": "status_code", - "rank": 10776, - "url": "https://nightbot.tv/t/{}/commands", - "urlMain": "https://nightbot.tv/", - "urlProbe": "https://api.nightbot.tv/1/channels/t/{}", - "username_claimed": "green", - "username_unclaimed": "noonewouldeverusethis" - }, - "nnRU": { - "errorType": "status_code", - "rank": 0, - "url": "https://{}.www.nn.ru/", - "urlMain": "https://https://www.nn.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "notabug.org": { - "errorType": "status_code", - "rank": 145085, - "url": "https://notabug.org/{}", - "urlMain": "https://notabug.org/", - "urlProbe": "https://notabug.org/{}/followers", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "note": { - "errorType": "status_code", - "rank": 861, - "url": "https://note.com/{}", - "urlMain": "https://note.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "opennet": { - "errorMsg": "\u0418\u043c\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e", - "errorType": "message", - "regexCheck": "^[^-]+$", - "rank": 65050, - "url": "https://www.opennet.ru/~{}", - "urlMain": "https://www.opennet.ru/", - "username_claimed": "anonismus", - "username_unclaimed": "noneownsthisusername" - }, - "opensource": { - "errorType": "status_code", - "rank": 7771, - "url": "https://opensource.com/users/{}", - "urlMain": "https://opensource.com/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "osu!": { - "errorType": "status_code", - "rank": 5124, - "url": "https://osu.ppy.sh/users/{}", - "urlMain": "https://osu.ppy.sh/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "phpRU": { - "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", - "errorType": "message", - "rank": 113717, - "url": "https://php.ru/forum/members/?username={}", - "urlMain": "https://php.ru/forum/", - "username_claimed": "apple", - "username_unclaimed": "noonewouldeverusethis7" - }, - "pikabu": { - "errorType": "status_code", - "rank": 962, - "tags": [ - "ru" - ], - "url": "https://pikabu.ru/@{}", - "urlMain": "https://pikabu.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "pr0gramm": { - "errorType": "status_code", - "rank": 3343, - "url": "https://pr0gramm.com/api/profile/info?name={}", - "urlMain": "https://pr0gramm.com/", - "username_claimed": "cha0s", - "username_unclaimed": "noonewouldeverusethis123123123123123123" - }, - "pvpru": { - "errorType": "status_code", - "errors": { - "Access denied": "Cloudflare security protection detected" - }, - "rank": 405547, - "request_head_only": false, - "url": "https://pvpru.com/board/member.php?username={}&tab=aboutme#aboutme", - "urlMain": "https://pvpru.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "radio_echo_msk": { - "errorType": "status_code", - "rank": 1578, - "url": "https://echo.msk.ru/users/{}", - "urlMain": "https://echo.msk.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "radioskot": { - "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "regexCheck": "^[^-]+$", - "rank": 105878, - "url": "https://radioskot.ru/index/8-0-{}", - "urlMain": "https://radioskot.ru/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "satsisRU": { - "errorType": "status_code", - "rank": 447395, - "url": "https://satsis.info/user/{}", - "urlMain": "https://satsis.info/", - "username_claimed": "red", - "username_unclaimed": "noonewouldeverusethis7" - }, - "segmentfault": { - "errorType": "status_code", - "rank": 678, - "url": "https://segmentfault.com/u/{}", - "urlMain": "https://segmentfault.com/", - "username_claimed": "bule", - "username_unclaimed": "noonewouldeverusethis7" - }, - "social.tchncs.de": { - "errorType": "status_code", - "rank": 463325, - "url": "https://social.tchncs.de/@{}", - "urlMain": "https://social.tchncs.de/", - "username_claimed": "Milan", - "username_unclaimed": "noonewouldeverusethis7" - }, - "soylentnews": { - "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", - "errorType": "message", - "rank": 892920, - "url": "https://soylentnews.org/~{}", - "urlMain": "https://soylentnews.org", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "sparkpeople": { - "errorMsg": "We couldn't find that user", - "errorType": "message", - "rank": 20132, - "url": "https://www.sparkpeople.com/mypage.asp?id={}", - "urlMain": "https://www.sparkpeople.com", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "spletnik": { - "errorType": "status_code", - "rank": 9356, - "url": "https://spletnik.ru/user/{}", - "urlMain": "https://spletnik.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "svidbook": { - "errorType": "status_code", - "rank": 5680929, - "url": "https://www.svidbook.ru/user/{}", - "urlMain": "https://www.svidbook.ru/", - "username_claimed": "green", - "username_unclaimed": "noonewouldeverusethis7" - }, - "toster": { - "errorType": "status_code", - "rank": 10529871, - "url": "https://www.toster.ru/user/{}/answers", - "urlMain": "https://www.toster.ru/", - "username_claimed": "adam", - "username_unclaimed": "noonewouldeverusethis7" - }, - "tracr.co": { - "errorMsg": "No search results", - "errorType": "message", - "rank": 1104278, - "regexCheck": "^[A-Za-z0-9]{2,32}$", - "url": "https://tracr.co/users/1/{}", - "urlMain": "https://tracr.co/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7", - "tags": ["gaming", "discord"] - }, - "travellerspoint": { - "errorMsg": "Wooops. Sorry!", - "errorType": "message", - "rank": 65743, - "url": "https://www.travellerspoint.com/users/{}", - "urlMain": "https://www.travellerspoint.com", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "uid": { - "errorType": "status_code", - "rank": 22088, - "url": "http://uid.me/{}", - "urlMain": "https://uid.me/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "Proza.ru": { - "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "url": "https://www.proza.ru/avtor/{}", - "urlMain": "https://www.proza.ru/", - "username_unclaimed": "noonewouldeverusethis7", - "username_claimed": "gpola", - "tags": ["ru", "writing"] - }, - "Stihi.ru": { - "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", - "errorType": "message", - "url": "https://www.stihi.ru/avtor/{}", - "urlMain": "https://www.stihi.ru/", - "username_unclaimed": "noonewouldeverusethis7", - "username_claimed": "blue", - "tags": ["ru", "writing"] - }, - "warriorforum": { - "errorType": "status_code", - "rank": 3524, - "url": "https://www.warriorforum.com/members/{}.html", - "urlMain": "https://www.warriorforum.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, - "windy": { - "errorType": "status_code", - "rank": 2279, - "url": "https://community.windy.com/user/{}", - "urlMain": "https://windy.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, - "GoogleMaps": { - "errorType": "status_code", - "url": "https://www.google.com/maps/contrib/{}", - "urlMain": "https://maps.google.com/", - "request_head_only": false, - "type": "gaia_id", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - } + "2Dimensions": { + "errorType": "status_code", + "rank": 7164342, + "url": "https://2Dimensions.com/a/{}", + "urlMain": "https://2Dimensions.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "3dnews": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", + "errorType": "message", + "rank": 8293, + "tags": [ + "ru" + ], + "url": "http://forum.3dnews.ru/member.php?username={}", + "urlMain": "http://forum.3dnews.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "4pda": { + "errorMsg": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.", + "errorType": "message", + "rank": 2621, + "tags": [ + "ru" + ], + "url": "https://4pda.ru/forum/index.php?act=search&source=pst&noform=1&username={}", + "urlMain": "https://4pda.ru/", + "username_claimed": "green", + "username_unclaimed": "noonewouldeverusethis7" + }, + "500px": { + "errorMsg": "Oops! This page doesn\u2019t exist.", + "errorType": "message", + "rank": 3594, + "tags": [ + "in", + "images" + ], + "url": "https://500px.com/{}", + "urlMain": "https://500px.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "7Cups": { + "errorType": "status_code", + "rank": 50645, + "tags": [ + "in" + ], + "url": "https://www.7cups.com/@{}", + "urlMain": "https://www.7cups.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "About.me": { + "errorType": "status_code", + "rank": 19062, + "tags": [ + "in", + "social" + ], + "url": "https://about.me/{}", + "urlMain": "https://about.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Academia.edu": { + "errorType": "status_code", + "rank": 269, + "tags": [ + "id" + ], + "url": "https://independent.academia.edu/{}", + "urlMain": "https://www.academia.edu/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Alik.cz": { + "errorType": "status_code", + "rank": 705075, + "url": "https://www.alik.cz/u/{}", + "urlMain": "https://www.alik.cz/", + "username_claimed": "julian", + "username_unclaimed": "noonewouldeverusethis" + }, + "AllTrails": { + "errorMsg": "User could not be found.", + "errorType": "message", + "rank": 4473, + "tags": [ + "us" + ], + "url": "https://www.alltrails.com/members/{}", + "urlMain": "https://www.alltrails.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Anobii": { + "errorType": "response_url", + "rank": 41444, + "tags": [ + "it", + "books" + ], + "url": "https://www.anobii.com/{}/profile", + "urlMain": "https://www.anobii.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Aptoide": { + "errorType": "status_code", + "rank": 6011, + "tags": [ + "in" + ], + "url": "https://{}.en.aptoide.com/", + "urlMain": "https://en.aptoide.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Archive.org": { + "errorMsg": "cannot find account", + "errorType": "message", + "rank": 224, + "tags": [ + "us" + ], + "url": "https://archive.org/details/@{}", + "urlMain": "https://archive.org", + "username_claimed": "blue", + "username_unclaimed": "noonewould" + }, + "Asciinema": { + "errorType": "status_code", + "rank": 83004, + "tags": [ + "us" + ], + "url": "https://asciinema.org/~{}", + "urlMain": "https://asciinema.org", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Ask Fedora": { + "errorType": "status_code", + "rank": 30489, + "tags": [ + "in" + ], + "url": "https://ask.fedoraproject.org/u/{}", + "urlMain": "https://ask.fedoraproject.org/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "AskFM": { + "errorMsg": "Well, apparently not anymore.", + "errorType": "message", + "rank": 3029, + "regexCheck": "^[a-zA-Z0-9_]{3,40}$", + "tags": [ + "ru" + ], + "url": "https://ask.fm/{}", + "urlMain": "https://ask.fm/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Audiojungle": { + "errorType": "status_code", + "rank": 6116, + "tags": [ + "us" + ], + "url": "https://audiojungle.net/user/{}", + "urlMain": "https://audiojungle.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Avizo": { + "errorType": "response_url", + "errorUrl": "https://www.avizo.cz/", + "rank": 352896, + "url": "https://www.avizo.cz/{}/", + "urlMain": "https://www.avizo.cz/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "BLIP.fm": { + "errorType": "status_code", + "rank": 160252, + "tags": [ + "in", + "music" + ], + "url": "https://blip.fm/{}", + "urlMain": "https://blip.fm/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BOOTH": { + "errorType": "response_url", + "errorUrl": "https://booth.pm/", + "rank": 7023, + "tags": [ + "jp" + ], + "url": "https://{}.booth.pm/", + "urlMain": "https://booth.pm/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Badoo": { + "errorType": "status_code", + "rank": 1895, + "tags": [ + "social", + "br" + ], + "url": "https://badoo.com/profile/{}", + "urlMain": "https://badoo.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Bandcamp": { + "errorType": "status_code", + "rank": 1044, + "tags": [ + "us", + "music" + ], + "url": "https://www.bandcamp.com/{}", + "urlMain": "https://www.bandcamp.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Bazar.cz": { + "errorType": "response_url", + "errorUrl": "https://www.bazar.cz/error404.aspx", + "rank": 317058, + "tags": [ + "cz" + ], + "url": "https://www.bazar.cz/{}/", + "urlMain": "https://www.bazar.cz/", + "username_claimed": "pianina", + "username_unclaimed": "noonewouldeverusethis" + }, + "Behance": { + "errorType": "status_code", + "headers": { + "User-Agent": "Curl" + }, + "rank": 314, + "tags": [ + "business", + "in" + ], + "url": "https://www.behance.net/{}", + "urlMain": "https://www.behance.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BitBucket": { + "errorType": "status_code", + "rank": 2034, + "tags": [ + "in", + "coding" + ], + "url": "https://bitbucket.org/{}/", + "urlMain": "https://bitbucket.org/", + "username_claimed": "white", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BitCoinForum": { + "errorMsg": "The user whose profile you are trying to view does not exist.", + "errorType": "message", + "rank": 317370, + "tags": [ + "in" + ], + "url": "https://bitcoinforum.com/profile/{}", + "urlMain": "https://bitcoinforum.com", + "username_claimed": "bitcoinforum.com", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Blogger": { + "errorType": "status_code", + "rank": 326, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "in" + ], + "url": "https://{}.blogspot.com", + "urlMain": "https://www.blogger.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BodyBuilding": { + "errorType": "response_url", + "errorUrl": "https://bodyspace.bodybuilding.com/", + "rank": 2623, + "tags": [ + "us" + ], + "url": "https://bodyspace.bodybuilding.com/{}", + "urlMain": "https://bodyspace.bodybuilding.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Bookcrossing": { + "errorType": "status_code", + "rank": 65128, + "tags": [ + "in" + ], + "url": "https://www.bookcrossing.com/mybookshelf/{}/", + "urlMain": "https://www.bookcrossing.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "BuyMeACoffee": { + "errorType": "status_code", + "rank": 12407, + "tags": [ + "in" + ], + "url": "https://buymeacoff.ee/{}", + "urlMain": "https://www.buymeacoffee.com/", + "urlProbe": "https://www.buymeacoffee.com/{}", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "BuzzFeed": { + "errorType": "status_code", + "rank": 472, + "tags": [ + "us", + "social" + ], + "url": "https://buzzfeed.com/{}", + "urlMain": "https://buzzfeed.com/", + "username_claimed": "blue", + "username_unclaimed": "xgtrq" + }, + "CNET": { + "errorType": "status_code", + "rank": 148, + "tags": [ + "us" + ], + "url": "https://www.cnet.com/profiles/{}/", + "urlMain": "https://www.cnet.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Carbonmade": { + "errorType": "response_url", + "errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com", + "rank": 25700, + "tags": [ + "us" + ], + "url": "https://{}.carbonmade.com", + "urlMain": "https://carbonmade.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Career.habr": { + "errorMsg": "

\u041e\u0448\u0438\u0431\u043a\u0430 404

", + "errorType": "message", + "rank": 1363, + "tags": [ + "ru" + ], + "url": "https://career.habr.com/{}", + "urlMain": "https://career.habr.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "CashMe": { + "errorType": "status_code", + "errors": { + "Cash isn't available in your country yet.": "Access denied in your country, use proxy/vpn" + }, + "rank": 6387848, + "request_head_only": false, + "url": "https://cash.me/${}", + "urlMain": "https://cash.me/", + "username_claimed": "Jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Cent": { + "errorMsg": "Cent", + "errorType": "message", + "rank": 99599, + "tags": [ + "mx" + ], + "url": "https://beta.cent.co/@{}", + "urlMain": "https://cent.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Championat": { + "errorType": "status_code", + "rank": 1931, + "tags": [ + "ru" + ], + "url": "https://www.championat.com/user/{}", + "urlMain": "https://www.championat.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Chatujme.cz": { + "errorMsg": "Neexistujic\u00ed profil", + "errorType": "message", + "rank": 8086004, + "url": "https://profil.chatujme.cz/{}", + "urlMain": "https://chatujme.cz/", + "username_claimed": "david", + "username_unclaimed": "noonewouldeverusethis" + }, + "Chess": { + "errorMsg": "Missing page... somebody made a wrong move.", + "errorType": "message", + "rank": 407, + "tags": [ + "us" + ], + "url": "https://www.chess.com/ru/member/{}", + "urlMain": "https://www.chess.com/ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Cloob": { + "errorType": "status_code", + "rank": 7719, + "tags": [ + "ir" + ], + "url": "https://www.cloob.com/name/{}", + "urlMain": "https://www.cloob.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "CloudflareCommunity": { + "errorType": "status_code", + "rank": 1392, + "tags": [ + "in" + ], + "url": "https://community.cloudflare.com/u/{}", + "urlMain": "https://community.cloudflare.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Clozemaster": { + "errorType": "status_code", + "rank": 68801, + "tags": [ + "us" + ], + "url": "https://www.clozemaster.com/players/{}", + "urlMain": "https://www.clozemaster.com", + "username_claimed": "green", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Codecademy": { + "errorType": "status_code", + "rank": 2126, + "tags": [ + "us", + "education" + ], + "url": "https://www.codecademy.com/profiles/{}", + "urlMain": "https://www.codecademy.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Codechef": { + "errorType": "response_url", + "errorUrl": "https://www.codechef.com/", + "rank": 9132, + "tags": [ + "in" + ], + "url": "https://www.codechef.com/users/{}", + "urlMain": "https://www.codechef.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Coderwall": { + "errorMsg": "404! Our feels when that url is used", + "errorType": "message", + "rank": 11939, + "tags": [ + "in" + ], + "url": "https://coderwall.com/{}", + "urlMain": "https://coderwall.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Codewars": { + "errorType": "status_code", + "rank": 20398, + "tags": [ + "us" + ], + "url": "https://www.codewars.com/users/{}", + "urlMain": "https://www.codewars.com", + "username_claimed": "example", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Contently": { + "errorMsg": "We can't find that page!", + "errorType": "message", + "rank": 13328, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "in" + ], + "url": "https://{}.contently.com/", + "urlMain": "https://contently.com/", + "username_claimed": "jordanteicher", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Coroflot": { + "errorType": "status_code", + "rank": 37379, + "tags": [ + "us" + ], + "url": "https://www.coroflot.com/{}", + "urlMain": "https://coroflot.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Cracked": { + "errorType": "response_url", + "errorUrl": "https://www.cracked.com/", + "rank": 3855, + "tags": [ + "us" + ], + "url": "https://www.cracked.com/members/{}/", + "urlMain": "https://www.cracked.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "CreativeMarket": { + "errorMsg": "The page you were looking for was not found.", + "errorType": "message", + "errors": { + "/cdn-cgi/scripts/hcaptcha.challenge.js": "Captcha detected" + }, + "rank": 2221, + "request_head_only": false, + "tags": [ + "us" + ], + "url": "https://creativemarket.com/users/{}", + "urlMain": "https://creativemarket.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Crevado": { + "errorType": "status_code", + "rank": 201684, + "tags": [ + "in" + ], + "url": "https://{}.crevado.com", + "urlMain": "https://crevado.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Crunchyroll": { + "errorType": "status_code", + "rank": 554, + "tags": [ + "us" + ], + "url": "https://www.crunchyroll.com/user/{}", + "urlMain": "https://www.crunchyroll.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "DEV Community": { + "errorType": "status_code", + "rank": 8782, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "in" + ], + "url": "https://dev.to/{}", + "urlMain": "https://dev.to/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "DailyMotion": { + "errorType": "status_code", + "rank": 230, + "tags": [ + "us", + "video" + ], + "url": "https://www.dailymotion.com/{}", + "urlMain": "https://www.dailymotion.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Designspiration": { + "errorType": "status_code", + "rank": 4234418, + "url": "https://www.designspiration.net/{}/", + "urlMain": "https://www.designspiration.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "DeviantART": { + "errorType": "status_code", + "rank": 542, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "us", + "images" + ], + "url": "https://{}.deviantart.com", + "urlMain": "https://deviantart.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Discogs": { + "errorType": "status_code", + "rank": 1091, + "tags": [ + "us" + ], + "url": "https://www.discogs.com/user/{}", + "urlMain": "https://www.discogs.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Discuss.Elastic.co": { + "errorType": "status_code", + "rank": 7146, + "tags": [ + "in", + "tech" + ], + "url": "https://discuss.elastic.co/u/{}", + "urlMain": "https://discuss.elastic.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Disqus": { + "errorType": "status_code", + "rank": 1072, + "tags": [ + "us", + "discussion", + "global" + ], + "url": "https://disqus.com/{}", + "urlMain": "https://disqus.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Docker Hub": { + "errorType": "status_code", + "rank": 3325, + "tags": [ + "us" + ], + "url": "https://hub.docker.com/u/{}/", + "urlMain": "https://hub.docker.com/", + "urlProbe": "https://hub.docker.com/v2/users/{}/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Dribbble": { + "errorMsg": "Whoops, that page is gone.", + "errorType": "message", + "rank": 1301, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "business", + "in" + ], + "url": "https://dribbble.com/{}", + "urlMain": "https://dribbble.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Duolingo": { + "errorMsg": "{\"users\":[]}", + "errorType": "message", + "rank": 422, + "tags": [ + "us" + ], + "url": "https://www.duolingo.com/profile/{}", + "urlMain": "https://duolingo.com/", + "urlProbe": "https://www.duolingo.com/2017-06-30/users?username={}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Ebay": { + "errorMsg": "

", + "errorType": "message", + "rank": 48, + "tags": [ + "us", + "shopping" + ], + "url": "https://www.ebay.com/usr/{}", + "urlMain": "https://www.ebay.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Ello": { + "errorMsg": "We couldn't find the page you're looking for", + "errorType": "message", + "rank": 43730, + "tags": [ + "in" + ], + "url": "https://ello.co/{}", + "urlMain": "https://ello.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Etsy": { + "errorType": "status_code", + "rank": 120, + "tags": [ + "us", + "shopping" + ], + "url": "https://www.etsy.com/shop/{}", + "urlMain": "https://www.etsy.com/", + "username_claimed": "JennyKrafts", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Euw": { + "errorMsg": "This summoner is not registered at OP.GG. Please check spelling.", + "errorType": "message", + "rank": 289, + "tags": [ + "us" + ], + "url": "https://euw.op.gg/summoner/userName={}", + "urlMain": "https://euw.op.gg/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "EyeEm": { + "errorType": "response_url", + "errorUrl": "https://www.eyeem.com/", + "rank": 20114, + "tags": [ + "sd" + ], + "url": "https://www.eyeem.com/u/{}", + "urlMain": "https://www.eyeem.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "F3.cool": { + "errorType": "status_code", + "rank": 58656, + "tags": [ + "ru" + ], + "url": "https://f3.cool/{}/", + "urlMain": "https://f3.cool/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Facebook": { + "errorType": "status_code", + "rank": 8, + "regexCheck": "^[a-zA-Z0-9\\.]{3,49}(?", + "errorType": "message", + "rank": 1363, + "tags": [ + "ru" + ], + "url": "https://freelance.habr.com/freelancers/{}", + "urlMain": "https://freelance.habr.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Freelancer.com": { + "errorMsg": "\"users\":{}", + "errorType": "message", + "rank": 1172, + "tags": [ + "us" + ], + "url": "https://www.freelancer.com/api/users/0.1/users?usernames%5B%5D={}&compact=true", + "urlMain": "https://www.freelancer.com/", + "username_claimed": "red0xff", + "username_unclaimed": "noonewouldeverusethis" + }, + "Freesound": { + "errorType": "status_code", + "rank": 6414, + "tags": [ + "us", + "music" + ], + "url": "https://freesound.org/people/{}/", + "urlMain": "https://freesound.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "GDProfiles": { + "errorType": "status_code", + "rank": 5059468, + "url": "https://gdprofiles.com/{}", + "urlMain": "https://gdprofiles.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Gamespot": { + "errorType": "status_code", + "rank": 568, + "tags": [ + "us", + "gaming" + ], + "url": "https://www.gamespot.com/profile/{}/", + "urlMain": "https://www.gamespot.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Giphy": { + "errorType": "status_code", + "rank": 625, + "tags": [ + "us", + "social" + ], + "url": "https://giphy.com/{}", + "urlMain": "https://giphy.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GitHub": { + "errorType": "status_code", + "rank": 85, + "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", + "tags": [ + "us", + "coding" + ], + "url": "https://www.github.com/{}", + "urlMain": "https://www.github.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GitLab": { + "errorMsg": "[]", + "errorType": "message", + "rank": 3714, + "tags": [ + "in", + "coding" + ], + "url": "https://gitlab.com/{}", + "urlMain": "https://gitlab.com/", + "urlProbe": "https://gitlab.com/api/v4/users?username={}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Gitee": { + "errorType": "status_code", + "rank": 6897, + "tags": [ + "cn" + ], + "url": "https://gitee.com/{}", + "urlMain": "https://gitee.com/", + "username_claimed": "wizzer", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GoodReads": { + "errorType": "status_code", + "rank": 327, + "tags": [ + "us", + "books" + ], + "url": "https://www.goodreads.com/{}", + "urlMain": "https://www.goodreads.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GoogleMaps": { + "errorType": "status_code", + "rank": 1, + "request_head_only": false, + "tags": [ + "us" + ], + "type": "gaia_id", + "url": "https://www.google.com/maps/contrib/{}", + "urlMain": "https://maps.google.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Gravatar": { + "errorType": "status_code", + "rank": 6149, + "tags": [ + "in", + "images" + ], + "url": "http://en.gravatar.com/{}", + "urlMain": "http://en.gravatar.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Gumroad": { + "errorMsg": "Page not found.", + "errorType": "message", + "rank": 3885, + "tags": [ + "us" + ], + "url": "https://www.gumroad.com/{}", + "urlMain": "https://www.gumroad.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GunsAndAmmo": { + "errorType": "status_code", + "rank": 138979, + "tags": [ + "us" + ], + "url": "https://forums.gunsandammo.com/profile/{}", + "urlMain": "https://gunsandammo.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "GuruShots": { + "errorType": "status_code", + "rank": 23988, + "tags": [ + "us" + ], + "url": "https://gurushots.com/{}/photos", + "urlMain": "https://gurushots.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "HackTheBox": { + "errorType": "status_code", + "rank": 42998, + "tags": [ + "us" + ], + "url": "https://forum.hackthebox.eu/profile/{}", + "urlMain": "https://forum.hackthebox.eu/", + "username_claimed": "angar", + "username_unclaimed": "noonewouldeverusethis" + }, + "HackerNews": { + "errorMsg": "No such user", + "errorType": "message", + "rank": 5603, + "tags": [ + "us" + ], + "url": "https://news.ycombinator.com/user?id={}", + "urlMain": "https://news.ycombinator.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "HackerOne": { + "errorMsg": "Page not found", + "errorType": "message", + "rank": 24497, + "tags": [ + "in", + "hacker" + ], + "url": "https://hackerone.com/{}", + "urlMain": "https://hackerone.com/", + "username_claimed": "test", + "username_unclaimed": "noonewouldeverusethis7" + }, + "HackerRank": { + "errorMsg": "Something went wrong", + "errorType": "message", + "rank": 2869, + "tags": [ + "in" + ], + "url": "https://hackerrank.com/{}", + "urlMain": "https://hackerrank.com/", + "username_claimed": "satznova", + "username_unclaimed": "noonewouldeverusethis7" + }, + "House-Mixes.com": { + "errorMsg": "Profile Not Found", + "errorType": "message", + "rank": 713436, + "regexCheck": "^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$", + "tags": [ + "ir" + ], + "url": "https://www.house-mixes.com/profile/{}", + "urlMain": "https://www.house-mixes.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Houzz": { + "errorMsg": "The page you requested was not found.", + "errorType": "message", + "rank": 1436, + "tags": [ + "us" + ], + "url": "https://houzz.com/user/{}", + "urlMain": "https://houzz.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "HubPages": { + "errorType": "status_code", + "rank": 3495, + "tags": [ + "us", + "blog" + ], + "url": "https://hubpages.com/@{}", + "urlMain": "https://hubpages.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Hubski": { + "errorMsg": "No such user", + "errorType": "message", + "rank": 270708, + "tags": [ + "in" + ], + "url": "https://hubski.com/user/{}", + "urlMain": "https://hubski.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "IFTTT": { + "errorMsg": "The requested page or file does not exist", + "errorType": "message", + "rank": 9058, + "regexCheck": "^[A-Za-z0-9]{3,35}$", + "tags": [ + "us", + "misc" + ], + "url": "https://www.ifttt.com/p/{}", + "urlMain": "https://www.ifttt.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ImageShack": { + "errorType": "response_url", + "errorUrl": "https://imageshack.com/", + "rank": 13304, + "tags": [ + "in", + "images" + ], + "url": "https://imageshack.com/user/{}", + "urlMain": "https://imageshack.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ImgUp.cz": { + "errorType": "status_code", + "rank": 9177087, + "url": "https://imgup.cz/{}", + "urlMain": "https://imgup.cz/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis" + }, + "Instagram": { + "errorType": "status_code", + "rank": 35, + "request_head_only": false, + "tags": [ + "us", + "social" + ], + "url": "https://www.instagram.com/{}", + "urlMain": "https://www.instagram.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Instructables": { + "errorMsg": "404: We're sorry, things break sometimes", + "errorType": "message", + "rank": 1271, + "tags": [ + "us", + "hobby" + ], + "url": "https://www.instructables.com/member/{}", + "urlMain": "https://www.instructables.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Issuu": { + "errorType": "status_code", + "rank": 548, + "tags": [ + "in" + ], + "url": "https://issuu.com/{}", + "urlMain": "https://issuu.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Itch.io": { + "errorType": "status_code", + "rank": 1775, + "tags": [ + "us" + ], + "url": "https://{}.itch.io/", + "urlMain": "https://itch.io/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Jimdo": { + "errorType": "status_code", + "noPeriod": "True", + "rank": 20051, + "tags": [ + "in" + ], + "url": "https://{}.jimdosite.com", + "urlMain": "https://jimdosite.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Kaggle": { + "errorType": "status_code", + "rank": 2589, + "tags": [ + "in" + ], + "url": "https://www.kaggle.com/{}", + "urlMain": "https://www.kaggle.com/", + "username_claimed": "dansbecker", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Kali community": { + "errorMsg": "This user has not registered and therefore does not have a profile to view.", + "errorType": "message", + "rank": 8417, + "tags": [ + "in" + ], + "url": "https://forums.kali.org/member.php?username={}", + "urlMain": "https://forums.kali.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "KanoWorld": { + "errorType": "status_code", + "rank": 155829, + "tags": [ + "us" + ], + "url": "https://api.kano.me/progress/user/{}", + "urlMain": "https://world.kano.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Keybase": { + "errorMsg": [ + "them\":[null]", + "bad list value" + ], + "errorType": "message", + "rank": 57982, + "tags": [ + "business", + "us" + ], + "url": "https://keybase.io/{}", + "urlMain": "https://keybase.io/", + "urlProbe": "https://keybase.io/_/api/1.0/user/lookup.json?usernames={}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Kik": { + "errorMsg": "The page you requested was not found", + "errorType": "message", + "rank": 704379, + "url": "https://ws2.kik.com/user/{}", + "urlMain": "http://kik.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Kongregate": { + "errorMsg": "Sorry, no account with that name was found.", + "errorType": "message", + "rank": 2797, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "us", + "gaming" + ], + "url": "https://www.kongregate.com/accounts/{}", + "urlMain": "https://www.kongregate.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "LOR": { + "errorType": "status_code", + "rank": 41689, + "tags": [ + "ru" + ], + "url": "https://www.linux.org.ru/people/{}/profile", + "urlMain": "https://linux.org.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Launchpad": { + "errorType": "status_code", + "rank": 9528, + "tags": [ + "us" + ], + "url": "https://launchpad.net/~{}", + "urlMain": "https://launchpad.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "LeetCode": { + "errorType": "status_code", + "rank": 2335, + "tags": [ + "us" + ], + "url": "https://leetcode.com/{}", + "urlMain": "https://leetcode.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Letterboxd": { + "errorMsg": "Sorry, we can\u2019t find the page you\u2019ve requested.", + "errorType": "message", + "rank": 3816, + "tags": [ + "us" + ], + "url": "https://letterboxd.com/{}", + "urlMain": "https://letterboxd.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Lichess": { + "errorMsg": "Page not found!", + "errorType": "message", + "rank": 1867, + "tags": [ + "us" + ], + "url": "https://lichess.org/@/{}", + "urlMain": "https://lichess.org", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "LiveJournal": { + "errorType": "status_code", + "rank": 434, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "blog", + "ru" + ], + "url": "https://{}.livejournal.com", + "urlMain": "https://www.livejournal.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Lobsters": { + "errorType": "status_code", + "rank": 129889, + "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", + "tags": [ + "in" + ], + "url": "https://lobste.rs/u/{}", + "urlMain": "https://lobste.rs/", + "username_claimed": "jcs", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Lolchess": { + "errorMsg": "No search results", + "errorType": "message", + "rank": 3314, + "tags": [ + "kr" + ], + "url": "https://lolchess.gg/profile/na/{}", + "urlMain": "https://lolchess.gg/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Medium": { + "errorMsg": "We couldn\u2019t find this page.", + "errorType": "message", + "rank": 79, + "tags": [ + "us", + "news" + ], + "url": "https://medium.com/@{}", + "urlMain": "https://medium.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Memrise": { + "errorType": "response_url", + "errorUrl": "https://www.memrise.com/", + "rank": 5678, + "tags": [ + "jp" + ], + "url": "https://www.memrise.com/user/{}/", + "urlMain": "https://www.memrise.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "MixCloud": { + "errorType": "status_code", + "rank": 2523, + "tags": [ + "us", + "music" + ], + "url": "https://www.mixcloud.com/{}/", + "urlMain": "https://www.mixcloud.com/", + "urlProbe": "https://api.mixcloud.com/{}/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "MyAnimeList": { + "errorType": "status_code", + "rank": 966, + "tags": [ + "us", + "movies" + ], + "url": "https://myanimelist.net/profile/{}", + "urlMain": "https://myanimelist.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Myspace": { + "errorType": "status_code", + "rank": 2261, + "tags": [ + "us", + "social" + ], + "url": "https://myspace.com/{}", + "urlMain": "https://myspace.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "NICommunityForum": { + "errorMsg": "The specified member cannot be found", + "errorType": "message", + "rank": 7940, + "tags": [ + "us" + ], + "url": "https://www.native-instruments.com/forum/members?username={}", + "urlMain": "https://www.native-instruments.com/forum/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "NPM": { + "errorType": "status_code", + "rank": 6318, + "tags": [ + "in" + ], + "url": "https://www.npmjs.com/~{}", + "urlMain": "https://www.npmjs.com/", + "username_claimed": "kennethsweezy", + "username_unclaimed": "noonewould" + }, + "NPM-Package": { + "errorType": "status_code", + "rank": 6318, + "tags": [ + "in" + ], + "url": "https://www.npmjs.com/package/{}", + "urlMain": "https://www.npmjs.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "NameMC (Minecraft.net skins)": { + "errorMsg": "Profiles: 0 results", + "errorType": "message", + "rank": 7213, + "tags": [ + "us" + ], + "url": "https://namemc.com/profile/{}", + "urlMain": "https://namemc.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "NationStates Nation": { + "errorMsg": "Was this your nation? It may have ceased to exist due to inactivity, but can rise again!", + "errorType": "message", + "rank": 53448, + "tags": [ + "us" + ], + "url": "https://nationstates.net/nation={}", + "urlMain": "https://nationstates.net", + "username_claimed": "the_holy_principality_of_saint_mark", + "username_unclaimed": "noonewould" + }, + "NationStates Region": { + "errorMsg": "does not exist.", + "errorType": "message", + "rank": 53448, + "tags": [ + "us" + ], + "url": "https://nationstates.net/region={}", + "urlMain": "https://nationstates.net", + "username_claimed": "the_west_pacific", + "username_unclaimed": "noonewould" + }, + "Newgrounds": { + "errorType": "status_code", + "rank": 6668, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "us" + ], + "url": "https://{}.newgrounds.com", + "urlMain": "https://newgrounds.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "OK": { + "errorType": "status_code", + "rank": 56, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$", + "tags": [ + "ru" + ], + "url": "https://ok.ru/{}", + "urlMain": "https://ok.ru/", + "username_claimed": "ok", + "username_unclaimed": "noonewouldeverusethis7" + }, + "OpenCollective": { + "errorType": "status_code", + "rank": 37503, + "tags": [ + "in" + ], + "url": "https://opencollective.com/{}", + "urlMain": "https://opencollective.com/", + "username_claimed": "sindresorhus", + "username_unclaimed": "noonewouldeverusethis7" + }, + "OpenStreetMap": { + "errorType": "status_code", + "rank": 7701, + "tags": [ + "in", + "social" + ], + "url": "https://www.openstreetmap.org/user/{}", + "urlMain": "https://www.openstreetmap.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Oracle Community": { + "errorType": "status_code", + "rank": 612, + "tags": [ + "us" + ], + "url": "https://community.oracle.com/people/{}", + "urlMain": "https://community.oracle.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Otzovik": { + "errorType": "status_code", + "rank": 1795, + "tags": [ + "ru" + ], + "url": "https://otzovik.com/profile/{}", + "urlMain": "https://otzovik.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "OurDJTalk": { + "errorMsg": "The specified member cannot be found", + "errorType": "message", + "rank": 3168225, + "url": "https://ourdjtalk.com/members?username={}", + "urlMain": "https://ourdjtalk.com/", + "username_claimed": "steve", + "username_unclaimed": "noonewouldeverusethis" + }, + "PCGamer": { + "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", + "errorType": "message", + "rank": 1095, + "tags": [ + "us" + ], + "url": "https://forums.pcgamer.com/members/?username={}", + "urlMain": "https://pcgamer.com", + "username_claimed": "admin", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PCPartPicker": { + "errorType": "status_code", + "rank": 2040, + "tags": [ + "us" + ], + "url": "https://pcpartpicker.com/user/{}", + "urlMain": "https://pcpartpicker.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PSNProfiles.com": { + "errorType": "response_url", + "errorUrl": "https://psnprofiles.com/?psnId={}", + "rank": 10643, + "tags": [ + "us" + ], + "url": "https://psnprofiles.com/{}", + "urlMain": "https://psnprofiles.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Packagist": { + "errorType": "response_url", + "errorUrl": "https://packagist.org/search/?q={}&reason=vendor_not_found", + "rank": 23510, + "tags": [ + "in" + ], + "url": "https://packagist.org/packages/{}/", + "urlMain": "https://packagist.org/", + "username_claimed": "psr", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pastebin": { + "errorType": "response_url", + "errorUrl": "https://pastebin.com/index", + "rank": 1303, + "tags": [ + "us", + "sharing" + ], + "url": "https://pastebin.com/u/{}", + "urlMain": "https://pastebin.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Patreon": { + "errorType": "status_code", + "rank": 346, + "tags": [ + "us", + "finance" + ], + "url": "https://www.patreon.com/{}", + "urlMain": "https://www.patreon.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Periscope": { + "errorType": "status_code", + "rank": 32930, + "tags": [ + "us", + "video" + ], + "url": "https://www.periscope.tv/{}/", + "urlMain": "https://www.periscope.tv/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Photobucket": { + "errorType": "status_code", + "rank": 3776, + "tags": [ + "us", + "images" + ], + "url": "https://photobucket.com/user/{}/library", + "urlMain": "https://photobucket.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pinkbike": { + "errorType": "status_code", + "rank": 7540, + "tags": [ + "us", + "hobby" + ], + "url": "https://www.pinkbike.com/u/{}/", + "urlMain": "https://www.pinkbike.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pinterest": { + "errorType": "status_code", + "rank": 173, + "tags": [ + "us", + "social" + ], + "url": "https://www.pinterest.com/{}/", + "urlMain": "https://www.pinterest.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PlayStore": { + "errorType": "status_code", + "rank": 1, + "tags": [ + "us" + ], + "url": "https://play.google.com/store/apps/developer?id={}", + "urlMain": "https://play.google.com/store", + "username_claimed": "Facebook", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pling": { + "errorType": "response_url", + "errorUrl": "https://www.pling.com/", + "rank": 92783, + "tags": [ + "in" + ], + "url": "https://www.pling.com/u/{}/", + "urlMain": "https://www.pling.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Plug.DJ": { + "errorType": "status_code", + "rank": 50895, + "tags": [ + "fr" + ], + "url": "https://plug.dj/@/{}", + "urlMain": "https://plug.dj/", + "username_claimed": "plug-dj-rock", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Pokemon Showdown": { + "errorType": "status_code", + "rank": 4967, + "tags": [ + "us" + ], + "url": "https://pokemonshowdown.com/users/{}", + "urlMain": "https://pokemonshowdown.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PokerStrategy": { + "errorType": "status_code", + "rank": 3414611, + "url": "http://www.pokerstrategy.net/user/{}/profile/", + "urlMain": "http://www.pokerstrategy.net", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Polygon": { + "errorType": "status_code", + "rank": 1254, + "tags": [ + "us" + ], + "url": "https://www.polygon.com/users/{}", + "urlMain": "https://www.polygon.com/", + "username_claimed": "swiftstickler", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ProductHunt": { + "errorMsg": "Product Hunt is a curation of the best new products", + "errorType": "message", + "rank": 10944, + "tags": [ + "us", + "tech" + ], + "url": "https://www.producthunt.com/@{}", + "urlMain": "https://www.producthunt.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PromoDJ": { + "errorType": "status_code", + "rank": 32551, + "tags": [ + "ru" + ], + "url": "http://promodj.com/{}", + "urlMain": "http://promodj.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Proza.ru": { + "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 7335, + "tags": [ + "ru", + "writing" + ], + "url": "https://www.proza.ru/avtor/{}", + "urlMain": "https://www.proza.ru/", + "username_claimed": "gpola", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Quora": { + "errorType": "response_url", + "errorUrl": "https://www.quora.com/profile/{}", + "rank": 283, + "tags": [ + "in" + ], + "url": "https://www.quora.com/profile/{}", + "urlMain": "https://www.quora.com/", + "username_claimed": "Matt-Riggsby", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Rajce.net": { + "errorType": "status_code", + "rank": 1761, + "tags": [ + "cz" + ], + "url": "https://{}.rajce.idnes.cz/", + "urlMain": "https://www.rajce.idnes.cz/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Rate Your Music": { + "errorType": "status_code", + "rank": 5714, + "tags": [ + "us" + ], + "url": "https://rateyourmusic.com/~{}", + "urlMain": "https://rateyourmusic.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Realmeye": { + "errorMsg": "Sorry, but we either:", + "errorType": "message", + "rank": 33097, + "tags": [ + "us" + ], + "url": "https://www.realmeye.com/player/{}", + "urlMain": "https://www.realmeye.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Redbubble": { + "errorType": "status_code", + "rank": 952, + "tags": [ + "us" + ], + "url": "https://www.redbubble.com/people/{}", + "urlMain": "https://www.redbubble.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "Reddit": { + "errorType": "status_code", + "rank": 20, + "tags": [ + "us", + "news" + ], + "url": "https://www.reddit.com/user/{}", + "urlMain": "https://www.reddit.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Repl.it": { + "errorMsg": "404", + "errorType": "message", + "rank": 3358, + "tags": [ + "us", + "coding" + ], + "url": "https://repl.it/@{}", + "urlMain": "https://repl.it/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ResearchGate": { + "errorType": "response_url", + "errorUrl": "https://www.researchgate.net/directory/profiles", + "rank": 146, + "regexCheck": "\\w+_\\w+", + "tags": [ + "in" + ], + "url": "https://www.researchgate.net/profile/{}", + "urlMain": "https://www.researchgate.net/", + "username_claimed": "John_Smith", + "username_unclaimed": "noonewould_everusethis7" + }, + "ReverbNation": { + "errorMsg": "Sorry, we couldn't find that page", + "errorType": "message", + "rank": 9137, + "tags": [ + "us" + ], + "url": "https://www.reverbnation.com/{}", + "urlMain": "https://www.reverbnation.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Roblox": { + "errorMsg": "Page cannot be found or no longer exists", + "errorType": "message", + "rank": 113, + "tags": [ + "us" + ], + "url": "https://www.roblox.com/user.aspx?username={}", + "urlMain": "https://www.roblox.com/", + "username_claimed": "bluewolfekiller", + "username_unclaimed": "noonewouldeverusethis7" + }, + "RubyGems": { + "errorType": "status_code", + "rank": 33064, + "tags": [ + "us" + ], + "url": "https://rubygems.org/profiles/{}", + "urlMain": "https://rubygems.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Samlib": { + "caseSentitive": true, + "errorType": "status_code", + "rank": 18297, + "tags": [ + "ru", + "writing" + ], + "url": "http://samlib.ru/e/{}", + "urlMain": "http://samlib.ru/", + "username_claimed": "e_melokumow", + "username_unclaimed": "noonewouldeverusethis" + }, + "Sbazar.cz": { + "errorType": "status_code", + "rank": 14449, + "tags": [ + "cz" + ], + "url": "https://www.sbazar.cz/{}", + "urlMain": "https://www.sbazar.cz/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Scratch": { + "errorType": "status_code", + "rank": 560, + "tags": [ + "us", + "coding" + ], + "url": "https://scratch.mit.edu/users/{}", + "urlMain": "https://scratch.mit.edu/", + "username_claimed": "griffpatch", + "username_unclaimed": "noonewould" + }, + "Scribd": { + "errorMsg": "Page not found", + "errorType": "message", + "rank": 277, + "tags": [ + "us", + "coding" + ], + "url": "https://www.scribd.com/{}", + "urlMain": "https://www.scribd.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ShitpostBot5000": { + "errorType": "status_code", + "rank": 1001949, + "url": "https://www.shitpostbot.com/user/{}", + "urlMain": "https://www.shitpostbot.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "Signal": { + "errorMsg": "Oops! That page doesn\u2019t exist or is private.", + "errorType": "message", + "rank": 939641, + "url": "https://community.signalusers.org/u/{}", + "urlMain": "https://community.signalusers.org", + "username_claimed": "jlund", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Slack": { + "errorType": "status_code", + "rank": 245, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "us" + ], + "url": "https://{}.slack.com", + "urlMain": "https://slack.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SlideShare": { + "errorType": "status_code", + "rank": 133, + "tags": [ + "in", + "presos" + ], + "url": "https://slideshare.net/{}", + "urlMain": "https://slideshare.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Smashcast": { + "errorType": "status_code", + "rank": 203497, + "tags": [ + "us" + ], + "url": "https://www.smashcast.tv/api/media/live/{}", + "urlMain": "https://www.smashcast.tv/", + "username_claimed": "hello", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Smule": { + "errorType": "status_code", + "rank": 7261, + "tags": [ + "in", + "music" + ], + "url": "https://www.smule.com/{}", + "urlMain": "https://www.smule.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SoundCloud": { + "errorType": "status_code", + "rank": 95, + "tags": [ + "us", + "music" + ], + "url": "https://soundcloud.com/{}", + "urlMain": "https://soundcloud.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SourceForge": { + "errorType": "status_code", + "rank": 430, + "tags": [ + "us", + "coding" + ], + "url": "https://sourceforge.net/u/{}", + "urlMain": "https://sourceforge.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Speedrun.com": { + "errorMsg": "not found.", + "errorType": "message", + "rank": 10971, + "tags": [ + "us" + ], + "url": "https://speedrun.com/user/{}", + "urlMain": "https://speedrun.com/", + "username_claimed": "3Tau", + "username_unclaimed": "noonewould" + }, + "Splits.io": { + "errorType": "status_code", + "rank": 580435, + "url": "https://splits.io/users/{}", + "urlMain": "https://splits.io", + "username_claimed": "cambosteve", + "username_unclaimed": "noonewould" + }, + "Sporcle": { + "errorType": "status_code", + "rank": 3281, + "tags": [ + "us", + "gaming" + ], + "url": "https://www.sporcle.com/user/{}/people", + "urlMain": "https://www.sporcle.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SportsRU": { + "errorType": "status_code", + "rank": 2657, + "tags": [ + "ru" + ], + "url": "https://www.sports.ru/profile/{}/", + "urlMain": "https://www.sports.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Spotify": { + "errorType": "status_code", + "errors": { + "Spotify is currently not available in your country.": "Access denied in your country, use proxy/vpn" + }, + "rank": 90, + "request_head_only": false, + "tags": [ + "us", + "music" + ], + "url": "https://open.spotify.com/user/{}", + "urlMain": "https://open.spotify.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Star Citizen": { + "errorType": "status_code", + "rank": 7463, + "tags": [ + "us" + ], + "url": "https://robertsspaceindustries.com/citizens/{}", + "urlMain": "https://robertsspaceindustries.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Steam": { + "errorMsg": "The specified profile could not be found", + "errorType": "message", + "rank": 179, + "tags": [ + "us", + "gaming" + ], + "url": "https://steamcommunity.com/id/{}", + "urlMain": "https://steamcommunity.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SteamGroup": { + "errorMsg": "No group could be retrieved for the given URL", + "errorType": "message", + "rank": 179, + "tags": [ + "us" + ], + "url": "https://steamcommunity.com/groups/{}", + "urlMain": "https://steamcommunity.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Steamid": { + "errorMsg": "

Profile not found
", + "errorType": "message", + "rank": 151277, + "tags": [ + "ru" + ], + "url": "https://steamid.uk/profile/{}", + "urlMain": "https://steamid.uk/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Stihi.ru": { + "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 5704, + "tags": [ + "ru", + "writing" + ], + "url": "https://www.stihi.ru/avtor/{}", + "urlMain": "https://www.stihi.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "SublimeForum": { + "errorType": "status_code", + "rank": 6907, + "tags": [ + "in" + ], + "url": "https://forum.sublimetext.com/u/{}", + "urlMain": "https://forum.sublimetext.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "T-MobileSupport": { + "errorType": "status_code", + "rank": 1452, + "tags": [ + "us" + ], + "url": "https://support.t-mobile.com/people/{}", + "urlMain": "https://support.t-mobile.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TamTam": { + "errorType": "response_url", + "errorUrl": "https://tamtam.chat/", + "rank": 98745, + "tags": [ + "ru" + ], + "url": "https://tamtam.chat/{}", + "urlMain": "https://tamtam.chat/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Taringa": { + "errorType": "status_code", + "rank": 1865, + "tags": [ + "ar", + "social" + ], + "url": "https://www.taringa.net/{}", + "urlMain": "https://taringa.net/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Telegram": { + "errorMsg": "twitter:title\" content=\"Telegram: Contact", + "errorType": "message", + "rank": 279, + "regexCheck": "^[a-zA-Z0-9_]{5,}$", + "tags": [ + "social", + "br" + ], + "url": "https://t.me/{}", + "urlMain": "https://t.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Teletype": { + "errorType": "status_code", + "rank": 12384, + "tags": [ + "in", + "writing" + ], + "url": "https://teletype.in/@{}", + "urlMain": "https://teletype.in", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Tellonym.me": { + "errorType": "status_code", + "rank": 24394, + "tags": [ + "fr" + ], + "url": "https://tellonym.me/{}", + "urlMain": "https://tellonym.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Tinder": { + "errorMsg": "twitter:title\" content=\"Tinder |", + "errorType": "message", + "rank": 1031, + "tags": [ + "us", + "dating" + ], + "url": "https://www.tinder.com/@{}", + "urlMain": "https://tinder.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Toster": { + "errorType": "status_code", + "rank": 1363, + "tags": [ + "ru" + ], + "url": "https://qna.habr.com/user/{}", + "urlMain": "https://qna.habr.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TrackmaniaLadder": { + "errorMsg": "player unknown or invalid", + "errorType": "message", + "rank": 454325, + "tags": [ + "au" + ], + "url": "http://en.tm-ladder.com/{}_rech.php", + "urlMain": "http://en.tm-ladder.com/index.php", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "TradingView": { + "errorType": "status_code", + "rank": 144, + "tags": [ + "us" + ], + "url": "https://www.tradingview.com/u/{}/", + "urlMain": "https://www.tradingview.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Trakt": { + "errorType": "status_code", + "rank": 7049, + "tags": [ + "fr" + ], + "url": "https://www.trakt.tv/users/{}", + "urlMain": "https://www.trakt.tv/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TrashboxRU": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 15898, + "regexCheck": "^[A-Za-z0-9_-]{3,16}$", + "tags": [ + "ru" + ], + "url": "https://trashbox.ru/users/{}", + "urlMain": "https://trashbox.ru/", + "username_claimed": "blue", + "username_unclaimed": "never-never-ever" + }, + "Trello": { + "errorMsg": "model not found", + "errorType": "message", + "rank": 163, + "tags": [ + "us" + ], + "url": "https://trello.com/{}", + "urlMain": "https://trello.com/", + "urlProbe": "https://trello.com/1/Members/{}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TripAdvisor": { + "errorMsg": "This page is on vacation\u2026", + "errorType": "message", + "rank": 574, + "tags": [ + "us", + "travel" + ], + "url": "https://tripadvisor.com/members/{}", + "urlMain": "https://tripadvisor.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Twitch": { + "errorType": "status_code", + "rank": 32, + "tags": [ + "us" + ], + "url": "https://www.twitch.tv/{}", + "urlMain": "https://www.twitch.tv/", + "urlProbe": "https://m.twitch.tv/{}", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Twitter": { + "errorMsg": "Sorry, that page doesn't exist", + "errorType": "message", + "headers": { + "User-Agent": "Mozilla" + }, + "rank": 63, + "request_head_only": false, + "tags": [ + "us", + "global", + "social" + ], + "url": "https://twitter.com/{}", + "urlMain": "https://www.twitter.com/", + "urlProbe": "https://mobile.twitter.com/{}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Typeracer": { + "errorMsg": "Profile Not Found", + "errorType": "message", + "rank": 8652, + "tags": [ + "us" + ], + "url": "https://data.typeracer.com/pit/profile?user={}", + "urlMain": "https://typeracer.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Ultimate-Guitar": { + "errorType": "status_code", + "rank": 628, + "tags": [ + "us" + ], + "url": "https://ultimate-guitar.com/u/{}", + "urlMain": "https://ultimate-guitar.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Unsplash": { + "errorType": "status_code", + "rank": 404, + "tags": [ + "us" + ], + "url": "https://unsplash.com/@{}", + "urlMain": "https://unsplash.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "VK": { + "errorType": "response_url", + "errorUrl": "https://www.quora.com/profile/{}", + "rank": 24, + "tags": [ + "ru", + "social" + ], + "url": "https://vk.com/{}", + "urlMain": "https://vk.com/", + "username_claimed": "smith", + "username_unclaimed": "blah62831" + }, + "VSCO": { + "errorType": "status_code", + "rank": 5097, + "tags": [ + "us" + ], + "url": "https://vsco.co/{}", + "urlMain": "https://vsco.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Velomania": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", + "errorType": "message", + "rank": 101006, + "tags": [ + "ru" + ], + "url": "https://forum.velomania.ru/member.php?username={}", + "urlMain": "https://forum.velomania.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Venmo": { + "errorType": "status_code", + "rank": 5489, + "tags": [ + "us", + "finance" + ], + "url": "https://venmo.com/{}", + "urlMain": "https://venmo.com/", + "username_claimed": "jenny", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Vimeo": { + "errorType": "status_code", + "rank": 164, + "tags": [ + "us", + "video" + ], + "url": "https://vimeo.com/{}", + "urlMain": "https://vimeo.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Virgool": { + "errorMsg": "\u06f4\u06f0\u06f4", + "errorType": "message", + "rank": 2435, + "tags": [ + "ir" + ], + "url": "https://virgool.io/@{}", + "urlMain": "https://virgool.io/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "VirusTotal": { + "errorMsg": "not found", + "errorType": "message", + "rank": 5588, + "tags": [ + "in" + ], + "url": "https://www.virustotal.com/ui/users/{}/trusted_users", + "urlMain": "https://www.virustotal.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Wattpad": { + "errorMsg": "userError-404", + "errorType": "message", + "rank": 592, + "tags": [ + "in", + "social" + ], + "url": "https://www.wattpad.com/user/{}", + "urlMain": "https://www.wattpad.com/", + "username_claimed": "Dogstho7951", + "username_unclaimed": "noonewouldeverusethis7" + }, + "We Heart It": { + "errorMsg": "Oops! You've landed on a moving target!", + "errorType": "message", + "rank": 3164, + "tags": [ + "in" + ], + "url": "https://weheartit.com/{}", + "urlMain": "https://weheartit.com/", + "username_claimed": "ventivogue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "WebNode": { + "errorType": "status_code", + "rank": 19685, + "tags": [ + "cz" + ], + "url": "https://{}.webnode.cz/", + "urlMain": "https://www.webnode.cz/", + "username_claimed": "radkabalcarova", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Whonix Forum": { + "errorType": "status_code", + "rank": 206783, + "tags": [ + "id" + ], + "url": "https://forums.whonix.org/u/{}", + "urlMain": "https://forums.whonix.org/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Wikidot": { + "errorMsg": "User does not exist.", + "errorType": "message", + "rank": 3283, + "tags": [ + "us" + ], + "url": "http://www.wikidot.com/user:info/{}", + "urlMain": "http://www.wikidot.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "WikimapiaProfile": { + "errorMsg": "January 01, 1970", + "errorType": "message", + "rank": 7174, + "request_head_only": false, + "tags": [ + "ru" + ], + "type": "wikimapia_uid", + "url": "http://wikimapia.org/user/{}", + "urlMain": "http://wikimapia.org", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "WikimapiaSearch": { + "caseSentitive": true, + "errorMsg": "20", + "errorType": "message", + "rank": 7174, + "request_head_only": false, + "tags": [ + "ru" + ], + "url": "http://wikimapia.org/user/tools/users_rating/?username={}", + "urlMain": "http://wikimapia.org", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "Wikipedia": { + "errorMsg": "is not registered", + "errorType": "message", + "rank": 12, + "tags": [ + "", + "us" + ], + "url": "https://www.wikipedia.org/wiki/User:{}", + "urlMain": "https://www.wikipedia.org/", + "username_claimed": "Hoadlck", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Wix": { + "errorType": "status_code", + "rank": 194, + "tags": [ + "us" + ], + "url": "https://{}.wix.com", + "urlMain": "https://wix.com/", + "username_claimed": "support", + "username_unclaimed": "noonewouldeverusethis7" + }, + "WordPress": { + "errorType": "response_url", + "errorUrl": "wordpress.com/typo/?subdomain=", + "rank": 55, + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "tags": [ + "us", + "blog" + ], + "url": "https://{}.wordpress.com/", + "urlMain": "https://wordpress.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "WordPressOrg": { + "errorType": "response_url", + "errorUrl": "https://wordpress.org", + "rank": 650, + "tags": [ + "in" + ], + "url": "https://profiles.wordpress.org/{}/", + "urlMain": "https://wordpress.org/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Yandex": { + "errorType": "status_code", + "rank": 58, + "tags": [ + "global", + "ru" + ], + "type": "yandex_public_id", + "url": "https://yandex.ru/user/{}", + "urlMain": "https://yandex.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YandexCollection": { + "errorType": "status_code", + "errors": { + "action=\"/checkcaptcha\" onsubmit": "Captcha detected, use proxy/vpn" + }, + "rank": 58, + "request_head_only": false, + "tags": [ + "global", + "ru" + ], + "url": "https://yandex.ru/collections/user/{}/", + "urlMain": "https://yandex.ru/collections/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "YandexLocal": { + "errorType": "status_code", + "rank": 58, + "tags": [ + "global", + "ru" + ], + "type": "yandex_public_id", + "url": "https://local.yandex.ru/users/{}", + "urlMain": "https://local.yandex.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YandexMusic": { + "errorType": "status_code", + "headers": { + "Referer": "https://music.yandex.ru/users/test/playlists" + }, + "rank": 58, + "request_head_only": false, + "tags": [ + "global", + "ru" + ], + "type": "username", + "url": "https://music.yandex.ru/users/{}/playlists", + "urlMain": "https://music.yandex.ru/", + "urlProbe": "https://music.yandex.ru/handlers/library.jsx?owner={}", + "username_claimed": "YandexMusic", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YandexZnatoki": { + "errorType": "status_code", + "rank": 58, + "tags": [ + "global", + "ru" + ], + "type": "yandex_public_id", + "url": "https://yandex.ru/q/profile/{}", + "urlMain": "https://yandex.ru/q/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "YouNow": { + "errorMsg": "No users found", + "errorType": "message", + "rank": 13960, + "tags": [ + "be" + ], + "url": "https://www.younow.com/{}/", + "urlMain": "https://www.younow.com/", + "urlProbe": "https://api.younow.com/php/api/broadcast/info/user={}/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "YouPic": { + "errorType": "status_code", + "rank": 23500, + "tags": [ + "sd" + ], + "url": "https://youpic.com/photographer/{}/", + "urlMain": "https://youpic.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "YouTube": { + "errorMsg": "Not Found", + "errorType": "message", + "rank": 2, + "tags": [ + "us", + "video" + ], + "url": "https://www.youtube.com/{}", + "urlMain": "https://www.youtube.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Zhihu": { + "errorType": "response_url", + "errorUrl": "https://www.zhihu.com/people/{}", + "rank": 137, + "tags": [ + "cn" + ], + "url": "https://www.zhihu.com/people/{}", + "urlMain": "https://www.zhihu.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Zomato": { + "errorType": "status_code", + "headers": { + "Accept-Language": "en-US,en;q=0.9" + }, + "rank": 2344, + "tags": [ + "in", + "food" + ], + "url": "https://www.zomato.com/pl/{}/foodjourney", + "urlMain": "https://www.zomato.com/", + "username_claimed": "deepigoyal", + "username_unclaimed": "noonewouldeverusethis7" + }, + "akniga": { + "errorType": "status_code", + "rank": 11202, + "tags": [ + "ru" + ], + "url": "https://akniga.org/profile/{}", + "urlMain": "https://akniga.org/profile/blue/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "allmylinks": { + "errorMsg": "Page not found", + "errorType": "message", + "rank": 26598, + "tags": [ + "us" + ], + "url": "https://allmylinks.com/{}", + "urlMain": "https://allmylinks.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "aminoapp": { + "errorType": "status_code", + "rank": 285, + "tags": [ + "br" + ], + "url": "https://aminoapps.com/u/{}", + "urlMain": "https://aminoapps.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "authorSTREAM": { + "errorType": "status_code", + "rank": 8835, + "tags": [ + "in", + "presos" + ], + "url": "http://www.authorstream.com/{}/", + "urlMain": "http://www.authorstream.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "babyRU": { + "errorMsg": "\u0423\u043f\u0441, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0438\u0441\u043a\u0430\u043b\u0438, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442", + "errorType": "message", + "rank": 6069, + "tags": [ + "ru" + ], + "url": "https://www.baby.ru/u/{}/", + "urlMain": "https://www.baby.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "babyblogRU": { + "errorType": "status_code", + "rank": 14463, + "tags": [ + "ru" + ], + "url": "https://www.babyblog.ru/user/info/{}", + "urlMain": "https://www.babyblog.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "chaos.social": { + "errorType": "status_code", + "rank": 1676076, + "url": "https://chaos.social/@{}", + "urlMain": "https://chaos.social/", + "username_claimed": "rixx", + "username_unclaimed": "noonewouldeverusethis7" + }, + "couchsurfing": { + "errorType": "status_code", + "rank": 12793, + "tags": [ + "in" + ], + "url": "https://www.couchsurfing.com/people/{}", + "urlMain": "https://www.couchsurfing.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "d3RU": { + "errorType": "status_code", + "rank": 38372, + "tags": [ + "ru" + ], + "url": "https://d3.ru/user/{}/posts", + "urlMain": "https://d3.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "dailykos": { + "errorType": "status_code", + "rank": 5757, + "tags": [ + "us" + ], + "url": "https://www.dailykos.com/user/{}", + "urlMain": "https://www.dailykos.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "datingRU": { + "errorType": "status_code", + "rank": 71209, + "tags": [ + "ru" + ], + "url": "http://dating.ru/{}", + "urlMain": "http://dating.ru", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "devRant": { + "errorType": "response_url", + "errorUrl": "https://devrant.com/", + "rank": 93139, + "tags": [ + "in", + "social" + ], + "url": "https://devrant.com/users/{}", + "urlMain": "https://devrant.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "drive2": { + "errorType": "status_code", + "rank": 1484, + "tags": [ + "ru" + ], + "url": "https://www.drive2.ru/users/{}", + "urlMain": "https://www.drive2.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "eGPU": { + "errorType": "status_code", + "rank": 80474, + "tags": [ + "jp" + ], + "url": "https://egpu.io/forums/profile/{}/", + "urlMain": "https://egpu.io/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, + "easyen": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 21091, + "tags": [ + "ru" + ], + "url": "https://easyen.ru/index/8-0-{}", + "urlMain": "https://easyen.ru/", + "username_claimed": "wd", + "username_unclaimed": "noonewouldeverusethis7" + }, + "eintracht": { + "errorType": "status_code", + "rank": 275478, + "url": "https://community.eintracht.de/fans/{}", + "urlMain": "https://eintracht.de", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "fixya": { + "errorType": "status_code", + "rank": 5085, + "tags": [ + "us" + ], + "url": "https://www.fixya.com/users/{}", + "urlMain": "https://www.fixya.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "fl": { + "errorType": "status_code", + "rank": 53667, + "tags": [ + "ru" + ], + "url": "https://www.fl.ru/users/{}", + "urlMain": "https://www.fl.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "forum_guns": { + "errorMsg": "action=https://forum.guns.ru/forummisc/blog/search", + "errorType": "message", + "rank": 24198, + "tags": [ + "ru" + ], + "url": "https://forum.guns.ru/forummisc/blog/{}", + "urlMain": "https://forum.guns.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "forumhouseRU": { + "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", + "errorType": "message", + "rank": 12858, + "tags": [ + "ru" + ], + "url": "https://www.forumhouse.ru/members/?username={}", + "urlMain": "https://www.forumhouse.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "geocaching": { + "errorType": "status_code", + "rank": 11142, + "tags": [ + "social", + "de" + ], + "url": "https://www.geocaching.com/profile/?u={}", + "urlMain": "https://www.geocaching.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "gfycat": { + "errorType": "status_code", + "rank": 1012, + "tags": [ + "us" + ], + "url": "https://gfycat.com/@{}", + "urlMain": "https://gfycat.com/", + "username_claimed": "Test", + "username_unclaimed": "noonewouldeverusethis7" + }, + "habr": { + "errorType": "status_code", + "rank": 1363, + "tags": [ + "ru" + ], + "url": "https://habr.com/ru/users/{}", + "urlMain": "https://habr.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "hackster": { + "errorType": "status_code", + "rank": 19525, + "tags": [ + "us" + ], + "url": "https://www.hackster.io/{}", + "urlMain": "https://www.hackster.io", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "hunting": { + "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", + "errorType": "message", + "rank": 145363, + "tags": [ + "ru" + ], + "url": "https://www.hunting.ru/forum/members/?username={}", + "urlMain": "https://www.hunting.ru/forum/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "iMGSRC.RU": { + "errorType": "response_url", + "errorUrl": "https://imgsrc.ru/", + "rank": 16613, + "tags": [ + "es", + "ru" + ], + "url": "https://imgsrc.ru/main/user.php?user={}", + "urlMain": "https://imgsrc.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "igromania": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", + "errorType": "message", + "rank": 12173, + "tags": [ + "gaming", + "ru" + ], + "url": "http://forum.igromania.ru/member.php?username={}", + "urlMain": "http://forum.igromania.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "interpals": { + "errorMsg": "The requested user does not exist or is inactive", + "errorType": "message", + "rank": 7165, + "tags": [ + "sd", + "dating" + ], + "url": "https://www.interpals.net/{}", + "urlMain": "https://www.interpals.net/", + "username_claimed": "blue", + "username_unclaimed": "noneownsthisusername" + }, + "irecommend": { + "errorType": "status_code", + "rank": 2197, + "tags": [ + "ru" + ], + "url": "https://irecommend.ru/users/{}", + "urlMain": "https://irecommend.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "jeuxvideo": { + "errorMsg": "Vous \u00eates", + "errorType": "message", + "rank": 1737, + "tags": [ + "fr", + "gaming" + ], + "url": "http://www.jeuxvideo.com/profil/{}?mode=infos", + "urlMain": "http://www.jeuxvideo.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "kofi": { + "errorMsg": "Make income from your art!", + "errorType": "message", + "rank": 9734, + "tags": [ + "us", + "ru", + "freelance" + ], + "url": "https://ko-fi.com/{}", + "urlMain": "https://ko-fi.com", + "username_claimed": "yeahkenny", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "kwork": { + "errorType": "status_code", + "rank": 6655, + "tags": [ + "ru" + ], + "url": "https://kwork.ru/user/{}", + "urlMain": "https://www.kwork.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "labpentestit": { + "errorType": "response_url", + "errorUrl": "https://lab.pentestit.ru/{}", + "rank": 2343179, + "tags": [ + "cybersec" + ], + "url": "https://lab.pentestit.ru/profile/{}", + "urlMain": "https://lab.pentestit.ru/", + "username_claimed": "CSV", + "username_unclaimed": "noonewouldeverusethis7" + }, + "last.fm": { + "errorType": "status_code", + "rank": 1849, + "tags": [ + "us", + "music" + ], + "url": "https://last.fm/user/{}", + "urlMain": "https://last.fm/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "leasehackr": { + "errorType": "status_code", + "rank": 66996, + "tags": [ + "us" + ], + "url": "https://forum.leasehackr.com/u/{}/summary/", + "urlMain": "https://forum.leasehackr.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis" + }, + "livelib": { + "errorType": "status_code", + "rank": 3429, + "tags": [ + "reading", + "ru" + ], + "url": "https://www.livelib.ru/reader/{}", + "urlMain": "https://www.livelib.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mastodon.cloud": { + "errorType": "status_code", + "rank": 1349749, + "url": "https://mastodon.cloud/@{}", + "urlMain": "https://mastodon.cloud/", + "username_claimed": "TheAdmin", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mastodon.social": { + "errorType": "status_code", + "rank": 1676076, + "url": "https://mastodon.social/@{}", + "urlMain": "https://chaos.social/", + "username_claimed": "Gargron", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mastodon.technology": { + "errorType": "status_code", + "rank": 1034667, + "tags": [ + "th" + ], + "url": "https://mastodon.technology/@{}", + "urlMain": "https://mastodon.xyz/", + "username_claimed": "ashfurrow", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mastodon.xyz": { + "errorType": "status_code", + "rank": 1034667, + "tags": [ + "th" + ], + "url": "https://mastodon.xyz/@{}", + "urlMain": "https://mastodon.xyz/", + "username_claimed": "TheKinrar", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mercadolivre": { + "errorType": "status_code", + "rank": 186, + "tags": [ + "br" + ], + "url": "https://www.mercadolivre.com.br/perfil/{}", + "urlMain": "https://www.mercadolivre.com.br", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "metacritic": { + "errorMsg": "User not found", + "errorType": "message", + "rank": 2257, + "regexCheck": "^(?![-_])[A-Za-z0-9-_]{3,15}$", + "tags": [ + "us" + ], + "url": "https://www.metacritic.com/user/{}", + "urlMain": "https://www.metacritic.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewould" + }, + "mixer.com": { + "errorType": "status_code", + "rank": 2069, + "tags": [ + "us" + ], + "url": "https://mixer.com/{}", + "urlMain": "https://mixer.com/", + "urlProbe": "https://mixer.com/api/v1/channels/{}", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "moikrug": { + "errorType": "status_code", + "rank": 186785, + "tags": [ + "us" + ], + "url": "https://moikrug.ru/{}", + "urlMain": "https://moikrug.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "mstdn.io": { + "errorType": "status_code", + "rank": 1933720, + "url": "https://mstdn.io/@{}", + "urlMain": "https://mstdn.io/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "nightbot": { + "errorType": "status_code", + "rank": 10092, + "tags": [ + "us" + ], + "url": "https://nightbot.tv/t/{}/commands", + "urlMain": "https://nightbot.tv/", + "urlProbe": "https://api.nightbot.tv/1/channels/t/{}", + "username_claimed": "green", + "username_unclaimed": "noonewouldeverusethis" + }, + "nnRU": { + "errorType": "status_code", + "rank": 0, + "url": "https://{}.www.nn.ru/", + "urlMain": "https://https://www.nn.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "notabug.org": { + "errorType": "status_code", + "rank": 155148, + "url": "https://notabug.org/{}", + "urlMain": "https://notabug.org/", + "urlProbe": "https://notabug.org/{}/followers", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "note": { + "errorType": "status_code", + "rank": 834, + "tags": [ + "jp" + ], + "url": "https://note.com/{}", + "urlMain": "https://note.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "opennet": { + "errorMsg": "\u0418\u043c\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e", + "errorType": "message", + "rank": 63879, + "regexCheck": "^[^-]+$", + "tags": [ + "ru" + ], + "url": "https://www.opennet.ru/~{}", + "urlMain": "https://www.opennet.ru/", + "username_claimed": "anonismus", + "username_unclaimed": "noneownsthisusername" + }, + "opensource": { + "errorType": "status_code", + "rank": 7233, + "tags": [ + "in" + ], + "url": "https://opensource.com/users/{}", + "urlMain": "https://opensource.com/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "osu!": { + "errorType": "status_code", + "rank": 4527, + "tags": [ + "us" + ], + "url": "https://osu.ppy.sh/users/{}", + "urlMain": "https://osu.ppy.sh/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "phpRU": { + "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", + "errorType": "message", + "rank": 115666, + "tags": [ + "ru" + ], + "url": "https://php.ru/forum/members/?username={}", + "urlMain": "https://php.ru/forum/", + "username_claimed": "apple", + "username_unclaimed": "noonewouldeverusethis7" + }, + "pikabu": { + "errorType": "status_code", + "rank": 1021, + "tags": [ + "ru" + ], + "url": "https://pikabu.ru/@{}", + "urlMain": "https://pikabu.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "pr0gramm": { + "errorType": "status_code", + "rank": 4176, + "tags": [ + "de" + ], + "url": "https://pr0gramm.com/api/profile/info?name={}", + "urlMain": "https://pr0gramm.com/", + "username_claimed": "cha0s", + "username_unclaimed": "noonewouldeverusethis123123123123123123" + }, + "pvpru": { + "errorType": "status_code", + "errors": { + "Access denied": "Cloudflare security protection detected" + }, + "rank": 270432, + "request_head_only": false, + "tags": [ + "ru" + ], + "url": "https://pvpru.com/board/member.php?username={}&tab=aboutme#aboutme", + "urlMain": "https://pvpru.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "radio_echo_msk": { + "errorType": "status_code", + "rank": 1574, + "tags": [ + "ru" + ], + "url": "https://echo.msk.ru/users/{}", + "urlMain": "https://echo.msk.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "radioskot": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 138697, + "regexCheck": "^[^-]+$", + "tags": [ + "ru" + ], + "url": "https://radioskot.ru/index/8-0-{}", + "urlMain": "https://radioskot.ru/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "satsisRU": { + "errorType": "status_code", + "rank": 322626, + "tags": [ + "ru" + ], + "url": "https://satsis.info/user/{}", + "urlMain": "https://satsis.info/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, + "segmentfault": { + "errorType": "status_code", + "rank": 836, + "tags": [ + "cn" + ], + "url": "https://segmentfault.com/u/{}", + "urlMain": "https://segmentfault.com/", + "username_claimed": "bule", + "username_unclaimed": "noonewouldeverusethis7" + }, + "social.tchncs.de": { + "errorType": "status_code", + "rank": 490342, + "tags": [ + "in" + ], + "url": "https://social.tchncs.de/@{}", + "urlMain": "https://social.tchncs.de/", + "username_claimed": "Milan", + "username_unclaimed": "noonewouldeverusethis7" + }, + "soylentnews": { + "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", + "errorType": "message", + "rank": 557006, + "url": "https://soylentnews.org/~{}", + "urlMain": "https://soylentnews.org", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "sparkpeople": { + "errorMsg": "We couldn't find that user", + "errorType": "message", + "rank": 16989, + "tags": [ + "us" + ], + "url": "https://www.sparkpeople.com/mypage.asp?id={}", + "urlMain": "https://www.sparkpeople.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "spletnik": { + "errorType": "status_code", + "rank": 8754, + "tags": [ + "ru" + ], + "url": "https://spletnik.ru/user/{}", + "urlMain": "https://spletnik.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "svidbook": { + "errorType": "status_code", + "rank": 4592288, + "url": "https://www.svidbook.ru/user/{}", + "urlMain": "https://www.svidbook.ru/", + "username_claimed": "green", + "username_unclaimed": "noonewouldeverusethis7" + }, + "tracr.co": { + "errorMsg": "No search results", + "errorType": "message", + "rank": 993155, + "regexCheck": "^[A-Za-z0-9]{2,32}$", + "tags": [ + "gaming", + "discord" + ], + "url": "https://tracr.co/users/1/{}", + "urlMain": "https://tracr.co/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "travellerspoint": { + "errorMsg": "Wooops. Sorry!", + "errorType": "message", + "rank": 83396, + "tags": [ + "us" + ], + "url": "https://www.travellerspoint.com/users/{}", + "urlMain": "https://www.travellerspoint.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "uid": { + "errorType": "status_code", + "rank": 28986, + "tags": [ + "ru" + ], + "url": "http://uid.me/{}", + "urlMain": "https://uid.me/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, + "warriorforum": { + "errorType": "status_code", + "rank": 3745, + "tags": [ + "us" + ], + "url": "https://www.warriorforum.com/members/{}.html", + "urlMain": "https://www.warriorforum.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, + "windy": { + "errorType": "status_code", + "rank": 1851, + "tags": [ + "pl" + ], + "url": "https://community.windy.com/user/{}", + "urlMain": "https://windy.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + } } \ No newline at end of file diff --git a/site_list.py b/site_list.py index 63b6ebba6..bc2d82707 100644 --- a/site_list.py +++ b/site_list.py @@ -4,70 +4,87 @@ import json import sys import requests +import logging import threading import xml.etree.ElementTree as ET from datetime import datetime from argparse import ArgumentParser, RawDescriptionHelpFormatter -pool = list() def get_rank(domain_to_query, dest): - #Retrieve ranking data via alexa API url = f"http://data.alexa.com/data?cli=10&url={domain_to_query}" xml_data = requests.get(url).text root = ET.fromstring(xml_data) + try: #Get ranking for this site. - dest['rank'] = int(root.find(".//REACH").attrib["RANK"]) - except: - #We did not find the rank for some reason. + dest['rank'] = int(root.find('.//REACH').attrib['RANK']) + country = root.find('.//COUNTRY') + if not country is None and country.attrib: + country_code = country.attrib['CODE'] + tags = set(dest.get('tags', [])) + if country_code: + tags.add(country_code.lower()) + dest['tags'] = sorted(list(tags)) + except Exception as e: + logging.error(e) + # We did not find the rank for some reason. print(f"Error retrieving rank information for '{domain_to_query}'") print(f" Returned XML is |{xml_data}|") return -parser = ArgumentParser(formatter_class=RawDescriptionHelpFormatter - ) -parser.add_argument("--rank","-r", - action="store_true", dest="rank", default=False, - help="Update all website ranks (not recommended)." - ) -args = parser.parse_args() - -with open("sherlock/resources/data.json", "r", encoding="utf-8") as data_file: - data = json.load(data_file) - -with open("sites.md", "w") as site_file: - data_length = len(data) - site_file.write(f'## List Of Supported Sites ({data_length} Sites In Total!)\n') - - for social_network in data: - url_main = data.get(social_network).get("urlMain") - data.get(social_network)["rank"] = 0 - if args.rank: + +if __name__ == '__main__': + parser = ArgumentParser(formatter_class=RawDescriptionHelpFormatter + ) + parser.add_argument("--base","-b", metavar="BASE_FILE", + dest="base_file", default="maigret/resources/data.json", + help="JSON file with sites data to update.") + + pool = list() + + args = parser.parse_args() + + with open(args.base_file, "r", encoding="utf-8") as data_file: + data = json.load(data_file) + + with open("sites.md", "w") as site_file: + data_length = len(data) + site_file.write(f'## List of supported sites: total {data_length}\n') + + for social_network in data: + url_main = data.get(social_network).get("urlMain") + data.get(social_network)["rank"] = 0 th = threading.Thread(target=get_rank, args=(url_main, data.get(social_network))) - else: - th = None - pool.append((social_network, url_main, th)) - if args.rank: + pool.append((social_network, url_main, th)) th.start() - index = 1 - for social_network, url_main, th in pool: - if args.rank: + index = 1 + for social_network, url_main, th in pool: th.join() - site_file.write(f'{index}. [{social_network}]({url_main})\n') - sys.stdout.write("\r{0}".format(f"Updated {index} out of {data_length} entries")) - sys.stdout.flush() - index = index + 1 + sys.stdout.write("\r{0}".format(f"Updated {index} out of {data_length} entries")) + sys.stdout.flush() + index = index + 1 + + sites_full_list = [(site, site_data['rank']) for site, site_data in data.items()] + sites_full_list.sort(reverse=False, key=lambda x: x[1]) + + while sites_full_list[0][1] == 0: + site = sites_full_list.pop(0) + sites_full_list.append(site) + + for num, site_tuple in enumerate(sites_full_list): + site, rank = site_tuple + url_main = data[site]['urlMain'] + site_file.write(f'{num+1}. [{site}]({url_main}), top {rank}\n') - if args.rank: site_file.write(f'\nAlexa.com rank data fetched at ({datetime.utcnow()} UTC)\n') -sorted_json_data = json.dumps(data, indent=2, sort_keys=True) + sorted_json_data = json.dumps(data, indent=2, sort_keys=True) -with open("sherlock/resources/data.json", "w") as data_file: - data_file.write(sorted_json_data) + with open(args.base_file, "w") as data_file: + data_file.write(sorted_json_data) -print("\nFinished updating supported site listing!") + print("\nFinished updating supported site listing!") diff --git a/sites.md b/sites.md index 452fb3101..6e7357923 100644 --- a/sites.md +++ b/sites.md @@ -1,303 +1,313 @@ -## List Of Supported Sites (299 Sites In Total!) -1. [2Dimensions](https://2Dimensions.com/) -2. [3dnews](http://forum.3dnews.ru/) -3. [4pda](https://4pda.ru/) -4. [500px](https://500px.com/) -5. [7Cups](https://www.7cups.com/) -6. [About.me](https://about.me/) -7. [Academia.edu](https://www.academia.edu/) -8. [Alik.cz](https://www.alik.cz/) -9. [AllTrails](https://www.alltrails.com/) -10. [Anobii](https://www.anobii.com/) -11. [Aptoide](https://en.aptoide.com/) -12. [Archive.org](https://archive.org) -13. [Asciinema](https://asciinema.org) -14. [Ask Fedora](https://ask.fedoraproject.org/) -15. [AskFM](https://ask.fm/) -16. [Audiojungle](https://audiojungle.net/) -17. [Avizo](https://www.avizo.cz/) -18. [BLIP.fm](https://blip.fm/) -19. [BOOTH](https://booth.pm/) -20. [Badoo](https://badoo.com/) -21. [Bandcamp](https://www.bandcamp.com/) -22. [Bazar.cz](https://www.bazar.cz/) -23. [Behance](https://www.behance.net/) -24. [BitBucket](https://bitbucket.org/) -25. [BitCoinForum](https://bitcoinforum.com) -26. [Blogger](https://www.blogger.com/) -27. [BodyBuilding](https://bodyspace.bodybuilding.com/) -28. [Bookcrossing](https://www.bookcrossing.com/) -29. [BuyMeACoffee](https://www.buymeacoffee.com/) -30. [BuzzFeed](https://buzzfeed.com/) -31. [CNET](https://www.cnet.com/) -32. [Carbonmade](https://carbonmade.com/) -33. [Career.habr](https://career.habr.com/) -34. [CashMe](https://cash.me/) -35. [Cent](https://cent.co/) -36. [Championat](https://www.championat.com/) -37. [Chatujme.cz](https://chatujme.cz/) -38. [Chess](https://www.chess.com/ru/) -39. [Cloob](https://www.cloob.com/) -40. [CloudflareCommunity](https://community.cloudflare.com/) -41. [Clozemaster](https://www.clozemaster.com) -42. [Codecademy](https://www.codecademy.com/) -43. [Codechef](https://www.codechef.com/) -44. [Coderwall](https://coderwall.com/) -45. [Codewars](https://www.codewars.com) -46. [Contently](https://contently.com/) -47. [Coroflot](https://coroflot.com/) -48. [Cracked](https://www.cracked.com/) -49. [CreativeMarket](https://creativemarket.com/) -50. [Crevado](https://crevado.com/) -51. [Crunchyroll](https://www.crunchyroll.com/) -52. [DEV Community](https://dev.to/) -53. [DailyMotion](https://www.dailymotion.com/) -54. [Designspiration](https://www.designspiration.net/) -55. [DeviantART](https://deviantart.com) -56. [Discogs](https://www.discogs.com/) -57. [Discuss.Elastic.co](https://discuss.elastic.co/) -58. [Disqus](https://disqus.com/) -59. [Docker Hub](https://hub.docker.com/) -60. [Dribbble](https://dribbble.com/) -61. [Duolingo](https://duolingo.com/) -62. [Ebay](https://www.ebay.com/) -63. [Ello](https://ello.co/) -64. [Etsy](https://www.etsy.com/) -65. [Euw](https://euw.op.gg/) -66. [EyeEm](https://www.eyeem.com/) -67. [F3.cool](https://f3.cool/) -68. [Facebook](https://www.facebook.com/) -69. [Facenama](https://facenama.com/) -70. [Fandom](https://www.fandom.com/) -71. [Filmogs](https://www.filmo.gs/) -72. [Fiverr](https://www.fiverr.com/) -73. [Flickr](https://www.flickr.com/) -74. [Flightradar24](https://www.flightradar24.com/) -75. [Flipboard](https://flipboard.com/) -76. [Football](https://www.rusfootball.info/) -77. [FortniteTracker](https://fortnitetracker.com/challenges) -78. [Freelance.habr](https://freelance.habr.com/) -79. [Freelancer.com](https://www.freelancer.com/) -80. [Freesound](https://freesound.org/) -81. [GDProfiles](https://gdprofiles.com/) -82. [Gamespot](https://www.gamespot.com/) -83. [Giphy](https://giphy.com/) -84. [GitHub](https://www.github.com/) -85. [GitLab](https://gitlab.com/) -86. [Gitee](https://gitee.com/) -87. [GoodReads](https://www.goodreads.com/) -88. [Gravatar](http://en.gravatar.com/) -89. [Gumroad](https://www.gumroad.com/) -90. [GunsAndAmmo](https://gunsandammo.com/) -91. [GuruShots](https://gurushots.com/) -92. [HackTheBox](https://forum.hackthebox.eu/) -93. [HackerNews](https://news.ycombinator.com/) -94. [HackerOne](https://hackerone.com/) -95. [HackerRank](https://hackerrank.com/) -96. [House-Mixes.com](https://www.house-mixes.com/) -97. [Houzz](https://houzz.com/) -98. [HubPages](https://hubpages.com/) -99. [Hubski](https://hubski.com/) -100. [IFTTT](https://www.ifttt.com/) -101. [ImageShack](https://imageshack.us/) -102. [ImgUp.cz](https://imgup.cz/) -103. [Instagram](https://www.instagram.com/) -104. [Instructables](https://www.instructables.com/) -105. [Issuu](https://issuu.com/) -106. [Itch.io](https://itch.io/) -107. [Jimdo](https://jimdosite.com/) -108. [Kaggle](https://www.kaggle.com/) -109. [Kali community](https://forums.kali.org/) -110. [KanoWorld](https://world.kano.me/) -111. [Keybase](https://keybase.io/) -112. [Kik](http://kik.me/) -113. [Kongregate](https://www.kongregate.com/) -114. [LOR](https://linux.org.ru/) -115. [Launchpad](https://launchpad.net/) -116. [LeetCode](https://leetcode.com/) -117. [Letterboxd](https://letterboxd.com/) -118. [Lichess](https://lichess.org) -119. [LiveJournal](https://www.livejournal.com/) -120. [LiveLeak](https://www.liveleak.com/) -121. [Lobsters](https://lobste.rs/) -122. [Lolchess](https://lolchess.gg/) -123. [Medium](https://medium.com/) -124. [MeetMe](https://www.meetme.com/) -125. [Memrise](https://www.memrise.com/) -126. [MixCloud](https://www.mixcloud.com/) -127. [MyAnimeList](https://myanimelist.net/) -128. [Myspace](https://myspace.com/) -129. [NICommunityForum](https://www.native-instruments.com/forum/) -130. [NPM](https://www.npmjs.com/) -131. [NPM-Package](https://www.npmjs.com/) -132. [NameMC (Minecraft.net skins)](https://namemc.com/) -133. [NationStates Nation](https://nationstates.net) -134. [NationStates Region](https://nationstates.net) -135. [Newgrounds](https://newgrounds.com) -136. [OK](https://ok.ru/) -137. [OpenCollective](https://opencollective.com/) -138. [OpenStreetMap](https://www.openstreetmap.org/) -139. [Oracle Community](https://community.oracle.com) -140. [Otzovik](https://otzovik.com/) -141. [OurDJTalk](https://ourdjtalk.com/) -142. [PCGamer](https://pcgamer.com) -143. [PCPartPicker](https://pcpartpicker.com) -144. [PSNProfiles.com](https://psnprofiles.com/) -145. [Packagist](https://packagist.org/) -146. [Pastebin](https://pastebin.com/) -147. [Patreon](https://www.patreon.com/) -148. [Periscope](https://www.periscope.tv/) -149. [Photobucket](https://photobucket.com/) -150. [Pinkbike](https://www.pinkbike.com/) -151. [Pinterest](https://www.pinterest.com/) -152. [PlayStore](https://play.google.com/store) -153. [Pling](https://www.pling.com/) -154. [Plug.DJ](https://plug.dj/) -155. [Pokemon Showdown](https://pokemonshowdown.com) -156. [PokerStrategy](http://www.pokerstrategy.net) -157. [Polygon](https://www.polygon.com/) -158. [ProductHunt](https://www.producthunt.com/) -159. [PromoDJ](http://promodj.com/) -160. [Quora](https://www.quora.com/) -161. [Rajce.net](https://www.rajce.idnes.cz/) -162. [Rate Your Music](https://rateyourmusic.com/) -163. [Realmeye](https://www.realmeye.com/) -164. [Redbubble](https://www.redbubble.com/) -165. [Reddit](https://www.reddit.com/) -166. [Redsun.tf](https://redsun.tf/) -167. [Repl.it](https://repl.it/) -168. [ResearchGate](https://www.researchgate.net/) -169. [ReverbNation](https://www.reverbnation.com/) -170. [Roblox](https://www.roblox.com/) -171. [RubyGems](https://rubygems.org/) -172. [Sbazar.cz](https://www.sbazar.cz/) -173. [Scratch](https://scratch.mit.edu/) -174. [Scribd](https://www.scribd.com/) -175. [ShitpostBot5000](https://www.shitpostbot.com/) -176. [Signal](https://community.signalusers.org) -177. [Slack](https://slack.com) -178. [SlideShare](https://slideshare.net/) -179. [Smashcast](https://www.smashcast.tv/) -180. [Smule](https://www.smule.com/) -181. [SoundCloud](https://soundcloud.com/) -182. [SourceForge](https://sourceforge.net/) -183. [Speedrun.com](https://speedrun.com/) -184. [Splits.io](https://splits.io) -185. [Sporcle](https://www.sporcle.com/) -186. [SportsRU](https://www.sports.ru/) -187. [Spotify](https://open.spotify.com/) -188. [Star Citizen](https://robertsspaceindustries.com/) -189. [Steam](https://steamcommunity.com/) -190. [SteamGroup](https://steamcommunity.com/) -191. [Steamid](https://steamid.uk/) -192. [SublimeForum](https://forum.sublimetext.com/) -193. [T-MobileSupport](https://support.t-mobile.com) -194. [TamTam](https://tamtam.chat/) -195. [Taringa](https://taringa.net/) -196. [Tellonym.me](https://tellonym.me/) -197. [Tinder](https://tinder.com/) -198. [TrackmaniaLadder](http://en.tm-ladder.com/index.php) -199. [TradingView](https://www.tradingview.com/) -200. [Trakt](https://www.trakt.tv/) -201. [TrashboxRU](https://trashbox.ru/) -202. [Trello](https://trello.com/) -203. [TripAdvisor](https://tripadvisor.com/) -204. [Twitch](https://www.twitch.tv/) -205. [Twitter](https://www.twitter.com/) -206. [Typeracer](https://typeracer.com) -207. [Ultimate-Guitar](https://ultimate-guitar.com/) -208. [Unsplash](https://unsplash.com/) -209. [VK](https://vk.com/) -210. [VSCO](https://vsco.co/) -211. [Velomania](https://forum.velomania.ru/) -212. [Venmo](https://venmo.com/) -213. [Viadeo](http://fr.viadeo.com/en/) -214. [Vimeo](https://vimeo.com/) -215. [Virgool](https://virgool.io/) -216. [VirusTotal](https://www.virustotal.com/) -217. [Wattpad](https://www.wattpad.com/) -218. [We Heart It](https://weheartit.com/) -219. [WebNode](https://www.webnode.cz/) -220. [Whonix Forum](https://forums.whonix.org/) -221. [Wikidot](http://www.wikidot.com/) -222. [Wikipedia](https://www.wikipedia.org/) -223. [Wix](https://wix.com/) -224. [WordPress](https://wordpress.com) -225. [WordPressOrg](https://wordpress.org/) -226. [YandexCollection](https://yandex.ru/collections/) -227. [YouNow](https://www.younow.com/) -228. [YouPic](https://youpic.com/) -229. [YouTube](https://www.youtube.com/) -230. [Zhihu](https://www.zhihu.com/) -231. [Zomato](https://www.zomato.com/) -232. [akniga](https://akniga.org/profile/blue/) -233. [allmylinks](https://allmylinks.com/) -234. [authorSTREAM](http://www.authorstream.com/) -235. [babyRU](https://www.baby.ru/) -236. [babyblogRU](https://www.babyblog.ru/) -237. [chaos.social](https://chaos.social/) -238. [couchsurfing](https://www.couchsurfing.com/) -239. [d3RU](https://d3.ru/) -240. [dailykos](https://www.dailykos.com) -241. [datingRU](http://dating.ru) -242. [devRant](https://devrant.com/) -243. [drive2](https://www.drive2.ru/) -244. [eGPU](https://egpu.io/) -245. [easyen](https://easyen.ru/) -246. [eintracht](https://eintracht.de) -247. [fixya](https://www.fixya.com) -248. [fl](https://www.fl.ru/) -249. [forum_guns](https://forum.guns.ru/) -250. [forumhouseRU](https://www.forumhouse.ru/) -251. [geocaching](https://www.geocaching.com/) -252. [gfycat](https://gfycat.com/) -253. [habr](https://habr.com/) -254. [hackster](https://www.hackster.io) -255. [hunting](https://www.hunting.ru/forum/) -256. [iMGSRC.RU](https://imgsrc.ru/) -257. [igromania](http://forum.igromania.ru/) -258. [interpals](https://www.interpals.net/) -259. [irecommend](https://irecommend.ru/) -260. [jeuxvideo](http://www.jeuxvideo.com) -261. [kwork](https://www.kwork.ru/) -262. [labpentestit](https://lab.pentestit.ru/) -263. [last.fm](https://last.fm/) -264. [leasehackr](https://forum.leasehackr.com/) -265. [livelib](https://www.livelib.ru/) -266. [mastodon.cloud](https://mastodon.cloud/) -267. [mastodon.social](https://chaos.social/) -268. [mastodon.technology](https://mastodon.xyz/) -269. [mastodon.xyz](https://mastodon.xyz/) -270. [metacritic](https://www.metacritic.com/) -271. [mixer.com](https://mixer.com/) -272. [moikrug](https://moikrug.ru/) -273. [mstdn.io](https://mstdn.io/) -274. [nightbot](https://nightbot.tv/) -275. [nnRU](https://https://www.nn.ru/) -276. [notabug.org](https://notabug.org/) -277. [note](https://note.com/) -278. [opennet](https://www.opennet.ru/) -279. [opensource](https://opensource.com/) -280. [osu!](https://osu.ppy.sh/) -281. [pedsovet](http://pedsovet.su/) -282. [phpRU](https://php.ru/forum/) -283. [pikabu](https://pikabu.ru/) -284. [pr0gramm](https://pr0gramm.com/) -285. [pvpru](https://pvpru.com/) -286. [radio_echo_msk](https://echo.msk.ru/) -287. [radioskot](https://radioskot.ru/) -288. [satsisRU](https://satsis.info/) -289. [segmentfault](https://segmentfault.com/) -290. [social.tchncs.de](https://social.tchncs.de/) -291. [soylentnews](https://soylentnews.org) -292. [sparkpeople](https://www.sparkpeople.com) -293. [spletnik](https://spletnik.ru/) -294. [svidbook](https://www.svidbook.ru/) -295. [toster](https://www.toster.ru/) -296. [tracr.co](https://tracr.co/) -297. [travellerspoint](https://www.travellerspoint.com) -298. [uid](https://uid.me/) -299. [warriorforum](https://www.warriorforum.com/) -300. [windy](https://windy.com/) - -Alexa.com rank data fetched at (2020-05-25 16:29:44.646558 UTC) +## List of supported sites: total 310 +1. [GoogleMaps](https://maps.google.com/), top 1 +2. [PlayStore](https://play.google.com/store), top 1 +3. [YouTube](https://www.youtube.com/), top 2 +4. [Facebook](https://www.facebook.com/), top 8 +5. [Wikipedia](https://www.wikipedia.org/), top 12 +6. [Reddit](https://www.reddit.com/), top 20 +7. [VK](https://vk.com/), top 24 +8. [Twitch](https://www.twitch.tv/), top 32 +9. [Instagram](https://www.instagram.com/), top 35 +10. [Ebay](https://www.ebay.com/), top 48 +11. [WordPress](https://wordpress.com), top 55 +12. [OK](https://ok.ru/), top 56 +13. [Yandex](https://yandex.ru/), top 58 +14. [YandexCollection](https://yandex.ru/collections/), top 58 +15. [YandexLocal](https://local.yandex.ru/), top 58 +16. [YandexMusic](https://music.yandex.ru/), top 58 +17. [YandexZnatoki](https://yandex.ru/q/), top 58 +18. [Twitter](https://www.twitter.com/), top 63 +19. [Medium](https://medium.com/), top 79 +20. [GitHub](https://www.github.com/), top 85 +21. [Fandom](https://www.fandom.com/), top 89 +22. [Spotify](https://open.spotify.com/), top 90 +23. [SoundCloud](https://soundcloud.com/), top 95 +24. [Roblox](https://www.roblox.com/), top 113 +25. [Etsy](https://www.etsy.com/), top 120 +26. [SlideShare](https://slideshare.net/), top 133 +27. [Zhihu](https://www.zhihu.com/), top 137 +28. [TradingView](https://www.tradingview.com/), top 144 +29. [ResearchGate](https://www.researchgate.net/), top 146 +30. [CNET](https://www.cnet.com/), top 148 +31. [Trello](https://trello.com/), top 163 +32. [Vimeo](https://vimeo.com/), top 164 +33. [Pinterest](https://www.pinterest.com/), top 173 +34. [Steam](https://steamcommunity.com/), top 179 +35. [SteamGroup](https://steamcommunity.com/), top 179 +36. [mercadolivre](https://www.mercadolivre.com.br), top 186 +37. [Wix](https://wix.com/), top 194 +38. [Archive.org](https://archive.org), top 224 +39. [DailyMotion](https://www.dailymotion.com/), top 230 +40. [Slack](https://slack.com), top 245 +41. [Academia.edu](https://www.academia.edu/), top 269 +42. [Scribd](https://www.scribd.com/), top 277 +43. [Telegram](https://t.me/), top 279 +44. [Quora](https://www.quora.com/), top 283 +45. [aminoapp](https://aminoapps.com/), top 285 +46. [Euw](https://euw.op.gg/), top 289 +47. [Behance](https://www.behance.net/), top 314 +48. [Blogger](https://www.blogger.com/), top 326 +49. [GoodReads](https://www.goodreads.com/), top 327 +50. [Patreon](https://www.patreon.com/), top 346 +51. [Unsplash](https://unsplash.com/), top 404 +52. [Chess](https://www.chess.com/ru/), top 407 +53. [Fiverr](https://www.fiverr.com/), top 414 +54. [Duolingo](https://duolingo.com/), top 422 +55. [SourceForge](https://sourceforge.net/), top 430 +56. [LiveJournal](https://www.livejournal.com/), top 434 +57. [BuzzFeed](https://buzzfeed.com/), top 472 +58. [DeviantART](https://deviantart.com), top 542 +59. [Issuu](https://issuu.com/), top 548 +60. [Crunchyroll](https://www.crunchyroll.com/), top 554 +61. [Scratch](https://scratch.mit.edu/), top 560 +62. [Gamespot](https://www.gamespot.com/), top 568 +63. [TripAdvisor](https://tripadvisor.com/), top 574 +64. [Wattpad](https://www.wattpad.com/), top 592 +65. [Oracle Community](https://community.oracle.com), top 612 +66. [Giphy](https://giphy.com/), top 625 +67. [Ultimate-Guitar](https://ultimate-guitar.com/), top 628 +68. [WordPressOrg](https://wordpress.org/), top 650 +69. [note](https://note.com/), top 834 +70. [segmentfault](https://segmentfault.com/), top 836 +71. [Redbubble](https://www.redbubble.com/), top 952 +72. [MyAnimeList](https://myanimelist.net/), top 966 +73. [gfycat](https://gfycat.com/), top 1012 +74. [pikabu](https://pikabu.ru/), top 1021 +75. [Tinder](https://tinder.com/), top 1031 +76. [Bandcamp](https://www.bandcamp.com/), top 1044 +77. [Flickr](https://www.flickr.com/), top 1064 +78. [Disqus](https://disqus.com/), top 1072 +79. [Discogs](https://www.discogs.com/), top 1091 +80. [PCGamer](https://pcgamer.com), top 1095 +81. [Freelancer.com](https://www.freelancer.com/), top 1172 +82. [Polygon](https://www.polygon.com/), top 1254 +83. [Instructables](https://www.instructables.com/), top 1271 +84. [Dribbble](https://dribbble.com/), top 1301 +85. [Pastebin](https://pastebin.com/), top 1303 +86. [Career.habr](https://career.habr.com/), top 1363 +87. [Freelance.habr](https://freelance.habr.com/), top 1363 +88. [Toster](https://qna.habr.com/), top 1363 +89. [habr](https://habr.com/), top 1363 +90. [CloudflareCommunity](https://community.cloudflare.com/), top 1392 +91. [Houzz](https://houzz.com/), top 1436 +92. [T-MobileSupport](https://support.t-mobile.com), top 1452 +93. [drive2](https://www.drive2.ru/), top 1484 +94. [radio_echo_msk](https://echo.msk.ru/), top 1574 +95. [jeuxvideo](http://www.jeuxvideo.com), top 1737 +96. [Rajce.net](https://www.rajce.idnes.cz/), top 1761 +97. [Itch.io](https://itch.io/), top 1775 +98. [Otzovik](https://otzovik.com/), top 1795 +99. [Flightradar24](https://www.flightradar24.com/), top 1833 +100. [last.fm](https://last.fm/), top 1849 +101. [windy](https://windy.com/), top 1851 +102. [Taringa](https://taringa.net/), top 1865 +103. [Lichess](https://lichess.org), top 1867 +104. [Badoo](https://badoo.com/), top 1895 +105. [Championat](https://www.championat.com/), top 1931 +106. [BitBucket](https://bitbucket.org/), top 2034 +107. [PCPartPicker](https://pcpartpicker.com), top 2040 +108. [mixer.com](https://mixer.com/), top 2069 +109. [Codecademy](https://www.codecademy.com/), top 2126 +110. [irecommend](https://irecommend.ru/), top 2197 +111. [CreativeMarket](https://creativemarket.com/), top 2221 +112. [metacritic](https://www.metacritic.com/), top 2257 +113. [Myspace](https://myspace.com/), top 2261 +114. [LeetCode](https://leetcode.com/), top 2335 +115. [Zomato](https://www.zomato.com/), top 2344 +116. [Virgool](https://virgool.io/), top 2435 +117. [MixCloud](https://www.mixcloud.com/), top 2523 +118. [Kaggle](https://www.kaggle.com/), top 2589 +119. [4pda](https://4pda.ru/), top 2621 +120. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2623 +121. [SportsRU](https://www.sports.ru/), top 2657 +122. [Kongregate](https://www.kongregate.com/), top 2797 +123. [HackerRank](https://hackerrank.com/), top 2869 +124. [AskFM](https://ask.fm/), top 3029 +125. [We Heart It](https://weheartit.com/), top 3164 +126. [Sporcle](https://www.sporcle.com/), top 3281 +127. [Wikidot](http://www.wikidot.com/), top 3283 +128. [Lolchess](https://lolchess.gg/), top 3314 +129. [Docker Hub](https://hub.docker.com/), top 3325 +130. [Repl.it](https://repl.it/), top 3358 +131. [livelib](https://www.livelib.ru/), top 3429 +132. [HubPages](https://hubpages.com/), top 3495 +133. [500px](https://500px.com/), top 3594 +134. [GitLab](https://gitlab.com/), top 3714 +135. [warriorforum](https://www.warriorforum.com/), top 3745 +136. [Photobucket](https://photobucket.com/), top 3776 +137. [Letterboxd](https://letterboxd.com/), top 3816 +138. [Cracked](https://www.cracked.com/), top 3855 +139. [Gumroad](https://www.gumroad.com/), top 3885 +140. [pr0gramm](https://pr0gramm.com/), top 4176 +141. [AllTrails](https://www.alltrails.com/), top 4473 +142. [osu!](https://osu.ppy.sh/), top 4527 +143. [Pokemon Showdown](https://pokemonshowdown.com), top 4967 +144. [fixya](https://www.fixya.com), top 5085 +145. [VSCO](https://vsco.co/), top 5097 +146. [Venmo](https://venmo.com/), top 5489 +147. [VirusTotal](https://www.virustotal.com/), top 5588 +148. [HackerNews](https://news.ycombinator.com/), top 5603 +149. [Memrise](https://www.memrise.com/), top 5678 +150. [Stihi.ru](https://www.stihi.ru/), top 5704 +151. [Rate Your Music](https://rateyourmusic.com/), top 5714 +152. [dailykos](https://www.dailykos.com), top 5757 +153. [Aptoide](https://en.aptoide.com/), top 6011 +154. [babyRU](https://www.baby.ru/), top 6069 +155. [Audiojungle](https://audiojungle.net/), top 6116 +156. [Gravatar](http://en.gravatar.com/), top 6149 +157. [NPM](https://www.npmjs.com/), top 6318 +158. [NPM-Package](https://www.npmjs.com/), top 6318 +159. [Freesound](https://freesound.org/), top 6414 +160. [FortniteTracker](https://fortnitetracker.com/challenges), top 6446 +161. [kwork](https://www.kwork.ru/), top 6655 +162. [Newgrounds](https://newgrounds.com), top 6668 +163. [Gitee](https://gitee.com/), top 6897 +164. [SublimeForum](https://forum.sublimetext.com/), top 6907 +165. [BOOTH](https://booth.pm/), top 7023 +166. [Trakt](https://www.trakt.tv/), top 7049 +167. [Discuss.Elastic.co](https://discuss.elastic.co/), top 7146 +168. [interpals](https://www.interpals.net/), top 7165 +169. [WikimapiaProfile](http://wikimapia.org), top 7174 +170. [WikimapiaSearch](http://wikimapia.org), top 7174 +171. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7213 +172. [opensource](https://opensource.com/), top 7233 +173. [Smule](https://www.smule.com/), top 7261 +174. [Proza.ru](https://www.proza.ru/), top 7335 +175. [Star Citizen](https://robertsspaceindustries.com/), top 7463 +176. [Pinkbike](https://www.pinkbike.com/), top 7540 +177. [OpenStreetMap](https://www.openstreetmap.org/), top 7701 +178. [Cloob](https://www.cloob.com/), top 7719 +179. [Flipboard](https://flipboard.com/), top 7826 +180. [NICommunityForum](https://www.native-instruments.com/forum/), top 7940 +181. [Facenama](https://facenama.com/), top 8097 +182. [3dnews](http://forum.3dnews.ru/), top 8293 +183. [Kali community](https://forums.kali.org/), top 8417 +184. [Typeracer](https://typeracer.com), top 8652 +185. [spletnik](https://spletnik.ru/), top 8754 +186. [DEV Community](https://dev.to/), top 8782 +187. [authorSTREAM](http://www.authorstream.com/), top 8835 +188. [IFTTT](https://www.ifttt.com/), top 9058 +189. [Codechef](https://www.codechef.com/), top 9132 +190. [ReverbNation](https://www.reverbnation.com/), top 9137 +191. [Launchpad](https://launchpad.net/), top 9528 +192. [kofi](https://ko-fi.com), top 9734 +193. [nightbot](https://nightbot.tv/), top 10092 +194. [PSNProfiles.com](https://psnprofiles.com/), top 10643 +195. [ProductHunt](https://www.producthunt.com/), top 10944 +196. [Speedrun.com](https://speedrun.com/), top 10971 +197. [geocaching](https://www.geocaching.com/), top 11142 +198. [akniga](https://akniga.org/profile/blue/), top 11202 +199. [Coderwall](https://coderwall.com/), top 11939 +200. [igromania](http://forum.igromania.ru/), top 12173 +201. [Teletype](https://teletype.in), top 12384 +202. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12407 +203. [couchsurfing](https://www.couchsurfing.com/), top 12793 +204. [forumhouseRU](https://www.forumhouse.ru/), top 12858 +205. [ImageShack](https://imageshack.com/), top 13304 +206. [Contently](https://contently.com/), top 13328 +207. [YouNow](https://www.younow.com/), top 13960 +208. [Sbazar.cz](https://www.sbazar.cz/), top 14449 +209. [babyblogRU](https://www.babyblog.ru/), top 14463 +210. [TrashboxRU](https://trashbox.ru/), top 15898 +211. [iMGSRC.RU](https://imgsrc.ru/), top 16613 +212. [sparkpeople](https://www.sparkpeople.com), top 16989 +213. [Samlib](http://samlib.ru/), top 18297 +214. [About.me](https://about.me/), top 19062 +215. [hackster](https://www.hackster.io), top 19525 +216. [WebNode](https://www.webnode.cz/), top 19685 +217. [Jimdo](https://jimdosite.com/), top 20051 +218. [EyeEm](https://www.eyeem.com/), top 20114 +219. [Codewars](https://www.codewars.com), top 20398 +220. [easyen](https://easyen.ru/), top 21091 +221. [YouPic](https://youpic.com/), top 23500 +222. [Packagist](https://packagist.org/), top 23510 +223. [GuruShots](https://gurushots.com/), top 23988 +224. [forum_guns](https://forum.guns.ru/), top 24198 +225. [Tellonym.me](https://tellonym.me/), top 24394 +226. [HackerOne](https://hackerone.com/), top 24497 +227. [Carbonmade](https://carbonmade.com/), top 25700 +228. [allmylinks](https://allmylinks.com/), top 26598 +229. [uid](https://uid.me/), top 28986 +230. [Ask Fedora](https://ask.fedoraproject.org/), top 30489 +231. [PromoDJ](http://promodj.com/), top 32551 +232. [Periscope](https://www.periscope.tv/), top 32930 +233. [RubyGems](https://rubygems.org/), top 33064 +234. [Realmeye](https://www.realmeye.com/), top 33097 +235. [Coroflot](https://coroflot.com/), top 37379 +236. [OpenCollective](https://opencollective.com/), top 37503 +237. [d3RU](https://d3.ru/), top 38372 +238. [Anobii](https://www.anobii.com/), top 41444 +239. [LOR](https://linux.org.ru/), top 41689 +240. [Football](https://www.rusfootball.info/), top 42336 +241. [HackTheBox](https://forum.hackthebox.eu/), top 42998 +242. [Ello](https://ello.co/), top 43730 +243. [7Cups](https://www.7cups.com/), top 50645 +244. [Plug.DJ](https://plug.dj/), top 50895 +245. [NationStates Nation](https://nationstates.net), top 53448 +246. [NationStates Region](https://nationstates.net), top 53448 +247. [fl](https://www.fl.ru/), top 53667 +248. [Keybase](https://keybase.io/), top 57982 +249. [F3.cool](https://f3.cool/), top 58656 +250. [opennet](https://www.opennet.ru/), top 63879 +251. [Bookcrossing](https://www.bookcrossing.com/), top 65128 +252. [leasehackr](https://forum.leasehackr.com/), top 66996 +253. [Clozemaster](https://www.clozemaster.com), top 68801 +254. [datingRU](http://dating.ru), top 71209 +255. [eGPU](https://egpu.io/), top 80474 +256. [Asciinema](https://asciinema.org), top 83004 +257. [travellerspoint](https://www.travellerspoint.com), top 83396 +258. [Pling](https://www.pling.com/), top 92783 +259. [devRant](https://devrant.com/), top 93139 +260. [TamTam](https://tamtam.chat/), top 98745 +261. [Cent](https://cent.co/), top 99599 +262. [Velomania](https://forum.velomania.ru/), top 101006 +263. [phpRU](https://php.ru/forum/), top 115666 +264. [Lobsters](https://lobste.rs/), top 129889 +265. [radioskot](https://radioskot.ru/), top 138697 +266. [GunsAndAmmo](https://gunsandammo.com/), top 138979 +267. [hunting](https://www.hunting.ru/forum/), top 145363 +268. [Steamid](https://steamid.uk/), top 151277 +269. [notabug.org](https://notabug.org/), top 155148 +270. [KanoWorld](https://world.kano.me/), top 155829 +271. [BLIP.fm](https://blip.fm/), top 160252 +272. [moikrug](https://moikrug.ru/), top 186785 +273. [Crevado](https://crevado.com/), top 201684 +274. [Smashcast](https://www.smashcast.tv/), top 203497 +275. [Whonix Forum](https://forums.whonix.org/), top 206783 +276. [pvpru](https://pvpru.com/), top 270432 +277. [Hubski](https://hubski.com/), top 270708 +278. [eintracht](https://eintracht.de), top 275478 +279. [Bazar.cz](https://www.bazar.cz/), top 317058 +280. [BitCoinForum](https://bitcoinforum.com), top 317370 +281. [satsisRU](https://satsis.info/), top 322626 +282. [Avizo](https://www.avizo.cz/), top 352896 +283. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 454325 +284. [social.tchncs.de](https://social.tchncs.de/), top 490342 +285. [soylentnews](https://soylentnews.org), top 557006 +286. [Splits.io](https://splits.io), top 580435 +287. [Kik](http://kik.me/), top 704379 +288. [Alik.cz](https://www.alik.cz/), top 705075 +289. [House-Mixes.com](https://www.house-mixes.com/), top 713436 +290. [Signal](https://community.signalusers.org), top 939641 +291. [tracr.co](https://tracr.co/), top 993155 +292. [ShitpostBot5000](https://www.shitpostbot.com/), top 1001949 +293. [mastodon.technology](https://mastodon.xyz/), top 1034667 +294. [mastodon.xyz](https://mastodon.xyz/), top 1034667 +295. [mastodon.cloud](https://mastodon.cloud/), top 1349749 +296. [chaos.social](https://chaos.social/), top 1676076 +297. [mastodon.social](https://chaos.social/), top 1676076 +298. [mstdn.io](https://mstdn.io/), top 1933720 +299. [labpentestit](https://lab.pentestit.ru/), top 2343179 +300. [OurDJTalk](https://ourdjtalk.com/), top 3168225 +301. [PokerStrategy](http://www.pokerstrategy.net), top 3414611 +302. [Designspiration](https://www.designspiration.net/), top 4234418 +303. [svidbook](https://www.svidbook.ru/), top 4592288 +304. [GDProfiles](https://gdprofiles.com/), top 5059468 +305. [CashMe](https://cash.me/), top 6387848 +306. [2Dimensions](https://2Dimensions.com/), top 7164342 +307. [Chatujme.cz](https://chatujme.cz/), top 8086004 +308. [ImgUp.cz](https://imgup.cz/), top 9177087 +309. [Filmogs](https://www.filmo.gs/), top 0 +310. [nnRU](https://https://www.nn.ru/), top 0 + +Alexa.com rank data fetched at (2020-07-18 16:34:39.321874 UTC) From 96851525dd36f71ad54fe4133bf629c75af7e533 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 18 Jul 2020 23:28:59 +0300 Subject: [PATCH 23/39] Added 18+ sited, fixed tags sorting --- maigret/resources/data.json | 327 +++++++++------ sites.md | 618 ++++++++++++++-------------- site_list.py => update_site_data.py | 9 +- 3 files changed, 531 insertions(+), 423 deletions(-) rename site_list.py => update_site_data.py (91%) mode change 100644 => 100755 diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 3ad8924a2..8bd19fe22 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -36,8 +36,8 @@ "errorType": "message", "rank": 3594, "tags": [ - "in", - "images" + "images", + "in" ], "url": "https://500px.com/{}", "urlMain": "https://500px.com/", @@ -102,8 +102,8 @@ "errorType": "response_url", "rank": 41444, "tags": [ - "it", - "books" + "books", + "it" ], "url": "https://www.anobii.com/{}/profile", "urlMain": "https://www.anobii.com/", @@ -216,8 +216,8 @@ "errorType": "status_code", "rank": 1895, "tags": [ - "social", - "br" + "br", + "social" ], "url": "https://badoo.com/profile/{}", "urlMain": "https://badoo.com/", @@ -228,8 +228,8 @@ "errorType": "status_code", "rank": 1044, "tags": [ - "us", - "music" + "music", + "us" ], "url": "https://www.bandcamp.com/{}", "urlMain": "https://www.bandcamp.com/", @@ -267,8 +267,8 @@ "errorType": "status_code", "rank": 2034, "tags": [ - "in", - "coding" + "coding", + "in" ], "url": "https://bitbucket.org/{}/", "urlMain": "https://bitbucket.org/", @@ -311,6 +311,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "BongaCams": { + "errorType": "status_code", + "rank": 26, + "tags": [ + "cz", + "webcam" + ], + "url": "https://pt.bongacams.com/profile/{}", + "urlMain": "https://pt.bongacams.com", + "username_claimed": "asuna-black", + "username_unclaimed": "noonewouldeverusethis77777" + }, "Bookcrossing": { "errorType": "status_code", "rank": 65128, @@ -338,8 +350,8 @@ "errorType": "status_code", "rank": 472, "tags": [ - "us", - "social" + "social", + "us" ], "url": "https://buzzfeed.com/{}", "urlMain": "https://buzzfeed.com/", @@ -425,6 +437,17 @@ "username_claimed": "david", "username_unclaimed": "noonewouldeverusethis" }, + "ChaturBate": { + "errorType": "status_code", + "rank": 60, + "tags": [ + "us" + ], + "url": "https://chaturbate.com/{}", + "urlMain": "https://chaturbate.com", + "username_claimed": "cute18cute", + "username_unclaimed": "noonewouldeverusethis77777" + }, "Chess": { "errorMsg": "Missing page... somebody made a wrong move.", "errorType": "message", @@ -474,8 +497,8 @@ "errorType": "status_code", "rank": 2126, "tags": [ - "us", - "education" + "education", + "us" ], "url": "https://www.codecademy.com/profiles/{}", "urlMain": "https://www.codecademy.com/", @@ -628,8 +651,8 @@ "rank": 542, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ - "us", - "images" + "images", + "us" ], "url": "https://{}.deviantart.com", "urlMain": "https://deviantart.com", @@ -663,9 +686,9 @@ "errorType": "status_code", "rank": 1072, "tags": [ - "us", "discussion", - "global" + "global", + "us" ], "url": "https://disqus.com/{}", "urlMain": "https://disqus.com/", @@ -716,8 +739,8 @@ "errorType": "message", "rank": 48, "tags": [ - "us", - "shopping" + "shopping", + "us" ], "url": "https://www.ebay.com/usr/{}", "urlMain": "https://www.ebay.com/", @@ -740,8 +763,8 @@ "errorType": "status_code", "rank": 120, "tags": [ - "us", - "shopping" + "shopping", + "us" ], "url": "https://www.etsy.com/shop/{}", "urlMain": "https://www.etsy.com/", @@ -788,8 +811,8 @@ "rank": 8, "regexCheck": "^[a-zA-Z0-9\\.]{3,49}(? Date: Sat, 18 Jul 2020 23:40:48 +0300 Subject: [PATCH 24/39] Livejasmin, MicrosoftTechNet --- maigret/resources/data.json | 25 ++ sites.md | 630 ++++++++++++++++++------------------ 2 files changed, 341 insertions(+), 314 deletions(-) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 8bd19fe22..f8e029e2c 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -1448,6 +1448,20 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Livejasmin": { + "errorMsg": ":[]", + "errorType": "message", + "rank": 33, + "tags": [ + "us", + "webcam" + ], + "url": "https://www.livejasmin.com/en/girls/#!chat/{}", + "urlMain": "https://www.livejasmin.com/", + "urlProbe": "https://www.livejasmin.com/en/flash/get-performer-details/{}", + "username_claimed": "test", + "username_unclaimed": "noonewouldeverusethis7" + }, "Lobsters": { "errorType": "status_code", "rank": 129889, @@ -1497,6 +1511,17 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "MicrosoftTechNet": { + "errorType": "status_code", + "rank": 23, + "tags": [ + "us" + ], + "url": "https://social.technet.microsoft.com/profile/{}/", + "urlMain": "https://social.technet.microsoft.com", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "MixCloud": { "errorType": "status_code", "rank": 2523, diff --git a/sites.md b/sites.md index bf016c48c..ae548fed3 100644 --- a/sites.md +++ b/sites.md @@ -1,321 +1,323 @@ -## List of supported sites: total 318 +## List of supported sites: total 320 1. [GoogleMaps](https://maps.google.com/), top 1 2. [PlayStore](https://play.google.com/store), top 1 3. [YouTube](https://www.youtube.com/), top 2 4. [Facebook](https://www.facebook.com/), top 8 5. [Wikipedia](https://www.wikipedia.org/), top 12 6. [Reddit](https://www.reddit.com/), top 20 -7. [VK](https://vk.com/), top 24 -8. [BongaCams](https://pt.bongacams.com), top 26 -9. [Twitch](https://www.twitch.tv/), top 32 -10. [Instagram](https://www.instagram.com/), top 35 -11. [Ebay](https://www.ebay.com/), top 48 -12. [WordPress](https://wordpress.com), top 55 -13. [OK](https://ok.ru/), top 56 -14. [Yandex](https://yandex.ru/), top 58 -15. [YandexCollection](https://yandex.ru/collections/), top 58 -16. [YandexLocal](https://local.yandex.ru/), top 58 -17. [YandexMusic](https://music.yandex.ru/), top 58 -18. [YandexZnatoki](https://yandex.ru/q/), top 58 -19. [ChaturBate](https://chaturbate.com), top 60 -20. [Pornhub](https://pornhub.com/), top 61 -21. [Twitter](https://www.twitter.com/), top 63 -22. [Medium](https://medium.com/), top 79 -23. [GitHub](https://www.github.com/), top 85 -24. [Fandom](https://www.fandom.com/), top 89 -25. [Spotify](https://open.spotify.com/), top 90 -26. [SoundCloud](https://soundcloud.com/), top 95 -27. [Roblox](https://www.roblox.com/), top 113 -28. [Etsy](https://www.etsy.com/), top 120 -29. [Xvideos](https://xvideos.com/), top 125 -30. [SlideShare](https://slideshare.net/), top 133 -31. [Zhihu](https://www.zhihu.com/), top 137 -32. [TradingView](https://www.tradingview.com/), top 144 -33. [ResearchGate](https://www.researchgate.net/), top 146 -34. [CNET](https://www.cnet.com/), top 148 -35. [xHamster](https://xhamster.com), top 152 -36. [Trello](https://trello.com/), top 163 -37. [Vimeo](https://vimeo.com/), top 164 -38. [Pinterest](https://www.pinterest.com/), top 173 -39. [Steam](https://steamcommunity.com/), top 179 -40. [SteamGroup](https://steamcommunity.com/), top 179 -41. [mercadolivre](https://www.mercadolivre.com.br), top 186 -42. [Wix](https://wix.com/), top 194 -43. [Archive.org](https://archive.org), top 224 -44. [DailyMotion](https://www.dailymotion.com/), top 230 -45. [Slack](https://slack.com), top 245 -46. [Academia.edu](https://www.academia.edu/), top 269 -47. [Scribd](https://www.scribd.com/), top 277 -48. [Telegram](https://t.me/), top 279 -49. [Quora](https://www.quora.com/), top 283 -50. [aminoapp](https://aminoapps.com/), top 285 -51. [Euw](https://euw.op.gg/), top 289 -52. [Behance](https://www.behance.net/), top 314 -53. [Blogger](https://www.blogger.com/), top 326 -54. [GoodReads](https://www.goodreads.com/), top 327 -55. [Patreon](https://www.patreon.com/), top 346 -56. [Unsplash](https://unsplash.com/), top 404 -57. [Chess](https://www.chess.com/ru/), top 407 -58. [Fiverr](https://www.fiverr.com/), top 414 -59. [Duolingo](https://duolingo.com/), top 422 -60. [SourceForge](https://sourceforge.net/), top 430 -61. [LiveJournal](https://www.livejournal.com/), top 434 -62. [YouPorn](https://youporn.com), top 469 -63. [BuzzFeed](https://buzzfeed.com/), top 472 -64. [DeviantART](https://deviantart.com), top 542 -65. [Issuu](https://issuu.com/), top 548 -66. [Crunchyroll](https://www.crunchyroll.com/), top 554 -67. [Scratch](https://scratch.mit.edu/), top 560 -68. [Gamespot](https://www.gamespot.com/), top 568 -69. [TripAdvisor](https://tripadvisor.com/), top 574 -70. [Wattpad](https://www.wattpad.com/), top 592 -71. [Oracle Community](https://community.oracle.com), top 612 -72. [Giphy](https://giphy.com/), top 625 -73. [Ultimate-Guitar](https://ultimate-guitar.com/), top 628 -74. [WordPressOrg](https://wordpress.org/), top 650 -75. [note](https://note.com/), top 834 -76. [segmentfault](https://segmentfault.com/), top 836 -77. [Redbubble](https://www.redbubble.com/), top 952 -78. [MyAnimeList](https://myanimelist.net/), top 966 -79. [gfycat](https://gfycat.com/), top 1012 -80. [pikabu](https://pikabu.ru/), top 1021 -81. [Tinder](https://tinder.com/), top 1031 -82. [Bandcamp](https://www.bandcamp.com/), top 1044 -83. [Flickr](https://www.flickr.com/), top 1064 -84. [Disqus](https://disqus.com/), top 1072 -85. [Discogs](https://www.discogs.com/), top 1091 -86. [PCGamer](https://pcgamer.com), top 1095 -87. [Freelancer.com](https://www.freelancer.com/), top 1172 -88. [Polygon](https://www.polygon.com/), top 1254 -89. [Instructables](https://www.instructables.com/), top 1271 -90. [Dribbble](https://dribbble.com/), top 1301 -91. [Pastebin](https://pastebin.com/), top 1303 -92. [Career.habr](https://career.habr.com/), top 1363 -93. [Freelance.habr](https://freelance.habr.com/), top 1363 -94. [Toster](https://qna.habr.com/), top 1363 -95. [habr](https://habr.com/), top 1363 -96. [CloudflareCommunity](https://community.cloudflare.com/), top 1392 -97. [Houzz](https://houzz.com/), top 1436 -98. [T-MobileSupport](https://support.t-mobile.com), top 1452 -99. [drive2](https://www.drive2.ru/), top 1484 -100. [radio_echo_msk](https://echo.msk.ru/), top 1574 -101. [jeuxvideo](http://www.jeuxvideo.com), top 1737 -102. [Rajce.net](https://www.rajce.idnes.cz/), top 1761 -103. [Itch.io](https://itch.io/), top 1775 -104. [Otzovik](https://otzovik.com/), top 1795 -105. [Flightradar24](https://www.flightradar24.com/), top 1833 -106. [last.fm](https://last.fm/), top 1849 -107. [windy](https://windy.com/), top 1851 -108. [Taringa](https://taringa.net/), top 1865 -109. [Lichess](https://lichess.org), top 1867 -110. [Badoo](https://badoo.com/), top 1895 -111. [Championat](https://www.championat.com/), top 1931 -112. [BitBucket](https://bitbucket.org/), top 2034 -113. [PCPartPicker](https://pcpartpicker.com), top 2040 -114. [mixer.com](https://mixer.com/), top 2069 -115. [Codecademy](https://www.codecademy.com/), top 2126 -116. [irecommend](https://irecommend.ru/), top 2197 -117. [CreativeMarket](https://creativemarket.com/), top 2221 -118. [metacritic](https://www.metacritic.com/), top 2257 -119. [Myspace](https://myspace.com/), top 2261 -120. [LeetCode](https://leetcode.com/), top 2335 -121. [Zomato](https://www.zomato.com/), top 2344 -122. [Virgool](https://virgool.io/), top 2435 -123. [MixCloud](https://www.mixcloud.com/), top 2523 -124. [Kaggle](https://www.kaggle.com/), top 2589 -125. [4pda](https://4pda.ru/), top 2621 -126. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2623 -127. [SportsRU](https://www.sports.ru/), top 2657 -128. [Kongregate](https://www.kongregate.com/), top 2797 -129. [HackerRank](https://hackerrank.com/), top 2869 -130. [AskFM](https://ask.fm/), top 3029 -131. [We Heart It](https://weheartit.com/), top 3164 -132. [Sporcle](https://www.sporcle.com/), top 3281 -133. [Wikidot](http://www.wikidot.com/), top 3283 -134. [Lolchess](https://lolchess.gg/), top 3314 -135. [Docker Hub](https://hub.docker.com/), top 3325 -136. [Repl.it](https://repl.it/), top 3358 -137. [livelib](https://www.livelib.ru/), top 3429 -138. [HubPages](https://hubpages.com/), top 3495 -139. [500px](https://500px.com/), top 3594 -140. [GitLab](https://gitlab.com/), top 3714 -141. [warriorforum](https://www.warriorforum.com/), top 3745 -142. [Photobucket](https://photobucket.com/), top 3776 -143. [Letterboxd](https://letterboxd.com/), top 3816 -144. [Cracked](https://www.cracked.com/), top 3855 -145. [Gumroad](https://www.gumroad.com/), top 3885 -146. [pr0gramm](https://pr0gramm.com/), top 4176 -147. [AllTrails](https://www.alltrails.com/), top 4473 -148. [osu!](https://osu.ppy.sh/), top 4527 -149. [Pokemon Showdown](https://pokemonshowdown.com), top 4967 -150. [fixya](https://www.fixya.com), top 5085 -151. [VSCO](https://vsco.co/), top 5097 -152. [Venmo](https://venmo.com/), top 5489 -153. [VirusTotal](https://www.virustotal.com/), top 5588 -154. [HackerNews](https://news.ycombinator.com/), top 5603 -155. [Memrise](https://www.memrise.com/), top 5678 -156. [Stihi.ru](https://www.stihi.ru/), top 5704 -157. [Rate Your Music](https://rateyourmusic.com/), top 5714 -158. [dailykos](https://www.dailykos.com), top 5757 -159. [Aptoide](https://en.aptoide.com/), top 6011 -160. [babyRU](https://www.baby.ru/), top 6069 -161. [Audiojungle](https://audiojungle.net/), top 6116 -162. [Gravatar](http://en.gravatar.com/), top 6149 -163. [NPM](https://www.npmjs.com/), top 6318 -164. [NPM-Package](https://www.npmjs.com/), top 6318 -165. [Freesound](https://freesound.org/), top 6414 -166. [FortniteTracker](https://fortnitetracker.com/challenges), top 6446 -167. [kwork](https://www.kwork.ru/), top 6655 -168. [Newgrounds](https://newgrounds.com), top 6668 -169. [Gitee](https://gitee.com/), top 6897 -170. [SublimeForum](https://forum.sublimetext.com/), top 6907 -171. [BOOTH](https://booth.pm/), top 7023 -172. [Trakt](https://www.trakt.tv/), top 7049 -173. [Discuss.Elastic.co](https://discuss.elastic.co/), top 7146 -174. [interpals](https://www.interpals.net/), top 7165 -175. [WikimapiaProfile](http://wikimapia.org), top 7174 -176. [WikimapiaSearch](http://wikimapia.org), top 7174 -177. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7213 -178. [opensource](https://opensource.com/), top 7233 -179. [Smule](https://www.smule.com/), top 7261 -180. [Proza.ru](https://www.proza.ru/), top 7335 -181. [Star Citizen](https://robertsspaceindustries.com/), top 7463 -182. [Pinkbike](https://www.pinkbike.com/), top 7540 -183. [OpenStreetMap](https://www.openstreetmap.org/), top 7701 -184. [Cloob](https://www.cloob.com/), top 7719 -185. [Flipboard](https://flipboard.com/), top 7826 -186. [NICommunityForum](https://www.native-instruments.com/forum/), top 7940 -187. [Facenama](https://facenama.com/), top 8097 -188. [3dnews](http://forum.3dnews.ru/), top 8293 -189. [Kali community](https://forums.kali.org/), top 8417 -190. [Typeracer](https://typeracer.com), top 8652 -191. [spletnik](https://spletnik.ru/), top 8754 -192. [DEV Community](https://dev.to/), top 8782 -193. [authorSTREAM](http://www.authorstream.com/), top 8835 -194. [IFTTT](https://www.ifttt.com/), top 9058 -195. [Codechef](https://www.codechef.com/), top 9132 -196. [ReverbNation](https://www.reverbnation.com/), top 9137 -197. [Launchpad](https://launchpad.net/), top 9528 -198. [kofi](https://ko-fi.com), top 9734 -199. [nightbot](https://nightbot.tv/), top 10092 -200. [PSNProfiles.com](https://psnprofiles.com/), top 10643 -201. [ProductHunt](https://www.producthunt.com/), top 10944 -202. [Speedrun.com](https://speedrun.com/), top 10971 -203. [geocaching](https://www.geocaching.com/), top 11142 -204. [akniga](https://akniga.org/profile/blue/), top 11202 -205. [Coderwall](https://coderwall.com/), top 11939 -206. [igromania](http://forum.igromania.ru/), top 12173 -207. [Teletype](https://teletype.in), top 12384 -208. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12407 -209. [couchsurfing](https://www.couchsurfing.com/), top 12793 -210. [forumhouseRU](https://www.forumhouse.ru/), top 12858 -211. [ImageShack](https://imageshack.com/), top 13304 -212. [Contently](https://contently.com/), top 13328 -213. [YouNow](https://www.younow.com/), top 13960 -214. [Sbazar.cz](https://www.sbazar.cz/), top 14449 -215. [babyblogRU](https://www.babyblog.ru/), top 14463 -216. [TrashboxRU](https://trashbox.ru/), top 15898 -217. [iMGSRC.RU](https://imgsrc.ru/), top 16613 -218. [sparkpeople](https://www.sparkpeople.com), top 16989 -219. [Samlib](http://samlib.ru/), top 18297 -220. [About.me](https://about.me/), top 19062 -221. [hackster](https://www.hackster.io), top 19525 -222. [WebNode](https://www.webnode.cz/), top 19685 -223. [Jimdo](https://jimdosite.com/), top 20051 -224. [EyeEm](https://www.eyeem.com/), top 20114 -225. [Codewars](https://www.codewars.com), top 20398 -226. [easyen](https://easyen.ru/), top 21091 -227. [YouPic](https://youpic.com/), top 23500 -228. [Packagist](https://packagist.org/), top 23510 -229. [GuruShots](https://gurushots.com/), top 23988 -230. [forum_guns](https://forum.guns.ru/), top 24198 -231. [Tellonym.me](https://tellonym.me/), top 24394 -232. [HackerOne](https://hackerone.com/), top 24497 -233. [Carbonmade](https://carbonmade.com/), top 25700 -234. [allmylinks](https://allmylinks.com/), top 26598 -235. [uid](https://uid.me/), top 28986 -236. [Ask Fedora](https://ask.fedoraproject.org/), top 30489 -237. [PromoDJ](http://promodj.com/), top 32551 -238. [Periscope](https://www.periscope.tv/), top 32930 -239. [RubyGems](https://rubygems.org/), top 33064 -240. [Realmeye](https://www.realmeye.com/), top 33097 -241. [Coroflot](https://coroflot.com/), top 37379 -242. [OpenCollective](https://opencollective.com/), top 37503 -243. [d3RU](https://d3.ru/), top 38372 -244. [Anobii](https://www.anobii.com/), top 41444 -245. [LOR](https://linux.org.ru/), top 41689 -246. [Football](https://www.rusfootball.info/), top 42336 -247. [HackTheBox](https://forum.hackthebox.eu/), top 42998 -248. [Ello](https://ello.co/), top 43730 -249. [7Cups](https://www.7cups.com/), top 50645 -250. [RoyalCams](https://royalcams.com), top 50752 -251. [Plug.DJ](https://plug.dj/), top 50895 -252. [NationStates Nation](https://nationstates.net), top 53448 -253. [NationStates Region](https://nationstates.net), top 53448 -254. [fl](https://www.fl.ru/), top 53667 -255. [Keybase](https://keybase.io/), top 57982 -256. [F3.cool](https://f3.cool/), top 58656 -257. [opennet](https://www.opennet.ru/), top 63879 -258. [Bookcrossing](https://www.bookcrossing.com/), top 65128 -259. [leasehackr](https://forum.leasehackr.com/), top 66996 -260. [Clozemaster](https://www.clozemaster.com), top 68801 -261. [datingRU](http://dating.ru), top 71209 -262. [eGPU](https://egpu.io/), top 80474 -263. [Asciinema](https://asciinema.org), top 83004 -264. [travellerspoint](https://www.travellerspoint.com), top 83396 -265. [Pling](https://www.pling.com/), top 92783 -266. [devRant](https://devrant.com/), top 93139 -267. [TamTam](https://tamtam.chat/), top 98745 -268. [Cent](https://cent.co/), top 99599 -269. [Velomania](https://forum.velomania.ru/), top 101006 -270. [phpRU](https://php.ru/forum/), top 115666 -271. [Lobsters](https://lobste.rs/), top 129889 -272. [radioskot](https://radioskot.ru/), top 138697 -273. [GunsAndAmmo](https://gunsandammo.com/), top 138979 -274. [hunting](https://www.hunting.ru/forum/), top 145363 -275. [Steamid](https://steamid.uk/), top 151277 -276. [notabug.org](https://notabug.org/), top 155148 -277. [KanoWorld](https://world.kano.me/), top 155829 -278. [BLIP.fm](https://blip.fm/), top 160252 -279. [moikrug](https://moikrug.ru/), top 186785 -280. [Crevado](https://crevado.com/), top 201684 -281. [Smashcast](https://www.smashcast.tv/), top 203497 -282. [Whonix Forum](https://forums.whonix.org/), top 206783 -283. [pvpru](https://pvpru.com/), top 270432 -284. [Hubski](https://hubski.com/), top 270708 -285. [eintracht](https://eintracht.de), top 275478 -286. [Bazar.cz](https://www.bazar.cz/), top 317058 -287. [BitCoinForum](https://bitcoinforum.com), top 317370 -288. [satsisRU](https://satsis.info/), top 322626 -289. [Avizo](https://www.avizo.cz/), top 352896 -290. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 454325 -291. [social.tchncs.de](https://social.tchncs.de/), top 490342 -292. [soylentnews](https://soylentnews.org), top 557006 -293. [Splits.io](https://splits.io), top 580435 -294. [Kik](http://kik.me/), top 704379 -295. [Alik.cz](https://www.alik.cz/), top 705075 -296. [House-Mixes.com](https://www.house-mixes.com/), top 713436 -297. [Gam1ng](https://gam1ng.com.br), top 908194 -298. [Signal](https://community.signalusers.org), top 939641 -299. [tracr.co](https://tracr.co/), top 993155 -300. [ShitpostBot5000](https://www.shitpostbot.com/), top 1001949 -301. [mastodon.technology](https://mastodon.xyz/), top 1034667 -302. [mastodon.xyz](https://mastodon.xyz/), top 1034667 -303. [mastodon.cloud](https://mastodon.cloud/), top 1349749 -304. [chaos.social](https://chaos.social/), top 1676076 -305. [mastodon.social](https://chaos.social/), top 1676076 -306. [mstdn.io](https://mstdn.io/), top 1933720 -307. [labpentestit](https://lab.pentestit.ru/), top 2343179 -308. [OurDJTalk](https://ourdjtalk.com/), top 3168225 -309. [PokerStrategy](http://www.pokerstrategy.net), top 3414611 -310. [Designspiration](https://www.designspiration.net/), top 4234418 -311. [svidbook](https://www.svidbook.ru/), top 4592288 -312. [GDProfiles](https://gdprofiles.com/), top 5059468 -313. [CashMe](https://cash.me/), top 6387848 -314. [2Dimensions](https://2Dimensions.com/), top 7164342 -315. [Chatujme.cz](https://chatujme.cz/), top 8086004 -316. [ImgUp.cz](https://imgup.cz/), top 9177087 -317. [Filmogs](https://www.filmo.gs/), top 0 -318. [nnRU](https://https://www.nn.ru/), top 0 +7. [MicrosoftTechNet](https://social.technet.microsoft.com), top 23 +8. [VK](https://vk.com/), top 24 +9. [BongaCams](https://pt.bongacams.com), top 26 +10. [Twitch](https://www.twitch.tv/), top 32 +11. [Livejasmin](https://www.livejasmin.com/), top 33 +12. [Instagram](https://www.instagram.com/), top 35 +13. [Ebay](https://www.ebay.com/), top 48 +14. [WordPress](https://wordpress.com), top 55 +15. [OK](https://ok.ru/), top 56 +16. [Yandex](https://yandex.ru/), top 58 +17. [YandexCollection](https://yandex.ru/collections/), top 58 +18. [YandexLocal](https://local.yandex.ru/), top 58 +19. [YandexMusic](https://music.yandex.ru/), top 58 +20. [YandexZnatoki](https://yandex.ru/q/), top 58 +21. [ChaturBate](https://chaturbate.com), top 60 +22. [Pornhub](https://pornhub.com/), top 61 +23. [Twitter](https://www.twitter.com/), top 63 +24. [Medium](https://medium.com/), top 79 +25. [GitHub](https://www.github.com/), top 85 +26. [Fandom](https://www.fandom.com/), top 89 +27. [Spotify](https://open.spotify.com/), top 90 +28. [SoundCloud](https://soundcloud.com/), top 95 +29. [Roblox](https://www.roblox.com/), top 113 +30. [Etsy](https://www.etsy.com/), top 120 +31. [Xvideos](https://xvideos.com/), top 125 +32. [SlideShare](https://slideshare.net/), top 133 +33. [Zhihu](https://www.zhihu.com/), top 137 +34. [TradingView](https://www.tradingview.com/), top 144 +35. [ResearchGate](https://www.researchgate.net/), top 146 +36. [CNET](https://www.cnet.com/), top 148 +37. [xHamster](https://xhamster.com), top 152 +38. [Trello](https://trello.com/), top 163 +39. [Vimeo](https://vimeo.com/), top 164 +40. [Pinterest](https://www.pinterest.com/), top 173 +41. [Steam](https://steamcommunity.com/), top 179 +42. [SteamGroup](https://steamcommunity.com/), top 179 +43. [mercadolivre](https://www.mercadolivre.com.br), top 186 +44. [Wix](https://wix.com/), top 194 +45. [Archive.org](https://archive.org), top 224 +46. [DailyMotion](https://www.dailymotion.com/), top 230 +47. [Slack](https://slack.com), top 245 +48. [Academia.edu](https://www.academia.edu/), top 269 +49. [Scribd](https://www.scribd.com/), top 277 +50. [Telegram](https://t.me/), top 279 +51. [Quora](https://www.quora.com/), top 283 +52. [aminoapp](https://aminoapps.com/), top 285 +53. [Euw](https://euw.op.gg/), top 289 +54. [Behance](https://www.behance.net/), top 314 +55. [Blogger](https://www.blogger.com/), top 326 +56. [GoodReads](https://www.goodreads.com/), top 327 +57. [Patreon](https://www.patreon.com/), top 346 +58. [Unsplash](https://unsplash.com/), top 404 +59. [Chess](https://www.chess.com/ru/), top 407 +60. [Fiverr](https://www.fiverr.com/), top 414 +61. [Duolingo](https://duolingo.com/), top 422 +62. [SourceForge](https://sourceforge.net/), top 430 +63. [LiveJournal](https://www.livejournal.com/), top 434 +64. [YouPorn](https://youporn.com), top 469 +65. [BuzzFeed](https://buzzfeed.com/), top 472 +66. [DeviantART](https://deviantart.com), top 542 +67. [Issuu](https://issuu.com/), top 548 +68. [Crunchyroll](https://www.crunchyroll.com/), top 554 +69. [Scratch](https://scratch.mit.edu/), top 560 +70. [Gamespot](https://www.gamespot.com/), top 568 +71. [TripAdvisor](https://tripadvisor.com/), top 574 +72. [Wattpad](https://www.wattpad.com/), top 592 +73. [Oracle Community](https://community.oracle.com), top 612 +74. [Giphy](https://giphy.com/), top 625 +75. [Ultimate-Guitar](https://ultimate-guitar.com/), top 628 +76. [WordPressOrg](https://wordpress.org/), top 650 +77. [note](https://note.com/), top 834 +78. [segmentfault](https://segmentfault.com/), top 836 +79. [Redbubble](https://www.redbubble.com/), top 952 +80. [MyAnimeList](https://myanimelist.net/), top 966 +81. [gfycat](https://gfycat.com/), top 1012 +82. [pikabu](https://pikabu.ru/), top 1021 +83. [Tinder](https://tinder.com/), top 1031 +84. [Bandcamp](https://www.bandcamp.com/), top 1044 +85. [Flickr](https://www.flickr.com/), top 1064 +86. [Disqus](https://disqus.com/), top 1072 +87. [Discogs](https://www.discogs.com/), top 1091 +88. [PCGamer](https://pcgamer.com), top 1095 +89. [Freelancer.com](https://www.freelancer.com/), top 1172 +90. [Polygon](https://www.polygon.com/), top 1254 +91. [Instructables](https://www.instructables.com/), top 1271 +92. [Dribbble](https://dribbble.com/), top 1301 +93. [Pastebin](https://pastebin.com/), top 1303 +94. [Career.habr](https://career.habr.com/), top 1363 +95. [Freelance.habr](https://freelance.habr.com/), top 1363 +96. [Toster](https://qna.habr.com/), top 1363 +97. [habr](https://habr.com/), top 1363 +98. [CloudflareCommunity](https://community.cloudflare.com/), top 1392 +99. [Houzz](https://houzz.com/), top 1436 +100. [T-MobileSupport](https://support.t-mobile.com), top 1452 +101. [drive2](https://www.drive2.ru/), top 1484 +102. [radio_echo_msk](https://echo.msk.ru/), top 1574 +103. [jeuxvideo](http://www.jeuxvideo.com), top 1737 +104. [Rajce.net](https://www.rajce.idnes.cz/), top 1761 +105. [Itch.io](https://itch.io/), top 1775 +106. [Otzovik](https://otzovik.com/), top 1795 +107. [Flightradar24](https://www.flightradar24.com/), top 1833 +108. [last.fm](https://last.fm/), top 1849 +109. [windy](https://windy.com/), top 1851 +110. [Taringa](https://taringa.net/), top 1865 +111. [Lichess](https://lichess.org), top 1867 +112. [Badoo](https://badoo.com/), top 1895 +113. [Championat](https://www.championat.com/), top 1931 +114. [BitBucket](https://bitbucket.org/), top 2034 +115. [PCPartPicker](https://pcpartpicker.com), top 2040 +116. [mixer.com](https://mixer.com/), top 2069 +117. [Codecademy](https://www.codecademy.com/), top 2126 +118. [irecommend](https://irecommend.ru/), top 2197 +119. [CreativeMarket](https://creativemarket.com/), top 2221 +120. [metacritic](https://www.metacritic.com/), top 2257 +121. [Myspace](https://myspace.com/), top 2261 +122. [LeetCode](https://leetcode.com/), top 2335 +123. [Zomato](https://www.zomato.com/), top 2344 +124. [Virgool](https://virgool.io/), top 2435 +125. [MixCloud](https://www.mixcloud.com/), top 2523 +126. [Kaggle](https://www.kaggle.com/), top 2589 +127. [4pda](https://4pda.ru/), top 2621 +128. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2623 +129. [SportsRU](https://www.sports.ru/), top 2657 +130. [Kongregate](https://www.kongregate.com/), top 2797 +131. [HackerRank](https://hackerrank.com/), top 2869 +132. [AskFM](https://ask.fm/), top 3029 +133. [We Heart It](https://weheartit.com/), top 3164 +134. [Sporcle](https://www.sporcle.com/), top 3281 +135. [Wikidot](http://www.wikidot.com/), top 3283 +136. [Lolchess](https://lolchess.gg/), top 3314 +137. [Docker Hub](https://hub.docker.com/), top 3325 +138. [Repl.it](https://repl.it/), top 3358 +139. [livelib](https://www.livelib.ru/), top 3429 +140. [HubPages](https://hubpages.com/), top 3495 +141. [500px](https://500px.com/), top 3594 +142. [GitLab](https://gitlab.com/), top 3714 +143. [warriorforum](https://www.warriorforum.com/), top 3745 +144. [Photobucket](https://photobucket.com/), top 3776 +145. [Letterboxd](https://letterboxd.com/), top 3816 +146. [Cracked](https://www.cracked.com/), top 3855 +147. [Gumroad](https://www.gumroad.com/), top 3885 +148. [pr0gramm](https://pr0gramm.com/), top 4176 +149. [AllTrails](https://www.alltrails.com/), top 4473 +150. [osu!](https://osu.ppy.sh/), top 4527 +151. [Pokemon Showdown](https://pokemonshowdown.com), top 4967 +152. [fixya](https://www.fixya.com), top 5085 +153. [VSCO](https://vsco.co/), top 5097 +154. [Venmo](https://venmo.com/), top 5489 +155. [VirusTotal](https://www.virustotal.com/), top 5588 +156. [HackerNews](https://news.ycombinator.com/), top 5603 +157. [Memrise](https://www.memrise.com/), top 5678 +158. [Stihi.ru](https://www.stihi.ru/), top 5704 +159. [Rate Your Music](https://rateyourmusic.com/), top 5714 +160. [dailykos](https://www.dailykos.com), top 5757 +161. [Aptoide](https://en.aptoide.com/), top 6011 +162. [babyRU](https://www.baby.ru/), top 6069 +163. [Audiojungle](https://audiojungle.net/), top 6116 +164. [Gravatar](http://en.gravatar.com/), top 6149 +165. [NPM](https://www.npmjs.com/), top 6318 +166. [NPM-Package](https://www.npmjs.com/), top 6318 +167. [Freesound](https://freesound.org/), top 6414 +168. [FortniteTracker](https://fortnitetracker.com/challenges), top 6446 +169. [kwork](https://www.kwork.ru/), top 6655 +170. [Newgrounds](https://newgrounds.com), top 6668 +171. [Gitee](https://gitee.com/), top 6897 +172. [SublimeForum](https://forum.sublimetext.com/), top 6907 +173. [BOOTH](https://booth.pm/), top 7023 +174. [Trakt](https://www.trakt.tv/), top 7049 +175. [Discuss.Elastic.co](https://discuss.elastic.co/), top 7146 +176. [interpals](https://www.interpals.net/), top 7165 +177. [WikimapiaProfile](http://wikimapia.org), top 7174 +178. [WikimapiaSearch](http://wikimapia.org), top 7174 +179. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7213 +180. [opensource](https://opensource.com/), top 7233 +181. [Smule](https://www.smule.com/), top 7261 +182. [Proza.ru](https://www.proza.ru/), top 7335 +183. [Star Citizen](https://robertsspaceindustries.com/), top 7463 +184. [Pinkbike](https://www.pinkbike.com/), top 7540 +185. [OpenStreetMap](https://www.openstreetmap.org/), top 7701 +186. [Cloob](https://www.cloob.com/), top 7719 +187. [Flipboard](https://flipboard.com/), top 7826 +188. [NICommunityForum](https://www.native-instruments.com/forum/), top 7940 +189. [Facenama](https://facenama.com/), top 8097 +190. [3dnews](http://forum.3dnews.ru/), top 8293 +191. [Kali community](https://forums.kali.org/), top 8417 +192. [Typeracer](https://typeracer.com), top 8652 +193. [spletnik](https://spletnik.ru/), top 8754 +194. [DEV Community](https://dev.to/), top 8782 +195. [authorSTREAM](http://www.authorstream.com/), top 8835 +196. [IFTTT](https://www.ifttt.com/), top 9058 +197. [Codechef](https://www.codechef.com/), top 9132 +198. [ReverbNation](https://www.reverbnation.com/), top 9137 +199. [Launchpad](https://launchpad.net/), top 9528 +200. [kofi](https://ko-fi.com), top 9734 +201. [nightbot](https://nightbot.tv/), top 10092 +202. [PSNProfiles.com](https://psnprofiles.com/), top 10643 +203. [ProductHunt](https://www.producthunt.com/), top 10944 +204. [Speedrun.com](https://speedrun.com/), top 10971 +205. [geocaching](https://www.geocaching.com/), top 11142 +206. [akniga](https://akniga.org/profile/blue/), top 11202 +207. [Coderwall](https://coderwall.com/), top 11939 +208. [igromania](http://forum.igromania.ru/), top 12173 +209. [Teletype](https://teletype.in), top 12384 +210. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12407 +211. [couchsurfing](https://www.couchsurfing.com/), top 12793 +212. [forumhouseRU](https://www.forumhouse.ru/), top 12858 +213. [ImageShack](https://imageshack.com/), top 13304 +214. [Contently](https://contently.com/), top 13328 +215. [YouNow](https://www.younow.com/), top 13960 +216. [Sbazar.cz](https://www.sbazar.cz/), top 14449 +217. [babyblogRU](https://www.babyblog.ru/), top 14463 +218. [TrashboxRU](https://trashbox.ru/), top 15898 +219. [iMGSRC.RU](https://imgsrc.ru/), top 16613 +220. [sparkpeople](https://www.sparkpeople.com), top 16989 +221. [Samlib](http://samlib.ru/), top 18297 +222. [About.me](https://about.me/), top 19062 +223. [hackster](https://www.hackster.io), top 19525 +224. [WebNode](https://www.webnode.cz/), top 19685 +225. [Jimdo](https://jimdosite.com/), top 20051 +226. [EyeEm](https://www.eyeem.com/), top 20114 +227. [Codewars](https://www.codewars.com), top 20398 +228. [easyen](https://easyen.ru/), top 21091 +229. [YouPic](https://youpic.com/), top 23500 +230. [Packagist](https://packagist.org/), top 23510 +231. [GuruShots](https://gurushots.com/), top 23988 +232. [forum_guns](https://forum.guns.ru/), top 24198 +233. [Tellonym.me](https://tellonym.me/), top 24394 +234. [HackerOne](https://hackerone.com/), top 24497 +235. [Carbonmade](https://carbonmade.com/), top 25700 +236. [allmylinks](https://allmylinks.com/), top 26598 +237. [uid](https://uid.me/), top 28986 +238. [Ask Fedora](https://ask.fedoraproject.org/), top 30489 +239. [PromoDJ](http://promodj.com/), top 32551 +240. [Periscope](https://www.periscope.tv/), top 32930 +241. [RubyGems](https://rubygems.org/), top 33064 +242. [Realmeye](https://www.realmeye.com/), top 33097 +243. [Coroflot](https://coroflot.com/), top 37379 +244. [OpenCollective](https://opencollective.com/), top 37503 +245. [d3RU](https://d3.ru/), top 38372 +246. [Anobii](https://www.anobii.com/), top 41444 +247. [LOR](https://linux.org.ru/), top 41689 +248. [Football](https://www.rusfootball.info/), top 42336 +249. [HackTheBox](https://forum.hackthebox.eu/), top 42998 +250. [Ello](https://ello.co/), top 43730 +251. [7Cups](https://www.7cups.com/), top 50645 +252. [RoyalCams](https://royalcams.com), top 50752 +253. [Plug.DJ](https://plug.dj/), top 50895 +254. [NationStates Nation](https://nationstates.net), top 53448 +255. [NationStates Region](https://nationstates.net), top 53448 +256. [fl](https://www.fl.ru/), top 53667 +257. [Keybase](https://keybase.io/), top 57982 +258. [F3.cool](https://f3.cool/), top 58656 +259. [opennet](https://www.opennet.ru/), top 63879 +260. [Bookcrossing](https://www.bookcrossing.com/), top 65128 +261. [leasehackr](https://forum.leasehackr.com/), top 66996 +262. [Clozemaster](https://www.clozemaster.com), top 68801 +263. [datingRU](http://dating.ru), top 71209 +264. [eGPU](https://egpu.io/), top 80474 +265. [Asciinema](https://asciinema.org), top 83004 +266. [travellerspoint](https://www.travellerspoint.com), top 83396 +267. [Pling](https://www.pling.com/), top 92783 +268. [devRant](https://devrant.com/), top 93139 +269. [TamTam](https://tamtam.chat/), top 98745 +270. [Cent](https://cent.co/), top 99599 +271. [Velomania](https://forum.velomania.ru/), top 101006 +272. [phpRU](https://php.ru/forum/), top 115666 +273. [Lobsters](https://lobste.rs/), top 129889 +274. [radioskot](https://radioskot.ru/), top 138697 +275. [GunsAndAmmo](https://gunsandammo.com/), top 138979 +276. [hunting](https://www.hunting.ru/forum/), top 145363 +277. [Steamid](https://steamid.uk/), top 151277 +278. [notabug.org](https://notabug.org/), top 155148 +279. [KanoWorld](https://world.kano.me/), top 155829 +280. [BLIP.fm](https://blip.fm/), top 160252 +281. [moikrug](https://moikrug.ru/), top 186785 +282. [Crevado](https://crevado.com/), top 201684 +283. [Smashcast](https://www.smashcast.tv/), top 203497 +284. [Whonix Forum](https://forums.whonix.org/), top 206783 +285. [pvpru](https://pvpru.com/), top 270432 +286. [Hubski](https://hubski.com/), top 270708 +287. [eintracht](https://eintracht.de), top 275478 +288. [Bazar.cz](https://www.bazar.cz/), top 317058 +289. [BitCoinForum](https://bitcoinforum.com), top 317370 +290. [satsisRU](https://satsis.info/), top 322626 +291. [Avizo](https://www.avizo.cz/), top 352896 +292. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 454325 +293. [social.tchncs.de](https://social.tchncs.de/), top 490342 +294. [soylentnews](https://soylentnews.org), top 557006 +295. [Splits.io](https://splits.io), top 580435 +296. [Kik](http://kik.me/), top 704379 +297. [Alik.cz](https://www.alik.cz/), top 705075 +298. [House-Mixes.com](https://www.house-mixes.com/), top 713436 +299. [Gam1ng](https://gam1ng.com.br), top 908194 +300. [Signal](https://community.signalusers.org), top 939641 +301. [tracr.co](https://tracr.co/), top 993155 +302. [ShitpostBot5000](https://www.shitpostbot.com/), top 1001949 +303. [mastodon.technology](https://mastodon.xyz/), top 1034667 +304. [mastodon.xyz](https://mastodon.xyz/), top 1034667 +305. [mastodon.cloud](https://mastodon.cloud/), top 1349749 +306. [chaos.social](https://chaos.social/), top 1676076 +307. [mastodon.social](https://chaos.social/), top 1676076 +308. [mstdn.io](https://mstdn.io/), top 1933720 +309. [labpentestit](https://lab.pentestit.ru/), top 2343179 +310. [OurDJTalk](https://ourdjtalk.com/), top 3168225 +311. [PokerStrategy](http://www.pokerstrategy.net), top 3414611 +312. [Designspiration](https://www.designspiration.net/), top 4234418 +313. [svidbook](https://www.svidbook.ru/), top 4592288 +314. [GDProfiles](https://gdprofiles.com/), top 5059468 +315. [CashMe](https://cash.me/), top 6387848 +316. [2Dimensions](https://2Dimensions.com/), top 7164342 +317. [Chatujme.cz](https://chatujme.cz/), top 8086004 +318. [ImgUp.cz](https://imgup.cz/), top 9177087 +319. [Filmogs](https://www.filmo.gs/), top 0 +320. [nnRU](https://https://www.nn.ru/), top 0 -Alexa.com rank data fetched at (2020-07-18 20:27:13.256122 UTC) +Alexa.com rank data fetched at (2020-07-18 20:40:22.470589 UTC) From 965d8bb9797fac69f2625bb1381c4a0a8b56a24a Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 19 Jul 2020 00:22:15 +0300 Subject: [PATCH 25/39] Apple services --- maigret/resources/data.json | 46 ++- sites.md | 620 ++++++++++++++++++------------------ 2 files changed, 345 insertions(+), 321 deletions(-) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index f8e029e2c..e1426d742 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -110,6 +110,28 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "AppleDeveloper": { + "errorType": "status_code", + "rank": 50, + "tags": [ + "us" + ], + "url": "https://developer.apple.com/forums/profile/{}", + "urlMain": "https://developer.apple.com/forums", + "username_claimed": "GauravGosain", + "username_unclaimed": "noonewouldeverusethis7" + }, + "AppleDiscussions": { + "errorType": "status_code", + "rank": 50, + "tags": [ + "us" + ], + "url": "https://discussions.apple.com/profile/{}", + "urlMain": "https://discussions.apple.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "Aptoide": { "errorType": "status_code", "rank": 6011, @@ -1448,6 +1470,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "LiveLib": { + "errorType": "status_code", + "rank": 3429, + "tags": [ + "reading", + "ru" + ], + "url": "https://www.livelib.ru/reader/{}", + "urlMain": "https://www.livelib.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "Livejasmin": { "errorMsg": ":[]", "errorType": "message", @@ -3368,18 +3402,6 @@ "username_claimed": "adam", "username_unclaimed": "noonewouldeverusethis" }, - "livelib": { - "errorType": "status_code", - "rank": 3429, - "tags": [ - "reading", - "ru" - ], - "url": "https://www.livelib.ru/reader/{}", - "urlMain": "https://www.livelib.ru/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, "mastodon.cloud": { "errorType": "status_code", "rank": 1349749, diff --git a/sites.md b/sites.md index ae548fed3..2acd0ee38 100644 --- a/sites.md +++ b/sites.md @@ -1,4 +1,4 @@ -## List of supported sites: total 320 +## List of supported sites: total 322 1. [GoogleMaps](https://maps.google.com/), top 1 2. [PlayStore](https://play.google.com/store), top 1 3. [YouTube](https://www.youtube.com/), top 2 @@ -12,312 +12,314 @@ 11. [Livejasmin](https://www.livejasmin.com/), top 33 12. [Instagram](https://www.instagram.com/), top 35 13. [Ebay](https://www.ebay.com/), top 48 -14. [WordPress](https://wordpress.com), top 55 -15. [OK](https://ok.ru/), top 56 -16. [Yandex](https://yandex.ru/), top 58 -17. [YandexCollection](https://yandex.ru/collections/), top 58 -18. [YandexLocal](https://local.yandex.ru/), top 58 -19. [YandexMusic](https://music.yandex.ru/), top 58 -20. [YandexZnatoki](https://yandex.ru/q/), top 58 -21. [ChaturBate](https://chaturbate.com), top 60 -22. [Pornhub](https://pornhub.com/), top 61 -23. [Twitter](https://www.twitter.com/), top 63 -24. [Medium](https://medium.com/), top 79 -25. [GitHub](https://www.github.com/), top 85 -26. [Fandom](https://www.fandom.com/), top 89 -27. [Spotify](https://open.spotify.com/), top 90 -28. [SoundCloud](https://soundcloud.com/), top 95 -29. [Roblox](https://www.roblox.com/), top 113 -30. [Etsy](https://www.etsy.com/), top 120 -31. [Xvideos](https://xvideos.com/), top 125 -32. [SlideShare](https://slideshare.net/), top 133 -33. [Zhihu](https://www.zhihu.com/), top 137 -34. [TradingView](https://www.tradingview.com/), top 144 -35. [ResearchGate](https://www.researchgate.net/), top 146 -36. [CNET](https://www.cnet.com/), top 148 -37. [xHamster](https://xhamster.com), top 152 -38. [Trello](https://trello.com/), top 163 -39. [Vimeo](https://vimeo.com/), top 164 -40. [Pinterest](https://www.pinterest.com/), top 173 -41. [Steam](https://steamcommunity.com/), top 179 -42. [SteamGroup](https://steamcommunity.com/), top 179 -43. [mercadolivre](https://www.mercadolivre.com.br), top 186 -44. [Wix](https://wix.com/), top 194 -45. [Archive.org](https://archive.org), top 224 -46. [DailyMotion](https://www.dailymotion.com/), top 230 -47. [Slack](https://slack.com), top 245 -48. [Academia.edu](https://www.academia.edu/), top 269 -49. [Scribd](https://www.scribd.com/), top 277 -50. [Telegram](https://t.me/), top 279 -51. [Quora](https://www.quora.com/), top 283 -52. [aminoapp](https://aminoapps.com/), top 285 -53. [Euw](https://euw.op.gg/), top 289 -54. [Behance](https://www.behance.net/), top 314 -55. [Blogger](https://www.blogger.com/), top 326 -56. [GoodReads](https://www.goodreads.com/), top 327 -57. [Patreon](https://www.patreon.com/), top 346 -58. [Unsplash](https://unsplash.com/), top 404 -59. [Chess](https://www.chess.com/ru/), top 407 -60. [Fiverr](https://www.fiverr.com/), top 414 -61. [Duolingo](https://duolingo.com/), top 422 -62. [SourceForge](https://sourceforge.net/), top 430 -63. [LiveJournal](https://www.livejournal.com/), top 434 -64. [YouPorn](https://youporn.com), top 469 -65. [BuzzFeed](https://buzzfeed.com/), top 472 -66. [DeviantART](https://deviantart.com), top 542 -67. [Issuu](https://issuu.com/), top 548 -68. [Crunchyroll](https://www.crunchyroll.com/), top 554 -69. [Scratch](https://scratch.mit.edu/), top 560 -70. [Gamespot](https://www.gamespot.com/), top 568 -71. [TripAdvisor](https://tripadvisor.com/), top 574 -72. [Wattpad](https://www.wattpad.com/), top 592 -73. [Oracle Community](https://community.oracle.com), top 612 -74. [Giphy](https://giphy.com/), top 625 -75. [Ultimate-Guitar](https://ultimate-guitar.com/), top 628 -76. [WordPressOrg](https://wordpress.org/), top 650 -77. [note](https://note.com/), top 834 -78. [segmentfault](https://segmentfault.com/), top 836 -79. [Redbubble](https://www.redbubble.com/), top 952 -80. [MyAnimeList](https://myanimelist.net/), top 966 -81. [gfycat](https://gfycat.com/), top 1012 -82. [pikabu](https://pikabu.ru/), top 1021 -83. [Tinder](https://tinder.com/), top 1031 -84. [Bandcamp](https://www.bandcamp.com/), top 1044 -85. [Flickr](https://www.flickr.com/), top 1064 -86. [Disqus](https://disqus.com/), top 1072 -87. [Discogs](https://www.discogs.com/), top 1091 -88. [PCGamer](https://pcgamer.com), top 1095 -89. [Freelancer.com](https://www.freelancer.com/), top 1172 -90. [Polygon](https://www.polygon.com/), top 1254 -91. [Instructables](https://www.instructables.com/), top 1271 -92. [Dribbble](https://dribbble.com/), top 1301 -93. [Pastebin](https://pastebin.com/), top 1303 -94. [Career.habr](https://career.habr.com/), top 1363 -95. [Freelance.habr](https://freelance.habr.com/), top 1363 -96. [Toster](https://qna.habr.com/), top 1363 -97. [habr](https://habr.com/), top 1363 -98. [CloudflareCommunity](https://community.cloudflare.com/), top 1392 -99. [Houzz](https://houzz.com/), top 1436 -100. [T-MobileSupport](https://support.t-mobile.com), top 1452 -101. [drive2](https://www.drive2.ru/), top 1484 -102. [radio_echo_msk](https://echo.msk.ru/), top 1574 -103. [jeuxvideo](http://www.jeuxvideo.com), top 1737 -104. [Rajce.net](https://www.rajce.idnes.cz/), top 1761 -105. [Itch.io](https://itch.io/), top 1775 -106. [Otzovik](https://otzovik.com/), top 1795 -107. [Flightradar24](https://www.flightradar24.com/), top 1833 -108. [last.fm](https://last.fm/), top 1849 -109. [windy](https://windy.com/), top 1851 -110. [Taringa](https://taringa.net/), top 1865 -111. [Lichess](https://lichess.org), top 1867 -112. [Badoo](https://badoo.com/), top 1895 -113. [Championat](https://www.championat.com/), top 1931 -114. [BitBucket](https://bitbucket.org/), top 2034 -115. [PCPartPicker](https://pcpartpicker.com), top 2040 -116. [mixer.com](https://mixer.com/), top 2069 -117. [Codecademy](https://www.codecademy.com/), top 2126 -118. [irecommend](https://irecommend.ru/), top 2197 -119. [CreativeMarket](https://creativemarket.com/), top 2221 -120. [metacritic](https://www.metacritic.com/), top 2257 -121. [Myspace](https://myspace.com/), top 2261 -122. [LeetCode](https://leetcode.com/), top 2335 -123. [Zomato](https://www.zomato.com/), top 2344 -124. [Virgool](https://virgool.io/), top 2435 -125. [MixCloud](https://www.mixcloud.com/), top 2523 -126. [Kaggle](https://www.kaggle.com/), top 2589 -127. [4pda](https://4pda.ru/), top 2621 -128. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2623 -129. [SportsRU](https://www.sports.ru/), top 2657 -130. [Kongregate](https://www.kongregate.com/), top 2797 -131. [HackerRank](https://hackerrank.com/), top 2869 -132. [AskFM](https://ask.fm/), top 3029 -133. [We Heart It](https://weheartit.com/), top 3164 -134. [Sporcle](https://www.sporcle.com/), top 3281 -135. [Wikidot](http://www.wikidot.com/), top 3283 -136. [Lolchess](https://lolchess.gg/), top 3314 -137. [Docker Hub](https://hub.docker.com/), top 3325 -138. [Repl.it](https://repl.it/), top 3358 -139. [livelib](https://www.livelib.ru/), top 3429 -140. [HubPages](https://hubpages.com/), top 3495 -141. [500px](https://500px.com/), top 3594 -142. [GitLab](https://gitlab.com/), top 3714 -143. [warriorforum](https://www.warriorforum.com/), top 3745 -144. [Photobucket](https://photobucket.com/), top 3776 -145. [Letterboxd](https://letterboxd.com/), top 3816 -146. [Cracked](https://www.cracked.com/), top 3855 -147. [Gumroad](https://www.gumroad.com/), top 3885 -148. [pr0gramm](https://pr0gramm.com/), top 4176 -149. [AllTrails](https://www.alltrails.com/), top 4473 -150. [osu!](https://osu.ppy.sh/), top 4527 -151. [Pokemon Showdown](https://pokemonshowdown.com), top 4967 -152. [fixya](https://www.fixya.com), top 5085 -153. [VSCO](https://vsco.co/), top 5097 -154. [Venmo](https://venmo.com/), top 5489 -155. [VirusTotal](https://www.virustotal.com/), top 5588 -156. [HackerNews](https://news.ycombinator.com/), top 5603 -157. [Memrise](https://www.memrise.com/), top 5678 -158. [Stihi.ru](https://www.stihi.ru/), top 5704 -159. [Rate Your Music](https://rateyourmusic.com/), top 5714 -160. [dailykos](https://www.dailykos.com), top 5757 -161. [Aptoide](https://en.aptoide.com/), top 6011 -162. [babyRU](https://www.baby.ru/), top 6069 -163. [Audiojungle](https://audiojungle.net/), top 6116 -164. [Gravatar](http://en.gravatar.com/), top 6149 -165. [NPM](https://www.npmjs.com/), top 6318 -166. [NPM-Package](https://www.npmjs.com/), top 6318 -167. [Freesound](https://freesound.org/), top 6414 -168. [FortniteTracker](https://fortnitetracker.com/challenges), top 6446 -169. [kwork](https://www.kwork.ru/), top 6655 -170. [Newgrounds](https://newgrounds.com), top 6668 -171. [Gitee](https://gitee.com/), top 6897 -172. [SublimeForum](https://forum.sublimetext.com/), top 6907 -173. [BOOTH](https://booth.pm/), top 7023 -174. [Trakt](https://www.trakt.tv/), top 7049 -175. [Discuss.Elastic.co](https://discuss.elastic.co/), top 7146 -176. [interpals](https://www.interpals.net/), top 7165 -177. [WikimapiaProfile](http://wikimapia.org), top 7174 -178. [WikimapiaSearch](http://wikimapia.org), top 7174 -179. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7213 -180. [opensource](https://opensource.com/), top 7233 -181. [Smule](https://www.smule.com/), top 7261 -182. [Proza.ru](https://www.proza.ru/), top 7335 -183. [Star Citizen](https://robertsspaceindustries.com/), top 7463 -184. [Pinkbike](https://www.pinkbike.com/), top 7540 -185. [OpenStreetMap](https://www.openstreetmap.org/), top 7701 -186. [Cloob](https://www.cloob.com/), top 7719 -187. [Flipboard](https://flipboard.com/), top 7826 -188. [NICommunityForum](https://www.native-instruments.com/forum/), top 7940 -189. [Facenama](https://facenama.com/), top 8097 -190. [3dnews](http://forum.3dnews.ru/), top 8293 -191. [Kali community](https://forums.kali.org/), top 8417 -192. [Typeracer](https://typeracer.com), top 8652 -193. [spletnik](https://spletnik.ru/), top 8754 -194. [DEV Community](https://dev.to/), top 8782 -195. [authorSTREAM](http://www.authorstream.com/), top 8835 -196. [IFTTT](https://www.ifttt.com/), top 9058 -197. [Codechef](https://www.codechef.com/), top 9132 -198. [ReverbNation](https://www.reverbnation.com/), top 9137 -199. [Launchpad](https://launchpad.net/), top 9528 -200. [kofi](https://ko-fi.com), top 9734 -201. [nightbot](https://nightbot.tv/), top 10092 -202. [PSNProfiles.com](https://psnprofiles.com/), top 10643 -203. [ProductHunt](https://www.producthunt.com/), top 10944 -204. [Speedrun.com](https://speedrun.com/), top 10971 -205. [geocaching](https://www.geocaching.com/), top 11142 -206. [akniga](https://akniga.org/profile/blue/), top 11202 -207. [Coderwall](https://coderwall.com/), top 11939 -208. [igromania](http://forum.igromania.ru/), top 12173 -209. [Teletype](https://teletype.in), top 12384 -210. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12407 -211. [couchsurfing](https://www.couchsurfing.com/), top 12793 -212. [forumhouseRU](https://www.forumhouse.ru/), top 12858 -213. [ImageShack](https://imageshack.com/), top 13304 -214. [Contently](https://contently.com/), top 13328 -215. [YouNow](https://www.younow.com/), top 13960 -216. [Sbazar.cz](https://www.sbazar.cz/), top 14449 -217. [babyblogRU](https://www.babyblog.ru/), top 14463 -218. [TrashboxRU](https://trashbox.ru/), top 15898 -219. [iMGSRC.RU](https://imgsrc.ru/), top 16613 -220. [sparkpeople](https://www.sparkpeople.com), top 16989 -221. [Samlib](http://samlib.ru/), top 18297 -222. [About.me](https://about.me/), top 19062 -223. [hackster](https://www.hackster.io), top 19525 -224. [WebNode](https://www.webnode.cz/), top 19685 -225. [Jimdo](https://jimdosite.com/), top 20051 -226. [EyeEm](https://www.eyeem.com/), top 20114 -227. [Codewars](https://www.codewars.com), top 20398 -228. [easyen](https://easyen.ru/), top 21091 -229. [YouPic](https://youpic.com/), top 23500 -230. [Packagist](https://packagist.org/), top 23510 -231. [GuruShots](https://gurushots.com/), top 23988 -232. [forum_guns](https://forum.guns.ru/), top 24198 -233. [Tellonym.me](https://tellonym.me/), top 24394 -234. [HackerOne](https://hackerone.com/), top 24497 -235. [Carbonmade](https://carbonmade.com/), top 25700 -236. [allmylinks](https://allmylinks.com/), top 26598 -237. [uid](https://uid.me/), top 28986 -238. [Ask Fedora](https://ask.fedoraproject.org/), top 30489 -239. [PromoDJ](http://promodj.com/), top 32551 -240. [Periscope](https://www.periscope.tv/), top 32930 -241. [RubyGems](https://rubygems.org/), top 33064 -242. [Realmeye](https://www.realmeye.com/), top 33097 -243. [Coroflot](https://coroflot.com/), top 37379 -244. [OpenCollective](https://opencollective.com/), top 37503 -245. [d3RU](https://d3.ru/), top 38372 -246. [Anobii](https://www.anobii.com/), top 41444 -247. [LOR](https://linux.org.ru/), top 41689 -248. [Football](https://www.rusfootball.info/), top 42336 -249. [HackTheBox](https://forum.hackthebox.eu/), top 42998 -250. [Ello](https://ello.co/), top 43730 -251. [7Cups](https://www.7cups.com/), top 50645 -252. [RoyalCams](https://royalcams.com), top 50752 -253. [Plug.DJ](https://plug.dj/), top 50895 -254. [NationStates Nation](https://nationstates.net), top 53448 -255. [NationStates Region](https://nationstates.net), top 53448 -256. [fl](https://www.fl.ru/), top 53667 -257. [Keybase](https://keybase.io/), top 57982 -258. [F3.cool](https://f3.cool/), top 58656 -259. [opennet](https://www.opennet.ru/), top 63879 -260. [Bookcrossing](https://www.bookcrossing.com/), top 65128 -261. [leasehackr](https://forum.leasehackr.com/), top 66996 -262. [Clozemaster](https://www.clozemaster.com), top 68801 -263. [datingRU](http://dating.ru), top 71209 -264. [eGPU](https://egpu.io/), top 80474 -265. [Asciinema](https://asciinema.org), top 83004 -266. [travellerspoint](https://www.travellerspoint.com), top 83396 -267. [Pling](https://www.pling.com/), top 92783 -268. [devRant](https://devrant.com/), top 93139 -269. [TamTam](https://tamtam.chat/), top 98745 -270. [Cent](https://cent.co/), top 99599 -271. [Velomania](https://forum.velomania.ru/), top 101006 -272. [phpRU](https://php.ru/forum/), top 115666 -273. [Lobsters](https://lobste.rs/), top 129889 -274. [radioskot](https://radioskot.ru/), top 138697 -275. [GunsAndAmmo](https://gunsandammo.com/), top 138979 -276. [hunting](https://www.hunting.ru/forum/), top 145363 -277. [Steamid](https://steamid.uk/), top 151277 -278. [notabug.org](https://notabug.org/), top 155148 -279. [KanoWorld](https://world.kano.me/), top 155829 -280. [BLIP.fm](https://blip.fm/), top 160252 -281. [moikrug](https://moikrug.ru/), top 186785 -282. [Crevado](https://crevado.com/), top 201684 -283. [Smashcast](https://www.smashcast.tv/), top 203497 -284. [Whonix Forum](https://forums.whonix.org/), top 206783 -285. [pvpru](https://pvpru.com/), top 270432 -286. [Hubski](https://hubski.com/), top 270708 -287. [eintracht](https://eintracht.de), top 275478 -288. [Bazar.cz](https://www.bazar.cz/), top 317058 -289. [BitCoinForum](https://bitcoinforum.com), top 317370 -290. [satsisRU](https://satsis.info/), top 322626 -291. [Avizo](https://www.avizo.cz/), top 352896 -292. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 454325 -293. [social.tchncs.de](https://social.tchncs.de/), top 490342 -294. [soylentnews](https://soylentnews.org), top 557006 -295. [Splits.io](https://splits.io), top 580435 -296. [Kik](http://kik.me/), top 704379 -297. [Alik.cz](https://www.alik.cz/), top 705075 -298. [House-Mixes.com](https://www.house-mixes.com/), top 713436 -299. [Gam1ng](https://gam1ng.com.br), top 908194 -300. [Signal](https://community.signalusers.org), top 939641 -301. [tracr.co](https://tracr.co/), top 993155 -302. [ShitpostBot5000](https://www.shitpostbot.com/), top 1001949 -303. [mastodon.technology](https://mastodon.xyz/), top 1034667 -304. [mastodon.xyz](https://mastodon.xyz/), top 1034667 -305. [mastodon.cloud](https://mastodon.cloud/), top 1349749 -306. [chaos.social](https://chaos.social/), top 1676076 -307. [mastodon.social](https://chaos.social/), top 1676076 -308. [mstdn.io](https://mstdn.io/), top 1933720 -309. [labpentestit](https://lab.pentestit.ru/), top 2343179 -310. [OurDJTalk](https://ourdjtalk.com/), top 3168225 -311. [PokerStrategy](http://www.pokerstrategy.net), top 3414611 -312. [Designspiration](https://www.designspiration.net/), top 4234418 -313. [svidbook](https://www.svidbook.ru/), top 4592288 -314. [GDProfiles](https://gdprofiles.com/), top 5059468 -315. [CashMe](https://cash.me/), top 6387848 -316. [2Dimensions](https://2Dimensions.com/), top 7164342 -317. [Chatujme.cz](https://chatujme.cz/), top 8086004 -318. [ImgUp.cz](https://imgup.cz/), top 9177087 -319. [Filmogs](https://www.filmo.gs/), top 0 -320. [nnRU](https://https://www.nn.ru/), top 0 +14. [AppleDeveloper](https://developer.apple.com/forums), top 50 +15. [AppleDiscussions](https://discussions.apple.com/), top 50 +16. [WordPress](https://wordpress.com), top 55 +17. [OK](https://ok.ru/), top 56 +18. [Yandex](https://yandex.ru/), top 58 +19. [YandexCollection](https://yandex.ru/collections/), top 58 +20. [YandexLocal](https://local.yandex.ru/), top 58 +21. [YandexMusic](https://music.yandex.ru/), top 58 +22. [YandexZnatoki](https://yandex.ru/q/), top 58 +23. [ChaturBate](https://chaturbate.com), top 60 +24. [Pornhub](https://pornhub.com/), top 61 +25. [Twitter](https://www.twitter.com/), top 63 +26. [Medium](https://medium.com/), top 79 +27. [GitHub](https://www.github.com/), top 85 +28. [Fandom](https://www.fandom.com/), top 89 +29. [Spotify](https://open.spotify.com/), top 90 +30. [SoundCloud](https://soundcloud.com/), top 95 +31. [Roblox](https://www.roblox.com/), top 113 +32. [Etsy](https://www.etsy.com/), top 120 +33. [Xvideos](https://xvideos.com/), top 125 +34. [SlideShare](https://slideshare.net/), top 133 +35. [Zhihu](https://www.zhihu.com/), top 137 +36. [TradingView](https://www.tradingview.com/), top 144 +37. [ResearchGate](https://www.researchgate.net/), top 146 +38. [CNET](https://www.cnet.com/), top 148 +39. [xHamster](https://xhamster.com), top 152 +40. [Trello](https://trello.com/), top 163 +41. [Vimeo](https://vimeo.com/), top 164 +42. [Pinterest](https://www.pinterest.com/), top 173 +43. [Steam](https://steamcommunity.com/), top 179 +44. [SteamGroup](https://steamcommunity.com/), top 179 +45. [mercadolivre](https://www.mercadolivre.com.br), top 186 +46. [Wix](https://wix.com/), top 194 +47. [Archive.org](https://archive.org), top 224 +48. [DailyMotion](https://www.dailymotion.com/), top 230 +49. [Slack](https://slack.com), top 245 +50. [Academia.edu](https://www.academia.edu/), top 269 +51. [Scribd](https://www.scribd.com/), top 277 +52. [Telegram](https://t.me/), top 279 +53. [Quora](https://www.quora.com/), top 283 +54. [aminoapp](https://aminoapps.com/), top 285 +55. [Euw](https://euw.op.gg/), top 289 +56. [Behance](https://www.behance.net/), top 314 +57. [Blogger](https://www.blogger.com/), top 326 +58. [GoodReads](https://www.goodreads.com/), top 327 +59. [Patreon](https://www.patreon.com/), top 346 +60. [Unsplash](https://unsplash.com/), top 404 +61. [Chess](https://www.chess.com/ru/), top 407 +62. [Fiverr](https://www.fiverr.com/), top 414 +63. [Duolingo](https://duolingo.com/), top 422 +64. [SourceForge](https://sourceforge.net/), top 430 +65. [LiveJournal](https://www.livejournal.com/), top 434 +66. [YouPorn](https://youporn.com), top 469 +67. [BuzzFeed](https://buzzfeed.com/), top 472 +68. [DeviantART](https://deviantart.com), top 542 +69. [Issuu](https://issuu.com/), top 548 +70. [Crunchyroll](https://www.crunchyroll.com/), top 554 +71. [Scratch](https://scratch.mit.edu/), top 560 +72. [Gamespot](https://www.gamespot.com/), top 568 +73. [TripAdvisor](https://tripadvisor.com/), top 574 +74. [Wattpad](https://www.wattpad.com/), top 592 +75. [Oracle Community](https://community.oracle.com), top 612 +76. [Giphy](https://giphy.com/), top 625 +77. [Ultimate-Guitar](https://ultimate-guitar.com/), top 628 +78. [WordPressOrg](https://wordpress.org/), top 650 +79. [note](https://note.com/), top 834 +80. [segmentfault](https://segmentfault.com/), top 836 +81. [Redbubble](https://www.redbubble.com/), top 952 +82. [MyAnimeList](https://myanimelist.net/), top 966 +83. [gfycat](https://gfycat.com/), top 1012 +84. [pikabu](https://pikabu.ru/), top 1021 +85. [Tinder](https://tinder.com/), top 1031 +86. [Bandcamp](https://www.bandcamp.com/), top 1044 +87. [Flickr](https://www.flickr.com/), top 1064 +88. [Disqus](https://disqus.com/), top 1072 +89. [Discogs](https://www.discogs.com/), top 1091 +90. [PCGamer](https://pcgamer.com), top 1095 +91. [Freelancer.com](https://www.freelancer.com/), top 1172 +92. [Polygon](https://www.polygon.com/), top 1254 +93. [Instructables](https://www.instructables.com/), top 1271 +94. [Dribbble](https://dribbble.com/), top 1301 +95. [Pastebin](https://pastebin.com/), top 1303 +96. [Career.habr](https://career.habr.com/), top 1363 +97. [Freelance.habr](https://freelance.habr.com/), top 1363 +98. [Toster](https://qna.habr.com/), top 1363 +99. [habr](https://habr.com/), top 1363 +100. [CloudflareCommunity](https://community.cloudflare.com/), top 1392 +101. [Houzz](https://houzz.com/), top 1436 +102. [T-MobileSupport](https://support.t-mobile.com), top 1452 +103. [drive2](https://www.drive2.ru/), top 1484 +104. [radio_echo_msk](https://echo.msk.ru/), top 1574 +105. [jeuxvideo](http://www.jeuxvideo.com), top 1737 +106. [Rajce.net](https://www.rajce.idnes.cz/), top 1761 +107. [Itch.io](https://itch.io/), top 1775 +108. [Otzovik](https://otzovik.com/), top 1795 +109. [Flightradar24](https://www.flightradar24.com/), top 1833 +110. [last.fm](https://last.fm/), top 1849 +111. [windy](https://windy.com/), top 1851 +112. [Taringa](https://taringa.net/), top 1865 +113. [Lichess](https://lichess.org), top 1867 +114. [Badoo](https://badoo.com/), top 1895 +115. [Championat](https://www.championat.com/), top 1931 +116. [BitBucket](https://bitbucket.org/), top 2034 +117. [PCPartPicker](https://pcpartpicker.com), top 2040 +118. [mixer.com](https://mixer.com/), top 2069 +119. [Codecademy](https://www.codecademy.com/), top 2126 +120. [irecommend](https://irecommend.ru/), top 2197 +121. [CreativeMarket](https://creativemarket.com/), top 2221 +122. [metacritic](https://www.metacritic.com/), top 2257 +123. [Myspace](https://myspace.com/), top 2261 +124. [LeetCode](https://leetcode.com/), top 2335 +125. [Zomato](https://www.zomato.com/), top 2344 +126. [Virgool](https://virgool.io/), top 2435 +127. [MixCloud](https://www.mixcloud.com/), top 2523 +128. [Kaggle](https://www.kaggle.com/), top 2589 +129. [4pda](https://4pda.ru/), top 2621 +130. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2623 +131. [SportsRU](https://www.sports.ru/), top 2657 +132. [Kongregate](https://www.kongregate.com/), top 2797 +133. [HackerRank](https://hackerrank.com/), top 2869 +134. [AskFM](https://ask.fm/), top 3029 +135. [We Heart It](https://weheartit.com/), top 3164 +136. [Sporcle](https://www.sporcle.com/), top 3281 +137. [Wikidot](http://www.wikidot.com/), top 3283 +138. [Lolchess](https://lolchess.gg/), top 3314 +139. [Docker Hub](https://hub.docker.com/), top 3325 +140. [Repl.it](https://repl.it/), top 3358 +141. [LiveLib](https://www.livelib.ru/), top 3429 +142. [HubPages](https://hubpages.com/), top 3495 +143. [500px](https://500px.com/), top 3594 +144. [GitLab](https://gitlab.com/), top 3714 +145. [warriorforum](https://www.warriorforum.com/), top 3745 +146. [Photobucket](https://photobucket.com/), top 3776 +147. [Letterboxd](https://letterboxd.com/), top 3816 +148. [Cracked](https://www.cracked.com/), top 3855 +149. [Gumroad](https://www.gumroad.com/), top 3885 +150. [pr0gramm](https://pr0gramm.com/), top 4176 +151. [AllTrails](https://www.alltrails.com/), top 4473 +152. [osu!](https://osu.ppy.sh/), top 4527 +153. [Pokemon Showdown](https://pokemonshowdown.com), top 4967 +154. [fixya](https://www.fixya.com), top 5085 +155. [VSCO](https://vsco.co/), top 5097 +156. [Venmo](https://venmo.com/), top 5489 +157. [VirusTotal](https://www.virustotal.com/), top 5588 +158. [HackerNews](https://news.ycombinator.com/), top 5603 +159. [Memrise](https://www.memrise.com/), top 5678 +160. [Stihi.ru](https://www.stihi.ru/), top 5704 +161. [Rate Your Music](https://rateyourmusic.com/), top 5714 +162. [dailykos](https://www.dailykos.com), top 5757 +163. [Aptoide](https://en.aptoide.com/), top 6011 +164. [babyRU](https://www.baby.ru/), top 6069 +165. [Audiojungle](https://audiojungle.net/), top 6116 +166. [Gravatar](http://en.gravatar.com/), top 6149 +167. [NPM](https://www.npmjs.com/), top 6318 +168. [NPM-Package](https://www.npmjs.com/), top 6318 +169. [Freesound](https://freesound.org/), top 6414 +170. [FortniteTracker](https://fortnitetracker.com/challenges), top 6446 +171. [kwork](https://www.kwork.ru/), top 6655 +172. [Newgrounds](https://newgrounds.com), top 6668 +173. [Gitee](https://gitee.com/), top 6897 +174. [SublimeForum](https://forum.sublimetext.com/), top 6907 +175. [BOOTH](https://booth.pm/), top 7023 +176. [Trakt](https://www.trakt.tv/), top 7049 +177. [Discuss.Elastic.co](https://discuss.elastic.co/), top 7146 +178. [interpals](https://www.interpals.net/), top 7165 +179. [WikimapiaProfile](http://wikimapia.org), top 7174 +180. [WikimapiaSearch](http://wikimapia.org), top 7174 +181. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7213 +182. [opensource](https://opensource.com/), top 7233 +183. [Smule](https://www.smule.com/), top 7261 +184. [Proza.ru](https://www.proza.ru/), top 7335 +185. [Star Citizen](https://robertsspaceindustries.com/), top 7463 +186. [Pinkbike](https://www.pinkbike.com/), top 7540 +187. [OpenStreetMap](https://www.openstreetmap.org/), top 7701 +188. [Cloob](https://www.cloob.com/), top 7719 +189. [Flipboard](https://flipboard.com/), top 7826 +190. [NICommunityForum](https://www.native-instruments.com/forum/), top 7940 +191. [Facenama](https://facenama.com/), top 8097 +192. [3dnews](http://forum.3dnews.ru/), top 8293 +193. [Kali community](https://forums.kali.org/), top 8417 +194. [Typeracer](https://typeracer.com), top 8652 +195. [spletnik](https://spletnik.ru/), top 8754 +196. [DEV Community](https://dev.to/), top 8782 +197. [authorSTREAM](http://www.authorstream.com/), top 8835 +198. [IFTTT](https://www.ifttt.com/), top 9058 +199. [Codechef](https://www.codechef.com/), top 9132 +200. [ReverbNation](https://www.reverbnation.com/), top 9137 +201. [Launchpad](https://launchpad.net/), top 9528 +202. [kofi](https://ko-fi.com), top 9734 +203. [nightbot](https://nightbot.tv/), top 10092 +204. [PSNProfiles.com](https://psnprofiles.com/), top 10643 +205. [ProductHunt](https://www.producthunt.com/), top 10944 +206. [Speedrun.com](https://speedrun.com/), top 10971 +207. [geocaching](https://www.geocaching.com/), top 11142 +208. [akniga](https://akniga.org/profile/blue/), top 11202 +209. [Coderwall](https://coderwall.com/), top 11939 +210. [igromania](http://forum.igromania.ru/), top 12173 +211. [Teletype](https://teletype.in), top 12384 +212. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12407 +213. [couchsurfing](https://www.couchsurfing.com/), top 12793 +214. [forumhouseRU](https://www.forumhouse.ru/), top 12858 +215. [ImageShack](https://imageshack.com/), top 13304 +216. [Contently](https://contently.com/), top 13328 +217. [YouNow](https://www.younow.com/), top 13960 +218. [Sbazar.cz](https://www.sbazar.cz/), top 14449 +219. [babyblogRU](https://www.babyblog.ru/), top 14463 +220. [TrashboxRU](https://trashbox.ru/), top 15898 +221. [iMGSRC.RU](https://imgsrc.ru/), top 16613 +222. [sparkpeople](https://www.sparkpeople.com), top 16989 +223. [Samlib](http://samlib.ru/), top 18297 +224. [About.me](https://about.me/), top 19062 +225. [hackster](https://www.hackster.io), top 19525 +226. [WebNode](https://www.webnode.cz/), top 19685 +227. [Jimdo](https://jimdosite.com/), top 20051 +228. [EyeEm](https://www.eyeem.com/), top 20114 +229. [Codewars](https://www.codewars.com), top 20398 +230. [easyen](https://easyen.ru/), top 21091 +231. [YouPic](https://youpic.com/), top 23500 +232. [Packagist](https://packagist.org/), top 23510 +233. [GuruShots](https://gurushots.com/), top 23988 +234. [forum_guns](https://forum.guns.ru/), top 24198 +235. [Tellonym.me](https://tellonym.me/), top 24394 +236. [HackerOne](https://hackerone.com/), top 24497 +237. [Carbonmade](https://carbonmade.com/), top 25700 +238. [allmylinks](https://allmylinks.com/), top 26598 +239. [uid](https://uid.me/), top 28986 +240. [Ask Fedora](https://ask.fedoraproject.org/), top 30489 +241. [PromoDJ](http://promodj.com/), top 32551 +242. [Periscope](https://www.periscope.tv/), top 32930 +243. [RubyGems](https://rubygems.org/), top 33064 +244. [Realmeye](https://www.realmeye.com/), top 33097 +245. [Coroflot](https://coroflot.com/), top 37379 +246. [OpenCollective](https://opencollective.com/), top 37503 +247. [d3RU](https://d3.ru/), top 38372 +248. [Anobii](https://www.anobii.com/), top 41444 +249. [LOR](https://linux.org.ru/), top 41689 +250. [Football](https://www.rusfootball.info/), top 42336 +251. [HackTheBox](https://forum.hackthebox.eu/), top 42998 +252. [Ello](https://ello.co/), top 43730 +253. [7Cups](https://www.7cups.com/), top 50645 +254. [RoyalCams](https://royalcams.com), top 50752 +255. [Plug.DJ](https://plug.dj/), top 50895 +256. [NationStates Nation](https://nationstates.net), top 53448 +257. [NationStates Region](https://nationstates.net), top 53448 +258. [fl](https://www.fl.ru/), top 53667 +259. [Keybase](https://keybase.io/), top 57982 +260. [F3.cool](https://f3.cool/), top 58656 +261. [opennet](https://www.opennet.ru/), top 63879 +262. [Bookcrossing](https://www.bookcrossing.com/), top 65128 +263. [leasehackr](https://forum.leasehackr.com/), top 66996 +264. [Clozemaster](https://www.clozemaster.com), top 68801 +265. [datingRU](http://dating.ru), top 71209 +266. [eGPU](https://egpu.io/), top 80474 +267. [Asciinema](https://asciinema.org), top 83004 +268. [travellerspoint](https://www.travellerspoint.com), top 83396 +269. [Pling](https://www.pling.com/), top 92783 +270. [devRant](https://devrant.com/), top 93139 +271. [TamTam](https://tamtam.chat/), top 98745 +272. [Cent](https://cent.co/), top 99599 +273. [Velomania](https://forum.velomania.ru/), top 101006 +274. [phpRU](https://php.ru/forum/), top 115666 +275. [Lobsters](https://lobste.rs/), top 129889 +276. [radioskot](https://radioskot.ru/), top 138697 +277. [GunsAndAmmo](https://gunsandammo.com/), top 138979 +278. [hunting](https://www.hunting.ru/forum/), top 145363 +279. [Steamid](https://steamid.uk/), top 151277 +280. [notabug.org](https://notabug.org/), top 155148 +281. [KanoWorld](https://world.kano.me/), top 155829 +282. [BLIP.fm](https://blip.fm/), top 160252 +283. [moikrug](https://moikrug.ru/), top 186785 +284. [Crevado](https://crevado.com/), top 201684 +285. [Smashcast](https://www.smashcast.tv/), top 203497 +286. [Whonix Forum](https://forums.whonix.org/), top 206783 +287. [pvpru](https://pvpru.com/), top 270432 +288. [Hubski](https://hubski.com/), top 270708 +289. [eintracht](https://eintracht.de), top 275478 +290. [Bazar.cz](https://www.bazar.cz/), top 317058 +291. [BitCoinForum](https://bitcoinforum.com), top 317370 +292. [satsisRU](https://satsis.info/), top 322626 +293. [Avizo](https://www.avizo.cz/), top 352896 +294. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 454325 +295. [social.tchncs.de](https://social.tchncs.de/), top 490342 +296. [soylentnews](https://soylentnews.org), top 557006 +297. [Splits.io](https://splits.io), top 580435 +298. [Kik](http://kik.me/), top 704379 +299. [Alik.cz](https://www.alik.cz/), top 705075 +300. [House-Mixes.com](https://www.house-mixes.com/), top 713436 +301. [Gam1ng](https://gam1ng.com.br), top 908194 +302. [Signal](https://community.signalusers.org), top 939641 +303. [tracr.co](https://tracr.co/), top 993155 +304. [ShitpostBot5000](https://www.shitpostbot.com/), top 1001949 +305. [mastodon.technology](https://mastodon.xyz/), top 1034667 +306. [mastodon.xyz](https://mastodon.xyz/), top 1034667 +307. [mastodon.cloud](https://mastodon.cloud/), top 1349749 +308. [chaos.social](https://chaos.social/), top 1676076 +309. [mastodon.social](https://chaos.social/), top 1676076 +310. [mstdn.io](https://mstdn.io/), top 1933720 +311. [labpentestit](https://lab.pentestit.ru/), top 2343179 +312. [OurDJTalk](https://ourdjtalk.com/), top 3168225 +313. [PokerStrategy](http://www.pokerstrategy.net), top 3414611 +314. [Designspiration](https://www.designspiration.net/), top 4234418 +315. [svidbook](https://www.svidbook.ru/), top 4592288 +316. [GDProfiles](https://gdprofiles.com/), top 5059468 +317. [CashMe](https://cash.me/), top 6387848 +318. [2Dimensions](https://2Dimensions.com/), top 7164342 +319. [Chatujme.cz](https://chatujme.cz/), top 8086004 +320. [ImgUp.cz](https://imgup.cz/), top 9177087 +321. [Filmogs](https://www.filmo.gs/), top 0 +322. [nnRU](https://https://www.nn.ru/), top 0 -Alexa.com rank data fetched at (2020-07-18 20:40:22.470589 UTC) +Alexa.com rank data fetched at (2020-07-18 21:19:45.500336 UTC) From 45a7c7ce6c62464190ba26cfc4ba17d94c86ea77 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 19 Jul 2020 18:09:25 +0300 Subject: [PATCH 26/39] Small fixes, tree info output --- README.md | 24 +++++++++++++++++++++--- maigret/notify.py | 17 ++++++++++++++++- maigret/resources/data.json | 6 +++++- 3 files changed, 42 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6ee05a20e..a03506dbf 100644 --- a/README.md +++ b/README.md @@ -20,20 +20,38 @@ $ python3 -m pip install -r requirements.txt ```bash $ python3 maigret --ids --print-found --skip-errors alexaimephotographycars - [*] Checking username alexaimephotographycars on: [+] 500px: https://500px.com/alexaimephotographycars -Additional ID data: uid: 26403415, username: alexaimephotographycars, name: Alex Aimé, website: www.flickr.com/photos/alexaimephotography/, facebook_page: www.instagram.com/street.reality.photography/, instagram_username: alexaimephotography, twitter_username: Alexaimephotogr + ┣╸uid: 26403415 + ┣╸username: alexaimephotographycars + ┣╸name: Alex Aimé + ┣╸website: www.flickr.com/photos/alexaimephotography/ + ┣╸facebook_page: www.instagram.com/street.reality.photography/ + ┣╸instagram_username: alexaimephotography + ┗╸twitter_username: Alexaimephotogr [*] Checking username alexaimephotography on: [+] DeviantART: https://alexaimephotography.deviantart.com [+] EyeEm: https://www.eyeem.com/u/alexaimephotography [+] Facebook: https://www.facebook.com/alexaimephotography [+] Instagram: https://www.instagram.com/alexaimephotography -Additional ID data: uid: 6828488620, username: alexaimephotography + ┣╸uid: 6828488620 + ┗╸username: alexaimephotography [+] Pinterest: https://www.pinterest.com/alexaimephotography/ [+] Reddit: https://www.reddit.com/user/alexaimephotography [+] VK: https://vk.com/alexaimephotography [+] Vimeo: https://vimeo.com/alexaimephotography + ┣╸uid: 75857717 + ┣╸name: AlexAimePhotography + ┣╸username: alexaimephotography + ┣╸location: France + ┣╸created_at: 2017-12-06 06:49:28 + ┣╸is_staff: False + ┗╸links: + ┣╸ https://500px.com/alexaimephotography + ┣╸ https://www.flickr.com/photos/photoambiance/ + ┣╸ https://www.instagram.com/alexaimephotography/ + ┣╸ https://www.youtube.com/channel/UC4NiYV3Yqih2WHcwKg4uPuQ + ┗╸ https://flii.by/alexaimephotography/ [+] We Heart It: https://weheartit.com/alexaimephotography [*] Checking username Alexaimephotogr on: [+] Twitter: https://twitter.com/Alexaimephotogr diff --git a/maigret/notify.py b/maigret/notify.py index 529d211a0..94e676e5e 100644 --- a/maigret/notify.py +++ b/maigret/notify.py @@ -166,6 +166,21 @@ def start(self, message, id_type): return + def get_additional_data_text(self, items, prepend=''): + text = '' + for num, item in enumerate(items): + box_symbol = '┣╸' if num != len(items) - 1 else '┗╸' + + if type(item) == tuple: + field_name, field_value = item + if field_name == 'links': + field_value = self.get_additional_data_text(eval(field_value), ' '*3) + text += f'\n{prepend}{box_symbol}{field_name}: {field_value}' + else: + text += f'\n{prepend}{box_symbol} {item}' + + return text + def update(self, result): """Notify Update. @@ -189,7 +204,7 @@ def update(self, result): if not self.result.ids_data: ids_data_text = "" else: - ids_data_text = '\nAdditional ID data: ' + ', '.join([f'{a}: {b}' for a,b in self.result.ids_data.items()]) + ids_data_text = self.get_additional_data_text(self.result.ids_data.items(), ' ') # Output to the terminal is desired. if result.status == QueryStatus.CLAIMED: diff --git a/maigret/resources/data.json b/maigret/resources/data.json index e1426d742..391bb6c15 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -2423,7 +2423,7 @@ "errorMsg": "twitter:title\" content=\"Telegram: Contact", "errorType": "message", "rank": 279, - "regexCheck": "^[a-zA-Z0-9_]{5,}$", + "regexCheck": "^[a-zA-Z][a-zA-Z0-9_]{4,}$", "tags": [ "br", "social" @@ -2673,6 +2673,7 @@ "us", "video" ], + "request_head_only": false, "url": "https://vimeo.com/{}", "urlMain": "https://vimeo.com/", "username_claimed": "blue", @@ -3719,6 +3720,9 @@ "tracr.co": { "errorMsg": "No search results", "errorType": "message", + "errors": { + "g-recaptcha": "Captcha detected" + }, "rank": 993155, "regexCheck": "^[A-Za-z0-9]{2,32}$", "tags": [ From 606356792a5d57c63cb107741ce0d06ff8af1952 Mon Sep 17 00:00:00 2001 From: soxoj <31013580+soxoj@users.noreply.github.com> Date: Sun, 19 Jul 2020 19:38:54 +0300 Subject: [PATCH 27/39] Add files via upload --- maigret.png | Bin 0 -> 15063 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 maigret.png diff --git a/maigret.png b/maigret.png new file mode 100644 index 0000000000000000000000000000000000000000..eaa5986a30ace6291e74873bca5dd066bc3b2a8d GIT binary patch literal 15063 zcmXwAbx>T((_L6t+~C9u2mO5y%Nc$H07!OxHFe$9&AiB5 z+?=g!9W2S*eOxTbEWK^5008gxx*TgaBEGb`_m4O&Fy1Xht5IuT4c`3W^jejwmoQX* z;*M9>D(+@~1kC<=zwaM?K?|yGSQ^%}bK*028^+DK^w&7Qsn`n2i@)D_w(jda?(1{X z_U_&Dk=yAHWO?-nIKI2R4!M7hYiP)M@*Q1SiQjyVzbq)EJ$t_MN&0e8uwvxDRe64# zvuXDzxOm+?=Wpa4`TI#EQ1S9@ZsuqbDV(lu7!rCf&}n+ve@!6f{dW0c@~{&A&EsYA zo?LV2Gyb-;xM-i^<#|n80q~Z3?3l~#M(F8sCjhDMvSDSYL-(kI@JGRp%jw41-YeVN z4P@v{U}(~0`)VsMNb&gYov$XprC{wYGukFlYZ0a0uLlJWRh;BvlsyRPowo18z4L){ z+m^C=->+6k{{q+X_yikE_YeH=jr%kARC4M5fW4agg~(@plo1{g$Zzbs6=IXIRm5~d z<$jc^*suMGBU{Jq&tFa%RE!f8dJn7;5?`KHUQVapf3M_n;80kfF)AA){HaEbDEfYC zQcpqNz*#xES<&BcyP`AOyVD2N@bkk{YZ8ZLuajt$x2HKP zOA=I$kt~aV!Iuxy7^Cu`{FL|PPhucL`9L;VQi-u`Y?I#nDeIV?m8Zj&l}S^qXj$?F z11%w`W^=_wmFRTvPx{hK^@*xdJ9P!2NTN>@e4m+;&ZyIL)yK=y^z~1<7IihI+7|T< z&Zjy6pz;g@+qSml9-cfnkBg$6yYoATbps*Ml znt$5WI9qeeHXSGnTsEIM^^n?~hheGkKc;D@2)qi}Uo5rnyuU@(cIhm?Or_N`Ug{la zX-sS|=k8L`TU&gWk@*(OE-L2t*OcI_At&PE!REjt1dLp9a1HSKc8^1e+MLi2x9` zP@NG@JCh@S%E&XiJ>zhne_)QlFSmV@CZ>YP2%#Wbr2qB)GW-2yPZz(c0@t%!39+JU zwM8!Y==+nTZOLMwm0jK~(}>-ux8d5xH>jnac7vQB-q1G0& zPC0lhOJ%a8E6ZbPt8SZ$I!WIR(a|=Y7gL{XVGH@%%FfT(5xk>IQfx$hmPb4;YB!G~ zd~(rF7i;;WnvknEQ{ES3Y!16z)@-=b8)EBy2Y8>^vIP-x+!`t9QbW zT&vpiJsU=`!Q<0=$F;Uwmr<+f|st#mpn+P0CB58m9@` zj>|F{6GegVnG~NA+<925P8=)gwkL_k#QC$%$M4g>F3wo#Zxx&#H07v zI2@e7Mj^=TSG}~p8P7T?^L0|rc1j)KIDpMsur8Fl@+vYP@UcHiXy@c^^#Z%2 zG_@jqsxJEXE1Qbuw=^2VdrH#FS~j~`A|Dpj`bQ46Pnm&Pdl9TIJg|isw2^!F80Fi> zK7A^wQ}e(b5}lV-StH)&9;0z7(f}gXVF>On+Sk=4XaodfdjfUkU?ON=$CjDWxsy*K z11TekY-;x}zYK^r^?&!AcWA;}f^_PXKO)P{cC>ce6YBvJZ!*^i5rY|`dm&kCkxZ#W z2Y7-a2N3F$`?f*hV8**~$DABbE7iH%W&z1$1qtYf<%3pR{)^4yQ#Xisg)3!eN@y?< zQ*fTX;LclQb?yoLi5sJJ=zw=oaTr~7{6ysqV1tDTq|XFwIz7iW6J)@rKs_fwN9TV734&Lwh0N+TOI~h<#xmhUYDDX<0sbUVExg6Jx`B->jU;do-#b?R? zC5~HCVKc1uEC3Z789qB?a|RwfQ*)De1bPT!c{f}JF-qbT&os-lT)GP=7Il-! z5!p^r!vdCm<$w3g;hssW%=TW@!rHG5?eaT#&75szP`^e}CA1=7bdTW|(u1hYTfEQ! z!p&G>0avqqcivp`1r}lfaP8Fme&}0LI&H}G7N&#FyvQpu7k>5dqSmTi@UlyeK*m~# zvA%)7uxCeSx^rYG^z=ZWlT(%>QdxV-VbDuuaRD2UGMg z>&v2{KxNSoVJSzkI!&+W*W|$Ft zaqy7AOHSWb6+CnD6Bd3P5jb|uUB@o&)B(cDFSzP7VjIB|b2xX#Ow(n$v-YCXUZ8Z4sI}q2K7Cq_LXlBRHXQ zFscNtnni)_0%g!Yb~8c76uee3{6?7-7X$(qlDNRJvaHhdpT)4qi>XtxukqiQEk3 zX#|~UM+vP}r0m+WhUhpCG5pBc;4P31I(Ybv^O~Xkh{UX|(!Y_@(R4vxb+{cfG;HND zB+(Oz=@D5t4La48-pe{_u9U-fHJ%Ci6jwf>-OK5-SZ3m`BPuW%>*(8!Tx5ab7 zfpo0^@K2e6r{)N>%)NJGveUXbZ!b1fwfoLICRU-Q3%~o3G6IY#FO*=hH5(k^3nM40 zpw*1cI3u+tt*z(?W=}4IAv_F?I)>T-r#!&}mQ3mZM=Sg||3)e>#`j|w+@@T#sl4|U zfU%b%Qol+3yZ3O3YpN&}%^#a|mZ6yIAry%Ep=)v30!;KW=+w>RL_E+>X0i*&wMZm}!Pt6pULaNE9jEPF`LcN=}|~L6PgnBb0e|^qjrat zB>h&ZEnr+`_$wJ@EMZ~Mtq)mzfwb zMgm?$wH;&gfe}f|!EWeK_0{LYT(<=VM+J9vPSmy}7}p*xbZl5QqQbD4gB!F5k2;mA zgL7vSGYZq;nC6eQ`ZZMY_@%#^*it0nO{&XctjK>>iZX2JNRYUe*}(iz!N``GP2ZR- z(!cS=;a44r8`V&MhXNz(VT}k zia@RN&0>b$bau91C_Y&aeT{>uQ!fps^7u9@wBJ;WB^!{6mdz8*ih-R@%x048Yk4(R zt4fB+q1rZLeQB}u0ST@6%fZkX_Jv6xmx(c;g=gN=#U6XwLECx=Y@pzLad?&H2}f{W zi|f1S)5Hwo^5@nICbP_0=ngQi%WfaAO$KlWL%r$;tZeTvGebE0HO~bPN|w)#^+o7P zeO(dxeYLho%1zW>)VkdlR`!34U^-t{d!C8d-D`Cn?L;44dVhNnn0p!ISj?J06DJr` zxAtFp`kc-y!&uCyT@^J|)4@FEZILfns8|=VuZs3{s@ASmiV-Yyz+;C7@`-Iw!Ig|Z z$wQoSVvZ629leOG*`Shs$?7AgP`KtXz!7_T@JooFYWo^BCmmpYmA6tQIYzkXR4F#> zG8SppnaMl>Z}v5kQFf;?J~+b$rDg95dW9HcBAJ$JgAf}|1=Srrl#m+Y=%+o4{xe)} zk1b~u(S{m_GN+Uyx$Byu!!>HXgSsZ@6|qbigPlKtT{ckd7ea@)W~BpXJQ~t-XoxxZ zlSzZj%-mV(qNpccGCU~W^z>wq~|xmeecLmxAKk$W-%ASSR?Zm-(pRwAJ?mQOP6FPOg&ePqp%Mr;7VYpy$gUyg^xgjXJ>^CQkXbV zx$^df1ncmZ)8b^e90pp$xaRL}aYb*ooffuwN@zc!0MWJBVPv$v>fhWadc@ z8~hqKT8p)%*D25xGKwlORFbDWL`gD-BcxRawa}HLH=Fxu#=Mmqcww+fm|q0feU}Cj zmI&6rZetj56)G#SLBGH<5TK}om$AW7g+;iZB)|w{7M^R=R3x@30BT2bcVK_0p+K%z(`*gZRqu-}jumw+}mU{o!dW9Z$@r!wxzSa2f?9L5%Mq>LX`lt*Wxi7cIp zI!adEGI(bFwh$SQ$LcGGw7qi0S05k#`?+QR`Q=Ve1YDK68>Zyq-BSu$RaFt1 z7}gjWwgW)b=V<3FTU(9c&w()LQ305*^id6EnhmhYsCXE$g0N#UEQHso&*Pp+9qe%q z-T+OgMDg>v=mh!@yp2y%ZP0$>h(u4-x*qZ^Yos|88GCe0j}V^3$bEigq*k_( zSaius8*6yhtc!Yz)2c4P%c|!&u%ssG&RLk@%Opl7+&{3l)Ii-$ zCJEmdtZEPM4VobFHRM`gHbDG(i%ElFX$8CDjwi{$K5%_&)r-6K4S6%p_)jDJ)h97e zoNTWm_HUhZ?#K+5nk#I9h^M-Zq}0JMPy}=GWK<==dnTdx!>=ukTtP+tYLo%T>K?mh zEQ#fXT-7Q5U*rvH5N6e&w(*3D>lzQQvh{@$@>%Hc9O)d=1|#%nM=nL3T)b0)2Vc;k zAS8PX-YBK@onI@S|CFV9e(iGlV{LTHSePq_YVl7Wh+qJQo;xlOzR!nt!&$8}V2-5rs> z_gN}-;3;Aa8J)O#nsdkOzzflZc+?J^(Q&-=!7u%*$W(BqzF=9kn~+6a5wAkZZQ;E4gsHhNR;S=a;*e6?UXrIFVp>)o~<-WF8X7{;M7bM-F-U99#;T=fUgYq6fSG8OsPz5*W%g`u@KyfNZMi?D0_BFG36_La8k zbt$9P;!4DdQ{xsgp2l73U`zJ5((j>e4dH?WLXyJ~iPCm-^~G$~O3Zil#y*ld;Ic?n zoGBko$Z2%AFjCk%w+0`+AcbKvz)f?jfz>J)4Wbq;JxHQ+JyNLIPz^^m>mye=z&@v{ zfNgnB{Xzp!Vs=iY0rT!$3D(<`JHHnt6G>q7Xw*-a<;oY)JIlI#G$$#rBeM}R3JunQ zP$bggauSn#A-<&&n&@ik?F7-m54J(vI}e=%ry2beF|ku*s?dvSk8z%=JMBz$A_+!} z$v`H}>>#}=N%SjMW<~{dzz^&hXm+HM-Z971J(v9f%aUT^^hWhzeRo%p;j9#8EsVAm zurgH&APe^KBtd)cwz3Q+nD9w3qzYDDX+%z!a*7p!xCc0?8ybZ-ZtqjtR}xq{$1Yk( zoYHf)l5`V{qTX3%LU+qEn;6Ydn-%e{s-vziKewcf zPL5nll3{rAq#>q4fFhUL`MM8iSRyZE^(a2%8w5mKa0$RSP$Jq6G`qI##S<;e>Jd;h zGiFDxEl?r3R!c>fEC5ay>{hN&BqBK$DQ;5=&R`BLO6trd&Fwf&4wFzbL=$F_*Uw6~ zmLE~RqsJ5mOEQ7ZRo9$<^9lZbRI)QHDta|3Z@DH*!htUYJ-C)l3Mv>iBRszhKHE_H z1s(^u<_C=*Twdv+lOIRI8jF#q9KjJOf_@*Qe$3GIfEg@WJEJvScF?TB#}(6-I9!L(Gt67pHhg`k>g+hIg!Pffcr~ za^TLvNG7QZ#c@h6_!Zs}nj z5W6LQ;$t0Chg|vmaWl;SGxyWloDSEilga7D zV4NM_z1}SFhdhGZ3-AyJAD6U?%&-#zyr5>M8MAjjBWC#N`1b=cf-g~;zaOW+267eD zUWzRLi9|pAEM&oKMs?HIt|H-4hjqe>-y4CMBjfjm`^v0h*tQ=sD$~0PUrJ8Ci)9D( z;-+CO4a_YckuELTrR?~QiXPoKftfrUY`!qh>B`=4z7c8+lSFsbg~6|%%+F7O z>(2X)9DF*Us7Se2Mui@y-Gkx9F%ZJF9%inLH2%z#%jFNom%H>qgo)ABoAl8P78N$j zstC#{M1`^C%g>fshB;r{+A*K=9A1w01%;kVexP_9`1;Gk&TJoWIS(J>9$ssSuz#_G zNBBKxGZ6ybNSBjvbSg_92VHE%MLcQyLAN^jQCZt&{P|=T5_&meekzNiMHv^hie*wx zc)`huTsjnY$f~5z`sY|V50#Ch$%l@jeT?E`*=ddU0qp?bMw|G`Pm))vO);zlMZ|7^ES>@g;I#UXF2fj&QDZW17+XZ z{j_DF9xILSjLepmxFo+|DegE-i^v7sDCDI+H^&O}Y#r3T#&6taaIBtjE z()vW&#%zM|#4y;OcwwRIM4O|n#oZ7_L?*=89>^dNZGhOHws-1-A^c6Hr(5FtM)7pD z#+ImZ{=i>6!nRx6=yV^atBR^RyP2Hw^DN(eKQ!Yy9@H}X=BDv0(Ih^w&R*;qmg4iq za)S*Oh<+fng}J3qN`W2Ss>}u3EP2!d9NP1s`vF+i4N|2x(be!I1a=!B7H!n1Fis5T|_P-}gXwGO03! z>?|XAg^ym4v=W%;(7Th2*+?9zJ*r3yDD?g0)OY1arL`B9Tliin+z1+tG@lQ|CU>FN zJ$xKg6-#2=u1k09nMVAb*VCidFcc0yyfeKN@M`zV#Q5RVbX#t4ETfe$q&yDmyi1L; z;q@(}BSA|LVXpk>$v>rR&oEkWpRo8Z=p02Z=VVF>NHs$*J{JH4=u10_(OS0+15S;T zp;;8#&kUQ!^!weT?xv;t1v-cBA`F^{6UwoF`w229kWehB*>#WYp(X=jwjPe7scuNQ zYu_I34x~@g%Xf^DunA3+juEsfHb25uVqQQG#gKdz@_C&u^#nB*lMCtrrfQ-2jT*_` za=D+&C0>M2dGyfRU3?0w&z3=p8W&Gnc;B;*^*|}Q#E6T3j=tssmvkeQHtdx`h0on^ zTHr+ha)UWHX}kyoDzN1ibleSAF=3I~Nll3GbpCK%I2No5>#-Nq3-BjGSeIfh@nZ8l z=NCG3;i4f7gybQ}P$6iT;2O{b@2;=*=m410wyivll4+eO(@D-h%%>6GHq`qhQQc^y z-dPoR*_AJwScb);{$1wz3R_(&l`YUQrqw&b6MgsT=0$v@ia!HI!0YB*NKf@yRN@qOo)aB@bhtl@H0_a}id6#&{Z``zNy_&fLcZmp-9+|Gd4mmj~W=KD(pOf=UE=tGWJRCL*PT zdoReXftcAPf#$nS@!1tRAB z(IGDPVY_=M_eYUo4gKp_Z3f$l4-hVsg{+hB$y7f|lc}y;b;UDgQ~LV}>LqLs=v(Ao z5Tz3^n9qqQ&F~S;v2#>uW6F!nL`T0uB#uHHi~1>^t}rVnPkt7$Q@z``)fLRJU9KHm zKt3U_Me5*Vxz8W!byj3peV(rRT%#^Jj7`}J7?yTG`x>TdRAGBV9YNE~e#?F{VwPy1{T7TK3EkF_5>)6|i#f*j@+95=%l=0%GmZg?%t zMVKlWqu5#{{z220;WxO}ZTi;de!uY|5Z5QzS8Sz|2Prbh#DnAb87c?GL$%|vu?W^x zd>>?p`ej+N3~^Z9m^r%PC309l~Lu(=Zv<zqo2*eL7JY`K3VAmz4w*zoAsbo2hQ z!4x)Hg(pC{bxye)xa?N#15QtKfxz($3%wMnIouH*ug{YKo5zYGs{7lYylk02E4az! zlMbK>e7V2a@;m;X`<|P{A?|l$+KvbAu2K}ef~*0kM4%(gfM%HqtdAJC+UBc+ z%r#4PiJkR?u3f=>4i|dl!>bdqT=6q^_xJI(`w>v$jg0NMF!o6#3wYT-W9Q8uzkXIO z2%ysUe0f0l;=Ny%K4XTzFG1=rf;^;4ztKXQ$g|~#*94M~mmOCI_UIxHfd*L}$dHF9 z^6sP|*7<&7G9SS=NJtNlSp8(9afv3w_60aUm7=T2n5%-N6$;fEX|VwV`khFvQXFc@$< zv4Yc5(xOohaK+(e>7$Xn_)yt#MQEz2TbGsY3rp={3S`N1IHSmasFmHxt7^z2w0;TN zs-s=?H`XlG5DNo@wgp^@$EsQg^Hy+szpOkcSY?5|=OK7-ieFD8W#5PNNj zF`N)O^&)t^&*w3(ud=jNH~Fz6M?07#q@C}Ggzec!ki=x%{cw|+l2vW97mAwC-qgfr zfDsc-K#<^0^t=`#%|A|-=jP+vO1JmRPt025Q_qks-|cSwZSut%K|w*`>`i!x)#Y_> zXgG;z#j%>yDDNjG2YMY!n3?QZ?K~L}&iGBWXt>5>58l_;L zp_>)Q&!J+x!!ncPI&>%WW$(}f>aY#YQ9oK(z&wtbO5roSoa?-UpZ}n6BTLH@bzL{w zlqr3mW^}gyy7cI7H@D_mr@XLl7q4_C7KP$8*ml(C(Sjj9EWPp1-eTP&);N=m>y}l$ zHmxa~=9{o+O~fs$Ft07_9&U%=#>YFh91eD&V$-M{QRbLi>{lo;ZmG&F7A#xsJixEe zI5T+jMKYyas)nW8XW=?$4}+g=;)Xn4>Z1?O2T4U*Nrxm5e%D^~wg}+RAcvSo8=q}v zeoG{&lk8L3>pC_O4Wcs5R$S$E8zQGGi)N$=)8$Um-=a^$odjY4yN)YFUJ3I3?MAGw z`n>M3o|dMJ@Gw@#`|%%f{v5!n|2|O(gkF%ZPy0o< z8JqZe6!{UXCJOJ_gdf2LKUAv#VR|-n-`8X8ASa<&orYw9i_3DB+A?UDZ(BXdJ$E!u zeweL{9kcMvxqi@N96)nl_>{PEzjPFp1yE(m02#+K?WL&~YnQ0a891|F*O1C$)|^}} zj9KP#GYrxgywcpq$}eOU1p@q!;czmo4$Kr47aMh}hmDUeVq*p0EO7j0xM^5@Nv^)$ zACi~cN!!S-h43zj3M()cVuMJYdWA}V`H2XIj0VkhMs7Iw;FOJ&&8b$YaC4U2bt&?< zIgrVRTP*+h%@4h9lu47+YMWyZMpVDuRlv=8^~mQUCAhs`g zqk71gkgyfU*J9`OdePekv?`J%M|ET>Wacw8_;;UvBP>kwRi(c(Ety-W6~m8^;vcHj zDYc(Xd#afljXy(DzFEI2DbaKFC#_tD-Zx*$3ns+|%pmP`q6F;mg2hCQs|0~n58Fxqn6<*-hxT*bQ&l?y-7MKNX?)6&6Yph z_Eq2hS?6E3UM8RK@bV%s`C5q))`Va$PZ>3u=YFFahCLPAgiIi!BtD|eluz1VX5LIb z2%P@aOhd#&g>g5vGbkzZR!Q0Z`sv2bbxjuBwvKj!g(`uv5?>Kzo1bAiTq_1YP~P&0 z!GI+uOS*CMVfvs)M4zHK(Y7F)Fh#BQN2{rMY+RTTQ-m4HAZw30q?IFVooE)DO1G7Q z)!fLgM$`sLZ*Zv7fy{u6+Wk{^;Wfhg*YwZgaVDiLkrm~@G+YVwaHJ9H;t#E$P|=PD zWqlfh?@6&0E=%jd>Y%1f+5(n?eW?#Lm-yUCC|vl37qe|Z1)SY^&iK%LVJy>MOTn#A zi7%b4W_+Oy7LpYZ06Eg9<-fV?Z%R}A(5-7mH@6z1IMhx>yN~VsNO-JSYV63x63Z-^dMcTtAcvd|9L%sC z1W@dSJbX{hpam`#ely20c~3+n9Qj*y!J-OCBkys>b|e{R!5wM@nc;JzN30c5^y(tI z{$!fMy89UhIn9a!nVmMpN_LBxn@&;$+=MoX!{bM|Vh_*~TDqMf58q*19iIZ}KETpp z``0t~Bzb?kugkQj2xcQ6)_oya9WlrM&lU~_cs1i&YnY@p){@<%C#&phKdR2ZU(6D! zwJx7bW(~_SDL}#V+~t>IkGA46j@L9C${vt}t+{2>DBRA%)BH^mjUlXx)(+92CdCkc zk-XYW`KG!HP<`*RH2Yem=kX{GW;;cfk5ZLqM+j9a=5u6~*zNJEs3-6_f_=>DTzV*T zLAC-KQw~pvO1x8>{hzG!cf#+}vt+M)(HjY~!E=PplY3aC9dc_T0Rb^Pv&vYf61bq> z@%MsR1wkIu(qKH=gxNU(|a zYo6roe$}&JtrfD%wInctfGJ+AV2Adc#)afRALcJ4!^b_X>B!Y;wi46m zwE@6I*uv185qLjf1sr}+Sdhbxfl~8N6jFo4{Q7qAh=}!>C~!k)U_J$I2tC=W#MNvw zJSr+l6B8d?>gYAU+*nI&NA?4eD=Ato{D8I!{_Jw0u~ruPBb5JcFD?T9lNjdxW){V9 zo-m%Nc{SS$HH?dEa}+B(g?7!e1DVj^yP&=eg8^Nb#rXNFv%(%FDVS`OXtSY_w*Rp> z?H`x?yXt>VRUnuOKIDKlpxOLa8v>q+u+lyB8c$|eo(8s4XjuSq^skS_ZfZ;dH0RH@zcil^@4SZO9&vDCLmR z^dvX7U30dmHkmm#jX{_Z;12~zW|A3&iSa!T&q4Xrqe2e@Wb9er8rqnlX5iS+H|86e zpLRj_oI%I4s-ZCh#ord0UaM}10xk)r^BPiT8se6&U*B0$n^oTD+VF)IDu`$NoQpgsA|dGnJ~%{+PNzdEWuvnx>4ueeuPxv zk4epgy!)9{)`R*r5j_|Ki&#A-Bd3dXBeLY3S4p`4xexgd>O6m{yiI9J)BTr-Z%x)l zOinul{~r~Z=1o@KXDmGLe>K52FJs{`@sNP6ci-T3$T;H`( z1?x(e_w;)sh{TEpkRE&OzaZ3d&L!JJ*Y*XT=4UqB_a~zl?tP0)kh9+3xMONQ*4Z#Y~V_zCiNBz~sWr)ZTYK2L5vEFWcPcCr2o5mfFRD zQ(vKn!I)OZ92|tER_!;Z7n^ba#uf+4WEK=oB{B{wBeEq&v`TuKF*EdX9h6cL+Utm% zN}K6&97PRBS>k2=AvBx5QnEv-Q^kfD_bZlmWcz=8J#*{W+_tw!SaooDHKzhxc%gqq z#4r_pGVMs$o9h*8haUK-*aO1ki9-1c!xe3)uv#PfxYI?;tQ^LeZD2c_cB@FQCawR8 zzyG-3HE2+yBr|`B4D613=$lc@UoUnTcMP1#yNW8m5`-Ns0uSFohsBhWpcux&Al(EE ze0^mb!hHHkFApobfAHgGm8v5&@%0<}p9`g=i0dCM!c&%7Xjh9I?w?AuJ?7h)DYRu! zsa!6%AXJ07%1EUep^M?P`MF;|eb8Jco9~I55025iC0oqQTA^|^?5$U=QU$UhD>2le zi*|{7bt%yR>ZDRb{vIFqby4n*DfhXGcE9r_mbL|Onl`O6sFURu_*2K>E#@h#bk7Bp z|A#h;#Jc71=gV5m;Jy1Ox;z6+xXSiIk|b&2QM`rEeSs!q$OquVpKMqmN9U*+JSIi7 z3?mo%Jg1Wghd1u(c0tM%JG4=_L|xh`_rH8WDW1i85Xpo&0MjH5Uxo%fl7t`Z9OJz1 zTZxBRoq`kB$>JL7Sv2~9f;DGGHGeUW_{-anb%XCk1xa@meb8Lct1|+-`txOw0`z5| zbp#QIuh8ty{nJXjV+dsERtg1GckKAnp%hN6f@+NQqi1YKUl*xYU-AX-OJslQ$jO~M z2c^W%a_RPc-Mf__CEh2 z%D+gBTdH)_E6;H|eE9~4sN;Igb>rsL`k08fNmDd7R@k))cM=p6t64^hT)%B5Uu0%* z`^7~Oel&WtIOs!Q3~Xq4YrMt zEOnMt{O%v{uGU~qRpa-`gI2N(%!Xdk>+?gzuNr2fyrbmfqq|H)YA3H;#oo3%WO#|D zTDB@#e*Wh7D<;oQS~(E;gTnXk*MbjDt~SHpw!BK^^ny$P5`AwR+$eLcdvk6-cKq|k z{>!@mGVeTDJaJL5w8LJJlPgiYRx4o#9gaP#`J9|1ua|4CLFEc^hC<1f5Dz>{(xP&a5UE>!2`l%_NJxV^^>7VW{ zrv@$S>b8s3sr6w=mY$T1o5FQEdwb*D3qBymnC`ORGYhxfUqmi% z&_b6@75=$=q$vi~+P3)1H(c_unmvZuh^%Y`n82*u{j4u%9Pm$0eZRdd{h#3$<$N9; zFf=q`?fd?8-SCB(m7s=`Umf)*4q*10ldb-aJ1Le@_#k!GMxuti_Qn3UKb6Ny-1aq_0saQtyiw4o{5;trkj8B}ZdnM;p$cmePHsw2QN3%+=*>!l@QZbR)(Hm zF^)%r#p!Lfky2U*6MVhm-;AgVAM*b4M*RR~O}{30$WHdyIwG!9JNcu= zPeo%l|F^W3IhJL98!o>VdIe*F=ZN;q57c2%Q*(O=S^~*;7BZXIz&Yqy@mcIXM@{KT zn2WwVMCh5%E{543@0S$F8MKs0#>N-i5AwSBNJRvtb+Y4)=njVI^}n5Zc#*8-M!)%g z%nWGn?o9g2sTsn9X;$qM^8c*_cAC&;GljusrawoBGW?ivywN~tau z)3XN8*ppPD>hXFjrR#9_(~-Vxr=PO)HS9gNnimKv8SFsdf?r7VxtTaIe%ElV*W9uH z02^qJ| zu0DQ{!wdT3)4e9qtAETh;()NgA^cZ2Y%hn?Lt*rUjr>IOzYnBaxH{?y(?E(L%dA>b6bWyi-?@n^F3yHbe|!p$S%r#vNcI| zm9;D_Nj!;*NIj;!ttZ?(O1$a2O6ppc{t)^s#z@nbWy$8h%py`DY($KPT?_$2qg1nxf;{QtD&ZCS&$RkTuSt^=ZmFNt%(k_~8W$A;-=*#{A`0^%!rYVY)E(UJ z*x=uO4uh;g(X2su_#`^UuCuXgQHzAhQq4WVEG}xgVVp(E?KQ=Z7 z)#Pk*m4gyOk+|(YnJnWL5WqOvQy*zv5Rg#7(sKUzy&w<~2z*SRLD+~e!)GmZ*n-H? zo8terkt`%i6|aX+XB=hyt~|hs%pPNzdGtFJed<5`Kv74kI}Nkkmc*b5Ozv{O<+Yz- z=lEm5t`0O=>i6@n)XaN70qgdaH3g7q#@)uALjwYVWY_9Ch`wH3sY?3UBb#u9`S%s% z-gj?^(qbV{VMR+eKB{%kl?TVDD<=aBw9n$fK})4dA<#f!+o*20ehyXdQen7`pAXfVPoj@EF6=b%Us|-6vN*_6a8S3vw$u zJm_VGY2bK*F`G+*D8USQTDdH8%Sm{?e<~H=umC2jkBpGnZ9(N+!Md5ee)RL|tJ$F- z3M=d5$1Dzk{J*u0&w;nA_fnjJ)_OE4e=nVoUNcUFF^2c${jCE5%~n&{|^rX Bsn7rb literal 0 HcmV?d00001 From 6013f097762aaab4cdfa98b1e5f7babfd129b218 Mon Sep 17 00:00:00 2001 From: soxoj <31013580+soxoj@users.noreply.github.com> Date: Sun, 19 Jul 2020 19:52:09 +0300 Subject: [PATCH 28/39] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index a03506dbf..a620d4bdf 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ +# Maigret + +

+ +

+ +The Commissioner Jules Maigret is a fictional French police detective, created by Georges Simenon. His investigation method is based on understanding the personality of different people and their interactions. + ## WARNING This is a [sherlock](https://github.com/sherlock-project/) fork under heavy development. @@ -60,4 +68,5 @@ $ python3 maigret --ids --print-found --skip-errors alexaimephotographycars ## License MIT © Maigret
+MIT © [Sherlock Project]((https://github.com/sherlock-project/)
Original Creator of Sherlock Project - [Siddharth Dushantha](https://github.com/sdushantha) From 9d788f9efa68416a45b4e6fce2259556a5a7a11b Mon Sep 17 00:00:00 2001 From: soxoj <31013580+soxoj@users.noreply.github.com> Date: Sun, 19 Jul 2020 19:53:15 +0300 Subject: [PATCH 29/39] Typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a620d4bdf..1c9372de6 100644 --- a/README.md +++ b/README.md @@ -68,5 +68,5 @@ $ python3 maigret --ids --print-found --skip-errors alexaimephotographycars ## License MIT © Maigret
-MIT © [Sherlock Project]((https://github.com/sherlock-project/)
+MIT © [Sherlock Project](https://github.com/sherlock-project/)
Original Creator of Sherlock Project - [Siddharth Dushantha](https://github.com/sdushantha) From 699b04855d3aa675ab9b4770b5d01aa2933d01ea Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 19 Jul 2020 22:43:11 +0300 Subject: [PATCH 30/39] DeviantArt improved, Houzz fix --- README.md | 8 ++++++++ maigret/resources/data.json | 3 +++ 2 files changed, 11 insertions(+) diff --git a/README.md b/README.md index 1c9372de6..1b01c4cd9 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,14 @@ $ python3 maigret --ids --print-found --skip-errors alexaimephotographycars ┗╸twitter_username: Alexaimephotogr [*] Checking username alexaimephotography on: [+] DeviantART: https://alexaimephotography.deviantart.com + ┣╸country: France + ┣╸registered_for_seconds: 50826061 + ┣╸gender: male + ┣╸username: Alexaimephotography + ┣╸twitter_username: alexaimephotogr + ┣╸website: www.instagram.com/alexaimephotography/ + ┗╸links: + ┗╸ https://www.instagram.com/alexaimephotography/ [+] EyeEm: https://www.eyeem.com/u/alexaimephotography [+] Facebook: https://www.facebook.com/alexaimephotography [+] Instagram: https://www.instagram.com/alexaimephotography diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 391bb6c15..c7d48d8d8 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -673,9 +673,11 @@ "rank": 542, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ + "global", "images", "us" ], + "request_head_only": false, "url": "https://{}.deviantart.com", "urlMain": "https://deviantart.com", "username_claimed": "blue", @@ -1202,6 +1204,7 @@ "tags": [ "us" ], + "request_head_only": false, "url": "https://houzz.com/user/{}", "urlMain": "https://houzz.com/", "username_claimed": "blue", From 06481d34a839eb785cd41173398ddd2845fc0eb3 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 9 Aug 2020 17:58:29 +0300 Subject: [PATCH 31/39] Rank update, falses fixes, qiwi.me added --- maigret/resources/data.json | 687 ++++++++++++++++++------------------ sites.md | 624 ++++++++++++++++---------------- 2 files changed, 665 insertions(+), 646 deletions(-) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index c7d48d8d8..362c0a09d 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -1,7 +1,7 @@ { "2Dimensions": { "errorType": "status_code", - "rank": 7164342, + "rank": 7380911, "url": "https://2Dimensions.com/a/{}", "urlMain": "https://2Dimensions.com/", "username_claimed": "blue", @@ -10,7 +10,7 @@ "3dnews": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", "errorType": "message", - "rank": 8293, + "rank": 7867, "tags": [ "ru" ], @@ -22,7 +22,7 @@ "4pda": { "errorMsg": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.", "errorType": "message", - "rank": 2621, + "rank": 2507, "tags": [ "ru" ], @@ -34,7 +34,7 @@ "500px": { "errorMsg": "Oops! This page doesn\u2019t exist.", "errorType": "message", - "rank": 3594, + "rank": 3408, "tags": [ "images", "in" @@ -46,7 +46,7 @@ }, "7Cups": { "errorType": "status_code", - "rank": 50645, + "rank": 45618, "tags": [ "in" ], @@ -57,7 +57,7 @@ }, "About.me": { "errorType": "status_code", - "rank": 19062, + "rank": 22845, "tags": [ "in", "social" @@ -69,7 +69,7 @@ }, "Academia.edu": { "errorType": "status_code", - "rank": 269, + "rank": 298, "tags": [ "id" ], @@ -80,7 +80,7 @@ }, "Alik.cz": { "errorType": "status_code", - "rank": 705075, + "rank": 830235, "url": "https://www.alik.cz/u/{}", "urlMain": "https://www.alik.cz/", "username_claimed": "julian", @@ -89,7 +89,7 @@ "AllTrails": { "errorMsg": "User could not be found.", "errorType": "message", - "rank": 4473, + "rank": 3766, "tags": [ "us" ], @@ -100,7 +100,7 @@ }, "Anobii": { "errorType": "response_url", - "rank": 41444, + "rank": 35569, "tags": [ "books", "it" @@ -134,7 +134,7 @@ }, "Aptoide": { "errorType": "status_code", - "rank": 6011, + "rank": 6702, "tags": [ "in" ], @@ -146,7 +146,7 @@ "Archive.org": { "errorMsg": "cannot find account", "errorType": "message", - "rank": 224, + "rank": 250, "tags": [ "us" ], @@ -157,7 +157,7 @@ }, "Asciinema": { "errorType": "status_code", - "rank": 83004, + "rank": 88879, "tags": [ "us" ], @@ -168,7 +168,7 @@ }, "Ask Fedora": { "errorType": "status_code", - "rank": 30489, + "rank": 32007, "tags": [ "in" ], @@ -180,7 +180,7 @@ "AskFM": { "errorMsg": "Well, apparently not anymore.", "errorType": "message", - "rank": 3029, + "rank": 3063, "regexCheck": "^[a-zA-Z0-9_]{3,40}$", "tags": [ "ru" @@ -192,8 +192,9 @@ }, "Audiojungle": { "errorType": "status_code", - "rank": 6116, + "rank": 6625, "tags": [ + "in", "us" ], "url": "https://audiojungle.net/user/{}", @@ -204,7 +205,7 @@ "Avizo": { "errorType": "response_url", "errorUrl": "https://www.avizo.cz/", - "rank": 352896, + "rank": 354057, "url": "https://www.avizo.cz/{}/", "urlMain": "https://www.avizo.cz/", "username_claimed": "blue", @@ -212,7 +213,7 @@ }, "BLIP.fm": { "errorType": "status_code", - "rank": 160252, + "rank": 158697, "tags": [ "in", "music" @@ -225,7 +226,7 @@ "BOOTH": { "errorType": "response_url", "errorUrl": "https://booth.pm/", - "rank": 7023, + "rank": 7183, "tags": [ "jp" ], @@ -236,9 +237,10 @@ }, "Badoo": { "errorType": "status_code", - "rank": 1895, + "rank": 1807, "tags": [ "br", + "de", "social" ], "url": "https://badoo.com/profile/{}", @@ -248,7 +250,7 @@ }, "Bandcamp": { "errorType": "status_code", - "rank": 1044, + "rank": 1068, "tags": [ "music", "us" @@ -261,7 +263,7 @@ "Bazar.cz": { "errorType": "response_url", "errorUrl": "https://www.bazar.cz/error404.aspx", - "rank": 317058, + "rank": 363291, "tags": [ "cz" ], @@ -275,7 +277,7 @@ "headers": { "User-Agent": "Curl" }, - "rank": 314, + "rank": 294, "tags": [ "business", "in" @@ -287,7 +289,7 @@ }, "BitBucket": { "errorType": "status_code", - "rank": 2034, + "rank": 1731, "tags": [ "coding", "in" @@ -300,7 +302,7 @@ "BitCoinForum": { "errorMsg": "The user whose profile you are trying to view does not exist.", "errorType": "message", - "rank": 317370, + "rank": 467689, "tags": [ "in" ], @@ -311,7 +313,7 @@ }, "Blogger": { "errorType": "status_code", - "rank": 326, + "rank": 332, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "in" @@ -324,7 +326,7 @@ "BodyBuilding": { "errorType": "response_url", "errorUrl": "https://bodyspace.bodybuilding.com/", - "rank": 2623, + "rank": 2426, "tags": [ "us" ], @@ -347,7 +349,7 @@ }, "Bookcrossing": { "errorType": "status_code", - "rank": 65128, + "rank": 64272, "tags": [ "in" ], @@ -358,7 +360,7 @@ }, "BuyMeACoffee": { "errorType": "status_code", - "rank": 12407, + "rank": 12396, "tags": [ "in" ], @@ -370,7 +372,7 @@ }, "BuzzFeed": { "errorType": "status_code", - "rank": 472, + "rank": 530, "tags": [ "social", "us" @@ -394,7 +396,7 @@ "Carbonmade": { "errorType": "response_url", "errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com", - "rank": 25700, + "rank": 25740, "tags": [ "us" ], @@ -406,7 +408,7 @@ "Career.habr": { "errorMsg": "

\u041e\u0448\u0438\u0431\u043a\u0430 404

", "errorType": "message", - "rank": 1363, + "rank": 1401, "tags": [ "ru" ], @@ -420,7 +422,7 @@ "errors": { "Cash isn't available in your country yet.": "Access denied in your country, use proxy/vpn" }, - "rank": 6387848, + "rank": 6620639, "request_head_only": false, "url": "https://cash.me/${}", "urlMain": "https://cash.me/", @@ -430,9 +432,10 @@ "Cent": { "errorMsg": "Cent", "errorType": "message", - "rank": 99599, + "rank": 125435, "tags": [ - "mx" + "mx", + "us" ], "url": "https://beta.cent.co/@{}", "urlMain": "https://cent.co/", @@ -441,7 +444,7 @@ }, "Championat": { "errorType": "status_code", - "rank": 1931, + "rank": 1712, "tags": [ "ru" ], @@ -453,7 +456,7 @@ "Chatujme.cz": { "errorMsg": "Neexistujic\u00ed profil", "errorType": "message", - "rank": 8086004, + "rank": 3459006, "url": "https://profil.chatujme.cz/{}", "urlMain": "https://chatujme.cz/", "username_claimed": "david", @@ -461,7 +464,7 @@ }, "ChaturBate": { "errorType": "status_code", - "rank": 60, + "rank": 59, "tags": [ "us" ], @@ -473,7 +476,7 @@ "Chess": { "errorMsg": "Missing page... somebody made a wrong move.", "errorType": "message", - "rank": 407, + "rank": 379, "tags": [ "us" ], @@ -484,7 +487,7 @@ }, "Cloob": { "errorType": "status_code", - "rank": 7719, + "rank": 8188, "tags": [ "ir" ], @@ -495,7 +498,7 @@ }, "CloudflareCommunity": { "errorType": "status_code", - "rank": 1392, + "rank": 1362, "tags": [ "in" ], @@ -506,7 +509,7 @@ }, "Clozemaster": { "errorType": "status_code", - "rank": 68801, + "rank": 76263, "tags": [ "us" ], @@ -517,7 +520,7 @@ }, "Codecademy": { "errorType": "status_code", - "rank": 2126, + "rank": 2158, "tags": [ "education", "us" @@ -530,7 +533,7 @@ "Codechef": { "errorType": "response_url", "errorUrl": "https://www.codechef.com/", - "rank": 9132, + "rank": 9540, "tags": [ "in" ], @@ -542,7 +545,7 @@ "Coderwall": { "errorMsg": "404! Our feels when that url is used", "errorType": "message", - "rank": 11939, + "rank": 11441, "tags": [ "in" ], @@ -553,7 +556,7 @@ }, "Codewars": { "errorType": "status_code", - "rank": 20398, + "rank": 20838, "tags": [ "us" ], @@ -565,7 +568,7 @@ "Contently": { "errorMsg": "We can't find that page!", "errorType": "message", - "rank": 13328, + "rank": 13058, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "in" @@ -577,7 +580,7 @@ }, "Coroflot": { "errorType": "status_code", - "rank": 37379, + "rank": 37550, "tags": [ "us" ], @@ -589,7 +592,7 @@ "Cracked": { "errorType": "response_url", "errorUrl": "https://www.cracked.com/", - "rank": 3855, + "rank": 3602, "tags": [ "us" ], @@ -604,7 +607,7 @@ "errors": { "/cdn-cgi/scripts/hcaptcha.challenge.js": "Captcha detected" }, - "rank": 2221, + "rank": 2429, "request_head_only": false, "tags": [ "us" @@ -616,9 +619,10 @@ }, "Crevado": { "errorType": "status_code", - "rank": 201684, + "rank": 184593, "tags": [ - "in" + "in", + "us" ], "url": "https://{}.crevado.com", "urlMain": "https://crevado.com/", @@ -627,7 +631,7 @@ }, "Crunchyroll": { "errorType": "status_code", - "rank": 554, + "rank": 531, "tags": [ "us" ], @@ -638,7 +642,7 @@ }, "DEV Community": { "errorType": "status_code", - "rank": 8782, + "rank": 8479, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "in" @@ -650,7 +654,7 @@ }, "DailyMotion": { "errorType": "status_code", - "rank": 230, + "rank": 252, "tags": [ "us", "video" @@ -662,7 +666,7 @@ }, "Designspiration": { "errorType": "status_code", - "rank": 4234418, + "rank": 7477241, "url": "https://www.designspiration.net/{}/", "urlMain": "https://www.designspiration.net/", "username_claimed": "blue", @@ -670,14 +674,14 @@ }, "DeviantART": { "errorType": "status_code", - "rank": 542, + "rank": 539, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", + "request_head_only": false, "tags": [ "global", "images", "us" ], - "request_head_only": false, "url": "https://{}.deviantart.com", "urlMain": "https://deviantart.com", "username_claimed": "blue", @@ -685,7 +689,7 @@ }, "Discogs": { "errorType": "status_code", - "rank": 1091, + "rank": 1155, "tags": [ "us" ], @@ -696,10 +700,11 @@ }, "Discuss.Elastic.co": { "errorType": "status_code", - "rank": 7146, + "rank": 6291, "tags": [ "in", - "tech" + "tech", + "us" ], "url": "https://discuss.elastic.co/u/{}", "urlMain": "https://discuss.elastic.co/", @@ -708,7 +713,7 @@ }, "Disqus": { "errorType": "status_code", - "rank": 1072, + "rank": 1020, "tags": [ "discussion", "global", @@ -721,7 +726,7 @@ }, "Docker Hub": { "errorType": "status_code", - "rank": 3325, + "rank": 3199, "tags": [ "us" ], @@ -734,7 +739,7 @@ "Dribbble": { "errorMsg": "Whoops, that page is gone.", "errorType": "message", - "rank": 1301, + "rank": 1377, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "business", @@ -748,7 +753,7 @@ "Duolingo": { "errorMsg": "{\"users\":[]}", "errorType": "message", - "rank": 422, + "rank": 512, "tags": [ "us" ], @@ -761,7 +766,7 @@ "Ebay": { "errorMsg": "

", "errorType": "message", - "rank": 48, + "rank": 46, "tags": [ "shopping", "us" @@ -774,7 +779,7 @@ "Ello": { "errorMsg": "We couldn't find the page you're looking for", "errorType": "message", - "rank": 43730, + "rank": 33636, "tags": [ "in" ], @@ -785,7 +790,7 @@ }, "Etsy": { "errorType": "status_code", - "rank": 120, + "rank": 105, "tags": [ "shopping", "us" @@ -798,7 +803,7 @@ "Euw": { "errorMsg": "This summoner is not registered at OP.GG. Please check spelling.", "errorType": "message", - "rank": 289, + "rank": 285, "tags": [ "us" ], @@ -810,7 +815,7 @@ "EyeEm": { "errorType": "response_url", "errorUrl": "https://www.eyeem.com/", - "rank": 20114, + "rank": 17451, "tags": [ "sd" ], @@ -821,7 +826,7 @@ }, "F3.cool": { "errorType": "status_code", - "rank": 58656, + "rank": 59573, "tags": [ "ru" ], @@ -846,7 +851,7 @@ "Facenama": { "errorType": "response_url", "errorUrl": "https://facenama.com/404.html", - "rank": 8097, + "rank": 8874, "tags": [ "ir" ], @@ -857,7 +862,7 @@ }, "Fandom": { "errorType": "status_code", - "rank": 89, + "rank": 88, "tags": [ "us" ], @@ -877,7 +882,7 @@ "Fiverr": { "errorType": "response_url", "errorUrl": "https://www.fiverr.com/", - "rank": 414, + "rank": 390, "tags": [ "shopping", "us" @@ -889,7 +894,7 @@ }, "Flickr": { "errorType": "status_code", - "rank": 1064, + "rank": 1058, "tags": [ "images", "us" @@ -901,7 +906,7 @@ }, "Flightradar24": { "errorType": "status_code", - "rank": 1833, + "rank": 1979, "regexCheck": "^[a-zA-Z0-9_]{3,20}$", "tags": [ "de" @@ -913,7 +918,7 @@ }, "Flipboard": { "errorType": "status_code", - "rank": 7826, + "rank": 7035, "regexCheck": "^([a-zA-Z0-9_]){1,15}$", "tags": [ "in", @@ -927,7 +932,7 @@ "Football": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 42336, + "rank": 36428, "tags": [ "ru" ], @@ -938,7 +943,7 @@ }, "FortniteTracker": { "errorType": "status_code", - "rank": 6446, + "rank": 6493, "tags": [ "us" ], @@ -950,7 +955,7 @@ "Freelance.habr": { "errorMsg": "

", "errorType": "message", - "rank": 1363, + "rank": 1401, "tags": [ "ru" ], @@ -962,7 +967,7 @@ "Freelancer.com": { "errorMsg": "\"users\":{}", "errorType": "message", - "rank": 1172, + "rank": 1605, "tags": [ "us" ], @@ -973,7 +978,7 @@ }, "Freesound": { "errorType": "status_code", - "rank": 6414, + "rank": 6513, "tags": [ "music", "us" @@ -985,7 +990,7 @@ }, "GDProfiles": { "errorType": "status_code", - "rank": 5059468, + "rank": 10307308, "url": "https://gdprofiles.com/{}", "urlMain": "https://gdprofiles.com/", "username_claimed": "blue", @@ -993,7 +998,7 @@ }, "Gam1ng": { "errorType": "status-code", - "rank": 908194, + "rank": 802065, "tags": [ "br", "webcam" @@ -1005,7 +1010,7 @@ }, "Gamespot": { "errorType": "status_code", - "rank": 568, + "rank": 605, "tags": [ "gaming", "us" @@ -1017,7 +1022,7 @@ }, "Giphy": { "errorType": "status_code", - "rank": 625, + "rank": 658, "tags": [ "social", "us" @@ -1029,7 +1034,7 @@ }, "GitHub": { "errorType": "status_code", - "rank": 85, + "rank": 98, "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", "tags": [ "coding", @@ -1043,7 +1048,7 @@ "GitLab": { "errorMsg": "[]", "errorType": "message", - "rank": 3714, + "rank": 3725, "tags": [ "coding", "in" @@ -1056,7 +1061,7 @@ }, "Gitee": { "errorType": "status_code", - "rank": 6897, + "rank": 7499, "tags": [ "cn" ], @@ -1067,7 +1072,7 @@ }, "GoodReads": { "errorType": "status_code", - "rank": 327, + "rank": 323, "tags": [ "books", "us" @@ -1092,7 +1097,7 @@ }, "Gravatar": { "errorType": "status_code", - "rank": 6149, + "rank": 6806, "tags": [ "images", "in" @@ -1105,7 +1110,7 @@ "Gumroad": { "errorMsg": "Page not found.", "errorType": "message", - "rank": 3885, + "rank": 3894, "tags": [ "us" ], @@ -1116,7 +1121,7 @@ }, "GunsAndAmmo": { "errorType": "status_code", - "rank": 138979, + "rank": 133019, "tags": [ "us" ], @@ -1127,7 +1132,7 @@ }, "GuruShots": { "errorType": "status_code", - "rank": 23988, + "rank": 27771, "tags": [ "us" ], @@ -1138,7 +1143,7 @@ }, "HackTheBox": { "errorType": "status_code", - "rank": 42998, + "rank": 43396, "tags": [ "us" ], @@ -1150,7 +1155,7 @@ "HackerNews": { "errorMsg": "No such user", "errorType": "message", - "rank": 5603, + "rank": 5557, "tags": [ "us" ], @@ -1162,7 +1167,7 @@ "HackerOne": { "errorMsg": "Page not found", "errorType": "message", - "rank": 24497, + "rank": 20261, "tags": [ "hacker", "in" @@ -1175,7 +1180,7 @@ "HackerRank": { "errorMsg": "Something went wrong", "errorType": "message", - "rank": 2869, + "rank": 2799, "tags": [ "in" ], @@ -1187,7 +1192,7 @@ "House-Mixes.com": { "errorMsg": "Profile Not Found", "errorType": "message", - "rank": 713436, + "rank": 706730, "regexCheck": "^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$", "tags": [ "ir" @@ -1200,11 +1205,11 @@ "Houzz": { "errorMsg": "The page you requested was not found.", "errorType": "message", - "rank": 1436, + "rank": 1327, + "request_head_only": false, "tags": [ "us" ], - "request_head_only": false, "url": "https://houzz.com/user/{}", "urlMain": "https://houzz.com/", "username_claimed": "blue", @@ -1212,7 +1217,7 @@ }, "HubPages": { "errorType": "status_code", - "rank": 3495, + "rank": 3293, "tags": [ "blog", "us" @@ -1225,7 +1230,7 @@ "Hubski": { "errorMsg": "No such user", "errorType": "message", - "rank": 270708, + "rank": 322408, "tags": [ "in" ], @@ -1237,7 +1242,7 @@ "IFTTT": { "errorMsg": "The requested page or file does not exist", "errorType": "message", - "rank": 9058, + "rank": 9095, "regexCheck": "^[A-Za-z0-9]{3,35}$", "tags": [ "misc", @@ -1251,7 +1256,7 @@ "ImageShack": { "errorType": "response_url", "errorUrl": "https://imageshack.com/", - "rank": 13304, + "rank": 13376, "tags": [ "images", "in" @@ -1263,7 +1268,7 @@ }, "ImgUp.cz": { "errorType": "status_code", - "rank": 9177087, + "rank": 0, "url": "https://imgup.cz/{}", "urlMain": "https://imgup.cz/", "username_claimed": "adam", @@ -1271,7 +1276,7 @@ }, "Instagram": { "errorType": "status_code", - "rank": 35, + "rank": 33, "request_head_only": false, "tags": [ "social", @@ -1285,7 +1290,7 @@ "Instructables": { "errorMsg": "404: We're sorry, things break sometimes", "errorType": "message", - "rank": 1271, + "rank": 1363, "tags": [ "hobby", "us" @@ -1297,7 +1302,7 @@ }, "Issuu": { "errorType": "status_code", - "rank": 548, + "rank": 572, "tags": [ "in" ], @@ -1308,7 +1313,7 @@ }, "Itch.io": { "errorType": "status_code", - "rank": 1775, + "rank": 1811, "tags": [ "us" ], @@ -1320,7 +1325,7 @@ "Jimdo": { "errorType": "status_code", "noPeriod": "True", - "rank": 20051, + "rank": 20298, "tags": [ "in" ], @@ -1331,7 +1336,7 @@ }, "Kaggle": { "errorType": "status_code", - "rank": 2589, + "rank": 2591, "tags": [ "in" ], @@ -1343,7 +1348,7 @@ "Kali community": { "errorMsg": "This user has not registered and therefore does not have a profile to view.", "errorType": "message", - "rank": 8417, + "rank": 8738, "tags": [ "in" ], @@ -1354,7 +1359,7 @@ }, "KanoWorld": { "errorType": "status_code", - "rank": 155829, + "rank": 137866, "tags": [ "us" ], @@ -1369,7 +1374,7 @@ "bad list value" ], "errorType": "message", - "rank": 57982, + "rank": 65507, "tags": [ "business", "us" @@ -1383,7 +1388,7 @@ "Kik": { "errorMsg": "The page you requested was not found", "errorType": "message", - "rank": 704379, + "rank": 844906, "url": "https://ws2.kik.com/user/{}", "urlMain": "http://kik.me/", "username_claimed": "blue", @@ -1392,7 +1397,7 @@ "Kongregate": { "errorMsg": "Sorry, no account with that name was found.", "errorType": "message", - "rank": 2797, + "rank": 2754, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "gaming", @@ -1405,7 +1410,7 @@ }, "LOR": { "errorType": "status_code", - "rank": 41689, + "rank": 42749, "tags": [ "ru" ], @@ -1416,7 +1421,7 @@ }, "Launchpad": { "errorType": "status_code", - "rank": 9528, + "rank": 9957, "tags": [ "us" ], @@ -1427,7 +1432,7 @@ }, "LeetCode": { "errorType": "status_code", - "rank": 2335, + "rank": 2218, "tags": [ "us" ], @@ -1439,7 +1444,7 @@ "Letterboxd": { "errorMsg": "Sorry, we can\u2019t find the page you\u2019ve requested.", "errorType": "message", - "rank": 3816, + "rank": 3847, "tags": [ "us" ], @@ -1451,7 +1456,7 @@ "Lichess": { "errorMsg": "Page not found!", "errorType": "message", - "rank": 1867, + "rank": 1846, "tags": [ "us" ], @@ -1462,7 +1467,7 @@ }, "LiveJournal": { "errorType": "status_code", - "rank": 434, + "rank": 463, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "blog", @@ -1475,7 +1480,7 @@ }, "LiveLib": { "errorType": "status_code", - "rank": 3429, + "rank": 3658, "tags": [ "reading", "ru" @@ -1488,7 +1493,7 @@ "Livejasmin": { "errorMsg": ":[]", "errorType": "message", - "rank": 33, + "rank": 35, "tags": [ "us", "webcam" @@ -1501,7 +1506,7 @@ }, "Lobsters": { "errorType": "status_code", - "rank": 129889, + "rank": 158132, "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", "tags": [ "in" @@ -1514,7 +1519,7 @@ "Lolchess": { "errorMsg": "No search results", "errorType": "message", - "rank": 3314, + "rank": 3792, "tags": [ "kr" ], @@ -1526,7 +1531,7 @@ "Medium": { "errorMsg": "We couldn\u2019t find this page.", "errorType": "message", - "rank": 79, + "rank": 81, "tags": [ "news", "us" @@ -1539,7 +1544,7 @@ "Memrise": { "errorType": "response_url", "errorUrl": "https://www.memrise.com/", - "rank": 5678, + "rank": 6524, "tags": [ "jp" ], @@ -1561,7 +1566,7 @@ }, "MixCloud": { "errorType": "status_code", - "rank": 2523, + "rank": 2599, "tags": [ "music", "us" @@ -1574,7 +1579,7 @@ }, "MyAnimeList": { "errorType": "status_code", - "rank": 966, + "rank": 951, "tags": [ "movies", "us" @@ -1586,7 +1591,7 @@ }, "Myspace": { "errorType": "status_code", - "rank": 2261, + "rank": 2096, "tags": [ "social", "us" @@ -1599,7 +1604,7 @@ "NICommunityForum": { "errorMsg": "The specified member cannot be found", "errorType": "message", - "rank": 7940, + "rank": 8331, "tags": [ "us" ], @@ -1610,7 +1615,7 @@ }, "NPM": { "errorType": "status_code", - "rank": 6318, + "rank": 6406, "tags": [ "in" ], @@ -1621,7 +1626,7 @@ }, "NPM-Package": { "errorType": "status_code", - "rank": 6318, + "rank": 6406, "tags": [ "in" ], @@ -1633,7 +1638,7 @@ "NameMC (Minecraft.net skins)": { "errorMsg": "Profiles: 0 results", "errorType": "message", - "rank": 7213, + "rank": 7326, "tags": [ "us" ], @@ -1645,7 +1650,7 @@ "NationStates Nation": { "errorMsg": "Was this your nation? It may have ceased to exist due to inactivity, but can rise again!", "errorType": "message", - "rank": 53448, + "rank": 53840, "tags": [ "us" ], @@ -1657,7 +1662,7 @@ "NationStates Region": { "errorMsg": "does not exist.", "errorType": "message", - "rank": 53448, + "rank": 53840, "tags": [ "us" ], @@ -1668,7 +1673,7 @@ }, "Newgrounds": { "errorType": "status_code", - "rank": 6668, + "rank": 6501, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "us" @@ -1680,7 +1685,7 @@ }, "OK": { "errorType": "status_code", - "rank": 56, + "rank": 60, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$", "tags": [ "ru" @@ -1691,8 +1696,9 @@ "username_unclaimed": "noonewouldeverusethis7" }, "OpenCollective": { - "errorType": "status_code", - "rank": 37503, + "errorMsg": "Not found", + "errorType": "message", + "rank": 35889, "tags": [ "in" ], @@ -1703,7 +1709,7 @@ }, "OpenStreetMap": { "errorType": "status_code", - "rank": 7701, + "rank": 7590, "tags": [ "in", "social" @@ -1715,7 +1721,7 @@ }, "Oracle Community": { "errorType": "status_code", - "rank": 612, + "rank": 625, "tags": [ "us" ], @@ -1726,7 +1732,7 @@ }, "Otzovik": { "errorType": "status_code", - "rank": 1795, + "rank": 1724, "tags": [ "ru" ], @@ -1738,7 +1744,7 @@ "OurDJTalk": { "errorMsg": "The specified member cannot be found", "errorType": "message", - "rank": 3168225, + "rank": 1251479, "url": "https://ourdjtalk.com/members?username={}", "urlMain": "https://ourdjtalk.com/", "username_claimed": "steve", @@ -1747,7 +1753,7 @@ "PCGamer": { "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", "errorType": "message", - "rank": 1095, + "rank": 1177, "tags": [ "us" ], @@ -1758,7 +1764,7 @@ }, "PCPartPicker": { "errorType": "status_code", - "rank": 2040, + "rank": 2107, "tags": [ "us" ], @@ -1770,7 +1776,7 @@ "PSNProfiles.com": { "errorType": "response_url", "errorUrl": "https://psnprofiles.com/?psnId={}", - "rank": 10643, + "rank": 11304, "tags": [ "us" ], @@ -1782,7 +1788,7 @@ "Packagist": { "errorType": "response_url", "errorUrl": "https://packagist.org/search/?q={}&reason=vendor_not_found", - "rank": 23510, + "rank": 18212, "tags": [ "in" ], @@ -1794,7 +1800,7 @@ "Pastebin": { "errorType": "response_url", "errorUrl": "https://pastebin.com/index", - "rank": 1303, + "rank": 1376, "tags": [ "sharing", "us" @@ -1806,7 +1812,7 @@ }, "Patreon": { "errorType": "status_code", - "rank": 346, + "rank": 338, "tags": [ "finance", "us" @@ -1818,7 +1824,7 @@ }, "Periscope": { "errorType": "status_code", - "rank": 32930, + "rank": 33849, "tags": [ "us", "video" @@ -1830,7 +1836,7 @@ }, "Photobucket": { "errorType": "status_code", - "rank": 3776, + "rank": 3529, "tags": [ "images", "us" @@ -1842,7 +1848,7 @@ }, "Pinkbike": { "errorType": "status_code", - "rank": 7540, + "rank": 7054, "tags": [ "hobby", "us" @@ -1854,7 +1860,7 @@ }, "Pinterest": { "errorType": "status_code", - "rank": 173, + "rank": 168, "tags": [ "social", "us" @@ -1878,7 +1884,7 @@ "Pling": { "errorType": "response_url", "errorUrl": "https://www.pling.com/", - "rank": 92783, + "rank": 92056, "tags": [ "in" ], @@ -1889,9 +1895,10 @@ }, "Plug.DJ": { "errorType": "status_code", - "rank": 50895, + "rank": 53090, "tags": [ - "fr" + "fr", + "gb" ], "url": "https://plug.dj/@/{}", "urlMain": "https://plug.dj/", @@ -1900,7 +1907,7 @@ }, "Pokemon Showdown": { "errorType": "status_code", - "rank": 4967, + "rank": 5247, "tags": [ "us" ], @@ -1911,7 +1918,7 @@ }, "PokerStrategy": { "errorType": "status_code", - "rank": 3414611, + "rank": 5577455, "url": "http://www.pokerstrategy.net/user/{}/profile/", "urlMain": "http://www.pokerstrategy.net", "username_claimed": "blue", @@ -1919,7 +1926,7 @@ }, "Polygon": { "errorType": "status_code", - "rank": 1254, + "rank": 1354, "tags": [ "us" ], @@ -1930,7 +1937,7 @@ }, "Pornhub": { "errorType": "status_code", - "rank": 61, + "rank": 53, "tags": [ "porno", "us" @@ -1943,7 +1950,7 @@ "ProductHunt": { "errorMsg": "Product Hunt is a curation of the best new products", "errorType": "message", - "rank": 10944, + "rank": 10216, "tags": [ "tech", "us" @@ -1955,7 +1962,7 @@ }, "PromoDJ": { "errorType": "status_code", - "rank": 32551, + "rank": 33183, "tags": [ "ru" ], @@ -1967,7 +1974,7 @@ "Proza.ru": { "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 7335, + "rank": 8533, "tags": [ "ru", "writing" @@ -1980,7 +1987,7 @@ "Quora": { "errorType": "response_url", "errorUrl": "https://www.quora.com/profile/{}", - "rank": 283, + "rank": 307, "tags": [ "in" ], @@ -1991,7 +1998,7 @@ }, "Rajce.net": { "errorType": "status_code", - "rank": 1761, + "rank": 1692, "tags": [ "cz" ], @@ -2002,7 +2009,7 @@ }, "Rate Your Music": { "errorType": "status_code", - "rank": 5714, + "rank": 5873, "tags": [ "us" ], @@ -2014,7 +2021,7 @@ "Realmeye": { "errorMsg": "Sorry, but we either:", "errorType": "message", - "rank": 33097, + "rank": 36042, "tags": [ "us" ], @@ -2025,7 +2032,7 @@ }, "Redbubble": { "errorType": "status_code", - "rank": 952, + "rank": 850, "tags": [ "us" ], @@ -2036,7 +2043,7 @@ }, "Reddit": { "errorType": "status_code", - "rank": 20, + "rank": 19, "tags": [ "news", "us" @@ -2049,7 +2056,7 @@ "Repl.it": { "errorMsg": "404", "errorType": "message", - "rank": 3358, + "rank": 3755, "tags": [ "coding", "us" @@ -2062,7 +2069,7 @@ "ResearchGate": { "errorType": "response_url", "errorUrl": "https://www.researchgate.net/directory/profiles", - "rank": 146, + "rank": 161, "regexCheck": "\\w+_\\w+", "tags": [ "in" @@ -2075,7 +2082,7 @@ "ReverbNation": { "errorMsg": "Sorry, we couldn't find that page", "errorType": "message", - "rank": 9137, + "rank": 8788, "tags": [ "us" ], @@ -2087,7 +2094,7 @@ "Roblox": { "errorMsg": "Page cannot be found or no longer exists", "errorType": "message", - "rank": 113, + "rank": 109, "tags": [ "us" ], @@ -2098,8 +2105,9 @@ }, "RoyalCams": { "errorType": "status_code", - "rank": 50752, + "rank": 69249, "tags": [ + "ru", "us", "webcam" ], @@ -2110,7 +2118,7 @@ }, "RubyGems": { "errorType": "status_code", - "rank": 33064, + "rank": 32855, "tags": [ "us" ], @@ -2122,7 +2130,7 @@ "Samlib": { "caseSentitive": true, "errorType": "status_code", - "rank": 18297, + "rank": 18416, "tags": [ "ru", "writing" @@ -2134,7 +2142,7 @@ }, "Sbazar.cz": { "errorType": "status_code", - "rank": 14449, + "rank": 14744, "tags": [ "cz" ], @@ -2145,7 +2153,7 @@ }, "Scratch": { "errorType": "status_code", - "rank": 560, + "rank": 630, "tags": [ "coding", "us" @@ -2158,7 +2166,7 @@ "Scribd": { "errorMsg": "Page not found", "errorType": "message", - "rank": 277, + "rank": 302, "tags": [ "coding", "us" @@ -2170,7 +2178,10 @@ }, "ShitpostBot5000": { "errorType": "status_code", - "rank": 1001949, + "rank": 675277, + "tags": [ + "us" + ], "url": "https://www.shitpostbot.com/user/{}", "urlMain": "https://www.shitpostbot.com/", "username_claimed": "blue", @@ -2179,7 +2190,7 @@ "Signal": { "errorMsg": "Oops! That page doesn\u2019t exist or is private.", "errorType": "message", - "rank": 939641, + "rank": 1191482, "url": "https://community.signalusers.org/u/{}", "urlMain": "https://community.signalusers.org", "username_claimed": "jlund", @@ -2187,7 +2198,7 @@ }, "Slack": { "errorType": "status_code", - "rank": 245, + "rank": 270, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "us" @@ -2199,7 +2210,7 @@ }, "SlideShare": { "errorType": "status_code", - "rank": 133, + "rank": 152, "tags": [ "in", "presos" @@ -2211,7 +2222,7 @@ }, "Smashcast": { "errorType": "status_code", - "rank": 203497, + "rank": 236056, "tags": [ "us" ], @@ -2222,7 +2233,7 @@ }, "Smule": { "errorType": "status_code", - "rank": 7261, + "rank": 7523, "tags": [ "in", "music" @@ -2234,7 +2245,7 @@ }, "SoundCloud": { "errorType": "status_code", - "rank": 95, + "rank": 97, "tags": [ "music", "us" @@ -2246,7 +2257,7 @@ }, "SourceForge": { "errorType": "status_code", - "rank": 430, + "rank": 442, "tags": [ "coding", "us" @@ -2259,7 +2270,7 @@ "Speedrun.com": { "errorMsg": "not found.", "errorType": "message", - "rank": 10971, + "rank": 11045, "tags": [ "us" ], @@ -2270,7 +2281,7 @@ }, "Splits.io": { "errorType": "status_code", - "rank": 580435, + "rank": 670719, "url": "https://splits.io/users/{}", "urlMain": "https://splits.io", "username_claimed": "cambosteve", @@ -2278,7 +2289,7 @@ }, "Sporcle": { "errorType": "status_code", - "rank": 3281, + "rank": 3604, "tags": [ "gaming", "us" @@ -2290,7 +2301,7 @@ }, "SportsRU": { "errorType": "status_code", - "rank": 2657, + "rank": 2360, "tags": [ "ru" ], @@ -2304,7 +2315,7 @@ "errors": { "Spotify is currently not available in your country.": "Access denied in your country, use proxy/vpn" }, - "rank": 90, + "rank": 87, "request_head_only": false, "tags": [ "music", @@ -2317,7 +2328,7 @@ }, "Star Citizen": { "errorType": "status_code", - "rank": 7463, + "rank": 8103, "tags": [ "us" ], @@ -2329,7 +2340,7 @@ "Steam": { "errorMsg": "The specified profile could not be found", "errorType": "message", - "rank": 179, + "rank": 180, "tags": [ "gaming", "us" @@ -2342,7 +2353,7 @@ "SteamGroup": { "errorMsg": "No group could be retrieved for the given URL", "errorType": "message", - "rank": 179, + "rank": 180, "tags": [ "us" ], @@ -2354,9 +2365,10 @@ "Steamid": { "errorMsg": "
Profile not found
", "errorType": "message", - "rank": 151277, + "rank": 153986, "tags": [ - "ru" + "ru", + "us" ], "url": "https://steamid.uk/profile/{}", "urlMain": "https://steamid.uk/", @@ -2366,7 +2378,7 @@ "Stihi.ru": { "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 5704, + "rank": 6104, "tags": [ "ru", "writing" @@ -2378,7 +2390,7 @@ }, "SublimeForum": { "errorType": "status_code", - "rank": 6907, + "rank": 7193, "tags": [ "in" ], @@ -2389,7 +2401,7 @@ }, "T-MobileSupport": { "errorType": "status_code", - "rank": 1452, + "rank": 1279, "tags": [ "us" ], @@ -2401,7 +2413,7 @@ "TamTam": { "errorType": "response_url", "errorUrl": "https://tamtam.chat/", - "rank": 98745, + "rank": 99606, "tags": [ "ru" ], @@ -2412,7 +2424,7 @@ }, "Taringa": { "errorType": "status_code", - "rank": 1865, + "rank": 2624, "tags": [ "ar", "social" @@ -2425,7 +2437,7 @@ "Telegram": { "errorMsg": "twitter:title\" content=\"Telegram: Contact", "errorType": "message", - "rank": 279, + "rank": 264, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_]{4,}$", "tags": [ "br", @@ -2438,7 +2450,7 @@ }, "Teletype": { "errorType": "status_code", - "rank": 12384, + "rank": 11697, "tags": [ "in", "writing" @@ -2450,9 +2462,10 @@ }, "Tellonym.me": { "errorType": "status_code", - "rank": 24394, + "rank": 30171, "tags": [ - "fr" + "fr", + "sa" ], "url": "https://tellonym.me/{}", "urlMain": "https://tellonym.me/", @@ -2462,7 +2475,7 @@ "Tinder": { "errorMsg": "twitter:title\" content=\"Tinder |", "errorType": "message", - "rank": 1031, + "rank": 987, "tags": [ "dating", "us" @@ -2474,7 +2487,7 @@ }, "Toster": { "errorType": "status_code", - "rank": 1363, + "rank": 1401, "tags": [ "ru" ], @@ -2486,7 +2499,7 @@ "TrackmaniaLadder": { "errorMsg": "player unknown or invalid", "errorType": "message", - "rank": 454325, + "rank": 479841, "tags": [ "au" ], @@ -2497,7 +2510,7 @@ }, "TradingView": { "errorType": "status_code", - "rank": 144, + "rank": 137, "tags": [ "us" ], @@ -2508,7 +2521,7 @@ }, "Trakt": { "errorType": "status_code", - "rank": 7049, + "rank": 7350, "tags": [ "fr" ], @@ -2520,7 +2533,7 @@ "TrashboxRU": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 15898, + "rank": 16041, "regexCheck": "^[A-Za-z0-9_-]{3,16}$", "tags": [ "ru" @@ -2533,7 +2546,7 @@ "Trello": { "errorMsg": "model not found", "errorType": "message", - "rank": 163, + "rank": 151, "tags": [ "us" ], @@ -2546,7 +2559,7 @@ "TripAdvisor": { "errorMsg": "This page is on vacation\u2026", "errorType": "message", - "rank": 574, + "rank": 444, "tags": [ "travel", "us" @@ -2558,7 +2571,7 @@ }, "Twitch": { "errorType": "status_code", - "rank": 32, + "rank": 30, "tags": [ "us" ], @@ -2590,7 +2603,7 @@ "Typeracer": { "errorMsg": "Profile Not Found", "errorType": "message", - "rank": 8652, + "rank": 8862, "tags": [ "us" ], @@ -2601,7 +2614,7 @@ }, "Ultimate-Guitar": { "errorType": "status_code", - "rank": 628, + "rank": 646, "tags": [ "us" ], @@ -2612,7 +2625,7 @@ }, "Unsplash": { "errorType": "status_code", - "rank": 404, + "rank": 501, "tags": [ "us" ], @@ -2636,7 +2649,7 @@ }, "VSCO": { "errorType": "status_code", - "rank": 5097, + "rank": 4869, "tags": [ "us" ], @@ -2648,7 +2661,7 @@ "Velomania": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", "errorType": "message", - "rank": 101006, + "rank": 102859, "tags": [ "ru" ], @@ -2659,7 +2672,7 @@ }, "Venmo": { "errorType": "status_code", - "rank": 5489, + "rank": 4798, "tags": [ "finance", "us" @@ -2671,12 +2684,12 @@ }, "Vimeo": { "errorType": "status_code", - "rank": 164, + "rank": 166, + "request_head_only": false, "tags": [ "us", "video" ], - "request_head_only": false, "url": "https://vimeo.com/{}", "urlMain": "https://vimeo.com/", "username_claimed": "blue", @@ -2685,7 +2698,7 @@ "Virgool": { "errorMsg": "\u06f4\u06f0\u06f4", "errorType": "message", - "rank": 2435, + "rank": 2462, "tags": [ "ir" ], @@ -2697,7 +2710,7 @@ "VirusTotal": { "errorMsg": "not found", "errorType": "message", - "rank": 5588, + "rank": 5664, "tags": [ "in" ], @@ -2709,7 +2722,7 @@ "Wattpad": { "errorMsg": "userError-404", "errorType": "message", - "rank": 592, + "rank": 626, "tags": [ "in", "social" @@ -2722,7 +2735,7 @@ "We Heart It": { "errorMsg": "Oops! You've landed on a moving target!", "errorType": "message", - "rank": 3164, + "rank": 3190, "tags": [ "in" ], @@ -2733,7 +2746,7 @@ }, "WebNode": { "errorType": "status_code", - "rank": 19685, + "rank": 20176, "tags": [ "cz" ], @@ -2744,7 +2757,7 @@ }, "Whonix Forum": { "errorType": "status_code", - "rank": 206783, + "rank": 197513, "tags": [ "id" ], @@ -2756,7 +2769,7 @@ "Wikidot": { "errorMsg": "User does not exist.", "errorType": "message", - "rank": 3283, + "rank": 3339, "tags": [ "us" ], @@ -2768,7 +2781,7 @@ "WikimapiaProfile": { "errorMsg": "January 01, 1970", "errorType": "message", - "rank": 7174, + "rank": 6781, "request_head_only": false, "tags": [ "ru" @@ -2783,7 +2796,7 @@ "caseSentitive": true, "errorMsg": "20", "errorType": "message", - "rank": 7174, + "rank": 6781, "request_head_only": false, "tags": [ "ru" @@ -2796,7 +2809,7 @@ "Wikipedia": { "errorMsg": "is not registered", "errorType": "message", - "rank": 12, + "rank": 14, "tags": [ "", "us" @@ -2808,7 +2821,7 @@ }, "Wix": { "errorType": "status_code", - "rank": 194, + "rank": 191, "tags": [ "us" ], @@ -2820,7 +2833,7 @@ "WordPress": { "errorType": "response_url", "errorUrl": "wordpress.com/typo/?subdomain=", - "rank": 55, + "rank": 57, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "blog", @@ -2834,7 +2847,7 @@ "WordPressOrg": { "errorType": "response_url", "errorUrl": "https://wordpress.org", - "rank": 650, + "rank": 623, "tags": [ "in" ], @@ -2845,7 +2858,7 @@ }, "Xvideos": { "errorType": "status_code", - "rank": 125, + "rank": 120, "tags": [ "porno", "us" @@ -2857,7 +2870,7 @@ }, "Yandex": { "errorType": "status_code", - "rank": 58, + "rank": 55, "tags": [ "global", "ru" @@ -2873,7 +2886,7 @@ "errors": { "action=\"/checkcaptcha\" onsubmit": "Captcha detected, use proxy/vpn" }, - "rank": 58, + "rank": 55, "request_head_only": false, "tags": [ "global", @@ -2886,7 +2899,7 @@ }, "YandexLocal": { "errorType": "status_code", - "rank": 58, + "rank": 55, "tags": [ "global", "ru" @@ -2902,7 +2915,7 @@ "headers": { "Referer": "https://music.yandex.ru/users/test/playlists" }, - "rank": 58, + "rank": 55, "request_head_only": false, "tags": [ "global", @@ -2917,7 +2930,7 @@ }, "YandexZnatoki": { "errorType": "status_code", - "rank": 58, + "rank": 55, "tags": [ "global", "ru" @@ -2931,7 +2944,7 @@ "YouNow": { "errorMsg": "No users found", "errorType": "message", - "rank": 13960, + "rank": 14260, "tags": [ "be" ], @@ -2943,8 +2956,9 @@ }, "YouPic": { "errorType": "status_code", - "rank": 23500, + "rank": 27139, "tags": [ + "in", "sd" ], "url": "https://youpic.com/photographer/{}/", @@ -2954,7 +2968,7 @@ }, "YouPorn": { "errorType": "status_code", - "rank": 469, + "rank": 439, "tags": [ "porno", "us" @@ -2980,7 +2994,7 @@ "Zhihu": { "errorType": "response_url", "errorUrl": "https://www.zhihu.com/people/{}", - "rank": 137, + "rank": 147, "tags": [ "cn" ], @@ -2994,7 +3008,7 @@ "headers": { "Accept-Language": "en-US,en;q=0.9" }, - "rank": 2344, + "rank": 2053, "tags": [ "food", "in" @@ -3006,7 +3020,7 @@ }, "akniga": { "errorType": "status_code", - "rank": 11202, + "rank": 10838, "tags": [ "ru" ], @@ -3018,7 +3032,7 @@ "allmylinks": { "errorMsg": "Page not found", "errorType": "message", - "rank": 26598, + "rank": 22230, "tags": [ "us" ], @@ -3029,7 +3043,7 @@ }, "aminoapp": { "errorType": "status_code", - "rank": 285, + "rank": 286, "tags": [ "br" ], @@ -3040,7 +3054,7 @@ }, "authorSTREAM": { "errorType": "status_code", - "rank": 8835, + "rank": 10535, "tags": [ "in", "presos" @@ -3053,7 +3067,7 @@ "babyRU": { "errorMsg": "\u0423\u043f\u0441, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0438\u0441\u043a\u0430\u043b\u0438, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442", "errorType": "message", - "rank": 6069, + "rank": 5285, "tags": [ "ru" ], @@ -3063,19 +3077,21 @@ "username_unclaimed": "noonewouldeverusethis" }, "babyblogRU": { - "errorType": "status_code", - "rank": 14463, + "errorType": "response_url", + "errorUrl": "https://www.babyblog.ru/", + "rank": 14450, + "request_head_only": false, "tags": [ "ru" ], - "url": "https://www.babyblog.ru/user/info/{}", + "url": "https://www.babyblog.ru/user/{}", "urlMain": "https://www.babyblog.ru/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis" }, "chaos.social": { "errorType": "status_code", - "rank": 1676076, + "rank": 1872232, "url": "https://chaos.social/@{}", "urlMain": "https://chaos.social/", "username_claimed": "rixx", @@ -3083,7 +3099,7 @@ }, "couchsurfing": { "errorType": "status_code", - "rank": 12793, + "rank": 13052, "tags": [ "in" ], @@ -3094,7 +3110,7 @@ }, "d3RU": { "errorType": "status_code", - "rank": 38372, + "rank": 36571, "tags": [ "ru" ], @@ -3105,7 +3121,7 @@ }, "dailykos": { "errorType": "status_code", - "rank": 5757, + "rank": 5404, "tags": [ "us" ], @@ -3116,7 +3132,7 @@ }, "datingRU": { "errorType": "status_code", - "rank": 71209, + "rank": 67263, "tags": [ "ru" ], @@ -3128,7 +3144,7 @@ "devRant": { "errorType": "response_url", "errorUrl": "https://devrant.com/", - "rank": 93139, + "rank": 100968, "tags": [ "in", "social" @@ -3140,7 +3156,7 @@ }, "drive2": { "errorType": "status_code", - "rank": 1484, + "rank": 1390, "tags": [ "ru" ], @@ -3151,7 +3167,7 @@ }, "eGPU": { "errorType": "status_code", - "rank": 80474, + "rank": 83025, "tags": [ "jp" ], @@ -3163,7 +3179,7 @@ "easyen": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 21091, + "rank": 31350, "tags": [ "ru" ], @@ -3174,7 +3190,7 @@ }, "eintracht": { "errorType": "status_code", - "rank": 275478, + "rank": 343407, "url": "https://community.eintracht.de/fans/{}", "urlMain": "https://eintracht.de", "username_claimed": "blue", @@ -3182,7 +3198,7 @@ }, "fixya": { "errorType": "status_code", - "rank": 5085, + "rank": 4584, "tags": [ "us" ], @@ -3193,7 +3209,7 @@ }, "fl": { "errorType": "status_code", - "rank": 53667, + "rank": 49103, "tags": [ "ru" ], @@ -3205,7 +3221,7 @@ "forum_guns": { "errorMsg": "action=https://forum.guns.ru/forummisc/blog/search", "errorType": "message", - "rank": 24198, + "rank": 24969, "tags": [ "ru" ], @@ -3217,7 +3233,7 @@ "forumhouseRU": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", - "rank": 12858, + "rank": 12800, "tags": [ "ru" ], @@ -3228,7 +3244,7 @@ }, "geocaching": { "errorType": "status_code", - "rank": 11142, + "rank": 10798, "tags": [ "de", "social" @@ -3240,7 +3256,7 @@ }, "gfycat": { "errorType": "status_code", - "rank": 1012, + "rank": 1129, "tags": [ "us" ], @@ -3251,7 +3267,7 @@ }, "habr": { "errorType": "status_code", - "rank": 1363, + "rank": 1401, "tags": [ "ru" ], @@ -3262,7 +3278,7 @@ }, "hackster": { "errorType": "status_code", - "rank": 19525, + "rank": 19544, "tags": [ "us" ], @@ -3274,7 +3290,7 @@ "hunting": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", - "rank": 145363, + "rank": 152284, "tags": [ "ru" ], @@ -3286,7 +3302,7 @@ "iMGSRC.RU": { "errorType": "response_url", "errorUrl": "https://imgsrc.ru/", - "rank": 16613, + "rank": 16447, "tags": [ "es", "ru" @@ -3299,7 +3315,7 @@ "igromania": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", "errorType": "message", - "rank": 12173, + "rank": 12256, "tags": [ "gaming", "ru" @@ -3312,7 +3328,7 @@ "interpals": { "errorMsg": "The requested user does not exist or is inactive", "errorType": "message", - "rank": 7165, + "rank": 7134, "tags": [ "dating", "sd" @@ -3324,7 +3340,7 @@ }, "irecommend": { "errorType": "status_code", - "rank": 2197, + "rank": 2085, "tags": [ "ru" ], @@ -3336,7 +3352,7 @@ "jeuxvideo": { "errorMsg": "Vous \u00eates", "errorType": "message", - "rank": 1737, + "rank": 1760, "tags": [ "fr", "gaming" @@ -3349,7 +3365,7 @@ "kofi": { "errorMsg": "Make income from your art!", "errorType": "message", - "rank": 9734, + "rank": 9254, "tags": [ "freelance", "ru", @@ -3362,7 +3378,7 @@ }, "kwork": { "errorType": "status_code", - "rank": 6655, + "rank": 6639, "tags": [ "ru" ], @@ -3374,7 +3390,7 @@ "labpentestit": { "errorType": "response_url", "errorUrl": "https://lab.pentestit.ru/{}", - "rank": 2343179, + "rank": 2855796, "tags": [ "cybersec" ], @@ -3385,7 +3401,7 @@ }, "last.fm": { "errorType": "status_code", - "rank": 1849, + "rank": 1944, "tags": [ "music", "us" @@ -3397,7 +3413,7 @@ }, "leasehackr": { "errorType": "status_code", - "rank": 66996, + "rank": 59892, "tags": [ "us" ], @@ -3408,7 +3424,7 @@ }, "mastodon.cloud": { "errorType": "status_code", - "rank": 1349749, + "rank": 1507445, "url": "https://mastodon.cloud/@{}", "urlMain": "https://mastodon.cloud/", "username_claimed": "TheAdmin", @@ -3416,7 +3432,7 @@ }, "mastodon.social": { "errorType": "status_code", - "rank": 1676076, + "rank": 1872232, "url": "https://mastodon.social/@{}", "urlMain": "https://chaos.social/", "username_claimed": "Gargron", @@ -3424,7 +3440,7 @@ }, "mastodon.technology": { "errorType": "status_code", - "rank": 1034667, + "rank": 878254, "tags": [ "th" ], @@ -3435,7 +3451,7 @@ }, "mastodon.xyz": { "errorType": "status_code", - "rank": 1034667, + "rank": 878254, "tags": [ "th" ], @@ -3446,7 +3462,7 @@ }, "mercadolivre": { "errorType": "status_code", - "rank": 186, + "rank": 177, "tags": [ "br" ], @@ -3458,7 +3474,7 @@ "metacritic": { "errorMsg": "User not found", "errorType": "message", - "rank": 2257, + "rank": 2244, "regexCheck": "^(?![-_])[A-Za-z0-9-_]{3,15}$", "tags": [ "us" @@ -3468,21 +3484,9 @@ "username_claimed": "blue", "username_unclaimed": "noonewould" }, - "mixer.com": { - "errorType": "status_code", - "rank": 2069, - "tags": [ - "us" - ], - "url": "https://mixer.com/{}", - "urlMain": "https://mixer.com/", - "urlProbe": "https://mixer.com/api/v1/channels/{}", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, "moikrug": { "errorType": "status_code", - "rank": 186785, + "rank": 176708, "tags": [ "us" ], @@ -3493,7 +3497,7 @@ }, "mstdn.io": { "errorType": "status_code", - "rank": 1933720, + "rank": 2343970, "url": "https://mstdn.io/@{}", "urlMain": "https://mstdn.io/", "username_claimed": "blue", @@ -3501,7 +3505,7 @@ }, "nightbot": { "errorType": "status_code", - "rank": 10092, + "rank": 10391, "tags": [ "us" ], @@ -3521,7 +3525,7 @@ }, "notabug.org": { "errorType": "status_code", - "rank": 155148, + "rank": 169661, "url": "https://notabug.org/{}", "urlMain": "https://notabug.org/", "urlProbe": "https://notabug.org/{}/followers", @@ -3530,7 +3534,7 @@ }, "note": { "errorType": "status_code", - "rank": 834, + "rank": 821, "tags": [ "jp" ], @@ -3542,7 +3546,7 @@ "opennet": { "errorMsg": "\u0418\u043c\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e", "errorType": "message", - "rank": 63879, + "rank": 61064, "regexCheck": "^[^-]+$", "tags": [ "ru" @@ -3554,7 +3558,7 @@ }, "opensource": { "errorType": "status_code", - "rank": 7233, + "rank": 6475, "tags": [ "in" ], @@ -3565,7 +3569,7 @@ }, "osu!": { "errorType": "status_code", - "rank": 4527, + "rank": 4319, "tags": [ "us" ], @@ -3577,7 +3581,7 @@ "phpRU": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", - "rank": 115666, + "rank": 105977, "tags": [ "ru" ], @@ -3588,7 +3592,7 @@ }, "pikabu": { "errorType": "status_code", - "rank": 1021, + "rank": 1079, "tags": [ "ru" ], @@ -3599,7 +3603,7 @@ }, "pr0gramm": { "errorType": "status_code", - "rank": 4176, + "rank": 3850, "tags": [ "de" ], @@ -3613,7 +3617,7 @@ "errors": { "Access denied": "Cloudflare security protection detected" }, - "rank": 270432, + "rank": 249002, "request_head_only": false, "tags": [ "ru" @@ -3623,9 +3627,23 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "qiwi.me": { + "errorMsg": "no piggybox found", + "errorType": "message", + "rank": 357971, + "tags": [ + "finance", + "ru" + ], + "url": "https://qiwi.me/{}", + "urlMain": "https://qiwi.me", + "urlProbe": "https://api.qiwi.me/piggybox/{}", + "username_claimed": "videokursy", + "username_unclaimed": "noonewouldeverusethis7" + }, "radio_echo_msk": { "errorType": "status_code", - "rank": 1574, + "rank": 1569, "tags": [ "ru" ], @@ -3637,7 +3655,7 @@ "radioskot": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 138697, + "rank": 132190, "regexCheck": "^[^-]+$", "tags": [ "ru" @@ -3649,7 +3667,7 @@ }, "satsisRU": { "errorType": "status_code", - "rank": 322626, + "rank": 245406, "tags": [ "ru" ], @@ -3660,7 +3678,7 @@ }, "segmentfault": { "errorType": "status_code", - "rank": 836, + "rank": 921, "tags": [ "cn" ], @@ -3671,9 +3689,10 @@ }, "social.tchncs.de": { "errorType": "status_code", - "rank": 490342, + "rank": 536933, "tags": [ - "in" + "in", + "vn" ], "url": "https://social.tchncs.de/@{}", "urlMain": "https://social.tchncs.de/", @@ -3683,7 +3702,7 @@ "soylentnews": { "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", "errorType": "message", - "rank": 557006, + "rank": 737317, "url": "https://soylentnews.org/~{}", "urlMain": "https://soylentnews.org", "username_claimed": "adam", @@ -3692,7 +3711,7 @@ "sparkpeople": { "errorMsg": "We couldn't find that user", "errorType": "message", - "rank": 16989, + "rank": 16608, "tags": [ "us" ], @@ -3703,7 +3722,7 @@ }, "spletnik": { "errorType": "status_code", - "rank": 8754, + "rank": 8538, "tags": [ "ru" ], @@ -3714,7 +3733,7 @@ }, "svidbook": { "errorType": "status_code", - "rank": 4592288, + "rank": 3833893, "url": "https://www.svidbook.ru/user/{}", "urlMain": "https://www.svidbook.ru/", "username_claimed": "green", @@ -3724,9 +3743,9 @@ "errorMsg": "No search results", "errorType": "message", "errors": { - "g-recaptcha": "Captcha detected" + "g-recaptcha": "Captcha detected" }, - "rank": 993155, + "rank": 949722, "regexCheck": "^[A-Za-z0-9]{2,32}$", "tags": [ "gaming", @@ -3740,7 +3759,7 @@ "travellerspoint": { "errorMsg": "Wooops. Sorry!", "errorType": "message", - "rank": 83396, + "rank": 71765, "tags": [ "us" ], @@ -3751,7 +3770,7 @@ }, "uid": { "errorType": "status_code", - "rank": 28986, + "rank": 31094, "tags": [ "ru" ], @@ -3762,7 +3781,7 @@ }, "warriorforum": { "errorType": "status_code", - "rank": 3745, + "rank": 3599, "tags": [ "us" ], @@ -3773,7 +3792,7 @@ }, "windy": { "errorType": "status_code", - "rank": 1851, + "rank": 1681, "tags": [ "pl" ], @@ -3784,7 +3803,7 @@ }, "xHamster": { "errorType": "status_code", - "rank": 152, + "rank": 143, "tags": [ "porno", "us" diff --git a/sites.md b/sites.md index 2acd0ee38..1f909cdb5 100644 --- a/sites.md +++ b/sites.md @@ -3,323 +3,323 @@ 2. [PlayStore](https://play.google.com/store), top 1 3. [YouTube](https://www.youtube.com/), top 2 4. [Facebook](https://www.facebook.com/), top 8 -5. [Wikipedia](https://www.wikipedia.org/), top 12 -6. [Reddit](https://www.reddit.com/), top 20 +5. [Wikipedia](https://www.wikipedia.org/), top 14 +6. [Reddit](https://www.reddit.com/), top 19 7. [MicrosoftTechNet](https://social.technet.microsoft.com), top 23 8. [VK](https://vk.com/), top 24 9. [BongaCams](https://pt.bongacams.com), top 26 -10. [Twitch](https://www.twitch.tv/), top 32 -11. [Livejasmin](https://www.livejasmin.com/), top 33 -12. [Instagram](https://www.instagram.com/), top 35 -13. [Ebay](https://www.ebay.com/), top 48 +10. [Twitch](https://www.twitch.tv/), top 30 +11. [Instagram](https://www.instagram.com/), top 33 +12. [Livejasmin](https://www.livejasmin.com/), top 35 +13. [Ebay](https://www.ebay.com/), top 46 14. [AppleDeveloper](https://developer.apple.com/forums), top 50 15. [AppleDiscussions](https://discussions.apple.com/), top 50 -16. [WordPress](https://wordpress.com), top 55 -17. [OK](https://ok.ru/), top 56 -18. [Yandex](https://yandex.ru/), top 58 -19. [YandexCollection](https://yandex.ru/collections/), top 58 -20. [YandexLocal](https://local.yandex.ru/), top 58 -21. [YandexMusic](https://music.yandex.ru/), top 58 -22. [YandexZnatoki](https://yandex.ru/q/), top 58 -23. [ChaturBate](https://chaturbate.com), top 60 -24. [Pornhub](https://pornhub.com/), top 61 +16. [Pornhub](https://pornhub.com/), top 53 +17. [Yandex](https://yandex.ru/), top 55 +18. [YandexCollection](https://yandex.ru/collections/), top 55 +19. [YandexLocal](https://local.yandex.ru/), top 55 +20. [YandexMusic](https://music.yandex.ru/), top 55 +21. [YandexZnatoki](https://yandex.ru/q/), top 55 +22. [WordPress](https://wordpress.com), top 57 +23. [ChaturBate](https://chaturbate.com), top 59 +24. [OK](https://ok.ru/), top 60 25. [Twitter](https://www.twitter.com/), top 63 -26. [Medium](https://medium.com/), top 79 -27. [GitHub](https://www.github.com/), top 85 -28. [Fandom](https://www.fandom.com/), top 89 -29. [Spotify](https://open.spotify.com/), top 90 -30. [SoundCloud](https://soundcloud.com/), top 95 -31. [Roblox](https://www.roblox.com/), top 113 -32. [Etsy](https://www.etsy.com/), top 120 -33. [Xvideos](https://xvideos.com/), top 125 -34. [SlideShare](https://slideshare.net/), top 133 -35. [Zhihu](https://www.zhihu.com/), top 137 -36. [TradingView](https://www.tradingview.com/), top 144 -37. [ResearchGate](https://www.researchgate.net/), top 146 -38. [CNET](https://www.cnet.com/), top 148 -39. [xHamster](https://xhamster.com), top 152 -40. [Trello](https://trello.com/), top 163 -41. [Vimeo](https://vimeo.com/), top 164 -42. [Pinterest](https://www.pinterest.com/), top 173 -43. [Steam](https://steamcommunity.com/), top 179 -44. [SteamGroup](https://steamcommunity.com/), top 179 -45. [mercadolivre](https://www.mercadolivre.com.br), top 186 -46. [Wix](https://wix.com/), top 194 -47. [Archive.org](https://archive.org), top 224 -48. [DailyMotion](https://www.dailymotion.com/), top 230 -49. [Slack](https://slack.com), top 245 -50. [Academia.edu](https://www.academia.edu/), top 269 -51. [Scribd](https://www.scribd.com/), top 277 -52. [Telegram](https://t.me/), top 279 -53. [Quora](https://www.quora.com/), top 283 -54. [aminoapp](https://aminoapps.com/), top 285 -55. [Euw](https://euw.op.gg/), top 289 -56. [Behance](https://www.behance.net/), top 314 -57. [Blogger](https://www.blogger.com/), top 326 -58. [GoodReads](https://www.goodreads.com/), top 327 -59. [Patreon](https://www.patreon.com/), top 346 -60. [Unsplash](https://unsplash.com/), top 404 -61. [Chess](https://www.chess.com/ru/), top 407 -62. [Fiverr](https://www.fiverr.com/), top 414 -63. [Duolingo](https://duolingo.com/), top 422 -64. [SourceForge](https://sourceforge.net/), top 430 -65. [LiveJournal](https://www.livejournal.com/), top 434 -66. [YouPorn](https://youporn.com), top 469 -67. [BuzzFeed](https://buzzfeed.com/), top 472 -68. [DeviantART](https://deviantart.com), top 542 -69. [Issuu](https://issuu.com/), top 548 -70. [Crunchyroll](https://www.crunchyroll.com/), top 554 -71. [Scratch](https://scratch.mit.edu/), top 560 -72. [Gamespot](https://www.gamespot.com/), top 568 -73. [TripAdvisor](https://tripadvisor.com/), top 574 -74. [Wattpad](https://www.wattpad.com/), top 592 -75. [Oracle Community](https://community.oracle.com), top 612 -76. [Giphy](https://giphy.com/), top 625 -77. [Ultimate-Guitar](https://ultimate-guitar.com/), top 628 -78. [WordPressOrg](https://wordpress.org/), top 650 -79. [note](https://note.com/), top 834 -80. [segmentfault](https://segmentfault.com/), top 836 -81. [Redbubble](https://www.redbubble.com/), top 952 -82. [MyAnimeList](https://myanimelist.net/), top 966 -83. [gfycat](https://gfycat.com/), top 1012 -84. [pikabu](https://pikabu.ru/), top 1021 -85. [Tinder](https://tinder.com/), top 1031 -86. [Bandcamp](https://www.bandcamp.com/), top 1044 -87. [Flickr](https://www.flickr.com/), top 1064 -88. [Disqus](https://disqus.com/), top 1072 -89. [Discogs](https://www.discogs.com/), top 1091 -90. [PCGamer](https://pcgamer.com), top 1095 -91. [Freelancer.com](https://www.freelancer.com/), top 1172 -92. [Polygon](https://www.polygon.com/), top 1254 -93. [Instructables](https://www.instructables.com/), top 1271 -94. [Dribbble](https://dribbble.com/), top 1301 -95. [Pastebin](https://pastebin.com/), top 1303 -96. [Career.habr](https://career.habr.com/), top 1363 -97. [Freelance.habr](https://freelance.habr.com/), top 1363 -98. [Toster](https://qna.habr.com/), top 1363 -99. [habr](https://habr.com/), top 1363 -100. [CloudflareCommunity](https://community.cloudflare.com/), top 1392 -101. [Houzz](https://houzz.com/), top 1436 -102. [T-MobileSupport](https://support.t-mobile.com), top 1452 -103. [drive2](https://www.drive2.ru/), top 1484 -104. [radio_echo_msk](https://echo.msk.ru/), top 1574 -105. [jeuxvideo](http://www.jeuxvideo.com), top 1737 -106. [Rajce.net](https://www.rajce.idnes.cz/), top 1761 -107. [Itch.io](https://itch.io/), top 1775 -108. [Otzovik](https://otzovik.com/), top 1795 -109. [Flightradar24](https://www.flightradar24.com/), top 1833 -110. [last.fm](https://last.fm/), top 1849 -111. [windy](https://windy.com/), top 1851 -112. [Taringa](https://taringa.net/), top 1865 -113. [Lichess](https://lichess.org), top 1867 -114. [Badoo](https://badoo.com/), top 1895 -115. [Championat](https://www.championat.com/), top 1931 -116. [BitBucket](https://bitbucket.org/), top 2034 -117. [PCPartPicker](https://pcpartpicker.com), top 2040 -118. [mixer.com](https://mixer.com/), top 2069 -119. [Codecademy](https://www.codecademy.com/), top 2126 -120. [irecommend](https://irecommend.ru/), top 2197 -121. [CreativeMarket](https://creativemarket.com/), top 2221 -122. [metacritic](https://www.metacritic.com/), top 2257 -123. [Myspace](https://myspace.com/), top 2261 -124. [LeetCode](https://leetcode.com/), top 2335 -125. [Zomato](https://www.zomato.com/), top 2344 -126. [Virgool](https://virgool.io/), top 2435 -127. [MixCloud](https://www.mixcloud.com/), top 2523 -128. [Kaggle](https://www.kaggle.com/), top 2589 -129. [4pda](https://4pda.ru/), top 2621 -130. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2623 -131. [SportsRU](https://www.sports.ru/), top 2657 -132. [Kongregate](https://www.kongregate.com/), top 2797 -133. [HackerRank](https://hackerrank.com/), top 2869 -134. [AskFM](https://ask.fm/), top 3029 -135. [We Heart It](https://weheartit.com/), top 3164 -136. [Sporcle](https://www.sporcle.com/), top 3281 -137. [Wikidot](http://www.wikidot.com/), top 3283 -138. [Lolchess](https://lolchess.gg/), top 3314 -139. [Docker Hub](https://hub.docker.com/), top 3325 -140. [Repl.it](https://repl.it/), top 3358 -141. [LiveLib](https://www.livelib.ru/), top 3429 -142. [HubPages](https://hubpages.com/), top 3495 -143. [500px](https://500px.com/), top 3594 -144. [GitLab](https://gitlab.com/), top 3714 -145. [warriorforum](https://www.warriorforum.com/), top 3745 -146. [Photobucket](https://photobucket.com/), top 3776 -147. [Letterboxd](https://letterboxd.com/), top 3816 -148. [Cracked](https://www.cracked.com/), top 3855 -149. [Gumroad](https://www.gumroad.com/), top 3885 -150. [pr0gramm](https://pr0gramm.com/), top 4176 -151. [AllTrails](https://www.alltrails.com/), top 4473 -152. [osu!](https://osu.ppy.sh/), top 4527 -153. [Pokemon Showdown](https://pokemonshowdown.com), top 4967 -154. [fixya](https://www.fixya.com), top 5085 -155. [VSCO](https://vsco.co/), top 5097 -156. [Venmo](https://venmo.com/), top 5489 -157. [VirusTotal](https://www.virustotal.com/), top 5588 -158. [HackerNews](https://news.ycombinator.com/), top 5603 -159. [Memrise](https://www.memrise.com/), top 5678 -160. [Stihi.ru](https://www.stihi.ru/), top 5704 -161. [Rate Your Music](https://rateyourmusic.com/), top 5714 -162. [dailykos](https://www.dailykos.com), top 5757 -163. [Aptoide](https://en.aptoide.com/), top 6011 -164. [babyRU](https://www.baby.ru/), top 6069 -165. [Audiojungle](https://audiojungle.net/), top 6116 -166. [Gravatar](http://en.gravatar.com/), top 6149 -167. [NPM](https://www.npmjs.com/), top 6318 -168. [NPM-Package](https://www.npmjs.com/), top 6318 -169. [Freesound](https://freesound.org/), top 6414 -170. [FortniteTracker](https://fortnitetracker.com/challenges), top 6446 -171. [kwork](https://www.kwork.ru/), top 6655 -172. [Newgrounds](https://newgrounds.com), top 6668 -173. [Gitee](https://gitee.com/), top 6897 -174. [SublimeForum](https://forum.sublimetext.com/), top 6907 -175. [BOOTH](https://booth.pm/), top 7023 -176. [Trakt](https://www.trakt.tv/), top 7049 -177. [Discuss.Elastic.co](https://discuss.elastic.co/), top 7146 -178. [interpals](https://www.interpals.net/), top 7165 -179. [WikimapiaProfile](http://wikimapia.org), top 7174 -180. [WikimapiaSearch](http://wikimapia.org), top 7174 -181. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7213 -182. [opensource](https://opensource.com/), top 7233 -183. [Smule](https://www.smule.com/), top 7261 -184. [Proza.ru](https://www.proza.ru/), top 7335 -185. [Star Citizen](https://robertsspaceindustries.com/), top 7463 -186. [Pinkbike](https://www.pinkbike.com/), top 7540 -187. [OpenStreetMap](https://www.openstreetmap.org/), top 7701 -188. [Cloob](https://www.cloob.com/), top 7719 -189. [Flipboard](https://flipboard.com/), top 7826 -190. [NICommunityForum](https://www.native-instruments.com/forum/), top 7940 -191. [Facenama](https://facenama.com/), top 8097 -192. [3dnews](http://forum.3dnews.ru/), top 8293 -193. [Kali community](https://forums.kali.org/), top 8417 -194. [Typeracer](https://typeracer.com), top 8652 -195. [spletnik](https://spletnik.ru/), top 8754 -196. [DEV Community](https://dev.to/), top 8782 -197. [authorSTREAM](http://www.authorstream.com/), top 8835 -198. [IFTTT](https://www.ifttt.com/), top 9058 -199. [Codechef](https://www.codechef.com/), top 9132 -200. [ReverbNation](https://www.reverbnation.com/), top 9137 -201. [Launchpad](https://launchpad.net/), top 9528 -202. [kofi](https://ko-fi.com), top 9734 -203. [nightbot](https://nightbot.tv/), top 10092 -204. [PSNProfiles.com](https://psnprofiles.com/), top 10643 -205. [ProductHunt](https://www.producthunt.com/), top 10944 -206. [Speedrun.com](https://speedrun.com/), top 10971 -207. [geocaching](https://www.geocaching.com/), top 11142 -208. [akniga](https://akniga.org/profile/blue/), top 11202 -209. [Coderwall](https://coderwall.com/), top 11939 -210. [igromania](http://forum.igromania.ru/), top 12173 -211. [Teletype](https://teletype.in), top 12384 -212. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12407 -213. [couchsurfing](https://www.couchsurfing.com/), top 12793 -214. [forumhouseRU](https://www.forumhouse.ru/), top 12858 -215. [ImageShack](https://imageshack.com/), top 13304 -216. [Contently](https://contently.com/), top 13328 -217. [YouNow](https://www.younow.com/), top 13960 -218. [Sbazar.cz](https://www.sbazar.cz/), top 14449 -219. [babyblogRU](https://www.babyblog.ru/), top 14463 -220. [TrashboxRU](https://trashbox.ru/), top 15898 -221. [iMGSRC.RU](https://imgsrc.ru/), top 16613 -222. [sparkpeople](https://www.sparkpeople.com), top 16989 -223. [Samlib](http://samlib.ru/), top 18297 -224. [About.me](https://about.me/), top 19062 -225. [hackster](https://www.hackster.io), top 19525 -226. [WebNode](https://www.webnode.cz/), top 19685 -227. [Jimdo](https://jimdosite.com/), top 20051 -228. [EyeEm](https://www.eyeem.com/), top 20114 -229. [Codewars](https://www.codewars.com), top 20398 -230. [easyen](https://easyen.ru/), top 21091 -231. [YouPic](https://youpic.com/), top 23500 -232. [Packagist](https://packagist.org/), top 23510 -233. [GuruShots](https://gurushots.com/), top 23988 -234. [forum_guns](https://forum.guns.ru/), top 24198 -235. [Tellonym.me](https://tellonym.me/), top 24394 -236. [HackerOne](https://hackerone.com/), top 24497 -237. [Carbonmade](https://carbonmade.com/), top 25700 -238. [allmylinks](https://allmylinks.com/), top 26598 -239. [uid](https://uid.me/), top 28986 -240. [Ask Fedora](https://ask.fedoraproject.org/), top 30489 -241. [PromoDJ](http://promodj.com/), top 32551 -242. [Periscope](https://www.periscope.tv/), top 32930 -243. [RubyGems](https://rubygems.org/), top 33064 -244. [Realmeye](https://www.realmeye.com/), top 33097 -245. [Coroflot](https://coroflot.com/), top 37379 -246. [OpenCollective](https://opencollective.com/), top 37503 -247. [d3RU](https://d3.ru/), top 38372 -248. [Anobii](https://www.anobii.com/), top 41444 -249. [LOR](https://linux.org.ru/), top 41689 -250. [Football](https://www.rusfootball.info/), top 42336 -251. [HackTheBox](https://forum.hackthebox.eu/), top 42998 -252. [Ello](https://ello.co/), top 43730 -253. [7Cups](https://www.7cups.com/), top 50645 -254. [RoyalCams](https://royalcams.com), top 50752 -255. [Plug.DJ](https://plug.dj/), top 50895 -256. [NationStates Nation](https://nationstates.net), top 53448 -257. [NationStates Region](https://nationstates.net), top 53448 -258. [fl](https://www.fl.ru/), top 53667 -259. [Keybase](https://keybase.io/), top 57982 -260. [F3.cool](https://f3.cool/), top 58656 -261. [opennet](https://www.opennet.ru/), top 63879 -262. [Bookcrossing](https://www.bookcrossing.com/), top 65128 -263. [leasehackr](https://forum.leasehackr.com/), top 66996 -264. [Clozemaster](https://www.clozemaster.com), top 68801 -265. [datingRU](http://dating.ru), top 71209 -266. [eGPU](https://egpu.io/), top 80474 -267. [Asciinema](https://asciinema.org), top 83004 -268. [travellerspoint](https://www.travellerspoint.com), top 83396 -269. [Pling](https://www.pling.com/), top 92783 -270. [devRant](https://devrant.com/), top 93139 -271. [TamTam](https://tamtam.chat/), top 98745 -272. [Cent](https://cent.co/), top 99599 -273. [Velomania](https://forum.velomania.ru/), top 101006 -274. [phpRU](https://php.ru/forum/), top 115666 -275. [Lobsters](https://lobste.rs/), top 129889 -276. [radioskot](https://radioskot.ru/), top 138697 -277. [GunsAndAmmo](https://gunsandammo.com/), top 138979 -278. [hunting](https://www.hunting.ru/forum/), top 145363 -279. [Steamid](https://steamid.uk/), top 151277 -280. [notabug.org](https://notabug.org/), top 155148 -281. [KanoWorld](https://world.kano.me/), top 155829 -282. [BLIP.fm](https://blip.fm/), top 160252 -283. [moikrug](https://moikrug.ru/), top 186785 -284. [Crevado](https://crevado.com/), top 201684 -285. [Smashcast](https://www.smashcast.tv/), top 203497 -286. [Whonix Forum](https://forums.whonix.org/), top 206783 -287. [pvpru](https://pvpru.com/), top 270432 -288. [Hubski](https://hubski.com/), top 270708 -289. [eintracht](https://eintracht.de), top 275478 -290. [Bazar.cz](https://www.bazar.cz/), top 317058 -291. [BitCoinForum](https://bitcoinforum.com), top 317370 -292. [satsisRU](https://satsis.info/), top 322626 -293. [Avizo](https://www.avizo.cz/), top 352896 -294. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 454325 -295. [social.tchncs.de](https://social.tchncs.de/), top 490342 -296. [soylentnews](https://soylentnews.org), top 557006 -297. [Splits.io](https://splits.io), top 580435 -298. [Kik](http://kik.me/), top 704379 -299. [Alik.cz](https://www.alik.cz/), top 705075 -300. [House-Mixes.com](https://www.house-mixes.com/), top 713436 -301. [Gam1ng](https://gam1ng.com.br), top 908194 -302. [Signal](https://community.signalusers.org), top 939641 -303. [tracr.co](https://tracr.co/), top 993155 -304. [ShitpostBot5000](https://www.shitpostbot.com/), top 1001949 -305. [mastodon.technology](https://mastodon.xyz/), top 1034667 -306. [mastodon.xyz](https://mastodon.xyz/), top 1034667 -307. [mastodon.cloud](https://mastodon.cloud/), top 1349749 -308. [chaos.social](https://chaos.social/), top 1676076 -309. [mastodon.social](https://chaos.social/), top 1676076 -310. [mstdn.io](https://mstdn.io/), top 1933720 -311. [labpentestit](https://lab.pentestit.ru/), top 2343179 -312. [OurDJTalk](https://ourdjtalk.com/), top 3168225 -313. [PokerStrategy](http://www.pokerstrategy.net), top 3414611 -314. [Designspiration](https://www.designspiration.net/), top 4234418 -315. [svidbook](https://www.svidbook.ru/), top 4592288 -316. [GDProfiles](https://gdprofiles.com/), top 5059468 -317. [CashMe](https://cash.me/), top 6387848 -318. [2Dimensions](https://2Dimensions.com/), top 7164342 -319. [Chatujme.cz](https://chatujme.cz/), top 8086004 -320. [ImgUp.cz](https://imgup.cz/), top 9177087 -321. [Filmogs](https://www.filmo.gs/), top 0 +26. [Medium](https://medium.com/), top 81 +27. [Spotify](https://open.spotify.com/), top 87 +28. [Fandom](https://www.fandom.com/), top 88 +29. [SoundCloud](https://soundcloud.com/), top 97 +30. [GitHub](https://www.github.com/), top 98 +31. [Etsy](https://www.etsy.com/), top 105 +32. [Roblox](https://www.roblox.com/), top 109 +33. [Xvideos](https://xvideos.com/), top 120 +34. [TradingView](https://www.tradingview.com/), top 137 +35. [xHamster](https://xhamster.com), top 143 +36. [Zhihu](https://www.zhihu.com/), top 147 +37. [CNET](https://www.cnet.com/), top 148 +38. [Trello](https://trello.com/), top 151 +39. [SlideShare](https://slideshare.net/), top 152 +40. [ResearchGate](https://www.researchgate.net/), top 161 +41. [Vimeo](https://vimeo.com/), top 166 +42. [Pinterest](https://www.pinterest.com/), top 168 +43. [mercadolivre](https://www.mercadolivre.com.br), top 177 +44. [Steam](https://steamcommunity.com/), top 180 +45. [SteamGroup](https://steamcommunity.com/), top 180 +46. [Wix](https://wix.com/), top 191 +47. [Archive.org](https://archive.org), top 250 +48. [DailyMotion](https://www.dailymotion.com/), top 252 +49. [Telegram](https://t.me/), top 264 +50. [Slack](https://slack.com), top 270 +51. [Euw](https://euw.op.gg/), top 285 +52. [aminoapp](https://aminoapps.com/), top 286 +53. [Behance](https://www.behance.net/), top 294 +54. [Academia.edu](https://www.academia.edu/), top 298 +55. [Scribd](https://www.scribd.com/), top 302 +56. [Quora](https://www.quora.com/), top 307 +57. [GoodReads](https://www.goodreads.com/), top 323 +58. [Blogger](https://www.blogger.com/), top 332 +59. [Patreon](https://www.patreon.com/), top 338 +60. [Chess](https://www.chess.com/ru/), top 379 +61. [Fiverr](https://www.fiverr.com/), top 390 +62. [YouPorn](https://youporn.com), top 439 +63. [SourceForge](https://sourceforge.net/), top 442 +64. [TripAdvisor](https://tripadvisor.com/), top 444 +65. [LiveJournal](https://www.livejournal.com/), top 463 +66. [Unsplash](https://unsplash.com/), top 501 +67. [Duolingo](https://duolingo.com/), top 512 +68. [BuzzFeed](https://buzzfeed.com/), top 530 +69. [Crunchyroll](https://www.crunchyroll.com/), top 531 +70. [DeviantART](https://deviantart.com), top 539 +71. [Issuu](https://issuu.com/), top 572 +72. [Gamespot](https://www.gamespot.com/), top 605 +73. [WordPressOrg](https://wordpress.org/), top 623 +74. [Oracle Community](https://community.oracle.com), top 625 +75. [Wattpad](https://www.wattpad.com/), top 626 +76. [Scratch](https://scratch.mit.edu/), top 630 +77. [Ultimate-Guitar](https://ultimate-guitar.com/), top 646 +78. [Giphy](https://giphy.com/), top 658 +79. [note](https://note.com/), top 821 +80. [Redbubble](https://www.redbubble.com/), top 850 +81. [segmentfault](https://segmentfault.com/), top 921 +82. [MyAnimeList](https://myanimelist.net/), top 951 +83. [Tinder](https://tinder.com/), top 987 +84. [Disqus](https://disqus.com/), top 1020 +85. [Flickr](https://www.flickr.com/), top 1058 +86. [Bandcamp](https://www.bandcamp.com/), top 1068 +87. [pikabu](https://pikabu.ru/), top 1079 +88. [gfycat](https://gfycat.com/), top 1129 +89. [Discogs](https://www.discogs.com/), top 1155 +90. [PCGamer](https://pcgamer.com), top 1177 +91. [T-MobileSupport](https://support.t-mobile.com), top 1279 +92. [Houzz](https://houzz.com/), top 1327 +93. [Polygon](https://www.polygon.com/), top 1354 +94. [CloudflareCommunity](https://community.cloudflare.com/), top 1362 +95. [Instructables](https://www.instructables.com/), top 1363 +96. [Pastebin](https://pastebin.com/), top 1376 +97. [Dribbble](https://dribbble.com/), top 1377 +98. [drive2](https://www.drive2.ru/), top 1390 +99. [Career.habr](https://career.habr.com/), top 1401 +100. [Freelance.habr](https://freelance.habr.com/), top 1401 +101. [Toster](https://qna.habr.com/), top 1401 +102. [habr](https://habr.com/), top 1401 +103. [radio_echo_msk](https://echo.msk.ru/), top 1569 +104. [Freelancer.com](https://www.freelancer.com/), top 1605 +105. [windy](https://windy.com/), top 1681 +106. [Rajce.net](https://www.rajce.idnes.cz/), top 1692 +107. [Championat](https://www.championat.com/), top 1712 +108. [Otzovik](https://otzovik.com/), top 1724 +109. [BitBucket](https://bitbucket.org/), top 1731 +110. [jeuxvideo](http://www.jeuxvideo.com), top 1760 +111. [Badoo](https://badoo.com/), top 1807 +112. [Itch.io](https://itch.io/), top 1811 +113. [Lichess](https://lichess.org), top 1846 +114. [last.fm](https://last.fm/), top 1944 +115. [Flightradar24](https://www.flightradar24.com/), top 1979 +116. [Zomato](https://www.zomato.com/), top 2053 +117. [irecommend](https://irecommend.ru/), top 2085 +118. [Myspace](https://myspace.com/), top 2096 +119. [PCPartPicker](https://pcpartpicker.com), top 2107 +120. [Codecademy](https://www.codecademy.com/), top 2158 +121. [LeetCode](https://leetcode.com/), top 2218 +122. [metacritic](https://www.metacritic.com/), top 2244 +123. [SportsRU](https://www.sports.ru/), top 2360 +124. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2426 +125. [CreativeMarket](https://creativemarket.com/), top 2429 +126. [Virgool](https://virgool.io/), top 2462 +127. [4pda](https://4pda.ru/), top 2507 +128. [Kaggle](https://www.kaggle.com/), top 2591 +129. [MixCloud](https://www.mixcloud.com/), top 2599 +130. [Taringa](https://taringa.net/), top 2624 +131. [Kongregate](https://www.kongregate.com/), top 2754 +132. [HackerRank](https://hackerrank.com/), top 2799 +133. [AskFM](https://ask.fm/), top 3063 +134. [We Heart It](https://weheartit.com/), top 3190 +135. [Docker Hub](https://hub.docker.com/), top 3199 +136. [HubPages](https://hubpages.com/), top 3293 +137. [Wikidot](http://www.wikidot.com/), top 3339 +138. [500px](https://500px.com/), top 3408 +139. [Photobucket](https://photobucket.com/), top 3529 +140. [warriorforum](https://www.warriorforum.com/), top 3599 +141. [Cracked](https://www.cracked.com/), top 3602 +142. [Sporcle](https://www.sporcle.com/), top 3604 +143. [LiveLib](https://www.livelib.ru/), top 3658 +144. [GitLab](https://gitlab.com/), top 3725 +145. [Repl.it](https://repl.it/), top 3755 +146. [AllTrails](https://www.alltrails.com/), top 3766 +147. [Lolchess](https://lolchess.gg/), top 3792 +148. [Letterboxd](https://letterboxd.com/), top 3847 +149. [pr0gramm](https://pr0gramm.com/), top 3850 +150. [Gumroad](https://www.gumroad.com/), top 3894 +151. [osu!](https://osu.ppy.sh/), top 4319 +152. [fixya](https://www.fixya.com), top 4584 +153. [Venmo](https://venmo.com/), top 4798 +154. [VSCO](https://vsco.co/), top 4869 +155. [Pokemon Showdown](https://pokemonshowdown.com), top 5247 +156. [babyRU](https://www.baby.ru/), top 5285 +157. [dailykos](https://www.dailykos.com), top 5404 +158. [HackerNews](https://news.ycombinator.com/), top 5557 +159. [VirusTotal](https://www.virustotal.com/), top 5664 +160. [Rate Your Music](https://rateyourmusic.com/), top 5873 +161. [Stihi.ru](https://www.stihi.ru/), top 6104 +162. [Discuss.Elastic.co](https://discuss.elastic.co/), top 6291 +163. [NPM](https://www.npmjs.com/), top 6406 +164. [NPM-Package](https://www.npmjs.com/), top 6406 +165. [opensource](https://opensource.com/), top 6475 +166. [FortniteTracker](https://fortnitetracker.com/challenges), top 6493 +167. [Newgrounds](https://newgrounds.com), top 6501 +168. [Freesound](https://freesound.org/), top 6513 +169. [Memrise](https://www.memrise.com/), top 6524 +170. [Audiojungle](https://audiojungle.net/), top 6625 +171. [kwork](https://www.kwork.ru/), top 6639 +172. [Aptoide](https://en.aptoide.com/), top 6702 +173. [WikimapiaProfile](http://wikimapia.org), top 6781 +174. [WikimapiaSearch](http://wikimapia.org), top 6781 +175. [Gravatar](http://en.gravatar.com/), top 6806 +176. [Flipboard](https://flipboard.com/), top 7035 +177. [Pinkbike](https://www.pinkbike.com/), top 7054 +178. [interpals](https://www.interpals.net/), top 7134 +179. [BOOTH](https://booth.pm/), top 7183 +180. [SublimeForum](https://forum.sublimetext.com/), top 7193 +181. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7326 +182. [Trakt](https://www.trakt.tv/), top 7350 +183. [Gitee](https://gitee.com/), top 7499 +184. [Smule](https://www.smule.com/), top 7523 +185. [OpenStreetMap](https://www.openstreetmap.org/), top 7590 +186. [3dnews](http://forum.3dnews.ru/), top 7867 +187. [Star Citizen](https://robertsspaceindustries.com/), top 8103 +188. [Cloob](https://www.cloob.com/), top 8188 +189. [NICommunityForum](https://www.native-instruments.com/forum/), top 8331 +190. [DEV Community](https://dev.to/), top 8479 +191. [Proza.ru](https://www.proza.ru/), top 8533 +192. [spletnik](https://spletnik.ru/), top 8538 +193. [Kali community](https://forums.kali.org/), top 8738 +194. [ReverbNation](https://www.reverbnation.com/), top 8788 +195. [Typeracer](https://typeracer.com), top 8862 +196. [Facenama](https://facenama.com/), top 8874 +197. [IFTTT](https://www.ifttt.com/), top 9095 +198. [kofi](https://ko-fi.com), top 9254 +199. [Codechef](https://www.codechef.com/), top 9540 +200. [Launchpad](https://launchpad.net/), top 9957 +201. [ProductHunt](https://www.producthunt.com/), top 10216 +202. [nightbot](https://nightbot.tv/), top 10391 +203. [authorSTREAM](http://www.authorstream.com/), top 10535 +204. [geocaching](https://www.geocaching.com/), top 10798 +205. [akniga](https://akniga.org/profile/blue/), top 10838 +206. [Speedrun.com](https://speedrun.com/), top 11045 +207. [PSNProfiles.com](https://psnprofiles.com/), top 11304 +208. [Coderwall](https://coderwall.com/), top 11441 +209. [Teletype](https://teletype.in), top 11697 +210. [igromania](http://forum.igromania.ru/), top 12256 +211. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12396 +212. [forumhouseRU](https://www.forumhouse.ru/), top 12800 +213. [couchsurfing](https://www.couchsurfing.com/), top 13052 +214. [Contently](https://contently.com/), top 13058 +215. [ImageShack](https://imageshack.com/), top 13376 +216. [YouNow](https://www.younow.com/), top 14260 +217. [babyblogRU](https://www.babyblog.ru/), top 14450 +218. [Sbazar.cz](https://www.sbazar.cz/), top 14744 +219. [TrashboxRU](https://trashbox.ru/), top 16041 +220. [iMGSRC.RU](https://imgsrc.ru/), top 16447 +221. [sparkpeople](https://www.sparkpeople.com), top 16608 +222. [EyeEm](https://www.eyeem.com/), top 17451 +223. [Packagist](https://packagist.org/), top 18212 +224. [Samlib](http://samlib.ru/), top 18416 +225. [hackster](https://www.hackster.io), top 19544 +226. [WebNode](https://www.webnode.cz/), top 20176 +227. [HackerOne](https://hackerone.com/), top 20261 +228. [Jimdo](https://jimdosite.com/), top 20298 +229. [Codewars](https://www.codewars.com), top 20838 +230. [allmylinks](https://allmylinks.com/), top 22230 +231. [About.me](https://about.me/), top 22845 +232. [forum_guns](https://forum.guns.ru/), top 24969 +233. [Carbonmade](https://carbonmade.com/), top 25740 +234. [YouPic](https://youpic.com/), top 27139 +235. [GuruShots](https://gurushots.com/), top 27771 +236. [Tellonym.me](https://tellonym.me/), top 30171 +237. [uid](https://uid.me/), top 31094 +238. [easyen](https://easyen.ru/), top 31350 +239. [Ask Fedora](https://ask.fedoraproject.org/), top 32007 +240. [RubyGems](https://rubygems.org/), top 32855 +241. [PromoDJ](http://promodj.com/), top 33183 +242. [Ello](https://ello.co/), top 33636 +243. [Periscope](https://www.periscope.tv/), top 33849 +244. [Anobii](https://www.anobii.com/), top 35569 +245. [OpenCollective](https://opencollective.com/), top 35889 +246. [Realmeye](https://www.realmeye.com/), top 36042 +247. [Football](https://www.rusfootball.info/), top 36428 +248. [d3RU](https://d3.ru/), top 36571 +249. [Coroflot](https://coroflot.com/), top 37550 +250. [LOR](https://linux.org.ru/), top 42749 +251. [HackTheBox](https://forum.hackthebox.eu/), top 43396 +252. [7Cups](https://www.7cups.com/), top 45618 +253. [fl](https://www.fl.ru/), top 49103 +254. [Plug.DJ](https://plug.dj/), top 53090 +255. [NationStates Nation](https://nationstates.net), top 53840 +256. [NationStates Region](https://nationstates.net), top 53840 +257. [F3.cool](https://f3.cool/), top 59573 +258. [leasehackr](https://forum.leasehackr.com/), top 59892 +259. [opennet](https://www.opennet.ru/), top 61064 +260. [Bookcrossing](https://www.bookcrossing.com/), top 64272 +261. [Keybase](https://keybase.io/), top 65507 +262. [datingRU](http://dating.ru), top 67263 +263. [RoyalCams](https://royalcams.com), top 69249 +264. [travellerspoint](https://www.travellerspoint.com), top 71765 +265. [Clozemaster](https://www.clozemaster.com), top 76263 +266. [eGPU](https://egpu.io/), top 83025 +267. [Asciinema](https://asciinema.org), top 88879 +268. [Pling](https://www.pling.com/), top 92056 +269. [TamTam](https://tamtam.chat/), top 99606 +270. [devRant](https://devrant.com/), top 100968 +271. [Velomania](https://forum.velomania.ru/), top 102859 +272. [phpRU](https://php.ru/forum/), top 105977 +273. [Cent](https://cent.co/), top 125435 +274. [radioskot](https://radioskot.ru/), top 132190 +275. [GunsAndAmmo](https://gunsandammo.com/), top 133019 +276. [KanoWorld](https://world.kano.me/), top 137866 +277. [hunting](https://www.hunting.ru/forum/), top 152284 +278. [Steamid](https://steamid.uk/), top 153986 +279. [Lobsters](https://lobste.rs/), top 158132 +280. [BLIP.fm](https://blip.fm/), top 158697 +281. [notabug.org](https://notabug.org/), top 169661 +282. [moikrug](https://moikrug.ru/), top 176708 +283. [Crevado](https://crevado.com/), top 184593 +284. [Whonix Forum](https://forums.whonix.org/), top 197513 +285. [Smashcast](https://www.smashcast.tv/), top 236056 +286. [satsisRU](https://satsis.info/), top 245406 +287. [pvpru](https://pvpru.com/), top 249002 +288. [Hubski](https://hubski.com/), top 322408 +289. [eintracht](https://eintracht.de), top 343407 +290. [Avizo](https://www.avizo.cz/), top 354057 +291. [qiwi.me](https://qiwi.me), top 357971 +292. [Bazar.cz](https://www.bazar.cz/), top 363291 +293. [BitCoinForum](https://bitcoinforum.com), top 467689 +294. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 479841 +295. [social.tchncs.de](https://social.tchncs.de/), top 536933 +296. [Splits.io](https://splits.io), top 670719 +297. [ShitpostBot5000](https://www.shitpostbot.com/), top 675277 +298. [House-Mixes.com](https://www.house-mixes.com/), top 706730 +299. [soylentnews](https://soylentnews.org), top 737317 +300. [Gam1ng](https://gam1ng.com.br), top 802065 +301. [Alik.cz](https://www.alik.cz/), top 830235 +302. [Kik](http://kik.me/), top 844906 +303. [mastodon.technology](https://mastodon.xyz/), top 878254 +304. [mastodon.xyz](https://mastodon.xyz/), top 878254 +305. [tracr.co](https://tracr.co/), top 949722 +306. [Signal](https://community.signalusers.org), top 1191482 +307. [OurDJTalk](https://ourdjtalk.com/), top 1251479 +308. [mastodon.cloud](https://mastodon.cloud/), top 1507445 +309. [chaos.social](https://chaos.social/), top 1872232 +310. [mastodon.social](https://chaos.social/), top 1872232 +311. [mstdn.io](https://mstdn.io/), top 2343970 +312. [labpentestit](https://lab.pentestit.ru/), top 2855796 +313. [Chatujme.cz](https://chatujme.cz/), top 3459006 +314. [svidbook](https://www.svidbook.ru/), top 3833893 +315. [PokerStrategy](http://www.pokerstrategy.net), top 5577455 +316. [CashMe](https://cash.me/), top 6620639 +317. [2Dimensions](https://2Dimensions.com/), top 7380911 +318. [Designspiration](https://www.designspiration.net/), top 7477241 +319. [GDProfiles](https://gdprofiles.com/), top 10307308 +320. [Filmogs](https://www.filmo.gs/), top 0 +321. [ImgUp.cz](https://imgup.cz/), top 0 322. [nnRU](https://https://www.nn.ru/), top 0 -Alexa.com rank data fetched at (2020-07-18 21:19:45.500336 UTC) +Alexa.com rank data fetched at (2020-08-09 14:58:13.424073 UTC) From 54566252b4739c612baeaa6e2b29ccf2c35f9b81 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 29 Aug 2020 23:00:29 +0300 Subject: [PATCH 32/39] Clozemaster and 500px updated --- maigret/resources/data.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 362c0a09d..f9ab8cec1 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -32,14 +32,19 @@ "username_unclaimed": "noonewouldeverusethis7" }, "500px": { - "errorMsg": "Oops! This page doesn\u2019t exist.", + "errorMsg": "No message available", + "errors": { + "Something just went wrong": "Site error", + "INTERNAL_SERVER_ERROR": "Site error" + }, "errorType": "message", "rank": 3408, "tags": [ "images", "in" ], - "url": "https://500px.com/{}", + "url": "https://500px.com/p/{}", + "urlProbe": "https://api.500px.com/graphql?operationName=ProfileRendererQuery&variables=%7B%22username%22%3A%22{}%22%7D&extensions=%7B%22persistedQuery%22%3A%7B%22version%22%3A1%2C%22sha256Hash%22%3A%224d02ff5c13927a3ac73b3eef306490508bc765956940c31051468cf30402a503%22%7D%7D", "urlMain": "https://500px.com/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" @@ -508,7 +513,8 @@ "username_unclaimed": "noonewouldeverusethis" }, "Clozemaster": { - "errorType": "status_code", + "errorMsg": "Oh no! Player not found", + "errorType": "message", "rank": 76263, "tags": [ "us" From 0e52440bfda64d7aa491b930ab0cfaca6d379ffd Mon Sep 17 00:00:00 2001 From: soxoj <31013580+soxoj@users.noreply.github.com> Date: Sat, 29 Aug 2020 22:06:04 +0300 Subject: [PATCH 33/39] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 1b01c4cd9..43778ad4c 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,13 @@ This is a [sherlock](https://github.com/sherlock-project/) fork under heavy development. +## Main features + +* Profile pages [parsing and extracting](https://github.com/soxoj/socid_extractor) personal info, links to other profiles, etc. +* Recursive search by new usernames found +* Censorship and captcha detection +* Very few false positives + ## Installation **NOTE**: Python 3.6 or higher and pip is required. @@ -26,6 +33,9 @@ $ python3 -m pip install -r requirements.txt ## Demo with page parsing and recursive username search +[![asciicast](https://asciinema.org/a/348196.svg)](https://asciinema.org/a/348196) + +Listing: ```bash $ python3 maigret --ids --print-found --skip-errors alexaimephotographycars [*] Checking username alexaimephotographycars on: From 0eca9e88d8d675ceb01e9e0621a46cf4b6d05081 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 30 Aug 2020 12:29:44 +0300 Subject: [PATCH 34/39] Gam1ng check type fix --- maigret/resources/data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index f9ab8cec1..a5fad4c48 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -1003,7 +1003,7 @@ "username_unclaimed": "noonewouldeverusethis" }, "Gam1ng": { - "errorType": "status-code", + "errorType": "status_code", "rank": 802065, "tags": [ "br", From ec1b4d8b6184433c6347b44b3636cb10067bb6b8 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 30 Aug 2020 15:33:03 +0300 Subject: [PATCH 35/39] One star update: 10 sites added + alexa rating updated --- maigret/resources/data.json | 788 +++++++++++++++++++++--------------- sites.md | 641 +++++++++++++++-------------- 2 files changed, 797 insertions(+), 632 deletions(-) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index a5fad4c48..a17300a2e 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -1,7 +1,7 @@ { "2Dimensions": { "errorType": "status_code", - "rank": 7380911, + "rank": 7383017, "url": "https://2Dimensions.com/a/{}", "urlMain": "https://2Dimensions.com/", "username_claimed": "blue", @@ -10,7 +10,7 @@ "3dnews": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", "errorType": "message", - "rank": 7867, + "rank": 7764, "tags": [ "ru" ], @@ -22,7 +22,7 @@ "4pda": { "errorMsg": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.", "errorType": "message", - "rank": 2507, + "rank": 2441, "tags": [ "ru" ], @@ -33,25 +33,25 @@ }, "500px": { "errorMsg": "No message available", + "errorType": "message", "errors": { - "Something just went wrong": "Site error", - "INTERNAL_SERVER_ERROR": "Site error" + "INTERNAL_SERVER_ERROR": "Site error", + "Something just went wrong": "Site error" }, - "errorType": "message", - "rank": 3408, + "rank": 3382, "tags": [ "images", "in" ], "url": "https://500px.com/p/{}", - "urlProbe": "https://api.500px.com/graphql?operationName=ProfileRendererQuery&variables=%7B%22username%22%3A%22{}%22%7D&extensions=%7B%22persistedQuery%22%3A%7B%22version%22%3A1%2C%22sha256Hash%22%3A%224d02ff5c13927a3ac73b3eef306490508bc765956940c31051468cf30402a503%22%7D%7D", "urlMain": "https://500px.com/", + "urlProbe": "https://api.500px.com/graphql?operationName=ProfileRendererQuery&variables=%7B%22username%22%3A%22{}%22%7D&extensions=%7B%22persistedQuery%22%3A%7B%22version%22%3A1%2C%22sha256Hash%22%3A%224d02ff5c13927a3ac73b3eef306490508bc765956940c31051468cf30402a503%22%7D%7D", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, "7Cups": { "errorType": "status_code", - "rank": 45618, + "rank": 45056, "tags": [ "in" ], @@ -62,7 +62,7 @@ }, "About.me": { "errorType": "status_code", - "rank": 22845, + "rank": 21507, "tags": [ "in", "social" @@ -74,7 +74,7 @@ }, "Academia.edu": { "errorType": "status_code", - "rank": 298, + "rank": 305, "tags": [ "id" ], @@ -85,7 +85,7 @@ }, "Alik.cz": { "errorType": "status_code", - "rank": 830235, + "rank": 994668, "url": "https://www.alik.cz/u/{}", "urlMain": "https://www.alik.cz/", "username_claimed": "julian", @@ -94,7 +94,7 @@ "AllTrails": { "errorMsg": "User could not be found.", "errorType": "message", - "rank": 3766, + "rank": 3417, "tags": [ "us" ], @@ -105,7 +105,7 @@ }, "Anobii": { "errorType": "response_url", - "rank": 35569, + "rank": 33272, "tags": [ "books", "it" @@ -139,7 +139,7 @@ }, "Aptoide": { "errorType": "status_code", - "rank": 6702, + "rank": 6825, "tags": [ "in" ], @@ -151,7 +151,7 @@ "Archive.org": { "errorMsg": "cannot find account", "errorType": "message", - "rank": 250, + "rank": 254, "tags": [ "us" ], @@ -162,7 +162,7 @@ }, "Asciinema": { "errorType": "status_code", - "rank": 88879, + "rank": 97245, "tags": [ "us" ], @@ -173,9 +173,10 @@ }, "Ask Fedora": { "errorType": "status_code", - "rank": 32007, + "rank": 32194, "tags": [ - "in" + "in", + "us" ], "url": "https://ask.fedoraproject.org/u/{}", "urlMain": "https://ask.fedoraproject.org/", @@ -185,7 +186,7 @@ "AskFM": { "errorMsg": "Well, apparently not anymore.", "errorType": "message", - "rank": 3063, + "rank": 3165, "regexCheck": "^[a-zA-Z0-9_]{3,40}$", "tags": [ "ru" @@ -197,7 +198,8 @@ }, "Audiojungle": { "errorType": "status_code", - "rank": 6625, + "rank": 7398, + "regexCheck": "^[a-zA-Z0-9_]+$", "tags": [ "in", "us" @@ -210,7 +212,10 @@ "Avizo": { "errorType": "response_url", "errorUrl": "https://www.avizo.cz/", - "rank": 354057, + "rank": 278226, + "tags": [ + "cz" + ], "url": "https://www.avizo.cz/{}/", "urlMain": "https://www.avizo.cz/", "username_claimed": "blue", @@ -218,7 +223,8 @@ }, "BLIP.fm": { "errorType": "status_code", - "rank": 158697, + "rank": 154353, + "regexCheck": "^[a-zA-Z0-9_]{1,30}$", "tags": [ "in", "music" @@ -231,7 +237,7 @@ "BOOTH": { "errorType": "response_url", "errorUrl": "https://booth.pm/", - "rank": 7183, + "rank": 7090, "tags": [ "jp" ], @@ -242,7 +248,7 @@ }, "Badoo": { "errorType": "status_code", - "rank": 1807, + "rank": 1775, "tags": [ "br", "de", @@ -255,7 +261,7 @@ }, "Bandcamp": { "errorType": "status_code", - "rank": 1068, + "rank": 1062, "tags": [ "music", "us" @@ -268,7 +274,7 @@ "Bazar.cz": { "errorType": "response_url", "errorUrl": "https://www.bazar.cz/error404.aspx", - "rank": 363291, + "rank": 392156, "tags": [ "cz" ], @@ -282,7 +288,7 @@ "headers": { "User-Agent": "Curl" }, - "rank": 294, + "rank": 278, "tags": [ "business", "in" @@ -292,9 +298,24 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "BinarySearch": { + "errorMsg": "{}", + "errorType": "message", + "rank": 462827, + "regexCheck": "^[a-zA-Z0-9-_]{1,15}$", + "tags": [ + "in" + ], + "url": "https://binarysearch.io/@/{}", + "urlMain": "https://binarysearch.io/", + "urlProbe": "https://binarysearch.io/api/users/{}/profile", + "username_claimed": "Eyes_Wide_Shut", + "username_unclaimed": "hihowareyou101" + }, "BitBucket": { "errorType": "status_code", - "rank": 1731, + "rank": 1719, + "regexCheck": "^[a-zA-Z0-9-_]{1,30}$", "tags": [ "coding", "in" @@ -307,7 +328,7 @@ "BitCoinForum": { "errorMsg": "The user whose profile you are trying to view does not exist.", "errorType": "message", - "rank": 467689, + "rank": 555610, "tags": [ "in" ], @@ -318,7 +339,7 @@ }, "Blogger": { "errorType": "status_code", - "rank": 332, + "rank": 343, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "in" @@ -331,7 +352,7 @@ "BodyBuilding": { "errorType": "response_url", "errorUrl": "https://bodyspace.bodybuilding.com/", - "rank": 2426, + "rank": 2346, "tags": [ "us" ], @@ -354,7 +375,7 @@ }, "Bookcrossing": { "errorType": "status_code", - "rank": 64272, + "rank": 65247, "tags": [ "in" ], @@ -365,7 +386,7 @@ }, "BuyMeACoffee": { "errorType": "status_code", - "rank": 12396, + "rank": 12005, "tags": [ "in" ], @@ -377,7 +398,7 @@ }, "BuzzFeed": { "errorType": "status_code", - "rank": 530, + "rank": 474, "tags": [ "social", "us" @@ -401,7 +422,7 @@ "Carbonmade": { "errorType": "response_url", "errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com", - "rank": 25740, + "rank": 28082, "tags": [ "us" ], @@ -413,7 +434,7 @@ "Career.habr": { "errorMsg": "

\u041e\u0448\u0438\u0431\u043a\u0430 404

", "errorType": "message", - "rank": 1401, + "rank": 1459, "tags": [ "ru" ], @@ -427,7 +448,7 @@ "errors": { "Cash isn't available in your country yet.": "Access denied in your country, use proxy/vpn" }, - "rank": 6620639, + "rank": 0, "request_head_only": false, "url": "https://cash.me/${}", "urlMain": "https://cash.me/", @@ -437,7 +458,7 @@ "Cent": { "errorMsg": "Cent", "errorType": "message", - "rank": 125435, + "rank": 144206, "tags": [ "mx", "us" @@ -449,7 +470,7 @@ }, "Championat": { "errorType": "status_code", - "rank": 1712, + "rank": 1449, "tags": [ "ru" ], @@ -461,7 +482,7 @@ "Chatujme.cz": { "errorMsg": "Neexistujic\u00ed profil", "errorType": "message", - "rank": 3459006, + "rank": 3019547, "url": "https://profil.chatujme.cz/{}", "urlMain": "https://chatujme.cz/", "username_claimed": "david", @@ -481,7 +502,7 @@ "Chess": { "errorMsg": "Missing page... somebody made a wrong move.", "errorType": "message", - "rank": 379, + "rank": 363, "tags": [ "us" ], @@ -492,7 +513,7 @@ }, "Cloob": { "errorType": "status_code", - "rank": 8188, + "rank": 9163, "tags": [ "ir" ], @@ -503,7 +524,7 @@ }, "CloudflareCommunity": { "errorType": "status_code", - "rank": 1362, + "rank": 1626, "tags": [ "in" ], @@ -515,7 +536,7 @@ "Clozemaster": { "errorMsg": "Oh no! Player not found", "errorType": "message", - "rank": 76263, + "rank": 103354, "tags": [ "us" ], @@ -526,7 +547,7 @@ }, "Codecademy": { "errorType": "status_code", - "rank": 2158, + "rank": 2320, "tags": [ "education", "us" @@ -539,7 +560,7 @@ "Codechef": { "errorType": "response_url", "errorUrl": "https://www.codechef.com/", - "rank": 9540, + "rank": 9125, "tags": [ "in" ], @@ -551,7 +572,7 @@ "Coderwall": { "errorMsg": "404! Our feels when that url is used", "errorType": "message", - "rank": 11441, + "rank": 11529, "tags": [ "in" ], @@ -562,7 +583,7 @@ }, "Codewars": { "errorType": "status_code", - "rank": 20838, + "rank": 20095, "tags": [ "us" ], @@ -574,7 +595,7 @@ "Contently": { "errorMsg": "We can't find that page!", "errorType": "message", - "rank": 13058, + "rank": 13015, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "in" @@ -586,7 +607,7 @@ }, "Coroflot": { "errorType": "status_code", - "rank": 37550, + "rank": 36916, "tags": [ "us" ], @@ -598,7 +619,7 @@ "Cracked": { "errorType": "response_url", "errorUrl": "https://www.cracked.com/", - "rank": 3602, + "rank": 3555, "tags": [ "us" ], @@ -613,7 +634,7 @@ "errors": { "/cdn-cgi/scripts/hcaptcha.challenge.js": "Captcha detected" }, - "rank": 2429, + "rank": 2904, "request_head_only": false, "tags": [ "us" @@ -625,7 +646,7 @@ }, "Crevado": { "errorType": "status_code", - "rank": 184593, + "rank": 171333, "tags": [ "in", "us" @@ -637,7 +658,7 @@ }, "Crunchyroll": { "errorType": "status_code", - "rank": 531, + "rank": 448, "tags": [ "us" ], @@ -648,7 +669,7 @@ }, "DEV Community": { "errorType": "status_code", - "rank": 8479, + "rank": 7254, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "in" @@ -672,7 +693,7 @@ }, "Designspiration": { "errorType": "status_code", - "rank": 7477241, + "rank": 7450360, "url": "https://www.designspiration.net/{}/", "urlMain": "https://www.designspiration.net/", "username_claimed": "blue", @@ -680,7 +701,7 @@ }, "DeviantART": { "errorType": "status_code", - "rank": 539, + "rank": 485, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "request_head_only": false, "tags": [ @@ -695,7 +716,7 @@ }, "Discogs": { "errorType": "status_code", - "rank": 1155, + "rank": 1163, "tags": [ "us" ], @@ -706,7 +727,7 @@ }, "Discuss.Elastic.co": { "errorType": "status_code", - "rank": 6291, + "rank": 5977, "tags": [ "in", "tech", @@ -719,7 +740,7 @@ }, "Disqus": { "errorType": "status_code", - "rank": 1020, + "rank": 997, "tags": [ "discussion", "global", @@ -732,7 +753,7 @@ }, "Docker Hub": { "errorType": "status_code", - "rank": 3199, + "rank": 3563, "tags": [ "us" ], @@ -745,7 +766,7 @@ "Dribbble": { "errorMsg": "Whoops, that page is gone.", "errorType": "message", - "rank": 1377, + "rank": 1621, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "business", @@ -759,7 +780,7 @@ "Duolingo": { "errorMsg": "{\"users\":[]}", "errorType": "message", - "rank": 512, + "rank": 480, "tags": [ "us" ], @@ -772,7 +793,7 @@ "Ebay": { "errorMsg": "

", "errorType": "message", - "rank": 46, + "rank": 43, "tags": [ "shopping", "us" @@ -785,7 +806,7 @@ "Ello": { "errorMsg": "We couldn't find the page you're looking for", "errorType": "message", - "rank": 33636, + "rank": 31924, "tags": [ "in" ], @@ -796,7 +817,7 @@ }, "Etsy": { "errorType": "status_code", - "rank": 105, + "rank": 97, "tags": [ "shopping", "us" @@ -809,7 +830,7 @@ "Euw": { "errorMsg": "This summoner is not registered at OP.GG. Please check spelling.", "errorType": "message", - "rank": 285, + "rank": 270, "tags": [ "us" ], @@ -821,7 +842,7 @@ "EyeEm": { "errorType": "response_url", "errorUrl": "https://www.eyeem.com/", - "rank": 17451, + "rank": 16741, "tags": [ "sd" ], @@ -832,7 +853,7 @@ }, "F3.cool": { "errorType": "status_code", - "rank": 59573, + "rank": 63673, "tags": [ "ru" ], @@ -841,6 +862,17 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "F6S": { + "errorType": "status_code", + "rank": 9956, + "tags": [ + "in" + ], + "url": "https://www.f6s.com/{}", + "urlMain": "https://f6s.com/", + "username_claimed": "vidheeshnacode", + "username_unclaimed": "noonewouldeverusethis7" + }, "Facebook": { "errorType": "status_code", "rank": 8, @@ -857,7 +889,7 @@ "Facenama": { "errorType": "response_url", "errorUrl": "https://facenama.com/404.html", - "rank": 8874, + "rank": 9885, "tags": [ "ir" ], @@ -868,7 +900,7 @@ }, "Fandom": { "errorType": "status_code", - "rank": 88, + "rank": 90, "tags": [ "us" ], @@ -888,7 +920,7 @@ "Fiverr": { "errorType": "response_url", "errorUrl": "https://www.fiverr.com/", - "rank": 390, + "rank": 369, "tags": [ "shopping", "us" @@ -912,7 +944,7 @@ }, "Flightradar24": { "errorType": "status_code", - "rank": 1979, + "rank": 2086, "regexCheck": "^[a-zA-Z0-9_]{3,20}$", "tags": [ "de" @@ -924,7 +956,7 @@ }, "Flipboard": { "errorType": "status_code", - "rank": 7035, + "rank": 8006, "regexCheck": "^([a-zA-Z0-9_]){1,15}$", "tags": [ "in", @@ -938,7 +970,7 @@ "Football": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 36428, + "rank": 29171, "tags": [ "ru" ], @@ -949,7 +981,7 @@ }, "FortniteTracker": { "errorType": "status_code", - "rank": 6493, + "rank": 7467, "tags": [ "us" ], @@ -961,7 +993,7 @@ "Freelance.habr": { "errorMsg": "

", "errorType": "message", - "rank": 1401, + "rank": 1459, "tags": [ "ru" ], @@ -973,7 +1005,7 @@ "Freelancer.com": { "errorMsg": "\"users\":{}", "errorType": "message", - "rank": 1605, + "rank": 2023, "tags": [ "us" ], @@ -984,7 +1016,7 @@ }, "Freesound": { "errorType": "status_code", - "rank": 6513, + "rank": 6830, "tags": [ "music", "us" @@ -996,7 +1028,7 @@ }, "GDProfiles": { "errorType": "status_code", - "rank": 10307308, + "rank": 6739260, "url": "https://gdprofiles.com/{}", "urlMain": "https://gdprofiles.com/", "username_claimed": "blue", @@ -1004,7 +1036,7 @@ }, "Gam1ng": { "errorType": "status_code", - "rank": 802065, + "rank": 807474, "tags": [ "br", "webcam" @@ -1016,7 +1048,7 @@ }, "Gamespot": { "errorType": "status_code", - "rank": 605, + "rank": 637, "tags": [ "gaming", "us" @@ -1028,7 +1060,7 @@ }, "Giphy": { "errorType": "status_code", - "rank": 658, + "rank": 686, "tags": [ "social", "us" @@ -1040,7 +1072,7 @@ }, "GitHub": { "errorType": "status_code", - "rank": 98, + "rank": 102, "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", "tags": [ "coding", @@ -1054,7 +1086,7 @@ "GitLab": { "errorMsg": "[]", "errorType": "message", - "rank": 3725, + "rank": 3467, "tags": [ "coding", "in" @@ -1067,7 +1099,7 @@ }, "Gitee": { "errorType": "status_code", - "rank": 7499, + "rank": 7323, "tags": [ "cn" ], @@ -1103,7 +1135,7 @@ }, "Gravatar": { "errorType": "status_code", - "rank": 6806, + "rank": 8378, "tags": [ "images", "in" @@ -1116,7 +1148,7 @@ "Gumroad": { "errorMsg": "Page not found.", "errorType": "message", - "rank": 3894, + "rank": 3896, "tags": [ "us" ], @@ -1127,7 +1159,7 @@ }, "GunsAndAmmo": { "errorType": "status_code", - "rank": 133019, + "rank": 121032, "tags": [ "us" ], @@ -1138,7 +1170,7 @@ }, "GuruShots": { "errorType": "status_code", - "rank": 27771, + "rank": 25199, "tags": [ "us" ], @@ -1149,7 +1181,7 @@ }, "HackTheBox": { "errorType": "status_code", - "rank": 43396, + "rank": 42311, "tags": [ "us" ], @@ -1158,10 +1190,21 @@ "username_claimed": "angar", "username_unclaimed": "noonewouldeverusethis" }, + "Hackaday": { + "errorType": "status_code", + "rank": 37784, + "tags": [ + "us" + ], + "url": "https://hackaday.io/{}", + "urlMain": "https://hackaday.io/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis" + }, "HackerNews": { "errorMsg": "No such user", "errorType": "message", - "rank": 5557, + "rank": 5862, "tags": [ "us" ], @@ -1173,7 +1216,7 @@ "HackerOne": { "errorMsg": "Page not found", "errorType": "message", - "rank": 20261, + "rank": 18639, "tags": [ "hacker", "in" @@ -1186,7 +1229,7 @@ "HackerRank": { "errorMsg": "Something went wrong", "errorType": "message", - "rank": 2799, + "rank": 2705, "tags": [ "in" ], @@ -1198,7 +1241,7 @@ "House-Mixes.com": { "errorMsg": "Profile Not Found", "errorType": "message", - "rank": 706730, + "rank": 470463, "regexCheck": "^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$", "tags": [ "ir" @@ -1211,7 +1254,7 @@ "Houzz": { "errorMsg": "The page you requested was not found.", "errorType": "message", - "rank": 1327, + "rank": 1323, "request_head_only": false, "tags": [ "us" @@ -1223,7 +1266,7 @@ }, "HubPages": { "errorType": "status_code", - "rank": 3293, + "rank": 3277, "tags": [ "blog", "us" @@ -1236,7 +1279,7 @@ "Hubski": { "errorMsg": "No such user", "errorType": "message", - "rank": 322408, + "rank": 326081, "tags": [ "in" ], @@ -1248,7 +1291,7 @@ "IFTTT": { "errorMsg": "The requested page or file does not exist", "errorType": "message", - "rank": 9095, + "rank": 9683, "regexCheck": "^[A-Za-z0-9]{3,35}$", "tags": [ "misc", @@ -1262,7 +1305,7 @@ "ImageShack": { "errorType": "response_url", "errorUrl": "https://imageshack.com/", - "rank": 13376, + "rank": 12634, "tags": [ "images", "in" @@ -1274,7 +1317,7 @@ }, "ImgUp.cz": { "errorType": "status_code", - "rank": 0, + "rank": 4423341, "url": "https://imgup.cz/{}", "urlMain": "https://imgup.cz/", "username_claimed": "adam", @@ -1282,7 +1325,7 @@ }, "Instagram": { "errorType": "status_code", - "rank": 33, + "rank": 32, "request_head_only": false, "tags": [ "social", @@ -1296,7 +1339,7 @@ "Instructables": { "errorMsg": "404: We're sorry, things break sometimes", "errorType": "message", - "rank": 1363, + "rank": 1414, "tags": [ "hobby", "us" @@ -1308,7 +1351,7 @@ }, "Issuu": { "errorType": "status_code", - "rank": 572, + "rank": 538, "tags": [ "in" ], @@ -1319,7 +1362,7 @@ }, "Itch.io": { "errorType": "status_code", - "rank": 1811, + "rank": 1824, "tags": [ "us" ], @@ -1331,9 +1374,10 @@ "Jimdo": { "errorType": "status_code", "noPeriod": "True", - "rank": 20298, + "rank": 21823, "tags": [ - "in" + "in", + "jp" ], "url": "https://{}.jimdosite.com", "urlMain": "https://jimdosite.com/", @@ -1342,7 +1386,7 @@ }, "Kaggle": { "errorType": "status_code", - "rank": 2591, + "rank": 2662, "tags": [ "in" ], @@ -1354,7 +1398,7 @@ "Kali community": { "errorMsg": "This user has not registered and therefore does not have a profile to view.", "errorType": "message", - "rank": 8738, + "rank": 9459, "tags": [ "in" ], @@ -1365,7 +1409,7 @@ }, "KanoWorld": { "errorType": "status_code", - "rank": 137866, + "rank": 149633, "tags": [ "us" ], @@ -1380,7 +1424,7 @@ "bad list value" ], "errorType": "message", - "rank": 65507, + "rank": 69845, "tags": [ "business", "us" @@ -1394,7 +1438,7 @@ "Kik": { "errorMsg": "The page you requested was not found", "errorType": "message", - "rank": 844906, + "rank": 1056066, "url": "https://ws2.kik.com/user/{}", "urlMain": "http://kik.me/", "username_claimed": "blue", @@ -1403,7 +1447,7 @@ "Kongregate": { "errorMsg": "Sorry, no account with that name was found.", "errorType": "message", - "rank": 2754, + "rank": 2760, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "gaming", @@ -1416,7 +1460,7 @@ }, "LOR": { "errorType": "status_code", - "rank": 42749, + "rank": 41831, "tags": [ "ru" ], @@ -1427,7 +1471,7 @@ }, "Launchpad": { "errorType": "status_code", - "rank": 9957, + "rank": 10663, "tags": [ "us" ], @@ -1438,7 +1482,7 @@ }, "LeetCode": { "errorType": "status_code", - "rank": 2218, + "rank": 2151, "tags": [ "us" ], @@ -1450,7 +1494,7 @@ "Letterboxd": { "errorMsg": "Sorry, we can\u2019t find the page you\u2019ve requested.", "errorType": "message", - "rank": 3847, + "rank": 3843, "tags": [ "us" ], @@ -1462,7 +1506,7 @@ "Lichess": { "errorMsg": "Page not found!", "errorType": "message", - "rank": 1846, + "rank": 2037, "tags": [ "us" ], @@ -1473,7 +1517,7 @@ }, "LiveJournal": { "errorType": "status_code", - "rank": 463, + "rank": 452, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "blog", @@ -1486,7 +1530,7 @@ }, "LiveLib": { "errorType": "status_code", - "rank": 3658, + "rank": 3874, "tags": [ "reading", "ru" @@ -1499,7 +1543,7 @@ "Livejasmin": { "errorMsg": ":[]", "errorType": "message", - "rank": 35, + "rank": 34, "tags": [ "us", "webcam" @@ -1512,7 +1556,7 @@ }, "Lobsters": { "errorType": "status_code", - "rank": 158132, + "rank": 184124, "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", "tags": [ "in" @@ -1525,7 +1569,7 @@ "Lolchess": { "errorMsg": "No search results", "errorType": "message", - "rank": 3792, + "rank": 4440, "tags": [ "kr" ], @@ -1537,7 +1581,7 @@ "Medium": { "errorMsg": "We couldn\u2019t find this page.", "errorType": "message", - "rank": 81, + "rank": 98, "tags": [ "news", "us" @@ -1550,9 +1594,10 @@ "Memrise": { "errorType": "response_url", "errorUrl": "https://www.memrise.com/", - "rank": 6524, + "rank": 7318, "tags": [ - "jp" + "jp", + "us" ], "url": "https://www.memrise.com/user/{}/", "urlMain": "https://www.memrise.com/", @@ -1572,7 +1617,7 @@ }, "MixCloud": { "errorType": "status_code", - "rank": 2599, + "rank": 2710, "tags": [ "music", "us" @@ -1583,9 +1628,20 @@ "username_claimed": "jenny", "username_unclaimed": "noonewouldeverusethis7" }, + "Munzee": { + "errorType": "status_code", + "rank": 112784, + "tags": [ + "gb" + ], + "url": "https://www.munzee.com/m/{}", + "urlMain": "https://www.munzee.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "MyAnimeList": { "errorType": "status_code", - "rank": 951, + "rank": 967, "tags": [ "movies", "us" @@ -1595,9 +1651,20 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "MyMiniFactory": { + "errorType": "status_code", + "rank": 15754, + "tags": [ + "us" + ], + "url": "https://www.myminifactory.com/users/{}", + "urlMain": "https://www.myminifactory.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "Myspace": { "errorType": "status_code", - "rank": 2096, + "rank": 2034, "tags": [ "social", "us" @@ -1610,7 +1677,7 @@ "NICommunityForum": { "errorMsg": "The specified member cannot be found", "errorType": "message", - "rank": 8331, + "rank": 8509, "tags": [ "us" ], @@ -1621,7 +1688,7 @@ }, "NPM": { "errorType": "status_code", - "rank": 6406, + "rank": 6763, "tags": [ "in" ], @@ -1632,7 +1699,7 @@ }, "NPM-Package": { "errorType": "status_code", - "rank": 6406, + "rank": 6763, "tags": [ "in" ], @@ -1644,7 +1711,7 @@ "NameMC (Minecraft.net skins)": { "errorMsg": "Profiles: 0 results", "errorType": "message", - "rank": 7326, + "rank": 7879, "tags": [ "us" ], @@ -1656,7 +1723,7 @@ "NationStates Nation": { "errorMsg": "Was this your nation? It may have ceased to exist due to inactivity, but can rise again!", "errorType": "message", - "rank": 53840, + "rank": 50449, "tags": [ "us" ], @@ -1668,7 +1735,7 @@ "NationStates Region": { "errorMsg": "does not exist.", "errorType": "message", - "rank": 53840, + "rank": 50449, "tags": [ "us" ], @@ -1677,9 +1744,20 @@ "username_claimed": "the_west_pacific", "username_unclaimed": "noonewould" }, + "Naver": { + "errorType": "status_code", + "rank": 49, + "tags": [ + "kr" + ], + "url": "https://blog.naver.com/{}", + "urlMain": "https://naver.com", + "username_claimed": "blue", + "username_unclaimed": "noonewould" + }, "Newgrounds": { "errorType": "status_code", - "rank": 6501, + "rank": 6634, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "us" @@ -1691,7 +1769,7 @@ }, "OK": { "errorType": "status_code", - "rank": 60, + "rank": 61, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$", "tags": [ "ru" @@ -1704,7 +1782,7 @@ "OpenCollective": { "errorMsg": "Not found", "errorType": "message", - "rank": 35889, + "rank": 35386, "tags": [ "in" ], @@ -1715,7 +1793,7 @@ }, "OpenStreetMap": { "errorType": "status_code", - "rank": 7590, + "rank": 7551, "tags": [ "in", "social" @@ -1727,7 +1805,7 @@ }, "Oracle Community": { "errorType": "status_code", - "rank": 625, + "rank": 583, "tags": [ "us" ], @@ -1738,7 +1816,7 @@ }, "Otzovik": { "errorType": "status_code", - "rank": 1724, + "rank": 1696, "tags": [ "ru" ], @@ -1750,7 +1828,7 @@ "OurDJTalk": { "errorMsg": "The specified member cannot be found", "errorType": "message", - "rank": 1251479, + "rank": 1356121, "url": "https://ourdjtalk.com/members?username={}", "urlMain": "https://ourdjtalk.com/", "username_claimed": "steve", @@ -1759,7 +1837,7 @@ "PCGamer": { "errorMsg": "The specified member cannot be found. Please enter a member's entire name.", "errorType": "message", - "rank": 1177, + "rank": 1215, "tags": [ "us" ], @@ -1770,7 +1848,7 @@ }, "PCPartPicker": { "errorType": "status_code", - "rank": 2107, + "rank": 2139, "tags": [ "us" ], @@ -1782,7 +1860,7 @@ "PSNProfiles.com": { "errorType": "response_url", "errorUrl": "https://psnprofiles.com/?psnId={}", - "rank": 11304, + "rank": 11913, "tags": [ "us" ], @@ -1794,9 +1872,10 @@ "Packagist": { "errorType": "response_url", "errorUrl": "https://packagist.org/search/?q={}&reason=vendor_not_found", - "rank": 18212, + "rank": 14574, "tags": [ - "in" + "in", + "jp" ], "url": "https://packagist.org/packages/{}/", "urlMain": "https://packagist.org/", @@ -1806,7 +1885,7 @@ "Pastebin": { "errorType": "response_url", "errorUrl": "https://pastebin.com/index", - "rank": 1376, + "rank": 1511, "tags": [ "sharing", "us" @@ -1818,7 +1897,7 @@ }, "Patreon": { "errorType": "status_code", - "rank": 338, + "rank": 327, "tags": [ "finance", "us" @@ -1830,7 +1909,7 @@ }, "Periscope": { "errorType": "status_code", - "rank": 33849, + "rank": 35818, "tags": [ "us", "video" @@ -1842,7 +1921,7 @@ }, "Photobucket": { "errorType": "status_code", - "rank": 3529, + "rank": 3493, "tags": [ "images", "us" @@ -1854,7 +1933,7 @@ }, "Pinkbike": { "errorType": "status_code", - "rank": 7054, + "rank": 7014, "tags": [ "hobby", "us" @@ -1866,7 +1945,7 @@ }, "Pinterest": { "errorType": "status_code", - "rank": 168, + "rank": 170, "tags": [ "social", "us" @@ -1890,7 +1969,7 @@ "Pling": { "errorType": "response_url", "errorUrl": "https://www.pling.com/", - "rank": 92056, + "rank": 84073, "tags": [ "in" ], @@ -1901,10 +1980,11 @@ }, "Plug.DJ": { "errorType": "status_code", - "rank": 53090, + "rank": 54408, "tags": [ "fr", - "gb" + "gb", + "us" ], "url": "https://plug.dj/@/{}", "urlMain": "https://plug.dj/", @@ -1913,7 +1993,7 @@ }, "Pokemon Showdown": { "errorType": "status_code", - "rank": 5247, + "rank": 5446, "tags": [ "us" ], @@ -1924,7 +2004,7 @@ }, "PokerStrategy": { "errorType": "status_code", - "rank": 5577455, + "rank": 8114272, "url": "http://www.pokerstrategy.net/user/{}/profile/", "urlMain": "http://www.pokerstrategy.net", "username_claimed": "blue", @@ -1932,7 +2012,7 @@ }, "Polygon": { "errorType": "status_code", - "rank": 1354, + "rank": 1446, "tags": [ "us" ], @@ -1956,7 +2036,7 @@ "ProductHunt": { "errorMsg": "Product Hunt is a curation of the best new products", "errorType": "message", - "rank": 10216, + "rank": 10118, "tags": [ "tech", "us" @@ -1968,7 +2048,7 @@ }, "PromoDJ": { "errorType": "status_code", - "rank": 33183, + "rank": 33958, "tags": [ "ru" ], @@ -1980,7 +2060,7 @@ "Proza.ru": { "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 8533, + "rank": 9217, "tags": [ "ru", "writing" @@ -1993,7 +2073,7 @@ "Quora": { "errorType": "response_url", "errorUrl": "https://www.quora.com/profile/{}", - "rank": 307, + "rank": 339, "tags": [ "in" ], @@ -2004,7 +2084,7 @@ }, "Rajce.net": { "errorType": "status_code", - "rank": 1692, + "rank": 1608, "tags": [ "cz" ], @@ -2015,7 +2095,7 @@ }, "Rate Your Music": { "errorType": "status_code", - "rank": 5873, + "rank": 5907, "tags": [ "us" ], @@ -2027,7 +2107,7 @@ "Realmeye": { "errorMsg": "Sorry, but we either:", "errorType": "message", - "rank": 36042, + "rank": 44925, "tags": [ "us" ], @@ -2038,7 +2118,7 @@ }, "Redbubble": { "errorType": "status_code", - "rank": 850, + "rank": 821, "tags": [ "us" ], @@ -2049,7 +2129,7 @@ }, "Reddit": { "errorType": "status_code", - "rank": 19, + "rank": 18, "tags": [ "news", "us" @@ -2062,7 +2142,7 @@ "Repl.it": { "errorMsg": "404", "errorType": "message", - "rank": 3755, + "rank": 3999, "tags": [ "coding", "us" @@ -2075,7 +2155,7 @@ "ResearchGate": { "errorType": "response_url", "errorUrl": "https://www.researchgate.net/directory/profiles", - "rank": 161, + "rank": 160, "regexCheck": "\\w+_\\w+", "tags": [ "in" @@ -2088,7 +2168,7 @@ "ReverbNation": { "errorMsg": "Sorry, we couldn't find that page", "errorType": "message", - "rank": 8788, + "rank": 8405, "tags": [ "us" ], @@ -2100,7 +2180,7 @@ "Roblox": { "errorMsg": "Page cannot be found or no longer exists", "errorType": "message", - "rank": 109, + "rank": 110, "tags": [ "us" ], @@ -2111,7 +2191,7 @@ }, "RoyalCams": { "errorType": "status_code", - "rank": 69249, + "rank": 70620, "tags": [ "ru", "us", @@ -2124,7 +2204,7 @@ }, "RubyGems": { "errorType": "status_code", - "rank": 32855, + "rank": 34845, "tags": [ "us" ], @@ -2136,7 +2216,7 @@ "Samlib": { "caseSentitive": true, "errorType": "status_code", - "rank": 18416, + "rank": 17781, "tags": [ "ru", "writing" @@ -2148,7 +2228,7 @@ }, "Sbazar.cz": { "errorType": "status_code", - "rank": 14744, + "rank": 14817, "tags": [ "cz" ], @@ -2159,7 +2239,7 @@ }, "Scratch": { "errorType": "status_code", - "rank": 630, + "rank": 676, "tags": [ "coding", "us" @@ -2172,7 +2252,7 @@ "Scribd": { "errorMsg": "Page not found", "errorType": "message", - "rank": 302, + "rank": 306, "tags": [ "coding", "us" @@ -2184,7 +2264,7 @@ }, "ShitpostBot5000": { "errorType": "status_code", - "rank": 675277, + "rank": 765789, "tags": [ "us" ], @@ -2196,7 +2276,7 @@ "Signal": { "errorMsg": "Oops! That page doesn\u2019t exist or is private.", "errorType": "message", - "rank": 1191482, + "rank": 1526361, "url": "https://community.signalusers.org/u/{}", "urlMain": "https://community.signalusers.org", "username_claimed": "jlund", @@ -2204,7 +2284,7 @@ }, "Slack": { "errorType": "status_code", - "rank": 270, + "rank": 308, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "us" @@ -2214,9 +2294,24 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Slashdot": { + "errorMsg": "user you requested does not exist", + "errorType": "message", + "errors": { + "503 - Service Offline": "Site error" + }, + "rank": 11734, + "tags": [ + "in" + ], + "url": "https://slashdot.org/~{}", + "urlMain": "https://slashdot.org", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "SlideShare": { "errorType": "status_code", - "rank": 152, + "rank": 156, "tags": [ "in", "presos" @@ -2228,8 +2323,9 @@ }, "Smashcast": { "errorType": "status_code", - "rank": 236056, + "rank": 235099, "tags": [ + "gr", "us" ], "url": "https://www.smashcast.tv/api/media/live/{}", @@ -2239,7 +2335,7 @@ }, "Smule": { "errorType": "status_code", - "rank": 7523, + "rank": 8112, "tags": [ "in", "music" @@ -2251,7 +2347,7 @@ }, "SoundCloud": { "errorType": "status_code", - "rank": 97, + "rank": 95, "tags": [ "music", "us" @@ -2263,7 +2359,7 @@ }, "SourceForge": { "errorType": "status_code", - "rank": 442, + "rank": 456, "tags": [ "coding", "us" @@ -2276,7 +2372,7 @@ "Speedrun.com": { "errorMsg": "not found.", "errorType": "message", - "rank": 11045, + "rank": 11222, "tags": [ "us" ], @@ -2287,7 +2383,7 @@ }, "Splits.io": { "errorType": "status_code", - "rank": 670719, + "rank": 771455, "url": "https://splits.io/users/{}", "urlMain": "https://splits.io", "username_claimed": "cambosteve", @@ -2295,7 +2391,7 @@ }, "Sporcle": { "errorType": "status_code", - "rank": 3604, + "rank": 3881, "tags": [ "gaming", "us" @@ -2307,7 +2403,7 @@ }, "SportsRU": { "errorType": "status_code", - "rank": 2360, + "rank": 2182, "tags": [ "ru" ], @@ -2334,8 +2430,9 @@ }, "Star Citizen": { "errorType": "status_code", - "rank": 8103, + "rank": 10302, "tags": [ + "de", "us" ], "url": "https://robertsspaceindustries.com/citizens/{}", @@ -2346,7 +2443,7 @@ "Steam": { "errorMsg": "The specified profile could not be found", "errorType": "message", - "rank": 180, + "rank": 176, "tags": [ "gaming", "us" @@ -2359,7 +2456,7 @@ "SteamGroup": { "errorMsg": "No group could be retrieved for the given URL", "errorType": "message", - "rank": 180, + "rank": 176, "tags": [ "us" ], @@ -2371,7 +2468,7 @@ "Steamid": { "errorMsg": "
Profile not found
", "errorType": "message", - "rank": 153986, + "rank": 180541, "tags": [ "ru", "us" @@ -2384,7 +2481,7 @@ "Stihi.ru": { "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 6104, + "rank": 6137, "tags": [ "ru", "writing" @@ -2394,9 +2491,21 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Strava": { + "errorMsg": "Strava | Run and Cycling Tracking on the Social Network for Athletes", + "errorType": "message", + "rank": 837, + "tags": [ + "us" + ], + "url": "https://www.strava.com/athletes/{}", + "urlMain": "https://www.strava.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "SublimeForum": { "errorType": "status_code", - "rank": 7193, + "rank": 7069, "tags": [ "in" ], @@ -2407,7 +2516,7 @@ }, "T-MobileSupport": { "errorType": "status_code", - "rank": 1279, + "rank": 1188, "tags": [ "us" ], @@ -2419,7 +2528,7 @@ "TamTam": { "errorType": "response_url", "errorUrl": "https://tamtam.chat/", - "rank": 99606, + "rank": 101559, "tags": [ "ru" ], @@ -2430,7 +2539,7 @@ }, "Taringa": { "errorType": "status_code", - "rank": 2624, + "rank": 2851, "tags": [ "ar", "social" @@ -2443,10 +2552,11 @@ "Telegram": { "errorMsg": "twitter:title\" content=\"Telegram: Contact", "errorType": "message", - "rank": 264, + "rank": 240, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_]{4,}$", "tags": [ "br", + "in", "social" ], "url": "https://t.me/{}", @@ -2456,7 +2566,7 @@ }, "Teletype": { "errorType": "status_code", - "rank": 11697, + "rank": 11356, "tags": [ "in", "writing" @@ -2468,8 +2578,9 @@ }, "Tellonym.me": { "errorType": "status_code", - "rank": 30171, + "rank": 27984, "tags": [ + "de", "fr", "sa" ], @@ -2481,7 +2592,7 @@ "Tinder": { "errorMsg": "twitter:title\" content=\"Tinder |", "errorType": "message", - "rank": 987, + "rank": 941, "tags": [ "dating", "us" @@ -2493,7 +2604,7 @@ }, "Toster": { "errorType": "status_code", - "rank": 1401, + "rank": 1459, "tags": [ "ru" ], @@ -2505,7 +2616,7 @@ "TrackmaniaLadder": { "errorMsg": "player unknown or invalid", "errorType": "message", - "rank": 479841, + "rank": 386861, "tags": [ "au" ], @@ -2516,7 +2627,7 @@ }, "TradingView": { "errorType": "status_code", - "rank": 137, + "rank": 131, "tags": [ "us" ], @@ -2527,7 +2638,7 @@ }, "Trakt": { "errorType": "status_code", - "rank": 7350, + "rank": 7441, "tags": [ "fr" ], @@ -2539,7 +2650,7 @@ "TrashboxRU": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 16041, + "rank": 15720, "regexCheck": "^[A-Za-z0-9_-]{3,16}$", "tags": [ "ru" @@ -2552,7 +2663,7 @@ "Trello": { "errorMsg": "model not found", "errorType": "message", - "rank": 151, + "rank": 154, "tags": [ "us" ], @@ -2565,7 +2676,7 @@ "TripAdvisor": { "errorMsg": "This page is on vacation\u2026", "errorType": "message", - "rank": 444, + "rank": 404, "tags": [ "travel", "us" @@ -2575,9 +2686,20 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "TryHackMe": { + "errorType": "status_code", + "rank": 63954, + "tags": [ + "us" + ], + "url": "https://tryhackme.com/p/{}", + "urlMain": "https://tryhackme.com/", + "username_claimed": "ashu", + "username_unclaimed": "noonewouldeverusethis7" + }, "Twitch": { "errorType": "status_code", - "rank": 30, + "rank": 28, "tags": [ "us" ], @@ -2593,7 +2715,7 @@ "headers": { "User-Agent": "Mozilla" }, - "rank": 63, + "rank": 60, "request_head_only": false, "tags": [ "global", @@ -2609,7 +2731,7 @@ "Typeracer": { "errorMsg": "Profile Not Found", "errorType": "message", - "rank": 8862, + "rank": 7650, "tags": [ "us" ], @@ -2620,7 +2742,7 @@ }, "Ultimate-Guitar": { "errorType": "status_code", - "rank": 646, + "rank": 663, "tags": [ "us" ], @@ -2631,7 +2753,7 @@ }, "Unsplash": { "errorType": "status_code", - "rank": 501, + "rank": 528, "tags": [ "us" ], @@ -2643,7 +2765,7 @@ "VK": { "errorType": "response_url", "errorUrl": "https://www.quora.com/profile/{}", - "rank": 24, + "rank": 25, "tags": [ "ru", "social" @@ -2655,7 +2777,7 @@ }, "VSCO": { "errorType": "status_code", - "rank": 4869, + "rank": 4901, "tags": [ "us" ], @@ -2667,7 +2789,7 @@ "Velomania": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", "errorType": "message", - "rank": 102859, + "rank": 109380, "tags": [ "ru" ], @@ -2678,7 +2800,7 @@ }, "Venmo": { "errorType": "status_code", - "rank": 4798, + "rank": 4649, "tags": [ "finance", "us" @@ -2690,7 +2812,7 @@ }, "Vimeo": { "errorType": "status_code", - "rank": 166, + "rank": 161, "request_head_only": false, "tags": [ "us", @@ -2704,7 +2826,7 @@ "Virgool": { "errorMsg": "\u06f4\u06f0\u06f4", "errorType": "message", - "rank": 2462, + "rank": 2469, "tags": [ "ir" ], @@ -2716,7 +2838,7 @@ "VirusTotal": { "errorMsg": "not found", "errorType": "message", - "rank": 5664, + "rank": 5963, "tags": [ "in" ], @@ -2728,7 +2850,7 @@ "Wattpad": { "errorMsg": "userError-404", "errorType": "message", - "rank": 626, + "rank": 656, "tags": [ "in", "social" @@ -2752,7 +2874,7 @@ }, "WebNode": { "errorType": "status_code", - "rank": 20176, + "rank": 20772, "tags": [ "cz" ], @@ -2763,9 +2885,10 @@ }, "Whonix Forum": { "errorType": "status_code", - "rank": 197513, + "rank": 219087, "tags": [ - "id" + "id", + "us" ], "url": "https://forums.whonix.org/u/{}", "urlMain": "https://forums.whonix.org/", @@ -2775,7 +2898,7 @@ "Wikidot": { "errorMsg": "User does not exist.", "errorType": "message", - "rank": 3339, + "rank": 3471, "tags": [ "us" ], @@ -2787,7 +2910,7 @@ "WikimapiaProfile": { "errorMsg": "January 01, 1970", "errorType": "message", - "rank": 6781, + "rank": 6528, "request_head_only": false, "tags": [ "ru" @@ -2802,7 +2925,7 @@ "caseSentitive": true, "errorMsg": "20", "errorType": "message", - "rank": 6781, + "rank": 6528, "request_head_only": false, "tags": [ "ru" @@ -2815,7 +2938,7 @@ "Wikipedia": { "errorMsg": "is not registered", "errorType": "message", - "rank": 14, + "rank": 13, "tags": [ "", "us" @@ -2827,7 +2950,7 @@ }, "Wix": { "errorType": "status_code", - "rank": 191, + "rank": 181, "tags": [ "us" ], @@ -2839,7 +2962,7 @@ "WordPress": { "errorType": "response_url", "errorUrl": "wordpress.com/typo/?subdomain=", - "rank": 57, + "rank": 56, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "blog", @@ -2853,7 +2976,7 @@ "WordPressOrg": { "errorType": "response_url", "errorUrl": "https://wordpress.org", - "rank": 623, + "rank": 572, "tags": [ "in" ], @@ -2864,7 +2987,7 @@ }, "Xvideos": { "errorType": "status_code", - "rank": 120, + "rank": 119, "tags": [ "porno", "us" @@ -2876,7 +2999,7 @@ }, "Yandex": { "errorType": "status_code", - "rank": 55, + "rank": 52, "tags": [ "global", "ru" @@ -2892,7 +3015,7 @@ "errors": { "action=\"/checkcaptcha\" onsubmit": "Captcha detected, use proxy/vpn" }, - "rank": 55, + "rank": 52, "request_head_only": false, "tags": [ "global", @@ -2905,7 +3028,7 @@ }, "YandexLocal": { "errorType": "status_code", - "rank": 55, + "rank": 52, "tags": [ "global", "ru" @@ -2921,7 +3044,7 @@ "headers": { "Referer": "https://music.yandex.ru/users/test/playlists" }, - "rank": 55, + "rank": 52, "request_head_only": false, "tags": [ "global", @@ -2936,7 +3059,7 @@ }, "YandexZnatoki": { "errorType": "status_code", - "rank": 55, + "rank": 52, "tags": [ "global", "ru" @@ -2950,7 +3073,7 @@ "YouNow": { "errorMsg": "No users found", "errorType": "message", - "rank": 14260, + "rank": 14433, "tags": [ "be" ], @@ -2962,7 +3085,7 @@ }, "YouPic": { "errorType": "status_code", - "rank": 27139, + "rank": 34391, "tags": [ "in", "sd" @@ -2974,7 +3097,7 @@ }, "YouPorn": { "errorType": "status_code", - "rank": 439, + "rank": 434, "tags": [ "porno", "us" @@ -3000,7 +3123,7 @@ "Zhihu": { "errorType": "response_url", "errorUrl": "https://www.zhihu.com/people/{}", - "rank": 147, + "rank": 152, "tags": [ "cn" ], @@ -3014,7 +3137,7 @@ "headers": { "Accept-Language": "en-US,en;q=0.9" }, - "rank": 2053, + "rank": 1811, "tags": [ "food", "in" @@ -3026,7 +3149,7 @@ }, "akniga": { "errorType": "status_code", - "rank": 10838, + "rank": 10988, "tags": [ "ru" ], @@ -3038,7 +3161,7 @@ "allmylinks": { "errorMsg": "Page not found", "errorType": "message", - "rank": 22230, + "rank": 20710, "tags": [ "us" ], @@ -3049,9 +3172,10 @@ }, "aminoapp": { "errorType": "status_code", - "rank": 286, + "rank": 2024, "tags": [ - "br" + "br", + "us" ], "url": "https://aminoapps.com/u/{}", "urlMain": "https://aminoapps.com/", @@ -3060,7 +3184,7 @@ }, "authorSTREAM": { "errorType": "status_code", - "rank": 10535, + "rank": 12727, "tags": [ "in", "presos" @@ -3073,7 +3197,7 @@ "babyRU": { "errorMsg": "\u0423\u043f\u0441, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0438\u0441\u043a\u0430\u043b\u0438, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442", "errorType": "message", - "rank": 5285, + "rank": 4709, "tags": [ "ru" ], @@ -3085,7 +3209,7 @@ "babyblogRU": { "errorType": "response_url", "errorUrl": "https://www.babyblog.ru/", - "rank": 14450, + "rank": 14024, "request_head_only": false, "tags": [ "ru" @@ -3097,7 +3221,7 @@ }, "chaos.social": { "errorType": "status_code", - "rank": 1872232, + "rank": 1957965, "url": "https://chaos.social/@{}", "urlMain": "https://chaos.social/", "username_claimed": "rixx", @@ -3105,7 +3229,7 @@ }, "couchsurfing": { "errorType": "status_code", - "rank": 13052, + "rank": 13434, "tags": [ "in" ], @@ -3116,7 +3240,7 @@ }, "d3RU": { "errorType": "status_code", - "rank": 36571, + "rank": 37272, "tags": [ "ru" ], @@ -3127,7 +3251,7 @@ }, "dailykos": { "errorType": "status_code", - "rank": 5404, + "rank": 5233, "tags": [ "us" ], @@ -3138,7 +3262,7 @@ }, "datingRU": { "errorType": "status_code", - "rank": 67263, + "rank": 64468, "tags": [ "ru" ], @@ -3150,7 +3274,7 @@ "devRant": { "errorType": "response_url", "errorUrl": "https://devrant.com/", - "rank": 100968, + "rank": 105382, "tags": [ "in", "social" @@ -3162,7 +3286,7 @@ }, "drive2": { "errorType": "status_code", - "rank": 1390, + "rank": 1333, "tags": [ "ru" ], @@ -3173,9 +3297,10 @@ }, "eGPU": { "errorType": "status_code", - "rank": 83025, + "rank": 95870, "tags": [ - "jp" + "jp", + "us" ], "url": "https://egpu.io/forums/profile/{}/", "urlMain": "https://egpu.io/", @@ -3185,7 +3310,7 @@ "easyen": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 31350, + "rank": 32379, "tags": [ "ru" ], @@ -3196,7 +3321,7 @@ }, "eintracht": { "errorType": "status_code", - "rank": 343407, + "rank": 412499, "url": "https://community.eintracht.de/fans/{}", "urlMain": "https://eintracht.de", "username_claimed": "blue", @@ -3204,7 +3329,7 @@ }, "fixya": { "errorType": "status_code", - "rank": 4584, + "rank": 4286, "tags": [ "us" ], @@ -3215,7 +3340,7 @@ }, "fl": { "errorType": "status_code", - "rank": 49103, + "rank": 48605, "tags": [ "ru" ], @@ -3227,7 +3352,7 @@ "forum_guns": { "errorMsg": "action=https://forum.guns.ru/forummisc/blog/search", "errorType": "message", - "rank": 24969, + "rank": 24804, "tags": [ "ru" ], @@ -3239,7 +3364,7 @@ "forumhouseRU": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", - "rank": 12800, + "rank": 13374, "tags": [ "ru" ], @@ -3250,7 +3375,7 @@ }, "geocaching": { "errorType": "status_code", - "rank": 10798, + "rank": 10778, "tags": [ "de", "social" @@ -3260,9 +3385,21 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "getmyuni": { + "errorMsg": "Error 404", + "errorType": "message", + "rank": 11493, + "tags": [ + "in" + ], + "url": "https://www.getmyuni.com/user/{}", + "urlMain": "https://getmyuni.com/", + "username_claimed": "Subeesh.S30b0", + "username_unclaimed": "noonewouldeverusethis7" + }, "gfycat": { "errorType": "status_code", - "rank": 1129, + "rank": 1206, "tags": [ "us" ], @@ -3273,7 +3410,7 @@ }, "habr": { "errorType": "status_code", - "rank": 1401, + "rank": 1459, "tags": [ "ru" ], @@ -3284,7 +3421,7 @@ }, "hackster": { "errorType": "status_code", - "rank": 19544, + "rank": 18904, "tags": [ "us" ], @@ -3296,7 +3433,7 @@ "hunting": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", - "rank": 152284, + "rank": 134143, "tags": [ "ru" ], @@ -3308,7 +3445,7 @@ "iMGSRC.RU": { "errorType": "response_url", "errorUrl": "https://imgsrc.ru/", - "rank": 16447, + "rank": 17299, "tags": [ "es", "ru" @@ -3321,7 +3458,7 @@ "igromania": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", "errorType": "message", - "rank": 12256, + "rank": 12441, "tags": [ "gaming", "ru" @@ -3334,7 +3471,7 @@ "interpals": { "errorMsg": "The requested user does not exist or is inactive", "errorType": "message", - "rank": 7134, + "rank": 7364, "tags": [ "dating", "sd" @@ -3346,7 +3483,7 @@ }, "irecommend": { "errorType": "status_code", - "rank": 2085, + "rank": 2022, "tags": [ "ru" ], @@ -3358,7 +3495,7 @@ "jeuxvideo": { "errorMsg": "Vous \u00eates", "errorType": "message", - "rank": 1760, + "rank": 1807, "tags": [ "fr", "gaming" @@ -3371,7 +3508,7 @@ "kofi": { "errorMsg": "Make income from your art!", "errorType": "message", - "rank": 9254, + "rank": 9165, "tags": [ "freelance", "ru", @@ -3384,7 +3521,7 @@ }, "kwork": { "errorType": "status_code", - "rank": 6639, + "rank": 6560, "tags": [ "ru" ], @@ -3396,7 +3533,7 @@ "labpentestit": { "errorType": "response_url", "errorUrl": "https://lab.pentestit.ru/{}", - "rank": 2855796, + "rank": 2475978, "tags": [ "cybersec" ], @@ -3407,7 +3544,7 @@ }, "last.fm": { "errorType": "status_code", - "rank": 1944, + "rank": 1930, "tags": [ "music", "us" @@ -3419,7 +3556,7 @@ }, "leasehackr": { "errorType": "status_code", - "rank": 59892, + "rank": 52023, "tags": [ "us" ], @@ -3430,7 +3567,7 @@ }, "mastodon.cloud": { "errorType": "status_code", - "rank": 1507445, + "rank": 1279812, "url": "https://mastodon.cloud/@{}", "urlMain": "https://mastodon.cloud/", "username_claimed": "TheAdmin", @@ -3438,7 +3575,7 @@ }, "mastodon.social": { "errorType": "status_code", - "rank": 1872232, + "rank": 1957965, "url": "https://mastodon.social/@{}", "urlMain": "https://chaos.social/", "username_claimed": "Gargron", @@ -3446,7 +3583,7 @@ }, "mastodon.technology": { "errorType": "status_code", - "rank": 878254, + "rank": 962001, "tags": [ "th" ], @@ -3457,7 +3594,7 @@ }, "mastodon.xyz": { "errorType": "status_code", - "rank": 878254, + "rank": 962001, "tags": [ "th" ], @@ -3468,7 +3605,7 @@ }, "mercadolivre": { "errorType": "status_code", - "rank": 177, + "rank": 194, "tags": [ "br" ], @@ -3480,7 +3617,7 @@ "metacritic": { "errorMsg": "User not found", "errorType": "message", - "rank": 2244, + "rank": 2197, "regexCheck": "^(?![-_])[A-Za-z0-9-_]{3,15}$", "tags": [ "us" @@ -3492,7 +3629,7 @@ }, "moikrug": { "errorType": "status_code", - "rank": 176708, + "rank": 159862, "tags": [ "us" ], @@ -3503,7 +3640,7 @@ }, "mstdn.io": { "errorType": "status_code", - "rank": 2343970, + "rank": 1796064, "url": "https://mstdn.io/@{}", "urlMain": "https://mstdn.io/", "username_claimed": "blue", @@ -3511,7 +3648,7 @@ }, "nightbot": { "errorType": "status_code", - "rank": 10391, + "rank": 9981, "tags": [ "us" ], @@ -3531,7 +3668,10 @@ }, "notabug.org": { "errorType": "status_code", - "rank": 169661, + "rank": 222036, + "tags": [ + "ma" + ], "url": "https://notabug.org/{}", "urlMain": "https://notabug.org/", "urlProbe": "https://notabug.org/{}/followers", @@ -3540,7 +3680,7 @@ }, "note": { "errorType": "status_code", - "rank": 821, + "rank": 896, "tags": [ "jp" ], @@ -3552,7 +3692,7 @@ "opennet": { "errorMsg": "\u0418\u043c\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e", "errorType": "message", - "rank": 61064, + "rank": 60553, "regexCheck": "^[^-]+$", "tags": [ "ru" @@ -3564,7 +3704,7 @@ }, "opensource": { "errorType": "status_code", - "rank": 6475, + "rank": 6484, "tags": [ "in" ], @@ -3575,7 +3715,7 @@ }, "osu!": { "errorType": "status_code", - "rank": 4319, + "rank": 3960, "tags": [ "us" ], @@ -3587,7 +3727,7 @@ "phpRU": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", - "rank": 105977, + "rank": 110921, "tags": [ "ru" ], @@ -3598,7 +3738,7 @@ }, "pikabu": { "errorType": "status_code", - "rank": 1079, + "rank": 1090, "tags": [ "ru" ], @@ -3607,9 +3747,21 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "polarsteps": { + "errorType": "status_code", + "rank": 165137, + "tags": [ + "us" + ], + "url": "https://polarsteps.com/{}", + "urlMain": "https://polarsteps.com/", + "urlProbe": "https://api.polarsteps.com/users/byusername/{}", + "username_claimed": "james", + "username_unclaimed": "noonewouldeverusethis7" + }, "pr0gramm": { "errorType": "status_code", - "rank": 3850, + "rank": 3616, "tags": [ "de" ], @@ -3623,7 +3775,7 @@ "errors": { "Access denied": "Cloudflare security protection detected" }, - "rank": 249002, + "rank": 249429, "request_head_only": false, "tags": [ "ru" @@ -3636,7 +3788,7 @@ "qiwi.me": { "errorMsg": "no piggybox found", "errorType": "message", - "rank": 357971, + "rank": 385270, "tags": [ "finance", "ru" @@ -3649,7 +3801,7 @@ }, "radio_echo_msk": { "errorType": "status_code", - "rank": 1569, + "rank": 1396, "tags": [ "ru" ], @@ -3661,7 +3813,7 @@ "radioskot": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 132190, + "rank": 126995, "regexCheck": "^[^-]+$", "tags": [ "ru" @@ -3673,7 +3825,7 @@ }, "satsisRU": { "errorType": "status_code", - "rank": 245406, + "rank": 227916, "tags": [ "ru" ], @@ -3684,7 +3836,7 @@ }, "segmentfault": { "errorType": "status_code", - "rank": 921, + "rank": 1207, "tags": [ "cn" ], @@ -3695,7 +3847,7 @@ }, "social.tchncs.de": { "errorType": "status_code", - "rank": 536933, + "rank": 488923, "tags": [ "in", "vn" @@ -3708,7 +3860,7 @@ "soylentnews": { "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", "errorType": "message", - "rank": 737317, + "rank": 720769, "url": "https://soylentnews.org/~{}", "urlMain": "https://soylentnews.org", "username_claimed": "adam", @@ -3717,7 +3869,7 @@ "sparkpeople": { "errorMsg": "We couldn't find that user", "errorType": "message", - "rank": 16608, + "rank": 17270, "tags": [ "us" ], @@ -3728,7 +3880,7 @@ }, "spletnik": { "errorType": "status_code", - "rank": 8538, + "rank": 8457, "tags": [ "ru" ], @@ -3739,7 +3891,7 @@ }, "svidbook": { "errorType": "status_code", - "rank": 3833893, + "rank": 4083142, "url": "https://www.svidbook.ru/user/{}", "urlMain": "https://www.svidbook.ru/", "username_claimed": "green", @@ -3751,7 +3903,7 @@ "errors": { "g-recaptcha": "Captcha detected" }, - "rank": 949722, + "rank": 1294716, "regexCheck": "^[A-Za-z0-9]{2,32}$", "tags": [ "gaming", @@ -3765,8 +3917,9 @@ "travellerspoint": { "errorMsg": "Wooops. Sorry!", "errorType": "message", - "rank": 71765, + "rank": 70567, "tags": [ + "in", "us" ], "url": "https://www.travellerspoint.com/users/{}", @@ -3776,7 +3929,7 @@ }, "uid": { "errorType": "status_code", - "rank": 31094, + "rank": 31878, "tags": [ "ru" ], @@ -3787,7 +3940,7 @@ }, "warriorforum": { "errorType": "status_code", - "rank": 3599, + "rank": 3580, "tags": [ "us" ], @@ -3798,9 +3951,10 @@ }, "windy": { "errorType": "status_code", - "rank": 1681, + "rank": 1552, "tags": [ - "pl" + "pl", + "us" ], "url": "https://community.windy.com/user/{}", "urlMain": "https://windy.com/", @@ -3809,7 +3963,7 @@ }, "xHamster": { "errorType": "status_code", - "rank": 143, + "rank": 141, "tags": [ "porno", "us" diff --git a/sites.md b/sites.md index 1f909cdb5..83fa1523d 100644 --- a/sites.md +++ b/sites.md @@ -1,325 +1,336 @@ -## List of supported sites: total 322 +## List of supported sites: total 333 1. [GoogleMaps](https://maps.google.com/), top 1 2. [PlayStore](https://play.google.com/store), top 1 3. [YouTube](https://www.youtube.com/), top 2 4. [Facebook](https://www.facebook.com/), top 8 -5. [Wikipedia](https://www.wikipedia.org/), top 14 -6. [Reddit](https://www.reddit.com/), top 19 +5. [Wikipedia](https://www.wikipedia.org/), top 13 +6. [Reddit](https://www.reddit.com/), top 18 7. [MicrosoftTechNet](https://social.technet.microsoft.com), top 23 -8. [VK](https://vk.com/), top 24 +8. [VK](https://vk.com/), top 25 9. [BongaCams](https://pt.bongacams.com), top 26 -10. [Twitch](https://www.twitch.tv/), top 30 -11. [Instagram](https://www.instagram.com/), top 33 -12. [Livejasmin](https://www.livejasmin.com/), top 35 -13. [Ebay](https://www.ebay.com/), top 46 -14. [AppleDeveloper](https://developer.apple.com/forums), top 50 -15. [AppleDiscussions](https://discussions.apple.com/), top 50 -16. [Pornhub](https://pornhub.com/), top 53 -17. [Yandex](https://yandex.ru/), top 55 -18. [YandexCollection](https://yandex.ru/collections/), top 55 -19. [YandexLocal](https://local.yandex.ru/), top 55 -20. [YandexMusic](https://music.yandex.ru/), top 55 -21. [YandexZnatoki](https://yandex.ru/q/), top 55 -22. [WordPress](https://wordpress.com), top 57 -23. [ChaturBate](https://chaturbate.com), top 59 -24. [OK](https://ok.ru/), top 60 -25. [Twitter](https://www.twitter.com/), top 63 -26. [Medium](https://medium.com/), top 81 +10. [Twitch](https://www.twitch.tv/), top 28 +11. [Instagram](https://www.instagram.com/), top 32 +12. [Livejasmin](https://www.livejasmin.com/), top 34 +13. [Ebay](https://www.ebay.com/), top 43 +14. [Naver](https://naver.com), top 49 +15. [AppleDeveloper](https://developer.apple.com/forums), top 50 +16. [AppleDiscussions](https://discussions.apple.com/), top 50 +17. [Yandex](https://yandex.ru/), top 52 +18. [YandexCollection](https://yandex.ru/collections/), top 52 +19. [YandexLocal](https://local.yandex.ru/), top 52 +20. [YandexMusic](https://music.yandex.ru/), top 52 +21. [YandexZnatoki](https://yandex.ru/q/), top 52 +22. [Pornhub](https://pornhub.com/), top 53 +23. [WordPress](https://wordpress.com), top 56 +24. [ChaturBate](https://chaturbate.com), top 59 +25. [Twitter](https://www.twitter.com/), top 60 +26. [OK](https://ok.ru/), top 61 27. [Spotify](https://open.spotify.com/), top 87 -28. [Fandom](https://www.fandom.com/), top 88 -29. [SoundCloud](https://soundcloud.com/), top 97 -30. [GitHub](https://www.github.com/), top 98 -31. [Etsy](https://www.etsy.com/), top 105 -32. [Roblox](https://www.roblox.com/), top 109 -33. [Xvideos](https://xvideos.com/), top 120 -34. [TradingView](https://www.tradingview.com/), top 137 -35. [xHamster](https://xhamster.com), top 143 -36. [Zhihu](https://www.zhihu.com/), top 147 +28. [Fandom](https://www.fandom.com/), top 90 +29. [SoundCloud](https://soundcloud.com/), top 95 +30. [Etsy](https://www.etsy.com/), top 97 +31. [Medium](https://medium.com/), top 98 +32. [GitHub](https://www.github.com/), top 102 +33. [Roblox](https://www.roblox.com/), top 110 +34. [Xvideos](https://xvideos.com/), top 119 +35. [TradingView](https://www.tradingview.com/), top 131 +36. [xHamster](https://xhamster.com), top 141 37. [CNET](https://www.cnet.com/), top 148 -38. [Trello](https://trello.com/), top 151 -39. [SlideShare](https://slideshare.net/), top 152 -40. [ResearchGate](https://www.researchgate.net/), top 161 -41. [Vimeo](https://vimeo.com/), top 166 -42. [Pinterest](https://www.pinterest.com/), top 168 -43. [mercadolivre](https://www.mercadolivre.com.br), top 177 -44. [Steam](https://steamcommunity.com/), top 180 -45. [SteamGroup](https://steamcommunity.com/), top 180 -46. [Wix](https://wix.com/), top 191 -47. [Archive.org](https://archive.org), top 250 -48. [DailyMotion](https://www.dailymotion.com/), top 252 -49. [Telegram](https://t.me/), top 264 -50. [Slack](https://slack.com), top 270 -51. [Euw](https://euw.op.gg/), top 285 -52. [aminoapp](https://aminoapps.com/), top 286 -53. [Behance](https://www.behance.net/), top 294 -54. [Academia.edu](https://www.academia.edu/), top 298 -55. [Scribd](https://www.scribd.com/), top 302 -56. [Quora](https://www.quora.com/), top 307 -57. [GoodReads](https://www.goodreads.com/), top 323 -58. [Blogger](https://www.blogger.com/), top 332 -59. [Patreon](https://www.patreon.com/), top 338 -60. [Chess](https://www.chess.com/ru/), top 379 -61. [Fiverr](https://www.fiverr.com/), top 390 -62. [YouPorn](https://youporn.com), top 439 -63. [SourceForge](https://sourceforge.net/), top 442 -64. [TripAdvisor](https://tripadvisor.com/), top 444 -65. [LiveJournal](https://www.livejournal.com/), top 463 -66. [Unsplash](https://unsplash.com/), top 501 -67. [Duolingo](https://duolingo.com/), top 512 -68. [BuzzFeed](https://buzzfeed.com/), top 530 -69. [Crunchyroll](https://www.crunchyroll.com/), top 531 -70. [DeviantART](https://deviantart.com), top 539 -71. [Issuu](https://issuu.com/), top 572 -72. [Gamespot](https://www.gamespot.com/), top 605 -73. [WordPressOrg](https://wordpress.org/), top 623 -74. [Oracle Community](https://community.oracle.com), top 625 -75. [Wattpad](https://www.wattpad.com/), top 626 -76. [Scratch](https://scratch.mit.edu/), top 630 -77. [Ultimate-Guitar](https://ultimate-guitar.com/), top 646 -78. [Giphy](https://giphy.com/), top 658 -79. [note](https://note.com/), top 821 -80. [Redbubble](https://www.redbubble.com/), top 850 -81. [segmentfault](https://segmentfault.com/), top 921 -82. [MyAnimeList](https://myanimelist.net/), top 951 -83. [Tinder](https://tinder.com/), top 987 -84. [Disqus](https://disqus.com/), top 1020 +38. [Zhihu](https://www.zhihu.com/), top 152 +39. [Trello](https://trello.com/), top 154 +40. [SlideShare](https://slideshare.net/), top 156 +41. [ResearchGate](https://www.researchgate.net/), top 160 +42. [Vimeo](https://vimeo.com/), top 161 +43. [Pinterest](https://www.pinterest.com/), top 170 +44. [Steam](https://steamcommunity.com/), top 176 +45. [SteamGroup](https://steamcommunity.com/), top 176 +46. [Wix](https://wix.com/), top 181 +47. [mercadolivre](https://www.mercadolivre.com.br), top 194 +48. [Telegram](https://t.me/), top 240 +49. [DailyMotion](https://www.dailymotion.com/), top 252 +50. [Archive.org](https://archive.org), top 254 +51. [Euw](https://euw.op.gg/), top 270 +52. [Behance](https://www.behance.net/), top 278 +53. [Academia.edu](https://www.academia.edu/), top 305 +54. [Scribd](https://www.scribd.com/), top 306 +55. [Slack](https://slack.com), top 308 +56. [GoodReads](https://www.goodreads.com/), top 323 +57. [Patreon](https://www.patreon.com/), top 327 +58. [Quora](https://www.quora.com/), top 339 +59. [Blogger](https://www.blogger.com/), top 343 +60. [Chess](https://www.chess.com/ru/), top 363 +61. [Fiverr](https://www.fiverr.com/), top 369 +62. [TripAdvisor](https://tripadvisor.com/), top 404 +63. [YouPorn](https://youporn.com), top 434 +64. [Crunchyroll](https://www.crunchyroll.com/), top 448 +65. [LiveJournal](https://www.livejournal.com/), top 452 +66. [SourceForge](https://sourceforge.net/), top 456 +67. [BuzzFeed](https://buzzfeed.com/), top 474 +68. [Duolingo](https://duolingo.com/), top 480 +69. [DeviantART](https://deviantart.com), top 485 +70. [Unsplash](https://unsplash.com/), top 528 +71. [Issuu](https://issuu.com/), top 538 +72. [WordPressOrg](https://wordpress.org/), top 572 +73. [Oracle Community](https://community.oracle.com), top 583 +74. [Gamespot](https://www.gamespot.com/), top 637 +75. [Wattpad](https://www.wattpad.com/), top 656 +76. [Ultimate-Guitar](https://ultimate-guitar.com/), top 663 +77. [Scratch](https://scratch.mit.edu/), top 676 +78. [Giphy](https://giphy.com/), top 686 +79. [Redbubble](https://www.redbubble.com/), top 821 +80. [Strava](https://www.strava.com/), top 837 +81. [note](https://note.com/), top 896 +82. [Tinder](https://tinder.com/), top 941 +83. [MyAnimeList](https://myanimelist.net/), top 967 +84. [Disqus](https://disqus.com/), top 997 85. [Flickr](https://www.flickr.com/), top 1058 -86. [Bandcamp](https://www.bandcamp.com/), top 1068 -87. [pikabu](https://pikabu.ru/), top 1079 -88. [gfycat](https://gfycat.com/), top 1129 -89. [Discogs](https://www.discogs.com/), top 1155 -90. [PCGamer](https://pcgamer.com), top 1177 -91. [T-MobileSupport](https://support.t-mobile.com), top 1279 -92. [Houzz](https://houzz.com/), top 1327 -93. [Polygon](https://www.polygon.com/), top 1354 -94. [CloudflareCommunity](https://community.cloudflare.com/), top 1362 -95. [Instructables](https://www.instructables.com/), top 1363 -96. [Pastebin](https://pastebin.com/), top 1376 -97. [Dribbble](https://dribbble.com/), top 1377 -98. [drive2](https://www.drive2.ru/), top 1390 -99. [Career.habr](https://career.habr.com/), top 1401 -100. [Freelance.habr](https://freelance.habr.com/), top 1401 -101. [Toster](https://qna.habr.com/), top 1401 -102. [habr](https://habr.com/), top 1401 -103. [radio_echo_msk](https://echo.msk.ru/), top 1569 -104. [Freelancer.com](https://www.freelancer.com/), top 1605 -105. [windy](https://windy.com/), top 1681 -106. [Rajce.net](https://www.rajce.idnes.cz/), top 1692 -107. [Championat](https://www.championat.com/), top 1712 -108. [Otzovik](https://otzovik.com/), top 1724 -109. [BitBucket](https://bitbucket.org/), top 1731 -110. [jeuxvideo](http://www.jeuxvideo.com), top 1760 -111. [Badoo](https://badoo.com/), top 1807 -112. [Itch.io](https://itch.io/), top 1811 -113. [Lichess](https://lichess.org), top 1846 -114. [last.fm](https://last.fm/), top 1944 -115. [Flightradar24](https://www.flightradar24.com/), top 1979 -116. [Zomato](https://www.zomato.com/), top 2053 -117. [irecommend](https://irecommend.ru/), top 2085 -118. [Myspace](https://myspace.com/), top 2096 -119. [PCPartPicker](https://pcpartpicker.com), top 2107 -120. [Codecademy](https://www.codecademy.com/), top 2158 -121. [LeetCode](https://leetcode.com/), top 2218 -122. [metacritic](https://www.metacritic.com/), top 2244 -123. [SportsRU](https://www.sports.ru/), top 2360 -124. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2426 -125. [CreativeMarket](https://creativemarket.com/), top 2429 -126. [Virgool](https://virgool.io/), top 2462 -127. [4pda](https://4pda.ru/), top 2507 -128. [Kaggle](https://www.kaggle.com/), top 2591 -129. [MixCloud](https://www.mixcloud.com/), top 2599 -130. [Taringa](https://taringa.net/), top 2624 -131. [Kongregate](https://www.kongregate.com/), top 2754 -132. [HackerRank](https://hackerrank.com/), top 2799 -133. [AskFM](https://ask.fm/), top 3063 -134. [We Heart It](https://weheartit.com/), top 3190 -135. [Docker Hub](https://hub.docker.com/), top 3199 -136. [HubPages](https://hubpages.com/), top 3293 -137. [Wikidot](http://www.wikidot.com/), top 3339 -138. [500px](https://500px.com/), top 3408 -139. [Photobucket](https://photobucket.com/), top 3529 -140. [warriorforum](https://www.warriorforum.com/), top 3599 -141. [Cracked](https://www.cracked.com/), top 3602 -142. [Sporcle](https://www.sporcle.com/), top 3604 -143. [LiveLib](https://www.livelib.ru/), top 3658 -144. [GitLab](https://gitlab.com/), top 3725 -145. [Repl.it](https://repl.it/), top 3755 -146. [AllTrails](https://www.alltrails.com/), top 3766 -147. [Lolchess](https://lolchess.gg/), top 3792 -148. [Letterboxd](https://letterboxd.com/), top 3847 -149. [pr0gramm](https://pr0gramm.com/), top 3850 -150. [Gumroad](https://www.gumroad.com/), top 3894 -151. [osu!](https://osu.ppy.sh/), top 4319 -152. [fixya](https://www.fixya.com), top 4584 -153. [Venmo](https://venmo.com/), top 4798 -154. [VSCO](https://vsco.co/), top 4869 -155. [Pokemon Showdown](https://pokemonshowdown.com), top 5247 -156. [babyRU](https://www.baby.ru/), top 5285 -157. [dailykos](https://www.dailykos.com), top 5404 -158. [HackerNews](https://news.ycombinator.com/), top 5557 -159. [VirusTotal](https://www.virustotal.com/), top 5664 -160. [Rate Your Music](https://rateyourmusic.com/), top 5873 -161. [Stihi.ru](https://www.stihi.ru/), top 6104 -162. [Discuss.Elastic.co](https://discuss.elastic.co/), top 6291 -163. [NPM](https://www.npmjs.com/), top 6406 -164. [NPM-Package](https://www.npmjs.com/), top 6406 -165. [opensource](https://opensource.com/), top 6475 -166. [FortniteTracker](https://fortnitetracker.com/challenges), top 6493 -167. [Newgrounds](https://newgrounds.com), top 6501 -168. [Freesound](https://freesound.org/), top 6513 -169. [Memrise](https://www.memrise.com/), top 6524 -170. [Audiojungle](https://audiojungle.net/), top 6625 -171. [kwork](https://www.kwork.ru/), top 6639 -172. [Aptoide](https://en.aptoide.com/), top 6702 -173. [WikimapiaProfile](http://wikimapia.org), top 6781 -174. [WikimapiaSearch](http://wikimapia.org), top 6781 -175. [Gravatar](http://en.gravatar.com/), top 6806 -176. [Flipboard](https://flipboard.com/), top 7035 -177. [Pinkbike](https://www.pinkbike.com/), top 7054 -178. [interpals](https://www.interpals.net/), top 7134 -179. [BOOTH](https://booth.pm/), top 7183 -180. [SublimeForum](https://forum.sublimetext.com/), top 7193 -181. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7326 -182. [Trakt](https://www.trakt.tv/), top 7350 -183. [Gitee](https://gitee.com/), top 7499 -184. [Smule](https://www.smule.com/), top 7523 -185. [OpenStreetMap](https://www.openstreetmap.org/), top 7590 -186. [3dnews](http://forum.3dnews.ru/), top 7867 -187. [Star Citizen](https://robertsspaceindustries.com/), top 8103 -188. [Cloob](https://www.cloob.com/), top 8188 -189. [NICommunityForum](https://www.native-instruments.com/forum/), top 8331 -190. [DEV Community](https://dev.to/), top 8479 -191. [Proza.ru](https://www.proza.ru/), top 8533 -192. [spletnik](https://spletnik.ru/), top 8538 -193. [Kali community](https://forums.kali.org/), top 8738 -194. [ReverbNation](https://www.reverbnation.com/), top 8788 -195. [Typeracer](https://typeracer.com), top 8862 -196. [Facenama](https://facenama.com/), top 8874 -197. [IFTTT](https://www.ifttt.com/), top 9095 -198. [kofi](https://ko-fi.com), top 9254 -199. [Codechef](https://www.codechef.com/), top 9540 -200. [Launchpad](https://launchpad.net/), top 9957 -201. [ProductHunt](https://www.producthunt.com/), top 10216 -202. [nightbot](https://nightbot.tv/), top 10391 -203. [authorSTREAM](http://www.authorstream.com/), top 10535 -204. [geocaching](https://www.geocaching.com/), top 10798 -205. [akniga](https://akniga.org/profile/blue/), top 10838 -206. [Speedrun.com](https://speedrun.com/), top 11045 -207. [PSNProfiles.com](https://psnprofiles.com/), top 11304 -208. [Coderwall](https://coderwall.com/), top 11441 -209. [Teletype](https://teletype.in), top 11697 -210. [igromania](http://forum.igromania.ru/), top 12256 -211. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12396 -212. [forumhouseRU](https://www.forumhouse.ru/), top 12800 -213. [couchsurfing](https://www.couchsurfing.com/), top 13052 -214. [Contently](https://contently.com/), top 13058 -215. [ImageShack](https://imageshack.com/), top 13376 -216. [YouNow](https://www.younow.com/), top 14260 -217. [babyblogRU](https://www.babyblog.ru/), top 14450 -218. [Sbazar.cz](https://www.sbazar.cz/), top 14744 -219. [TrashboxRU](https://trashbox.ru/), top 16041 -220. [iMGSRC.RU](https://imgsrc.ru/), top 16447 -221. [sparkpeople](https://www.sparkpeople.com), top 16608 -222. [EyeEm](https://www.eyeem.com/), top 17451 -223. [Packagist](https://packagist.org/), top 18212 -224. [Samlib](http://samlib.ru/), top 18416 -225. [hackster](https://www.hackster.io), top 19544 -226. [WebNode](https://www.webnode.cz/), top 20176 -227. [HackerOne](https://hackerone.com/), top 20261 -228. [Jimdo](https://jimdosite.com/), top 20298 -229. [Codewars](https://www.codewars.com), top 20838 -230. [allmylinks](https://allmylinks.com/), top 22230 -231. [About.me](https://about.me/), top 22845 -232. [forum_guns](https://forum.guns.ru/), top 24969 -233. [Carbonmade](https://carbonmade.com/), top 25740 -234. [YouPic](https://youpic.com/), top 27139 -235. [GuruShots](https://gurushots.com/), top 27771 -236. [Tellonym.me](https://tellonym.me/), top 30171 -237. [uid](https://uid.me/), top 31094 -238. [easyen](https://easyen.ru/), top 31350 -239. [Ask Fedora](https://ask.fedoraproject.org/), top 32007 -240. [RubyGems](https://rubygems.org/), top 32855 -241. [PromoDJ](http://promodj.com/), top 33183 -242. [Ello](https://ello.co/), top 33636 -243. [Periscope](https://www.periscope.tv/), top 33849 -244. [Anobii](https://www.anobii.com/), top 35569 -245. [OpenCollective](https://opencollective.com/), top 35889 -246. [Realmeye](https://www.realmeye.com/), top 36042 -247. [Football](https://www.rusfootball.info/), top 36428 -248. [d3RU](https://d3.ru/), top 36571 -249. [Coroflot](https://coroflot.com/), top 37550 -250. [LOR](https://linux.org.ru/), top 42749 -251. [HackTheBox](https://forum.hackthebox.eu/), top 43396 -252. [7Cups](https://www.7cups.com/), top 45618 -253. [fl](https://www.fl.ru/), top 49103 -254. [Plug.DJ](https://plug.dj/), top 53090 -255. [NationStates Nation](https://nationstates.net), top 53840 -256. [NationStates Region](https://nationstates.net), top 53840 -257. [F3.cool](https://f3.cool/), top 59573 -258. [leasehackr](https://forum.leasehackr.com/), top 59892 -259. [opennet](https://www.opennet.ru/), top 61064 -260. [Bookcrossing](https://www.bookcrossing.com/), top 64272 -261. [Keybase](https://keybase.io/), top 65507 -262. [datingRU](http://dating.ru), top 67263 -263. [RoyalCams](https://royalcams.com), top 69249 -264. [travellerspoint](https://www.travellerspoint.com), top 71765 -265. [Clozemaster](https://www.clozemaster.com), top 76263 -266. [eGPU](https://egpu.io/), top 83025 -267. [Asciinema](https://asciinema.org), top 88879 -268. [Pling](https://www.pling.com/), top 92056 -269. [TamTam](https://tamtam.chat/), top 99606 -270. [devRant](https://devrant.com/), top 100968 -271. [Velomania](https://forum.velomania.ru/), top 102859 -272. [phpRU](https://php.ru/forum/), top 105977 -273. [Cent](https://cent.co/), top 125435 -274. [radioskot](https://radioskot.ru/), top 132190 -275. [GunsAndAmmo](https://gunsandammo.com/), top 133019 -276. [KanoWorld](https://world.kano.me/), top 137866 -277. [hunting](https://www.hunting.ru/forum/), top 152284 -278. [Steamid](https://steamid.uk/), top 153986 -279. [Lobsters](https://lobste.rs/), top 158132 -280. [BLIP.fm](https://blip.fm/), top 158697 -281. [notabug.org](https://notabug.org/), top 169661 -282. [moikrug](https://moikrug.ru/), top 176708 -283. [Crevado](https://crevado.com/), top 184593 -284. [Whonix Forum](https://forums.whonix.org/), top 197513 -285. [Smashcast](https://www.smashcast.tv/), top 236056 -286. [satsisRU](https://satsis.info/), top 245406 -287. [pvpru](https://pvpru.com/), top 249002 -288. [Hubski](https://hubski.com/), top 322408 -289. [eintracht](https://eintracht.de), top 343407 -290. [Avizo](https://www.avizo.cz/), top 354057 -291. [qiwi.me](https://qiwi.me), top 357971 -292. [Bazar.cz](https://www.bazar.cz/), top 363291 -293. [BitCoinForum](https://bitcoinforum.com), top 467689 -294. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 479841 -295. [social.tchncs.de](https://social.tchncs.de/), top 536933 -296. [Splits.io](https://splits.io), top 670719 -297. [ShitpostBot5000](https://www.shitpostbot.com/), top 675277 -298. [House-Mixes.com](https://www.house-mixes.com/), top 706730 -299. [soylentnews](https://soylentnews.org), top 737317 -300. [Gam1ng](https://gam1ng.com.br), top 802065 -301. [Alik.cz](https://www.alik.cz/), top 830235 -302. [Kik](http://kik.me/), top 844906 -303. [mastodon.technology](https://mastodon.xyz/), top 878254 -304. [mastodon.xyz](https://mastodon.xyz/), top 878254 -305. [tracr.co](https://tracr.co/), top 949722 -306. [Signal](https://community.signalusers.org), top 1191482 -307. [OurDJTalk](https://ourdjtalk.com/), top 1251479 -308. [mastodon.cloud](https://mastodon.cloud/), top 1507445 -309. [chaos.social](https://chaos.social/), top 1872232 -310. [mastodon.social](https://chaos.social/), top 1872232 -311. [mstdn.io](https://mstdn.io/), top 2343970 -312. [labpentestit](https://lab.pentestit.ru/), top 2855796 -313. [Chatujme.cz](https://chatujme.cz/), top 3459006 -314. [svidbook](https://www.svidbook.ru/), top 3833893 -315. [PokerStrategy](http://www.pokerstrategy.net), top 5577455 -316. [CashMe](https://cash.me/), top 6620639 -317. [2Dimensions](https://2Dimensions.com/), top 7380911 -318. [Designspiration](https://www.designspiration.net/), top 7477241 -319. [GDProfiles](https://gdprofiles.com/), top 10307308 -320. [Filmogs](https://www.filmo.gs/), top 0 -321. [ImgUp.cz](https://imgup.cz/), top 0 -322. [nnRU](https://https://www.nn.ru/), top 0 +86. [Bandcamp](https://www.bandcamp.com/), top 1062 +87. [pikabu](https://pikabu.ru/), top 1090 +88. [Discogs](https://www.discogs.com/), top 1163 +89. [T-MobileSupport](https://support.t-mobile.com), top 1188 +90. [gfycat](https://gfycat.com/), top 1206 +91. [segmentfault](https://segmentfault.com/), top 1207 +92. [PCGamer](https://pcgamer.com), top 1215 +93. [Houzz](https://houzz.com/), top 1323 +94. [drive2](https://www.drive2.ru/), top 1333 +95. [radio_echo_msk](https://echo.msk.ru/), top 1396 +96. [Instructables](https://www.instructables.com/), top 1414 +97. [Polygon](https://www.polygon.com/), top 1446 +98. [Championat](https://www.championat.com/), top 1449 +99. [Career.habr](https://career.habr.com/), top 1459 +100. [Freelance.habr](https://freelance.habr.com/), top 1459 +101. [Toster](https://qna.habr.com/), top 1459 +102. [habr](https://habr.com/), top 1459 +103. [Pastebin](https://pastebin.com/), top 1511 +104. [windy](https://windy.com/), top 1552 +105. [Rajce.net](https://www.rajce.idnes.cz/), top 1608 +106. [Dribbble](https://dribbble.com/), top 1621 +107. [CloudflareCommunity](https://community.cloudflare.com/), top 1626 +108. [Otzovik](https://otzovik.com/), top 1696 +109. [BitBucket](https://bitbucket.org/), top 1719 +110. [Badoo](https://badoo.com/), top 1775 +111. [jeuxvideo](http://www.jeuxvideo.com), top 1807 +112. [Zomato](https://www.zomato.com/), top 1811 +113. [Itch.io](https://itch.io/), top 1824 +114. [last.fm](https://last.fm/), top 1930 +115. [irecommend](https://irecommend.ru/), top 2022 +116. [Freelancer.com](https://www.freelancer.com/), top 2023 +117. [aminoapp](https://aminoapps.com/), top 2024 +118. [Myspace](https://myspace.com/), top 2034 +119. [Lichess](https://lichess.org), top 2037 +120. [Flightradar24](https://www.flightradar24.com/), top 2086 +121. [PCPartPicker](https://pcpartpicker.com), top 2139 +122. [LeetCode](https://leetcode.com/), top 2151 +123. [SportsRU](https://www.sports.ru/), top 2182 +124. [metacritic](https://www.metacritic.com/), top 2197 +125. [Codecademy](https://www.codecademy.com/), top 2320 +126. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2346 +127. [4pda](https://4pda.ru/), top 2441 +128. [Virgool](https://virgool.io/), top 2469 +129. [Kaggle](https://www.kaggle.com/), top 2662 +130. [HackerRank](https://hackerrank.com/), top 2705 +131. [MixCloud](https://www.mixcloud.com/), top 2710 +132. [Kongregate](https://www.kongregate.com/), top 2760 +133. [Taringa](https://taringa.net/), top 2851 +134. [CreativeMarket](https://creativemarket.com/), top 2904 +135. [AskFM](https://ask.fm/), top 3165 +136. [We Heart It](https://weheartit.com/), top 3190 +137. [HubPages](https://hubpages.com/), top 3277 +138. [500px](https://500px.com/), top 3382 +139. [AllTrails](https://www.alltrails.com/), top 3417 +140. [GitLab](https://gitlab.com/), top 3467 +141. [Wikidot](http://www.wikidot.com/), top 3471 +142. [Photobucket](https://photobucket.com/), top 3493 +143. [Cracked](https://www.cracked.com/), top 3555 +144. [Docker Hub](https://hub.docker.com/), top 3563 +145. [warriorforum](https://www.warriorforum.com/), top 3580 +146. [pr0gramm](https://pr0gramm.com/), top 3616 +147. [Letterboxd](https://letterboxd.com/), top 3843 +148. [LiveLib](https://www.livelib.ru/), top 3874 +149. [Sporcle](https://www.sporcle.com/), top 3881 +150. [Gumroad](https://www.gumroad.com/), top 3896 +151. [osu!](https://osu.ppy.sh/), top 3960 +152. [Repl.it](https://repl.it/), top 3999 +153. [fixya](https://www.fixya.com), top 4286 +154. [Lolchess](https://lolchess.gg/), top 4440 +155. [Venmo](https://venmo.com/), top 4649 +156. [babyRU](https://www.baby.ru/), top 4709 +157. [VSCO](https://vsco.co/), top 4901 +158. [dailykos](https://www.dailykos.com), top 5233 +159. [Pokemon Showdown](https://pokemonshowdown.com), top 5446 +160. [HackerNews](https://news.ycombinator.com/), top 5862 +161. [Rate Your Music](https://rateyourmusic.com/), top 5907 +162. [VirusTotal](https://www.virustotal.com/), top 5963 +163. [Discuss.Elastic.co](https://discuss.elastic.co/), top 5977 +164. [Stihi.ru](https://www.stihi.ru/), top 6137 +165. [opensource](https://opensource.com/), top 6484 +166. [WikimapiaProfile](http://wikimapia.org), top 6528 +167. [WikimapiaSearch](http://wikimapia.org), top 6528 +168. [kwork](https://www.kwork.ru/), top 6560 +169. [Newgrounds](https://newgrounds.com), top 6634 +170. [NPM](https://www.npmjs.com/), top 6763 +171. [NPM-Package](https://www.npmjs.com/), top 6763 +172. [Aptoide](https://en.aptoide.com/), top 6825 +173. [Freesound](https://freesound.org/), top 6830 +174. [Pinkbike](https://www.pinkbike.com/), top 7014 +175. [SublimeForum](https://forum.sublimetext.com/), top 7069 +176. [BOOTH](https://booth.pm/), top 7090 +177. [DEV Community](https://dev.to/), top 7254 +178. [Memrise](https://www.memrise.com/), top 7318 +179. [Gitee](https://gitee.com/), top 7323 +180. [interpals](https://www.interpals.net/), top 7364 +181. [Audiojungle](https://audiojungle.net/), top 7398 +182. [Trakt](https://www.trakt.tv/), top 7441 +183. [FortniteTracker](https://fortnitetracker.com/challenges), top 7467 +184. [OpenStreetMap](https://www.openstreetmap.org/), top 7551 +185. [Typeracer](https://typeracer.com), top 7650 +186. [3dnews](http://forum.3dnews.ru/), top 7764 +187. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7879 +188. [Flipboard](https://flipboard.com/), top 8006 +189. [Smule](https://www.smule.com/), top 8112 +190. [Gravatar](http://en.gravatar.com/), top 8378 +191. [ReverbNation](https://www.reverbnation.com/), top 8405 +192. [spletnik](https://spletnik.ru/), top 8457 +193. [NICommunityForum](https://www.native-instruments.com/forum/), top 8509 +194. [Codechef](https://www.codechef.com/), top 9125 +195. [Cloob](https://www.cloob.com/), top 9163 +196. [kofi](https://ko-fi.com), top 9165 +197. [Proza.ru](https://www.proza.ru/), top 9217 +198. [Kali community](https://forums.kali.org/), top 9459 +199. [IFTTT](https://www.ifttt.com/), top 9683 +200. [Facenama](https://facenama.com/), top 9885 +201. [F6S](https://f6s.com/), top 9956 +202. [nightbot](https://nightbot.tv/), top 9981 +203. [ProductHunt](https://www.producthunt.com/), top 10118 +204. [Star Citizen](https://robertsspaceindustries.com/), top 10302 +205. [Launchpad](https://launchpad.net/), top 10663 +206. [geocaching](https://www.geocaching.com/), top 10778 +207. [akniga](https://akniga.org/profile/blue/), top 10988 +208. [Speedrun.com](https://speedrun.com/), top 11222 +209. [Teletype](https://teletype.in), top 11356 +210. [getmyuni](https://getmyuni.com/), top 11493 +211. [Coderwall](https://coderwall.com/), top 11529 +212. [Slashdot](https://slashdot.org), top 11734 +213. [PSNProfiles.com](https://psnprofiles.com/), top 11913 +214. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12005 +215. [igromania](http://forum.igromania.ru/), top 12441 +216. [ImageShack](https://imageshack.com/), top 12634 +217. [authorSTREAM](http://www.authorstream.com/), top 12727 +218. [Contently](https://contently.com/), top 13015 +219. [forumhouseRU](https://www.forumhouse.ru/), top 13374 +220. [couchsurfing](https://www.couchsurfing.com/), top 13434 +221. [babyblogRU](https://www.babyblog.ru/), top 14024 +222. [YouNow](https://www.younow.com/), top 14433 +223. [Packagist](https://packagist.org/), top 14574 +224. [Sbazar.cz](https://www.sbazar.cz/), top 14817 +225. [TrashboxRU](https://trashbox.ru/), top 15720 +226. [MyMiniFactory](https://www.myminifactory.com/), top 15754 +227. [EyeEm](https://www.eyeem.com/), top 16741 +228. [sparkpeople](https://www.sparkpeople.com), top 17270 +229. [iMGSRC.RU](https://imgsrc.ru/), top 17299 +230. [Samlib](http://samlib.ru/), top 17781 +231. [HackerOne](https://hackerone.com/), top 18639 +232. [hackster](https://www.hackster.io), top 18904 +233. [Codewars](https://www.codewars.com), top 20095 +234. [allmylinks](https://allmylinks.com/), top 20710 +235. [WebNode](https://www.webnode.cz/), top 20772 +236. [About.me](https://about.me/), top 21507 +237. [Jimdo](https://jimdosite.com/), top 21823 +238. [forum_guns](https://forum.guns.ru/), top 24804 +239. [GuruShots](https://gurushots.com/), top 25199 +240. [Tellonym.me](https://tellonym.me/), top 27984 +241. [Carbonmade](https://carbonmade.com/), top 28082 +242. [Football](https://www.rusfootball.info/), top 29171 +243. [uid](https://uid.me/), top 31878 +244. [Ello](https://ello.co/), top 31924 +245. [Ask Fedora](https://ask.fedoraproject.org/), top 32194 +246. [easyen](https://easyen.ru/), top 32379 +247. [Anobii](https://www.anobii.com/), top 33272 +248. [PromoDJ](http://promodj.com/), top 33958 +249. [YouPic](https://youpic.com/), top 34391 +250. [RubyGems](https://rubygems.org/), top 34845 +251. [OpenCollective](https://opencollective.com/), top 35386 +252. [Periscope](https://www.periscope.tv/), top 35818 +253. [Coroflot](https://coroflot.com/), top 36916 +254. [d3RU](https://d3.ru/), top 37272 +255. [Hackaday](https://hackaday.io/), top 37784 +256. [LOR](https://linux.org.ru/), top 41831 +257. [HackTheBox](https://forum.hackthebox.eu/), top 42311 +258. [Realmeye](https://www.realmeye.com/), top 44925 +259. [7Cups](https://www.7cups.com/), top 45056 +260. [fl](https://www.fl.ru/), top 48605 +261. [NationStates Nation](https://nationstates.net), top 50449 +262. [NationStates Region](https://nationstates.net), top 50449 +263. [leasehackr](https://forum.leasehackr.com/), top 52023 +264. [Plug.DJ](https://plug.dj/), top 54408 +265. [opennet](https://www.opennet.ru/), top 60553 +266. [F3.cool](https://f3.cool/), top 63673 +267. [TryHackMe](https://tryhackme.com/), top 63954 +268. [datingRU](http://dating.ru), top 64468 +269. [Bookcrossing](https://www.bookcrossing.com/), top 65247 +270. [Keybase](https://keybase.io/), top 69845 +271. [travellerspoint](https://www.travellerspoint.com), top 70567 +272. [RoyalCams](https://royalcams.com), top 70620 +273. [Pling](https://www.pling.com/), top 84073 +274. [eGPU](https://egpu.io/), top 95870 +275. [Asciinema](https://asciinema.org), top 97245 +276. [TamTam](https://tamtam.chat/), top 101559 +277. [Clozemaster](https://www.clozemaster.com), top 103354 +278. [devRant](https://devrant.com/), top 105382 +279. [Velomania](https://forum.velomania.ru/), top 109380 +280. [phpRU](https://php.ru/forum/), top 110921 +281. [Munzee](https://www.munzee.com/), top 112784 +282. [GunsAndAmmo](https://gunsandammo.com/), top 121032 +283. [radioskot](https://radioskot.ru/), top 126995 +284. [hunting](https://www.hunting.ru/forum/), top 134143 +285. [Cent](https://cent.co/), top 144206 +286. [KanoWorld](https://world.kano.me/), top 149633 +287. [BLIP.fm](https://blip.fm/), top 154353 +288. [moikrug](https://moikrug.ru/), top 159862 +289. [polarsteps](https://polarsteps.com/), top 165137 +290. [Crevado](https://crevado.com/), top 171333 +291. [Steamid](https://steamid.uk/), top 180541 +292. [Lobsters](https://lobste.rs/), top 184124 +293. [Whonix Forum](https://forums.whonix.org/), top 219087 +294. [notabug.org](https://notabug.org/), top 222036 +295. [satsisRU](https://satsis.info/), top 227916 +296. [Smashcast](https://www.smashcast.tv/), top 235099 +297. [pvpru](https://pvpru.com/), top 249429 +298. [Avizo](https://www.avizo.cz/), top 278226 +299. [Hubski](https://hubski.com/), top 326081 +300. [qiwi.me](https://qiwi.me), top 385270 +301. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 386861 +302. [Bazar.cz](https://www.bazar.cz/), top 392156 +303. [eintracht](https://eintracht.de), top 412499 +304. [BinarySearch](https://binarysearch.io/), top 462827 +305. [House-Mixes.com](https://www.house-mixes.com/), top 470463 +306. [social.tchncs.de](https://social.tchncs.de/), top 488923 +307. [BitCoinForum](https://bitcoinforum.com), top 555610 +308. [soylentnews](https://soylentnews.org), top 720769 +309. [ShitpostBot5000](https://www.shitpostbot.com/), top 765789 +310. [Splits.io](https://splits.io), top 771455 +311. [Gam1ng](https://gam1ng.com.br), top 807474 +312. [mastodon.technology](https://mastodon.xyz/), top 962001 +313. [mastodon.xyz](https://mastodon.xyz/), top 962001 +314. [Alik.cz](https://www.alik.cz/), top 994668 +315. [Kik](http://kik.me/), top 1056066 +316. [mastodon.cloud](https://mastodon.cloud/), top 1279812 +317. [tracr.co](https://tracr.co/), top 1294716 +318. [OurDJTalk](https://ourdjtalk.com/), top 1356121 +319. [Signal](https://community.signalusers.org), top 1526361 +320. [mstdn.io](https://mstdn.io/), top 1796064 +321. [chaos.social](https://chaos.social/), top 1957965 +322. [mastodon.social](https://chaos.social/), top 1957965 +323. [labpentestit](https://lab.pentestit.ru/), top 2475978 +324. [Chatujme.cz](https://chatujme.cz/), top 3019547 +325. [svidbook](https://www.svidbook.ru/), top 4083142 +326. [ImgUp.cz](https://imgup.cz/), top 4423341 +327. [GDProfiles](https://gdprofiles.com/), top 6739260 +328. [2Dimensions](https://2Dimensions.com/), top 7383017 +329. [Designspiration](https://www.designspiration.net/), top 7450360 +330. [PokerStrategy](http://www.pokerstrategy.net), top 8114272 +331. [CashMe](https://cash.me/), top 0 +332. [Filmogs](https://www.filmo.gs/), top 0 +333. [nnRU](https://https://www.nn.ru/), top 0 -Alexa.com rank data fetched at (2020-08-09 14:58:13.424073 UTC) +Alexa.com rank data fetched at (2020-08-30 12:31:50.283622 UTC) From 4b94f463b4eaa591094e44c93410fecfea0c4f6d Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 30 Aug 2020 17:00:04 +0300 Subject: [PATCH 36/39] Yet another star update: 10 sites added + alexa rating updated --- maigret/resources/data.json | 142 ++++++++- sites.md | 590 ++++++++++++++++++------------------ 2 files changed, 431 insertions(+), 301 deletions(-) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index a17300a2e..f8b00956f 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -60,6 +60,17 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "9GAG": { + "errorType": "status_code", + "rank": 406, + "tags": [ + "de" + ], + "url": "https://www.9gag.com/u/{}", + "urlMain": "https://www.9gag.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "About.me": { "errorType": "status_code", "rank": 21507, @@ -419,6 +430,19 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis" }, + "CapFriendly": { + "errorMsg": "
No results found
", + "errorType": "message", + "rank": 122808, + "regexCheck": "^[a-zA-z][a-zA-Z0-9_]{2,79}$", + "tags": [ + "ca" + ], + "url": "https://www.capfriendly.com/users/{}", + "urlMain": "https://www.capfriendly.com/", + "username_claimed": "thisactuallyexists", + "username_unclaimed": "noonewouldeverusethis7" + }, "Carbonmade": { "errorType": "response_url", "errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com", @@ -616,6 +640,17 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Countable": { + "errorType": "status_code", + "rank": 128419, + "tags": [ + "us" + ], + "url": "https://www.countable.us/{}", + "urlMain": "https://www.countable.us/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "Cracked": { "errorType": "response_url", "errorUrl": "https://www.cracked.com/", @@ -1528,6 +1563,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "LiveLeak": { + "errorMsg": "channel not found", + "errorType": "message", + "rank": 4125, + "tags": [ + "us" + ], + "url": "https://www.liveleak.com/c/{}", + "urlMain": "https://www.liveleak.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis" + }, "LiveLib": { "errorType": "status_code", "rank": 3874, @@ -1591,6 +1638,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "MeetMe": { + "errorType": "response_url", + "errorUrl": "https://www.meetme.com/", + "rank": 24320, + "tags": [ + "us" + ], + "url": "https://www.meetme.com/{}", + "urlMain": "https://www.meetme.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "Memrise": { "errorType": "response_url", "errorUrl": "https://www.memrise.com/", @@ -2093,6 +2152,19 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Rap-royalty": { + "errorMsg": "This user has not registered and therefore does not have a profile to view.", + "errorType": "message", + "rank": 0, + "tags": [ + "us", + "music" + ], + "url": "http://www.rap-royalty.com/forum/member.php?username={}", + "urlMain": "http://www.rap-royalty.com/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, "Rate Your Music": { "errorType": "status_code", "rank": 5907, @@ -2273,6 +2345,31 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis" }, + "Showme": { + "errorType": "status_code", + "rank": 110496, + "tags": [ + "in", + "us" + ], + "url": "https://www.showme.com/{}", + "urlMain": "https://www.showme.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Shutterstock": { + "errorMsg": "T\u00e4m\u00e4p\u00e4 yll\u00e4tt\u00e4v\u00e4\u00e4...", + "errorType": "message", + "rank": 180, + "tags": [ + "fi", + "us" + ], + "url": "https://www.shutterstock.com/fi/g/{}/about", + "urlMain": "https://www.shutterstock.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Signal": { "errorMsg": "Oops! That page doesn\u2019t exist or is private.", "errorType": "message", @@ -2847,6 +2944,17 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Warrior Forum": { + "errorType": "status_code", + "rank": 3580, + "tags": [ + "us" + ], + "url": "https://www.warriorforum.com/members/{}.html", + "urlMain": "https://www.warriorforum.com/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis77777" + }, "Wattpad": { "errorMsg": "userError-404", "errorType": "message", @@ -2985,6 +3093,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Xbox Gamertag": { + "errorType": "status_code", + "errors": { + "Something went wrong": "Site error", + "Why do I have to complete a CAPTCHA": "Captcha detected" + }, + "rank": 369749, + "url": "https://xboxgamertag.com/search/{}", + "urlMain": "https://xboxgamertag.com/", + "username_claimed": "smrnov", + "username_unclaimed": "noonewouldeverusethis7" + }, "Xvideos": { "errorType": "status_code", "rank": 119, @@ -3646,6 +3766,17 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "nairaland.com": { + "errorType": "status_code", + "rank": 1152, + "tags": [ + "ng" + ], + "url": "https://www.nairaland.com/{}", + "urlMain": "https://www.nairaland.com/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, "nightbot": { "errorType": "status_code", "rank": 9981, @@ -3938,17 +4069,6 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, - "warriorforum": { - "errorType": "status_code", - "rank": 3580, - "tags": [ - "us" - ], - "url": "https://www.warriorforum.com/members/{}.html", - "urlMain": "https://www.warriorforum.com/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis77777" - }, "windy": { "errorType": "status_code", "rank": 1552, diff --git a/sites.md b/sites.md index 83fa1523d..25f2c715e 100644 --- a/sites.md +++ b/sites.md @@ -1,4 +1,4 @@ -## List of supported sites: total 333 +## List of supported sites: total 343 1. [GoogleMaps](https://maps.google.com/), top 1 2. [PlayStore](https://play.google.com/store), top 1 3. [YouTube](https://www.youtube.com/), top 2 @@ -44,293 +44,303 @@ 43. [Pinterest](https://www.pinterest.com/), top 170 44. [Steam](https://steamcommunity.com/), top 176 45. [SteamGroup](https://steamcommunity.com/), top 176 -46. [Wix](https://wix.com/), top 181 -47. [mercadolivre](https://www.mercadolivre.com.br), top 194 -48. [Telegram](https://t.me/), top 240 -49. [DailyMotion](https://www.dailymotion.com/), top 252 -50. [Archive.org](https://archive.org), top 254 -51. [Euw](https://euw.op.gg/), top 270 -52. [Behance](https://www.behance.net/), top 278 -53. [Academia.edu](https://www.academia.edu/), top 305 -54. [Scribd](https://www.scribd.com/), top 306 -55. [Slack](https://slack.com), top 308 -56. [GoodReads](https://www.goodreads.com/), top 323 -57. [Patreon](https://www.patreon.com/), top 327 -58. [Quora](https://www.quora.com/), top 339 -59. [Blogger](https://www.blogger.com/), top 343 -60. [Chess](https://www.chess.com/ru/), top 363 -61. [Fiverr](https://www.fiverr.com/), top 369 -62. [TripAdvisor](https://tripadvisor.com/), top 404 -63. [YouPorn](https://youporn.com), top 434 -64. [Crunchyroll](https://www.crunchyroll.com/), top 448 -65. [LiveJournal](https://www.livejournal.com/), top 452 -66. [SourceForge](https://sourceforge.net/), top 456 -67. [BuzzFeed](https://buzzfeed.com/), top 474 -68. [Duolingo](https://duolingo.com/), top 480 -69. [DeviantART](https://deviantart.com), top 485 -70. [Unsplash](https://unsplash.com/), top 528 -71. [Issuu](https://issuu.com/), top 538 -72. [WordPressOrg](https://wordpress.org/), top 572 -73. [Oracle Community](https://community.oracle.com), top 583 -74. [Gamespot](https://www.gamespot.com/), top 637 -75. [Wattpad](https://www.wattpad.com/), top 656 -76. [Ultimate-Guitar](https://ultimate-guitar.com/), top 663 -77. [Scratch](https://scratch.mit.edu/), top 676 -78. [Giphy](https://giphy.com/), top 686 -79. [Redbubble](https://www.redbubble.com/), top 821 -80. [Strava](https://www.strava.com/), top 837 -81. [note](https://note.com/), top 896 -82. [Tinder](https://tinder.com/), top 941 -83. [MyAnimeList](https://myanimelist.net/), top 967 -84. [Disqus](https://disqus.com/), top 997 -85. [Flickr](https://www.flickr.com/), top 1058 -86. [Bandcamp](https://www.bandcamp.com/), top 1062 -87. [pikabu](https://pikabu.ru/), top 1090 -88. [Discogs](https://www.discogs.com/), top 1163 -89. [T-MobileSupport](https://support.t-mobile.com), top 1188 -90. [gfycat](https://gfycat.com/), top 1206 -91. [segmentfault](https://segmentfault.com/), top 1207 -92. [PCGamer](https://pcgamer.com), top 1215 -93. [Houzz](https://houzz.com/), top 1323 -94. [drive2](https://www.drive2.ru/), top 1333 -95. [radio_echo_msk](https://echo.msk.ru/), top 1396 -96. [Instructables](https://www.instructables.com/), top 1414 -97. [Polygon](https://www.polygon.com/), top 1446 -98. [Championat](https://www.championat.com/), top 1449 -99. [Career.habr](https://career.habr.com/), top 1459 -100. [Freelance.habr](https://freelance.habr.com/), top 1459 -101. [Toster](https://qna.habr.com/), top 1459 -102. [habr](https://habr.com/), top 1459 -103. [Pastebin](https://pastebin.com/), top 1511 -104. [windy](https://windy.com/), top 1552 -105. [Rajce.net](https://www.rajce.idnes.cz/), top 1608 -106. [Dribbble](https://dribbble.com/), top 1621 -107. [CloudflareCommunity](https://community.cloudflare.com/), top 1626 -108. [Otzovik](https://otzovik.com/), top 1696 -109. [BitBucket](https://bitbucket.org/), top 1719 -110. [Badoo](https://badoo.com/), top 1775 -111. [jeuxvideo](http://www.jeuxvideo.com), top 1807 -112. [Zomato](https://www.zomato.com/), top 1811 -113. [Itch.io](https://itch.io/), top 1824 -114. [last.fm](https://last.fm/), top 1930 -115. [irecommend](https://irecommend.ru/), top 2022 -116. [Freelancer.com](https://www.freelancer.com/), top 2023 -117. [aminoapp](https://aminoapps.com/), top 2024 -118. [Myspace](https://myspace.com/), top 2034 -119. [Lichess](https://lichess.org), top 2037 -120. [Flightradar24](https://www.flightradar24.com/), top 2086 -121. [PCPartPicker](https://pcpartpicker.com), top 2139 -122. [LeetCode](https://leetcode.com/), top 2151 -123. [SportsRU](https://www.sports.ru/), top 2182 -124. [metacritic](https://www.metacritic.com/), top 2197 -125. [Codecademy](https://www.codecademy.com/), top 2320 -126. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2346 -127. [4pda](https://4pda.ru/), top 2441 -128. [Virgool](https://virgool.io/), top 2469 -129. [Kaggle](https://www.kaggle.com/), top 2662 -130. [HackerRank](https://hackerrank.com/), top 2705 -131. [MixCloud](https://www.mixcloud.com/), top 2710 -132. [Kongregate](https://www.kongregate.com/), top 2760 -133. [Taringa](https://taringa.net/), top 2851 -134. [CreativeMarket](https://creativemarket.com/), top 2904 -135. [AskFM](https://ask.fm/), top 3165 -136. [We Heart It](https://weheartit.com/), top 3190 -137. [HubPages](https://hubpages.com/), top 3277 -138. [500px](https://500px.com/), top 3382 -139. [AllTrails](https://www.alltrails.com/), top 3417 -140. [GitLab](https://gitlab.com/), top 3467 -141. [Wikidot](http://www.wikidot.com/), top 3471 -142. [Photobucket](https://photobucket.com/), top 3493 -143. [Cracked](https://www.cracked.com/), top 3555 -144. [Docker Hub](https://hub.docker.com/), top 3563 -145. [warriorforum](https://www.warriorforum.com/), top 3580 -146. [pr0gramm](https://pr0gramm.com/), top 3616 -147. [Letterboxd](https://letterboxd.com/), top 3843 -148. [LiveLib](https://www.livelib.ru/), top 3874 -149. [Sporcle](https://www.sporcle.com/), top 3881 -150. [Gumroad](https://www.gumroad.com/), top 3896 -151. [osu!](https://osu.ppy.sh/), top 3960 -152. [Repl.it](https://repl.it/), top 3999 -153. [fixya](https://www.fixya.com), top 4286 -154. [Lolchess](https://lolchess.gg/), top 4440 -155. [Venmo](https://venmo.com/), top 4649 -156. [babyRU](https://www.baby.ru/), top 4709 -157. [VSCO](https://vsco.co/), top 4901 -158. [dailykos](https://www.dailykos.com), top 5233 -159. [Pokemon Showdown](https://pokemonshowdown.com), top 5446 -160. [HackerNews](https://news.ycombinator.com/), top 5862 -161. [Rate Your Music](https://rateyourmusic.com/), top 5907 -162. [VirusTotal](https://www.virustotal.com/), top 5963 -163. [Discuss.Elastic.co](https://discuss.elastic.co/), top 5977 -164. [Stihi.ru](https://www.stihi.ru/), top 6137 -165. [opensource](https://opensource.com/), top 6484 -166. [WikimapiaProfile](http://wikimapia.org), top 6528 -167. [WikimapiaSearch](http://wikimapia.org), top 6528 -168. [kwork](https://www.kwork.ru/), top 6560 -169. [Newgrounds](https://newgrounds.com), top 6634 -170. [NPM](https://www.npmjs.com/), top 6763 -171. [NPM-Package](https://www.npmjs.com/), top 6763 -172. [Aptoide](https://en.aptoide.com/), top 6825 -173. [Freesound](https://freesound.org/), top 6830 -174. [Pinkbike](https://www.pinkbike.com/), top 7014 -175. [SublimeForum](https://forum.sublimetext.com/), top 7069 -176. [BOOTH](https://booth.pm/), top 7090 -177. [DEV Community](https://dev.to/), top 7254 -178. [Memrise](https://www.memrise.com/), top 7318 -179. [Gitee](https://gitee.com/), top 7323 -180. [interpals](https://www.interpals.net/), top 7364 -181. [Audiojungle](https://audiojungle.net/), top 7398 -182. [Trakt](https://www.trakt.tv/), top 7441 -183. [FortniteTracker](https://fortnitetracker.com/challenges), top 7467 -184. [OpenStreetMap](https://www.openstreetmap.org/), top 7551 -185. [Typeracer](https://typeracer.com), top 7650 -186. [3dnews](http://forum.3dnews.ru/), top 7764 -187. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7879 -188. [Flipboard](https://flipboard.com/), top 8006 -189. [Smule](https://www.smule.com/), top 8112 -190. [Gravatar](http://en.gravatar.com/), top 8378 -191. [ReverbNation](https://www.reverbnation.com/), top 8405 -192. [spletnik](https://spletnik.ru/), top 8457 -193. [NICommunityForum](https://www.native-instruments.com/forum/), top 8509 -194. [Codechef](https://www.codechef.com/), top 9125 -195. [Cloob](https://www.cloob.com/), top 9163 -196. [kofi](https://ko-fi.com), top 9165 -197. [Proza.ru](https://www.proza.ru/), top 9217 -198. [Kali community](https://forums.kali.org/), top 9459 -199. [IFTTT](https://www.ifttt.com/), top 9683 -200. [Facenama](https://facenama.com/), top 9885 -201. [F6S](https://f6s.com/), top 9956 -202. [nightbot](https://nightbot.tv/), top 9981 -203. [ProductHunt](https://www.producthunt.com/), top 10118 -204. [Star Citizen](https://robertsspaceindustries.com/), top 10302 -205. [Launchpad](https://launchpad.net/), top 10663 -206. [geocaching](https://www.geocaching.com/), top 10778 -207. [akniga](https://akniga.org/profile/blue/), top 10988 -208. [Speedrun.com](https://speedrun.com/), top 11222 -209. [Teletype](https://teletype.in), top 11356 -210. [getmyuni](https://getmyuni.com/), top 11493 -211. [Coderwall](https://coderwall.com/), top 11529 -212. [Slashdot](https://slashdot.org), top 11734 -213. [PSNProfiles.com](https://psnprofiles.com/), top 11913 -214. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12005 -215. [igromania](http://forum.igromania.ru/), top 12441 -216. [ImageShack](https://imageshack.com/), top 12634 -217. [authorSTREAM](http://www.authorstream.com/), top 12727 -218. [Contently](https://contently.com/), top 13015 -219. [forumhouseRU](https://www.forumhouse.ru/), top 13374 -220. [couchsurfing](https://www.couchsurfing.com/), top 13434 -221. [babyblogRU](https://www.babyblog.ru/), top 14024 -222. [YouNow](https://www.younow.com/), top 14433 -223. [Packagist](https://packagist.org/), top 14574 -224. [Sbazar.cz](https://www.sbazar.cz/), top 14817 -225. [TrashboxRU](https://trashbox.ru/), top 15720 -226. [MyMiniFactory](https://www.myminifactory.com/), top 15754 -227. [EyeEm](https://www.eyeem.com/), top 16741 -228. [sparkpeople](https://www.sparkpeople.com), top 17270 -229. [iMGSRC.RU](https://imgsrc.ru/), top 17299 -230. [Samlib](http://samlib.ru/), top 17781 -231. [HackerOne](https://hackerone.com/), top 18639 -232. [hackster](https://www.hackster.io), top 18904 -233. [Codewars](https://www.codewars.com), top 20095 -234. [allmylinks](https://allmylinks.com/), top 20710 -235. [WebNode](https://www.webnode.cz/), top 20772 -236. [About.me](https://about.me/), top 21507 -237. [Jimdo](https://jimdosite.com/), top 21823 -238. [forum_guns](https://forum.guns.ru/), top 24804 -239. [GuruShots](https://gurushots.com/), top 25199 -240. [Tellonym.me](https://tellonym.me/), top 27984 -241. [Carbonmade](https://carbonmade.com/), top 28082 -242. [Football](https://www.rusfootball.info/), top 29171 -243. [uid](https://uid.me/), top 31878 -244. [Ello](https://ello.co/), top 31924 -245. [Ask Fedora](https://ask.fedoraproject.org/), top 32194 -246. [easyen](https://easyen.ru/), top 32379 -247. [Anobii](https://www.anobii.com/), top 33272 -248. [PromoDJ](http://promodj.com/), top 33958 -249. [YouPic](https://youpic.com/), top 34391 -250. [RubyGems](https://rubygems.org/), top 34845 -251. [OpenCollective](https://opencollective.com/), top 35386 -252. [Periscope](https://www.periscope.tv/), top 35818 -253. [Coroflot](https://coroflot.com/), top 36916 -254. [d3RU](https://d3.ru/), top 37272 -255. [Hackaday](https://hackaday.io/), top 37784 -256. [LOR](https://linux.org.ru/), top 41831 -257. [HackTheBox](https://forum.hackthebox.eu/), top 42311 -258. [Realmeye](https://www.realmeye.com/), top 44925 -259. [7Cups](https://www.7cups.com/), top 45056 -260. [fl](https://www.fl.ru/), top 48605 -261. [NationStates Nation](https://nationstates.net), top 50449 -262. [NationStates Region](https://nationstates.net), top 50449 -263. [leasehackr](https://forum.leasehackr.com/), top 52023 -264. [Plug.DJ](https://plug.dj/), top 54408 -265. [opennet](https://www.opennet.ru/), top 60553 -266. [F3.cool](https://f3.cool/), top 63673 -267. [TryHackMe](https://tryhackme.com/), top 63954 -268. [datingRU](http://dating.ru), top 64468 -269. [Bookcrossing](https://www.bookcrossing.com/), top 65247 -270. [Keybase](https://keybase.io/), top 69845 -271. [travellerspoint](https://www.travellerspoint.com), top 70567 -272. [RoyalCams](https://royalcams.com), top 70620 -273. [Pling](https://www.pling.com/), top 84073 -274. [eGPU](https://egpu.io/), top 95870 -275. [Asciinema](https://asciinema.org), top 97245 -276. [TamTam](https://tamtam.chat/), top 101559 -277. [Clozemaster](https://www.clozemaster.com), top 103354 -278. [devRant](https://devrant.com/), top 105382 -279. [Velomania](https://forum.velomania.ru/), top 109380 -280. [phpRU](https://php.ru/forum/), top 110921 -281. [Munzee](https://www.munzee.com/), top 112784 -282. [GunsAndAmmo](https://gunsandammo.com/), top 121032 -283. [radioskot](https://radioskot.ru/), top 126995 -284. [hunting](https://www.hunting.ru/forum/), top 134143 -285. [Cent](https://cent.co/), top 144206 -286. [KanoWorld](https://world.kano.me/), top 149633 -287. [BLIP.fm](https://blip.fm/), top 154353 -288. [moikrug](https://moikrug.ru/), top 159862 -289. [polarsteps](https://polarsteps.com/), top 165137 -290. [Crevado](https://crevado.com/), top 171333 -291. [Steamid](https://steamid.uk/), top 180541 -292. [Lobsters](https://lobste.rs/), top 184124 -293. [Whonix Forum](https://forums.whonix.org/), top 219087 -294. [notabug.org](https://notabug.org/), top 222036 -295. [satsisRU](https://satsis.info/), top 227916 -296. [Smashcast](https://www.smashcast.tv/), top 235099 -297. [pvpru](https://pvpru.com/), top 249429 -298. [Avizo](https://www.avizo.cz/), top 278226 -299. [Hubski](https://hubski.com/), top 326081 -300. [qiwi.me](https://qiwi.me), top 385270 -301. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 386861 -302. [Bazar.cz](https://www.bazar.cz/), top 392156 -303. [eintracht](https://eintracht.de), top 412499 -304. [BinarySearch](https://binarysearch.io/), top 462827 -305. [House-Mixes.com](https://www.house-mixes.com/), top 470463 -306. [social.tchncs.de](https://social.tchncs.de/), top 488923 -307. [BitCoinForum](https://bitcoinforum.com), top 555610 -308. [soylentnews](https://soylentnews.org), top 720769 -309. [ShitpostBot5000](https://www.shitpostbot.com/), top 765789 -310. [Splits.io](https://splits.io), top 771455 -311. [Gam1ng](https://gam1ng.com.br), top 807474 -312. [mastodon.technology](https://mastodon.xyz/), top 962001 -313. [mastodon.xyz](https://mastodon.xyz/), top 962001 -314. [Alik.cz](https://www.alik.cz/), top 994668 -315. [Kik](http://kik.me/), top 1056066 -316. [mastodon.cloud](https://mastodon.cloud/), top 1279812 -317. [tracr.co](https://tracr.co/), top 1294716 -318. [OurDJTalk](https://ourdjtalk.com/), top 1356121 -319. [Signal](https://community.signalusers.org), top 1526361 -320. [mstdn.io](https://mstdn.io/), top 1796064 -321. [chaos.social](https://chaos.social/), top 1957965 -322. [mastodon.social](https://chaos.social/), top 1957965 -323. [labpentestit](https://lab.pentestit.ru/), top 2475978 -324. [Chatujme.cz](https://chatujme.cz/), top 3019547 -325. [svidbook](https://www.svidbook.ru/), top 4083142 -326. [ImgUp.cz](https://imgup.cz/), top 4423341 -327. [GDProfiles](https://gdprofiles.com/), top 6739260 -328. [2Dimensions](https://2Dimensions.com/), top 7383017 -329. [Designspiration](https://www.designspiration.net/), top 7450360 -330. [PokerStrategy](http://www.pokerstrategy.net), top 8114272 -331. [CashMe](https://cash.me/), top 0 -332. [Filmogs](https://www.filmo.gs/), top 0 -333. [nnRU](https://https://www.nn.ru/), top 0 +46. [Shutterstock](https://www.shutterstock.com), top 180 +47. [Wix](https://wix.com/), top 181 +48. [mercadolivre](https://www.mercadolivre.com.br), top 194 +49. [Telegram](https://t.me/), top 240 +50. [DailyMotion](https://www.dailymotion.com/), top 252 +51. [Archive.org](https://archive.org), top 254 +52. [Euw](https://euw.op.gg/), top 270 +53. [Behance](https://www.behance.net/), top 278 +54. [Academia.edu](https://www.academia.edu/), top 305 +55. [Scribd](https://www.scribd.com/), top 306 +56. [Slack](https://slack.com), top 308 +57. [GoodReads](https://www.goodreads.com/), top 323 +58. [Patreon](https://www.patreon.com/), top 327 +59. [Quora](https://www.quora.com/), top 339 +60. [Blogger](https://www.blogger.com/), top 343 +61. [Chess](https://www.chess.com/ru/), top 363 +62. [Fiverr](https://www.fiverr.com/), top 369 +63. [TripAdvisor](https://tripadvisor.com/), top 404 +64. [9GAG](https://www.9gag.com/), top 406 +65. [YouPorn](https://youporn.com), top 434 +66. [Crunchyroll](https://www.crunchyroll.com/), top 448 +67. [LiveJournal](https://www.livejournal.com/), top 452 +68. [SourceForge](https://sourceforge.net/), top 456 +69. [BuzzFeed](https://buzzfeed.com/), top 474 +70. [Duolingo](https://duolingo.com/), top 480 +71. [DeviantART](https://deviantart.com), top 485 +72. [Unsplash](https://unsplash.com/), top 528 +73. [Issuu](https://issuu.com/), top 538 +74. [WordPressOrg](https://wordpress.org/), top 572 +75. [Oracle Community](https://community.oracle.com), top 583 +76. [Gamespot](https://www.gamespot.com/), top 637 +77. [Wattpad](https://www.wattpad.com/), top 656 +78. [Ultimate-Guitar](https://ultimate-guitar.com/), top 663 +79. [Scratch](https://scratch.mit.edu/), top 676 +80. [Giphy](https://giphy.com/), top 686 +81. [Redbubble](https://www.redbubble.com/), top 821 +82. [Strava](https://www.strava.com/), top 837 +83. [note](https://note.com/), top 896 +84. [Tinder](https://tinder.com/), top 941 +85. [MyAnimeList](https://myanimelist.net/), top 967 +86. [Disqus](https://disqus.com/), top 997 +87. [Flickr](https://www.flickr.com/), top 1058 +88. [Bandcamp](https://www.bandcamp.com/), top 1062 +89. [pikabu](https://pikabu.ru/), top 1090 +90. [nairaland.com](https://www.nairaland.com/), top 1152 +91. [Discogs](https://www.discogs.com/), top 1163 +92. [T-MobileSupport](https://support.t-mobile.com), top 1188 +93. [gfycat](https://gfycat.com/), top 1206 +94. [segmentfault](https://segmentfault.com/), top 1207 +95. [PCGamer](https://pcgamer.com), top 1215 +96. [Houzz](https://houzz.com/), top 1323 +97. [drive2](https://www.drive2.ru/), top 1333 +98. [radio_echo_msk](https://echo.msk.ru/), top 1396 +99. [Instructables](https://www.instructables.com/), top 1414 +100. [Polygon](https://www.polygon.com/), top 1446 +101. [Championat](https://www.championat.com/), top 1449 +102. [Career.habr](https://career.habr.com/), top 1459 +103. [Freelance.habr](https://freelance.habr.com/), top 1459 +104. [Toster](https://qna.habr.com/), top 1459 +105. [habr](https://habr.com/), top 1459 +106. [Pastebin](https://pastebin.com/), top 1511 +107. [windy](https://windy.com/), top 1552 +108. [Rajce.net](https://www.rajce.idnes.cz/), top 1608 +109. [Dribbble](https://dribbble.com/), top 1621 +110. [CloudflareCommunity](https://community.cloudflare.com/), top 1626 +111. [Otzovik](https://otzovik.com/), top 1696 +112. [BitBucket](https://bitbucket.org/), top 1719 +113. [Badoo](https://badoo.com/), top 1775 +114. [jeuxvideo](http://www.jeuxvideo.com), top 1807 +115. [Zomato](https://www.zomato.com/), top 1811 +116. [Itch.io](https://itch.io/), top 1824 +117. [last.fm](https://last.fm/), top 1930 +118. [irecommend](https://irecommend.ru/), top 2022 +119. [Freelancer.com](https://www.freelancer.com/), top 2023 +120. [aminoapp](https://aminoapps.com/), top 2024 +121. [Myspace](https://myspace.com/), top 2034 +122. [Lichess](https://lichess.org), top 2037 +123. [Flightradar24](https://www.flightradar24.com/), top 2086 +124. [PCPartPicker](https://pcpartpicker.com), top 2139 +125. [LeetCode](https://leetcode.com/), top 2151 +126. [SportsRU](https://www.sports.ru/), top 2182 +127. [metacritic](https://www.metacritic.com/), top 2197 +128. [Codecademy](https://www.codecademy.com/), top 2320 +129. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2346 +130. [4pda](https://4pda.ru/), top 2441 +131. [Virgool](https://virgool.io/), top 2469 +132. [Kaggle](https://www.kaggle.com/), top 2662 +133. [HackerRank](https://hackerrank.com/), top 2705 +134. [MixCloud](https://www.mixcloud.com/), top 2710 +135. [Kongregate](https://www.kongregate.com/), top 2760 +136. [Taringa](https://taringa.net/), top 2851 +137. [CreativeMarket](https://creativemarket.com/), top 2904 +138. [AskFM](https://ask.fm/), top 3165 +139. [We Heart It](https://weheartit.com/), top 3190 +140. [HubPages](https://hubpages.com/), top 3277 +141. [500px](https://500px.com/), top 3382 +142. [AllTrails](https://www.alltrails.com/), top 3417 +143. [GitLab](https://gitlab.com/), top 3467 +144. [Wikidot](http://www.wikidot.com/), top 3471 +145. [Photobucket](https://photobucket.com/), top 3493 +146. [Cracked](https://www.cracked.com/), top 3555 +147. [Docker Hub](https://hub.docker.com/), top 3563 +148. [Warrior Forum](https://www.warriorforum.com/), top 3580 +149. [pr0gramm](https://pr0gramm.com/), top 3616 +150. [Letterboxd](https://letterboxd.com/), top 3843 +151. [LiveLib](https://www.livelib.ru/), top 3874 +152. [Sporcle](https://www.sporcle.com/), top 3881 +153. [Gumroad](https://www.gumroad.com/), top 3896 +154. [osu!](https://osu.ppy.sh/), top 3960 +155. [Repl.it](https://repl.it/), top 3999 +156. [LiveLeak](https://www.liveleak.com/), top 4125 +157. [fixya](https://www.fixya.com), top 4286 +158. [Lolchess](https://lolchess.gg/), top 4440 +159. [Venmo](https://venmo.com/), top 4649 +160. [babyRU](https://www.baby.ru/), top 4709 +161. [VSCO](https://vsco.co/), top 4901 +162. [dailykos](https://www.dailykos.com), top 5233 +163. [Pokemon Showdown](https://pokemonshowdown.com), top 5446 +164. [HackerNews](https://news.ycombinator.com/), top 5862 +165. [Rate Your Music](https://rateyourmusic.com/), top 5907 +166. [VirusTotal](https://www.virustotal.com/), top 5963 +167. [Discuss.Elastic.co](https://discuss.elastic.co/), top 5977 +168. [Stihi.ru](https://www.stihi.ru/), top 6137 +169. [opensource](https://opensource.com/), top 6484 +170. [WikimapiaProfile](http://wikimapia.org), top 6528 +171. [WikimapiaSearch](http://wikimapia.org), top 6528 +172. [kwork](https://www.kwork.ru/), top 6560 +173. [Newgrounds](https://newgrounds.com), top 6634 +174. [NPM](https://www.npmjs.com/), top 6763 +175. [NPM-Package](https://www.npmjs.com/), top 6763 +176. [Aptoide](https://en.aptoide.com/), top 6825 +177. [Freesound](https://freesound.org/), top 6830 +178. [Pinkbike](https://www.pinkbike.com/), top 7014 +179. [SublimeForum](https://forum.sublimetext.com/), top 7069 +180. [BOOTH](https://booth.pm/), top 7090 +181. [DEV Community](https://dev.to/), top 7254 +182. [Memrise](https://www.memrise.com/), top 7318 +183. [Gitee](https://gitee.com/), top 7323 +184. [interpals](https://www.interpals.net/), top 7364 +185. [Audiojungle](https://audiojungle.net/), top 7398 +186. [Trakt](https://www.trakt.tv/), top 7441 +187. [FortniteTracker](https://fortnitetracker.com/challenges), top 7467 +188. [OpenStreetMap](https://www.openstreetmap.org/), top 7551 +189. [Typeracer](https://typeracer.com), top 7650 +190. [3dnews](http://forum.3dnews.ru/), top 7764 +191. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7879 +192. [Flipboard](https://flipboard.com/), top 8006 +193. [Smule](https://www.smule.com/), top 8112 +194. [Gravatar](http://en.gravatar.com/), top 8378 +195. [ReverbNation](https://www.reverbnation.com/), top 8405 +196. [spletnik](https://spletnik.ru/), top 8457 +197. [NICommunityForum](https://www.native-instruments.com/forum/), top 8509 +198. [Codechef](https://www.codechef.com/), top 9125 +199. [Cloob](https://www.cloob.com/), top 9163 +200. [kofi](https://ko-fi.com), top 9165 +201. [Proza.ru](https://www.proza.ru/), top 9217 +202. [Kali community](https://forums.kali.org/), top 9459 +203. [IFTTT](https://www.ifttt.com/), top 9683 +204. [Facenama](https://facenama.com/), top 9885 +205. [F6S](https://f6s.com/), top 9956 +206. [nightbot](https://nightbot.tv/), top 9981 +207. [ProductHunt](https://www.producthunt.com/), top 10118 +208. [Star Citizen](https://robertsspaceindustries.com/), top 10302 +209. [Launchpad](https://launchpad.net/), top 10663 +210. [geocaching](https://www.geocaching.com/), top 10778 +211. [akniga](https://akniga.org/profile/blue/), top 10988 +212. [Speedrun.com](https://speedrun.com/), top 11222 +213. [Teletype](https://teletype.in), top 11356 +214. [getmyuni](https://getmyuni.com/), top 11493 +215. [Coderwall](https://coderwall.com/), top 11529 +216. [Slashdot](https://slashdot.org), top 11734 +217. [PSNProfiles.com](https://psnprofiles.com/), top 11913 +218. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12005 +219. [igromania](http://forum.igromania.ru/), top 12441 +220. [ImageShack](https://imageshack.com/), top 12634 +221. [authorSTREAM](http://www.authorstream.com/), top 12727 +222. [Contently](https://contently.com/), top 13015 +223. [forumhouseRU](https://www.forumhouse.ru/), top 13374 +224. [couchsurfing](https://www.couchsurfing.com/), top 13434 +225. [babyblogRU](https://www.babyblog.ru/), top 14024 +226. [YouNow](https://www.younow.com/), top 14433 +227. [Packagist](https://packagist.org/), top 14574 +228. [Sbazar.cz](https://www.sbazar.cz/), top 14817 +229. [TrashboxRU](https://trashbox.ru/), top 15720 +230. [MyMiniFactory](https://www.myminifactory.com/), top 15754 +231. [EyeEm](https://www.eyeem.com/), top 16741 +232. [sparkpeople](https://www.sparkpeople.com), top 17270 +233. [iMGSRC.RU](https://imgsrc.ru/), top 17299 +234. [Samlib](http://samlib.ru/), top 17781 +235. [HackerOne](https://hackerone.com/), top 18639 +236. [hackster](https://www.hackster.io), top 18904 +237. [Codewars](https://www.codewars.com), top 20095 +238. [allmylinks](https://allmylinks.com/), top 20710 +239. [WebNode](https://www.webnode.cz/), top 20772 +240. [About.me](https://about.me/), top 21507 +241. [Jimdo](https://jimdosite.com/), top 21823 +242. [MeetMe](https://www.meetme.com/), top 24320 +243. [forum_guns](https://forum.guns.ru/), top 24804 +244. [GuruShots](https://gurushots.com/), top 25199 +245. [Tellonym.me](https://tellonym.me/), top 27984 +246. [Carbonmade](https://carbonmade.com/), top 28082 +247. [Football](https://www.rusfootball.info/), top 29171 +248. [uid](https://uid.me/), top 31878 +249. [Ello](https://ello.co/), top 31924 +250. [Ask Fedora](https://ask.fedoraproject.org/), top 32194 +251. [easyen](https://easyen.ru/), top 32379 +252. [Anobii](https://www.anobii.com/), top 33272 +253. [PromoDJ](http://promodj.com/), top 33958 +254. [YouPic](https://youpic.com/), top 34391 +255. [RubyGems](https://rubygems.org/), top 34845 +256. [OpenCollective](https://opencollective.com/), top 35386 +257. [Periscope](https://www.periscope.tv/), top 35818 +258. [Coroflot](https://coroflot.com/), top 36916 +259. [d3RU](https://d3.ru/), top 37272 +260. [Hackaday](https://hackaday.io/), top 37784 +261. [LOR](https://linux.org.ru/), top 41831 +262. [HackTheBox](https://forum.hackthebox.eu/), top 42311 +263. [Realmeye](https://www.realmeye.com/), top 44925 +264. [7Cups](https://www.7cups.com/), top 45056 +265. [fl](https://www.fl.ru/), top 48605 +266. [NationStates Nation](https://nationstates.net), top 50449 +267. [NationStates Region](https://nationstates.net), top 50449 +268. [leasehackr](https://forum.leasehackr.com/), top 52023 +269. [Plug.DJ](https://plug.dj/), top 54408 +270. [opennet](https://www.opennet.ru/), top 60553 +271. [F3.cool](https://f3.cool/), top 63673 +272. [TryHackMe](https://tryhackme.com/), top 63954 +273. [datingRU](http://dating.ru), top 64468 +274. [Bookcrossing](https://www.bookcrossing.com/), top 65247 +275. [Keybase](https://keybase.io/), top 69845 +276. [travellerspoint](https://www.travellerspoint.com), top 70567 +277. [RoyalCams](https://royalcams.com), top 70620 +278. [Pling](https://www.pling.com/), top 84073 +279. [eGPU](https://egpu.io/), top 95870 +280. [Asciinema](https://asciinema.org), top 97245 +281. [TamTam](https://tamtam.chat/), top 101559 +282. [Clozemaster](https://www.clozemaster.com), top 103354 +283. [devRant](https://devrant.com/), top 105382 +284. [Velomania](https://forum.velomania.ru/), top 109380 +285. [Showme](https://www.showme.com), top 110496 +286. [phpRU](https://php.ru/forum/), top 110921 +287. [Munzee](https://www.munzee.com/), top 112784 +288. [GunsAndAmmo](https://gunsandammo.com/), top 121032 +289. [CapFriendly](https://www.capfriendly.com/), top 122808 +290. [radioskot](https://radioskot.ru/), top 126995 +291. [Countable](https://www.countable.us/), top 128419 +292. [hunting](https://www.hunting.ru/forum/), top 134143 +293. [Cent](https://cent.co/), top 144206 +294. [KanoWorld](https://world.kano.me/), top 149633 +295. [BLIP.fm](https://blip.fm/), top 154353 +296. [moikrug](https://moikrug.ru/), top 159862 +297. [polarsteps](https://polarsteps.com/), top 165137 +298. [Crevado](https://crevado.com/), top 171333 +299. [Steamid](https://steamid.uk/), top 180541 +300. [Lobsters](https://lobste.rs/), top 184124 +301. [Whonix Forum](https://forums.whonix.org/), top 219087 +302. [notabug.org](https://notabug.org/), top 222036 +303. [satsisRU](https://satsis.info/), top 227916 +304. [Smashcast](https://www.smashcast.tv/), top 235099 +305. [pvpru](https://pvpru.com/), top 249429 +306. [Avizo](https://www.avizo.cz/), top 278226 +307. [Hubski](https://hubski.com/), top 326081 +308. [Xbox Gamertag](https://xboxgamertag.com/), top 369749 +309. [qiwi.me](https://qiwi.me), top 385270 +310. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 386861 +311. [Bazar.cz](https://www.bazar.cz/), top 392156 +312. [eintracht](https://eintracht.de), top 412499 +313. [BinarySearch](https://binarysearch.io/), top 462827 +314. [House-Mixes.com](https://www.house-mixes.com/), top 470463 +315. [social.tchncs.de](https://social.tchncs.de/), top 488923 +316. [BitCoinForum](https://bitcoinforum.com), top 555610 +317. [soylentnews](https://soylentnews.org), top 720769 +318. [ShitpostBot5000](https://www.shitpostbot.com/), top 765789 +319. [Splits.io](https://splits.io), top 771455 +320. [Gam1ng](https://gam1ng.com.br), top 807474 +321. [mastodon.technology](https://mastodon.xyz/), top 962001 +322. [mastodon.xyz](https://mastodon.xyz/), top 962001 +323. [Alik.cz](https://www.alik.cz/), top 994668 +324. [Kik](http://kik.me/), top 1056066 +325. [mastodon.cloud](https://mastodon.cloud/), top 1279812 +326. [tracr.co](https://tracr.co/), top 1294716 +327. [OurDJTalk](https://ourdjtalk.com/), top 1356121 +328. [Signal](https://community.signalusers.org), top 1526361 +329. [mstdn.io](https://mstdn.io/), top 1796064 +330. [chaos.social](https://chaos.social/), top 1957965 +331. [mastodon.social](https://chaos.social/), top 1957965 +332. [labpentestit](https://lab.pentestit.ru/), top 2475978 +333. [Chatujme.cz](https://chatujme.cz/), top 3019547 +334. [svidbook](https://www.svidbook.ru/), top 4083142 +335. [ImgUp.cz](https://imgup.cz/), top 4423341 +336. [GDProfiles](https://gdprofiles.com/), top 6739260 +337. [2Dimensions](https://2Dimensions.com/), top 7383017 +338. [Designspiration](https://www.designspiration.net/), top 7450360 +339. [PokerStrategy](http://www.pokerstrategy.net), top 8114272 +340. [CashMe](https://cash.me/), top 0 +341. [Filmogs](https://www.filmo.gs/), top 0 +342. [nnRU](https://https://www.nn.ru/), top 0 +343. [Rap-royalty](http://www.rap-royalty.com/), top 0 -Alexa.com rank data fetched at (2020-08-30 12:31:50.283622 UTC) +Alexa.com rank data fetched at (2020-08-30 13:59:23.997682 UTC) From 7c5fbf4748d92c2c01a44ec33cd1cccb3e4795ba Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 30 Aug 2020 22:15:52 +0300 Subject: [PATCH 37/39] Two stars update: 20 sites added, #3 issue fix --- maigret/maigret.py | 2 +- maigret/resources/data.json | 254 ++++++++++++++ sites.md | 676 +++++++++++++++++++----------------- update_site_data.py | 11 +- 4 files changed, 609 insertions(+), 334 deletions(-) diff --git a/maigret/maigret.py b/maigret/maigret.py index 4e288534c..1a62629f6 100644 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -345,7 +345,7 @@ def parse_cookies(cookies_str): # Detect failures such as a country restriction for text, comment in failure_errors.items(): - if r.text and text in r.text: + if not r is None and r.text and text in r.text: error_context = "Some error" error_text = comment break diff --git a/maigret/resources/data.json b/maigret/resources/data.json index f8b00956f..efcb4b02d 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -114,6 +114,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis" }, + "Allods": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://allods.mail.ru/forums/member.php?username={}", + "urlMain": "https://allods.mail.ru", + "username_claimed": "wizard", + "username_unclaimed": "noonewouldeverusethis7" + }, "Anobii": { "errorType": "response_url", "rank": 33272, @@ -159,6 +171,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "ArcheageRU": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://aa.mail.ru/forums/member.php?username={}", + "urlMain": "https://aa.mail.ru", + "username_claimed": "wizard", + "username_unclaimed": "noonewouldeverusethis7" + }, "Archive.org": { "errorMsg": "cannot find account", "errorType": "message", @@ -171,6 +195,20 @@ "username_claimed": "blue", "username_unclaimed": "noonewould" }, + "Armchairgm": { + "errorMsg": "does not exist or has never logged in on this", + "errorType": "message", + "rank": 90, + "tags": [ + "global", + "us", + "wiki" + ], + "url": "https://armchairgm.fandom.com/wiki/User:{}", + "urlMain": "https://armchairgm.fandom.com/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, "Asciinema": { "errorType": "status_code", "rank": 97245, @@ -282,6 +320,20 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Battleraprus": { + "errorMsg": "\u041d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438", + "errorType": "message", + "rank": 90, + "tags": [ + "ru", + "us", + "wiki" + ], + "url": "https://battleraprus.fandom.com/ru/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", + "urlMain": "https://battleraprus.fandom.com/ru", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Bazar.cz": { "errorType": "response_url", "errorUrl": "https://www.bazar.cz/error404.aspx", @@ -348,6 +400,20 @@ "username_claimed": "bitcoinforum.com", "username_unclaimed": "noonewouldeverusethis7" }, + "BleachFandom": { + "errorMsg": "\u041d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438", + "errorType": "message", + "rank": 90, + "tags": [ + "ru", + "us", + "wiki" + ], + "url": "https://bleach.fandom.com/ru/wiki/%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:{}", + "urlMain": "https://bleach.fandom.com/ru", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Blogger": { "errorType": "status_code", "rank": 343, @@ -691,6 +757,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Crossfire": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://cfire.mail.ru/forums/member.php?username={}", + "urlMain": "https://cfire.mail.ru", + "username_claimed": "wizard", + "username_unclaimed": "noonewouldeverusethis7" + }, "Crunchyroll": { "errorType": "status_code", "rank": 448, @@ -903,6 +981,7 @@ "tags": [ "in" ], + "request_head_only": false, "url": "https://www.f6s.com/{}", "urlMain": "https://f6s.com/", "username_claimed": "vidheeshnacode", @@ -1625,6 +1704,30 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Lostark": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://la.mail.ru/forums/member.php?username={}", + "urlMain": "https://la.mail.ru", + "username_claimed": "wizard", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Love.Mail.ru": { + "errorMsg": "\u0417\u043d\u0430\u043a\u043e\u043c\u0441\u0442\u0432\u0430@Mail.Ru", + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://love.mail.ru/ru/{}", + "urlMain": "https://love.mail.ru", + "username_claimed": "irina_627", + "username_unclaimed": "noonewouldeverusethis7" + }, "Medium": { "errorMsg": "We couldn\u2019t find this page.", "errorType": "message", @@ -1698,6 +1801,78 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "My.Mail.ru@bk.ru": { + "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://my.mail.ru/bk/{}/", + "urlMain": "https://my.mail.ru/", + "username_claimed": "tanyagorohova", + "username_unclaimed": "noonewouldeverusethis7" + }, + "My.Mail.ru@gmail.com": { + "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://my.mail.ru/gmail.com/{}/", + "urlMain": "https://my.mail.ru/", + "username_claimed": "chelsea121232", + "username_unclaimed": "noonewouldeverusethis7" + }, + "My.Mail.ru@list.ru": { + "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://my.mail.ru/list/{}/", + "urlMain": "https://my.mail.ru/", + "username_claimed": "nickname", + "username_unclaimed": "noonewouldeverusethis7" + }, + "My.Mail.ru@mail.ru": { + "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://my.mail.ru/mail/{}/", + "urlMain": "https://my.mail.ru/", + "username_claimed": "nickname", + "username_unclaimed": "noonewouldeverusethis7" + }, + "My.Mail.ru@ya.ru": { + "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://my.mail.ru/ya.ru/{}/", + "urlMain": "https://my.mail.ru/", + "username_claimed": "hovsepovich", + "username_unclaimed": "noonewouldeverusethis7" + }, + "My.Mail.ru@yandex.ru": { + "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://my.mail.ru/yandex.ru/{}/", + "urlMain": "https://my.mail.ru/", + "username_claimed": "proftek2015", + "username_unclaimed": "noonewouldeverusethis7" + }, "MyAnimeList": { "errorType": "status_code", "rank": 967, @@ -1966,6 +2141,33 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "PerfectWorld": { + "errorMsg": "Perfect World", + "errorType": "message", + "rank": 55, + "tags": [ + "gaming", + "ru" + ], + "url": "https://pw.mail.ru/member.php?username={}", + "urlMain": "https://pw.mail.ru", + "username_claimed": "Wedm", + "username_unclaimed": "noonewouldeverusethis7" + }, + "PerfectWorldForum": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", + "errorType": "message", + "rank": 55, + "tags": [ + "forum", + "gaming", + "ru" + ], + "url": "https://pw.mail.ru/forums/member.php?username={}", + "urlMain": "https://pw.mail.ru/", + "username_claimed": "wizard", + "username_unclaimed": "noonewouldeverusethis7" + }, "Periscope": { "errorType": "status_code", "rank": 35818, @@ -2237,6 +2439,20 @@ "username_claimed": "John_Smith", "username_unclaimed": "noonewould_everusethis7" }, + "Revelation": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", + "errorType": "message", + "rank": 55, + "tags": [ + "forum", + "gaming", + "ru" + ], + "url": "https://rev.mail.ru/forums/member.php?username={}", + "urlMain": "https://rev.mail.ru", + "username_claimed": "wizard", + "username_unclaimed": "noonewouldeverusethis7" + }, "ReverbNation": { "errorMsg": "Sorry, we couldn't find that page", "errorType": "message", @@ -2634,6 +2850,20 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Tanks": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", + "errorType": "message", + "rank": 55, + "tags": [ + "forum", + "gaming", + "ru" + ], + "url": "https://tanks.mail.ru/forum/member.php?username={}", + "urlMain": "https://tanks.mail.ru", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, "Taringa": { "errorType": "status_code", "rank": 2851, @@ -2944,6 +3174,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Warface": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", + "errorType": "message", + "rank": 55, + "tags": [ + "ru" + ], + "url": "https://wf.mail.ru/forums/member.php?username={}", + "urlMain": "https://wf.mail.ru", + "username_claimed": "wizard", + "username_unclaimed": "noonewouldeverusethis7" + }, "Warrior Forum": { "errorType": "status_code", "rank": 3580, @@ -3130,6 +3372,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis77777" }, + "YandexBugbounty": { + "errorType": "status_code", + "rank": 52, + "tags": [ + "global", + "ru" + ], + "url": "https://yandex.ru/bugbounty/researchers/{}/", + "urlMain": "https://yandex.ru/bugbounty/", + "username_claimed": "pyrk1", + "username_unclaimed": "noonewouldeverusethis7" + }, "YandexCollection": { "errorType": "status_code", "errors": { diff --git a/sites.md b/sites.md index 25f2c715e..5003f2b6b 100644 --- a/sites.md +++ b/sites.md @@ -1,4 +1,4 @@ -## List of supported sites: total 343 +## List of supported sites: total 363 1. [GoogleMaps](https://maps.google.com/), top 1 2. [PlayStore](https://play.google.com/store), top 1 3. [YouTube](https://www.youtube.com/), top 2 @@ -16,331 +16,351 @@ 15. [AppleDeveloper](https://developer.apple.com/forums), top 50 16. [AppleDiscussions](https://discussions.apple.com/), top 50 17. [Yandex](https://yandex.ru/), top 52 -18. [YandexCollection](https://yandex.ru/collections/), top 52 -19. [YandexLocal](https://local.yandex.ru/), top 52 -20. [YandexMusic](https://music.yandex.ru/), top 52 -21. [YandexZnatoki](https://yandex.ru/q/), top 52 -22. [Pornhub](https://pornhub.com/), top 53 -23. [WordPress](https://wordpress.com), top 56 -24. [ChaturBate](https://chaturbate.com), top 59 -25. [Twitter](https://www.twitter.com/), top 60 -26. [OK](https://ok.ru/), top 61 -27. [Spotify](https://open.spotify.com/), top 87 -28. [Fandom](https://www.fandom.com/), top 90 -29. [SoundCloud](https://soundcloud.com/), top 95 -30. [Etsy](https://www.etsy.com/), top 97 -31. [Medium](https://medium.com/), top 98 -32. [GitHub](https://www.github.com/), top 102 -33. [Roblox](https://www.roblox.com/), top 110 -34. [Xvideos](https://xvideos.com/), top 119 -35. [TradingView](https://www.tradingview.com/), top 131 -36. [xHamster](https://xhamster.com), top 141 -37. [CNET](https://www.cnet.com/), top 148 -38. [Zhihu](https://www.zhihu.com/), top 152 -39. [Trello](https://trello.com/), top 154 -40. [SlideShare](https://slideshare.net/), top 156 -41. [ResearchGate](https://www.researchgate.net/), top 160 -42. [Vimeo](https://vimeo.com/), top 161 -43. [Pinterest](https://www.pinterest.com/), top 170 -44. [Steam](https://steamcommunity.com/), top 176 -45. [SteamGroup](https://steamcommunity.com/), top 176 -46. [Shutterstock](https://www.shutterstock.com), top 180 -47. [Wix](https://wix.com/), top 181 -48. [mercadolivre](https://www.mercadolivre.com.br), top 194 -49. [Telegram](https://t.me/), top 240 -50. [DailyMotion](https://www.dailymotion.com/), top 252 -51. [Archive.org](https://archive.org), top 254 -52. [Euw](https://euw.op.gg/), top 270 -53. [Behance](https://www.behance.net/), top 278 -54. [Academia.edu](https://www.academia.edu/), top 305 -55. [Scribd](https://www.scribd.com/), top 306 -56. [Slack](https://slack.com), top 308 -57. [GoodReads](https://www.goodreads.com/), top 323 -58. [Patreon](https://www.patreon.com/), top 327 -59. [Quora](https://www.quora.com/), top 339 -60. [Blogger](https://www.blogger.com/), top 343 -61. [Chess](https://www.chess.com/ru/), top 363 -62. [Fiverr](https://www.fiverr.com/), top 369 -63. [TripAdvisor](https://tripadvisor.com/), top 404 -64. [9GAG](https://www.9gag.com/), top 406 -65. [YouPorn](https://youporn.com), top 434 -66. [Crunchyroll](https://www.crunchyroll.com/), top 448 -67. [LiveJournal](https://www.livejournal.com/), top 452 -68. [SourceForge](https://sourceforge.net/), top 456 -69. [BuzzFeed](https://buzzfeed.com/), top 474 -70. [Duolingo](https://duolingo.com/), top 480 -71. [DeviantART](https://deviantart.com), top 485 -72. [Unsplash](https://unsplash.com/), top 528 -73. [Issuu](https://issuu.com/), top 538 -74. [WordPressOrg](https://wordpress.org/), top 572 -75. [Oracle Community](https://community.oracle.com), top 583 -76. [Gamespot](https://www.gamespot.com/), top 637 -77. [Wattpad](https://www.wattpad.com/), top 656 -78. [Ultimate-Guitar](https://ultimate-guitar.com/), top 663 -79. [Scratch](https://scratch.mit.edu/), top 676 -80. [Giphy](https://giphy.com/), top 686 -81. [Redbubble](https://www.redbubble.com/), top 821 -82. [Strava](https://www.strava.com/), top 837 -83. [note](https://note.com/), top 896 -84. [Tinder](https://tinder.com/), top 941 -85. [MyAnimeList](https://myanimelist.net/), top 967 -86. [Disqus](https://disqus.com/), top 997 -87. [Flickr](https://www.flickr.com/), top 1058 -88. [Bandcamp](https://www.bandcamp.com/), top 1062 -89. [pikabu](https://pikabu.ru/), top 1090 -90. [nairaland.com](https://www.nairaland.com/), top 1152 -91. [Discogs](https://www.discogs.com/), top 1163 -92. [T-MobileSupport](https://support.t-mobile.com), top 1188 -93. [gfycat](https://gfycat.com/), top 1206 -94. [segmentfault](https://segmentfault.com/), top 1207 -95. [PCGamer](https://pcgamer.com), top 1215 -96. [Houzz](https://houzz.com/), top 1323 -97. [drive2](https://www.drive2.ru/), top 1333 -98. [radio_echo_msk](https://echo.msk.ru/), top 1396 -99. [Instructables](https://www.instructables.com/), top 1414 -100. [Polygon](https://www.polygon.com/), top 1446 -101. [Championat](https://www.championat.com/), top 1449 -102. [Career.habr](https://career.habr.com/), top 1459 -103. [Freelance.habr](https://freelance.habr.com/), top 1459 -104. [Toster](https://qna.habr.com/), top 1459 -105. [habr](https://habr.com/), top 1459 -106. [Pastebin](https://pastebin.com/), top 1511 -107. [windy](https://windy.com/), top 1552 -108. [Rajce.net](https://www.rajce.idnes.cz/), top 1608 -109. [Dribbble](https://dribbble.com/), top 1621 -110. [CloudflareCommunity](https://community.cloudflare.com/), top 1626 -111. [Otzovik](https://otzovik.com/), top 1696 -112. [BitBucket](https://bitbucket.org/), top 1719 -113. [Badoo](https://badoo.com/), top 1775 -114. [jeuxvideo](http://www.jeuxvideo.com), top 1807 -115. [Zomato](https://www.zomato.com/), top 1811 -116. [Itch.io](https://itch.io/), top 1824 -117. [last.fm](https://last.fm/), top 1930 -118. [irecommend](https://irecommend.ru/), top 2022 -119. [Freelancer.com](https://www.freelancer.com/), top 2023 -120. [aminoapp](https://aminoapps.com/), top 2024 -121. [Myspace](https://myspace.com/), top 2034 -122. [Lichess](https://lichess.org), top 2037 -123. [Flightradar24](https://www.flightradar24.com/), top 2086 -124. [PCPartPicker](https://pcpartpicker.com), top 2139 -125. [LeetCode](https://leetcode.com/), top 2151 -126. [SportsRU](https://www.sports.ru/), top 2182 -127. [metacritic](https://www.metacritic.com/), top 2197 -128. [Codecademy](https://www.codecademy.com/), top 2320 -129. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2346 -130. [4pda](https://4pda.ru/), top 2441 -131. [Virgool](https://virgool.io/), top 2469 -132. [Kaggle](https://www.kaggle.com/), top 2662 -133. [HackerRank](https://hackerrank.com/), top 2705 -134. [MixCloud](https://www.mixcloud.com/), top 2710 -135. [Kongregate](https://www.kongregate.com/), top 2760 -136. [Taringa](https://taringa.net/), top 2851 -137. [CreativeMarket](https://creativemarket.com/), top 2904 -138. [AskFM](https://ask.fm/), top 3165 -139. [We Heart It](https://weheartit.com/), top 3190 -140. [HubPages](https://hubpages.com/), top 3277 -141. [500px](https://500px.com/), top 3382 -142. [AllTrails](https://www.alltrails.com/), top 3417 -143. [GitLab](https://gitlab.com/), top 3467 -144. [Wikidot](http://www.wikidot.com/), top 3471 -145. [Photobucket](https://photobucket.com/), top 3493 -146. [Cracked](https://www.cracked.com/), top 3555 -147. [Docker Hub](https://hub.docker.com/), top 3563 -148. [Warrior Forum](https://www.warriorforum.com/), top 3580 -149. [pr0gramm](https://pr0gramm.com/), top 3616 -150. [Letterboxd](https://letterboxd.com/), top 3843 -151. [LiveLib](https://www.livelib.ru/), top 3874 -152. [Sporcle](https://www.sporcle.com/), top 3881 -153. [Gumroad](https://www.gumroad.com/), top 3896 -154. [osu!](https://osu.ppy.sh/), top 3960 -155. [Repl.it](https://repl.it/), top 3999 -156. [LiveLeak](https://www.liveleak.com/), top 4125 -157. [fixya](https://www.fixya.com), top 4286 -158. [Lolchess](https://lolchess.gg/), top 4440 -159. [Venmo](https://venmo.com/), top 4649 -160. [babyRU](https://www.baby.ru/), top 4709 -161. [VSCO](https://vsco.co/), top 4901 -162. [dailykos](https://www.dailykos.com), top 5233 -163. [Pokemon Showdown](https://pokemonshowdown.com), top 5446 -164. [HackerNews](https://news.ycombinator.com/), top 5862 -165. [Rate Your Music](https://rateyourmusic.com/), top 5907 -166. [VirusTotal](https://www.virustotal.com/), top 5963 -167. [Discuss.Elastic.co](https://discuss.elastic.co/), top 5977 -168. [Stihi.ru](https://www.stihi.ru/), top 6137 -169. [opensource](https://opensource.com/), top 6484 -170. [WikimapiaProfile](http://wikimapia.org), top 6528 -171. [WikimapiaSearch](http://wikimapia.org), top 6528 -172. [kwork](https://www.kwork.ru/), top 6560 -173. [Newgrounds](https://newgrounds.com), top 6634 -174. [NPM](https://www.npmjs.com/), top 6763 -175. [NPM-Package](https://www.npmjs.com/), top 6763 -176. [Aptoide](https://en.aptoide.com/), top 6825 -177. [Freesound](https://freesound.org/), top 6830 -178. [Pinkbike](https://www.pinkbike.com/), top 7014 -179. [SublimeForum](https://forum.sublimetext.com/), top 7069 -180. [BOOTH](https://booth.pm/), top 7090 -181. [DEV Community](https://dev.to/), top 7254 -182. [Memrise](https://www.memrise.com/), top 7318 -183. [Gitee](https://gitee.com/), top 7323 -184. [interpals](https://www.interpals.net/), top 7364 -185. [Audiojungle](https://audiojungle.net/), top 7398 -186. [Trakt](https://www.trakt.tv/), top 7441 -187. [FortniteTracker](https://fortnitetracker.com/challenges), top 7467 -188. [OpenStreetMap](https://www.openstreetmap.org/), top 7551 -189. [Typeracer](https://typeracer.com), top 7650 -190. [3dnews](http://forum.3dnews.ru/), top 7764 -191. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7879 -192. [Flipboard](https://flipboard.com/), top 8006 -193. [Smule](https://www.smule.com/), top 8112 -194. [Gravatar](http://en.gravatar.com/), top 8378 -195. [ReverbNation](https://www.reverbnation.com/), top 8405 -196. [spletnik](https://spletnik.ru/), top 8457 -197. [NICommunityForum](https://www.native-instruments.com/forum/), top 8509 -198. [Codechef](https://www.codechef.com/), top 9125 -199. [Cloob](https://www.cloob.com/), top 9163 -200. [kofi](https://ko-fi.com), top 9165 -201. [Proza.ru](https://www.proza.ru/), top 9217 -202. [Kali community](https://forums.kali.org/), top 9459 -203. [IFTTT](https://www.ifttt.com/), top 9683 -204. [Facenama](https://facenama.com/), top 9885 -205. [F6S](https://f6s.com/), top 9956 -206. [nightbot](https://nightbot.tv/), top 9981 -207. [ProductHunt](https://www.producthunt.com/), top 10118 -208. [Star Citizen](https://robertsspaceindustries.com/), top 10302 -209. [Launchpad](https://launchpad.net/), top 10663 -210. [geocaching](https://www.geocaching.com/), top 10778 -211. [akniga](https://akniga.org/profile/blue/), top 10988 -212. [Speedrun.com](https://speedrun.com/), top 11222 -213. [Teletype](https://teletype.in), top 11356 -214. [getmyuni](https://getmyuni.com/), top 11493 -215. [Coderwall](https://coderwall.com/), top 11529 -216. [Slashdot](https://slashdot.org), top 11734 -217. [PSNProfiles.com](https://psnprofiles.com/), top 11913 -218. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12005 -219. [igromania](http://forum.igromania.ru/), top 12441 -220. [ImageShack](https://imageshack.com/), top 12634 -221. [authorSTREAM](http://www.authorstream.com/), top 12727 -222. [Contently](https://contently.com/), top 13015 -223. [forumhouseRU](https://www.forumhouse.ru/), top 13374 -224. [couchsurfing](https://www.couchsurfing.com/), top 13434 -225. [babyblogRU](https://www.babyblog.ru/), top 14024 -226. [YouNow](https://www.younow.com/), top 14433 -227. [Packagist](https://packagist.org/), top 14574 -228. [Sbazar.cz](https://www.sbazar.cz/), top 14817 -229. [TrashboxRU](https://trashbox.ru/), top 15720 -230. [MyMiniFactory](https://www.myminifactory.com/), top 15754 -231. [EyeEm](https://www.eyeem.com/), top 16741 -232. [sparkpeople](https://www.sparkpeople.com), top 17270 -233. [iMGSRC.RU](https://imgsrc.ru/), top 17299 -234. [Samlib](http://samlib.ru/), top 17781 -235. [HackerOne](https://hackerone.com/), top 18639 -236. [hackster](https://www.hackster.io), top 18904 -237. [Codewars](https://www.codewars.com), top 20095 -238. [allmylinks](https://allmylinks.com/), top 20710 -239. [WebNode](https://www.webnode.cz/), top 20772 -240. [About.me](https://about.me/), top 21507 -241. [Jimdo](https://jimdosite.com/), top 21823 -242. [MeetMe](https://www.meetme.com/), top 24320 -243. [forum_guns](https://forum.guns.ru/), top 24804 -244. [GuruShots](https://gurushots.com/), top 25199 -245. [Tellonym.me](https://tellonym.me/), top 27984 -246. [Carbonmade](https://carbonmade.com/), top 28082 -247. [Football](https://www.rusfootball.info/), top 29171 -248. [uid](https://uid.me/), top 31878 -249. [Ello](https://ello.co/), top 31924 -250. [Ask Fedora](https://ask.fedoraproject.org/), top 32194 -251. [easyen](https://easyen.ru/), top 32379 -252. [Anobii](https://www.anobii.com/), top 33272 -253. [PromoDJ](http://promodj.com/), top 33958 -254. [YouPic](https://youpic.com/), top 34391 -255. [RubyGems](https://rubygems.org/), top 34845 -256. [OpenCollective](https://opencollective.com/), top 35386 -257. [Periscope](https://www.periscope.tv/), top 35818 -258. [Coroflot](https://coroflot.com/), top 36916 -259. [d3RU](https://d3.ru/), top 37272 -260. [Hackaday](https://hackaday.io/), top 37784 -261. [LOR](https://linux.org.ru/), top 41831 -262. [HackTheBox](https://forum.hackthebox.eu/), top 42311 -263. [Realmeye](https://www.realmeye.com/), top 44925 -264. [7Cups](https://www.7cups.com/), top 45056 -265. [fl](https://www.fl.ru/), top 48605 -266. [NationStates Nation](https://nationstates.net), top 50449 -267. [NationStates Region](https://nationstates.net), top 50449 -268. [leasehackr](https://forum.leasehackr.com/), top 52023 -269. [Plug.DJ](https://plug.dj/), top 54408 -270. [opennet](https://www.opennet.ru/), top 60553 -271. [F3.cool](https://f3.cool/), top 63673 -272. [TryHackMe](https://tryhackme.com/), top 63954 -273. [datingRU](http://dating.ru), top 64468 -274. [Bookcrossing](https://www.bookcrossing.com/), top 65247 -275. [Keybase](https://keybase.io/), top 69845 -276. [travellerspoint](https://www.travellerspoint.com), top 70567 -277. [RoyalCams](https://royalcams.com), top 70620 -278. [Pling](https://www.pling.com/), top 84073 -279. [eGPU](https://egpu.io/), top 95870 -280. [Asciinema](https://asciinema.org), top 97245 -281. [TamTam](https://tamtam.chat/), top 101559 -282. [Clozemaster](https://www.clozemaster.com), top 103354 -283. [devRant](https://devrant.com/), top 105382 -284. [Velomania](https://forum.velomania.ru/), top 109380 -285. [Showme](https://www.showme.com), top 110496 -286. [phpRU](https://php.ru/forum/), top 110921 -287. [Munzee](https://www.munzee.com/), top 112784 -288. [GunsAndAmmo](https://gunsandammo.com/), top 121032 -289. [CapFriendly](https://www.capfriendly.com/), top 122808 -290. [radioskot](https://radioskot.ru/), top 126995 -291. [Countable](https://www.countable.us/), top 128419 -292. [hunting](https://www.hunting.ru/forum/), top 134143 -293. [Cent](https://cent.co/), top 144206 -294. [KanoWorld](https://world.kano.me/), top 149633 -295. [BLIP.fm](https://blip.fm/), top 154353 -296. [moikrug](https://moikrug.ru/), top 159862 -297. [polarsteps](https://polarsteps.com/), top 165137 -298. [Crevado](https://crevado.com/), top 171333 -299. [Steamid](https://steamid.uk/), top 180541 -300. [Lobsters](https://lobste.rs/), top 184124 -301. [Whonix Forum](https://forums.whonix.org/), top 219087 -302. [notabug.org](https://notabug.org/), top 222036 -303. [satsisRU](https://satsis.info/), top 227916 -304. [Smashcast](https://www.smashcast.tv/), top 235099 -305. [pvpru](https://pvpru.com/), top 249429 -306. [Avizo](https://www.avizo.cz/), top 278226 -307. [Hubski](https://hubski.com/), top 326081 -308. [Xbox Gamertag](https://xboxgamertag.com/), top 369749 -309. [qiwi.me](https://qiwi.me), top 385270 -310. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 386861 -311. [Bazar.cz](https://www.bazar.cz/), top 392156 -312. [eintracht](https://eintracht.de), top 412499 -313. [BinarySearch](https://binarysearch.io/), top 462827 -314. [House-Mixes.com](https://www.house-mixes.com/), top 470463 -315. [social.tchncs.de](https://social.tchncs.de/), top 488923 -316. [BitCoinForum](https://bitcoinforum.com), top 555610 -317. [soylentnews](https://soylentnews.org), top 720769 -318. [ShitpostBot5000](https://www.shitpostbot.com/), top 765789 -319. [Splits.io](https://splits.io), top 771455 -320. [Gam1ng](https://gam1ng.com.br), top 807474 -321. [mastodon.technology](https://mastodon.xyz/), top 962001 -322. [mastodon.xyz](https://mastodon.xyz/), top 962001 -323. [Alik.cz](https://www.alik.cz/), top 994668 -324. [Kik](http://kik.me/), top 1056066 -325. [mastodon.cloud](https://mastodon.cloud/), top 1279812 -326. [tracr.co](https://tracr.co/), top 1294716 -327. [OurDJTalk](https://ourdjtalk.com/), top 1356121 -328. [Signal](https://community.signalusers.org), top 1526361 -329. [mstdn.io](https://mstdn.io/), top 1796064 -330. [chaos.social](https://chaos.social/), top 1957965 -331. [mastodon.social](https://chaos.social/), top 1957965 -332. [labpentestit](https://lab.pentestit.ru/), top 2475978 -333. [Chatujme.cz](https://chatujme.cz/), top 3019547 -334. [svidbook](https://www.svidbook.ru/), top 4083142 -335. [ImgUp.cz](https://imgup.cz/), top 4423341 -336. [GDProfiles](https://gdprofiles.com/), top 6739260 -337. [2Dimensions](https://2Dimensions.com/), top 7383017 -338. [Designspiration](https://www.designspiration.net/), top 7450360 -339. [PokerStrategy](http://www.pokerstrategy.net), top 8114272 -340. [CashMe](https://cash.me/), top 0 -341. [Filmogs](https://www.filmo.gs/), top 0 -342. [nnRU](https://https://www.nn.ru/), top 0 -343. [Rap-royalty](http://www.rap-royalty.com/), top 0 +18. [YandexBugbounty](https://yandex.ru/bugbounty/), top 52 +19. [YandexCollection](https://yandex.ru/collections/), top 52 +20. [YandexLocal](https://local.yandex.ru/), top 52 +21. [YandexMusic](https://music.yandex.ru/), top 52 +22. [YandexZnatoki](https://yandex.ru/q/), top 52 +23. [Pornhub](https://pornhub.com/), top 53 +24. [Allods](https://allods.mail.ru), top 55 +25. [ArcheageRU](https://aa.mail.ru), top 55 +26. [Crossfire](https://cfire.mail.ru), top 55 +27. [Lostark](https://la.mail.ru), top 55 +28. [Love.Mail.ru](https://love.mail.ru), top 55 +29. [My.Mail.ru@bk.ru](https://my.mail.ru/), top 55 +30. [My.Mail.ru@gmail.com](https://my.mail.ru/), top 55 +31. [My.Mail.ru@list.ru](https://my.mail.ru/), top 55 +32. [My.Mail.ru@mail.ru](https://my.mail.ru/), top 55 +33. [My.Mail.ru@ya.ru](https://my.mail.ru/), top 55 +34. [My.Mail.ru@yandex.ru](https://my.mail.ru/), top 55 +35. [PerfectWorld](https://pw.mail.ru), top 55 +36. [PerfectWorldForum](https://pw.mail.ru/), top 55 +37. [Revelation](https://rev.mail.ru), top 55 +38. [Tanks](https://tanks.mail.ru), top 55 +39. [Warface](https://wf.mail.ru), top 55 +40. [WordPress](https://wordpress.com), top 56 +41. [ChaturBate](https://chaturbate.com), top 59 +42. [Twitter](https://www.twitter.com/), top 60 +43. [OK](https://ok.ru/), top 61 +44. [Spotify](https://open.spotify.com/), top 87 +45. [Armchairgm](https://armchairgm.fandom.com/), top 90 +46. [Battleraprus](https://battleraprus.fandom.com/ru), top 90 +47. [BleachFandom](https://bleach.fandom.com/ru), top 90 +48. [Fandom](https://www.fandom.com/), top 90 +49. [SoundCloud](https://soundcloud.com/), top 95 +50. [Etsy](https://www.etsy.com/), top 97 +51. [Medium](https://medium.com/), top 98 +52. [GitHub](https://www.github.com/), top 102 +53. [Roblox](https://www.roblox.com/), top 110 +54. [Xvideos](https://xvideos.com/), top 119 +55. [TradingView](https://www.tradingview.com/), top 131 +56. [xHamster](https://xhamster.com), top 141 +57. [CNET](https://www.cnet.com/), top 148 +58. [Zhihu](https://www.zhihu.com/), top 152 +59. [Trello](https://trello.com/), top 154 +60. [SlideShare](https://slideshare.net/), top 156 +61. [ResearchGate](https://www.researchgate.net/), top 160 +62. [Vimeo](https://vimeo.com/), top 161 +63. [Pinterest](https://www.pinterest.com/), top 170 +64. [Steam](https://steamcommunity.com/), top 176 +65. [SteamGroup](https://steamcommunity.com/), top 176 +66. [Shutterstock](https://www.shutterstock.com), top 180 +67. [Wix](https://wix.com/), top 181 +68. [mercadolivre](https://www.mercadolivre.com.br), top 194 +69. [Telegram](https://t.me/), top 240 +70. [DailyMotion](https://www.dailymotion.com/), top 252 +71. [Archive.org](https://archive.org), top 254 +72. [Euw](https://euw.op.gg/), top 270 +73. [Behance](https://www.behance.net/), top 278 +74. [Academia.edu](https://www.academia.edu/), top 305 +75. [Scribd](https://www.scribd.com/), top 306 +76. [Slack](https://slack.com), top 308 +77. [GoodReads](https://www.goodreads.com/), top 323 +78. [Patreon](https://www.patreon.com/), top 327 +79. [Quora](https://www.quora.com/), top 339 +80. [Blogger](https://www.blogger.com/), top 343 +81. [Chess](https://www.chess.com/ru/), top 363 +82. [Fiverr](https://www.fiverr.com/), top 369 +83. [TripAdvisor](https://tripadvisor.com/), top 404 +84. [9GAG](https://www.9gag.com/), top 406 +85. [YouPorn](https://youporn.com), top 434 +86. [Crunchyroll](https://www.crunchyroll.com/), top 448 +87. [LiveJournal](https://www.livejournal.com/), top 452 +88. [SourceForge](https://sourceforge.net/), top 456 +89. [BuzzFeed](https://buzzfeed.com/), top 474 +90. [Duolingo](https://duolingo.com/), top 480 +91. [DeviantART](https://deviantart.com), top 485 +92. [Unsplash](https://unsplash.com/), top 528 +93. [Issuu](https://issuu.com/), top 538 +94. [WordPressOrg](https://wordpress.org/), top 572 +95. [Oracle Community](https://community.oracle.com), top 583 +96. [Gamespot](https://www.gamespot.com/), top 637 +97. [Wattpad](https://www.wattpad.com/), top 656 +98. [Ultimate-Guitar](https://ultimate-guitar.com/), top 663 +99. [Scratch](https://scratch.mit.edu/), top 676 +100. [Giphy](https://giphy.com/), top 686 +101. [Redbubble](https://www.redbubble.com/), top 821 +102. [Strava](https://www.strava.com/), top 837 +103. [note](https://note.com/), top 896 +104. [Tinder](https://tinder.com/), top 941 +105. [MyAnimeList](https://myanimelist.net/), top 967 +106. [Disqus](https://disqus.com/), top 997 +107. [Flickr](https://www.flickr.com/), top 1058 +108. [Bandcamp](https://www.bandcamp.com/), top 1062 +109. [pikabu](https://pikabu.ru/), top 1090 +110. [nairaland.com](https://www.nairaland.com/), top 1152 +111. [Discogs](https://www.discogs.com/), top 1163 +112. [T-MobileSupport](https://support.t-mobile.com), top 1188 +113. [gfycat](https://gfycat.com/), top 1206 +114. [segmentfault](https://segmentfault.com/), top 1207 +115. [PCGamer](https://pcgamer.com), top 1215 +116. [Houzz](https://houzz.com/), top 1323 +117. [drive2](https://www.drive2.ru/), top 1333 +118. [radio_echo_msk](https://echo.msk.ru/), top 1396 +119. [Instructables](https://www.instructables.com/), top 1414 +120. [Polygon](https://www.polygon.com/), top 1446 +121. [Championat](https://www.championat.com/), top 1449 +122. [Career.habr](https://career.habr.com/), top 1459 +123. [Freelance.habr](https://freelance.habr.com/), top 1459 +124. [Toster](https://qna.habr.com/), top 1459 +125. [habr](https://habr.com/), top 1459 +126. [Pastebin](https://pastebin.com/), top 1511 +127. [windy](https://windy.com/), top 1552 +128. [Rajce.net](https://www.rajce.idnes.cz/), top 1608 +129. [Dribbble](https://dribbble.com/), top 1621 +130. [CloudflareCommunity](https://community.cloudflare.com/), top 1626 +131. [Otzovik](https://otzovik.com/), top 1696 +132. [BitBucket](https://bitbucket.org/), top 1719 +133. [Badoo](https://badoo.com/), top 1775 +134. [jeuxvideo](http://www.jeuxvideo.com), top 1807 +135. [Zomato](https://www.zomato.com/), top 1811 +136. [Itch.io](https://itch.io/), top 1824 +137. [last.fm](https://last.fm/), top 1930 +138. [irecommend](https://irecommend.ru/), top 2022 +139. [Freelancer.com](https://www.freelancer.com/), top 2023 +140. [aminoapp](https://aminoapps.com/), top 2024 +141. [Myspace](https://myspace.com/), top 2034 +142. [Lichess](https://lichess.org), top 2037 +143. [Flightradar24](https://www.flightradar24.com/), top 2086 +144. [PCPartPicker](https://pcpartpicker.com), top 2139 +145. [LeetCode](https://leetcode.com/), top 2151 +146. [SportsRU](https://www.sports.ru/), top 2182 +147. [metacritic](https://www.metacritic.com/), top 2197 +148. [Codecademy](https://www.codecademy.com/), top 2320 +149. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2346 +150. [4pda](https://4pda.ru/), top 2441 +151. [Virgool](https://virgool.io/), top 2469 +152. [Kaggle](https://www.kaggle.com/), top 2662 +153. [HackerRank](https://hackerrank.com/), top 2705 +154. [MixCloud](https://www.mixcloud.com/), top 2710 +155. [Kongregate](https://www.kongregate.com/), top 2760 +156. [Taringa](https://taringa.net/), top 2851 +157. [CreativeMarket](https://creativemarket.com/), top 2904 +158. [AskFM](https://ask.fm/), top 3165 +159. [We Heart It](https://weheartit.com/), top 3190 +160. [HubPages](https://hubpages.com/), top 3277 +161. [500px](https://500px.com/), top 3382 +162. [AllTrails](https://www.alltrails.com/), top 3417 +163. [GitLab](https://gitlab.com/), top 3467 +164. [Wikidot](http://www.wikidot.com/), top 3471 +165. [Photobucket](https://photobucket.com/), top 3493 +166. [Cracked](https://www.cracked.com/), top 3555 +167. [Docker Hub](https://hub.docker.com/), top 3563 +168. [Warrior Forum](https://www.warriorforum.com/), top 3580 +169. [pr0gramm](https://pr0gramm.com/), top 3616 +170. [Letterboxd](https://letterboxd.com/), top 3843 +171. [LiveLib](https://www.livelib.ru/), top 3874 +172. [Sporcle](https://www.sporcle.com/), top 3881 +173. [Gumroad](https://www.gumroad.com/), top 3896 +174. [osu!](https://osu.ppy.sh/), top 3960 +175. [Repl.it](https://repl.it/), top 3999 +176. [LiveLeak](https://www.liveleak.com/), top 4125 +177. [fixya](https://www.fixya.com), top 4286 +178. [Lolchess](https://lolchess.gg/), top 4440 +179. [Venmo](https://venmo.com/), top 4649 +180. [babyRU](https://www.baby.ru/), top 4709 +181. [VSCO](https://vsco.co/), top 4901 +182. [dailykos](https://www.dailykos.com), top 5233 +183. [Pokemon Showdown](https://pokemonshowdown.com), top 5446 +184. [HackerNews](https://news.ycombinator.com/), top 5862 +185. [Rate Your Music](https://rateyourmusic.com/), top 5907 +186. [VirusTotal](https://www.virustotal.com/), top 5963 +187. [Discuss.Elastic.co](https://discuss.elastic.co/), top 5977 +188. [Stihi.ru](https://www.stihi.ru/), top 6137 +189. [opensource](https://opensource.com/), top 6484 +190. [WikimapiaProfile](http://wikimapia.org), top 6528 +191. [WikimapiaSearch](http://wikimapia.org), top 6528 +192. [kwork](https://www.kwork.ru/), top 6560 +193. [Newgrounds](https://newgrounds.com), top 6634 +194. [NPM](https://www.npmjs.com/), top 6763 +195. [NPM-Package](https://www.npmjs.com/), top 6763 +196. [Aptoide](https://en.aptoide.com/), top 6825 +197. [Freesound](https://freesound.org/), top 6830 +198. [Pinkbike](https://www.pinkbike.com/), top 7014 +199. [SublimeForum](https://forum.sublimetext.com/), top 7069 +200. [BOOTH](https://booth.pm/), top 7090 +201. [DEV Community](https://dev.to/), top 7254 +202. [Memrise](https://www.memrise.com/), top 7318 +203. [Gitee](https://gitee.com/), top 7323 +204. [interpals](https://www.interpals.net/), top 7364 +205. [Audiojungle](https://audiojungle.net/), top 7398 +206. [Trakt](https://www.trakt.tv/), top 7441 +207. [FortniteTracker](https://fortnitetracker.com/challenges), top 7467 +208. [OpenStreetMap](https://www.openstreetmap.org/), top 7551 +209. [Typeracer](https://typeracer.com), top 7650 +210. [3dnews](http://forum.3dnews.ru/), top 7764 +211. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7879 +212. [Flipboard](https://flipboard.com/), top 8006 +213. [Smule](https://www.smule.com/), top 8112 +214. [Gravatar](http://en.gravatar.com/), top 8378 +215. [ReverbNation](https://www.reverbnation.com/), top 8405 +216. [spletnik](https://spletnik.ru/), top 8457 +217. [NICommunityForum](https://www.native-instruments.com/forum/), top 8509 +218. [Codechef](https://www.codechef.com/), top 9125 +219. [Cloob](https://www.cloob.com/), top 9163 +220. [kofi](https://ko-fi.com), top 9165 +221. [Proza.ru](https://www.proza.ru/), top 9217 +222. [Kali community](https://forums.kali.org/), top 9459 +223. [IFTTT](https://www.ifttt.com/), top 9683 +224. [Facenama](https://facenama.com/), top 9885 +225. [F6S](https://f6s.com/), top 9956 +226. [nightbot](https://nightbot.tv/), top 9981 +227. [ProductHunt](https://www.producthunt.com/), top 10118 +228. [Star Citizen](https://robertsspaceindustries.com/), top 10302 +229. [Launchpad](https://launchpad.net/), top 10663 +230. [geocaching](https://www.geocaching.com/), top 10778 +231. [akniga](https://akniga.org/profile/blue/), top 10988 +232. [Speedrun.com](https://speedrun.com/), top 11222 +233. [Teletype](https://teletype.in), top 11356 +234. [getmyuni](https://getmyuni.com/), top 11493 +235. [Coderwall](https://coderwall.com/), top 11529 +236. [Slashdot](https://slashdot.org), top 11734 +237. [PSNProfiles.com](https://psnprofiles.com/), top 11913 +238. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12005 +239. [igromania](http://forum.igromania.ru/), top 12441 +240. [ImageShack](https://imageshack.com/), top 12634 +241. [authorSTREAM](http://www.authorstream.com/), top 12727 +242. [Contently](https://contently.com/), top 13015 +243. [forumhouseRU](https://www.forumhouse.ru/), top 13374 +244. [couchsurfing](https://www.couchsurfing.com/), top 13434 +245. [babyblogRU](https://www.babyblog.ru/), top 14024 +246. [YouNow](https://www.younow.com/), top 14433 +247. [Packagist](https://packagist.org/), top 14574 +248. [Sbazar.cz](https://www.sbazar.cz/), top 14817 +249. [TrashboxRU](https://trashbox.ru/), top 15720 +250. [MyMiniFactory](https://www.myminifactory.com/), top 15754 +251. [EyeEm](https://www.eyeem.com/), top 16741 +252. [sparkpeople](https://www.sparkpeople.com), top 17270 +253. [iMGSRC.RU](https://imgsrc.ru/), top 17299 +254. [Samlib](http://samlib.ru/), top 17781 +255. [HackerOne](https://hackerone.com/), top 18639 +256. [hackster](https://www.hackster.io), top 18904 +257. [Codewars](https://www.codewars.com), top 20095 +258. [allmylinks](https://allmylinks.com/), top 20710 +259. [WebNode](https://www.webnode.cz/), top 20772 +260. [About.me](https://about.me/), top 21507 +261. [Jimdo](https://jimdosite.com/), top 21823 +262. [MeetMe](https://www.meetme.com/), top 24320 +263. [forum_guns](https://forum.guns.ru/), top 24804 +264. [GuruShots](https://gurushots.com/), top 25199 +265. [Tellonym.me](https://tellonym.me/), top 27984 +266. [Carbonmade](https://carbonmade.com/), top 28082 +267. [Football](https://www.rusfootball.info/), top 29171 +268. [uid](https://uid.me/), top 31878 +269. [Ello](https://ello.co/), top 31924 +270. [Ask Fedora](https://ask.fedoraproject.org/), top 32194 +271. [easyen](https://easyen.ru/), top 32379 +272. [Anobii](https://www.anobii.com/), top 33272 +273. [PromoDJ](http://promodj.com/), top 33958 +274. [YouPic](https://youpic.com/), top 34391 +275. [RubyGems](https://rubygems.org/), top 34845 +276. [OpenCollective](https://opencollective.com/), top 35386 +277. [Periscope](https://www.periscope.tv/), top 35818 +278. [Coroflot](https://coroflot.com/), top 36916 +279. [d3RU](https://d3.ru/), top 37272 +280. [Hackaday](https://hackaday.io/), top 37784 +281. [LOR](https://linux.org.ru/), top 41831 +282. [HackTheBox](https://forum.hackthebox.eu/), top 42311 +283. [Realmeye](https://www.realmeye.com/), top 44925 +284. [7Cups](https://www.7cups.com/), top 45056 +285. [fl](https://www.fl.ru/), top 48605 +286. [NationStates Nation](https://nationstates.net), top 50449 +287. [NationStates Region](https://nationstates.net), top 50449 +288. [leasehackr](https://forum.leasehackr.com/), top 52023 +289. [Plug.DJ](https://plug.dj/), top 54408 +290. [opennet](https://www.opennet.ru/), top 60553 +291. [F3.cool](https://f3.cool/), top 63673 +292. [TryHackMe](https://tryhackme.com/), top 63954 +293. [datingRU](http://dating.ru), top 64468 +294. [Bookcrossing](https://www.bookcrossing.com/), top 65247 +295. [Keybase](https://keybase.io/), top 69845 +296. [travellerspoint](https://www.travellerspoint.com), top 70567 +297. [RoyalCams](https://royalcams.com), top 70620 +298. [Pling](https://www.pling.com/), top 84073 +299. [eGPU](https://egpu.io/), top 95870 +300. [Asciinema](https://asciinema.org), top 97245 +301. [TamTam](https://tamtam.chat/), top 101559 +302. [Clozemaster](https://www.clozemaster.com), top 103354 +303. [devRant](https://devrant.com/), top 105382 +304. [Velomania](https://forum.velomania.ru/), top 109380 +305. [Showme](https://www.showme.com), top 110496 +306. [phpRU](https://php.ru/forum/), top 110921 +307. [Munzee](https://www.munzee.com/), top 112784 +308. [GunsAndAmmo](https://gunsandammo.com/), top 121032 +309. [CapFriendly](https://www.capfriendly.com/), top 122808 +310. [radioskot](https://radioskot.ru/), top 126995 +311. [Countable](https://www.countable.us/), top 128419 +312. [hunting](https://www.hunting.ru/forum/), top 134143 +313. [Cent](https://cent.co/), top 144206 +314. [KanoWorld](https://world.kano.me/), top 149633 +315. [BLIP.fm](https://blip.fm/), top 154353 +316. [moikrug](https://moikrug.ru/), top 159862 +317. [polarsteps](https://polarsteps.com/), top 165137 +318. [Crevado](https://crevado.com/), top 171333 +319. [Steamid](https://steamid.uk/), top 180541 +320. [Lobsters](https://lobste.rs/), top 184124 +321. [Whonix Forum](https://forums.whonix.org/), top 219087 +322. [notabug.org](https://notabug.org/), top 222036 +323. [satsisRU](https://satsis.info/), top 227916 +324. [Smashcast](https://www.smashcast.tv/), top 235099 +325. [pvpru](https://pvpru.com/), top 249429 +326. [Avizo](https://www.avizo.cz/), top 278226 +327. [Hubski](https://hubski.com/), top 326081 +328. [Xbox Gamertag](https://xboxgamertag.com/), top 369749 +329. [qiwi.me](https://qiwi.me), top 385270 +330. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 386861 +331. [Bazar.cz](https://www.bazar.cz/), top 392156 +332. [eintracht](https://eintracht.de), top 412499 +333. [BinarySearch](https://binarysearch.io/), top 462827 +334. [House-Mixes.com](https://www.house-mixes.com/), top 470463 +335. [social.tchncs.de](https://social.tchncs.de/), top 488923 +336. [BitCoinForum](https://bitcoinforum.com), top 555610 +337. [soylentnews](https://soylentnews.org), top 720769 +338. [ShitpostBot5000](https://www.shitpostbot.com/), top 765789 +339. [Splits.io](https://splits.io), top 771455 +340. [Gam1ng](https://gam1ng.com.br), top 807474 +341. [mastodon.technology](https://mastodon.xyz/), top 962001 +342. [mastodon.xyz](https://mastodon.xyz/), top 962001 +343. [Alik.cz](https://www.alik.cz/), top 994668 +344. [Kik](http://kik.me/), top 1056066 +345. [mastodon.cloud](https://mastodon.cloud/), top 1279812 +346. [tracr.co](https://tracr.co/), top 1294716 +347. [OurDJTalk](https://ourdjtalk.com/), top 1356121 +348. [Signal](https://community.signalusers.org), top 1526361 +349. [mstdn.io](https://mstdn.io/), top 1796064 +350. [chaos.social](https://chaos.social/), top 1957965 +351. [mastodon.social](https://chaos.social/), top 1957965 +352. [labpentestit](https://lab.pentestit.ru/), top 2475978 +353. [Chatujme.cz](https://chatujme.cz/), top 3019547 +354. [svidbook](https://www.svidbook.ru/), top 4083142 +355. [ImgUp.cz](https://imgup.cz/), top 4423341 +356. [GDProfiles](https://gdprofiles.com/), top 6739260 +357. [2Dimensions](https://2Dimensions.com/), top 7383017 +358. [Designspiration](https://www.designspiration.net/), top 7450360 +359. [PokerStrategy](http://www.pokerstrategy.net), top 8114272 +360. [CashMe](https://cash.me/), top 0 +361. [Filmogs](https://www.filmo.gs/), top 0 +362. [Rap-royalty](http://www.rap-royalty.com/), top 0 +363. [nnRU](https://https://www.nn.ru/), top 0 -Alexa.com rank data fetched at (2020-08-30 13:59:23.997682 UTC) +Alexa.com rank data fetched at (2020-08-30 18:57:21.495306 UTC) diff --git a/update_site_data.py b/update_site_data.py index 7eec55835..f284abd94 100755 --- a/update_site_data.py +++ b/update_site_data.py @@ -13,7 +13,7 @@ from argparse import ArgumentParser, RawDescriptionHelpFormatter -def get_rank(domain_to_query, dest): +def get_rank(domain_to_query, dest, print_errors=True): #Retrieve ranking data via alexa API url = f"http://data.alexa.com/data?cli=10&url={domain_to_query}" xml_data = requests.get(url).text @@ -33,10 +33,11 @@ def get_rank(domain_to_query, dest): # else: # print(domain_to_query) except Exception as e: - logging.error(e) - # We did not find the rank for some reason. - print(f"Error retrieving rank information for '{domain_to_query}'") - print(f" Returned XML is |{xml_data}|") + if print_errors: + logging.error(e) + # We did not find the rank for some reason. + print(f"Error retrieving rank information for '{domain_to_query}'") + print(f" Returned XML is |{xml_data}|") return From 65cc30aac350be6af7a86f25b7a40b151975e7e5 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sun, 30 Aug 2020 23:56:32 +0300 Subject: [PATCH 38/39] False positives fixes --- maigret/maigret.py | 6 +++--- maigret/resources/data.json | 13 ++++++++++--- update_site_data.py | 3 --- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/maigret/maigret.py b/maigret/maigret.py index 1a62629f6..a2218ae3e 100644 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -537,9 +537,9 @@ def main(): help="Load data from a JSON file or an online, valid, JSON file.") parser.add_argument("--timeout", action="store", metavar='TIMEOUT', - dest="timeout", type=timeout_check, default=None, - help="Time (in seconds) to wait for response to requests. " - "Default timeout of 60.0s." + dest="timeout", type=timeout_check, default=10, + help="Time (in seconds) to wait for response to requests." + "Default timeout of 10.0s." "A longer timeout will be more likely to get results from slow sites." "On the other hand, this may cause a long delay to gather all results." ) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index efcb4b02d..2052db54d 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -976,12 +976,16 @@ "username_unclaimed": "noonewouldeverusethis7" }, "F6S": { - "errorType": "status_code", + "errorType": "message", + "errorMsg": "Nothing to see here - 404", + "errors": { + "custom-page-main-frontpage-captcha": "Captcha detected" + }, "rank": 9956, "tags": [ "in" ], - "request_head_only": false, + "request_head_only": true, "url": "https://www.f6s.com/{}", "urlMain": "https://f6s.com/", "username_claimed": "vidheeshnacode", @@ -1743,6 +1747,9 @@ }, "MeetMe": { "errorType": "response_url", + "errors": { + "fa fa-spinner fa-pulse loading-icon-lg": "Registration page" + }, "errorUrl": "https://www.meetme.com/", "rank": 24320, "tags": [ @@ -4171,7 +4178,7 @@ "username_unclaimed": "noonewouldeverusethis7" }, "qiwi.me": { - "errorMsg": "no piggybox found", + "errorMsg": ["no piggybox found", "invalid alias"], "errorType": "message", "rank": 385270, "tags": [ diff --git a/update_site_data.py b/update_site_data.py index f284abd94..336b05303 100755 --- a/update_site_data.py +++ b/update_site_data.py @@ -17,7 +17,6 @@ def get_rank(domain_to_query, dest, print_errors=True): #Retrieve ranking data via alexa API url = f"http://data.alexa.com/data?cli=10&url={domain_to_query}" xml_data = requests.get(url).text - # print(xml_data) root = ET.fromstring(xml_data) try: @@ -30,8 +29,6 @@ def get_rank(domain_to_query, dest, print_errors=True): if country_code: tags.add(country_code.lower()) dest['tags'] = sorted(list(tags)) - # else: - # print(domain_to_query) except Exception as e: if print_errors: logging.error(e) From ba9cbbea169c7f145936f3e6df788abf682897dd Mon Sep 17 00:00:00 2001 From: Soxoj Date: Mon, 31 Aug 2020 22:49:19 +0300 Subject: [PATCH 39/39] +40 sites for stars, Alexa rating update, some fixes --- maigret/resources/data.json | 1186 +++++++++++++++++++++++++---------- sites.md | 714 +++++++++++---------- 2 files changed, 1240 insertions(+), 660 deletions(-) diff --git a/maigret/resources/data.json b/maigret/resources/data.json index 2052db54d..29facf031 100644 --- a/maigret/resources/data.json +++ b/maigret/resources/data.json @@ -1,7 +1,33 @@ { + "123rf": { + "errorType": "response_url", + "rank": 949, + "tags": [ + "images", + "ru", + "us" + ], + "url": "https://ru.123rf.com/profile_{}", + "urlMain": "https://ru.123rf.com", + "username_claimed": "rawpixel", + "username_unclaimed": "noonewouldeverusethis7" + }, + "1337x": { + "errorMsg": "Error something went wrong", + "errorType": "message", + "rank": 514, + "tags": [ + "in", + "torrent" + ], + "url": "https://1337x.to/user/{}/", + "urlMain": "https://1337x.to", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "2Dimensions": { "errorType": "status_code", - "rank": 7383017, + "rank": 7375859, "url": "https://2Dimensions.com/a/{}", "urlMain": "https://2Dimensions.com/", "username_claimed": "blue", @@ -10,7 +36,7 @@ "3dnews": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", "errorType": "message", - "rank": 7764, + "rank": 7778, "tags": [ "ru" ], @@ -22,7 +48,7 @@ "4pda": { "errorMsg": "\u041a \u0441\u043e\u0436\u0430\u043b\u0435\u043d\u0438\u044e, \u0412\u0430\u0448 \u043f\u043e\u0438\u0441\u043a \u043d\u0435 \u0434\u0430\u043b \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.", "errorType": "message", - "rank": 2441, + "rank": 2438, "tags": [ "ru" ], @@ -38,7 +64,7 @@ "INTERNAL_SERVER_ERROR": "Site error", "Something just went wrong": "Site error" }, - "rank": 3382, + "rank": 3404, "tags": [ "images", "in" @@ -51,7 +77,7 @@ }, "7Cups": { "errorType": "status_code", - "rank": 45056, + "rank": 45009, "tags": [ "in" ], @@ -62,7 +88,7 @@ }, "9GAG": { "errorType": "status_code", - "rank": 406, + "rank": 405, "tags": [ "de" ], @@ -73,7 +99,7 @@ }, "About.me": { "errorType": "status_code", - "rank": 21507, + "rank": 21498, "tags": [ "in", "social" @@ -85,7 +111,7 @@ }, "Academia.edu": { "errorType": "status_code", - "rank": 305, + "rank": 301, "tags": [ "id" ], @@ -96,7 +122,7 @@ }, "Alik.cz": { "errorType": "status_code", - "rank": 994668, + "rank": 995087, "url": "https://www.alik.cz/u/{}", "urlMain": "https://www.alik.cz/", "username_claimed": "julian", @@ -105,7 +131,7 @@ "AllTrails": { "errorMsg": "User could not be found.", "errorType": "message", - "rank": 3417, + "rank": 3389, "tags": [ "us" ], @@ -117,7 +143,7 @@ "Allods": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -126,9 +152,20 @@ "username_claimed": "wizard", "username_unclaimed": "noonewouldeverusethis7" }, + "Allrecipes": { + "errorType": "status_code", + "rank": 876, + "tags": [ + "us" + ], + "url": "https://www.allrecipes.com/cook/{}", + "urlMain": "https://www.allrecipes.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Anobii": { "errorType": "response_url", - "rank": 33272, + "rank": 33315, "tags": [ "books", "it" @@ -162,7 +199,7 @@ }, "Aptoide": { "errorType": "status_code", - "rank": 6825, + "rank": 6876, "tags": [ "in" ], @@ -174,7 +211,7 @@ "ArcheageRU": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -211,7 +248,7 @@ }, "Asciinema": { "errorType": "status_code", - "rank": 97245, + "rank": 97294, "tags": [ "us" ], @@ -222,7 +259,7 @@ }, "Ask Fedora": { "errorType": "status_code", - "rank": 32194, + "rank": 32504, "tags": [ "in", "us" @@ -235,7 +272,7 @@ "AskFM": { "errorMsg": "Well, apparently not anymore.", "errorType": "message", - "rank": 3165, + "rank": 3174, "regexCheck": "^[a-zA-Z0-9_]{3,40}$", "tags": [ "ru" @@ -247,7 +284,7 @@ }, "Audiojungle": { "errorType": "status_code", - "rank": 7398, + "rank": 7408, "regexCheck": "^[a-zA-Z0-9_]+$", "tags": [ "in", @@ -261,7 +298,7 @@ "Avizo": { "errorType": "response_url", "errorUrl": "https://www.avizo.cz/", - "rank": 278226, + "rank": 278254, "tags": [ "cz" ], @@ -272,7 +309,7 @@ }, "BLIP.fm": { "errorType": "status_code", - "rank": 154353, + "rank": 151029, "regexCheck": "^[a-zA-Z0-9_]{1,30}$", "tags": [ "in", @@ -286,7 +323,7 @@ "BOOTH": { "errorType": "response_url", "errorUrl": "https://booth.pm/", - "rank": 7090, + "rank": 7024, "tags": [ "jp" ], @@ -297,7 +334,7 @@ }, "Badoo": { "errorType": "status_code", - "rank": 1775, + "rank": 1772, "tags": [ "br", "de", @@ -310,7 +347,7 @@ }, "Bandcamp": { "errorType": "status_code", - "rank": 1062, + "rank": 1066, "tags": [ "music", "us" @@ -337,7 +374,7 @@ "Bazar.cz": { "errorType": "response_url", "errorUrl": "https://www.bazar.cz/error404.aspx", - "rank": 392156, + "rank": 392164, "tags": [ "cz" ], @@ -364,7 +401,7 @@ "BinarySearch": { "errorMsg": "{}", "errorType": "message", - "rank": 462827, + "rank": 445201, "regexCheck": "^[a-zA-Z0-9-_]{1,15}$", "tags": [ "in" @@ -377,7 +414,7 @@ }, "BitBucket": { "errorType": "status_code", - "rank": 1719, + "rank": 1717, "regexCheck": "^[a-zA-Z0-9-_]{1,30}$", "tags": [ "coding", @@ -391,7 +428,7 @@ "BitCoinForum": { "errorMsg": "The user whose profile you are trying to view does not exist.", "errorType": "message", - "rank": 555610, + "rank": 555705, "tags": [ "in" ], @@ -429,7 +466,7 @@ "BodyBuilding": { "errorType": "response_url", "errorUrl": "https://bodyspace.bodybuilding.com/", - "rank": 2346, + "rank": 2343, "tags": [ "us" ], @@ -452,7 +489,7 @@ }, "Bookcrossing": { "errorType": "status_code", - "rank": 65247, + "rank": 65971, "tags": [ "in" ], @@ -463,7 +500,7 @@ }, "BuyMeACoffee": { "errorType": "status_code", - "rank": 12005, + "rank": 11974, "tags": [ "in" ], @@ -487,7 +524,7 @@ }, "CNET": { "errorType": "status_code", - "rank": 148, + "rank": 147, "tags": [ "us" ], @@ -499,7 +536,7 @@ "CapFriendly": { "errorMsg": "
No results found
", "errorType": "message", - "rank": 122808, + "rank": 121544, "regexCheck": "^[a-zA-z][a-zA-Z0-9_]{2,79}$", "tags": [ "ca" @@ -512,7 +549,7 @@ "Carbonmade": { "errorType": "response_url", "errorUrl": "https://carbonmade.com/fourohfour?domain={}.carbonmade.com", - "rank": 28082, + "rank": 28148, "tags": [ "us" ], @@ -524,7 +561,7 @@ "Career.habr": { "errorMsg": "

\u041e\u0448\u0438\u0431\u043a\u0430 404

", "errorType": "message", - "rank": 1459, + "rank": 1462, "tags": [ "ru" ], @@ -548,7 +585,7 @@ "Cent": { "errorMsg": "Cent", "errorType": "message", - "rank": 144206, + "rank": 143815, "tags": [ "mx", "us" @@ -560,7 +597,7 @@ }, "Championat": { "errorType": "status_code", - "rank": 1449, + "rank": 1433, "tags": [ "ru" ], @@ -572,7 +609,7 @@ "Chatujme.cz": { "errorMsg": "Neexistujic\u00ed profil", "errorType": "message", - "rank": 3019547, + "rank": 3017241, "url": "https://profil.chatujme.cz/{}", "urlMain": "https://chatujme.cz/", "username_claimed": "david", @@ -592,7 +629,7 @@ "Chess": { "errorMsg": "Missing page... somebody made a wrong move.", "errorType": "message", - "rank": 363, + "rank": 362, "tags": [ "us" ], @@ -603,7 +640,7 @@ }, "Cloob": { "errorType": "status_code", - "rank": 9163, + "rank": 9190, "tags": [ "ir" ], @@ -614,7 +651,7 @@ }, "CloudflareCommunity": { "errorType": "status_code", - "rank": 1626, + "rank": 1625, "tags": [ "in" ], @@ -626,7 +663,7 @@ "Clozemaster": { "errorMsg": "Oh no! Player not found", "errorType": "message", - "rank": 103354, + "rank": 104968, "tags": [ "us" ], @@ -637,7 +674,7 @@ }, "Codecademy": { "errorType": "status_code", - "rank": 2320, + "rank": 2309, "tags": [ "education", "us" @@ -650,7 +687,7 @@ "Codechef": { "errorType": "response_url", "errorUrl": "https://www.codechef.com/", - "rank": 9125, + "rank": 9109, "tags": [ "in" ], @@ -662,7 +699,7 @@ "Coderwall": { "errorMsg": "404! Our feels when that url is used", "errorType": "message", - "rank": 11529, + "rank": 11570, "tags": [ "in" ], @@ -673,7 +710,7 @@ }, "Codewars": { "errorType": "status_code", - "rank": 20095, + "rank": 19669, "tags": [ "us" ], @@ -682,10 +719,22 @@ "username_claimed": "example", "username_unclaimed": "noonewouldeverusethis7" }, + "ComicvineGamespot": { + "errorType": "status_code", + "rank": 625, + "tags": [ + "gaming", + "us" + ], + "url": "https://comicvine.gamespot.com/profile/{}", + "urlMain": "https://comicvine.gamespot.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Contently": { "errorMsg": "We can't find that page!", "errorType": "message", - "rank": 13015, + "rank": 13004, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "in" @@ -697,7 +746,7 @@ }, "Coroflot": { "errorType": "status_code", - "rank": 36916, + "rank": 36699, "tags": [ "us" ], @@ -708,7 +757,7 @@ }, "Countable": { "errorType": "status_code", - "rank": 128419, + "rank": 128359, "tags": [ "us" ], @@ -720,7 +769,7 @@ "Cracked": { "errorType": "response_url", "errorUrl": "https://www.cracked.com/", - "rank": 3555, + "rank": 3531, "tags": [ "us" ], @@ -735,7 +784,7 @@ "errors": { "/cdn-cgi/scripts/hcaptcha.challenge.js": "Captcha detected" }, - "rank": 2904, + "rank": 2901, "request_head_only": false, "tags": [ "us" @@ -747,7 +796,7 @@ }, "Crevado": { "errorType": "status_code", - "rank": 171333, + "rank": 168360, "tags": [ "in", "us" @@ -760,7 +809,7 @@ "Crossfire": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -771,7 +820,7 @@ }, "Crunchyroll": { "errorType": "status_code", - "rank": 448, + "rank": 447, "tags": [ "us" ], @@ -782,7 +831,7 @@ }, "DEV Community": { "errorType": "status_code", - "rank": 7254, + "rank": 7241, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "in" @@ -806,7 +855,7 @@ }, "Designspiration": { "errorType": "status_code", - "rank": 7450360, + "rank": 7443473, "url": "https://www.designspiration.net/{}/", "urlMain": "https://www.designspiration.net/", "username_claimed": "blue", @@ -814,7 +863,7 @@ }, "DeviantART": { "errorType": "status_code", - "rank": 485, + "rank": 487, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "request_head_only": false, "tags": [ @@ -829,7 +878,7 @@ }, "Discogs": { "errorType": "status_code", - "rank": 1163, + "rank": 1161, "tags": [ "us" ], @@ -840,7 +889,7 @@ }, "Discuss.Elastic.co": { "errorType": "status_code", - "rank": 5977, + "rank": 5983, "tags": [ "in", "tech", @@ -851,9 +900,22 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "DiscussPython": { + "errorType": "status_code", + "rank": 1047, + "tags": [ + "coding", + "global", + "in" + ], + "url": "https://discuss.python.org/u/{}/summary", + "urlMain": "https://discuss.python.org/", + "username_claimed": "dustin", + "username_unclaimed": "noonewouldeverusethis7" + }, "Disqus": { "errorType": "status_code", - "rank": 997, + "rank": 995, "tags": [ "discussion", "global", @@ -866,7 +928,7 @@ }, "Docker Hub": { "errorType": "status_code", - "rank": 3563, + "rank": 3571, "tags": [ "us" ], @@ -879,7 +941,7 @@ "Dribbble": { "errorMsg": "Whoops, that page is gone.", "errorType": "message", - "rank": 1621, + "rank": 1653, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "business", @@ -893,7 +955,7 @@ "Duolingo": { "errorMsg": "{\"users\":[]}", "errorType": "message", - "rank": 480, + "rank": 479, "tags": [ "us" ], @@ -916,10 +978,22 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Eksisozluk": { + "errorMsg": "isimli bir yazar kayd\u0131 mevcut de\u011fil", + "errorType": "message", + "rank": 705, + "tags": [ + "tr" + ], + "url": "https://eksisozluk.com/biri/{}", + "urlMain": "https://eksisozluk.com/biri/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Ello": { "errorMsg": "We couldn't find the page you're looking for", "errorType": "message", - "rank": 31924, + "rank": 32135, "tags": [ "in" ], @@ -940,22 +1014,10 @@ "username_claimed": "JennyKrafts", "username_unclaimed": "noonewouldeverusethis7" }, - "Euw": { - "errorMsg": "This summoner is not registered at OP.GG. Please check spelling.", - "errorType": "message", - "rank": 270, - "tags": [ - "us" - ], - "url": "https://euw.op.gg/summoner/userName={}", - "urlMain": "https://euw.op.gg/", - "username_claimed": "blue", - "username_unclaimed": "noonewouldeverusethis7" - }, "EyeEm": { "errorType": "response_url", "errorUrl": "https://www.eyeem.com/", - "rank": 16741, + "rank": 16613, "tags": [ "sd" ], @@ -966,7 +1028,7 @@ }, "F3.cool": { "errorType": "status_code", - "rank": 63673, + "rank": 64204, "tags": [ "ru" ], @@ -976,16 +1038,16 @@ "username_unclaimed": "noonewouldeverusethis7" }, "F6S": { - "errorType": "message", "errorMsg": "Nothing to see here - 404", + "errorType": "message", "errors": { "custom-page-main-frontpage-captcha": "Captcha detected" }, - "rank": 9956, + "rank": 9867, + "request_head_only": false, "tags": [ "in" ], - "request_head_only": true, "url": "https://www.f6s.com/{}", "urlMain": "https://f6s.com/", "username_claimed": "vidheeshnacode", @@ -993,7 +1055,7 @@ }, "Facebook": { "errorType": "status_code", - "rank": 8, + "rank": 9, "regexCheck": "^[a-zA-Z0-9\\.]{3,49}(?", "errorType": "message", - "rank": 1459, + "rank": 1462, "tags": [ "ru" ], @@ -1123,7 +1200,7 @@ "Freelancer.com": { "errorMsg": "\"users\":{}", "errorType": "message", - "rank": 2023, + "rank": 2019, "tags": [ "us" ], @@ -1132,9 +1209,21 @@ "username_claimed": "red0xff", "username_unclaimed": "noonewouldeverusethis" }, + "Freepik": { + "errorType": "status_code", + "rank": 112, + "tags": [ + "es", + "in" + ], + "url": "https://www.freepik.com/{}", + "urlMain": "https://www.freepik.com", + "username_claimed": "chevanon", + "username_unclaimed": "noonewouldeverusethis7" + }, "Freesound": { "errorType": "status_code", - "rank": 6830, + "rank": 6928, "tags": [ "music", "us" @@ -1146,7 +1235,7 @@ }, "GDProfiles": { "errorType": "status_code", - "rank": 6739260, + "rank": 6739435, "url": "https://gdprofiles.com/{}", "urlMain": "https://gdprofiles.com/", "username_claimed": "blue", @@ -1154,7 +1243,7 @@ }, "Gam1ng": { "errorType": "status_code", - "rank": 807474, + "rank": 807479, "tags": [ "br", "webcam" @@ -1164,9 +1253,26 @@ "username_claimed": "PinKgirl", "username_unclaimed": "noonewouldeverusethis77777" }, + "Gamefaqs": { + "errorMsg": "404 Error: Page Not Found", + "errorType": "message", + "errors": { + "Are You a Robot?": "Captcha detected" + }, + "rank": 625, + "request_head_only": false, + "tags": [ + "gaming", + "us" + ], + "url": "https://gamefaqs.gamespot.com/community/{}", + "urlMain": "https://gamefaqs.gamespot.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Gamespot": { "errorType": "status_code", - "rank": 637, + "rank": 625, "tags": [ "gaming", "us" @@ -1176,9 +1282,21 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis" }, + "Genius": { + "errorType": "status_code", + "rank": 410, + "tags": [ + "music", + "us" + ], + "url": "https://genius.com/{}", + "urlMain": "https://genius.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Giphy": { "errorType": "status_code", - "rank": 686, + "rank": 687, "tags": [ "social", "us" @@ -1190,7 +1308,7 @@ }, "GitHub": { "errorType": "status_code", - "rank": 102, + "rank": 100, "regexCheck": "^[a-zA-Z0-9](?:[a-zA-Z0-9]|-(?=[a-zA-Z0-9])){0,38}$", "tags": [ "coding", @@ -1204,7 +1322,7 @@ "GitLab": { "errorMsg": "[]", "errorType": "message", - "rank": 3467, + "rank": 3476, "tags": [ "coding", "in" @@ -1217,7 +1335,7 @@ }, "Gitee": { "errorType": "status_code", - "rank": 7323, + "rank": 7288, "tags": [ "cn" ], @@ -1226,6 +1344,19 @@ "username_claimed": "wizzer", "username_unclaimed": "noonewouldeverusethis7" }, + "Gofundme": { + "errorType": "status_code", + "rank": 937, + "tags": [ + "finance", + "global", + "us" + ], + "url": "https://www.gofundme.com/f/{}", + "urlMain": "https://www.gofundme.com", + "username_claimed": "adamcoussins", + "username_unclaimed": "noonewouldeverusethis7" + }, "GoodReads": { "errorType": "status_code", "rank": 323, @@ -1253,7 +1384,7 @@ }, "Gravatar": { "errorType": "status_code", - "rank": 8378, + "rank": 8406, "tags": [ "images", "in" @@ -1266,7 +1397,7 @@ "Gumroad": { "errorMsg": "Page not found.", "errorType": "message", - "rank": 3896, + "rank": 3889, "tags": [ "us" ], @@ -1277,7 +1408,7 @@ }, "GunsAndAmmo": { "errorType": "status_code", - "rank": 121032, + "rank": 121071, "tags": [ "us" ], @@ -1288,7 +1419,7 @@ }, "GuruShots": { "errorType": "status_code", - "rank": 25199, + "rank": 25389, "tags": [ "us" ], @@ -1299,7 +1430,7 @@ }, "HackTheBox": { "errorType": "status_code", - "rank": 42311, + "rank": 42053, "tags": [ "us" ], @@ -1310,7 +1441,7 @@ }, "Hackaday": { "errorType": "status_code", - "rank": 37784, + "rank": 38090, "tags": [ "us" ], @@ -1322,7 +1453,7 @@ "HackerNews": { "errorMsg": "No such user", "errorType": "message", - "rank": 5862, + "rank": 5891, "tags": [ "us" ], @@ -1334,7 +1465,7 @@ "HackerOne": { "errorMsg": "Page not found", "errorType": "message", - "rank": 18639, + "rank": 18235, "tags": [ "hacker", "in" @@ -1347,7 +1478,7 @@ "HackerRank": { "errorMsg": "Something went wrong", "errorType": "message", - "rank": 2705, + "rank": 2714, "tags": [ "in" ], @@ -1359,7 +1490,7 @@ "House-Mixes.com": { "errorMsg": "Profile Not Found", "errorType": "message", - "rank": 470463, + "rank": 470601, "regexCheck": "^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*$", "tags": [ "ir" @@ -1397,7 +1528,7 @@ "Hubski": { "errorMsg": "No such user", "errorType": "message", - "rank": 326081, + "rank": 328818, "tags": [ "in" ], @@ -1409,7 +1540,7 @@ "IFTTT": { "errorMsg": "The requested page or file does not exist", "errorType": "message", - "rank": 9683, + "rank": 9438, "regexCheck": "^[A-Za-z0-9]{3,35}$", "tags": [ "misc", @@ -1423,7 +1554,7 @@ "ImageShack": { "errorType": "response_url", "errorUrl": "https://imageshack.com/", - "rank": 12634, + "rank": 12762, "tags": [ "images", "in" @@ -1435,7 +1566,7 @@ }, "ImgUp.cz": { "errorType": "status_code", - "rank": 4423341, + "rank": 4426923, "url": "https://imgup.cz/{}", "urlMain": "https://imgup.cz/", "username_claimed": "adam", @@ -1457,7 +1588,7 @@ "Instructables": { "errorMsg": "404: We're sorry, things break sometimes", "errorType": "message", - "rank": 1414, + "rank": 1416, "tags": [ "hobby", "us" @@ -1469,7 +1600,7 @@ }, "Issuu": { "errorType": "status_code", - "rank": 538, + "rank": 541, "tags": [ "in" ], @@ -1480,7 +1611,7 @@ }, "Itch.io": { "errorType": "status_code", - "rank": 1824, + "rank": 1818, "tags": [ "us" ], @@ -1492,7 +1623,7 @@ "Jimdo": { "errorType": "status_code", "noPeriod": "True", - "rank": 21823, + "rank": 21587, "tags": [ "in", "jp" @@ -1504,7 +1635,7 @@ }, "Kaggle": { "errorType": "status_code", - "rank": 2662, + "rank": 2661, "tags": [ "in" ], @@ -1516,7 +1647,7 @@ "Kali community": { "errorMsg": "This user has not registered and therefore does not have a profile to view.", "errorType": "message", - "rank": 9459, + "rank": 9477, "tags": [ "in" ], @@ -1527,7 +1658,7 @@ }, "KanoWorld": { "errorType": "status_code", - "rank": 149633, + "rank": 149711, "tags": [ "us" ], @@ -1536,13 +1667,24 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Kaskus": { + "errorType": "status_code", + "rank": 781, + "tags": [ + "id" + ], + "url": "https://www.kaskus.co.id/@{}", + "urlMain": "https://www.kaskus.co.id", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Keybase": { "errorMsg": [ "them\":[null]", "bad list value" ], "errorType": "message", - "rank": 69845, + "rank": 68598, "tags": [ "business", "us" @@ -1553,19 +1695,44 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Kickstarter": { + "errorType": "status_code", + "rank": 732, + "tags": [ + "finance", + "global", + "us" + ], + "url": "https://www.kickstarter.com/profile/{}", + "urlMain": "https://www.kickstarter.com", + "username_claimed": "zhovner", + "username_unclaimed": "noonewouldeverusethis7" + }, "Kik": { "errorMsg": "The page you requested was not found", "errorType": "message", - "rank": 1056066, + "rank": 1056591, "url": "https://ws2.kik.com/user/{}", "urlMain": "http://kik.me/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Kinogo": { + "errorType": "status_code", + "rank": 1107, + "tags": [ + "by", + "films" + ], + "url": "https://kinogo.by/user/{}", + "urlMain": "https://kinogo.by", + "username_claimed": "ridder2", + "username_unclaimed": "noonewouldeverusethis7" + }, "Kongregate": { "errorMsg": "Sorry, no account with that name was found.", "errorType": "message", - "rank": 2760, + "rank": 2764, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "gaming", @@ -1578,7 +1745,7 @@ }, "LOR": { "errorType": "status_code", - "rank": 41831, + "rank": 42122, "tags": [ "ru" ], @@ -1589,7 +1756,7 @@ }, "Launchpad": { "errorType": "status_code", - "rank": 10663, + "rank": 10631, "tags": [ "us" ], @@ -1600,7 +1767,7 @@ }, "LeetCode": { "errorType": "status_code", - "rank": 2151, + "rank": 2149, "tags": [ "us" ], @@ -1612,7 +1779,7 @@ "Letterboxd": { "errorMsg": "Sorry, we can\u2019t find the page you\u2019ve requested.", "errorType": "message", - "rank": 3843, + "rank": 3848, "tags": [ "us" ], @@ -1624,7 +1791,7 @@ "Lichess": { "errorMsg": "Page not found!", "errorType": "message", - "rank": 2037, + "rank": 2052, "tags": [ "us" ], @@ -1635,7 +1802,7 @@ }, "LiveJournal": { "errorType": "status_code", - "rank": 452, + "rank": 454, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "blog", @@ -1649,7 +1816,7 @@ "LiveLeak": { "errorMsg": "channel not found", "errorType": "message", - "rank": 4125, + "rank": 4160, "tags": [ "us" ], @@ -1660,7 +1827,7 @@ }, "LiveLib": { "errorType": "status_code", - "rank": 3874, + "rank": 3893, "tags": [ "reading", "ru" @@ -1686,7 +1853,7 @@ }, "Lobsters": { "errorType": "status_code", - "rank": 184124, + "rank": 184207, "regexCheck": "[A-Za-z0-9][A-Za-z0-9_-]{0,24}", "tags": [ "in" @@ -1699,7 +1866,7 @@ "Lolchess": { "errorMsg": "No search results", "errorType": "message", - "rank": 4440, + "rank": 4454, "tags": [ "kr" ], @@ -1711,7 +1878,7 @@ "Lostark": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -1723,7 +1890,7 @@ "Love.Mail.ru": { "errorMsg": "\u0417\u043d\u0430\u043a\u043e\u043c\u0441\u0442\u0432\u0430@Mail.Ru", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -1735,7 +1902,7 @@ "Medium": { "errorMsg": "We couldn\u2019t find this page.", "errorType": "message", - "rank": 98, + "rank": 99, "tags": [ "news", "us" @@ -1747,11 +1914,11 @@ }, "MeetMe": { "errorType": "response_url", + "errorUrl": "https://www.meetme.com/", "errors": { "fa fa-spinner fa-pulse loading-icon-lg": "Registration page" }, - "errorUrl": "https://www.meetme.com/", - "rank": 24320, + "rank": 24333, "tags": [ "us" ], @@ -1763,7 +1930,7 @@ "Memrise": { "errorType": "response_url", "errorUrl": "https://www.memrise.com/", - "rank": 7318, + "rank": 7383, "tags": [ "jp", "us" @@ -1786,7 +1953,7 @@ }, "MixCloud": { "errorType": "status_code", - "rank": 2710, + "rank": 2712, "tags": [ "music", "us" @@ -1797,9 +1964,22 @@ "username_claimed": "jenny", "username_unclaimed": "noonewouldeverusethis7" }, + "Mozilla Support": { + "errorMsg": "Page Not Found | Mozilla", + "errorType": "message", + "rank": 181, + "tags": [ + "global", + "us" + ], + "url": "https://support.mozilla.org/en-US/user/{}", + "urlMain": "https://support.mozilla.org", + "username_claimed": "username", + "username_unclaimed": "noonewouldeverusethis7" + }, "Munzee": { "errorType": "status_code", - "rank": 112784, + "rank": 114486, "tags": [ "gb" ], @@ -1809,9 +1989,12 @@ "username_unclaimed": "noonewouldeverusethis7" }, "My.Mail.ru@bk.ru": { - "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorMsg": [ + "/invite?mna=&mnb=", + "mm-error-404__head" + ], "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -1821,9 +2004,12 @@ "username_unclaimed": "noonewouldeverusethis7" }, "My.Mail.ru@gmail.com": { - "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorMsg": [ + "/invite?mna=&mnb=", + "mm-error-404__head" + ], "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -1833,9 +2019,12 @@ "username_unclaimed": "noonewouldeverusethis7" }, "My.Mail.ru@list.ru": { - "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorMsg": [ + "/invite?mna=&mnb=", + "mm-error-404__head" + ], "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -1845,9 +2034,12 @@ "username_unclaimed": "noonewouldeverusethis7" }, "My.Mail.ru@mail.ru": { - "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorMsg": [ + "/invite?mna=&mnb=", + "mm-error-404__head" + ], "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -1857,9 +2049,12 @@ "username_unclaimed": "noonewouldeverusethis7" }, "My.Mail.ru@ya.ru": { - "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorMsg": [ + "/invite?mna=&mnb=", + "mm-error-404__head" + ], "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -1869,9 +2064,12 @@ "username_unclaimed": "noonewouldeverusethis7" }, "My.Mail.ru@yandex.ru": { - "errorMsg": ["/invite?mna=&mnb=", "mm-error-404__head"], + "errorMsg": [ + "/invite?mna=&mnb=", + "mm-error-404__head" + ], "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -1882,7 +2080,7 @@ }, "MyAnimeList": { "errorType": "status_code", - "rank": 967, + "rank": 974, "tags": [ "movies", "us" @@ -1894,7 +2092,7 @@ }, "MyMiniFactory": { "errorType": "status_code", - "rank": 15754, + "rank": 15883, "tags": [ "us" ], @@ -1905,7 +2103,7 @@ }, "Myspace": { "errorType": "status_code", - "rank": 2034, + "rank": 2038, "tags": [ "social", "us" @@ -1918,7 +2116,7 @@ "NICommunityForum": { "errorMsg": "The specified member cannot be found", "errorType": "message", - "rank": 8509, + "rank": 8476, "tags": [ "us" ], @@ -1929,7 +2127,7 @@ }, "NPM": { "errorType": "status_code", - "rank": 6763, + "rank": 6765, "tags": [ "in" ], @@ -1940,7 +2138,7 @@ }, "NPM-Package": { "errorType": "status_code", - "rank": 6763, + "rank": 6765, "tags": [ "in" ], @@ -1952,7 +2150,7 @@ "NameMC (Minecraft.net skins)": { "errorMsg": "Profiles: 0 results", "errorType": "message", - "rank": 7879, + "rank": 7874, "tags": [ "us" ], @@ -1964,7 +2162,7 @@ "NationStates Nation": { "errorMsg": "Was this your nation? It may have ceased to exist due to inactivity, but can rise again!", "errorType": "message", - "rank": 50449, + "rank": 50127, "tags": [ "us" ], @@ -1976,7 +2174,7 @@ "NationStates Region": { "errorMsg": "does not exist.", "errorType": "message", - "rank": 50449, + "rank": 50127, "tags": [ "us" ], @@ -1998,7 +2196,7 @@ }, "Newgrounds": { "errorType": "status_code", - "rank": 6634, + "rank": 6684, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "us" @@ -2010,7 +2208,7 @@ }, "OK": { "errorType": "status_code", - "rank": 61, + "rank": 62, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$", "tags": [ "ru" @@ -2023,7 +2221,7 @@ "OpenCollective": { "errorMsg": "Not found</h1>", "errorType": "message", - "rank": 35386, + "rank": 35316, "tags": [ "in" ], @@ -2034,7 +2232,7 @@ }, "OpenStreetMap": { "errorType": "status_code", - "rank": 7551, + "rank": 7468, "tags": [ "in", "social" @@ -2046,7 +2244,7 @@ }, "Oracle Community": { "errorType": "status_code", - "rank": 583, + "rank": 577, "tags": [ "us" ], @@ -2069,7 +2267,7 @@ "OurDJTalk": { "errorMsg": "The specified member cannot be found", "errorType": "message", - "rank": 1356121, + "rank": 1355721, "url": "https://ourdjtalk.com/members?username={}", "urlMain": "https://ourdjtalk.com/", "username_claimed": "steve", @@ -2089,7 +2287,7 @@ }, "PCPartPicker": { "errorType": "status_code", - "rank": 2139, + "rank": 2141, "tags": [ "us" ], @@ -2101,7 +2299,7 @@ "PSNProfiles.com": { "errorType": "response_url", "errorUrl": "https://psnprofiles.com/?psnId={}", - "rank": 11913, + "rank": 11800, "tags": [ "us" ], @@ -2113,7 +2311,7 @@ "Packagist": { "errorType": "response_url", "errorUrl": "https://packagist.org/search/?q={}&reason=vendor_not_found", - "rank": 14574, + "rank": 14573, "tags": [ "in", "jp" @@ -2126,7 +2324,7 @@ "Pastebin": { "errorType": "response_url", "errorUrl": "https://pastebin.com/index", - "rank": 1511, + "rank": 1520, "tags": [ "sharing", "us" @@ -2138,7 +2336,7 @@ }, "Patreon": { "errorType": "status_code", - "rank": 327, + "rank": 325, "tags": [ "finance", "us" @@ -2148,10 +2346,23 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "PeopleIgn": { + "errorMsg": "title>IGN Error 404 - Not Found", + "errorType": "message", + "rank": 516, + "tags": [ + "gaming", + "us" + ], + "url": "https://people.ign.com/{}", + "urlMain": "https://people.ign.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "PerfectWorld": { "errorMsg": "Perfect World", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "gaming", "ru" @@ -2164,7 +2375,7 @@ "PerfectWorldForum": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "forum", "gaming", @@ -2177,7 +2388,7 @@ }, "Periscope": { "errorType": "status_code", - "rank": 35818, + "rank": 36270, "tags": [ "us", "video" @@ -2189,7 +2400,7 @@ }, "Photobucket": { "errorType": "status_code", - "rank": 3493, + "rank": 3482, "tags": [ "images", "us" @@ -2201,7 +2412,7 @@ }, "Pinkbike": { "errorType": "status_code", - "rank": 7014, + "rank": 7042, "tags": [ "hobby", "us" @@ -2213,7 +2424,7 @@ }, "Pinterest": { "errorType": "status_code", - "rank": 170, + "rank": 169, "tags": [ "social", "us" @@ -2237,7 +2448,7 @@ "Pling": { "errorType": "response_url", "errorUrl": "https://www.pling.com/", - "rank": 84073, + "rank": 84554, "tags": [ "in" ], @@ -2248,7 +2459,7 @@ }, "Plug.DJ": { "errorType": "status_code", - "rank": 54408, + "rank": 56753, "tags": [ "fr", "gb", @@ -2261,7 +2472,7 @@ }, "Pokemon Showdown": { "errorType": "status_code", - "rank": 5446, + "rank": 5457, "tags": [ "us" ], @@ -2272,7 +2483,7 @@ }, "PokerStrategy": { "errorType": "status_code", - "rank": 8114272, + "rank": 8109980, "url": "http://www.pokerstrategy.net/user/{}/profile/", "urlMain": "http://www.pokerstrategy.net", "username_claimed": "blue", @@ -2280,7 +2491,7 @@ }, "Polygon": { "errorType": "status_code", - "rank": 1446, + "rank": 1454, "tags": [ "us" ], @@ -2304,7 +2515,7 @@ "ProductHunt": { "errorMsg": "Product Hunt is a curation of the best new products", "errorType": "message", - "rank": 10118, + "rank": 10159, "tags": [ "tech", "us" @@ -2316,7 +2527,7 @@ }, "PromoDJ": { "errorType": "status_code", - "rank": 33958, + "rank": 33832, "tags": [ "ru" ], @@ -2328,7 +2539,7 @@ "Proza.ru": { "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 9217, + "rank": 9223, "tags": [ "ru", "writing" @@ -2341,7 +2552,7 @@ "Quora": { "errorType": "response_url", "errorUrl": "https://www.quora.com/profile/{}", - "rank": 339, + "rank": 342, "tags": [ "in" ], @@ -2352,7 +2563,7 @@ }, "Rajce.net": { "errorType": "status_code", - "rank": 1608, + "rank": 1599, "tags": [ "cz" ], @@ -2361,6 +2572,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "RamblerDating": { + "errorType": "response_url", + "rank": 318, + "tags": [ + "dating", + "ru" + ], + "url": "https://dating.rambler.ru/page/{}", + "urlMain": "https://dating.rambler.ru/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "Rap-royalty": { "errorMsg": "This user has not registered and therefore does not have a profile to view.", "errorType": "message", @@ -2376,7 +2599,7 @@ }, "Rate Your Music": { "errorType": "status_code", - "rank": 5907, + "rank": 5903, "tags": [ "us" ], @@ -2388,7 +2611,7 @@ "Realmeye": { "errorMsg": "Sorry, but we either:", "errorType": "message", - "rank": 44925, + "rank": 44915, "tags": [ "us" ], @@ -2399,7 +2622,7 @@ }, "Redbubble": { "errorType": "status_code", - "rank": 821, + "rank": 822, "tags": [ "us" ], @@ -2420,10 +2643,23 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Redtube": { + "errorType": "status_code", + "rank": 565, + "tags": [ + "global", + "porno", + "us" + ], + "url": "https://ru.redtube.com/users/{}", + "urlMain": "https://ru.redtube.com/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Repl.it": { "errorMsg": "404", "errorType": "message", - "rank": 3999, + "rank": 3982, "tags": [ "coding", "us" @@ -2449,7 +2685,7 @@ "Revelation": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "forum", "gaming", @@ -2463,7 +2699,7 @@ "ReverbNation": { "errorMsg": "Sorry, we couldn't find that page", "errorType": "message", - "rank": 8405, + "rank": 8430, "tags": [ "us" ], @@ -2484,9 +2720,22 @@ "username_claimed": "bluewolfekiller", "username_unclaimed": "noonewouldeverusethis7" }, + "Rottentomatoes": { + "errorType": "status_code", + "rank": 789, + "tags": [ + "films", + "global", + "us" + ], + "url": "https://www.rottentomatoes.com/critic/{}/movies", + "urlMain": "https://www.rottentomatoes.com", + "username_claimed": "ben-allen", + "username_unclaimed": "noonewouldeverusethis7" + }, "RoyalCams": { "errorType": "status_code", - "rank": 70620, + "rank": 70774, "tags": [ "ru", "us", @@ -2499,7 +2748,7 @@ }, "RubyGems": { "errorType": "status_code", - "rank": 34845, + "rank": 34951, "tags": [ "us" ], @@ -2508,10 +2757,23 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Rutracker": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", + "errorType": "message", + "rank": 581, + "tags": [ + "ru", + "torrent" + ], + "url": "https://rutracker.org/forum/profile.php?mode=viewprofile&u={}", + "urlMain": "https://rutracker.org/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Samlib": { "caseSentitive": true, "errorType": "status_code", - "rank": 17781, + "rank": 17951, "tags": [ "ru", "writing" @@ -2523,7 +2785,7 @@ }, "Sbazar.cz": { "errorType": "status_code", - "rank": 14817, + "rank": 14787, "tags": [ "cz" ], @@ -2534,7 +2796,7 @@ }, "Scratch": { "errorType": "status_code", - "rank": 676, + "rank": 677, "tags": [ "coding", "us" @@ -2547,7 +2809,7 @@ "Scribd": { "errorMsg": "Page not found", "errorType": "message", - "rank": 306, + "rank": 304, "tags": [ "coding", "us" @@ -2559,7 +2821,7 @@ }, "ShitpostBot5000": { "errorType": "status_code", - "rank": 765789, + "rank": 765651, "tags": [ "us" ], @@ -2570,7 +2832,7 @@ }, "Showme": { "errorType": "status_code", - "rank": 110496, + "rank": 112026, "tags": [ "in", "us" @@ -2596,7 +2858,7 @@ "Signal": { "errorMsg": "Oops! That page doesn\u2019t exist or is private.", "errorType": "message", - "rank": 1526361, + "rank": 1526956, "url": "https://community.signalusers.org/u/{}", "urlMain": "https://community.signalusers.org", "username_claimed": "jlund", @@ -2604,7 +2866,7 @@ }, "Slack": { "errorType": "status_code", - "rank": 308, + "rank": 305, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "us" @@ -2620,7 +2882,7 @@ "errors": { "503 - Service Offline": "Site error" }, - "rank": 11734, + "rank": 11768, "tags": [ "in" ], @@ -2631,7 +2893,7 @@ }, "SlideShare": { "errorType": "status_code", - "rank": 156, + "rank": 157, "tags": [ "in", "presos" @@ -2643,7 +2905,7 @@ }, "Smashcast": { "errorType": "status_code", - "rank": 235099, + "rank": 235722, "tags": [ "gr", "us" @@ -2655,7 +2917,7 @@ }, "Smule": { "errorType": "status_code", - "rank": 8112, + "rank": 8133, "tags": [ "in", "music" @@ -2665,6 +2927,18 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "SoftwareInformer": { + "errorType": "response_url", + "rank": 1048, + "tags": [ + "global", + "in" + ], + "url": "https://users.software.informer.com/{}/", + "urlMain": "https://users.software.informer.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "SoundCloud": { "errorType": "status_code", "rank": 95, @@ -2692,7 +2966,7 @@ "Speedrun.com": { "errorMsg": "not found.", "errorType": "message", - "rank": 11222, + "rank": 11454, "tags": [ "us" ], @@ -2703,7 +2977,7 @@ }, "Splits.io": { "errorType": "status_code", - "rank": 771455, + "rank": 771263, "url": "https://splits.io/users/{}", "urlMain": "https://splits.io", "username_claimed": "cambosteve", @@ -2711,7 +2985,7 @@ }, "Sporcle": { "errorType": "status_code", - "rank": 3881, + "rank": 3905, "tags": [ "gaming", "us" @@ -2723,7 +2997,7 @@ }, "SportsRU": { "errorType": "status_code", - "rank": 2182, + "rank": 2173, "tags": [ "ru" ], @@ -2737,7 +3011,7 @@ "errors": { "Spotify is currently not available in your country.": "Access denied in your country, use proxy/vpn" }, - "rank": 87, + "rank": 88, "request_head_only": false, "tags": [ "music", @@ -2750,7 +3024,7 @@ }, "Star Citizen": { "errorType": "status_code", - "rank": 10302, + "rank": 10536, "tags": [ "de", "us" @@ -2788,7 +3062,7 @@ "Steamid": { "errorMsg": "
Profile not found
", "errorType": "message", - "rank": 180541, + "rank": 179660, "tags": [ "ru", "us" @@ -2801,7 +3075,7 @@ "Stihi.ru": { "errorMsg": "\u0410\u0432\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 6137, + "rank": 6170, "tags": [ "ru", "writing" @@ -2814,7 +3088,7 @@ "Strava": { "errorMsg": "Strava | Run and Cycling Tracking on the Social Network for Athletes", "errorType": "message", - "rank": 837, + "rank": 840, "tags": [ "us" ], @@ -2825,7 +3099,7 @@ }, "SublimeForum": { "errorType": "status_code", - "rank": 7069, + "rank": 7086, "tags": [ "in" ], @@ -2848,7 +3122,7 @@ "TamTam": { "errorType": "response_url", "errorUrl": "https://tamtam.chat/", - "rank": 101559, + "rank": 101586, "tags": [ "ru" ], @@ -2860,7 +3134,7 @@ "Tanks": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "forum", "gaming", @@ -2873,7 +3147,7 @@ }, "Taringa": { "errorType": "status_code", - "rank": 2851, + "rank": 2857, "tags": [ "ar", "social" @@ -2886,7 +3160,7 @@ "Telegram": { "errorMsg": "twitter:title\" content=\"Telegram: Contact", "errorType": "message", - "rank": 240, + "rank": 238, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_]{4,}$", "tags": [ "br", @@ -2900,7 +3174,7 @@ }, "Teletype": { "errorType": "status_code", - "rank": 11356, + "rank": 11383, "tags": [ "in", "writing" @@ -2912,7 +3186,7 @@ }, "Tellonym.me": { "errorType": "status_code", - "rank": 27984, + "rank": 28010, "tags": [ "de", "fr", @@ -2923,10 +3197,63 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "TheGuardian": { + "errorMsg": "public profile | Identity | The Guardian", + "errorType": "message", + "rank": 142, + "tags": [ + "global", + "us" + ], + "url": "https://profile.theguardian.com/user/{}", + "urlMain": "https://theguardian.com", + "username_claimed": "frogprincess", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TheVerge": { + "errorType": "status_code", + "rank": 628, + "tags": [ + "us" + ], + "url": "https://www.theverge.com/users/{}", + "urlMain": "https://www.theverge.com", + "username_claimed": "Patlex", + "username_unclaimed": "noonewouldeverusethis7" + }, + "ThemeForest": { + "errorType": "status_code", + "rank": 901, + "tags": [ + "global", + "in" + ], + "url": "https://themeforest.net/user/{}", + "urlMain": "https://themeforest.net", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "TikTok": { + "errorMsg": "", + "errorType": "message", + "headers": { + "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36" + }, + "rank": 190, + "request_head_only": false, + "tags": [ + "global", + "us" + ], + "url": "https://www.tiktok.com/@{}", + "urlMain": "https://www.tiktok.com/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, "Tinder": { "errorMsg": "twitter:title\" content=\"Tinder |", "errorType": "message", - "rank": 941, + "rank": 935, "tags": [ "dating", "us" @@ -2938,7 +3265,7 @@ }, "Toster": { "errorType": "status_code", - "rank": 1459, + "rank": 1462, "tags": [ "ru" ], @@ -2950,7 +3277,7 @@ "TrackmaniaLadder": { "errorMsg": "player unknown or invalid", "errorType": "message", - "rank": 386861, + "rank": 395411, "tags": [ "au" ], @@ -2972,7 +3299,7 @@ }, "Trakt": { "errorType": "status_code", - "rank": 7441, + "rank": 7426, "tags": [ "fr" ], @@ -2984,7 +3311,7 @@ "TrashboxRU": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 15720, + "rank": 15796, "regexCheck": "^[A-Za-z0-9_-]{3,16}$", "tags": [ "ru" @@ -3010,7 +3337,7 @@ "TripAdvisor": { "errorMsg": "This page is on vacation\u2026", "errorType": "message", - "rank": 404, + "rank": 400, "tags": [ "travel", "us" @@ -3022,7 +3349,7 @@ }, "TryHackMe": { "errorType": "status_code", - "rank": 63954, + "rank": 63961, "tags": [ "us" ], @@ -3031,6 +3358,18 @@ "username_claimed": "ashu", "username_unclaimed": "noonewouldeverusethis7" }, + "Tumblr": { + "errorType": "status_code", + "rank": 113, + "tags": [ + "global", + "us" + ], + "url": "https://{}.tumblr.com/", + "urlMain": "https://tumblr.com/", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, "Twitch": { "errorType": "status_code", "rank": 28, @@ -3065,7 +3404,7 @@ "Typeracer": { "errorMsg": "Profile Not Found", "errorType": "message", - "rank": 7650, + "rank": 7653, "tags": [ "us" ], @@ -3074,9 +3413,35 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Ubisoft": { + "errorMsg": "This user has not registered and therefore does not have a profile to view.", + "errorType": "message", + "rank": 1069, + "tags": [ + "gaming", + "global", + "us" + ], + "url": "https://forums-ru.ubisoft.com/member.php/?username={}", + "urlMain": "https://forums-ru.ubisoft.com/", + "username_claimed": "MrNardred", + "username_unclaimed": "noonewouldeverusethis7" + }, + "Udemy": { + "errorType": "response_url", + "rank": 128, + "tags": [ + "global", + "in" + ], + "url": "https://www.udemy.com/user/{}/", + "urlMain": "https://www.udemy.com", + "username_claimed": "adammortimer", + "username_unclaimed": "noonewouldeverusethis7" + }, "Ultimate-Guitar": { "errorType": "status_code", - "rank": 663, + "rank": 660, "tags": [ "us" ], @@ -3111,7 +3476,7 @@ }, "VSCO": { "errorType": "status_code", - "rank": 4901, + "rank": 4897, "tags": [ "us" ], @@ -3123,7 +3488,7 @@ "Velomania": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", "errorType": "message", - "rank": 109380, + "rank": 110074, "tags": [ "ru" ], @@ -3134,7 +3499,7 @@ }, "Venmo": { "errorType": "status_code", - "rank": 4649, + "rank": 4632, "tags": [ "finance", "us" @@ -3160,7 +3525,7 @@ "Virgool": { "errorMsg": "\u06f4\u06f0\u06f4", "errorType": "message", - "rank": 2469, + "rank": 2466, "tags": [ "ir" ], @@ -3172,7 +3537,7 @@ "VirusTotal": { "errorMsg": "not found", "errorType": "message", - "rank": 5963, + "rank": 6123, "tags": [ "in" ], @@ -3184,7 +3549,7 @@ "Warface": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", "errorType": "message", - "rank": 55, + "rank": 56, "tags": [ "ru" ], @@ -3195,7 +3560,7 @@ }, "Warrior Forum": { "errorType": "status_code", - "rank": 3580, + "rank": 3601, "tags": [ "us" ], @@ -3207,7 +3572,7 @@ "Wattpad": { "errorMsg": "userError-404", "errorType": "message", - "rank": 656, + "rank": 658, "tags": [ "in", "social" @@ -3220,7 +3585,7 @@ "We Heart It": { "errorMsg": "Oops! You've landed on a moving target!", "errorType": "message", - "rank": 3190, + "rank": 3204, "tags": [ "in" ], @@ -3231,7 +3596,7 @@ }, "WebNode": { "errorType": "status_code", - "rank": 20772, + "rank": 20745, "tags": [ "cz" ], @@ -3242,7 +3607,7 @@ }, "Whonix Forum": { "errorType": "status_code", - "rank": 219087, + "rank": 219502, "tags": [ "id", "us" @@ -3255,7 +3620,7 @@ "Wikidot": { "errorMsg": "User does not exist.", "errorType": "message", - "rank": 3471, + "rank": 3477, "tags": [ "us" ], @@ -3267,7 +3632,7 @@ "WikimapiaProfile": { "errorMsg": "January 01, 1970", "errorType": "message", - "rank": 6528, + "rank": 6490, "request_head_only": false, "tags": [ "ru" @@ -3282,7 +3647,7 @@ "caseSentitive": true, "errorMsg": "20", "errorType": "message", - "rank": 6528, + "rank": 6490, "request_head_only": false, "tags": [ "ru" @@ -3307,7 +3672,7 @@ }, "Wix": { "errorType": "status_code", - "rank": 181, + "rank": 182, "tags": [ "us" ], @@ -3319,7 +3684,7 @@ "WordPress": { "errorType": "response_url", "errorUrl": "wordpress.com/typo/?subdomain=", - "rank": 56, + "rank": 57, "regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$", "tags": [ "blog", @@ -3333,7 +3698,7 @@ "WordPressOrg": { "errorType": "response_url", "errorUrl": "https://wordpress.org", - "rank": 572, + "rank": 567, "tags": [ "in" ], @@ -3342,13 +3707,26 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "Wowhead": { + "errorType": "status_code", + "rank": 568, + "tags": [ + "gaming", + "global", + "us" + ], + "url": "https://www.wowhead.com/user={}", + "urlMain": "https://www.wowhead.com", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "Xbox Gamertag": { "errorType": "status_code", "errors": { "Something went wrong": "Site error", "Why do I have to complete a CAPTCHA": "Captcha detected" }, - "rank": 369749, + "rank": 373052, "url": "https://xboxgamertag.com/search/{}", "urlMain": "https://xboxgamertag.com/", "username_claimed": "smrnov", @@ -3454,7 +3832,7 @@ "YouNow": { "errorMsg": "No users found", "errorType": "message", - "rank": 14433, + "rank": 14517, "tags": [ "be" ], @@ -3466,7 +3844,7 @@ }, "YouPic": { "errorType": "status_code", - "rank": 34391, + "rank": 34141, "tags": [ "in", "sd" @@ -3478,7 +3856,7 @@ }, "YouPorn": { "errorType": "status_code", - "rank": 434, + "rank": 436, "tags": [ "porno", "us" @@ -3518,7 +3896,7 @@ "headers": { "Accept-Language": "en-US,en;q=0.9" }, - "rank": 1811, + "rank": 1799, "tags": [ "food", "in" @@ -3530,7 +3908,7 @@ }, "akniga": { "errorType": "status_code", - "rank": 10988, + "rank": 11052, "tags": [ "ru" ], @@ -3542,7 +3920,7 @@ "allmylinks": { "errorMsg": "Page not found", "errorType": "message", - "rank": 20710, + "rank": 20321, "tags": [ "us" ], @@ -3553,7 +3931,7 @@ }, "aminoapp": { "errorType": "status_code", - "rank": 2024, + "rank": 2028, "tags": [ "br", "us" @@ -3565,7 +3943,7 @@ }, "authorSTREAM": { "errorType": "status_code", - "rank": 12727, + "rank": 12797, "tags": [ "in", "presos" @@ -3578,7 +3956,7 @@ "babyRU": { "errorMsg": "\u0423\u043f\u0441, \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0438\u0441\u043a\u0430\u043b\u0438, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442", "errorType": "message", - "rank": 4709, + "rank": 4696, "tags": [ "ru" ], @@ -3590,7 +3968,7 @@ "babyblogRU": { "errorType": "response_url", "errorUrl": "https://www.babyblog.ru/", - "rank": 14024, + "rank": 14023, "request_head_only": false, "tags": [ "ru" @@ -3600,9 +3978,23 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis" }, + "br.op.gg": { + "errorMsg": "This summoner is not registered", + "errorType": "message", + "rank": 271, + "request_head_only": false, + "tags": [ + "br", + "us" + ], + "url": "https://br.op.gg/summoner/userName={}", + "urlMain": "https://br.op.gg/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "chaos.social": { "errorType": "status_code", - "rank": 1957965, + "rank": 1957517, "url": "https://chaos.social/@{}", "urlMain": "https://chaos.social/", "username_claimed": "rixx", @@ -3610,7 +4002,7 @@ }, "couchsurfing": { "errorType": "status_code", - "rank": 13434, + "rank": 13395, "tags": [ "in" ], @@ -3619,9 +4011,20 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "cyber.harvard.edu": { + "errorType": "status_code", + "rank": 716, + "tags": [ + "us" + ], + "url": "https://cyber.harvard.edu/people/{}", + "urlMain": "https://cyber.harvard.edu", + "username_claimed": "dboyd", + "username_unclaimed": "noonewouldeverusethis7" + }, "d3RU": { "errorType": "status_code", - "rank": 37272, + "rank": 37253, "tags": [ "ru" ], @@ -3632,7 +4035,7 @@ }, "dailykos": { "errorType": "status_code", - "rank": 5233, + "rank": 5212, "tags": [ "us" ], @@ -3643,7 +4046,7 @@ }, "datingRU": { "errorType": "status_code", - "rank": 64468, + "rank": 64534, "tags": [ "ru" ], @@ -3655,7 +4058,7 @@ "devRant": { "errorType": "response_url", "errorUrl": "https://devrant.com/", - "rank": 105382, + "rank": 105587, "tags": [ "in", "social" @@ -3667,7 +4070,7 @@ }, "drive2": { "errorType": "status_code", - "rank": 1333, + "rank": 1336, "tags": [ "ru" ], @@ -3678,7 +4081,7 @@ }, "eGPU": { "errorType": "status_code", - "rank": 95870, + "rank": 95696, "tags": [ "jp", "us" @@ -3691,7 +4094,7 @@ "easyen": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 32379, + "rank": 31154, "tags": [ "ru" ], @@ -3702,15 +4105,42 @@ }, "eintracht": { "errorType": "status_code", - "rank": 412499, + "rank": 420443, "url": "https://community.eintracht.de/fans/{}", "urlMain": "https://eintracht.de", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "eune.op.gg": { + "errorMsg": "This summoner is not registered", + "errorType": "message", + "rank": 271, + "tags": [ + "eu", + "gaming", + "us" + ], + "url": "https://eune.op.gg/summoner/userName={}", + "urlMain": "https://eune.op.gg/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "euw.op.gg": { + "errorMsg": "This summoner is not registered", + "errorType": "message", + "rank": 271, + "tags": [ + "gaming", + "us" + ], + "url": "https://euw.op.gg/summoner/userName={}", + "urlMain": "https://euw.op.gg/", + "username_claimed": "blue", + "username_unclaimed": "noonewouldeverusethis7" + }, "fixya": { "errorType": "status_code", - "rank": 4286, + "rank": 4281, "tags": [ "us" ], @@ -3721,7 +4151,7 @@ }, "fl": { "errorType": "status_code", - "rank": 48605, + "rank": 48253, "tags": [ "ru" ], @@ -3733,7 +4163,7 @@ "forum_guns": { "errorMsg": "action=https://forum.guns.ru/forummisc/blog/search", "errorType": "message", - "rank": 24804, + "rank": 24916, "tags": [ "ru" ], @@ -3745,7 +4175,7 @@ "forumhouseRU": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", - "rank": 13374, + "rank": 13394, "tags": [ "ru" ], @@ -3754,9 +4184,35 @@ "username_claimed": "red", "username_unclaimed": "noonewouldeverusethis7" }, + "forums.drom.ru": { + "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", + "errorType": "message", + "rank": 1074, + "tags": [ + "auto", + "ru" + ], + "url": "https://forums.drom.ru/member.php?username={}", + "urlMain": "https://forums.drom.ru/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "forums.ea.com": { + "errorType": "status_code", + "rank": 757, + "tags": [ + "gaming", + "global", + "us" + ], + "url": "https://forums.ea.com/en/nhl/profile/discussions/{}", + "urlMain": "https://forums.ea.com", + "username_claimed": "red", + "username_unclaimed": "noonewouldeverusethis7" + }, "geocaching": { "errorType": "status_code", - "rank": 10778, + "rank": 10856, "tags": [ "de", "social" @@ -3769,7 +4225,7 @@ "getmyuni": { "errorMsg": "Error 404", "errorType": "message", - "rank": 11493, + "rank": 11492, "tags": [ "in" ], @@ -3780,7 +4236,7 @@ }, "gfycat": { "errorType": "status_code", - "rank": 1206, + "rank": 1209, "tags": [ "us" ], @@ -3791,7 +4247,7 @@ }, "habr": { "errorType": "status_code", - "rank": 1459, + "rank": 1462, "tags": [ "ru" ], @@ -3802,7 +4258,7 @@ }, "hackster": { "errorType": "status_code", - "rank": 18904, + "rank": 18857, "tags": [ "us" ], @@ -3814,7 +4270,7 @@ "hunting": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", - "rank": 134143, + "rank": 134097, "tags": [ "ru" ], @@ -3826,7 +4282,7 @@ "iMGSRC.RU": { "errorType": "response_url", "errorUrl": "https://imgsrc.ru/", - "rank": 17299, + "rank": 17454, "tags": [ "es", "ru" @@ -3839,7 +4295,7 @@ "igromania": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", "errorType": "message", - "rank": 12441, + "rank": 12482, "tags": [ "gaming", "ru" @@ -3852,7 +4308,7 @@ "interpals": { "errorMsg": "The requested user does not exist or is inactive", "errorType": "message", - "rank": 7364, + "rank": 7378, "tags": [ "dating", "sd" @@ -3864,7 +4320,7 @@ }, "irecommend": { "errorType": "status_code", - "rank": 2022, + "rank": 2018, "tags": [ "ru" ], @@ -3876,7 +4332,7 @@ "jeuxvideo": { "errorMsg": "Vous \u00eates", "errorType": "message", - "rank": 1807, + "rank": 1793, "tags": [ "fr", "gaming" @@ -3889,7 +4345,7 @@ "kofi": { "errorMsg": "Make income from your art!", "errorType": "message", - "rank": 9165, + "rank": 9201, "tags": [ "freelance", "ru", @@ -3902,7 +4358,7 @@ }, "kwork": { "errorType": "status_code", - "rank": 6560, + "rank": 6549, "tags": [ "ru" ], @@ -3914,7 +4370,7 @@ "labpentestit": { "errorType": "response_url", "errorUrl": "https://lab.pentestit.ru/{}", - "rank": 2475978, + "rank": 2626132, "tags": [ "cybersec" ], @@ -3923,9 +4379,35 @@ "username_claimed": "CSV", "username_unclaimed": "noonewouldeverusethis7" }, + "lan.op.gg": { + "errorMsg": "This summoner is not registered", + "errorType": "message", + "rank": 271, + "tags": [ + "us" + ], + "url": "https://lan.op.gg/summoner/userName={}", + "urlMain": "https://lan.op.gg/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, + "las.op.gg": { + "errorMsg": "This summoner is not registered", + "errorType": "message", + "rank": 271, + "tags": [ + "gaming", + "global", + "us" + ], + "url": "https://las.op.gg/summoner/userName={}", + "urlMain": "https://las.op.gg/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "last.fm": { "errorType": "status_code", - "rank": 1930, + "rank": 1937, "tags": [ "music", "us" @@ -3937,7 +4419,7 @@ }, "leasehackr": { "errorType": "status_code", - "rank": 52023, + "rank": 51803, "tags": [ "us" ], @@ -3948,7 +4430,7 @@ }, "mastodon.cloud": { "errorType": "status_code", - "rank": 1279812, + "rank": 1279792, "url": "https://mastodon.cloud/@{}", "urlMain": "https://mastodon.cloud/", "username_claimed": "TheAdmin", @@ -3956,7 +4438,7 @@ }, "mastodon.social": { "errorType": "status_code", - "rank": 1957965, + "rank": 1957517, "url": "https://mastodon.social/@{}", "urlMain": "https://chaos.social/", "username_claimed": "Gargron", @@ -3964,7 +4446,7 @@ }, "mastodon.technology": { "errorType": "status_code", - "rank": 962001, + "rank": 993549, "tags": [ "th" ], @@ -3975,7 +4457,7 @@ }, "mastodon.xyz": { "errorType": "status_code", - "rank": 962001, + "rank": 993549, "tags": [ "th" ], @@ -3998,7 +4480,7 @@ "metacritic": { "errorMsg": "User not found", "errorType": "message", - "rank": 2197, + "rank": 2189, "regexCheck": "^(?![-_])[A-Za-z0-9-_]{3,15}$", "tags": [ "us" @@ -4010,7 +4492,7 @@ }, "moikrug": { "errorType": "status_code", - "rank": 159862, + "rank": 160405, "tags": [ "us" ], @@ -4021,12 +4503,25 @@ }, "mstdn.io": { "errorType": "status_code", - "rank": 1796064, + "rank": 1795495, "url": "https://mstdn.io/@{}", "urlMain": "https://mstdn.io/", "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "na.op.gg": { + "errorMsg": "This summoner is not registered", + "errorType": "message", + "rank": 271, + "tags": [ + "gaming", + "us" + ], + "url": "https://na.op.gg/summoner/userName={}", + "urlMain": "https://na.op.gg/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "nairaland.com": { "errorType": "status_code", "rank": 1152, @@ -4040,7 +4535,7 @@ }, "nightbot": { "errorType": "status_code", - "rank": 9981, + "rank": 10019, "tags": [ "us" ], @@ -4060,7 +4555,7 @@ }, "notabug.org": { "errorType": "status_code", - "rank": 222036, + "rank": 222998, "tags": [ "ma" ], @@ -4072,7 +4567,7 @@ }, "note": { "errorType": "status_code", - "rank": 896, + "rank": 893, "tags": [ "jp" ], @@ -4081,10 +4576,24 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis7" }, + "oce.op.gg": { + "errorMsg": "This summoner is not registered", + "errorType": "message", + "rank": 271, + "tags": [ + "au", + "gaming", + "us" + ], + "url": "https://oce.op.gg/summoner/userName={}", + "urlMain": "https://oce.op.gg/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "opennet": { "errorMsg": "\u0418\u043c\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e", "errorType": "message", - "rank": 60553, + "rank": 61013, "regexCheck": "^[^-]+$", "tags": [ "ru" @@ -4096,7 +4605,7 @@ }, "opensource": { "errorType": "status_code", - "rank": 6484, + "rank": 6485, "tags": [ "in" ], @@ -4107,7 +4616,7 @@ }, "osu!": { "errorType": "status_code", - "rank": 3960, + "rank": 3953, "tags": [ "us" ], @@ -4119,7 +4628,7 @@ "phpRU": { "errorMsg": "\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0438\u043c\u044f.", "errorType": "message", - "rank": 110921, + "rank": 113964, "tags": [ "ru" ], @@ -4130,7 +4639,7 @@ }, "pikabu": { "errorType": "status_code", - "rank": 1090, + "rank": 1087, "tags": [ "ru" ], @@ -4141,7 +4650,7 @@ }, "polarsteps": { "errorType": "status_code", - "rank": 165137, + "rank": 165101, "tags": [ "us" ], @@ -4153,7 +4662,7 @@ }, "pr0gramm": { "errorType": "status_code", - "rank": 3616, + "rank": 3632, "tags": [ "de" ], @@ -4167,7 +4676,7 @@ "errors": { "Access denied": "Cloudflare security protection detected" }, - "rank": 249429, + "rank": 248973, "request_head_only": false, "tags": [ "ru" @@ -4178,9 +4687,12 @@ "username_unclaimed": "noonewouldeverusethis7" }, "qiwi.me": { - "errorMsg": ["no piggybox found", "invalid alias"], + "errorMsg": [ + "no piggybox found", + "invalid alias" + ], "errorType": "message", - "rank": 385270, + "rank": 385586, "tags": [ "finance", "ru" @@ -4193,7 +4705,7 @@ }, "radio_echo_msk": { "errorType": "status_code", - "rank": 1396, + "rank": 1384, "tags": [ "ru" ], @@ -4205,7 +4717,7 @@ "radioskot": { "errorMsg": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d", "errorType": "message", - "rank": 126995, + "rank": 128023, "regexCheck": "^[^-]+$", "tags": [ "ru" @@ -4215,9 +4727,23 @@ "username_claimed": "red", "username_unclaimed": "noonewouldeverusethis7" }, + "ru.op.gg": { + "errorMsg": "This summoner is not registered", + "errorType": "message", + "rank": 271, + "tags": [ + "gaming", + "ru", + "us" + ], + "url": "https://ru.op.gg/summoner/userName={}", + "urlMain": "https://ru.op.gg/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "satsisRU": { "errorType": "status_code", - "rank": 227916, + "rank": 226778, "tags": [ "ru" ], @@ -4228,7 +4754,7 @@ }, "segmentfault": { "errorType": "status_code", - "rank": 1207, + "rank": 1223, "tags": [ "cn" ], @@ -4239,7 +4765,7 @@ }, "social.tchncs.de": { "errorType": "status_code", - "rank": 488923, + "rank": 467783, "tags": [ "in", "vn" @@ -4252,7 +4778,7 @@ "soylentnews": { "errorMsg": "The user you requested does not exist, no matter how much you wish this might be the case.", "errorType": "message", - "rank": 720769, + "rank": 675285, "url": "https://soylentnews.org/~{}", "urlMain": "https://soylentnews.org", "username_claimed": "adam", @@ -4261,7 +4787,7 @@ "sparkpeople": { "errorMsg": "We couldn't find that user", "errorType": "message", - "rank": 17270, + "rank": 17256, "tags": [ "us" ], @@ -4272,7 +4798,7 @@ }, "spletnik": { "errorType": "status_code", - "rank": 8457, + "rank": 8467, "tags": [ "ru" ], @@ -4283,19 +4809,33 @@ }, "svidbook": { "errorType": "status_code", - "rank": 4083142, + "rank": 4081353, "url": "https://www.svidbook.ru/user/{}", "urlMain": "https://www.svidbook.ru/", "username_claimed": "green", "username_unclaimed": "noonewouldeverusethis7" }, + "tr.op.gg": { + "errorMsg": "This summoner is not registered", + "errorType": "message", + "rank": 271, + "tags": [ + "gaming", + "tr", + "us" + ], + "url": "https://tr.op.gg/summoner/userName={}", + "urlMain": "https://tr.op.gg/", + "username_claimed": "adam", + "username_unclaimed": "noonewouldeverusethis7" + }, "tracr.co": { "errorMsg": "No search results", "errorType": "message", "errors": { "g-recaptcha": "Captcha detected" }, - "rank": 1294716, + "rank": 1294526, "regexCheck": "^[A-Za-z0-9]{2,32}$", "tags": [ "gaming", @@ -4309,7 +4849,7 @@ "travellerspoint": { "errorMsg": "Wooops. Sorry!", "errorType": "message", - "rank": 70567, + "rank": 71202, "tags": [ "in", "us" @@ -4321,7 +4861,7 @@ }, "uid": { "errorType": "status_code", - "rank": 31878, + "rank": 31864, "tags": [ "ru" ], @@ -4332,7 +4872,7 @@ }, "windy": { "errorType": "status_code", - "rank": 1552, + "rank": 1532, "tags": [ "pl", "us" diff --git a/sites.md b/sites.md index 5003f2b6b..2e91e1e85 100644 --- a/sites.md +++ b/sites.md @@ -1,8 +1,8 @@ -## List of supported sites: total 363 +## List of supported sites: total 403 1. [GoogleMaps](https://maps.google.com/), top 1 2. [PlayStore](https://play.google.com/store), top 1 3. [YouTube](https://www.youtube.com/), top 2 -4. [Facebook](https://www.facebook.com/), top 8 +4. [Facebook](https://www.facebook.com/), top 9 5. [Wikipedia](https://www.wikipedia.org/), top 13 6. [Reddit](https://www.reddit.com/), top 18 7. [MicrosoftTechNet](https://social.technet.microsoft.com), top 23 @@ -22,345 +22,385 @@ 21. [YandexMusic](https://music.yandex.ru/), top 52 22. [YandexZnatoki](https://yandex.ru/q/), top 52 23. [Pornhub](https://pornhub.com/), top 53 -24. [Allods](https://allods.mail.ru), top 55 -25. [ArcheageRU](https://aa.mail.ru), top 55 -26. [Crossfire](https://cfire.mail.ru), top 55 -27. [Lostark](https://la.mail.ru), top 55 -28. [Love.Mail.ru](https://love.mail.ru), top 55 -29. [My.Mail.ru@bk.ru](https://my.mail.ru/), top 55 -30. [My.Mail.ru@gmail.com](https://my.mail.ru/), top 55 -31. [My.Mail.ru@list.ru](https://my.mail.ru/), top 55 -32. [My.Mail.ru@mail.ru](https://my.mail.ru/), top 55 -33. [My.Mail.ru@ya.ru](https://my.mail.ru/), top 55 -34. [My.Mail.ru@yandex.ru](https://my.mail.ru/), top 55 -35. [PerfectWorld](https://pw.mail.ru), top 55 -36. [PerfectWorldForum](https://pw.mail.ru/), top 55 -37. [Revelation](https://rev.mail.ru), top 55 -38. [Tanks](https://tanks.mail.ru), top 55 -39. [Warface](https://wf.mail.ru), top 55 -40. [WordPress](https://wordpress.com), top 56 +24. [Allods](https://allods.mail.ru), top 56 +25. [ArcheageRU](https://aa.mail.ru), top 56 +26. [Crossfire](https://cfire.mail.ru), top 56 +27. [Lostark](https://la.mail.ru), top 56 +28. [Love.Mail.ru](https://love.mail.ru), top 56 +29. [My.Mail.ru@bk.ru](https://my.mail.ru/), top 56 +30. [My.Mail.ru@gmail.com](https://my.mail.ru/), top 56 +31. [My.Mail.ru@list.ru](https://my.mail.ru/), top 56 +32. [My.Mail.ru@mail.ru](https://my.mail.ru/), top 56 +33. [My.Mail.ru@ya.ru](https://my.mail.ru/), top 56 +34. [My.Mail.ru@yandex.ru](https://my.mail.ru/), top 56 +35. [PerfectWorld](https://pw.mail.ru), top 56 +36. [PerfectWorldForum](https://pw.mail.ru/), top 56 +37. [Revelation](https://rev.mail.ru), top 56 +38. [Tanks](https://tanks.mail.ru), top 56 +39. [Warface](https://wf.mail.ru), top 56 +40. [WordPress](https://wordpress.com), top 57 41. [ChaturBate](https://chaturbate.com), top 59 42. [Twitter](https://www.twitter.com/), top 60 -43. [OK](https://ok.ru/), top 61 -44. [Spotify](https://open.spotify.com/), top 87 +43. [OK](https://ok.ru/), top 62 +44. [Spotify](https://open.spotify.com/), top 88 45. [Armchairgm](https://armchairgm.fandom.com/), top 90 46. [Battleraprus](https://battleraprus.fandom.com/ru), top 90 47. [BleachFandom](https://bleach.fandom.com/ru), top 90 48. [Fandom](https://www.fandom.com/), top 90 -49. [SoundCloud](https://soundcloud.com/), top 95 -50. [Etsy](https://www.etsy.com/), top 97 -51. [Medium](https://medium.com/), top 98 -52. [GitHub](https://www.github.com/), top 102 -53. [Roblox](https://www.roblox.com/), top 110 -54. [Xvideos](https://xvideos.com/), top 119 -55. [TradingView](https://www.tradingview.com/), top 131 -56. [xHamster](https://xhamster.com), top 141 -57. [CNET](https://www.cnet.com/), top 148 -58. [Zhihu](https://www.zhihu.com/), top 152 -59. [Trello](https://trello.com/), top 154 -60. [SlideShare](https://slideshare.net/), top 156 -61. [ResearchGate](https://www.researchgate.net/), top 160 -62. [Vimeo](https://vimeo.com/), top 161 -63. [Pinterest](https://www.pinterest.com/), top 170 -64. [Steam](https://steamcommunity.com/), top 176 -65. [SteamGroup](https://steamcommunity.com/), top 176 -66. [Shutterstock](https://www.shutterstock.com), top 180 -67. [Wix](https://wix.com/), top 181 -68. [mercadolivre](https://www.mercadolivre.com.br), top 194 -69. [Telegram](https://t.me/), top 240 -70. [DailyMotion](https://www.dailymotion.com/), top 252 -71. [Archive.org](https://archive.org), top 254 -72. [Euw](https://euw.op.gg/), top 270 -73. [Behance](https://www.behance.net/), top 278 -74. [Academia.edu](https://www.academia.edu/), top 305 -75. [Scribd](https://www.scribd.com/), top 306 -76. [Slack](https://slack.com), top 308 -77. [GoodReads](https://www.goodreads.com/), top 323 -78. [Patreon](https://www.patreon.com/), top 327 -79. [Quora](https://www.quora.com/), top 339 -80. [Blogger](https://www.blogger.com/), top 343 -81. [Chess](https://www.chess.com/ru/), top 363 -82. [Fiverr](https://www.fiverr.com/), top 369 -83. [TripAdvisor](https://tripadvisor.com/), top 404 -84. [9GAG](https://www.9gag.com/), top 406 -85. [YouPorn](https://youporn.com), top 434 -86. [Crunchyroll](https://www.crunchyroll.com/), top 448 -87. [LiveJournal](https://www.livejournal.com/), top 452 -88. [SourceForge](https://sourceforge.net/), top 456 -89. [BuzzFeed](https://buzzfeed.com/), top 474 -90. [Duolingo](https://duolingo.com/), top 480 -91. [DeviantART](https://deviantart.com), top 485 -92. [Unsplash](https://unsplash.com/), top 528 -93. [Issuu](https://issuu.com/), top 538 -94. [WordPressOrg](https://wordpress.org/), top 572 -95. [Oracle Community](https://community.oracle.com), top 583 -96. [Gamespot](https://www.gamespot.com/), top 637 -97. [Wattpad](https://www.wattpad.com/), top 656 -98. [Ultimate-Guitar](https://ultimate-guitar.com/), top 663 -99. [Scratch](https://scratch.mit.edu/), top 676 -100. [Giphy](https://giphy.com/), top 686 -101. [Redbubble](https://www.redbubble.com/), top 821 -102. [Strava](https://www.strava.com/), top 837 -103. [note](https://note.com/), top 896 -104. [Tinder](https://tinder.com/), top 941 -105. [MyAnimeList](https://myanimelist.net/), top 967 -106. [Disqus](https://disqus.com/), top 997 -107. [Flickr](https://www.flickr.com/), top 1058 -108. [Bandcamp](https://www.bandcamp.com/), top 1062 -109. [pikabu](https://pikabu.ru/), top 1090 -110. [nairaland.com](https://www.nairaland.com/), top 1152 -111. [Discogs](https://www.discogs.com/), top 1163 -112. [T-MobileSupport](https://support.t-mobile.com), top 1188 -113. [gfycat](https://gfycat.com/), top 1206 -114. [segmentfault](https://segmentfault.com/), top 1207 -115. [PCGamer](https://pcgamer.com), top 1215 -116. [Houzz](https://houzz.com/), top 1323 -117. [drive2](https://www.drive2.ru/), top 1333 -118. [radio_echo_msk](https://echo.msk.ru/), top 1396 -119. [Instructables](https://www.instructables.com/), top 1414 -120. [Polygon](https://www.polygon.com/), top 1446 -121. [Championat](https://www.championat.com/), top 1449 -122. [Career.habr](https://career.habr.com/), top 1459 -123. [Freelance.habr](https://freelance.habr.com/), top 1459 -124. [Toster](https://qna.habr.com/), top 1459 -125. [habr](https://habr.com/), top 1459 -126. [Pastebin](https://pastebin.com/), top 1511 -127. [windy](https://windy.com/), top 1552 -128. [Rajce.net](https://www.rajce.idnes.cz/), top 1608 -129. [Dribbble](https://dribbble.com/), top 1621 -130. [CloudflareCommunity](https://community.cloudflare.com/), top 1626 -131. [Otzovik](https://otzovik.com/), top 1696 -132. [BitBucket](https://bitbucket.org/), top 1719 -133. [Badoo](https://badoo.com/), top 1775 -134. [jeuxvideo](http://www.jeuxvideo.com), top 1807 -135. [Zomato](https://www.zomato.com/), top 1811 -136. [Itch.io](https://itch.io/), top 1824 -137. [last.fm](https://last.fm/), top 1930 -138. [irecommend](https://irecommend.ru/), top 2022 -139. [Freelancer.com](https://www.freelancer.com/), top 2023 -140. [aminoapp](https://aminoapps.com/), top 2024 -141. [Myspace](https://myspace.com/), top 2034 -142. [Lichess](https://lichess.org), top 2037 -143. [Flightradar24](https://www.flightradar24.com/), top 2086 -144. [PCPartPicker](https://pcpartpicker.com), top 2139 -145. [LeetCode](https://leetcode.com/), top 2151 -146. [SportsRU](https://www.sports.ru/), top 2182 -147. [metacritic](https://www.metacritic.com/), top 2197 -148. [Codecademy](https://www.codecademy.com/), top 2320 -149. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2346 -150. [4pda](https://4pda.ru/), top 2441 -151. [Virgool](https://virgool.io/), top 2469 -152. [Kaggle](https://www.kaggle.com/), top 2662 -153. [HackerRank](https://hackerrank.com/), top 2705 -154. [MixCloud](https://www.mixcloud.com/), top 2710 -155. [Kongregate](https://www.kongregate.com/), top 2760 -156. [Taringa](https://taringa.net/), top 2851 -157. [CreativeMarket](https://creativemarket.com/), top 2904 -158. [AskFM](https://ask.fm/), top 3165 -159. [We Heart It](https://weheartit.com/), top 3190 -160. [HubPages](https://hubpages.com/), top 3277 -161. [500px](https://500px.com/), top 3382 -162. [AllTrails](https://www.alltrails.com/), top 3417 -163. [GitLab](https://gitlab.com/), top 3467 -164. [Wikidot](http://www.wikidot.com/), top 3471 -165. [Photobucket](https://photobucket.com/), top 3493 -166. [Cracked](https://www.cracked.com/), top 3555 -167. [Docker Hub](https://hub.docker.com/), top 3563 -168. [Warrior Forum](https://www.warriorforum.com/), top 3580 -169. [pr0gramm](https://pr0gramm.com/), top 3616 -170. [Letterboxd](https://letterboxd.com/), top 3843 -171. [LiveLib](https://www.livelib.ru/), top 3874 -172. [Sporcle](https://www.sporcle.com/), top 3881 -173. [Gumroad](https://www.gumroad.com/), top 3896 -174. [osu!](https://osu.ppy.sh/), top 3960 -175. [Repl.it](https://repl.it/), top 3999 -176. [LiveLeak](https://www.liveleak.com/), top 4125 -177. [fixya](https://www.fixya.com), top 4286 -178. [Lolchess](https://lolchess.gg/), top 4440 -179. [Venmo](https://venmo.com/), top 4649 -180. [babyRU](https://www.baby.ru/), top 4709 -181. [VSCO](https://vsco.co/), top 4901 -182. [dailykos](https://www.dailykos.com), top 5233 -183. [Pokemon Showdown](https://pokemonshowdown.com), top 5446 -184. [HackerNews](https://news.ycombinator.com/), top 5862 -185. [Rate Your Music](https://rateyourmusic.com/), top 5907 -186. [VirusTotal](https://www.virustotal.com/), top 5963 -187. [Discuss.Elastic.co](https://discuss.elastic.co/), top 5977 -188. [Stihi.ru](https://www.stihi.ru/), top 6137 -189. [opensource](https://opensource.com/), top 6484 -190. [WikimapiaProfile](http://wikimapia.org), top 6528 -191. [WikimapiaSearch](http://wikimapia.org), top 6528 -192. [kwork](https://www.kwork.ru/), top 6560 -193. [Newgrounds](https://newgrounds.com), top 6634 -194. [NPM](https://www.npmjs.com/), top 6763 -195. [NPM-Package](https://www.npmjs.com/), top 6763 -196. [Aptoide](https://en.aptoide.com/), top 6825 -197. [Freesound](https://freesound.org/), top 6830 -198. [Pinkbike](https://www.pinkbike.com/), top 7014 -199. [SublimeForum](https://forum.sublimetext.com/), top 7069 -200. [BOOTH](https://booth.pm/), top 7090 -201. [DEV Community](https://dev.to/), top 7254 -202. [Memrise](https://www.memrise.com/), top 7318 -203. [Gitee](https://gitee.com/), top 7323 -204. [interpals](https://www.interpals.net/), top 7364 -205. [Audiojungle](https://audiojungle.net/), top 7398 -206. [Trakt](https://www.trakt.tv/), top 7441 -207. [FortniteTracker](https://fortnitetracker.com/challenges), top 7467 -208. [OpenStreetMap](https://www.openstreetmap.org/), top 7551 -209. [Typeracer](https://typeracer.com), top 7650 -210. [3dnews](http://forum.3dnews.ru/), top 7764 -211. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7879 -212. [Flipboard](https://flipboard.com/), top 8006 -213. [Smule](https://www.smule.com/), top 8112 -214. [Gravatar](http://en.gravatar.com/), top 8378 -215. [ReverbNation](https://www.reverbnation.com/), top 8405 -216. [spletnik](https://spletnik.ru/), top 8457 -217. [NICommunityForum](https://www.native-instruments.com/forum/), top 8509 -218. [Codechef](https://www.codechef.com/), top 9125 -219. [Cloob](https://www.cloob.com/), top 9163 -220. [kofi](https://ko-fi.com), top 9165 -221. [Proza.ru](https://www.proza.ru/), top 9217 -222. [Kali community](https://forums.kali.org/), top 9459 -223. [IFTTT](https://www.ifttt.com/), top 9683 -224. [Facenama](https://facenama.com/), top 9885 -225. [F6S](https://f6s.com/), top 9956 -226. [nightbot](https://nightbot.tv/), top 9981 -227. [ProductHunt](https://www.producthunt.com/), top 10118 -228. [Star Citizen](https://robertsspaceindustries.com/), top 10302 -229. [Launchpad](https://launchpad.net/), top 10663 -230. [geocaching](https://www.geocaching.com/), top 10778 -231. [akniga](https://akniga.org/profile/blue/), top 10988 -232. [Speedrun.com](https://speedrun.com/), top 11222 -233. [Teletype](https://teletype.in), top 11356 -234. [getmyuni](https://getmyuni.com/), top 11493 -235. [Coderwall](https://coderwall.com/), top 11529 -236. [Slashdot](https://slashdot.org), top 11734 -237. [PSNProfiles.com](https://psnprofiles.com/), top 11913 -238. [BuyMeACoffee](https://www.buymeacoffee.com/), top 12005 -239. [igromania](http://forum.igromania.ru/), top 12441 -240. [ImageShack](https://imageshack.com/), top 12634 -241. [authorSTREAM](http://www.authorstream.com/), top 12727 -242. [Contently](https://contently.com/), top 13015 -243. [forumhouseRU](https://www.forumhouse.ru/), top 13374 -244. [couchsurfing](https://www.couchsurfing.com/), top 13434 -245. [babyblogRU](https://www.babyblog.ru/), top 14024 -246. [YouNow](https://www.younow.com/), top 14433 -247. [Packagist](https://packagist.org/), top 14574 -248. [Sbazar.cz](https://www.sbazar.cz/), top 14817 -249. [TrashboxRU](https://trashbox.ru/), top 15720 -250. [MyMiniFactory](https://www.myminifactory.com/), top 15754 -251. [EyeEm](https://www.eyeem.com/), top 16741 -252. [sparkpeople](https://www.sparkpeople.com), top 17270 -253. [iMGSRC.RU](https://imgsrc.ru/), top 17299 -254. [Samlib](http://samlib.ru/), top 17781 -255. [HackerOne](https://hackerone.com/), top 18639 -256. [hackster](https://www.hackster.io), top 18904 -257. [Codewars](https://www.codewars.com), top 20095 -258. [allmylinks](https://allmylinks.com/), top 20710 -259. [WebNode](https://www.webnode.cz/), top 20772 -260. [About.me](https://about.me/), top 21507 -261. [Jimdo](https://jimdosite.com/), top 21823 -262. [MeetMe](https://www.meetme.com/), top 24320 -263. [forum_guns](https://forum.guns.ru/), top 24804 -264. [GuruShots](https://gurushots.com/), top 25199 -265. [Tellonym.me](https://tellonym.me/), top 27984 -266. [Carbonmade](https://carbonmade.com/), top 28082 -267. [Football](https://www.rusfootball.info/), top 29171 -268. [uid](https://uid.me/), top 31878 -269. [Ello](https://ello.co/), top 31924 -270. [Ask Fedora](https://ask.fedoraproject.org/), top 32194 -271. [easyen](https://easyen.ru/), top 32379 -272. [Anobii](https://www.anobii.com/), top 33272 -273. [PromoDJ](http://promodj.com/), top 33958 -274. [YouPic](https://youpic.com/), top 34391 -275. [RubyGems](https://rubygems.org/), top 34845 -276. [OpenCollective](https://opencollective.com/), top 35386 -277. [Periscope](https://www.periscope.tv/), top 35818 -278. [Coroflot](https://coroflot.com/), top 36916 -279. [d3RU](https://d3.ru/), top 37272 -280. [Hackaday](https://hackaday.io/), top 37784 -281. [LOR](https://linux.org.ru/), top 41831 -282. [HackTheBox](https://forum.hackthebox.eu/), top 42311 -283. [Realmeye](https://www.realmeye.com/), top 44925 -284. [7Cups](https://www.7cups.com/), top 45056 -285. [fl](https://www.fl.ru/), top 48605 -286. [NationStates Nation](https://nationstates.net), top 50449 -287. [NationStates Region](https://nationstates.net), top 50449 -288. [leasehackr](https://forum.leasehackr.com/), top 52023 -289. [Plug.DJ](https://plug.dj/), top 54408 -290. [opennet](https://www.opennet.ru/), top 60553 -291. [F3.cool](https://f3.cool/), top 63673 -292. [TryHackMe](https://tryhackme.com/), top 63954 -293. [datingRU](http://dating.ru), top 64468 -294. [Bookcrossing](https://www.bookcrossing.com/), top 65247 -295. [Keybase](https://keybase.io/), top 69845 -296. [travellerspoint](https://www.travellerspoint.com), top 70567 -297. [RoyalCams](https://royalcams.com), top 70620 -298. [Pling](https://www.pling.com/), top 84073 -299. [eGPU](https://egpu.io/), top 95870 -300. [Asciinema](https://asciinema.org), top 97245 -301. [TamTam](https://tamtam.chat/), top 101559 -302. [Clozemaster](https://www.clozemaster.com), top 103354 -303. [devRant](https://devrant.com/), top 105382 -304. [Velomania](https://forum.velomania.ru/), top 109380 -305. [Showme](https://www.showme.com), top 110496 -306. [phpRU](https://php.ru/forum/), top 110921 -307. [Munzee](https://www.munzee.com/), top 112784 -308. [GunsAndAmmo](https://gunsandammo.com/), top 121032 -309. [CapFriendly](https://www.capfriendly.com/), top 122808 -310. [radioskot](https://radioskot.ru/), top 126995 -311. [Countable](https://www.countable.us/), top 128419 -312. [hunting](https://www.hunting.ru/forum/), top 134143 -313. [Cent](https://cent.co/), top 144206 -314. [KanoWorld](https://world.kano.me/), top 149633 -315. [BLIP.fm](https://blip.fm/), top 154353 -316. [moikrug](https://moikrug.ru/), top 159862 -317. [polarsteps](https://polarsteps.com/), top 165137 -318. [Crevado](https://crevado.com/), top 171333 -319. [Steamid](https://steamid.uk/), top 180541 -320. [Lobsters](https://lobste.rs/), top 184124 -321. [Whonix Forum](https://forums.whonix.org/), top 219087 -322. [notabug.org](https://notabug.org/), top 222036 -323. [satsisRU](https://satsis.info/), top 227916 -324. [Smashcast](https://www.smashcast.tv/), top 235099 -325. [pvpru](https://pvpru.com/), top 249429 -326. [Avizo](https://www.avizo.cz/), top 278226 -327. [Hubski](https://hubski.com/), top 326081 -328. [Xbox Gamertag](https://xboxgamertag.com/), top 369749 -329. [qiwi.me](https://qiwi.me), top 385270 -330. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 386861 -331. [Bazar.cz](https://www.bazar.cz/), top 392156 -332. [eintracht](https://eintracht.de), top 412499 -333. [BinarySearch](https://binarysearch.io/), top 462827 -334. [House-Mixes.com](https://www.house-mixes.com/), top 470463 -335. [social.tchncs.de](https://social.tchncs.de/), top 488923 -336. [BitCoinForum](https://bitcoinforum.com), top 555610 -337. [soylentnews](https://soylentnews.org), top 720769 -338. [ShitpostBot5000](https://www.shitpostbot.com/), top 765789 -339. [Splits.io](https://splits.io), top 771455 -340. [Gam1ng](https://gam1ng.com.br), top 807474 -341. [mastodon.technology](https://mastodon.xyz/), top 962001 -342. [mastodon.xyz](https://mastodon.xyz/), top 962001 -343. [Alik.cz](https://www.alik.cz/), top 994668 -344. [Kik](http://kik.me/), top 1056066 -345. [mastodon.cloud](https://mastodon.cloud/), top 1279812 -346. [tracr.co](https://tracr.co/), top 1294716 -347. [OurDJTalk](https://ourdjtalk.com/), top 1356121 -348. [Signal](https://community.signalusers.org), top 1526361 -349. [mstdn.io](https://mstdn.io/), top 1796064 -350. [chaos.social](https://chaos.social/), top 1957965 -351. [mastodon.social](https://chaos.social/), top 1957965 -352. [labpentestit](https://lab.pentestit.ru/), top 2475978 -353. [Chatujme.cz](https://chatujme.cz/), top 3019547 -354. [svidbook](https://www.svidbook.ru/), top 4083142 -355. [ImgUp.cz](https://imgup.cz/), top 4423341 -356. [GDProfiles](https://gdprofiles.com/), top 6739260 -357. [2Dimensions](https://2Dimensions.com/), top 7383017 -358. [Designspiration](https://www.designspiration.net/), top 7450360 -359. [PokerStrategy](http://www.pokerstrategy.net), top 8114272 -360. [CashMe](https://cash.me/), top 0 -361. [Filmogs](https://www.filmo.gs/), top 0 -362. [Rap-royalty](http://www.rap-royalty.com/), top 0 -363. [nnRU](https://https://www.nn.ru/), top 0 +49. [FandomCommunityCentral](https://community.fandom.com), top 90 +50. [SoundCloud](https://soundcloud.com/), top 95 +51. [Etsy](https://www.etsy.com/), top 97 +52. [Medium](https://medium.com/), top 99 +53. [GitHub](https://www.github.com/), top 100 +54. [Roblox](https://www.roblox.com/), top 110 +55. [Freepik](https://www.freepik.com), top 112 +56. [Tumblr](https://tumblr.com/), top 113 +57. [Xvideos](https://xvideos.com/), top 119 +58. [Udemy](https://www.udemy.com), top 128 +59. [TradingView](https://www.tradingview.com/), top 131 +60. [xHamster](https://xhamster.com), top 141 +61. [TheGuardian](https://theguardian.com), top 142 +62. [CNET](https://www.cnet.com/), top 147 +63. [Zhihu](https://www.zhihu.com/), top 152 +64. [Trello](https://trello.com/), top 154 +65. [SlideShare](https://slideshare.net/), top 157 +66. [ResearchGate](https://www.researchgate.net/), top 160 +67. [Vimeo](https://vimeo.com/), top 161 +68. [Pinterest](https://www.pinterest.com/), top 169 +69. [Steam](https://steamcommunity.com/), top 176 +70. [SteamGroup](https://steamcommunity.com/), top 176 +71. [Shutterstock](https://www.shutterstock.com), top 180 +72. [Mozilla Support](https://support.mozilla.org), top 181 +73. [Wix](https://wix.com/), top 182 +74. [TikTok](https://www.tiktok.com/), top 190 +75. [mercadolivre](https://www.mercadolivre.com.br), top 194 +76. [Telegram](https://t.me/), top 238 +77. [DailyMotion](https://www.dailymotion.com/), top 252 +78. [Archive.org](https://archive.org), top 254 +79. [br.op.gg](https://br.op.gg/), top 271 +80. [eune.op.gg](https://eune.op.gg/), top 271 +81. [euw.op.gg](https://euw.op.gg/), top 271 +82. [lan.op.gg](https://lan.op.gg/), top 271 +83. [las.op.gg](https://las.op.gg/), top 271 +84. [na.op.gg](https://na.op.gg/), top 271 +85. [oce.op.gg](https://oce.op.gg/), top 271 +86. [ru.op.gg](https://ru.op.gg/), top 271 +87. [tr.op.gg](https://tr.op.gg/), top 271 +88. [Behance](https://www.behance.net/), top 278 +89. [Academia.edu](https://www.academia.edu/), top 301 +90. [Scribd](https://www.scribd.com/), top 304 +91. [Slack](https://slack.com), top 305 +92. [RamblerDating](https://dating.rambler.ru/), top 318 +93. [GoodReads](https://www.goodreads.com/), top 323 +94. [Patreon](https://www.patreon.com/), top 325 +95. [Quora](https://www.quora.com/), top 342 +96. [Blogger](https://www.blogger.com/), top 343 +97. [Chess](https://www.chess.com/ru/), top 362 +98. [Fiverr](https://www.fiverr.com/), top 369 +99. [TripAdvisor](https://tripadvisor.com/), top 400 +100. [9GAG](https://www.9gag.com/), top 405 +101. [Genius](https://genius.com/), top 410 +102. [YouPorn](https://youporn.com), top 436 +103. [Crunchyroll](https://www.crunchyroll.com/), top 447 +104. [LiveJournal](https://www.livejournal.com/), top 454 +105. [SourceForge](https://sourceforge.net/), top 456 +106. [BuzzFeed](https://buzzfeed.com/), top 474 +107. [Duolingo](https://duolingo.com/), top 479 +108. [DeviantART](https://deviantart.com), top 487 +109. [1337x](https://1337x.to), top 514 +110. [PeopleIgn](https://people.ign.com/), top 516 +111. [Unsplash](https://unsplash.com/), top 528 +112. [Issuu](https://issuu.com/), top 541 +113. [Redtube](https://ru.redtube.com/), top 565 +114. [WordPressOrg](https://wordpress.org/), top 567 +115. [Wowhead](https://www.wowhead.com), top 568 +116. [Oracle Community](https://community.oracle.com), top 577 +117. [Rutracker](https://rutracker.org/), top 581 +118. [ComicvineGamespot](https://comicvine.gamespot.com/), top 625 +119. [Gamefaqs](https://gamefaqs.gamespot.com), top 625 +120. [Gamespot](https://www.gamespot.com/), top 625 +121. [TheVerge](https://www.theverge.com), top 628 +122. [Wattpad](https://www.wattpad.com/), top 658 +123. [Ultimate-Guitar](https://ultimate-guitar.com/), top 660 +124. [Scratch](https://scratch.mit.edu/), top 677 +125. [Giphy](https://giphy.com/), top 687 +126. [Eksisozluk](https://eksisozluk.com/biri/), top 705 +127. [cyber.harvard.edu](https://cyber.harvard.edu), top 716 +128. [Kickstarter](https://www.kickstarter.com), top 732 +129. [forums.ea.com](https://forums.ea.com), top 757 +130. [Kaskus](https://www.kaskus.co.id), top 781 +131. [Rottentomatoes](https://www.rottentomatoes.com), top 789 +132. [Redbubble](https://www.redbubble.com/), top 822 +133. [Strava](https://www.strava.com/), top 840 +134. [Allrecipes](https://www.allrecipes.com/), top 876 +135. [note](https://note.com/), top 893 +136. [ThemeForest](https://themeforest.net), top 901 +137. [Tinder](https://tinder.com/), top 935 +138. [Gofundme](https://www.gofundme.com), top 937 +139. [123rf](https://ru.123rf.com), top 949 +140. [MyAnimeList](https://myanimelist.net/), top 974 +141. [Disqus](https://disqus.com/), top 995 +142. [DiscussPython](https://discuss.python.org/), top 1047 +143. [SoftwareInformer](https://users.software.informer.com), top 1048 +144. [Flickr](https://www.flickr.com/), top 1063 +145. [Bandcamp](https://www.bandcamp.com/), top 1066 +146. [Ubisoft](https://forums-ru.ubisoft.com/), top 1069 +147. [forums.drom.ru](https://forums.drom.ru/), top 1074 +148. [pikabu](https://pikabu.ru/), top 1087 +149. [Kinogo](https://kinogo.by), top 1107 +150. [nairaland.com](https://www.nairaland.com/), top 1152 +151. [Discogs](https://www.discogs.com/), top 1161 +152. [T-MobileSupport](https://support.t-mobile.com), top 1188 +153. [gfycat](https://gfycat.com/), top 1209 +154. [PCGamer](https://pcgamer.com), top 1215 +155. [segmentfault](https://segmentfault.com/), top 1223 +156. [Houzz](https://houzz.com/), top 1323 +157. [drive2](https://www.drive2.ru/), top 1336 +158. [radio_echo_msk](https://echo.msk.ru/), top 1384 +159. [Instructables](https://www.instructables.com/), top 1416 +160. [Championat](https://www.championat.com/), top 1433 +161. [Polygon](https://www.polygon.com/), top 1454 +162. [Career.habr](https://career.habr.com/), top 1462 +163. [Freelance.habr](https://freelance.habr.com/), top 1462 +164. [Toster](https://qna.habr.com/), top 1462 +165. [habr](https://habr.com/), top 1462 +166. [Pastebin](https://pastebin.com/), top 1520 +167. [windy](https://windy.com/), top 1532 +168. [Rajce.net](https://www.rajce.idnes.cz/), top 1599 +169. [CloudflareCommunity](https://community.cloudflare.com/), top 1625 +170. [Dribbble](https://dribbble.com/), top 1653 +171. [Otzovik](https://otzovik.com/), top 1696 +172. [BitBucket](https://bitbucket.org/), top 1717 +173. [Badoo](https://badoo.com/), top 1772 +174. [jeuxvideo](http://www.jeuxvideo.com), top 1793 +175. [Zomato](https://www.zomato.com/), top 1799 +176. [Itch.io](https://itch.io/), top 1818 +177. [last.fm](https://last.fm/), top 1937 +178. [irecommend](https://irecommend.ru/), top 2018 +179. [Freelancer.com](https://www.freelancer.com/), top 2019 +180. [aminoapp](https://aminoapps.com/), top 2028 +181. [Myspace](https://myspace.com/), top 2038 +182. [Lichess](https://lichess.org), top 2052 +183. [Flightradar24](https://www.flightradar24.com/), top 2084 +184. [PCPartPicker](https://pcpartpicker.com), top 2141 +185. [LeetCode](https://leetcode.com/), top 2149 +186. [SportsRU](https://www.sports.ru/), top 2173 +187. [metacritic](https://www.metacritic.com/), top 2189 +188. [Codecademy](https://www.codecademy.com/), top 2309 +189. [BodyBuilding](https://bodyspace.bodybuilding.com/), top 2343 +190. [4pda](https://4pda.ru/), top 2438 +191. [Virgool](https://virgool.io/), top 2466 +192. [Kaggle](https://www.kaggle.com/), top 2661 +193. [MixCloud](https://www.mixcloud.com/), top 2712 +194. [HackerRank](https://hackerrank.com/), top 2714 +195. [Kongregate](https://www.kongregate.com/), top 2764 +196. [Taringa](https://taringa.net/), top 2857 +197. [CreativeMarket](https://creativemarket.com/), top 2901 +198. [AskFM](https://ask.fm/), top 3174 +199. [We Heart It](https://weheartit.com/), top 3204 +200. [HubPages](https://hubpages.com/), top 3277 +201. [AllTrails](https://www.alltrails.com/), top 3389 +202. [500px](https://500px.com/), top 3404 +203. [GitLab](https://gitlab.com/), top 3476 +204. [Wikidot](http://www.wikidot.com/), top 3477 +205. [Photobucket](https://photobucket.com/), top 3482 +206. [Cracked](https://www.cracked.com/), top 3531 +207. [Docker Hub](https://hub.docker.com/), top 3571 +208. [Warrior Forum](https://www.warriorforum.com/), top 3601 +209. [pr0gramm](https://pr0gramm.com/), top 3632 +210. [Letterboxd](https://letterboxd.com/), top 3848 +211. [Gumroad](https://www.gumroad.com/), top 3889 +212. [LiveLib](https://www.livelib.ru/), top 3893 +213. [Sporcle](https://www.sporcle.com/), top 3905 +214. [osu!](https://osu.ppy.sh/), top 3953 +215. [Repl.it](https://repl.it/), top 3982 +216. [LiveLeak](https://www.liveleak.com/), top 4160 +217. [fixya](https://www.fixya.com), top 4281 +218. [Lolchess](https://lolchess.gg/), top 4454 +219. [Venmo](https://venmo.com/), top 4632 +220. [babyRU](https://www.baby.ru/), top 4696 +221. [VSCO](https://vsco.co/), top 4897 +222. [dailykos](https://www.dailykos.com), top 5212 +223. [Pokemon Showdown](https://pokemonshowdown.com), top 5457 +224. [HackerNews](https://news.ycombinator.com/), top 5891 +225. [Rate Your Music](https://rateyourmusic.com/), top 5903 +226. [Discuss.Elastic.co](https://discuss.elastic.co/), top 5983 +227. [VirusTotal](https://www.virustotal.com/), top 6123 +228. [Stihi.ru](https://www.stihi.ru/), top 6170 +229. [opensource](https://opensource.com/), top 6485 +230. [WikimapiaProfile](http://wikimapia.org), top 6490 +231. [WikimapiaSearch](http://wikimapia.org), top 6490 +232. [kwork](https://www.kwork.ru/), top 6549 +233. [Newgrounds](https://newgrounds.com), top 6684 +234. [NPM](https://www.npmjs.com/), top 6765 +235. [NPM-Package](https://www.npmjs.com/), top 6765 +236. [Aptoide](https://en.aptoide.com/), top 6876 +237. [Freesound](https://freesound.org/), top 6928 +238. [BOOTH](https://booth.pm/), top 7024 +239. [Pinkbike](https://www.pinkbike.com/), top 7042 +240. [SublimeForum](https://forum.sublimetext.com/), top 7086 +241. [DEV Community](https://dev.to/), top 7241 +242. [Gitee](https://gitee.com/), top 7288 +243. [interpals](https://www.interpals.net/), top 7378 +244. [Memrise](https://www.memrise.com/), top 7383 +245. [Audiojungle](https://audiojungle.net/), top 7408 +246. [Trakt](https://www.trakt.tv/), top 7426 +247. [OpenStreetMap](https://www.openstreetmap.org/), top 7468 +248. [FortniteTracker](https://fortnitetracker.com/challenges), top 7485 +249. [Typeracer](https://typeracer.com), top 7653 +250. [3dnews](http://forum.3dnews.ru/), top 7778 +251. [NameMC (Minecraft.net skins)](https://namemc.com/), top 7874 +252. [Flipboard](https://flipboard.com/), top 8051 +253. [Smule](https://www.smule.com/), top 8133 +254. [Gravatar](http://en.gravatar.com/), top 8406 +255. [ReverbNation](https://www.reverbnation.com/), top 8430 +256. [spletnik](https://spletnik.ru/), top 8467 +257. [NICommunityForum](https://www.native-instruments.com/forum/), top 8476 +258. [Codechef](https://www.codechef.com/), top 9109 +259. [Cloob](https://www.cloob.com/), top 9190 +260. [kofi](https://ko-fi.com), top 9201 +261. [Proza.ru](https://www.proza.ru/), top 9223 +262. [IFTTT](https://www.ifttt.com/), top 9438 +263. [Kali community](https://forums.kali.org/), top 9477 +264. [Facenama](https://facenama.com/), top 9823 +265. [F6S](https://f6s.com/), top 9867 +266. [nightbot](https://nightbot.tv/), top 10019 +267. [ProductHunt](https://www.producthunt.com/), top 10159 +268. [Star Citizen](https://robertsspaceindustries.com/), top 10536 +269. [Launchpad](https://launchpad.net/), top 10631 +270. [geocaching](https://www.geocaching.com/), top 10856 +271. [akniga](https://akniga.org/profile/blue/), top 11052 +272. [Teletype](https://teletype.in), top 11383 +273. [Speedrun.com](https://speedrun.com/), top 11454 +274. [getmyuni](https://getmyuni.com/), top 11492 +275. [Coderwall](https://coderwall.com/), top 11570 +276. [Slashdot](https://slashdot.org), top 11768 +277. [PSNProfiles.com](https://psnprofiles.com/), top 11800 +278. [BuyMeACoffee](https://www.buymeacoffee.com/), top 11974 +279. [igromania](http://forum.igromania.ru/), top 12482 +280. [ImageShack](https://imageshack.com/), top 12762 +281. [authorSTREAM](http://www.authorstream.com/), top 12797 +282. [Contently](https://contently.com/), top 13004 +283. [forumhouseRU](https://www.forumhouse.ru/), top 13394 +284. [couchsurfing](https://www.couchsurfing.com/), top 13395 +285. [babyblogRU](https://www.babyblog.ru/), top 14023 +286. [YouNow](https://www.younow.com/), top 14517 +287. [Packagist](https://packagist.org/), top 14573 +288. [Sbazar.cz](https://www.sbazar.cz/), top 14787 +289. [TrashboxRU](https://trashbox.ru/), top 15796 +290. [MyMiniFactory](https://www.myminifactory.com/), top 15883 +291. [EyeEm](https://www.eyeem.com/), top 16613 +292. [sparkpeople](https://www.sparkpeople.com), top 17256 +293. [iMGSRC.RU](https://imgsrc.ru/), top 17454 +294. [Samlib](http://samlib.ru/), top 17951 +295. [HackerOne](https://hackerone.com/), top 18235 +296. [hackster](https://www.hackster.io), top 18857 +297. [Codewars](https://www.codewars.com), top 19669 +298. [allmylinks](https://allmylinks.com/), top 20321 +299. [WebNode](https://www.webnode.cz/), top 20745 +300. [About.me](https://about.me/), top 21498 +301. [Jimdo](https://jimdosite.com/), top 21587 +302. [MeetMe](https://www.meetme.com/), top 24333 +303. [forum_guns](https://forum.guns.ru/), top 24916 +304. [GuruShots](https://gurushots.com/), top 25389 +305. [Tellonym.me](https://tellonym.me/), top 28010 +306. [Carbonmade](https://carbonmade.com/), top 28148 +307. [Football](https://www.rusfootball.info/), top 28879 +308. [easyen](https://easyen.ru/), top 31154 +309. [uid](https://uid.me/), top 31864 +310. [Ello](https://ello.co/), top 32135 +311. [Ask Fedora](https://ask.fedoraproject.org/), top 32504 +312. [Anobii](https://www.anobii.com/), top 33315 +313. [PromoDJ](http://promodj.com/), top 33832 +314. [YouPic](https://youpic.com/), top 34141 +315. [RubyGems](https://rubygems.org/), top 34951 +316. [OpenCollective](https://opencollective.com/), top 35316 +317. [Periscope](https://www.periscope.tv/), top 36270 +318. [Coroflot](https://coroflot.com/), top 36699 +319. [d3RU](https://d3.ru/), top 37253 +320. [Hackaday](https://hackaday.io/), top 38090 +321. [HackTheBox](https://forum.hackthebox.eu/), top 42053 +322. [LOR](https://linux.org.ru/), top 42122 +323. [Realmeye](https://www.realmeye.com/), top 44915 +324. [7Cups](https://www.7cups.com/), top 45009 +325. [fl](https://www.fl.ru/), top 48253 +326. [NationStates Nation](https://nationstates.net), top 50127 +327. [NationStates Region](https://nationstates.net), top 50127 +328. [leasehackr](https://forum.leasehackr.com/), top 51803 +329. [Plug.DJ](https://plug.dj/), top 56753 +330. [opennet](https://www.opennet.ru/), top 61013 +331. [TryHackMe](https://tryhackme.com/), top 63961 +332. [F3.cool](https://f3.cool/), top 64204 +333. [datingRU](http://dating.ru), top 64534 +334. [Bookcrossing](https://www.bookcrossing.com/), top 65971 +335. [Keybase](https://keybase.io/), top 68598 +336. [RoyalCams](https://royalcams.com), top 70774 +337. [travellerspoint](https://www.travellerspoint.com), top 71202 +338. [Pling](https://www.pling.com/), top 84554 +339. [eGPU](https://egpu.io/), top 95696 +340. [Asciinema](https://asciinema.org), top 97294 +341. [TamTam](https://tamtam.chat/), top 101586 +342. [Clozemaster](https://www.clozemaster.com), top 104968 +343. [devRant](https://devrant.com/), top 105587 +344. [Velomania](https://forum.velomania.ru/), top 110074 +345. [Showme](https://www.showme.com), top 112026 +346. [phpRU](https://php.ru/forum/), top 113964 +347. [Munzee](https://www.munzee.com/), top 114486 +348. [GunsAndAmmo](https://gunsandammo.com/), top 121071 +349. [CapFriendly](https://www.capfriendly.com/), top 121544 +350. [radioskot](https://radioskot.ru/), top 128023 +351. [Countable](https://www.countable.us/), top 128359 +352. [hunting](https://www.hunting.ru/forum/), top 134097 +353. [Cent](https://cent.co/), top 143815 +354. [KanoWorld](https://world.kano.me/), top 149711 +355. [BLIP.fm](https://blip.fm/), top 151029 +356. [moikrug](https://moikrug.ru/), top 160405 +357. [polarsteps](https://polarsteps.com/), top 165101 +358. [Crevado](https://crevado.com/), top 168360 +359. [Steamid](https://steamid.uk/), top 179660 +360. [Lobsters](https://lobste.rs/), top 184207 +361. [Whonix Forum](https://forums.whonix.org/), top 219502 +362. [notabug.org](https://notabug.org/), top 222998 +363. [satsisRU](https://satsis.info/), top 226778 +364. [Smashcast](https://www.smashcast.tv/), top 235722 +365. [pvpru](https://pvpru.com/), top 248973 +366. [Avizo](https://www.avizo.cz/), top 278254 +367. [Hubski](https://hubski.com/), top 328818 +368. [Xbox Gamertag](https://xboxgamertag.com/), top 373052 +369. [qiwi.me](https://qiwi.me), top 385586 +370. [Bazar.cz](https://www.bazar.cz/), top 392164 +371. [TrackmaniaLadder](http://en.tm-ladder.com/index.php), top 395411 +372. [eintracht](https://eintracht.de), top 420443 +373. [BinarySearch](https://binarysearch.io/), top 445201 +374. [social.tchncs.de](https://social.tchncs.de/), top 467783 +375. [House-Mixes.com](https://www.house-mixes.com/), top 470601 +376. [BitCoinForum](https://bitcoinforum.com), top 555705 +377. [soylentnews](https://soylentnews.org), top 675285 +378. [ShitpostBot5000](https://www.shitpostbot.com/), top 765651 +379. [Splits.io](https://splits.io), top 771263 +380. [Gam1ng](https://gam1ng.com.br), top 807479 +381. [mastodon.technology](https://mastodon.xyz/), top 993549 +382. [mastodon.xyz](https://mastodon.xyz/), top 993549 +383. [Alik.cz](https://www.alik.cz/), top 995087 +384. [Kik](http://kik.me/), top 1056591 +385. [mastodon.cloud](https://mastodon.cloud/), top 1279792 +386. [tracr.co](https://tracr.co/), top 1294526 +387. [OurDJTalk](https://ourdjtalk.com/), top 1355721 +388. [Signal](https://community.signalusers.org), top 1526956 +389. [mstdn.io](https://mstdn.io/), top 1795495 +390. [chaos.social](https://chaos.social/), top 1957517 +391. [mastodon.social](https://chaos.social/), top 1957517 +392. [labpentestit](https://lab.pentestit.ru/), top 2626132 +393. [Chatujme.cz](https://chatujme.cz/), top 3017241 +394. [svidbook](https://www.svidbook.ru/), top 4081353 +395. [ImgUp.cz](https://imgup.cz/), top 4426923 +396. [GDProfiles](https://gdprofiles.com/), top 6739435 +397. [2Dimensions](https://2Dimensions.com/), top 7375859 +398. [Designspiration](https://www.designspiration.net/), top 7443473 +399. [PokerStrategy](http://www.pokerstrategy.net), top 8109980 +400. [CashMe](https://cash.me/), top 0 +401. [Filmogs](https://www.filmo.gs/), top 0 +402. [Rap-royalty](http://www.rap-royalty.com/), top 0 +403. [nnRU](https://https://www.nn.ru/), top 0 -Alexa.com rank data fetched at (2020-08-30 18:57:21.495306 UTC) +Alexa.com rank data fetched at (2020-08-31 19:46:44.749149 UTC)