Showing preview only (270K chars total). Download the full file or copy to clipboard to get everything.
Repository: zizifn/edgetunnel
Branch: main
Commit: 44b9377986b6
Files: 25
Total size: 259.7 KB
Directory structure:
gitextract_nftpiot2/
├── .github/
│ └── workflows/
│ ├── docs.yml
│ ├── node-vless-docker.yml
│ ├── nodejs.yml
│ ├── remove-old-artifacts.yml
│ └── version-comment.yml
├── .gitignore
├── LICENSE
├── README.md
├── config/
│ ├── config-client-with-dns-lcoal.json
│ └── config-client-without-dns-lcoal.json
├── jsonconfig.json
├── package.json
├── src/
│ ├── worker-vless.js
│ └── worker-with-socks5-experimental.js
├── test/
│ ├── cidr.js
│ ├── webstream.mjs
│ └── worker/
│ ├── cf-cdn-cgi-trace.js
│ ├── cf-worker-http-header.js
│ ├── cidr.js
│ ├── ipaddr-test.js
│ ├── stream-ws-test.js
│ ├── worker-connect-test.js
│ ├── wrangler.toml
│ └── ws-send-issue.js
└── wrangler.toml
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/docs.yml
================================================
name: docs
on:
# trigger deployment on every push to main branch
push:
branches: [docs]
# trigger deployment manually
workflow_dispatch:
permissions:
pages: write
contents: write
id-token: write
jobs:
docs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# fetch all commits to get last updated time or other git log info
fetch-depth: 0
ref: docs
# - name: Setup pnpm
# uses: pnpm/action-setup@v2
# with:
# # choose pnpm version to use
# version: 7
# # install deps with pnpm
# run_install: true
- name: Setup Node.js
uses: actions/setup-node@v3
with:
# choose node.js version to use
node-version: 18
cache: npm
# run build script
- name: Build VuePress site
run: |
npm install
npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: './docs/.vuepress/dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
================================================
FILE: .github/workflows/node-vless-docker.yml
================================================
name: node-vless-docker
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# - name: Use Node.js
# uses: actions/setup-node@v1
# with:
# node-version: 18.x
# - name: Run a multi-line script
# run: |
# npm install
# npm run node-vless:bunled
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
install: true
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
# context: ./temp11
platforms: linux/amd64,linux/arm64
push: true
tags: zizifn/node-vless:latest,zizifn/node-vless:1.0.${{ github.run_number }}
================================================
FILE: .github/workflows/nodejs.yml
================================================
# This is a basic workflow to help you get started with Actions
name: npm-install
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
# push:
# branches: [master]
# pull_request:
# branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
#
# - name: add ssh script
# run: |
# echo Hello, world!
# # check ssh or install ssh
# command -v ssh-agent >/dev/null || (apt-get update -y && apt-get install openssh-client -y)
# eval $(ssh-agent -s)
# echo $SSH_PRIVATE_KEY | tr -d '\r' | ssh-add -
# mkdir -p ~/.ssh && chmod 700 ~./.ssh
# echo $SSH_KNOW_HOSTS >> ~./.ssh/known_hosts && chmod 644 ~./.ssh/known_hosts
# ssh root@host
# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
npm install
================================================
FILE: .github/workflows/remove-old-artifacts.yml
================================================
name: Remove old artifacts
on:
workflow_dispatch:
jobs:
remove-old-artifacts:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Remove old artifacts
uses: c-hive/gha-remove-artifacts@v1
with:
age: '2 years' # '<number> <unit>', e.g. 5 days, 2 years, 90 seconds, parsed by Moment.js
# Optional inputs
# skip-tags: true
# skip-recent: 5
================================================
FILE: .github/workflows/version-comment.yml
================================================
name: Add Version Comment
on:
# trigger deployment on every push to main branch
push:
branches: [main]
# trigger deployment manually
workflow_dispatch:
permissions:
contents: write
jobs:
version-comment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Modify version worker-vless.js
uses: jaywcjlove/github-action-modify-file-content@main
with:
path: src/worker-vless.js
body: "version base on commit ${{ github.sha }}, time is {{date:YYYY-MM-DD HH:mm:ss}} UTC"
message: "Update version worker-vless.js"
- name: Modify version worker-with-socks5-experimental.js
uses: jaywcjlove/github-action-modify-file-content@main
with:
path: src/worker-with-socks5-experimental.js
body: "version base on commit ${{ github.sha }}, time is {{date:YYYY-MM-DD HH:mm:ss}} UTC"
message: "Update version worker-with-socks5-experimental.js"
================================================
FILE: .gitignore
================================================
.DS_Store
/node_modules
*-lock.*
*.lock
*.log
dist
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
================================================
FILE: README.md
================================================
------
================================================
FILE: config/config-client-with-dns-lcoal.json
================================================
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "0.0.0.0",
"port": "4080",
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true,
"ip": "0.0.0.0"
}
},
{
"listen": "0.0.0.0",
"port": "4081",
"protocol": "http"
}
],
"dns": {
"servers": ["8.8.8.8"]
},
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "127.0.0.1",
"port": 8788,
"users": [
{
"id": "1a403b79-039b-4dc2-9b45-1ad13197b99a",
"encryption": "none",
"level": 0
}
]
}
]
},
"streamSettings": {
"network": "ws",
"wsSettings": {
"path": "/vless"
}
// "security": "tls"
},
"tag": "zizi-ws"
},
{
"protocol": "freedom",
"tag": "direct"
}
],
"routing": {
"domainStrategy": "IPIfNonMatch",
"rules": [
{
"type": "field",
"ip": ["8.8.8.8"],
"outboundTag": "zizi-ws"
},
{
"type": "field",
"ip": ["geoip:private"],
"outboundTag": "zizi-ws"
}
]
}
}
================================================
FILE: config/config-client-without-dns-lcoal.json
================================================
{
"log": {
"loglevel": "debug"
},
"inbounds": [
{
"listen": "0.0.0.0",
"port": "4080",
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true,
"ip": "0.0.0.0"
}
},
{
"listen": "0.0.0.0",
"port": "4081",
"protocol": "http"
}
],
"dns": {
"servers": ["8.8.8.8"]
},
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "127.0.0.1",
"port": 8787,
"users": [
{
"id": "1a403b79-039b-4dc2-9b45-1ad13197b99a",
"encryption": "none",
"level": 0
}
]
}
]
},
"streamSettings": {
"network": "ws"
// "wsSettings": {
// "path": "/node-vless"
// }
// "security": "tls"
},
"tag": "zizi-ws"
},
{
"protocol": "freedom",
"tag": "direct"
}
],
"routing": {
"domainStrategy": "IPIfNonMatch",
"rules": [
{
"type": "field",
"ip": ["8.8.8.8"],
"outboundTag": "zizi-ws"
},
{
"type": "field",
"ip": ["geoip:private"],
"outboundTag": "zizi-ws"
}
]
}
}
================================================
FILE: jsonconfig.json
================================================
{
"compilerOptions": {
"noEmit": true,
"module": "esnext",
"target": "ES2022",
"lib": ["ES2022"],
"strict": true,
"alwaysStrict": true,
"preserveConstEnums": true,
"moduleResolution": "node",
"sourceMap": true,
"types": ["@cloudflare/workers-types"]
},
"include": ["src"],
"exclude": ["node_modules", "dist", "test"]
}
================================================
FILE: package.json
================================================
{
"name": "edgetunnel",
"version": "1.0.0",
"description": "Delete code, but keep the project for the sake of memories. I'm only create this project for fun, for try new things and for learn by doing. **I'm even not write any outside marketing post for this project. Just for my own fun...** But I feel emotional damage by the community.",
"main": "index.js",
"scripts": {
"deploy": "wrangler publish",
"dev-vless": "wrangler dev src/worker-vless.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"wrangler": "^3.1.0"
},
"dependencies": {
"dns-packet": "^5.6.0",
"ip-cidr": "^3.1.0",
"ip-range-check": "^0.2.0",
"ipaddr.js": "^2.0.1"
}
}
================================================
FILE: src/worker-vless.js
================================================
// <!--GAMFC-->version base on commit 58686d5d125194d34a1137913b3a64ddcf55872f, time is 2024-11-27 09:26:01 UTC<!--GAMFC-END-->.
// @ts-ignore
import { connect } from 'cloudflare:sockets';
// How to generate your own UUID:
// [Windows] Press "Win + R", input cmd and run: Powershell -NoExit -Command "[guid]::NewGuid()"
let userID = 'd342d11e-d424-4583-b36e-524ab1f0afa4';
let proxyIP = '';
if (!isValidUUID(userID)) {
throw new Error('uuid is not valid');
}
export default {
/**
* @param {import("@cloudflare/workers-types").Request} request
* @param {{UUID: string, PROXYIP: string}} env
* @param {import("@cloudflare/workers-types").ExecutionContext} ctx
* @returns {Promise<Response>}
*/
async fetch(request, env, ctx) {
try {
userID = env.UUID || userID;
proxyIP = env.PROXYIP || proxyIP;
const upgradeHeader = request.headers.get('Upgrade');
if (!upgradeHeader || upgradeHeader !== 'websocket') {
const url = new URL(request.url);
switch (url.pathname) {
case '/':
return new Response(JSON.stringify(request.cf), { status: 200 });
case `/${userID}`: {
const vlessConfig = getVLESSConfig(userID, request.headers.get('Host'));
return new Response(`${vlessConfig}`, {
status: 200,
headers: {
"Content-Type": "text/plain;charset=utf-8",
}
});
}
default:
return new Response('Not found', { status: 404 });
}
} else {
return await vlessOverWSHandler(request);
}
} catch (err) {
/** @type {Error} */ let e = err;
return new Response(e.toString());
}
},
};
/**
*
* @param {import("@cloudflare/workers-types").Request} request
*/
async function vlessOverWSHandler(request) {
/** @type {import("@cloudflare/workers-types").WebSocket[]} */
// @ts-ignore
const webSocketPair = new WebSocketPair();
const [client, webSocket] = Object.values(webSocketPair);
webSocket.accept();
let address = '';
let portWithRandomLog = '';
const log = (/** @type {string} */ info, /** @type {string | undefined} */ event) => {
console.log(`[${address}:${portWithRandomLog}] ${info}`, event || '');
};
const earlyDataHeader = request.headers.get('sec-websocket-protocol') || '';
const readableWebSocketStream = makeReadableWebSocketStream(webSocket, earlyDataHeader, log);
/** @type {{ value: import("@cloudflare/workers-types").Socket | null}}*/
let remoteSocketWapper = {
value: null,
};
let udpStreamWrite = null;
let isDns = false;
// ws --> remote
readableWebSocketStream.pipeTo(new WritableStream({
async write(chunk, controller) {
if (isDns && udpStreamWrite) {
return udpStreamWrite(chunk);
}
if (remoteSocketWapper.value) {
const writer = remoteSocketWapper.value.writable.getWriter()
await writer.write(chunk);
writer.releaseLock();
return;
}
const {
hasError,
message,
portRemote = 443,
addressRemote = '',
rawDataIndex,
vlessVersion = new Uint8Array([0, 0]),
isUDP,
} = processVlessHeader(chunk, userID);
address = addressRemote;
portWithRandomLog = `${portRemote}--${Math.random()} ${isUDP ? 'udp ' : 'tcp '
} `;
if (hasError) {
// controller.error(message);
throw new Error(message); // cf seems has bug, controller.error will not end stream
// webSocket.close(1000, message);
return;
}
// if UDP but port not DNS port, close it
if (isUDP) {
if (portRemote === 53) {
isDns = true;
} else {
// controller.error('UDP proxy only enable for DNS which is port 53');
throw new Error('UDP proxy only enable for DNS which is port 53'); // cf seems has bug, controller.error will not end stream
return;
}
}
// ["version", "附加信息长度 N"]
const vlessResponseHeader = new Uint8Array([vlessVersion[0], 0]);
const rawClientData = chunk.slice(rawDataIndex);
// TODO: support udp here when cf runtime has udp support
if (isDns) {
const { write } = await handleUDPOutBound(webSocket, vlessResponseHeader, log);
udpStreamWrite = write;
udpStreamWrite(rawClientData);
return;
}
handleTCPOutBound(remoteSocketWapper, addressRemote, portRemote, rawClientData, webSocket, vlessResponseHeader, log);
},
close() {
log(`readableWebSocketStream is close`);
},
abort(reason) {
log(`readableWebSocketStream is abort`, JSON.stringify(reason));
},
})).catch((err) => {
log('readableWebSocketStream pipeTo error', err);
});
return new Response(null, {
status: 101,
// @ts-ignore
webSocket: client,
});
}
/**
* Handles outbound TCP connections.
*
* @param {any} remoteSocket
* @param {string} addressRemote The remote address to connect to.
* @param {number} portRemote The remote port to connect to.
* @param {Uint8Array} rawClientData The raw client data to write.
* @param {import("@cloudflare/workers-types").WebSocket} webSocket The WebSocket to pass the remote socket to.
* @param {Uint8Array} vlessResponseHeader The VLESS response header.
* @param {function} log The logging function.
* @returns {Promise<void>} The remote socket.
*/
async function handleTCPOutBound(remoteSocket, addressRemote, portRemote, rawClientData, webSocket, vlessResponseHeader, log,) {
async function connectAndWrite(address, port) {
/** @type {import("@cloudflare/workers-types").Socket} */
const tcpSocket = connect({
hostname: address,
port: port,
});
remoteSocket.value = tcpSocket;
log(`connected to ${address}:${port}`);
const writer = tcpSocket.writable.getWriter();
await writer.write(rawClientData); // first write, nomal is tls client hello
writer.releaseLock();
return tcpSocket;
}
// if the cf connect tcp socket have no incoming data, we retry to redirect ip
async function retry() {
const tcpSocket = await connectAndWrite(proxyIP || addressRemote, portRemote)
// no matter retry success or not, close websocket
tcpSocket.closed.catch(error => {
console.log('retry tcpSocket closed error', error);
}).finally(() => {
safeCloseWebSocket(webSocket);
})
remoteSocketToWS(tcpSocket, webSocket, vlessResponseHeader, null, log);
}
const tcpSocket = await connectAndWrite(addressRemote, portRemote);
// when remoteSocket is ready, pass to websocket
// remote--> ws
remoteSocketToWS(tcpSocket, webSocket, vlessResponseHeader, retry, log);
}
/**
*
* @param {import("@cloudflare/workers-types").WebSocket} webSocketServer
* @param {string} earlyDataHeader for ws 0rtt
* @param {(info: string)=> void} log for ws 0rtt
*/
function makeReadableWebSocketStream(webSocketServer, earlyDataHeader, log) {
let readableStreamCancel = false;
const stream = new ReadableStream({
start(controller) {
webSocketServer.addEventListener('message', (event) => {
if (readableStreamCancel) {
return;
}
const message = event.data;
controller.enqueue(message);
});
// The event means that the client closed the client -> server stream.
// However, the server -> client stream is still open until you call close() on the server side.
// The WebSocket protocol says that a separate close message must be sent in each direction to fully close the socket.
webSocketServer.addEventListener('close', () => {
// client send close, need close server
// if stream is cancel, skip controller.close
safeCloseWebSocket(webSocketServer);
if (readableStreamCancel) {
return;
}
controller.close();
}
);
webSocketServer.addEventListener('error', (err) => {
log('webSocketServer has error');
controller.error(err);
}
);
// for ws 0rtt
const { earlyData, error } = base64ToArrayBuffer(earlyDataHeader);
if (error) {
controller.error(error);
} else if (earlyData) {
controller.enqueue(earlyData);
}
},
pull(controller) {
// if ws can stop read if stream is full, we can implement backpressure
// https://streams.spec.whatwg.org/#example-rs-push-backpressure
},
cancel(reason) {
// 1. pipe WritableStream has error, this cancel will called, so ws handle server close into here
// 2. if readableStream is cancel, all controller.close/enqueue need skip,
// 3. but from testing controller.error still work even if readableStream is cancel
if (readableStreamCancel) {
return;
}
log(`ReadableStream was canceled, due to ${reason}`)
readableStreamCancel = true;
safeCloseWebSocket(webSocketServer);
}
});
return stream;
}
// https://xtls.github.io/development/protocols/vless.html
// https://github.com/zizifn/excalidraw-backup/blob/main/v2ray-protocol.excalidraw
/**
*
* @param { ArrayBuffer} vlessBuffer
* @param {string} userID
* @returns
*/
function processVlessHeader(
vlessBuffer,
userID
) {
if (vlessBuffer.byteLength < 24) {
return {
hasError: true,
message: 'invalid data',
};
}
const version = new Uint8Array(vlessBuffer.slice(0, 1));
let isValidUser = false;
let isUDP = false;
if (stringify(new Uint8Array(vlessBuffer.slice(1, 17))) === userID) {
isValidUser = true;
}
if (!isValidUser) {
return {
hasError: true,
message: 'invalid user',
};
}
const optLength = new Uint8Array(vlessBuffer.slice(17, 18))[0];
//skip opt for now
const command = new Uint8Array(
vlessBuffer.slice(18 + optLength, 18 + optLength + 1)
)[0];
// 0x01 TCP
// 0x02 UDP
// 0x03 MUX
if (command === 1) {
} else if (command === 2) {
isUDP = true;
} else {
return {
hasError: true,
message: `command ${command} is not support, command 01-tcp,02-udp,03-mux`,
};
}
const portIndex = 18 + optLength + 1;
const portBuffer = vlessBuffer.slice(portIndex, portIndex + 2);
// port is big-Endian in raw data etc 80 == 0x005d
const portRemote = new DataView(portBuffer).getUint16(0);
let addressIndex = portIndex + 2;
const addressBuffer = new Uint8Array(
vlessBuffer.slice(addressIndex, addressIndex + 1)
);
// 1--> ipv4 addressLength =4
// 2--> domain name addressLength=addressBuffer[1]
// 3--> ipv6 addressLength =16
const addressType = addressBuffer[0];
let addressLength = 0;
let addressValueIndex = addressIndex + 1;
let addressValue = '';
switch (addressType) {
case 1:
addressLength = 4;
addressValue = new Uint8Array(
vlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)
).join('.');
break;
case 2:
addressLength = new Uint8Array(
vlessBuffer.slice(addressValueIndex, addressValueIndex + 1)
)[0];
addressValueIndex += 1;
addressValue = new TextDecoder().decode(
vlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)
);
break;
case 3:
addressLength = 16;
const dataView = new DataView(
vlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)
);
// 2001:0db8:85a3:0000:0000:8a2e:0370:7334
const ipv6 = [];
for (let i = 0; i < 8; i++) {
ipv6.push(dataView.getUint16(i * 2).toString(16));
}
addressValue = ipv6.join(':');
// seems no need add [] for ipv6
break;
default:
return {
hasError: true,
message: `invild addressType is ${addressType}`,
};
}
if (!addressValue) {
return {
hasError: true,
message: `addressValue is empty, addressType is ${addressType}`,
};
}
return {
hasError: false,
addressRemote: addressValue,
addressType,
portRemote,
rawDataIndex: addressValueIndex + addressLength,
vlessVersion: version,
isUDP,
};
}
/**
*
* @param {import("@cloudflare/workers-types").Socket} remoteSocket
* @param {import("@cloudflare/workers-types").WebSocket} webSocket
* @param {ArrayBuffer} vlessResponseHeader
* @param {(() => Promise<void>) | null} retry
* @param {*} log
*/
async function remoteSocketToWS(remoteSocket, webSocket, vlessResponseHeader, retry, log) {
// remote--> ws
let remoteChunkCount = 0;
let chunks = [];
/** @type {ArrayBuffer | null} */
let vlessHeader = vlessResponseHeader;
let hasIncomingData = false; // check if remoteSocket has incoming data
await remoteSocket.readable
.pipeTo(
new WritableStream({
start() {
},
/**
*
* @param {Uint8Array} chunk
* @param {*} controller
*/
async write(chunk, controller) {
hasIncomingData = true;
// remoteChunkCount++;
if (webSocket.readyState !== WS_READY_STATE_OPEN) {
controller.error(
'webSocket.readyState is not open, maybe close'
);
}
if (vlessHeader) {
webSocket.send(await new Blob([vlessHeader, chunk]).arrayBuffer());
vlessHeader = null;
} else {
// seems no need rate limit this, CF seems fix this??..
// if (remoteChunkCount > 20000) {
// // cf one package is 4096 byte(4kb), 4096 * 20000 = 80M
// await delay(1);
// }
webSocket.send(chunk);
}
},
close() {
log(`remoteConnection!.readable is close with hasIncomingData is ${hasIncomingData}`);
// safeCloseWebSocket(webSocket); // no need server close websocket frist for some case will casue HTTP ERR_CONTENT_LENGTH_MISMATCH issue, client will send close event anyway.
},
abort(reason) {
console.error(`remoteConnection!.readable abort`, reason);
},
})
)
.catch((error) => {
console.error(
`remoteSocketToWS has exception `,
error.stack || error
);
safeCloseWebSocket(webSocket);
});
// seems is cf connect socket have error,
// 1. Socket.closed will have error
// 2. Socket.readable will be close without any data coming
if (hasIncomingData === false && retry) {
log(`retry`)
retry();
}
}
/**
*
* @param {string} base64Str
* @returns
*/
function base64ToArrayBuffer(base64Str) {
if (!base64Str) {
return { error: null };
}
try {
// go use modified Base64 for URL rfc4648 which js atob not support
base64Str = base64Str.replace(/-/g, '+').replace(/_/g, '/');
const decode = atob(base64Str);
const arryBuffer = Uint8Array.from(decode, (c) => c.charCodeAt(0));
return { earlyData: arryBuffer.buffer, error: null };
} catch (error) {
return { error };
}
}
/**
* This is not real UUID validation
* @param {string} uuid
*/
function isValidUUID(uuid) {
const uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
return uuidRegex.test(uuid);
}
const WS_READY_STATE_OPEN = 1;
const WS_READY_STATE_CLOSING = 2;
/**
* Normally, WebSocket will not has exceptions when close.
* @param {import("@cloudflare/workers-types").WebSocket} socket
*/
function safeCloseWebSocket(socket) {
try {
if (socket.readyState === WS_READY_STATE_OPEN || socket.readyState === WS_READY_STATE_CLOSING) {
socket.close();
}
} catch (error) {
console.error('safeCloseWebSocket error', error);
}
}
const byteToHex = [];
for (let i = 0; i < 256; ++i) {
byteToHex.push((i + 256).toString(16).slice(1));
}
function unsafeStringify(arr, offset = 0) {
return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
}
function stringify(arr, offset = 0) {
const uuid = unsafeStringify(arr, offset);
if (!isValidUUID(uuid)) {
throw TypeError("Stringified UUID is invalid");
}
return uuid;
}
/**
*
* @param {import("@cloudflare/workers-types").WebSocket} webSocket
* @param {ArrayBuffer} vlessResponseHeader
* @param {(string)=> void} log
*/
async function handleUDPOutBound(webSocket, vlessResponseHeader, log) {
let isVlessHeaderSent = false;
const transformStream = new TransformStream({
start(controller) {
},
transform(chunk, controller) {
// udp message 2 byte is the the length of udp data
// TODO: this should have bug, beacsue maybe udp chunk can be in two websocket message
for (let index = 0; index < chunk.byteLength;) {
const lengthBuffer = chunk.slice(index, index + 2);
const udpPakcetLength = new DataView(lengthBuffer).getUint16(0);
const udpData = new Uint8Array(
chunk.slice(index + 2, index + 2 + udpPakcetLength)
);
index = index + 2 + udpPakcetLength;
controller.enqueue(udpData);
}
},
flush(controller) {
}
});
// only handle dns udp for now
transformStream.readable.pipeTo(new WritableStream({
async write(chunk) {
const resp = await fetch('https://1.1.1.1/dns-query',
{
method: 'POST',
headers: {
'content-type': 'application/dns-message',
},
body: chunk,
})
const dnsQueryResult = await resp.arrayBuffer();
const udpSize = dnsQueryResult.byteLength;
// console.log([...new Uint8Array(dnsQueryResult)].map((x) => x.toString(16)));
const udpSizeBuffer = new Uint8Array([(udpSize >> 8) & 0xff, udpSize & 0xff]);
if (webSocket.readyState === WS_READY_STATE_OPEN) {
log(`doh success and dns message length is ${udpSize}`);
if (isVlessHeaderSent) {
webSocket.send(await new Blob([udpSizeBuffer, dnsQueryResult]).arrayBuffer());
} else {
webSocket.send(await new Blob([vlessResponseHeader, udpSizeBuffer, dnsQueryResult]).arrayBuffer());
isVlessHeaderSent = true;
}
}
}
})).catch((error) => {
log('dns udp has error' + error)
});
const writer = transformStream.writable.getWriter();
return {
/**
*
* @param {Uint8Array} chunk
*/
write(chunk) {
writer.write(chunk);
}
};
}
/**
*
* @param {string} userID
* @param {string | null} hostName
* @returns {string}
*/
function getVLESSConfig(userID, hostName) {
const protocol = "vless";
const vlessMain =
`${protocol}` +
`://${userID}@${hostName}:443`+
`?encryption=none&security=tls&sni=${hostName}&fp=randomized&type=ws&host=${hostName}&path=%2F%3Fed%3D2048#${hostName}`;
return `
################################################################
v2ray
---------------------------------------------------------------
${vlessMain}
---------------------------------------------------------------
################################################################
clash-meta
---------------------------------------------------------------
- type: vless
name: ${hostName}
server: ${hostName}
port: 443
uuid: ${userID}
network: ws
tls: true
udp: false
sni: ${hostName}
client-fingerprint: chrome
ws-opts:
path: "/?ed=2048"
headers:
host: ${hostName}
---------------------------------------------------------------
################################################################
`;
}
================================================
FILE: src/worker-with-socks5-experimental.js
================================================
// <!--GAMFC-->version base on commit 58686d5d125194d34a1137913b3a64ddcf55872f, time is 2024-11-27 09:26:02 UTC<!--GAMFC-END-->.
// @ts-ignore
import { connect } from 'cloudflare:sockets';
// How to generate your own UUID:
// [Windows] Press "Win + R", input cmd and run: Powershell -NoExit -Command "[guid]::NewGuid()"
let userID = 'd342d11e-d424-4583-b36e-524ab1f0afa4';
let proxyIP = '';
// The user name and password do not contain special characters
// Setting the address will ignore proxyIP
// Example: user:pass@host:port or host:port
let socks5Address = '';
if (!isValidUUID(userID)) {
throw new Error('uuid is not valid');
}
let parsedSocks5Address = {};
let enableSocks = false;
export default {
/**
* @param {import("@cloudflare/workers-types").Request} request
* @param {{UUID: string, PROXYIP: string}} env
* @param {import("@cloudflare/workers-types").ExecutionContext} ctx
* @returns {Promise<Response>}
*/
async fetch(request, env, ctx) {
try {
userID = env.UUID || userID;
proxyIP = env.PROXYIP || proxyIP;
socks5Address = env.SOCKS5 || socks5Address;
if (socks5Address) {
try {
parsedSocks5Address = socks5AddressParser(socks5Address);
enableSocks = true;
} catch (err) {
/** @type {Error} */ let e = err;
console.log(e.toString());
enableSocks = false;
}
}
const upgradeHeader = request.headers.get('Upgrade');
if (!upgradeHeader || upgradeHeader !== 'websocket') {
const url = new URL(request.url);
switch (url.pathname) {
case '/':
return new Response(JSON.stringify(request.cf), { status: 200 });
case `/${userID}`: {
const vlessConfig = getVLESSConfig(userID, request.headers.get('Host'));
return new Response(`${vlessConfig}`, {
status: 200,
headers: {
"Content-Type": "text/plain;charset=utf-8",
}
});
}
default:
return new Response('Not found', { status: 404 });
}
} else {
return await vlessOverWSHandler(request);
}
} catch (err) {
/** @type {Error} */ let e = err;
return new Response(e.toString());
}
},
};
/**
*
* @param {import("@cloudflare/workers-types").Request} request
*/
async function vlessOverWSHandler(request) {
/** @type {import("@cloudflare/workers-types").WebSocket[]} */
// @ts-ignore
const webSocketPair = new WebSocketPair();
const [client, webSocket] = Object.values(webSocketPair);
webSocket.accept();
let address = '';
let portWithRandomLog = '';
const log = (/** @type {string} */ info, /** @type {string | undefined} */ event) => {
console.log(`[${address}:${portWithRandomLog}] ${info}`, event || '');
};
const earlyDataHeader = request.headers.get('sec-websocket-protocol') || '';
const readableWebSocketStream = makeReadableWebSocketStream(webSocket, earlyDataHeader, log);
/** @type {{ value: import("@cloudflare/workers-types").Socket | null}}*/
let remoteSocketWapper = {
value: null,
};
let isDns = false;
// ws --> remote
readableWebSocketStream.pipeTo(new WritableStream({
async write(chunk, controller) {
if (isDns) {
return await handleDNSQuery(chunk, webSocket, null, log);
}
if (remoteSocketWapper.value) {
const writer = remoteSocketWapper.value.writable.getWriter()
await writer.write(chunk);
writer.releaseLock();
return;
}
const {
hasError,
message,
addressType,
portRemote = 443,
addressRemote = '',
rawDataIndex,
vlessVersion = new Uint8Array([0, 0]),
isUDP,
} = processVlessHeader(chunk, userID);
address = addressRemote;
portWithRandomLog = `${portRemote}--${Math.random()} ${isUDP ? 'udp ' : 'tcp '
} `;
if (hasError) {
// controller.error(message);
throw new Error(message); // cf seems has bug, controller.error will not end stream
// webSocket.close(1000, message);
return;
}
// if UDP but port not DNS port, close it
if (isUDP) {
if (portRemote === 53) {
isDns = true;
} else {
// controller.error('UDP proxy only enable for DNS which is port 53');
throw new Error('UDP proxy only enable for DNS which is port 53'); // cf seems has bug, controller.error will not end stream
return;
}
}
// ["version", "附加信息长度 N"]
const vlessResponseHeader = new Uint8Array([vlessVersion[0], 0]);
const rawClientData = chunk.slice(rawDataIndex);
if (isDns) {
return handleDNSQuery(rawClientData, webSocket, vlessResponseHeader, log);
}
handleTCPOutBound(remoteSocketWapper, addressType, addressRemote, portRemote, rawClientData, webSocket, vlessResponseHeader, log);
},
close() {
log(`readableWebSocketStream is close`);
},
abort(reason) {
log(`readableWebSocketStream is abort`, JSON.stringify(reason));
},
})).catch((err) => {
log('readableWebSocketStream pipeTo error', err);
});
return new Response(null, {
status: 101,
// @ts-ignore
webSocket: client,
});
}
/**
* Handles outbound TCP connections.
*
* @param {any} remoteSocket
* @param {number} addressType The remote address type to connect to.
* @param {string} addressRemote The remote address to connect to.
* @param {number} portRemote The remote port to connect to.
* @param {Uint8Array} rawClientData The raw client data to write.
* @param {import("@cloudflare/workers-types").WebSocket} webSocket The WebSocket to pass the remote socket to.
* @param {Uint8Array} vlessResponseHeader The VLESS response header.
* @param {function} log The logging function.
* @returns {Promise<void>} The remote socket.
*/
async function handleTCPOutBound(remoteSocket, addressType, addressRemote, portRemote, rawClientData, webSocket, vlessResponseHeader, log,) {
async function connectAndWrite(address, port, socks = false) {
/** @type {import("@cloudflare/workers-types").Socket} */
const tcpSocket = socks ? await socks5Connect(addressType, address, port, log)
: connect({
hostname: address,
port: port,
});
remoteSocket.value = tcpSocket;
log(`connected to ${address}:${port}`);
const writer = tcpSocket.writable.getWriter();
await writer.write(rawClientData); // first write, normal is tls client hello
writer.releaseLock();
return tcpSocket;
}
// if the cf connect tcp socket have no incoming data, we retry to redirect ip
async function retry() {
if (enableSocks) {
tcpSocket = await connectAndWrite(addressRemote, portRemote, true);
} else {
tcpSocket = await connectAndWrite(proxyIP || addressRemote, portRemote);
}
// no matter retry success or not, close websocket
tcpSocket.closed.catch(error => {
console.log('retry tcpSocket closed error', error);
}).finally(() => {
safeCloseWebSocket(webSocket);
})
remoteSocketToWS(tcpSocket, webSocket, vlessResponseHeader, null, log);
}
let tcpSocket = await connectAndWrite(addressRemote, portRemote);
// when remoteSocket is ready, pass to websocket
// remote--> ws
remoteSocketToWS(tcpSocket, webSocket, vlessResponseHeader, retry, log);
}
/**
*
* @param {import("@cloudflare/workers-types").WebSocket} webSocketServer
* @param {string} earlyDataHeader for ws 0rtt
* @param {(info: string)=> void} log for ws 0rtt
*/
function makeReadableWebSocketStream(webSocketServer, earlyDataHeader, log) {
let readableStreamCancel = false;
const stream = new ReadableStream({
start(controller) {
webSocketServer.addEventListener('message', (event) => {
if (readableStreamCancel) {
return;
}
const message = event.data;
controller.enqueue(message);
});
// The event means that the client closed the client -> server stream.
// However, the server -> client stream is still open until you call close() on the server side.
// The WebSocket protocol says that a separate close message must be sent in each direction to fully close the socket.
webSocketServer.addEventListener('close', () => {
// client send close, need close server
// if stream is cancel, skip controller.close
safeCloseWebSocket(webSocketServer);
if (readableStreamCancel) {
return;
}
controller.close();
}
);
webSocketServer.addEventListener('error', (err) => {
log('webSocketServer has error');
controller.error(err);
}
);
// for ws 0rtt
const { earlyData, error } = base64ToArrayBuffer(earlyDataHeader);
if (error) {
controller.error(error);
} else if (earlyData) {
controller.enqueue(earlyData);
}
},
pull(controller) {
// if ws can stop read if stream is full, we can implement backpressure
// https://streams.spec.whatwg.org/#example-rs-push-backpressure
},
cancel(reason) {
// 1. pipe WritableStream has error, this cancel will called, so ws handle server close into here
// 2. if readableStream is cancel, all controller.close/enqueue need skip,
// 3. but from testing controller.error still work even if readableStream is cancel
if (readableStreamCancel) {
return;
}
log(`ReadableStream was canceled, due to ${reason}`)
readableStreamCancel = true;
safeCloseWebSocket(webSocketServer);
}
});
return stream;
}
// https://xtls.github.io/development/protocols/vless.html
// https://github.com/zizifn/excalidraw-backup/blob/main/v2ray-protocol.excalidraw
/**
*
* @param { ArrayBuffer} vlessBuffer
* @param {string} userID
* @returns
*/
function processVlessHeader(
vlessBuffer,
userID
) {
if (vlessBuffer.byteLength < 24) {
return {
hasError: true,
message: 'invalid data',
};
}
const version = new Uint8Array(vlessBuffer.slice(0, 1));
let isValidUser = false;
let isUDP = false;
if (stringify(new Uint8Array(vlessBuffer.slice(1, 17))) === userID) {
isValidUser = true;
}
if (!isValidUser) {
return {
hasError: true,
message: 'invalid user',
};
}
const optLength = new Uint8Array(vlessBuffer.slice(17, 18))[0];
//skip opt for now
const command = new Uint8Array(
vlessBuffer.slice(18 + optLength, 18 + optLength + 1)
)[0];
// 0x01 TCP
// 0x02 UDP
// 0x03 MUX
if (command === 1) {
} else if (command === 2) {
isUDP = true;
} else {
return {
hasError: true,
message: `command ${command} is not support, command 01-tcp,02-udp,03-mux`,
};
}
const portIndex = 18 + optLength + 1;
const portBuffer = vlessBuffer.slice(portIndex, portIndex + 2);
// port is big-Endian in raw data etc 80 == 0x005d
const portRemote = new DataView(portBuffer).getUint16(0);
let addressIndex = portIndex + 2;
const addressBuffer = new Uint8Array(
vlessBuffer.slice(addressIndex, addressIndex + 1)
);
// 1--> ipv4 addressLength =4
// 2--> domain name addressLength=addressBuffer[1]
// 3--> ipv6 addressLength =16
const addressType = addressBuffer[0];
let addressLength = 0;
let addressValueIndex = addressIndex + 1;
let addressValue = '';
switch (addressType) {
case 1:
addressLength = 4;
addressValue = new Uint8Array(
vlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)
).join('.');
break;
case 2:
addressLength = new Uint8Array(
vlessBuffer.slice(addressValueIndex, addressValueIndex + 1)
)[0];
addressValueIndex += 1;
addressValue = new TextDecoder().decode(
vlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)
);
break;
case 3:
addressLength = 16;
const dataView = new DataView(
vlessBuffer.slice(addressValueIndex, addressValueIndex + addressLength)
);
// 2001:0db8:85a3:0000:0000:8a2e:0370:7334
const ipv6 = [];
for (let i = 0; i < 8; i++) {
ipv6.push(dataView.getUint16(i * 2).toString(16));
}
addressValue = ipv6.join(':');
// seems no need add [] for ipv6
break;
default:
return {
hasError: true,
message: `invild addressType is ${addressType}`,
};
}
if (!addressValue) {
return {
hasError: true,
message: `addressValue is empty, addressType is ${addressType}`,
};
}
return {
hasError: false,
addressRemote: addressValue,
addressType,
portRemote,
rawDataIndex: addressValueIndex + addressLength,
vlessVersion: version,
isUDP,
};
}
/**
*
* @param {import("@cloudflare/workers-types").Socket} remoteSocket
* @param {import("@cloudflare/workers-types").WebSocket} webSocket
* @param {ArrayBuffer} vlessResponseHeader
* @param {(() => Promise<void>) | null} retry
* @param {*} log
*/
async function remoteSocketToWS(remoteSocket, webSocket, vlessResponseHeader, retry, log) {
// remote--> ws
let remoteChunkCount = 0;
let chunks = [];
/** @type {ArrayBuffer | null} */
let vlessHeader = vlessResponseHeader;
let hasIncomingData = false; // check if remoteSocket has incoming data
await remoteSocket.readable
.pipeTo(
new WritableStream({
start() {
},
/**
*
* @param {Uint8Array} chunk
* @param {*} controller
*/
async write(chunk, controller) {
hasIncomingData = true;
// remoteChunkCount++;
if (webSocket.readyState !== WS_READY_STATE_OPEN) {
controller.error(
'webSocket.readyState is not open, maybe close'
);
}
if (vlessHeader) {
webSocket.send(await new Blob([vlessHeader, chunk]).arrayBuffer());
vlessHeader = null;
} else {
// seems no need rate limit this, CF seems fix this??..
// if (remoteChunkCount > 20000) {
// // cf one package is 4096 byte(4kb), 4096 * 20000 = 80M
// await delay(1);
// }
webSocket.send(chunk);
}
},
close() {
log(`remoteConnection!.readable is close with hasIncomingData is ${hasIncomingData}`);
// safeCloseWebSocket(webSocket); // no need server close websocket frist for some case will casue HTTP ERR_CONTENT_LENGTH_MISMATCH issue, client will send close event anyway.
},
abort(reason) {
console.error(`remoteConnection!.readable abort`, reason);
},
})
)
.catch((error) => {
console.error(
`remoteSocketToWS has exception `,
error.stack || error
);
safeCloseWebSocket(webSocket);
});
// seems is cf connect socket have error,
// 1. Socket.closed will have error
// 2. Socket.readable will be close without any data coming
if (hasIncomingData === false && retry) {
log(`retry`)
retry();
}
}
/**
*
* @param {string} base64Str
* @returns
*/
function base64ToArrayBuffer(base64Str) {
if (!base64Str) {
return { error: null };
}
try {
// go use modified Base64 for URL rfc4648 which js atob not support
base64Str = base64Str.replace(/-/g, '+').replace(/_/g, '/');
const decode = atob(base64Str);
const arryBuffer = Uint8Array.from(decode, (c) => c.charCodeAt(0));
return { earlyData: arryBuffer.buffer, error: null };
} catch (error) {
return { error };
}
}
/**
* This is not real UUID validation
* @param {string} uuid
*/
function isValidUUID(uuid) {
const uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
return uuidRegex.test(uuid);
}
const WS_READY_STATE_OPEN = 1;
const WS_READY_STATE_CLOSING = 2;
/**
* Normally, WebSocket will not has exceptions when close.
* @param {import("@cloudflare/workers-types").WebSocket} socket
*/
function safeCloseWebSocket(socket) {
try {
if (socket.readyState === WS_READY_STATE_OPEN || socket.readyState === WS_READY_STATE_CLOSING) {
socket.close();
}
} catch (error) {
console.error('safeCloseWebSocket error', error);
}
}
const byteToHex = [];
for (let i = 0; i < 256; ++i) {
byteToHex.push((i + 256).toString(16).slice(1));
}
function unsafeStringify(arr, offset = 0) {
return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
}
function stringify(arr, offset = 0) {
const uuid = unsafeStringify(arr, offset);
if (!isValidUUID(uuid)) {
throw TypeError("Stringified UUID is invalid");
}
return uuid;
}
/**
*
* @param {ArrayBuffer} udpChunk
* @param {import("@cloudflare/workers-types").WebSocket} webSocket
* @param {ArrayBuffer} vlessResponseHeader
* @param {(string)=> void} log
*/
async function handleDNSQuery(udpChunk, webSocket, vlessResponseHeader, log) {
// no matter which DNS server client send, we alwasy use hard code one.
// beacsue someof DNS server is not support DNS over TCP
try {
const dnsServer = '8.8.4.4'; // change to 1.1.1.1 after cf fix connect own ip bug
const dnsPort = 53;
/** @type {ArrayBuffer | null} */
let vlessHeader = vlessResponseHeader;
/** @type {import("@cloudflare/workers-types").Socket} */
const tcpSocket = connect({
hostname: dnsServer,
port: dnsPort,
});
log(`connected to ${dnsServer}:${dnsPort}`);
const writer = tcpSocket.writable.getWriter();
await writer.write(udpChunk);
writer.releaseLock();
await tcpSocket.readable.pipeTo(new WritableStream({
async write(chunk) {
if (webSocket.readyState === WS_READY_STATE_OPEN) {
if (vlessHeader) {
webSocket.send(await new Blob([vlessHeader, chunk]).arrayBuffer());
vlessHeader = null;
} else {
webSocket.send(chunk);
}
}
},
close() {
log(`dns server(${dnsServer}) tcp is close`);
},
abort(reason) {
console.error(`dns server(${dnsServer}) tcp is abort`, reason);
},
}));
} catch (error) {
console.error(
`handleDNSQuery have exception, error: ${error.message}`
);
}
}
/**
*
* @param {number} addressType
* @param {string} addressRemote
* @param {number} portRemote
* @param {function} log The logging function.
*/
async function socks5Connect(addressType, addressRemote, portRemote, log) {
const { username, password, hostname, port } = parsedSocks5Address;
// Connect to the SOCKS server
const socket = connect({
hostname,
port,
});
// Request head format (Worker -> Socks Server):
// +----+----------+----------+
// |VER | NMETHODS | METHODS |
// +----+----------+----------+
// | 1 | 1 | 1 to 255 |
// +----+----------+----------+
// https://en.wikipedia.org/wiki/SOCKS#SOCKS5
// For METHODS:
// 0x00 NO AUTHENTICATION REQUIRED
// 0x02 USERNAME/PASSWORD https://datatracker.ietf.org/doc/html/rfc1929
const socksGreeting = new Uint8Array([5, 2, 0, 2]);
const writer = socket.writable.getWriter();
await writer.write(socksGreeting);
log('sent socks greeting');
const reader = socket.readable.getReader();
const encoder = new TextEncoder();
let res = (await reader.read()).value;
// Response format (Socks Server -> Worker):
// +----+--------+
// |VER | METHOD |
// +----+--------+
// | 1 | 1 |
// +----+--------+
if (res[0] !== 0x05) {
log(`socks server version error: ${res[0]} expected: 5`);
return;
}
if (res[1] === 0xff) {
log("no acceptable methods");
return;
}
// if return 0x0502
if (res[1] === 0x02) {
log("socks server needs auth");
if (!username || !password) {
log("please provide username/password");
return;
}
// +----+------+----------+------+----------+
// |VER | ULEN | UNAME | PLEN | PASSWD |
// +----+------+----------+------+----------+
// | 1 | 1 | 1 to 255 | 1 | 1 to 255 |
// +----+------+----------+------+----------+
const authRequest = new Uint8Array([
1,
username.length,
...encoder.encode(username),
password.length,
...encoder.encode(password)
]);
await writer.write(authRequest);
res = (await reader.read()).value;
// expected 0x0100
if (res[0] !== 0x01 || res[1] !== 0x00) {
log("fail to auth socks server");
return;
}
}
// Request data format (Worker -> Socks Server):
// +----+-----+-------+------+----------+----------+
// |VER | CMD | RSV | ATYP | DST.ADDR | DST.PORT |
// +----+-----+-------+------+----------+----------+
// | 1 | 1 | X'00' | 1 | Variable | 2 |
// +----+-----+-------+------+----------+----------+
// ATYP: address type of following address
// 0x01: IPv4 address
// 0x03: Domain name
// 0x04: IPv6 address
// DST.ADDR: desired destination address
// DST.PORT: desired destination port in network octet order
// addressType
// 1--> ipv4 addressLength =4
// 2--> domain name
// 3--> ipv6 addressLength =16
let DSTADDR; // DSTADDR = ATYP + DST.ADDR
switch (addressType) {
case 1:
DSTADDR = new Uint8Array(
[1, ...addressRemote.split('.').map(Number)]
);
break;
case 2:
DSTADDR = new Uint8Array(
[3, addressRemote.length, ...encoder.encode(addressRemote)]
);
break;
case 3:
DSTADDR = new Uint8Array(
[4, ...addressRemote.split(':').flatMap(x => [parseInt(x.slice(0, 2), 16), parseInt(x.slice(2), 16)])]
);
break;
default:
log(`invild addressType is ${addressType}`);
return;
}
const socksRequest = new Uint8Array([5, 1, 0, ...DSTADDR, portRemote >> 8, portRemote & 0xff]);
await writer.write(socksRequest);
log('sent socks request');
res = (await reader.read()).value;
// Response format (Socks Server -> Worker):
// +----+-----+-------+------+----------+----------+
// |VER | REP | RSV | ATYP | BND.ADDR | BND.PORT |
// +----+-----+-------+------+----------+----------+
// | 1 | 1 | X'00' | 1 | Variable | 2 |
// +----+-----+-------+------+----------+----------+
if (res[1] === 0x00) {
log("socks connection opened");
} else {
log("fail to open socks connection");
return;
}
writer.releaseLock();
reader.releaseLock();
return socket;
}
/**
*
* @param {string} address
*/
function socks5AddressParser(address) {
let [latter, former] = address.split("@").reverse();
let username, password, hostname, port;
if (former) {
const formers = former.split(":");
if (formers.length !== 2) {
throw new Error('Invalid SOCKS address format');
}
[username, password] = formers;
}
const latters = latter.split(":");
port = Number(latters.pop());
if (isNaN(port)) {
throw new Error('Invalid SOCKS address format');
}
hostname = latters.join(":");
const regex = /^\[.*\]$/;
if (hostname.includes(":") && !regex.test(hostname)) {
throw new Error('Invalid SOCKS address format');
}
return {
username,
password,
hostname,
port,
}
}
/**
*
* @param {string} userID
* @param {string | null} hostName
* @returns {string}
*/
function getVLESSConfig(userID, hostName) {
const protocol = "vless";
const vlessMain =
`${protocol}` +
`://${userID}@${hostName}:443`+
`?encryption=none&security=tls&sni=${hostName}&fp=randomized&type=ws&host=${hostName}&path=%2F%3Fed%3D2048#${hostName}`;
return `
################################################################
v2ray
---------------------------------------------------------------
${vlessMain}
---------------------------------------------------------------
################################################################
clash-meta
---------------------------------------------------------------
- type: vless
name: ${hostName}
server: ${hostName}
port: 443
uuid: ${userID}
network: ws
tls: true
udp: false
sni: ${hostName}
client-fingerprint: chrome
ws-opts:
path: "/?ed=2048"
headers:
host: ${hostName}
---------------------------------------------------------------
################################################################
`;
}
================================================
FILE: test/cidr.js
================================================
function isIPv4InCFCIDR(ip) {
const currentIPNum = convertIp2Num(ip);
// if not valid number, return false
if(!currentIPNum){
return false;
}
// 134866688 / -256
// 134866689: 1000000010011110011100000001
// -256: 11111111111111111111100000000000
// 134866688 1000000010011110011100000000
return cidrNumberList.some(({ipNumber, ipMask}) => (currentIPNum & ipMask) === (ipNumber & ipMask));
}
/**
*
* @param {string} ip
*/
function convertIp2Num(ip){
const ipParts = ip.split('.');
if(ipParts.length !== 4){
return 0;
}
let ipNumber = 0;
for (const ipPart of ipParts) {
ipNumber = (ipNumber << 8) + parseInt(ipPart, 10); // 8.9.231.0 --> 134866688// 134866688 --> 1000000010011110011100000000
}
return ipNumber >>> 0; // unsgined int
}
const cidrList = [
"1.0.0.0/24",
"1.1.1.0/24",
"8.6.144.0/24",
"8.6.145.0/24",
"8.6.146.0/24",
"8.9.231.0/24",
"8.10.148.0/24",
"8.14.199.0/24",
"8.14.201.0/24",
"8.14.202.0/24",
"8.14.203.0/24",
"8.14.204.0/24",
"8.17.205.0/24",
"8.17.206.0/24",
"8.18.50.0/24",
"8.18.113.0/24",
"8.18.194.0/24",
"8.18.195.0/24",
"8.18.196.0/24",
"8.19.8.0/24",
"8.20.100.0/24",
"8.20.101.0/24",
"8.20.103.0/24",
"8.20.122.0/24",
"8.20.123.0/24",
"8.20.124.0/24",
"8.20.125.0/24",
"8.20.126.0/24",
"8.20.253.0/24",
"8.21.8.0/24",
"8.21.9.0/24",
"8.21.10.0/24",
"8.21.13.0/24",
"8.21.110.0/24",
"8.21.111.0/24",
"8.21.239.0/24",
"8.23.139.0/24",
"8.23.240.0/24",
"8.24.87.0/24",
"8.24.242.0/24",
"8.24.243.0/24",
"8.24.244.0/24",
"8.25.96.0/24",
"8.25.97.0/24",
"8.25.249.0/24",
"8.26.180.0/24",
"8.26.182.0/24",
"8.27.64.0/24",
"8.27.66.0/24",
"8.27.67.0/24",
"8.27.68.0/24",
"8.27.69.0/24",
"8.27.79.0/24",
"8.28.20.0/24",
"8.28.82.0/24",
"8.28.126.0/24",
"8.28.213.0/24",
"8.29.105.0/24",
"8.29.230.0/24",
"8.29.231.0/24",
"8.30.234.0/24",
"8.31.2.0/24",
"8.31.160.0/24",
"8.31.161.0/24",
"8.34.69.0/24",
"8.34.70.0/24",
"8.34.71.0/24",
"8.34.200.0/24",
"8.34.201.0/24",
"8.34.202.0/24",
"8.35.57.0/24",
"8.35.58.0/24",
"8.35.59.0/24",
"8.35.149.0/24",
"8.35.211.0/24",
"8.36.216.0/24",
"8.36.217.0/24",
"8.36.218.0/24",
"8.36.219.0/24",
"8.36.220.0/24",
"8.37.41.0/24",
"8.37.43.0/24",
"8.38.147.0/24",
"8.38.148.0/24",
"8.38.149.0/24",
"8.38.172.0/24",
"8.39.6.0/24",
"8.39.18.0/24",
"8.39.125.0/24",
"8.39.126.0/24",
"8.39.201.0/24",
"8.39.202.0/24",
"8.39.203.0/24",
"8.39.204.0/24",
"8.39.205.0/24",
"8.39.206.0/24",
"8.39.207.0/24",
"8.39.212.0/24",
"8.39.213.0/24",
"8.39.214.0/24",
"8.39.215.0/24",
"8.40.26.0/24",
"8.40.27.0/24",
"8.40.28.0/24",
"8.40.29.0/24",
"8.40.30.0/24",
"8.40.31.0/24",
"8.40.107.0/24",
"8.40.111.0/24",
"8.40.140.0/24",
"8.41.5.0/24",
"8.41.6.0/24",
"8.41.7.0/24",
"8.41.36.0/24",
"8.41.37.0/24",
"8.42.51.0/24",
"8.42.52.0/24",
"8.42.54.0/24",
"8.42.55.0/24",
"8.42.161.0/24",
"8.42.164.0/24",
"8.42.172.0/24",
"8.42.245.0/24",
"8.43.121.0/24",
"8.43.122.0/24",
"8.43.123.0/24",
"8.43.224.0/24",
"8.43.225.0/24",
"8.43.226.0/24",
"8.44.0.0/24",
"8.44.1.0/24",
"8.44.2.0/24",
"8.44.3.0/24",
"8.44.6.0/24",
"8.44.58.0/24",
"8.44.60.0/24",
"8.44.61.0/24",
"8.44.62.0/24",
"8.44.63.0/24",
"8.45.41.0/24",
"8.45.43.0/24",
"8.45.44.0/24",
"8.45.45.0/24",
"8.45.46.0/24",
"8.45.47.0/24",
"8.45.97.0/24",
"8.45.101.0/24",
"8.45.102.0/24",
"8.45.108.0/24",
"8.45.111.0/24",
"8.45.144.0/24",
"8.45.145.0/24",
"8.45.146.0/24",
"8.45.147.0/24",
"8.46.113.0/24",
"8.46.114.0/24",
"8.46.115.0/24",
"8.46.117.0/24",
"8.46.118.0/24",
"8.46.119.0/24",
"8.47.9.0/24",
"8.47.12.0/24",
"8.47.13.0/24",
"8.47.14.0/24",
"8.47.15.0/24",
"8.47.69.0/24",
"8.47.71.0/24",
"8.48.130.0/24",
"8.48.132.0/24",
"8.48.133.0/24",
"8.48.134.0/24",
"23.227.37.0/24",
"23.227.38.0/24",
"23.227.39.0/24",
"23.227.60.0/24",
"64.68.192.0/24",
"65.110.63.0/24",
"66.235.200.0/24",
"68.67.65.0/24",
"91.234.214.0/24",
"103.21.244.0/24",
"103.22.200.0/24",
"103.22.201.0/24",
"103.22.202.0/24",
"103.22.203.0/24",
"103.81.228.0/24",
"104.16.0.0/24",
"104.16.1.0/24",
"104.16.2.0/24",
"104.16.3.0/24",
"104.16.4.0/24",
"104.16.5.0/24",
"104.16.6.0/24",
"104.16.7.0/24",
"104.16.8.0/24",
"104.16.9.0/24",
"104.16.10.0/24",
"104.16.11.0/24",
"104.16.12.0/24",
"104.16.13.0/24",
"104.16.14.0/24",
"104.16.15.0/24",
"104.16.16.0/24",
"104.16.17.0/24",
"104.16.18.0/24",
"104.16.19.0/24",
"104.16.20.0/24",
"104.16.21.0/24",
"104.16.22.0/24",
"104.16.23.0/24",
"104.16.24.0/24",
"104.16.25.0/24",
"104.16.26.0/24",
"104.16.27.0/24",
"104.16.28.0/24",
"104.16.29.0/24",
"104.16.30.0/24",
"104.16.31.0/24",
"104.16.32.0/24",
"104.16.33.0/24",
"104.16.34.0/24",
"104.16.35.0/24",
"104.16.36.0/24",
"104.16.37.0/24",
"104.16.38.0/24",
"104.16.39.0/24",
"104.16.40.0/24",
"104.16.41.0/24",
"104.16.42.0/24",
"104.16.43.0/24",
"104.16.44.0/24",
"104.16.45.0/24",
"104.16.46.0/24",
"104.16.47.0/24",
"104.16.48.0/24",
"104.16.49.0/24",
"104.16.50.0/24",
"104.16.51.0/24",
"104.16.52.0/24",
"104.16.53.0/24",
"104.16.54.0/24",
"104.16.55.0/24",
"104.16.56.0/24",
"104.16.57.0/24",
"104.16.58.0/24",
"104.16.59.0/24",
"104.16.60.0/24",
"104.16.61.0/24",
"104.16.62.0/24",
"104.16.63.0/24",
"104.16.64.0/24",
"104.16.65.0/24",
"104.16.66.0/24",
"104.16.67.0/24",
"104.16.68.0/24",
"104.16.69.0/24",
"104.16.70.0/24",
"104.16.71.0/24",
"104.16.72.0/24",
"104.16.73.0/24",
"104.16.74.0/24",
"104.16.75.0/24",
"104.16.76.0/24",
"104.16.77.0/24",
"104.16.78.0/24",
"104.16.79.0/24",
"104.16.80.0/24",
"104.16.81.0/24",
"104.16.82.0/24",
"104.16.83.0/24",
"104.16.84.0/24",
"104.16.85.0/24",
"104.16.86.0/24",
"104.16.87.0/24",
"104.16.88.0/24",
"104.16.89.0/24",
"104.16.90.0/24",
"104.16.91.0/24",
"104.16.92.0/24",
"104.16.93.0/24",
"104.16.94.0/24",
"104.16.95.0/24",
"104.16.96.0/24",
"104.16.97.0/24",
"104.16.98.0/24",
"104.16.99.0/24",
"104.16.100.0/24",
"104.16.101.0/24",
"104.16.102.0/24",
"104.16.103.0/24",
"104.16.104.0/24",
"104.16.105.0/24",
"104.16.106.0/24",
"104.16.107.0/24",
"104.16.108.0/24",
"104.16.109.0/24",
"104.16.110.0/24",
"104.16.111.0/24",
"104.16.112.0/24",
"104.16.113.0/24",
"104.16.114.0/24",
"104.16.115.0/24",
"104.16.116.0/24",
"104.16.117.0/24",
"104.16.118.0/24",
"104.16.119.0/24",
"104.16.120.0/24",
"104.16.121.0/24",
"104.16.122.0/24",
"104.16.123.0/24",
"104.16.124.0/24",
"104.16.125.0/24",
"104.16.126.0/24",
"104.16.127.0/24",
"104.16.128.0/24",
"104.16.129.0/24",
"104.16.130.0/24",
"104.16.131.0/24",
"104.16.132.0/24",
"104.16.133.0/24",
"104.16.134.0/24",
"104.16.135.0/24",
"104.16.136.0/24",
"104.16.137.0/24",
"104.16.138.0/24",
"104.16.139.0/24",
"104.16.140.0/24",
"104.16.141.0/24",
"104.16.142.0/24",
"104.16.143.0/24",
"104.16.144.0/24",
"104.16.145.0/24",
"104.16.146.0/24",
"104.16.147.0/24",
"104.16.148.0/24",
"104.16.149.0/24",
"104.16.150.0/24",
"104.16.151.0/24",
"104.16.152.0/24",
"104.16.153.0/24",
"104.16.154.0/24",
"104.16.155.0/24",
"104.16.156.0/24",
"104.16.157.0/24",
"104.16.158.0/24",
"104.16.159.0/24",
"104.16.160.0/24",
"104.16.161.0/24",
"104.16.162.0/24",
"104.16.163.0/24",
"104.16.164.0/24",
"104.16.165.0/24",
"104.16.166.0/24",
"104.16.167.0/24",
"104.16.168.0/24",
"104.16.169.0/24",
"104.16.170.0/24",
"104.16.171.0/24",
"104.16.172.0/24",
"104.16.173.0/24",
"104.16.174.0/24",
"104.16.175.0/24",
"104.16.176.0/24",
"104.16.177.0/24",
"104.16.178.0/24",
"104.16.179.0/24",
"104.16.180.0/24",
"104.16.181.0/24",
"104.16.182.0/24",
"104.16.183.0/24",
"104.16.184.0/24",
"104.16.185.0/24",
"104.16.186.0/24",
"104.16.187.0/24",
"104.16.188.0/24",
"104.16.189.0/24",
"104.16.190.0/24",
"104.16.191.0/24",
"104.16.192.0/24",
"104.16.193.0/24",
"104.16.194.0/24",
"104.16.195.0/24",
"104.16.196.0/24",
"104.16.197.0/24",
"104.16.198.0/24",
"104.16.199.0/24",
"104.16.200.0/24",
"104.16.201.0/24",
"104.16.202.0/24",
"104.16.203.0/24",
"104.16.204.0/24",
"104.16.205.0/24",
"104.16.206.0/24",
"104.16.207.0/24",
"104.16.208.0/24",
"104.16.209.0/24",
"104.16.210.0/24",
"104.16.211.0/24",
"104.16.212.0/24",
"104.16.213.0/24",
"104.16.214.0/24",
"104.16.215.0/24",
"104.16.216.0/24",
"104.16.217.0/24",
"104.16.218.0/24",
"104.16.219.0/24",
"104.16.220.0/24",
"104.16.221.0/24",
"104.16.222.0/24",
"104.16.223.0/24",
"104.16.224.0/24",
"104.16.225.0/24",
"104.16.226.0/24",
"104.16.227.0/24",
"104.16.228.0/24",
"104.16.229.0/24",
"104.16.230.0/24",
"104.16.231.0/24",
"104.16.232.0/24",
"104.16.233.0/24",
"104.16.234.0/24",
"104.16.235.0/24",
"104.16.236.0/24",
"104.16.237.0/24",
"104.16.238.0/24",
"104.16.239.0/24",
"104.16.240.0/24",
"104.16.241.0/24",
"104.16.242.0/24",
"104.16.243.0/24",
"104.16.244.0/24",
"104.16.245.0/24",
"104.16.246.0/24",
"104.16.247.0/24",
"104.16.248.0/24",
"104.16.249.0/24",
"104.16.250.0/24",
"104.16.251.0/24",
"104.16.252.0/24",
"104.16.253.0/24",
"104.16.254.0/24",
"104.16.255.0/24",
"104.17.0.0/24",
"104.17.1.0/24",
"104.17.2.0/24",
"104.17.3.0/24",
"104.17.4.0/24",
"104.17.5.0/24",
"104.17.6.0/24",
"104.17.7.0/24",
"104.17.8.0/24",
"104.17.9.0/24",
"104.17.10.0/24",
"104.17.11.0/24",
"104.17.12.0/24",
"104.17.13.0/24",
"104.17.14.0/24",
"104.17.15.0/24",
"104.17.16.0/24",
"104.17.17.0/24",
"104.17.18.0/24",
"104.17.19.0/24",
"104.17.20.0/24",
"104.17.21.0/24",
"104.17.22.0/24",
"104.17.23.0/24",
"104.17.24.0/24",
"104.17.25.0/24",
"104.17.26.0/24",
"104.17.27.0/24",
"104.17.28.0/24",
"104.17.29.0/24",
"104.17.30.0/24",
"104.17.31.0/24",
"104.17.32.0/24",
"104.17.33.0/24",
"104.17.34.0/24",
"104.17.35.0/24",
"104.17.36.0/24",
"104.17.37.0/24",
"104.17.38.0/24",
"104.17.39.0/24",
"104.17.40.0/24",
"104.17.41.0/24",
"104.17.42.0/24",
"104.17.43.0/24",
"104.17.44.0/24",
"104.17.45.0/24",
"104.17.46.0/24",
"104.17.47.0/24",
"104.17.48.0/24",
"104.17.49.0/24",
"104.17.50.0/24",
"104.17.51.0/24",
"104.17.52.0/24",
"104.17.53.0/24",
"104.17.54.0/24",
"104.17.55.0/24",
"104.17.56.0/24",
"104.17.57.0/24",
"104.17.58.0/24",
"104.17.59.0/24",
"104.17.60.0/24",
"104.17.61.0/24",
"104.17.62.0/24",
"104.17.63.0/24",
"104.17.64.0/24",
"104.17.65.0/24",
"104.17.66.0/24",
"104.17.67.0/24",
"104.17.68.0/24",
"104.17.69.0/24",
"104.17.70.0/24",
"104.17.71.0/24",
"104.17.72.0/24",
"104.17.73.0/24",
"104.17.74.0/24",
"104.17.75.0/24",
"104.17.76.0/24",
"104.17.77.0/24",
"104.17.78.0/24",
"104.17.79.0/24",
"104.17.80.0/24",
"104.17.81.0/24",
"104.17.82.0/24",
"104.17.83.0/24",
"104.17.84.0/24",
"104.17.85.0/24",
"104.17.86.0/24",
"104.17.87.0/24",
"104.17.88.0/24",
"104.17.89.0/24",
"104.17.90.0/24",
"104.17.91.0/24",
"104.17.92.0/24",
"104.17.93.0/24",
"104.17.94.0/24",
"104.17.95.0/24",
"104.17.96.0/24",
"104.17.97.0/24",
"104.17.98.0/24",
"104.17.99.0/24",
"104.17.100.0/24",
"104.17.101.0/24",
"104.17.102.0/24",
"104.17.103.0/24",
"104.17.104.0/24",
"104.17.105.0/24",
"104.17.106.0/24",
"104.17.107.0/24",
"104.17.108.0/24",
"104.17.109.0/24",
"104.17.110.0/24",
"104.17.111.0/24",
"104.17.112.0/24",
"104.17.113.0/24",
"104.17.114.0/24",
"104.17.115.0/24",
"104.17.116.0/24",
"104.17.117.0/24",
"104.17.118.0/24",
"104.17.119.0/24",
"104.17.120.0/24",
"104.17.121.0/24",
"104.17.122.0/24",
"104.17.123.0/24",
"104.17.124.0/24",
"104.17.125.0/24",
"104.17.126.0/24",
"104.17.127.0/24",
"104.17.128.0/24",
"104.17.129.0/24",
"104.17.130.0/24",
"104.17.131.0/24",
"104.17.132.0/24",
"104.17.133.0/24",
"104.17.134.0/24",
"104.17.135.0/24",
"104.17.136.0/24",
"104.17.137.0/24",
"104.17.138.0/24",
"104.17.139.0/24",
"104.17.140.0/24",
"104.17.141.0/24",
"104.17.142.0/24",
"104.17.143.0/24",
"104.17.144.0/24",
"104.17.145.0/24",
"104.17.146.0/24",
"104.17.147.0/24",
"104.17.148.0/24",
"104.17.149.0/24",
"104.17.150.0/24",
"104.17.151.0/24",
"104.17.152.0/24",
"104.17.153.0/24",
"104.17.154.0/24",
"104.17.155.0/24",
"104.17.156.0/24",
"104.17.157.0/24",
"104.17.158.0/24",
"104.17.159.0/24",
"104.17.160.0/24",
"104.17.161.0/24",
"104.17.162.0/24",
"104.17.163.0/24",
"104.17.164.0/24",
"104.17.165.0/24",
"104.17.166.0/24",
"104.17.167.0/24",
"104.17.168.0/24",
"104.17.169.0/24",
"104.17.170.0/24",
"104.17.171.0/24",
"104.17.172.0/24",
"104.17.173.0/24",
"104.17.174.0/24",
"104.17.175.0/24",
"104.17.176.0/24",
"104.17.177.0/24",
"104.17.178.0/24",
"104.17.179.0/24",
"104.17.180.0/24",
"104.17.181.0/24",
"104.17.182.0/24",
"104.17.183.0/24",
"104.17.184.0/24",
"104.17.185.0/24",
"104.17.186.0/24",
"104.17.187.0/24",
"104.17.188.0/24",
"104.17.189.0/24",
"104.17.190.0/24",
"104.17.191.0/24",
"104.17.192.0/24",
"104.17.193.0/24",
"104.17.194.0/24",
"104.17.195.0/24",
"104.17.196.0/24",
"104.17.197.0/24",
"104.17.198.0/24",
"104.17.199.0/24",
"104.17.200.0/24",
"104.17.201.0/24",
"104.17.202.0/24",
"104.17.203.0/24",
"104.17.204.0/24",
"104.17.205.0/24",
"104.17.206.0/24",
"104.17.207.0/24",
"104.17.208.0/24",
"104.17.209.0/24",
"104.17.210.0/24",
"104.17.211.0/24",
"104.17.212.0/24",
"104.17.213.0/24",
"104.17.214.0/24",
"104.17.215.0/24",
"104.17.216.0/24",
"104.17.217.0/24",
"104.17.218.0/24",
"104.17.219.0/24",
"104.17.220.0/24",
"104.17.221.0/24",
"104.17.222.0/24",
"104.17.223.0/24",
"104.17.224.0/24",
"104.17.225.0/24",
"104.17.226.0/24",
"104.17.227.0/24",
"104.17.228.0/24",
"104.17.229.0/24",
"104.17.230.0/24",
"104.17.231.0/24",
"104.17.232.0/24",
"104.17.233.0/24",
"104.17.234.0/24",
"104.17.235.0/24",
"104.17.236.0/24",
"104.17.237.0/24",
"104.17.238.0/24",
"104.17.239.0/24",
"104.17.240.0/24",
"104.17.241.0/24",
"104.17.242.0/24",
"104.17.243.0/24",
"104.17.244.0/24",
"104.17.245.0/24",
"104.17.246.0/24",
"104.17.247.0/24",
"104.17.248.0/24",
"104.17.249.0/24",
"104.17.250.0/24",
"104.17.251.0/24",
"104.17.252.0/24",
"104.17.253.0/24",
"104.17.254.0/24",
"104.17.255.0/24",
"104.18.0.0/24",
"104.18.1.0/24",
"104.18.2.0/24",
"104.18.3.0/24",
"104.18.4.0/24",
"104.18.5.0/24",
"104.18.6.0/24",
"104.18.7.0/24",
"104.18.8.0/24",
"104.18.9.0/24",
"104.18.10.0/24",
"104.18.11.0/24",
"104.18.12.0/24",
"104.18.13.0/24",
"104.18.14.0/24",
"104.18.15.0/24",
"104.18.16.0/24",
"104.18.17.0/24",
"104.18.18.0/24",
"104.18.19.0/24",
"104.18.20.0/24",
"104.18.21.0/24",
"104.18.22.0/24",
"104.18.23.0/24",
"104.18.24.0/24",
"104.18.25.0/24",
"104.18.26.0/24",
"104.18.27.0/24",
"104.18.28.0/24",
"104.18.29.0/24",
"104.18.30.0/24",
"104.18.31.0/24",
"104.18.32.0/24",
"104.18.33.0/24",
"104.18.34.0/24",
"104.18.35.0/24",
"104.18.36.0/24",
"104.18.37.0/24",
"104.18.38.0/24",
"104.18.39.0/24",
"104.18.40.0/24",
"104.18.41.0/24",
"104.18.42.0/24",
"104.18.43.0/24",
"104.18.44.0/24",
"104.18.45.0/24",
"104.18.46.0/24",
"104.18.47.0/24",
"104.18.48.0/24",
"104.18.49.0/24",
"104.18.50.0/24",
"104.18.51.0/24",
"104.18.52.0/24",
"104.18.53.0/24",
"104.18.54.0/24",
"104.18.55.0/24",
"104.18.56.0/24",
"104.18.57.0/24",
"104.18.58.0/24",
"104.18.59.0/24",
"104.18.60.0/24",
"104.18.61.0/24",
"104.18.62.0/24",
"104.18.63.0/24",
"104.18.64.0/24",
"104.18.65.0/24",
"104.18.66.0/24",
"104.18.67.0/24",
"104.18.68.0/24",
"104.18.69.0/24",
"104.18.70.0/24",
"104.18.71.0/24",
"104.18.72.0/24",
"104.18.73.0/24",
"104.18.74.0/24",
"104.18.75.0/24",
"104.18.76.0/24",
"104.18.77.0/24",
"104.18.78.0/24",
"104.18.79.0/24",
"104.18.80.0/24",
"104.18.81.0/24",
"104.18.82.0/24",
"104.18.83.0/24",
"104.18.84.0/24",
"104.18.85.0/24",
"104.18.86.0/24",
"104.18.87.0/24",
"104.18.88.0/24",
"104.18.89.0/24",
"104.18.90.0/24",
"104.18.91.0/24",
"104.18.92.0/24",
"104.18.93.0/24",
"104.18.94.0/24",
"104.18.95.0/24",
"104.18.96.0/24",
"104.18.97.0/24",
"104.18.98.0/24",
"104.18.99.0/24",
"104.18.100.0/24",
"104.18.101.0/24",
"104.18.102.0/24",
"104.18.103.0/24",
"104.18.104.0/24",
"104.18.105.0/24",
"104.18.106.0/24",
"104.18.107.0/24",
"104.18.108.0/24",
"104.18.109.0/24",
"104.18.110.0/24",
"104.18.111.0/24",
"104.18.112.0/24",
"104.18.113.0/24",
"104.18.114.0/24",
"104.18.115.0/24",
"104.18.116.0/24",
"104.18.117.0/24",
"104.18.118.0/24",
"104.18.119.0/24",
"104.18.120.0/24",
"104.18.121.0/24",
"104.18.122.0/24",
"104.18.123.0/24",
"104.18.124.0/24",
"104.18.125.0/24",
"104.18.126.0/24",
"104.18.127.0/24",
"104.18.128.0/24",
"104.18.129.0/24",
"104.18.130.0/24",
"104.18.131.0/24",
"104.18.132.0/24",
"104.18.133.0/24",
"104.18.134.0/24",
"104.18.135.0/24",
"104.18.136.0/24",
"104.18.137.0/24",
"104.18.138.0/24",
"104.18.139.0/24",
"104.18.140.0/24",
"104.18.141.0/24",
"104.18.142.0/24",
"104.18.143.0/24",
"104.18.144.0/24",
"104.18.145.0/24",
"104.18.146.0/24",
"104.18.147.0/24",
"104.18.148.0/24",
"104.18.149.0/24",
"104.18.150.0/24",
"104.18.151.0/24",
"104.18.152.0/24",
"104.18.153.0/24",
"104.18.154.0/24",
"104.18.155.0/24",
"104.18.156.0/24",
"104.18.157.0/24",
"104.18.158.0/24",
"104.18.159.0/24",
"104.18.160.0/24",
"104.18.161.0/24",
"104.18.162.0/24",
"104.18.163.0/24",
"104.18.164.0/24",
"104.18.165.0/24",
"104.18.166.0/24",
"104.18.167.0/24",
"104.18.168.0/24",
"104.18.169.0/24",
"104.18.170.0/24",
"104.18.171.0/24",
"104.18.172.0/24",
"104.18.173.0/24",
"104.18.174.0/24",
"104.18.175.0/24",
"104.18.176.0/24",
"104.18.177.0/24",
"104.18.178.0/24",
"104.18.179.0/24",
"104.18.180.0/24",
"104.18.181.0/24",
"104.18.182.0/24",
"104.18.183.0/24",
"104.18.184.0/24",
"104.18.185.0/24",
"104.18.186.0/24",
"104.18.187.0/24",
"104.18.188.0/24",
"104.18.189.0/24",
"104.18.190.0/24",
"104.18.191.0/24",
"104.18.192.0/24",
"104.18.193.0/24",
"104.18.194.0/24",
"104.18.195.0/24",
"104.18.196.0/24",
"104.18.197.0/24",
"104.18.198.0/24",
"104.18.199.0/24",
"104.18.200.0/24",
"104.18.201.0/24",
"104.18.202.0/24",
"104.18.203.0/24",
"104.18.204.0/24",
"104.18.205.0/24",
"104.18.206.0/24",
"104.18.207.0/24",
"104.18.208.0/24",
"104.18.209.0/24",
"104.18.210.0/24",
"104.18.211.0/24",
"104.18.212.0/24",
"104.18.213.0/24",
"104.18.214.0/24",
"104.18.215.0/24",
"104.18.216.0/24",
"104.18.217.0/24",
"104.18.218.0/24",
"104.18.219.0/24",
"104.18.220.0/24",
"104.18.221.0/24",
"104.18.222.0/24",
"104.18.223.0/24",
"104.18.224.0/24",
"104.18.225.0/24",
"104.18.226.0/24",
"104.18.227.0/24",
"104.18.228.0/24",
"104.18.229.0/24",
"104.18.230.0/24",
"104.18.231.0/24",
"104.18.232.0/24",
"104.18.233.0/24",
"104.18.234.0/24",
"104.18.235.0/24",
"104.18.236.0/24",
"104.18.237.0/24",
"104.18.238.0/24",
"104.18.239.0/24",
"104.18.240.0/24",
"104.18.241.0/24",
"104.18.242.0/24",
"104.18.243.0/24",
"104.18.244.0/24",
"104.18.245.0/24",
"104.18.246.0/24",
"104.18.247.0/24",
"104.18.248.0/24",
"104.18.249.0/24",
"104.18.250.0/24",
"104.18.251.0/24",
"104.18.252.0/24",
"104.18.253.0/24",
"104.18.254.0/24",
"104.18.255.0/24",
"104.19.0.0/24",
"104.19.1.0/24",
"104.19.2.0/24",
"104.19.3.0/24",
"104.19.4.0/24",
"104.19.5.0/24",
"104.19.6.0/24",
"104.19.7.0/24",
"104.19.8.0/24",
"104.19.9.0/24",
"104.19.10.0/24",
"104.19.11.0/24",
"104.19.12.0/24",
"104.19.13.0/24",
"104.19.14.0/24",
"104.19.15.0/24",
"104.19.16.0/24",
"104.19.17.0/24",
"104.19.18.0/24",
"104.19.19.0/24",
"104.19.20.0/24",
"104.19.21.0/24",
"104.19.22.0/24",
"104.19.23.0/24",
"104.19.24.0/24",
"104.19.25.0/24",
"104.19.26.0/24",
"104.19.27.0/24",
"104.19.28.0/24",
"104.19.29.0/24",
"104.19.30.0/24",
"104.19.31.0/24",
"104.19.32.0/24",
"104.19.33.0/24",
"104.19.34.0/24",
"104.19.35.0/24",
"104.19.36.0/24",
"104.19.37.0/24",
"104.19.38.0/24",
"104.19.39.0/24",
"104.19.40.0/24",
"104.19.41.0/24",
"104.19.42.0/24",
"104.19.43.0/24",
"104.19.44.0/24",
"104.19.45.0/24",
"104.19.46.0/24",
"104.19.47.0/24",
"104.19.48.0/24",
"104.19.49.0/24",
"104.19.50.0/24",
"104.19.51.0/24",
"104.19.52.0/24",
"104.19.53.0/24",
"104.19.54.0/24",
"104.19.55.0/24",
"104.19.56.0/24",
"104.19.57.0/24",
"104.19.58.0/24",
"104.19.59.0/24",
"104.19.60.0/24",
"104.19.61.0/24",
"104.19.62.0/24",
"104.19.63.0/24",
"104.19.64.0/24",
"104.19.65.0/24",
"104.19.66.0/24",
"104.19.67.0/24",
"104.19.68.0/24",
"104.19.69.0/24",
"104.19.70.0/24",
"104.19.71.0/24",
"104.19.72.0/24",
"104.19.73.0/24",
"104.19.74.0/24",
"104.19.75.0/24",
"104.19.76.0/24",
"104.19.77.0/24",
"104.19.78.0/24",
"104.19.79.0/24",
"104.19.80.0/24",
"104.19.81.0/24",
"104.19.82.0/24",
"104.19.83.0/24",
"104.19.84.0/24",
"104.19.85.0/24",
"104.19.86.0/24",
"104.19.87.0/24",
"104.19.88.0/24",
"104.19.89.0/24",
"104.19.90.0/24",
"104.19.91.0/24",
"104.19.92.0/24",
"104.19.93.0/24",
"104.19.94.0/24",
"104.19.95.0/24",
"104.19.96.0/24",
"104.19.97.0/24",
"104.19.98.0/24",
"104.19.99.0/24",
"104.19.100.0/24",
"104.19.101.0/24",
"104.19.102.0/24",
"104.19.103.0/24",
"104.19.104.0/24",
"104.19.105.0/24",
"104.19.106.0/24",
"104.19.107.0/24",
"104.19.108.0/24",
"104.19.109.0/24",
"104.19.110.0/24",
"104.19.111.0/24",
"104.19.112.0/24",
"104.19.113.0/24",
"104.19.114.0/24",
"104.19.115.0/24",
"104.19.116.0/24",
"104.19.117.0/24",
"104.19.118.0/24",
"104.19.119.0/24",
"104.19.120.0/24",
"104.19.121.0/24",
"104.19.122.0/24",
"104.19.123.0/24",
"104.19.124.0/24",
"104.19.125.0/24",
"104.19.126.0/24",
"104.19.127.0/24",
"104.19.128.0/24",
"104.19.129.0/24",
"104.19.130.0/24",
"104.19.131.0/24",
"104.19.132.0/24",
"104.19.133.0/24",
"104.19.134.0/24",
"104.19.135.0/24",
"104.19.136.0/24",
"104.19.137.0/24",
"104.19.138.0/24",
"104.19.139.0/24",
"104.19.140.0/24",
"104.19.141.0/24",
"104.19.142.0/24",
"104.19.143.0/24",
"104.19.144.0/24",
"104.19.145.0/24",
"104.19.146.0/24",
"104.19.147.0/24",
"104.19.148.0/24",
"104.19.149.0/24",
"104.19.150.0/24",
"104.19.151.0/24",
"104.19.152.0/24",
"104.19.153.0/24",
"104.19.154.0/24",
"104.19.155.0/24",
"104.19.156.0/24",
"104.19.157.0/24",
"104.19.158.0/24",
"104.19.159.0/24",
"104.19.160.0/24",
"104.19.161.0/24",
"104.19.162.0/24",
"104.19.163.0/24",
"104.19.164.0/24",
"104.19.165.0/24",
"104.19.166.0/24",
"104.19.167.0/24",
"104.19.168.0/24",
"104.19.169.0/24",
"104.19.170.0/24",
"104.19.171.0/24",
"104.19.172.0/24",
"104.19.173.0/24",
"104.19.174.0/24",
"104.19.175.0/24",
"104.19.176.0/24",
"104.19.177.0/24",
"104.19.178.0/24",
"104.19.179.0/24",
"104.19.180.0/24",
"104.19.181.0/24",
"104.19.182.0/24",
"104.19.183.0/24",
"104.19.184.0/24",
"104.19.185.0/24",
"104.19.186.0/24",
"104.19.187.0/24",
"104.19.188.0/24",
"104.19.189.0/24",
"104.19.190.0/24",
"104.19.191.0/24",
"104.19.192.0/24",
"104.19.193.0/24",
"104.19.194.0/24",
"104.19.195.0/24",
"104.19.196.0/24",
"104.19.197.0/24",
"104.19.198.0/24",
"104.19.199.0/24",
"104.19.200.0/24",
"104.19.201.0/24",
"104.19.202.0/24",
"104.19.203.0/24",
"104.19.204.0/24",
"104.19.205.0/24",
"104.19.206.0/24",
"104.19.207.0/24",
"104.19.208.0/24",
"104.19.209.0/24",
"104.19.210.0/24",
"104.19.211.0/24",
"104.19.212.0/24",
"104.19.213.0/24",
"104.19.214.0/24",
"104.19.215.0/24",
"104.19.216.0/24",
"104.19.217.0/24",
"104.19.218.0/24",
"104.19.219.0/24",
"104.19.220.0/24",
"104.19.221.0/24",
"104.19.222.0/24",
"104.19.223.0/24",
"104.19.224.0/24",
"104.19.225.0/24",
"104.19.226.0/24",
"104.19.227.0/24",
"104.19.228.0/24",
"104.19.229.0/24",
"104.19.230.0/24",
"104.19.231.0/24",
"104.19.232.0/24",
"104.19.233.0/24",
"104.19.234.0/24",
"104.19.235.0/24",
"104.19.236.0/24",
"104.19.237.0/24",
"104.19.238.0/24",
"104.19.239.0/24",
"104.19.240.0/24",
"104.19.241.0/24",
"104.19.242.0/24",
"104.19.243.0/24",
"104.19.244.0/24",
"104.19.245.0/24",
"104.19.246.0/24",
"104.19.247.0/24",
"104.19.248.0/24",
"104.19.249.0/24",
"104.19.250.0/24",
"104.19.251.0/24",
"104.19.252.0/24",
"104.19.253.0/24",
"104.19.254.0/24",
"104.19.255.0/24",
"104.20.0.0/24",
"104.20.1.0/24",
"104.20.2.0/24",
"104.20.3.0/24",
"104.20.4.0/24",
"104.20.5.0/24",
"104.20.6.0/24",
"104.20.7.0/24",
"104.20.8.0/24",
"104.20.9.0/24",
"104.20.10.0/24",
"104.20.11.0/24",
"104.20.12.0/24",
"104.20.13.0/24",
"104.20.14.0/24",
"104.20.15.0/24",
"104.20.16.0/24",
"104.20.17.0/24",
"104.20.18.0/24",
"104.20.19.0/24",
"104.20.20.0/24",
"104.20.21.0/24",
"104.20.22.0/24",
"104.20.23.0/24",
"104.20.24.0/24",
"104.20.25.0/24",
"104.20.26.0/24",
"104.20.27.0/24",
"104.20.28.0/24",
"104.20.29.0/24",
"104.20.30.0/24",
"104.20.31.0/24",
"104.20.32.0/24",
"104.20.33.0/24",
"104.20.34.0/24",
"104.20.35.0/24",
"104.20.36.0/24",
"104.20.37.0/24",
"104.20.38.0/24",
"104.20.39.0/24",
"104.20.40.0/24",
"104.20.41.0/24",
"104.20.42.0/24",
"104.20.43.0/24",
"104.20.44.0/24",
"104.20.45.0/24",
"104.20.46.0/24",
"104.20.47.0/24",
"104.20.48.0/24",
"104.20.49.0/24",
"104.20.50.0/24",
"104.20.51.0/24",
"104.20.52.0/24",
"104.20.53.0/24",
"104.20.54.0/24",
"104.20.55.0/24",
"104.20.56.0/24",
"104.20.57.0/24",
"104.20.58.0/24",
"104.20.59.0/24",
"104.20.60.0/24",
"104.20.61.0/24",
"104.20.62.0/24",
"104.20.63.0/24",
"104.20.64.0/24",
"104.20.65.0/24",
"104.20.66.0/24",
"104.20.67.0/24",
"104.20.68.0/24",
"104.20.69.0/24",
"104.20.70.0/24",
"104.20.71.0/24",
"104.20.72.0/24",
"104.20.73.0/24",
"104.20.74.0/24",
"104.20.75.0/24",
"104.20.76.0/24",
"104.20.77.0/24",
"104.20.78.0/24",
"104.20.79.0/24",
"104.20.80.0/24",
"104.20.81.0/24",
"104.20.82.0/24",
"104.20.83.0/24",
"104.20.84.0/24",
"104.20.85.0/24",
"104.20.86.0/24",
"104.20.87.0/24",
"104.20.88.0/24",
"104.20.89.0/24",
"104.20.90.0/24",
"104.20.91.0/24",
"104.20.92.0/24",
"104.20.93.0/24",
"104.20.94.0/24",
"104.20.95.0/24",
"104.20.96.0/24",
"104.20.97.0/24",
"104.20.98.0/24",
"104.20.99.0/24",
"104.20.100.0/24",
"104.20.101.0/24",
"104.20.102.0/24",
"104.20.103.0/24",
"104.20.104.0/24",
"104.20.105.0/24",
"104.20.106.0/24",
"104.20.107.0/24",
"104.20.108.0/24",
"104.20.109.0/24",
"104.20.110.0/24",
"104.20.111.0/24",
"104.20.112.0/24",
"104.20.113.0/24",
"104.20.114.0/24",
"104.20.115.0/24",
"104.20.116.0/24",
"104.20.117.0/24",
"104.20.118.0/24",
"104.20.119.0/24",
"104.20.120.0/24",
"104.20.121.0/24",
"104.20.122.0/24",
"104.20.123.0/24",
"104.20.124.0/24",
"104.20.125.0/24",
"104.20.126.0/24",
"104.20.127.0/24",
"104.20.128.0/24",
"104.20.129.0/24",
"104.20.130.0/24",
"104.20.131.0/24",
"104.20.132.0/24",
"104.20.133.0/24",
"104.20.134.0/24",
"104.20.135.0/24",
"104.20.136.0/24",
"104.20.137.0/24",
"104.20.138.0/24",
"104.20.139.0/24",
"104.20.140.0/24",
"104.20.141.0/24",
"104.20.142.0/24",
"104.20.143.0/24",
"104.20.144.0/24",
"104.20.145.0/24",
"104.20.146.0/24",
"104.20.147.0/24",
"104.20.148.0/24",
"104.20.149.0/24",
"104.20.150.0/24",
"104.20.151.0/24",
"104.20.152.0/24",
"104.20.153.0/24",
"104.20.154.0/24",
"104.20.155.0/24",
"104.20.156.0/24",
"104.20.157.0/24",
"104.20.158.0/24",
"104.20.159.0/24",
"104.20.160.0/24",
"104.20.161.0/24",
"104.20.162.0/24",
"104.20.163.0/24",
"104.20.164.0/24",
"104.20.165.0/24",
"104.20.166.0/24",
"104.20.167.0/24",
"104.20.168.0/24",
"104.20.169.0/24",
"104.20.170.0/24",
"104.20.171.0/24",
"104.20.172.0/24",
"104.20.173.0/24",
"104.20.174.0/24",
"104.20.175.0/24",
"104.20.176.0/24",
"104.20.177.0/24",
"104.20.178.0/24",
"104.20.179.0/24",
"104.20.180.0/24",
"104.20.181.0/24",
"104.20.182.0/24",
"104.20.183.0/24",
"104.20.184.0/24",
"104.20.185.0/24",
"104.20.186.0/24",
"104.20.187.0/24",
"104.20.188.0/24",
"104.20.189.0/24",
"104.20.190.0/24",
"104.20.191.0/24",
"104.20.192.0/24",
"104.20.193.0/24",
"104.20.194.0/24",
"104.20.195.0/24",
"104.20.196.0/24",
"104.20.197.0/24",
"104.20.198.0/24",
"104.20.199.0/24",
"104.20.200.0/24",
"104.20.201.0/24",
"104.20.202.0/24",
"104.20.203.0/24",
"104.20.204.0/24",
"104.20.205.0/24",
"104.20.206.0/24",
"104.20.207.0/24",
"104.20.208.0/24",
"104.20.209.0/24",
"104.20.210.0/24",
"104.20.211.0/24",
"104.20.212.0/24",
"104.20.213.0/24",
"104.20.214.0/24",
"104.20.215.0/24",
"104.20.216.0/24",
"104.20.217.0/24",
"104.20.218.0/24",
"104.20.219.0/24",
"104.20.220.0/24",
"104.20.221.0/24",
"104.20.222.0/24",
"104.20.223.0/24",
"104.20.224.0/24",
"104.20.225.0/24",
"104.20.226.0/24",
"104.20.227.0/24",
"104.20.228.0/24",
"104.20.229.0/24",
"104.20.230.0/24",
"104.20.231.0/24",
"104.20.232.0/24",
"104.20.233.0/24",
"104.20.234.0/24",
"104.20.235.0/24",
"104.20.236.0/24",
"104.20.237.0/24",
"104.20.238.0/24",
"104.20.239.0/24",
"104.20.240.0/24",
"104.20.241.0/24",
"104.20.242.0/24",
"104.20.243.0/24",
"104.20.244.0/24",
"104.20.245.0/24",
"104.20.246.0/24",
"104.20.247.0/24",
"104.20.248.0/24",
"104.20.249.0/24",
"104.20.250.0/24",
"104.20.251.0/24",
"104.20.252.0/24",
"104.20.253.0/24",
"104.20.254.0/24",
"104.20.255.0/24",
"104.21.0.0/24",
"104.21.1.0/24",
"104.21.2.0/24",
"104.21.3.0/24",
"104.21.4.0/24",
"104.21.5.0/24",
"104.21.6.0/24",
"104.21.7.0/24",
"104.21.8.0/24",
"104.21.9.0/24",
"104.21.10.0/24",
"104.21.11.0/24",
"104.21.12.0/24",
"104.21.13.0/24",
"104.21.14.0/24",
"104.21.15.0/24",
"104.21.16.0/24",
"104.21.17.0/24",
"104.21.18.0/24",
"104.21.19.0/24",
"104.21.20.0/24",
"104.21.21.0/24",
"104.21.22.0/24",
"104.21.23.0/24",
"104.21.24.0/24",
"104.21.25.0/24",
"104.21.26.0/24",
"104.21.27.0/24",
"104.21.28.0/24",
"104.21.29.0/24",
"104.21.30.0/24",
"104.21.31.0/24",
"104.21.32.0/24",
"104.21.33.0/24",
"104.21.34.0/24",
"104.21.35.0/24",
"104.21.36.0/24",
"104.21.37.0/24",
"104.21.38.0/24",
"104.21.39.0/24",
"104.21.40.0/24",
"104.21.41.0/24",
"104.21.42.0/24",
"104.21.43.0/24",
"104.21.44.0/24",
"104.21.45.0/24",
"104.21.46.0/24",
"104.21.47.0/24",
"104.21.48.0/24",
"104.21.49.0/24",
"104.21.50.0/24",
"104.21.51.0/24",
"104.21.52.0/24",
"104.21.53.0/24",
"104.21.54.0/24",
"104.21.55.0/24",
"104.21.56.0/24",
"104.21.57.0/24",
"104.21.58.0/24",
"104.21.59.0/24",
"104.21.60.0/24",
"104.21.61.0/24",
"104.21.62.0/24",
"104.21.63.0/24",
"104.21.64.0/24",
"104.21.65.0/24",
"104.21.66.0/24",
"104.21.67.0/24",
"104.21.68.0/24",
"104.21.69.0/24",
"104.21.70.0/24",
"104.21.71.0/24",
"104.21.72.0/24",
"104.21.73.0/24",
"104.21.74.0/24",
"104.21.75.0/24",
"104.21.76.0/24",
"104.21.77.0/24",
"104.21.78.0/24",
"104.21.79.0/24",
"104.21.80.0/24",
"104.21.81.0/24",
"104.21.82.0/24",
"104.21.83.0/24",
"104.21.84.0/24",
"104.21.85.0/24",
"104.21.86.0/24",
"104.21.87.0/24",
"104.21.88.0/24",
"104.21.89.0/24",
"104.21.90.0/24",
"104.21.91.0/24",
"104.21.92.0/24",
"104.21.93.0/24",
"104.21.94.0/24",
"104.21.95.0/24",
"104.21.96.0/24",
"104.21.97.0/24",
"104.21.98.0/24",
"104.21.99.0/24",
"104.21.100.0/24",
"104.21.101.0/24",
"104.21.102.0/24",
"104.21.103.0/24",
"104.21.104.0/24",
"104.21.105.0/24",
"104.21.106.0/24",
"104.21.107.0/24",
"104.21.108.0/24",
"104.21.109.0/24",
"104.21.110.0/24",
"104.21.111.0/24",
"104.21.112.0/24",
"104.21.113.0/24",
"104.21.114.0/24",
"104.21.115.0/24",
"104.21.116.0/24",
"104.21.117.0/24",
"104.21.118.0/24",
"104.21.119.0/24",
"104.21.120.0/24",
"104.21.121.0/24",
"104.21.122.0/24",
"104.21.123.0/24",
"104.21.124.0/24",
"104.21.125.0/24",
"104.21.126.0/24",
"104.21.127.0/24",
"104.21.128.0/24",
"104.21.129.0/24",
"104.21.130.0/24",
"104.21.131.0/24",
"104.21.132.0/24",
"104.21.133.0/24",
"104.21.134.0/24",
"104.21.135.0/24",
"104.21.136.0/24",
"104.21.137.0/24",
"104.21.138.0/24",
"104.21.139.0/24",
"104.21.140.0/24",
"104.21.141.0/24",
"104.21.142.0/24",
"104.21.143.0/24",
"104.21.144.0/24",
"104.21.145.0/24",
"104.21.146.0/24",
"104.21.147.0/24",
"104.21.148.0/24",
"104.21.149.0/24",
"104.21.150.0/24",
"104.21.151.0/24",
"104.21.152.0/24",
"104.21.153.0/24",
"104.21.154.0/24",
"104.21.155.0/24",
"104.21.156.0/24",
"104.21.157.0/24",
"104.21.158.0/24",
"104.21.159.0/24",
"104.21.160.0/24",
"104.21.161.0/24",
"104.21.162.0/24",
"104.21.163.0/24",
"104.21.164.0/24",
"104.21.165.0/24",
"104.21.166.0/24",
"104.21.167.0/24",
"104.21.168.0/24",
"104.21.169.0/24",
"104.21.170.0/24",
"104.21.171.0/24",
"104.21.172.0/24",
"104.21.173.0/24",
"104.21.174.0/24",
"104.21.175.0/24",
"104.21.176.0/24",
"104.21.177.0/24",
"104.21.178.0/24",
"104.21.179.0/24",
"104.21.180.0/24",
"104.21.181.0/24",
"104.21.182.0/24",
"104.21.183.0/24",
"104.21.184.0/24",
"104.21.185.0/24",
"104.21.186.0/24",
"104.21.187.0/24",
"104.21.188.0/24",
"104.21.189.0/24",
"104.21.190.0/24",
"104.21.191.0/24",
"104.21.192.0/24",
"104.21.193.0/24",
"104.21.194.0/24",
"104.21.195.0/24",
"104.21.196.0/24",
"104.21.197.0/24",
"104.21.198.0/24",
"104.21.199.0/24",
"104.21.200.0/24",
"104.21.201.0/24",
"104.21.202.0/24",
"104.21.203.0/24",
"104.21.204.0/24",
"104.21.205.0/24",
"104.21.206.0/24",
"104.21.207.0/24",
"104.21.208.0/24",
"104.21.209.0/24",
"104.21.210.0/24",
"104.21.211.0/24",
"104.21.212.0/24",
"104.21.213.0/24",
"104.21.214.0/24",
"104.21.215.0/24",
"104.21.216.0/24",
"104.21.217.0/24",
"104.21.218.0/24",
"104.21.219.0/24",
"104.21.220.0/24",
"104.21.221.0/24",
"104.21.222.0/24",
"104.21.223.0/24",
"104.21.224.0/24",
"104.21.225.0/24",
"104.21.226.0/24",
"104.21.227.0/24",
"104.21.228.0/24",
"104.21.229.0/24",
"104.21.230.0/24",
"104.21.231.0/24",
"104.21.232.0/24",
"104.21.233.0/24",
"104.21.234.0/24",
"104.21.235.0/24",
"104.21.236.0/24",
"104.21.237.0/24",
"104.21.238.0/24",
"104.21.239.0/24",
"104.21.240.0/24",
"104.21.241.0/24",
"104.21.242.0/24",
"104.21.243.0/24",
"104.21.244.0/24",
"104.21.245.0/24",
"104.21.246.0/24",
"104.21.247.0/24",
"104.21.248.0/24",
"104.21.249.0/24",
"104.21.250.0/24",
"104.21.251.0/24",
"104.21.252.0/24",
"104.21.253.0/24",
"104.21.254.0/24",
"104.21.255.0/24",
"104.22.0.0/24",
"104.22.1.0/24",
"104.22.2.0/24",
"104.22.3.0/24",
"104.22.4.0/24",
"104.22.5.0/24",
"104.22.6.0/24",
"104.22.7.0/24",
"104.22.8.0/24",
"104.22.9.0/24",
"104.22.10.0/24",
"104.22.11.0/24",
"104.22.12.0/24",
"104.22.13.0/24",
"104.22.14.0/24",
"104.22.15.0/24",
"104.22.16.0/24",
"104.22.17.0/24",
"104.22.18.0/24",
"104.22.19.0/24",
"104.22.20.0/24",
"104.22.21.0/24",
"104.22.22.0/24",
"104.22.23.0/24",
"104.22.24.0/24",
"104.22.25.0/24",
"104.22.26.0/24",
"104.22.27.0/24",
"104.22.28.0/24",
"104.22.29.0/24",
"104.22.30.0/24",
"104.22.31.0/24",
"104.22.32.0/24",
"104.22.33.0/24",
"104.22.34.0/24",
"104.22.35.0/24",
"104.22.36.0/24",
"104.22.37.0/24",
"104.22.38.0/24",
"104.22.39.0/24",
"104.22.40.0/24",
"104.22.41.0/24",
"104.22.42.0/24",
"104.22.43.0/24",
"104.22.44.0/24",
"104.22.45.0/24",
"104.22.46.0/24",
"104.22.47.0/24",
"104.22.48.0/24",
"104.22.49.0/24",
"104.22.50.0/24",
"104.22.51.0/24",
"104.22.52.0/24",
"104.22.53.0/24",
"104.22.54.0/24",
"104.22.55.0/24",
"104.22.56.0/24",
"104.22.57.0/24",
"104.22.58.0/24",
"104.22.59.0/24",
"104.22.60.0/24",
"104.22.61.0/24",
"104.22.62.0/24",
"104.22.63.0/24",
"104.22.64.0/24",
"104.22.65.0/24",
"104.22.66.0/24",
"104.22.67.0/24",
"104.22.68.0/24",
"104.22.69.0/24",
"104.22.70.0/24",
"104.22.71.0/24",
"104.22.72.0/24",
"104.22.73.0/24",
"104.22.74.0/24",
"104.22.75.0/24",
"104.22.76.0/24",
"104.22.77.0/24",
"104.22.78.0/24",
"104.22.79.0/24",
"104.22.80.0/24",
"104.22.81.0/24",
"104.22.82.0/24",
"104.22.83.0/24",
"104.22.84.0/24",
"104.22.85.0/24",
"104.22.86.0/24",
"104.22.87.0/24",
"104.22.88.0/24",
"104.22.89.0/24",
"104.22.90.0/24",
"104.22.91.0/24",
"104.22.92.0/24",
"104.22.93.0/24",
"104.22.94.0/24",
"104.22.95.0/24",
"104.22.96.0/24",
"104.22.97.0/24",
"104.22.98.0/24",
"104.22.99.0/24",
"104.22.100.0/24",
"104.22.101.0/24",
"104.22.102.0/24",
"104.22.103.0/24",
"104.22.104.0/24",
"104.22.105.0/24",
"104.22.106.0/24",
"104.22.107.0/24",
"104.22.108.0/24",
"104.22.109.0/24",
"104.22.110.0/24",
"104.22.111.0/24",
"104.22.112.0/24",
"104.22.113.0/24",
"104.22.114.0/24",
"104.22.115.0/24",
"104.22.116.0/24",
"104.22.117.0/24",
"104.22.118.0/24",
"104.22.119.0/24",
"104.22.120.0/24",
"104.22.121.0/24",
"104.22.122.0/24",
"104.22.123.0/24",
"104.22.124.0/24",
"104.22.125.0/24",
"104.22.126.0/24",
"104.22.127.0/24",
"104.22.128.0/24",
"104.22.129.0/24",
"104.22.130.0/24",
"104.22.131.0/24",
"104.22.132.0/24",
"104.22.133.0/24",
"104.22.134.0/24",
"104.22.135.0/24",
"104.22.136.0/24",
"104.22.137.0/24",
"104.22.138.0/24",
"104.22.139.0/24",
"104.22.140.0/24",
"104.22.141.0/24",
"104.22.142.0/24",
"104.22.143.0/24",
"104.22.144.0/24",
"104.22.145.0/24",
"104.22.146.0/24",
"104.22.147.0/24",
"104.22.148.0/24",
"104.22.149.0/24",
"104.22.150.0/24",
"104.22.151.0/24",
"104.22.152.0/24",
"104.22.153.0/24",
"104.22.154.0/24",
"104.22.155.0/24",
"104.22.156.0/24",
"104.22.157.0/24",
"104.22.158.0/24",
"104.22.159.0/24",
"104.22.160.0/24",
"104.22.161.0/24",
"104.22.162.0/24",
"104.22.163.0/24",
"104.22.164.0/24",
"104.22.165.0/24",
"104.22.166.0/24",
"104.22.167.0/24",
"104.22.168.0/24",
"104.22.169.0/24",
"104.22.170.0/24",
"104.22.171.0/24",
"104.22.172.0/24",
"104.22.173.0/24",
"104.22.174.0/24",
"104.22.175.0/24",
"104.22.176.0/24",
"104.22.177.0/24",
"104.22.178.0/24",
"104.22.179.0/24",
"104.22.180.0/24",
"104.22.181.0/24",
"104.22.182.0/24",
"104.22.183.0/24",
"104.22.184.0/24",
"104.22.185.0/24",
"104.22.186.0/24",
"104.22.187.0/24",
"104.22.188.0/24",
"104.22.189.0/24",
"104.22.190.0/24",
"104.22.191.0/24",
"104.22.192.0/24",
"104.22.193.0/24",
"104.22.194.0/24",
"104.22.195.0/24",
"104.22.196.0/24",
"104.22.197.0/24",
"104.22.198.0/24",
"104.22.199.0/24",
"104.22.200.0/24",
"104.22.201.0/24",
"104.22.202.0/24",
"104.22.203.0/24",
"104.22.204.0/24",
"104.22.205.0/24",
"104.22.206.0/24",
"104.22.207.0/24",
"104.22.208.0/24",
"104.22.209.0/24",
"104.22.210.0/24",
"104.22.211.0/24",
"104.22.212.0/24",
"104.22.213.0/24",
"104.22.214.0/24",
"104.22.215.0/24",
"104.22.216.0/24",
"104.22.217.0/24",
"104.22.218.0/24",
"104.22.219.0/24",
"104.22.220.0/24",
"104.22.221.0/24",
"104.22.222.0/24",
"104.22.223.0/24",
"104.22.224.0/24",
"104.22.225.0/24",
"104.22.226.0/24",
"104.22.227.0/24",
"104.22.228.0/24",
"104.22.229.0/24",
"104.22.230.0/24",
"104.22.231.0/24",
"104.22.232.0/24",
"104.22.233.0/24",
"104.22.234.0/24",
"104.22.235.0/24",
"104.22.236.0/24",
"104.22.237.0/24",
"104.22.238.0/24",
"104.22.239.0/24",
"104.22.240.0/24",
"104.22.241.0/24",
"104.22.242.0/24",
"104.22.243.0/24",
"104.22.244.0/24",
"104.22.245.0/24",
"104.22.246.0/24",
"104.22.247.0/24",
"104.22.248.0/24",
"104.22.249.0/24",
"104.22.250.0/24",
"104.22.251.0/24",
"104.22.252.0/24",
"104.22.253.0/24",
"104.22.254.0/24",
"104.22.255.0/24",
"104.23.0.0/24",
"104.23.1.0/24",
"104.23.2.0/24",
"104.23.3.0/24",
"104.23.4.0/24",
"104.23.5.0/24",
"104.23.6.0/24",
"104.23.7.0/24",
"104.23.8.0/24",
"104.23.9.0/24",
"104.23.10.0/24",
"104.23.11.0/24",
"104.23.12.0/24",
"104.23.13.0/24",
"104.23.14.0/24",
"104.23.15.0/24",
"104.23.16.0/24",
"104.23.17.0/24",
"104.23.18.0/24",
"104.23.19.0/24",
"104.23.20.0/24",
"104.23.21.0/24",
"104.23.22.0/24",
"104.23.23.0/24",
"104.23.24.0/24",
"104.23.25.0/24",
"104.23.26.0/24",
"104.23.27.0/24",
"104.23.28.0/24",
"104.23.29.0/24",
"104.23.30.0/24",
"104.23.31.0/24",
"104.23.32.0/24",
"104.23.33.0/24",
"104.23.34.0/24",
"104.23.35.0/24",
"104.23.36.0/24",
"104.23.37.0/24",
"104.23.38.0/24",
"104.23.39.0/24",
"104.23.40.0/24",
"104.23.41.0/24",
"104.23.42.0/24",
"104.23.43.0/24",
"104.23.44.0/24",
"104.23.45.0/24",
"104.23.46.0/24",
"104.23.47.0/24",
"104.23.48.0/24",
"104.23.49.0/24",
"104.23.50.0/24",
"104.23.51.0/24",
"104.23.52.0/24",
"104.23.53.0/24",
"104.23.54.0/24",
"104.23.55.0/24",
"104.23.56.0/24",
"104.23.57.0/24",
"104.23.58.0/24",
"104.23.59.0/24",
"104.23.60.0/24",
"104.23.61.0/24",
"104.23.62.0/24",
"104.23.63.0/24",
"104.23.64.0/24",
"104.23.65.0/24",
"104.23.66.0/24",
"104.23.67.0/24",
"104.23.68.0/24",
"104.23.69.0/24",
"104.23.70.0/24",
"104.23.71.0/24",
"104.23.72.0/24",
"104.23.73.0/24",
"104.23.74.0/24",
"104.23.75.0/24",
"104.23.76.0/24",
"104.23.77.0/24",
"104.23.78.0/24",
"104.23.79.0/24",
"104.23.80.0/24",
"104.23.81.0/24",
"104.23.82.0/24",
"104.23.83.0/24",
"104.23.84.0/24",
"104.23.85.0/24",
"104.23.86.0/24",
"104.23.87.0/24",
"104.23.88.0/24",
"104.23.89.0/24",
"104.23.90.0/24",
"104.23.91.0/24",
"104.23.92.0/24",
"104.23.93.0/24",
"104.23.94.0/24",
"104.23.95.0/24",
"104.23.96.0/24",
"104.23.97.0/24",
"104.23.98.0/24",
"104.23.99.0/24",
"104.23.100.0/24",
"104.23.101.0/24",
"104.23.102.0/24",
"104.23.103.0/24",
"104.23.104.0/24",
"104.23.105.0/24",
"104.23.106.0/24",
"104.23.107.0/24",
"104.23.108.0/24",
"104.23.109.0/24",
"104.23.110.0/24",
"104.23.111.0/24",
"104.23.112.0/24",
"104.23.113.0/24",
"104.23.114.0/24",
"104.23.115.0/24",
"104.23.116.0/24",
"104.23.117.0/24",
"104.23.118.0/24",
"104.23.119.0/24",
"104.23.120.0/24",
"104.23.121.0/24",
"104.23.122.0/24",
"104.23.123.0/24",
"104.23.124.0/24",
"104.23.125.0/24",
"104.23.126.0/24",
"104.23.127.0/24",
"104.23.128.0/24",
"104.23.129.0/24",
"104.23.130.0/24",
"104.23.131.0/24",
"104.23.132.0/24",
"104.23.133.0/24",
"104.23.134.0/24",
"104.23.135.0/24",
"104.23.136.0/24",
"104.23.137.0/24",
"104.23.138.0/24",
"104.23.139.0/24",
"104.23.140.0/24",
"104.23.141.0/24",
"104.23.142.0/24",
"104.23.143.0/24",
"104.23.144.0/24",
"104.23.145.0/24",
"104.23.146.0/24",
"104.23.147.0/24",
"104.23.148.0/24",
"104.23.149.0/24",
"104.23.150.0/24",
"104.23.151.0/24",
"104.23.152.0/24",
"104.23.153.0/24",
"104.23.154.0/24",
"104.23.155.0/24",
"104.23.156.0/24",
"104.23.157.0/24",
"104.23.158.0/24",
"104.23.159.0/24",
"104.23.160.0/24",
"104.23.161.0/24",
"104.23.162.0/24",
"104.23.163.0/24",
"104.23.164.0/24",
"104.23.165.0/24",
"104.23.166.0/24",
"104.23.167.0/24",
"104.23.168.0/24",
"104.23.169.0/24",
"104.23.170.0/24",
"104.23.171.0/24",
"104.23.172.0/24",
"104.23.173.0/24",
"104.23.174.0/24",
"104.23.175.0/24",
"104.23.176.0/24",
"104.23.177.0/24",
"104.23.178.0/24",
"104.23.179.0/24",
"104.23.180.0/24",
"104.23.181.0/24",
"104.23.182.0/24",
"104.23.183.0/24",
"104.23.184.0/24",
"104.23.185.0/24",
"104.23.186.0/24",
"104.23.187.0/24",
"104.23.188.0/24",
"104.23.189.0/24",
"104.23.190.0/24",
"104.23.191.0/24",
"104.23.192.0/24",
"104.23.193.0/24",
"104.23.194.0/24",
"104.23.195.0/24",
"104.23.196.0/24",
"104.23.197.0/24",
"104.23.198.0/24",
"104.23.199.0/24",
"104.23.200.0/24",
"104.23.201.0/24",
"104.23.202.0/24",
"104.23.203.0/24",
"104.23.204.0/24",
"104.23.205.0/24",
"104.23.206.0/24",
"104.23.207.0/24",
"104.23.208.0/24",
"104.23.209.0/24",
"104.23.210.0/24",
"104.23.211.0/24",
"104.23.212.0/24",
"104.23.213.0/24",
"104.23.214.0/24",
"104.23.215.0/24",
"104.23.216.0/24",
"104.23.217.0/24",
"104.23.218.0/24",
"104.23.219.0/24",
"104.23.220.0/24",
"104.23.221.0/24",
"104.23.222.0/24",
"104.23.223.0/24",
"104.23.224.0/24",
"104.23.225.0/24",
"104.23.226.0/24",
"104.23.227.0/24",
"104.23.228.0/24",
"104.23.229.0/24",
"104.23.230.0/24",
"104.23.231.0/24",
"104.23.232.0/24",
"104.23.233.0/24",
"104.23.234.0/24",
"104.23.235.0/24",
"104.23.236.0/24",
"104.23.237.0/24",
"104.23.238.0/24",
"104.23.239.0/24",
"104.23.240.0/24",
"104.23.241.0/24",
"104.23.242.0/24",
"104.23.243.0/24",
"104.23.244.0/24",
"104.23.245.0/24",
"104.23.246.0/24",
"104.23.247.0/24",
"104.23.248.0/24",
"104.23.249.0/24",
"104.23.250.0/24",
"104.23.251.0/24",
"104.23.252.0/24",
"104.23.253.0/24",
"104.23.254.0/24",
"104.23.255.0/24",
"104.24.0.0/24",
"104.24.1.0/24",
"104.24.2.0/24",
"104.24.3.0/24",
"104.24.4.0/24",
"104.24.5.0/24",
"104.24.6.0/24",
"104.24.7.0/24",
"104.24.8.0/24",
"104.24.9.0/24",
"104.24.10.0/24",
"104.24.11.0/24",
"104.24.12.0/24",
"104.24.13.0/24",
"104.24.14.0/24",
"104.24.15.0/24",
"104.24.16.0/24",
"104.24.17.0/24",
"104.24.18.0/24",
"104.24.19.0/24",
"104.24.20.0/24",
"104.24.21.0/24",
"104.24.22.0/24",
"104.24.23.0/24",
"104.24.24.0/24",
"104.24.25.0/24",
"104.24.26.0/24",
"104.24.27.0/24",
"104.24.28.0/24",
"104.24.29.0/24",
"104.24.30.0/24",
"104.24.31.0/24",
"104.24.32.0/24",
"104.24.33.0/24",
"104.24.34.0/24",
"104.24.35.0/24",
"104.24.36.0/24",
"104.24.37.0/24",
"104.24.38.0/24",
"104.24.39.0/24",
"104.24.40.0/24",
"104.24.41.0/24",
"104.24.42.0/24",
"104.24.43.0/24",
"104.24.44.0/24",
"104.24.45.0/24",
"104.24.46.0/24",
"104.24.47.0/24",
"104.24.48.0/24",
"104.24.49.0/24",
"104.24.50.0/24",
"104.24.51.0/24",
"104.24.52.0/24",
"104.24.53.0/24",
"104.24.54.0/24",
"104.24.55.0/24",
"104.24.56.0/24",
"104.24.57.0/24",
"104.24.58.0/24",
"104.24.59.0/24",
"104.24.60.0/24",
"104.24.61.0/24",
"104.24.62.0/24",
"104.24.63.0/24",
"104.24.64.0/24",
"104.24.65.0/24",
"104.24.66.0/24",
"104.24.67.0/24",
"104.24.68.0/24",
"104.24.69.0/24",
"104.24.70.0/24",
"104.24.71.0/24",
"104.24.72.0/24",
"104.24.73.0/24",
"104.24.74.0/24",
"104.24.75.0/24",
"104.24.76.0/24",
"104.24.77.0/24",
"104.24.78.0/24",
"104.24.79.0/24",
"104.24.80.0/24",
"104.24.81.0/24",
"104.24.82.0/24",
"104.24.83.0/24",
"104.24.84.0/24",
"104.24.85.0/24",
"104.24.86.0/24",
"104.24.87.0/24",
"104.24.88.0/24",
"104.24.89.0/24",
"104.24.90.0/24",
"104.24.91.0/24",
"104.24.92.0/24",
"104.24.93.0/24",
"104.24.94.0/24",
"104.24.95.0/24",
"104.24.96.0/24",
"104.24.97.0/24",
"104.24.98.0/24",
"104.24.99.0/24",
"104.24.100.0/24",
"104.24.101.0/24",
"104.24.102.0/24",
"104.24.103.0/24",
"104.24.104.0/24",
"104.24.105.0/24",
"104.24.106.0/24",
"104.24.107.0/24",
"104.24.108.0/24",
"104.24.109.0/24",
"104.24.110.0/24",
"104.24.111.0/24",
"104.24.112.0/24",
"104.24.113.0/24",
"104.24.114.0/24",
"104.24.115.0/24",
"104.24.116.0/24",
"104.24.117.0/24",
"104.24.118.0/24",
"104.24.119.0/24",
"104.24.120.0/24",
"104.24.121.0/24",
"104.24.122.0/24",
"104.24.123.0/24",
"104.24.124.0/24",
"104.24.125.0/24",
"104.24.126.0/24",
"104.24.127.0/24",
"104.24.128.0/24",
"104.24.129.0/24",
"104.24.130.0/24",
"104.24.131.0/24",
"104.24.132.0/24",
"104.24.133.0/24",
"104.24.134.0/24",
"104.24.135.0/24",
"104.24.136.0/24",
"104.24.137.0/24",
"104.24.138.0/24",
"104.24.139.0/24",
"104.24.140.0/24",
"104.24.141.0/24",
"104.24.142.0/24",
"104.24.143.0/24",
"104.24.144.0/24",
"104.24.145.0/24",
"104.24.146.0/24",
"104.24.147.0/24",
"104.24.148.0/24",
"104.24.149.0/24",
"104.24.150.0/24",
"104.24.151.0/24",
"104.24.152.0/24",
"104.24.153.0/24",
"104.24.154.0/24",
"104.24.155.0/24",
"104.24.156.0/24",
"104.24.157.0/24",
"104.24.158.0/24",
"104.24.159.0/24",
"104.24.160.0/24",
"104.24.161.0/24",
"104.24.162.0/24",
"104.24.163.0/24",
"104.24.164.0/24",
"104.24.165.0/24",
"104.24.166.0/24",
"104.24.167.0/24",
"104.24.168.0/24",
"104.24.169.0/24",
"104.24.170.0/24",
"104.24.171.0/24",
"104.24.172.0/24",
"104.24.173.0/24",
"104.24.174.0/24",
"104.24.175.0/24",
"104.24.176.0/24",
"104.24.177.0/24",
"104.24.178.0/24",
"104.24.179.0/24",
"104.24.180.0/24",
"104.24.181.0/24",
"104.24.182.0/24",
"104.24.183.0/24",
"104.24.184.0/24",
"104.24.185.0/24",
"104.24.186.0/24",
"104.24.187.0/24",
"104.24.188.0/24",
"104.24.189.0/24",
"104.24.190.0/24",
"104.24.191.0/24",
"104.24.192.0/24",
"104.24.193.0/24",
"104.24.194.0/24",
"104.24.195.0/24",
"104.24.196.0/24",
"104.24.197.0/24",
"104.24.198.0/24",
"104.24.199.0/24",
"104.24.200.0/24",
"104.24.201.0/24",
"104.24.202.0/24",
"104.24.203.0/24",
"104.24.204.0/24",
"104.24.205.0/24",
"104.24.206.0/24",
"104.24.207.0/24",
"104.24.208.0/24",
"104.24.209.0/24",
"104.24.210.0/24",
"104.24.211.0/24",
"104.24.212.0/24",
"104.24.213.0/24",
"104.24.214.0/24",
"104.24.215.0/24",
"104.24.216.0/24",
"104.24.217.0/24",
"104.24.218.0/24",
"104.24.219.0/24",
"104.24.220.0/24",
"104.24.221.0/24",
"104.24.222.0/24",
"104.24.223.0/24",
"104.24.224.0/24",
"104.24.225.0/24",
"104.24.226.0/24",
"104.24.227.0/24",
"104.24.228.0/24",
"104.24.229.0/24",
"104.24.230.0/24",
"104.24.231.0/24",
"104.24.232.0/24",
"104.24.233.0/24",
"104.24.234.0/24",
"104.24.235.0/24",
"104.24.236.0/24",
"104.24.237.0/24",
"104.24.238.0/24",
"104.24.239.0/24",
"104.24.240.0/24",
"104.24.241.0/24",
"104.24.242.0/24",
"104.24.243.0/24",
"104.24.244.0/24",
"104.24.245.0/24",
"104.24.246.0/24",
"104.24.247.0/24",
"104.24.248.0/24",
"104.24.249.0/24",
"104.24.250.0/24",
"104.24.251.0/24",
"104.24.252.0/24",
"104.24.253.0/24",
"104.24.254.0/24",
"104.24.255.0/24",
"104.25.0.0/24",
"104.25.1.0/24",
"104.25.2.0/24",
"104.25.3.0/24",
"104.25.4.0/24",
"104.25.5.0/24",
"104.25.6.0/24",
"104.25.7.0/24",
"104.25.8.0/24",
"104.25.9.0/24",
"104.25.10.0/24",
"104.25.11.0/24",
"104.25.12.0/24",
"104.25.13.0/24",
"104.25.14.0/24",
"104.25.15.0/24",
"104.25.16.0/24",
"104.25.17.0/24",
"104.25.18.0/24",
"104.25.19.0/24",
"104.25.20.0/24",
"104.25.21.0/24",
"104.25.22.0/24",
"104.25.23.0/24",
"104.25.24.0/24",
"104.25.25.0/24",
"104.25.26.0/24",
"104.25.27.0/24",
"104.25.28.0/24",
"104.25.29.0/24",
"104.25.30.0/24",
"104.25.31.0/24",
"104.25.32.0/24",
"104.25.33.0/24",
"104.25.34.0/24",
"104.25.35.0/24",
"104.25.36.0/24",
"104.25.37.0/24",
"104.25.38.0/24",
"104.25.39.0/24",
"104.25.40.0/24",
"104.25.41.0/24",
"104.25.42.0/24",
"104.25.43.0/24",
"104.25.44.0/24",
"104.25.45.0/24",
"104.25.46.0/24",
"104.25.47.0/24",
"104.25.48.0/24",
"104.25.49.0/24",
"104.25.50.0/24",
"104.25.51.0/24",
"104.25.52.0/24",
"104.25.53.0/24",
"104.25.54.0/24",
"104.25.55.0/24",
"104.25.56.0/24",
"104.25.57.0/24",
"104.25.58.0/24",
"104.25.59.0/24",
"104.25.60.0/24",
"104.25.61.0/24",
"104.25.62.0/24",
"104.25.63.0/24",
"104.25.64.0/24",
"104.25.65.0/24",
"104.25.66.0/24",
"104.25.67.0/24",
"104.25.68.0/24",
"104.25.69.0/24",
"104.25.70.0/24",
"104.25.71.0/24",
"104.25.72.0/24",
"104.25.73.0/24",
"104.25.74.0/24",
"104.25.75.0/24",
"104.25.76.0/24",
"104.25.77.0/24",
"104.25.78.0/24",
"104.25.79.0/24",
"104.25.80.0/24",
"104.25.81.0/24",
"104.25.82.0/24",
"104.25.83.0/24",
"104.25.84.0/24",
"104.25.85.0/24",
"104.25.86.0/24",
"104.25.87.0/24",
"104.25.88.0/24",
"104.25.89.0/24",
"104.25.90.0/24",
"104.25.91.0/24",
"104.25.92.0/24",
"104.25.93.0/24",
"104.25.94.0/24",
"104.25.95.0/24",
"104.25.96.0/24",
"104.25.97.0/24",
"104.25.98.0/24",
"104.25.99.0/24",
"104.25.100.0/24",
"104.25.101.0/24",
"104.25.102.0/24",
"104.25.103.0/24",
"104.25.104.0/24",
"104.25.105.0/24",
"104.25.106.0/24",
"104.25.107.0/24",
"104.25.108.0/24",
"104.25.109.0/24",
"104.25.110.0/24",
"104.25.111.0/24",
"104.25.112.0/24",
"104.25.113.0/24",
"104.25.114.0/24",
"104.25.115.0/24",
"104.25.116.0/24",
"104.25.117.0/24",
"104.25.118.0/24",
"104.25.119.0/24",
"104.25.120.0/24",
"104.25.121.0/24",
"104.25.122.0/24",
"104.25.123.0/24",
"104.25.124.0/24",
"104.25.125.0/24",
"104.25.126.0/24",
"104.25.127.0/24",
"104.25.128.0/24",
"104.25.129.0/24",
"104.25.130.0/24",
"104.25.131.0/24",
"104.25.132.0/24",
"104.25.133.0/24",
"104.25.134.0/24",
"104.25.135.0/24",
"104.25.136.0/24",
"104.25.137.0/24",
"104.25.138.0/24",
"104.25.139.0/24",
"104.25.140.0/24",
"104.25.141.0/24",
"104.25.142.0/24",
"104.25.143.0/24",
"104.25.144.0/24",
"104.25.145.0/24",
"104.25.146.0/24",
"104.25.147.0/24",
"104.25.148.0/24",
"104.25.149.0/24",
"104.25.150.0/24",
"104.25.151.0/24",
"104.25.152.0/24",
"104.25.153.0/24",
"104.25.154.0/24",
"104.25.155.0/24",
"104.25.156.0/24",
"104.25.157.0/24",
"104.25.158.0/24",
"104.25.159.0/24",
"104.25.160.0/24",
"104.25.161.0/24",
"104.25.162.0/24",
"104.25.163.0/24",
"104.25.164.0/24",
"104.25.165.0/24",
"104.25.166.0/24",
"104.25.167.0/24",
"104.25.168.0/24",
"104.25.169.0/24",
"104.25.170.0/24",
"104.25.171.0/24",
"104.25.172.0/24",
"104.25.173.0/24",
"104.25.174.0/24",
"104.25.175.0/24",
"104.25.176.0/24",
"104.25.177.0/24",
"104.25.178.0/24",
"104.25.179.0/24",
"104.25.180.0/24",
"104.25.181.0/24",
"104.25.182.0/24",
"104.25.183.0/24",
"104.25.184.0/24",
"104.25.185.0/24",
"104.25.186.0/24",
"104.25.187.0/24",
"104.25.188.0/24",
"104.25.189.0/24",
"104.25.190.0/24",
"104.25.191.0/24",
"104.25.192.0/24",
"104.25.193.0/24",
"104.25.194.0/24",
"104.25.195.0/24",
"104.25.196.0/24",
"104.25.197.0/24",
"104.25.198.0/24",
"104.25.199.0/24",
"104.25.200.0/24",
"104.25.201.0/24",
"104.25.202.0/24",
"104.25.203.0/24",
"104.25.204.0/24",
"104.25.205.0/24",
"104.25.206.0/24",
"104.25.207.0/24",
"104.25.208.0/24",
"104.25.209.0/24",
"104.25.210.0/24",
"104.25.211.0/24",
"104.25.212.0/24",
"104.25.213.0/24",
"104.25.214.0/24",
"104.25.215.0/24",
"104.25.216.0/24",
"104.25.217.0/24",
"104.25.218.0/24",
"104.25.219.0/24",
"104.25.220.0/24",
"104.25.221.0/24",
"104.25.222.0/24",
"104.25.223.0/24",
"104.25.224.0/24",
"104.25.225.0/24",
"104.25.226.0/24",
"104.25.227.0/24",
"104.25.228.0/24",
"104.25.229.0/24",
"104.25.230.0/24",
"104.25.231.0/24",
"104.25.232.0/24",
"104.25.233.0/24",
"104.25.234.0/24",
"104.25.235.0/24",
"104.25.236.0/24",
"104.25.237.0/24",
"104.25.238.0/24",
"104.25.239.0/24",
"104.25.240.0/24",
"104.25.241.0/24",
"104.25.242.0/24",
"104.25.243.0/24",
"104.25.244.0/24",
"104.25.245.0/24",
"104.25.246.0/24",
"104.25.247.0/24",
"104.25.248.0/24",
"104.25.249.0/24",
"104.25.250.0/24",
"104.25.251.0/24",
"104.25.252.0/24",
"104.25.253.0/24",
"104.25.254.0/24",
"104.25.255.0/24",
"104.26.0.0/24",
"104.26.1.0/24",
"104.26.2.0/24",
"104.26.3.0/24",
"104.26.4.0/24",
"104.26.5.0/24",
"104.26.6.0/24",
"104.26.7.0/24",
"104.26.8.0/24",
"104.26.9.0/24",
"104.26.10.0/24",
"104.26.11.0/24",
"104.26.12.0/24",
"104.26.13.0/24",
"104.26.14.0/24",
"104.26.15.0/24",
"104.26.16.0/24",
"104.26.17.0/24",
"104.26.18.0/24",
"104.26.19.0/24",
"104.26.20.0/24",
"104.26.21.0/24",
"104.26.22.0/24",
"104.26.23.0/24",
"104.26.24.0/24",
"104.26.25.0/24",
"104.26.26.0/24",
"104.26.27.0/24",
"104.26.28.0/24",
"104.26.29.0/24",
"104.26.30.0/24",
"104.26.31.0/24",
"104.26.32.0/24",
"104.26.33.0/24",
"104.26.34.0/24",
"104.26.35.0/24",
"104.26.36.0/24",
"104.26.37.0/24",
"104.26.38.0/24",
"104.26.39.0/24",
"104.26.40.0/24",
"104.26.41.0/24",
"104.26.42.0/24",
"104.26.43.0/24",
"104.26.44.0/24",
"104.26.45.0/24",
"104.26.46.0/24",
"104.26.47.0/24",
"104.26.48.0/24",
"104.26.49.0/24",
"104.26.50.0/24",
"104.26.51.0/24",
"104.26.52.0/24",
"104.26.53.0/24",
"104.26.54.0/24",
"104.26.55.0/24",
"104.26.56.0/24",
"104.26.57.0/24",
"104.26.58.0/24",
"104.26.59.0/24",
"104.26.60.0/24",
"104.26.61.0/24",
"104.26.62.0/24",
"104.26.63.0/24",
"104.26.64.0/24",
"104.26.65.0/24",
"104.26.66.0/24",
"104.26.67.0/24",
"104.26.68.0/24",
"104.26.69.0/24",
"104.26.70.0/24",
"104.26.71.0/24",
"104.26.72.0/24",
"104.26.73.0/24",
"104.26.74.0/24",
"104.26.75.0/24",
"104.26.76.0/24",
"104.26.77.0/24",
"104.26.78.0/24",
"104.26.79.0/24",
"104.26.80.0/24",
"104.26.81.0/24",
"104.26.82.0/24",
"104.26.83.0/24",
"104.26.84.0/24",
"104.26.85.0/24",
"104.26.86.0/24",
"104.26.87.0/24",
"104.26.88.0/24",
"104.26.89.0/24",
"104.26.90.0/24",
"104.26.91.0/24",
"104.26.92.0/24",
"104.26.93.0/24",
"104.26.94.0/24",
"104.26.95.0/24",
"104.26.96.0/24",
"104.26.97.0/24",
"104.26.98.0/24",
"104.26.99.0/24",
"104.26.100.0/24",
"104.26.101.0/24",
"104.26.102.0/24",
"104.26.103.0/24",
"104.26.104.0/24",
"104.26.105.0/24",
"104.26.106.0/24",
"104.26.107.0/24",
"104.26.108.0/24",
"104.26.109.0/24",
"104.26.110.0/24",
"104.26.111.0/24",
"104.26.112.0/24",
"104.26.113.0/24",
"104.26.114.0/24",
"104.26.115.0/24",
"104.26.116.0/24",
"104.26.117.0/24",
"104.26.118.0/24",
"104.26.119.0/24",
"104.26.120.0/24",
"104.26.121.0/24",
"104.26.122.0/24",
"104.26.123.0/24",
"104.26.124.0/24",
"104.26.125.0/24",
"104.26.126.0/24",
"104.26.127.0/24",
"104.26.128.0/24",
"104.26.129.0/24",
"104.26.130.0/24",
"104.26.131.0/24",
"104.26.132.0/24",
"104.26.133.0/24",
"104.26.134.0/24",
"104.26.135.0/24",
"104.26.136.0/24",
"104.26.137.0/24",
"104.26.138.0/24",
"104.26.139.0/24",
"104.26.140.0/24",
"104.26.141.0/24",
"104.26.142.0/24",
"104.26.143.0/24",
"104.26.144.0/24",
"104.26.145.0/24",
"104.26.146.0/24",
"104.26.147.0/24",
"104.26.148.0/24",
"104.26.149.0/24",
"104.26.150.0/24",
"104.26.151.0/24",
"104.26.152.0/24",
"104.26.153.0/24",
"104.26.154.0/24",
"104.26.155.0/24",
"104.26.156.0/24",
"104.26.157.0/24",
"104.26.158.0/24",
"104.26.159.0/24",
"104.26.160.0/24",
"104.26.161.0/24",
"104.26.162.0/24",
"104.26.163.0/24",
"104.26.164.0/24",
"104.26.165.0/24",
"104.26.166.0/24",
"104.26.167.0/24",
"104.26.168.0/24",
"104.26.169.0/24",
"104.26.170.0/24",
"104.26.171.0/24",
"104.26.172.0/24",
"104.26.173.0/24",
"104.26.174.0/24",
"104.26.175.0/24",
"104.26.176.0/24",
"104.26.177.0/24",
"104.26.178.0/24",
"104.26.179.0/24",
"104.26.180.0/24",
"104.26.181.0/24",
"104.26.182.0/24",
"104.26.183.0/24",
"104.26.184.0/24",
"104.26.185.0/24",
"104.26.186.0/24",
"104.26.187.0/24",
"104.26.188.0/24",
"104.26.189.0/24",
"104.26.190.0/24",
"104.26.191.0/24",
"104.26.192.0/24",
"104.26.193.0/24",
"104.26.194.0/24",
"104.26.195.0/24",
"104.26.196.0/24",
"104.26.197.0/24",
"104.26.198.0/24",
"104.26.199.0/24",
"104.26.200.0/24",
"104.26.201.0/24",
"104.26.202.0/24",
"104.26.203.0/24",
"104.26.204.0/24",
"104.26.205.0/24",
"104.26.206.0/24",
"104.26.207.0/24",
"104.26.208.0/24",
"104.26.209.0/24",
"104.26.210.0/24",
"104.26.211.0/24",
"104.26.212.0/24",
"104.26.213.0/24",
"104.26.214.0/24",
"104.26.215.0/24",
"104.26.216.0/24",
"104.26.217.0/24",
"104.26.218.0/24",
"104.26.219.0/24",
"104.26.220.0/24",
"104.26.221.0/24",
"104.26.222.0/24",
"104.26.223.0/24",
"104.26.224.0/24",
"104.26.225.0/24",
"104.26.226.0/24",
"104.26.227.0/24",
"104.26.228.0/24",
"104.26.229.0/24",
"104.26.230.0/24",
"104.26.231.0/24",
"104.26.232.0/24",
"104.26.233.0/24",
"104.26.234.0/24",
"104.26.235.0/24",
"104.26.236.0/24",
"104.26.237.0/24",
"104.26.238.0/24",
"104.26.239.0/24",
"104.26.240.0/24",
"104.26.241.0/24",
"104.26.242.0/24",
"104.26.243.0/24",
"104.26.244.0/24",
"104.26.245.0/24",
"104.26.246.0/24",
"104.26.247.0/24",
"104.26.248.0/24",
"104.26.249.0/24",
"104.26.250.0/24",
"104.26.251.0/24",
"104.26.252.0/24",
"104.26.253.0/24",
"104.26.254.0/24",
"104.26.255.0/24",
"104.27.0.0/24",
"104.27.1.0/24",
"104.27.2.0/24",
"104.27.3.0/24",
"104.27.4.0/24",
"104.27.5.0/24",
"104.27.6.0/24",
"104.27.7.0/24",
"104.27.8.0/24",
"104.27.9.0/24",
"104.27.10.0/24",
"104.27.11.0/24",
"104.27.12.0/24",
"104.27.13.0/24",
"104.27.14.0/24",
"104.27.15.0/24",
"104.27.16.0/24",
"104.27.17.0/24",
"104.27.18.0/24",
"104.27.19.0/24",
"104.27.20.0/24",
"104.27.21.0/24",
"104.27.22.0/24",
"104.27.23.0/24",
"104.27.24.0/24",
"104.27.25.0/24",
"104.27.26.0/24",
"104.27.27.0/24",
"104.27.28.0/24",
"104.27.29.0/24",
"104.27.30.0/24",
"104.27.31.0/24",
"104.27.32.0/24",
"104.27.33.0/24",
"104.27.34.0/24",
"104.27.35.0/24",
"104.27.36.0/24",
"104.27.37.0/24",
"104.27.38.0/24",
"104.27.39.0/24",
"104.27.40.0/24",
"104.27.41.0/24",
"104.27.42.0/24",
"104.27.43.0/24",
"104.27.44.0/24",
"104.27.45.0/24",
"104.27.46.0/24",
"104.27.47.0/24",
"104.27.48.0/24",
"104.27.49.0/24",
"104.27.50.0/24",
"104.27.51.0/24",
"104.27.52.0/24",
"104.27.53.0/24",
"104.27.54.0/24",
"104.27.55.0/24",
"104.27.56.0/24",
"104.27.57.0/24",
"104.27.58.0/24",
"104.27.59.0/24",
"104.27.60.0/24",
"104.27.61.0/24",
"104.27.62.0/24",
"104.27.63.0/24",
"104.27.64.0/24",
"104.27.65.0/24",
"104.27.66.0/24",
"104.27.67.0/24",
"104.27.68.0/24",
"104.27.69.0/24",
"104.27.70.0/24",
"104.27.71.0/24",
"104.27.72.0/24",
"104.27.73.0/24",
"104.27.74.0/24",
"104.27.75.0/24",
"104.27.76.0/24",
"104.27.77.0/24",
"104.27.78.0/24",
"104.27.79.0/24",
"104.27.80.0/24",
"104.27.81.0/24",
"104.27.82.0/24",
"104.27.83.0/24",
"104.27.84.0/24",
"104.27.85.0/24",
"104.27.86.0/24",
"104.27.87.0/24",
"104.27.88.0/24",
"104.27.89.0/24",
"104.27.90.0/24",
"104.27.91.0/24",
"104.27.92.0/24",
"104.27.93.0/24",
"104.27.94.0/24",
"104.27.95.0/24",
"104.27.96.0/24",
"104.27.97.0/24",
"104.27.98.0/24",
"104.27.99.0/24",
"104.27.100.0/24",
"104.27.101.0/24",
"104.27.102.0/24",
"104.27.103.0/24",
"104.27.104.0/24",
"104.27.105.0/24",
"104.27.106.0/24",
"104.27.107.0/24",
"104.27.108.0/24",
"104.27.109.0/24",
"104.27.110.0/24",
"104.27.111.0/24",
"104.27.112.0/24",
"104.27.113.0/24",
"104.27.114.0/24",
"104.27.115.0/24",
"104.27.116.0/24",
"104.27.117.0/24",
"104.27.118.0/24",
"104.27.119.0/24",
"104.27.120.0/24",
"104.27.121.0/24",
"104.27.122.0/24",
"104.27.123.0/24",
"104.27.124.0/24",
"104.27.125.0/24",
"104.27.126.0/24",
"104.27.127.0/24",
"104.27.128.0/24",
"104.27.129.0/24",
"104.27.130.0/24",
"104.27.131.0/24",
"104.27.132.0/24",
"104.27.133.0/24",
"104.27.134.0/24",
"104.27.135.0/24",
"104.27.136.0/24",
"104.27.137.0/24",
"104.27.138.0/24",
"104.27.139.0/24",
"104.27.140.0/24",
"104.27.141.0/24",
"104.27.142.0/24",
"104.27.143.0/24",
"104.27.144.0/24",
"104.27.145.0/24",
"104.27.146.0/24",
"104.27.147.0/24",
"104.27.148.0/24",
"104.27.149.0/24",
"104.27.150.0/24",
"104.27.151.0/24",
"104.27.152.0/24",
"104.27.153.0/24",
"104.27.154.0/24",
"104.27.155.0/24",
"104.27.156.0/24",
"104.27.157.0/24",
"104.27.158.0/24",
"104.27.159.0/24",
"104.27.160.0/24",
"104.27.161.0/24",
"104.27.162.0/24",
"104.27.163.0/24",
"104.27.164.0/24",
"104.27.165.0/24",
"104.27.166.0/24",
"104.27.167.0/24",
"104.27.168.0/24",
"104.27.169.0/24",
"104.27.170.0/24",
"104.27.171.0/24",
"104.27.172.0/24",
"104.27.173.0/24",
"104.27.174.0/24",
"104.27.175.0/24",
"104.27.176.0/24",
"104.27.177.0/24",
"104.27.178.0/24",
"104.27.179.0/24",
"104.27.180.0/24",
"104.27.181.0/24",
"104.27.182.0/24",
"104.27.183.0/24",
"104.27.184.0/24",
"104.27.185.0/24",
"104.27.186.0/24",
"104.27.187.0/24",
"104.27.188.0/24",
"104.27.189.0/24",
"104.27.190.0/24",
"104.27.191.0/24",
"104.27.192.0/24",
"104.27.193.0/24",
"104.27.194.0/24",
"104.27.195.0/24",
"104.27.196.0/24",
"104.27.197.0/24",
"104.27.198.0/24",
"104.27.199.0/24",
"104.27.200.0/24",
"104.27.201.0/24",
"104.27.202.0/24",
"104.27.203.0/24",
"104.27.204.0/24",
"104.27.205.0/24",
"104.27.206.0/24",
"104.27.207.0/24",
"104.27.208.0/24",
"104.27.209.0/24",
"104.27.210.0/24",
"104.27.211.0/24",
"104.27.212.0/24",
"104.27.213.0/24",
"104.27.214.0/24",
"104.27.215.0/24",
"104.27.216.0/24",
"104.27.217.0/24",
"104.27.218.0/24",
"104.27.219.0/24",
"104.27.220.0/24",
"104.27.221.0/24",
"104.27.222.0/24",
"104.27.223.0/24",
"104.27.224.0/24",
"104.27.225.0/24",
"104.27.226.0/24",
"104.27.227.0/24",
"104.27.228.0/24",
"104.27.229.0/24",
"104.27.230.0/24",
"104.27.231.0/24",
"104.27.232.0/24",
"104.27.233.0/24",
"104.27.234.0/24",
"104.27.235.0/24",
"104.27.236.0/24",
"104.27.237.0/24",
"104.27.238.0/24",
"104.27.239.0/24",
"104.27.240.0/24",
"104.27.241.0/24",
"104.27.242.0/24",
"104.27.243.0/24",
"104.27.244.0/24",
"104.27.245.0/24",
"104.27.246.0/24",
"104.27.247.0/24",
"104.27.248.0/24",
"104.27.249.0/24",
"104.27.250.0/24",
"104.27.251.0/24",
"104.27.252.0/24",
"104.27.253.0/24",
"104.27.254.0/24",
"104.27.255.0/24",
"104.28.0.0/24",
"104.28.1.0/24",
"104.28.2.0/24",
"104.28.3.0/24",
"104.28.4.0/24",
"104.28.5.0/24",
"104.28.6.0/24",
"104.28.7.0/24",
"104.28.8.0/24",
"104.28.9.0/24",
"104.28.10.0/24",
"104.28.11.0/24",
"104.28.12.0/24",
"104.28.13.0/24",
"104.28.14.0/24",
"104.28.15.0/24",
"104.28.16.0/24",
"104.28.17.0/24",
"104.28.18.0/24",
"104.28.19.0/24",
"104.28.20.0/24",
"104.28.21.0/24",
"104.28.22.0/24",
"104.28.23.0/24",
"104.28.24.0/24",
"104.28.25.0/24",
"104.28.26.0/24",
"104.28.27.0/24",
"104.28.28.0/24",
"104.28.29.0/24",
"104.28.30.0/24",
"104.28.31.0/24",
"104.28.32.0/24",
"104.28.33.0/24",
"104.28.34.0/24",
"104.28.35.0/24",
"104.28.36.0/24",
"104.28.37.0/24",
"104.28.38.0/24",
"104.28.39.0/24",
"104.28.40.0/24",
"104.28.41.0/24",
"104.28.42.0/24",
"104.28.43.0/24",
"104.28.44.0/24",
"104.28.45.0/24",
"104.28.46.0/24",
"104.28.47.0/24",
"104.28.48.0/24",
"104.28.49.0/24",
"104.28.50.0/24",
"104.28.51.0/24",
"104.28.52.0/24",
"104.28.53.0/24",
"104.28.54.0/24",
"104.28.55.0/24",
"104.28.56.0/24",
"104.28.57.0/24",
"104.28.58.0/24",
"104.28.59.0/24",
"104.28.60.0/24",
"104.28.61.0/24",
"104.28.62.0/24",
"104.28.63.0/24",
"104.28.64.0/24",
"104.28.65.0/24",
"104.28.66.0/24",
"104.28.67.0/24",
"104.28.68.0/24",
"104.28.69.0/24",
"104.28.70.0/24",
"104.28.71.0/24",
"104.28.72.0/24",
"104.28.73.0/24",
"104.28.74.0/24",
"104.28.75.0/24",
"104.28.76.0/24",
"104.28.77.0/24",
"104.28.78.0/24",
"104.28.79.0/24",
"104.28.80.0/24",
"104.28.81.0/24",
"104.28.82.0/24",
"104.28.83.0/24",
"104.28.84.0/24",
"104.28.85.0/24",
"104.28.86.0/24",
"104.28.87.0/24",
"104.28.88.0/24",
"104.28.89.0/24",
"104.28.90.0/24",
"104.28.91.0/24",
"104.28.92.0/24",
"104.28.93.0/24",
"104.28.94.0/24",
"104.28.95.0/24",
"104.28.96.0/24",
"104.28.97.0/24",
"104.28.98.0/24",
"104.28.99.0/24",
"104.28.100.0/24",
"104.28.101.0/24",
"104.28.102.0/24",
"104.28.103.0/24",
"104.28.104.0/24",
"104.28.105.0/24",
"104.28.106.0/24",
"104.28.107.0/24",
"104.28.108.0/24",
"104.28.109.0/24",
"104.28.110.0/24",
"104.28.111.0/24",
"104.28.112.0/24",
"104.28.113.0/24",
"104.28.114.0/24",
"104.28.115.0/24",
"104.28.116.0/24",
"104.28.117.0/24",
"104.28.118.0/24",
"104.28.119.0/24",
"104.28.120.0/24",
"104.28.121.0/24",
"104.28.122.0/24",
"104.28.123.0/24",
"104.28.124.0/24",
"104.28.125.0/24",
"104.28.126.0/24",
"104.28.127.0/24",
"104.28.128.0/24",
"104.28.129.0/24",
"104.28.130.0/24",
"104.28.131.0/24",
"104.28.132.0/24",
"104.28.133.0/24",
"104.28.134.0/24",
"104.28.135.0/24",
"104.28.136.0/24",
"104.28.137.0/24",
"104.28.138.0/24",
"104.28.139.0/24",
"104.28.140.0/24",
"104.28.141.0/24",
"104.28.142.0/24",
"104.28.143.0/24",
"104.28.144.0/24",
"104.28.145.0/24",
"104.28.146.0/24",
"104.28.147.0/24",
"104.28.148.0/24",
"104.28.149.0/24",
"104.28.150.0/24",
"104.28.151.0/24",
"104.28.152.0/24",
"104.28.153.0/24",
"104.28.154.0/24",
"104.28.155.0/24",
"104.28.156.0/24",
"104.28.157.0/24",
"104.28.158.0/24",
"104.28.159.0/24",
"104.28.160.0/24",
"104.28.161.0/24",
"104.28.162.0/24",
"104.28.163.0/24",
"104.28.164.0/24",
"104.28.165.0/24",
"104.28.166.0/24",
"104.28.167.0/24",
"104.28.168.0/24",
"104.28.169.0/24",
"104.28.170.0/24",
"104.28.171.0/24",
"104.28.172.0/24",
"104.28.173.0/24",
"104.28.174.0/24",
"104.28.175.0/24",
"104.28.176.0/24",
"104.28.177.0/24",
"104.28.178.0/24",
"104.28.179.0/24",
"104.28.180.0/24",
"104.28.181.0/24",
"104.28.182.0/24",
"104.28.183.0/24",
"104.28.184.0/24",
"104.28.185.0/24",
"104.28.186.0/24",
"104.28.187.0/24",
"104.28.188.0/24",
"104.28.189.0/24",
"104.28.190.0/24",
"104.28.191.0/24",
"104.28.192.0/24",
"104.28.193.0/24",
"104.28.194.0/24",
"104.28.195.0/24",
"104.28.196.0/24",
"104.28.197.0/24",
"104.28.198.0/24",
"104.28.199.0/24",
"104.28.200.0/24",
"104.28.201.0/24",
"104.28.202.0/24",
"104.28.203.0/24",
"104.28.204.0/24",
"104.28.205.0/24",
"104.28.206.0/24",
"104.28.207.0/24",
"104.28.208.0/24",
"104.28.209.0/24",
"104.28.210.0/24",
"104.28.211.0/24",
"104.28.212.0/24",
"104.28.213.0/24",
"104.28.214.0/24",
"104.28.215.0/24",
"104.28.216.0/24",
"104.28.217.0/24",
"104.28.218.0/24",
"104.28.219.0/24",
"104.28.220.0/24",
"104.28.221.0/24",
"104.28.222.0/24",
"104.28.223.0/24",
"104.28.224.0/24",
"104.28.225.0/24",
"104.28.226.0/24",
"104.28.227.0/24",
"104.28.228.0/24",
"104.28.229.0/24",
"104.28.230.0/24",
"104.28.231.0/24",
"104.28.232.0/24",
"104.28.233.0/24",
"104.28.234.0/24",
"104.28.235.0/24",
"104.28.236.0/24",
"104.28.237.0/24",
"104.28.238.0/24",
"104.28.239.0/24",
"104.28.240.0/24",
"104.28.241.0/24",
"104.28.242.0/24",
"104.28.243.0/24",
"104.28.244.0/24",
"104.28.245.0/24",
"104.28.246.0/24",
"104.28.247.0/24",
"104.28.248.0/24",
"104.28.249.0/24",
"104.28.250.0/24",
"104.28.251.0/24",
"104.28.252.0/24",
"104.28.253.0/24",
"104.28.254.0/24",
"104.28.255.0/24",
"104.29.0.0/24",
"104.29.1.0/24",
"104.29.2.0/24",
"104.29.3.0/24",
"104.29.4.0/24",
"104.29.5.0/24",
"104.29.6.0/24",
"104.29.7.0/24",
"104.29.8.0/24",
"104.29.9.0/24",
"104.29.10.0/24",
"104.29.11.0/24",
"104.29.12.0/24",
"104.29.13.0/24",
"104.29.14.0/24",
"104.29.15.0/24",
"104.29.16.0/24",
"104.29.17.0/24",
"104.29.18.0/24",
"104.29.19.0/24",
"104.29.20.0/24",
"104.29.21.0/24",
"104.29.22.0/24",
"104.29.23.0/24",
"104.29.24.0/24",
"104.29.25.0/24",
"104.29.26.0/24",
"104.29.27.0/24",
"104.29.28.0/24",
"104.29.29.0/24",
"104.29.30.0/24",
"104.29.31.0/24",
"104.29.32.0/24",
"104.29.33.0/24",
"104.29.34.0/24",
"104.29.35.0/24",
"104.29.36.0/24",
"104.29.37.0/24",
"104.29.38.0/24",
"104.29.39.0/24",
"104.29.40.0/24",
"104.29.41.0/24",
"104.29.42.0/24",
"104.29.43.0/24",
"104.29.44.0/24",
"104.29.45.0/24",
"104.29.46.0/24",
"104.29.47.0/24",
"104.29.48.0/24",
"104.29.49.0/24",
"104.29.50.0/24",
"104.29.51.0/24",
"104.29.52.0/24",
"104.29.53.0/24",
"104.29.54.0/24",
"104.29.55.0/24",
"104.29.56.0/24",
"104.29.57.0/24",
"104.29.58.0/24",
"104.29.59.0/24",
"104.29.60.0/24",
"104.29.61.0/24",
"104.29.62.0/24",
"104.29.63.0/24",
"104.29.64.0/24",
"104.29.65.0/24",
"104.29.66.0/24",
"104.29.67.0/24",
"104.29.68.0/24",
"104.29.69.0/24",
"104.29.70.0/24",
"104.29.71.0/24",
"104.29.72.0/24",
"104.29.73.0/24",
"104.29.74.0/24",
"104.29.75.0/24",
"104.29.76.0/24",
"104.29.77.0/24",
"104.29.78.0/24",
"104.29.79.0/24",
"104.29.80.0/24",
"104.29.81.0/24",
"104.29.82.0/24",
"104.29.83.0/24",
"104.29.84.0/24",
"104.29.85.0/24",
"104.29.86.0/24",
"104.29.87.0/24",
"104.29.88.0/24",
"104.29.89.0/24",
"104.29.90.0/24",
"104.29.91.0/24",
"104.29.92.0/24",
"104.29.93.0/24",
"104.29.94.0/24",
"104.29.95.0/24",
"104.29.96.0/24",
"104.29.97.0/24",
"104.29.98.0/24",
"104.29.99.0/24",
"104.29.100.0/24",
"104.29.101.0/24",
"104.29.102.0/24",
"104.29.103.0/24",
"104.29.104.0/24",
"104.29.105.0/24",
"104.29.106.0/24",
"104.29.107.0/24",
"104.29.108.0/24",
"104.29.109.0/24",
"104.29.110.0/24",
"104.29.111.0/24",
"104.29.112.0/24",
"104.29.113.0/24",
"104.29.114.0/24",
"104.29.115.0/24",
"104.29.116.0/24",
"104.29.117.0/24",
"104.29.118.0/24",
"104.29.119.0/24",
"104.29.120.0/24",
"104.29.121.0/24",
"104.29.122.0/24",
"104.29.123.0/24",
"104.29.124.0/24",
"104.29.125.0/24",
"104.29.126.0/24",
"104.29.127.0/24",
"104.29.128.0/24",
"104.29.129.0/24",
"104.29.130.0/24",
"104.29.131.0/24",
"104.29.132.0/24",
"104.29.133.0/24",
"104.29.134.0/24",
"104.29.135.0/24",
"104.29.136.0/24",
"104.29.137.0/24",
"104.29.138.0/24",
"104.29.139.0/24",
"104.29.140.0/24",
"104.29.141.0/24",
"104.29.142.0/24",
"104.29.143.0/24",
"104.29.144.0/24",
"104.29.145.0/24",
"104.29.146.0/24",
"104.29.147.0/24",
"104.29.148.0/24",
"104.29.149.0/24",
"104.29.150.0/24",
"104.29.151.0/24",
"104.29.152.0/24",
"104.29.153.0/24",
"104.29.154.0/24",
"104.29.155.0/24",
"104.29.156.0/24",
"104.29.157.0/24",
"104.29.158.0/24",
"104.29.159.0/24",
"104.29.160.0/24",
"104.29.161.0/24",
"104.29.162.0/24",
"104.29.163.0/24",
"104.29.164.0/24",
"104.29.165.0/24",
"104.29.166.0/24",
"104.29.167.0/24",
"104.29.168.0/24",
"104.29.169.0/24",
"104.29.170.0/24",
"104.29.171.0/24",
"104.29.172.0/24",
"104.29.173.0/24",
"104.29.174.0/24",
"104.29.175.0/24",
"104.29.176.0/24",
"104.29.177.0/24",
"104.29.178.0/24",
"104.29.179.0/24",
"104.29.180.0/24",
"104.29.181.0/24",
"104.29.182.0/24",
"104.29.183.0/24",
"104.29.184.0/24",
"104.29.185.0/24",
"104.29.186.0/24",
"104.29.187.0/24",
"104.29.188.0/24",
"104.29.189.0/24",
"104.29.190.0/24",
"104.29.191.0/24",
"104.29.192.0/24",
"104.29.193.0/24",
"104.29.194.0/24",
"104.29.195.0/24",
"104.29.196.0/24",
"104.29.197.0/24",
"104.29.198.0/24",
"104.29.199.0/24",
"104.29.200.0/24",
"104.29.201.0/24",
"104.29.202.0/24",
"104.29.203.0/24",
"104.29.204.0/24",
"104.29.205.0/24",
"104.29.206.0/24",
"104.29.207.0/24",
"104.29.208.0/24",
"104.29.209.0/24",
"104.29.210.0/24",
"104.29.211.0/24",
"104.29.212.0/24",
"104.29.213.0/24",
"104.29.214.0/24",
"104.29.215.0/24",
"104.29.216.0/24",
"104.29.217.0/24",
"104.29.218.0/24",
"104.29.219.0/24",
"104.29.220.0/24",
"104.29.221.0/24",
"104.29.222.0/24",
"104.29.223.0/24",
"104.29.224.0/24",
"104.29.225.0/24",
"104.29.226.0/24",
"104.29.227.0/24",
"104.29.228.0/24",
"104.29.229.0/24",
"104.29.230.0/24",
"104.29.231.0/24",
"104.29.232.0/24",
"104.29.233.0/24",
"104.29.234.0/24",
"104.29.235.0/24",
"104.29.236.0/24",
"104.29.237.0/24",
"104.29.238.0/24",
"104.29.239.0/24",
"104.29.240.0/24",
"104.29.241.0/24",
"104.29.242.0/24",
"104.29.243.0/24",
"104.29.244.0/24",
"104.29.245.0/24",
"104.29.246.0/24",
"104.29.247.0/24",
"104.29.248.0/24",
"104.29.249.0/24",
"104.29.250.0/24",
"104.29.251.0/24",
"104.29.252.0/24",
"104.29.253.0/24",
"104.29.254.0/24",
"104.29.255.0/24",
"104.30.0.0/24",
"104.30.1.0/24",
"104.30.2.0/24",
"104.30.3.0/24",
"104.30.4.0/24",
"104.30.5.0/24",
"104.30.6.0/24",
"104.30.7.0/24",
"104.30.8.0/24",
"104.30.9.0/24",
"104.30.10.0/24",
"104.30.11.0/24",
"104.30.12.0/24",
"104.30.13.0/24",
"104.30.14.0/24",
"104.30.15.0/24",
"104.30.16.0/24",
"104.30.17.0/24",
"104.30.18.0/24",
"104.30.19.0/24",
"104.30.20.0/24",
"104.30.21.0/24",
"104.30.22.0/24",
"104.30.23.0/24",
"104.30.24.0/24",
"104.30.25.0/24",
"104.30.26.0/24",
"104.30.27.0/24",
"104.30.28.0/24",
"104.30.29.0/24",
"104.30.30.0/24",
"104.30.31.0/24",
"104.30.32.0/24",
"104.30.33.0/24",
"104.30.34.0/24",
"104.30.35.0/24",
"104.30.36.0/24",
"104.30.37.0/24",
"104.30.38.0/24",
"104.30.39.0/24",
"104.30.40.0/24",
"104.30.41.0/24",
"104.30.42.0/24",
"104.30.43.0/24",
"104.30.44.0/24",
"104.30.45.0/24",
"104.30.46.0/24",
"104.30.47.0/24",
"104.30.48.0/24",
"104.30.49.0/24",
"104.30.50.0/24",
"104.30.51.0/24",
"104.30.52.0/24",
"104.30.53.0/24",
"104.30.54.0/24",
"104.30.55.0/24",
"104.30.56.0/24",
"104.30.57.0/24",
"104.30.58.0/24",
"104.30.59.0/24",
"104.30.60.0/24",
"104.30.61.0/24",
"104.30.62.0/24",
"104.30.63.0/24",
"104.30.64.0/24",
"104.30.65.0/24",
"104.30.66.0/24",
"104.30.67.0/24",
"104.30.68.0/24",
"104.30.69.0/24",
"104.30.70.0/24",
"104.30.71.0/24",
"104.30.72.0/24",
"104.30.73.0/24",
"104.30.74.0/24",
"104.30.75.0/24",
"104.30.76.0/24",
"104.30.77.0/24",
"104.30.78.0/24",
"104.30.79.0/24",
"104.30.80.0/24",
"104.30.81.0/24",
"104.30.82.0/24",
"104.30.83.0/24",
"104.30.84.0/24",
"104.30.85.0/24",
"104.30.86.0/24",
"104.30.87.0/24",
"104.30.88.0/24",
"104.30.89.0/24",
"104.30.90.0/24",
"104.30.91.0/24",
"104.30.92.0/24",
"104.30.93.0/24",
"104.30.94.0/24",
"104.30.95.0/24",
"104.30.96.0/24",
"104.30.97.0/24",
"104.30.98.0/24",
"104.30.99.0/24",
"104.30.100.0/24",
"104.30.101.0/24",
"104.30.102.0/24",
"104.30.103.0/24",
"104.30.104.0/24",
"104.30.105.0/24",
"104.30.106.0/24",
"104.30.107.0/24",
"104.30.108.0/24",
"104.30.109.0/24",
"104.30.110.0/24",
"104.30.111.0/24",
"104.30.112.0/24",
"104.30.113.0/24",
"104.30.114.0/24",
"104.30.115.0/24",
"104.30.116.0/24",
"104.30.117.0/24",
"104.30.118.0/24",
"104.30.119.0/24",
"104.30.120.0/24",
"104.30.121.0/24",
"104.30.122.0/24",
"104.30.123.0/24",
"104.30.124.0/24",
"104.30.125.0/24",
"104.30.126.0/24",
"104.30.127.0/24",
"104.30.128.0/24",
"104.30.129.0/24",
"104.30.130.0/24",
"104.30.131.0/24",
"104.30.132.0/24",
"104.30.133.0/24",
"104.30.134.0/24",
"104.30.135.0/24",
"104.30.136.0/24",
"104.30.137.0/24",
"104.30.138.0/24",
"104.30.139.0/24",
"104.30.140.0/24",
"104.30.141.0/24",
"104.30.142.0/24",
"104.30.143.0/24",
"104.30.144.0/24",
"104.30.145.0/24",
"104.30.146.0/24",
"104.30.147.0/24",
"104.30.148.0/24",
"104.30.149.0/24",
"104.30.150.0/24",
"104.30.151.0/24",
"104.30.152.0/24",
"104.30.153.0/24",
"104.30.154.0/24",
"104.30.155.0/24",
"104.30.156.0/24",
"104.30.157.0/24",
"104.30.158.0/24",
"104.30.159.0/24",
"104.30.160.0/24",
"104.30.161.0/24",
"104.30.162.0/24",
"104.30.163.0/24",
"104.30.164.0/24",
"104.30.165.0/24",
"104.30.166.0/24",
"104.30.167.0/24",
"104.30.168.0/24",
"104.30.169.0/24",
"104.30.170.0/24",
"104.30.171.0/24",
"104.30.172.0/24",
"104.30.173.0/24",
"104.30.174.0/24",
"104.30.175.0/24",
"104.30.176.0/24",
"104.30.177.0/24",
"104.30.178.0/24",
"104.30.179.0/24",
"104.30.180.0/24",
"104.30.181.0/24",
"104.30.182.0/24",
"104.30.183.0/24",
"104.30.184.0/24",
"104.30.185.0/24",
"104.30.186.0/24",
"104.30.187.0/24",
"104.30.188.0/24",
"104.30.189.0/24",
"104.30.190.0/24",
"104.30.191.0/24",
"104.30.192.0/24",
"104.30.193.0/24",
"104.30.194.0/24",
"104.30.195.0/24",
"104.30.196.0/24",
"104.30.197.0/24",
"104.30.198.0/24",
"104.30.199.0/24",
"104.30.200.0/24",
"104.30.201.0/24",
"104.30.202.0/24",
"104.30.203.0/24",
"104.30.204.0/24",
"104.30.205.0/24",
"104.30.206.0/24",
"104.30.207.0/24",
"104.30.208.0/24",
"104.30.209.0/24",
"104.30.210.0/24",
"104.30.211.0/24",
"104.30.212.0/24",
"104.30.213.0/24",
"104.30.214.0/24",
"104.30.215.0/24",
"104.30.216.0/24",
"104.30.217.0/24",
"104.30.218.0/24",
"104.30.219.0/24",
"104.30.220.0/24",
"104.30.221.0/24",
"104.30.222.0/24",
"104.30.223.0/24",
"104.30.224.0/24",
"104.30.225.0/24",
"104.30.226.0/24",
"104.30.227.0/24",
"104.30.228.0/24",
"104.30.229.0/24",
"104.30.230.0/24",
"104.30.231.0/24",
"104.30.232.0/24",
"104.30.233.0/24",
"104.30.234.0/24",
"104.30.235.0/24",
"104.30.236.0/24",
"104.30.237.0/24",
"104.30.238.0/24",
"104.30.239.0/24",
"104.30.240.0/24",
"104.30.241.0/24",
"104.30.242.0/24",
"104.30.243.0/24",
"104.30.244.0/24",
"104.30.245.0/24",
"104.30.246.0/24",
"104.30.247.0/24",
"104.30.248.0/24",
"104.30.249.0/24",
"104.30.250.0/24",
"104.30.251.0/24",
"104.30.252.0/24",
"104.30.253.0/24",
"104.30.254.0/24",
"104.30.255.0/24",
"104.31.0.0/24",
"104.31.1.0/24",
"104.31.2.0/24",
"104.31.3.0/24",
"104.31.4.0/24",
"104.31.5.0/24",
"104.31.6.0/24",
"104.31.7.0/24",
"104.31.8.0/24",
"104.31.9.0/24",
"104.31.10.0/24",
"104.31.11.0/24",
"104.31.12.0/24",
"104.31.13.0/24",
"104.31.14.0/24",
"104.31.15.0/24",
"104.31.16.0/24",
"104.31.17.0/24",
"104.31.18.0/24",
"104.31.19.0/24",
"104.31.20.0/24",
"104.31.21.0/24",
"104.31.22.0/24",
"104.31.23.0/24",
"104.31.24.0/24",
"104.31.25.0/24",
"104.31.26.0/24",
"104.31.27.0/24",
"104.31.28.0/24",
"104.31.29.0/24",
"104.31.30.0/24",
"104.31.31.0/24",
"104.31.32.0/24",
"104.31.33.0/24",
"104.31.34.0/24",
"104.31.35.0/24",
"104.31.36.0/24",
"104.31.37.0/24",
"104.31.38.0/24",
"104.31.39.0/24",
"104.31.40.0/24",
"104.31.41.0/24",
"104.31.42.0/24",
"104.31.43.0/24",
"104.31.44.0/24",
"104.31.45.0/24",
"104.31.46.0/24",
"104.31.47.0/24",
"104.31.48.0/24",
"104.31.49.0/24",
"104.31.50.0/24",
"104.31.51.0/24",
"104.31.52.0/24",
"104.31.53.0/24",
"104.31.54.0/24",
"104.31.55.0/24",
"104.31.56.0/24",
"104.31.57.0/24",
"104.31.58.0/24",
"104.31.59.0/24",
"104.31.60.0/24",
"104.31.61.0/24",
"104.31.62.0/24",
"104.31.63.0/24",
"104.31.64.0/24",
"104.31.65.0/24",
"104.31.66.0/24",
"104.31.67.0/24",
"104.31.68.0/24",
"104.31.69.0/24",
"104.31.70.0/24",
"104.31.71.0/24",
"104.31.72.0/24",
"104.31.73.0/24",
"104.31.74.0/24",
"104.31.75.0/24",
"104.31.76.0/24",
"104.31.77.0/24",
"104.31.78.0/24",
"104.31.79.0/24",
"104.31.80.0/24",
"104.31.81.0/24",
"104.31.82.0/24",
"104.31.83.0/24",
"104.31.84.0/24",
"104.31.85.0/24",
"104.31.86.0/24",
"104.31.87.0/24",
"104.31.88.0/24",
"104.31.89.0/24",
"104.31.90.0/24",
"104.31.91.0/24",
"104.31.92.0/24",
"104.31.93.0/24",
"104.31.94.0/24",
"104.31.95.0/24",
"104.31.96.0/24",
"104.31.97.0/24",
"104.31.98.0/24",
"104.31.99.0/24",
"104.31.100.0/24",
"104.31.101.0/24",
"104.31.102.0/24",
"104.31.103.0/24",
"104.31.104.0/24",
"104.31.105.0/24",
"104.31.106.0/24",
"104.31.107.0/24",
"104.31.108.0/24",
"104.31.109.0/24",
"104.31.110.0/24",
"104.31.111.0/24",
"104.31.112.0/24",
"104.31.113.0/24",
"104.31.114.0/24",
"104.31.115.0/24",
"104.31.116.0/24",
"104.31.117.0/24",
"104.31.118.0/24",
"104.31.119.0/24",
"104.31.120.0/24",
"104.31.121.0/24",
"104.31.122.0/24",
"104.31.123.0/24",
"104.31.124.0/24",
"104.31.125.0/24",
"104.31.126.0/24",
"104.31.127.0/24",
"104.31.128.0/24",
"104.31.129.0/24",
"104.31.130.0/24",
"104.31.131.0/24",
"104.31.132.0/24",
"104.31.133.0/24",
"104.31.134.0/24",
"104.31.135.0/24",
"104.31.136.0/24",
"104.31.137.0/24",
"104.31.138.0/24",
"104.31.139.0/24",
"104.31.140.0/24",
"104.31.141.0/24",
"104.31.142.0/24",
"104.31.143.0/24",
"104.31.144.0/24",
"104.31.145.0/24",
"104.31.146.0/24",
"104.31.147.0/24",
"104.31.148.0/24",
"104.31.149.0/24",
"104.31.150.0/24",
"104.31.151.0/24",
"104.31.152.0/24",
"104.31.153.0/24",
"104.31.154.0/24",
"104.31.155.0/24",
"104.31.156.0/24",
"104.31.157.0/24",
"104.31.158.0/24",
"104.31.159.0/24",
"104.31.160.0/24",
"104.31.161.0/24",
"104.31.162.0/24",
"104.31.163.0/24",
"104.31.164.0/24",
"104.31.165.0/24",
"104.31.166.0/24",
"104.31.167.0/24",
"104.31.168.0/24",
"104.31.169.0/24",
"104.31.170.0/24",
"104.31.171.0/24",
"104.31.172.0/24",
"104.31.173.0/24",
"104.31.174.0/24",
"104.31.175.0/24",
"104.31.176.0/24",
"104.31.177.0/24",
"104.31.178.0/24",
"104.31.179.0/24",
"104.31.180.0/24",
"104.31.181.0/24",
"104.31.182.0/24",
"104.31.183.0/24",
"104.31.184.0/24",
"104.31.185.0/24",
"104.31.186.0/24",
"104.31.187.0/24",
"104.31.188.0/24",
"104.31.189.0/24",
"104.31.190.0/24",
"104.31.191.0/24",
"104.31.192.0/24",
"104.31.193.0/24",
"104.31.194.0/24",
"104.31.195.0/24",
"104.31.196.0/24",
"104.31.197.0/24",
"104.31.198.0/24",
"104.31.199.0/24",
"104.31.200.0/24",
"104.31.201.0/24",
"104.31.202.0/24",
"104.31.203.0/24",
"104.31.204.0/24",
"104.31.205.0/24",
"104.31.206.0/24",
"104.31.207.0/24",
"104.31.208.0/24",
"104.31.209.0/24",
"104.31.210.0/24",
"104.31.211.0/24",
"104.31.212.0/24",
"104.31.213.0/24",
"104.31.214.0/24",
"104.31.215.0/24",
"104.31.216.0/24",
"104.31.217.0/24",
"104.31.218.0/24",
"104.31.219.0/24",
"104.31.220.0/24",
"104.31.221.0/24",
"104.31.222.0/24",
"104.31.223.0/24",
"104.31.224.0/24",
"104.31.225.0/24",
"104.31.226.0/24",
"104.31.227.0/24",
"104.31.228.0/24",
"104.31.229.0/24",
"104.31.230.0/24",
"104.31.231.0/24",
"104.31.232.0/24",
"104.31.233.0/24",
"104.31.234.0/24",
"104.31.235.0/24",
"104.31.236.0/24",
"104.31.237.0/24",
"104.31.238.0/24",
"104.31.239.0/24",
"104.31.240.0/24",
"104.31.241.0/24",
"104.31.242.0/24",
"104.31.243.0/24",
"104.31.244.0/24",
"104.31.245.0/24",
"104.31.246.0/24",
"104.31.247.0/24",
"104.31.248.0/24",
"104.31.249.0/24",
"104.31.250.0/24",
"104.31.251.0/24",
"104.31.252.0/24",
"104.31.253.0/24",
"104.31.254.0/24",
"104.31.255.0/24",
"104.18.10.128/24",
"108.162.192.0/24",
"108.162.193.0/24",
"108.162.194.0/24",
"108.162.195.0/24",
"108.162.196.0/24",
"108.162.197.0/24",
"108.162.198.0/24",
"108.162.199.0/24",
"108.162.200.0/24",
"108.162.201.0/24",
"108.162.202.0/24",
"108.162.203.0/24",
"108.162.204.0/24",
"108.162.205.0/24",
"108.162.206.0/24",
"108.162.207.0/24",
"108.162.210.0/24",
"108.162.211.0/24",
"108.162.212.0/24",
"108.162.213.0/24",
"108.162.216.0/24",
"108.162.217.0/24",
"108.162.218.0/24",
"108.162.226.0/24",
"108.162.227.0/24",
"108.162.235.0/24",
"108.162.236.0/24",
"108.162.237.0/24",
"108.162.238.0/24",
"108.162.239.0/24",
"108.162.240.0/24",
"108.162.241.0/24",
"108.162.242.0/24",
"108.162.243.0/24",
"108.162.244.0/24",
"108.162.245.0/24",
"108.162.246.0/24",
"108.162.247.0/24",
"108.162.248.0/24",
"108.162.249.0/24",
"108.162.250.0/24",
"108.162.252.0/24",
"108.162.253.0/24",
"141.101.65.0/24",
"141.101.66.0/24",
"141.101.67.0/24",
"141.101.68.0/24",
"141.101.69.0/24",
"141.101.70.0/24",
"141.101.71.0/24",
"141.101.72.0/24",
"141.101.73.0/24",
"141.101.74.0/24",
"141.101.75.0/24",
"141.101.76.0/24",
"141.101.77.0/24",
"141.101.82.0/24",
"141.101.83.0/24",
"141.101.84.0/24",
"141.101.85.0/24",
"141.101.86.0/24",
"141.101.87.0/24",
"141.101.90.0/24",
"141.101.92.0/24",
"141.101.93.0/24",
"141.101.94.0/24",
"141.101.95.0/24",
"141.101.96.0/24",
"141.101.97.0/24",
"141.101.98.0/24",
"141.101.99.0/24",
"141.101.100.0/24",
"141.101.108.0/24",
"141.101.109.0/24",
"141.101.110.0/24",
"141.101.112.0/24",
"141.101.113.0/24",
"141.101.114.0/24",
"141.101.115.0/24",
"141.101.116.0/24",
"141.101.117.0/24",
"141.101.118.0/24",
"141.101.119.0/24",
"141.101.120.0/24",
"141.101.121.0/24",
"141.101.122.0/24",
"141.101.123.0/24",
"141.101.124.0/24",
"141.101.125.0/24",
"141.101.126.0/24",
"141.101.127.0/24",
"162.158.0.0/24",
"162.158.1.0/24",
"162.158.2.0/24",
"162.158.3.0/24",
"162.158.4.0/24",
"162.158.5.0/24",
"162.158.8.0/24",
"162.158.9.0/24",
"162.158.10.0/24",
"162.158.11.0/24",
"162.158.12.0/24",
"162.158.13.0/24",
"162.158.14.0/24",
"162.158.15.0/24",
"162.158.16.0/24",
"162.158.17.0/24",
"162.158.18.0/24",
"162.158.19.0/24",
"162.158.20.0/24",
"162.158.21.0/24",
"162.158.22.0/24",
"162.158.23.0/24",
"162.158.24.0/24",
"162.158.25.0/24",
"162.158.26.0/24",
"162.158.27.0/24",
"162.158.28.0/24",
"162.158.29.0/24",
"162.158.30.0/24",
"162.158.31.0/24",
"162.158.32.0/24",
"162.158.33.0/24",
"162.158.34.0/24",
"162.158.35.0/24",
"162.158.36.0/24",
"162.158.37.0/24",
"162.158.38.0/24",
"162.158.39.0/24",
"162.158.40.0/24",
"162.158.41.0/24",
"162.158.42.0/24",
"162.158.43.0/24",
"162.158.44.0/24",
"162.158.45.0/24",
"162.158.46.0/24",
"162.158.47.0/24",
"162.158.48.0/24",
"162.158.51.0/24",
"162.158.52.0/24",
"162.158.53.0/24",
"162.158.54.0/24",
"162.158.55.0/24",
"162.158.56.0/24",
"162.158.57.0/24",
"162.158.58.0/24",
"162.158.59.0/24",
"162.158.60.0/24",
"162.158.61.0/24",
"162.158.62.0/24",
"162.158.63.0/24",
"162.158.72.0/24",
"162.158.73.0/24",
"162.158.74.0/24",
"162.158.75.0/24",
"162.158.76.0/24",
"162.158.77.0/24",
"162.158.78.0/24",
"162.158.79.0/24",
"162.158.80.0/24",
"162.158.81.0/24",
"162.158.82.0/24",
"162.158.84.0/24",
"162.158.85.0/24",
"162.158.86.0/24",
"162.158.87.0/24",
"162.158.88.0/24",
"162.158.89.0/24",
"162.158.90.0/24",
"162.158.91.0/24",
"162.158.92.0/24",
"162.158.93.0/24",
"162.158.94.0/24",
"162.158.95.0/24",
"162.158.96.0/24",
"162.158.97.0/24",
"162.158.98.0/24",
"162.158.99.0/24",
"162.158.100.0/24",
"162.158.101.0/24",
"162.158.102.0/24",
"162.158.103.0/24",
"162.158.104.0/24",
"162.158.105.0/24",
"162.158.106.0/24",
"162.158.107.0/24",
"162.158.108.0/24",
"162.158.109.0/24",
"162.158.110.0/24",
"162.158.111.0/24",
"162.158.112.0/24",
"162.158.113.0/24",
"162.158.114.0/24",
"162.158.116.0/24",
"162.158.117.0/24",
"162.158.118.0/24",
"162.158.119.0/24",
"162.158.124.0/24",
"162.158.125.0/24",
"162.158.126.0/24",
"162.158.127.0/24",
"162.158.128.0/24",
"162.158.129.0/24",
"162.158.130.0/24",
"162.158.131.0/24",
"162.158.132.0/24",
"162.158.133.0/24",
"162.158.134.0/24",
"162.158.135.0/24",
"162.158.136.0/24",
"162.158.137.0/24",
"162.158.138.0/24",
"162.158.139.0/24",
"162.158.140.0/24",
"162.158.141.0/24",
"162.158.142.0/24",
"162.158.143.0/24",
"162.158.144.0/24",
"162.158.145.0/24",
"162.158.146.0/24",
"162.158.147.0/24",
"162.158.148.0/24",
"162.158.149.0/24",
"162.158.150.0/24",
"162.158.151.0/24",
"162.158.152.0/24",
"162.158.153.0/24",
"162.158.154.0/24",
"162.158.155.0/24",
"162.158.156.0/24",
"162.158.157.0/24",
"162.158.158.0/24",
"162.158.159.0/24",
"162.158.160.0/24",
"162.158.161.0/24",
"162.158.162.0/24",
"162.158.163.0/24",
"162.158.164.0/24",
"162.158.165.0/24",
"162.158.166.0/24",
"162.158.167.0/24",
"162.158.168.0/24",
"162.158.169.0/24",
"162.158.170.0/24",
"162.158.171.0/24",
"162.158.172.0/24",
"162.158.173.0/24",
"162.158.174.0/24",
"162.158.175.0/24",
"162.158.176.0/24",
"162.158.178.0/24",
"162.158.179.0/24",
"162.158.180.0/24",
"162.158.181.0/24",
"162.158.182.0/24",
"162.158.183.0/24",
"162.158.184.0/24",
"162.158.185.0/24",
"162.158.186.0/24",
"162.158.187.0/24",
"162.158.188.0/24",
"162.158.189.0/24",
"162.158.190.0/24",
"162.158.191.0/24",
"162.158.192.0/24",
"162.158.193.0/24",
"162.158.194.0/24",
"162.158.195.0/24",
"162.158.196.0/24",
"162.158.198.0/24",
"162.158.199.0/24",
"162.158.200.0/24",
"162.158.201.0/24",
"162.158.202.0/24",
"162.158.203.0/24",
"162.158.204.0/24",
"162.158.205.0/24",
"162.158.206.0/24",
"162.158.207.0/24",
"162.158.208.0/24",
"162.158.209.0/24",
"162.158.210.0/24",
"162.158.211.0/24",
"162.158.212.0/24",
"162.158.214.0/24",
"162.158.215.0/24",
"162.158.216.0/24",
"162.158.217.0/24",
"162.158.218.0/24",
"162.158.219.0/24",
"162.158.220.0/24",
"162.158.221.0/24",
"162.158.222.0/24",
"162.158.223.0/24",
"162.158.224.0/24",
"162.158.225.0/24",
"162.158.226.0/24",
"162.158.227.0/24",
"162.158.228.0/24",
"162.158.232.0/24",
"162.158.233.0/24",
"162.158.234.0/24",
"162.158.235.0/24",
"162.158.236.0/24",
"162.158.237.0/24",
"162.158.238.0/24",
"162.158.239.0/24",
"162.158.240.0/24",
"162.158.241.0/24",
"162.158.242.0/24",
"162.158.243.0/24",
"162.158.244.0/24",
"162.158.245.0/24",
"162.158.248.0/24",
"162.158.249.0/24",
"162.158.250.0/24",
"162.158.251.0/24",
"162.158.253.0/24",
"162.158.254.0/24",
"162.158.255.0/24",
"162.159.0.0/24",
"162.159.1.0/24",
"162.159.2.0/24",
"162.159.3.0/24",
"162.159.4.0/24",
"162.159.5.0/24",
"162.159.6.0/24",
"162.159.7.0/24",
"162.159.8.0/24",
"162.159.9.0/24",
"162.159.10.0/24",
"162.159.11.0/24",
"162.159.12.0/24",
"162.159.13.0/24",
"162.159.14.0/24",
"162.159.15.0/24",
"162.159.16.0/24",
"162.159.17.0/24",
"162.159.18.0/24",
"162.159.19.0/24",
"162.159.20.0/24",
"162.159.21.0/24",
"162.159.22.0/24",
"162.159.23.0/24",
"162.159.24.0/24",
"162.159.25.0/24",
"162.159.26.0/24",
"162.159.27.0/24",
"162.159.28.0/24",
"162.159.29.0/24",
"162.159.30.0/24",
"162.159.31.0/24",
"162.159.32.0/24",
"162.159.33.0/24",
"162.159.34.0/24",
"162.159.35.0/24",
"162.159.36.0/24",
"162.159.37.0/24",
"162.159.38.0/24",
"162.159.39.0/24",
"162.159.40.0/24",
"162.159.41.0/24",
"162.159.42.0/24",
"162.159.43.0/24",
"162.159.44.0/24",
"162.159.45.0/24",
"162.159.46.0/24",
"162.159.47.0/24",
"162.159.48.0/24",
"162.159.49.0/24",
"162.159.50.0/24",
"162.159.51.0/24",
"162.159.52.0/24",
"162.159.53.0/24",
"162.159.54.0/24",
"162.159.55.0/24",
"162.159.56.0/24",
"162.159.57.0/24",
"162.159.58.0/24",
"162.159.59.0/24",
"162.159.60.0/24",
"162.159.61.0/24",
"162.159.62.0/24",
"162.159.63.0/24",
"162.159.64.0/24",
"162.159.65.0/24",
"162.159.66.0/24",
"162.159.67.0/24",
"162.159.68.0/24",
"162.159.69.0/24",
"162.159.70.0/24",
"162.159.71.0/24",
"162.159.72.0/24",
"162.159.73.0/24",
"162.159.74.0/24",
"162.159.75.0/24",
"162.159.76.0/24",
"162.159.77.0/24",
"162.159.78.0/24",
"162.159.79.0/24",
"162.159.128.0/24",
"162.159.129.0/24",
"162.159.130.0/24",
"162.159.131.0/24",
"162.159.132.0/24",
"162.159.133.0/24",
"162.159.134.0/24",
"162.159.135.0/24",
"162.159.136.0/24",
"162.159.137.0/24",
"162.159.138.0/24",
"162.159.139.0/24",
"162.159.140.0/24",
"162.159.141.0/24",
"162.159.142.0/24",
"162.159.143.0/24",
"162.159.144.0/24",
"162.159.145.0/24",
"162.159.146.0/24",
"162.159.147.0/24",
"162.159.148.0/24",
"162.159.149.0/24",
"162.159.150.0/24",
"162.159.151.0/24",
"162.159.152.0/24",
"162.159.153.0/24",
"162.159.154.0/24",
"162.159.155.0/24",
"162.159.156.0/24",
"162.159.157.0/24",
"162.159.158.0/24",
"162.159.159.0/24",
"162.159.160.0/24",
"162.159.161.0/24",
"162.159.162.0/24",
"162.159.163.0/24",
"162.159.164.0/24",
"162.159.165.0/24",
"162.159.166.0/24",
"162.159.167.0/24",
"162.159.168.0/24",
"162.159.169.0/24",
"162.159.170.0/24",
"162.159.171.0/24",
"162.159.172.0/24",
"162.159.173.0/24",
"162.159.174.0/24",
"162.159.175.0/24",
"162.159.176.0/24",
"162.159.177.0/24",
"162.159.178.0/24",
"162.159.179.0/24",
"162.159.180.0/24",
"162.159.181.0/24",
"162.159.182.0/24",
"162.159.183.0/24",
"162.159.184.0/24",
"162.159.185.0/24",
"162.159.186.0/24",
"162.159.187.0/24",
"162.159.188.0/24",
"162.159.189.0/24",
"162.159.190.0/24",
"162.159.191.0/24",
"162.159.192.0/24",
"162.159.193.0/24",
"162.159.194.0/24",
"162.159.195.0/24",
"162.159.196.0/24",
"162.159.197.0/24",
"162.159.198.0/24",
"162.159.199.0/24",
"162.159.200.0/24",
"162.159.201.0/24",
"162.159.202.0/24",
"162.159.203.0/24",
"162.159.204.0/24",
"162.159.205.0/24",
"162.159.206.0/24",
"162.159.207.0/24",
"162.159.208.0/24",
"162.159.209.0/24",
"162.159.210.0/24",
"162.159.211.0/24",
"162.159.212.0/24",
"162.159.213.0/24",
"162.159.214.0/24",
"162.159.215.0/24",
"162.159.216.0/24",
"162.159.217.0/24",
"162.159.218.0/24",
"162.159.219.0/24",
"162.159.220.0/24",
"162.159.221.0/24",
"162.159.222.0/24",
"162.159.223.0/24",
"162.159.224.0/24",
"162.159.225.0/24",
"162.159.226.0/24",
"162.159.227.0/24",
"162.159.228.0/24",
"162.159.229.0/24",
"162.159.230.0/24",
"162.159.231.0/24",
"162.159.232.0/24",
"162.159.233.0/24",
"162.159.234.0/24",
"162.159.235.0/24",
"162.159.236.0/24",
"162.159.237.0/24",
"162.159.238.0/24",
"162.159.239.0/24",
"162.159.240.0/24",
"162.159.241.0/24",
"162.159.242.0/24",
"162.159.243.0/24",
"162.159.244.0/24",
"162.159.245.0/24",
"162.159.246.0/24",
"162.159.247.0/24",
"162.159.248.0/24",
"162.159.249.0/24",
"162.159.250.0/24",
"162.159.251.0/24",
"162.159.252.0/24",
"162.159.253.0/24",
"162.159.254.0/24",
"162.159.255.0/24",
"162.251.82.0/24",
"172.64.0.0/24",
"172.64.1.0/24",
"172.64.2.0/24",
"172.64.3.0/24",
"172.64.4.0/24",
"172.64.5.0/24",
"172.64.6.0/24",
"172.64.7.0/24",
"172.64.8.0/24",
"172.64.9.0/24",
"172.64.10.0/24",
"172.64.11.0/24",
"172.64.12.0/24",
"172.64.13.0/24",
"172.64.14.0/24",
"172.64.15.0/24",
"172.64.16.0/24",
"172.64.17.0/24",
"172.64.18.0/24",
"172.64.19.0/24",
"172.64.20.0/24",
"172.64.21.0/24",
"172.64.22.0/24",
"172.64.23.0/24",
"172.64.24.0/24",
"172.64.25.0/24",
"172.64.26.0/24",
"172.64.27.0/24",
"172.64.28.0/24",
"172.64.29.0/24",
"172.64.30.0/24",
"172.64.31.0/24",
"172.64.32.0/24",
"172.64.33.0/24",
"172.64.34.0/24",
"172.64.35.0/24",
"172.64.36.0/24",
"172.64.37.0/24",
"172.64.38.0/24",
"172.64.39.0/24",
"172.64.40.0/24",
"172.64.41.0/24",
"172.64.42.0/24",
"172.64.43.0/24",
"172.64.44.0/24",
"172.64.45.0/24",
"172.64.46.0/24",
"172.64.47.0/24",
"172.64.48.0/24",
"172.64.49.0/24",
"172.64.50.0/24",
"172.64.51.0/24",
"172.64.52.0/24",
"172.64.53.0/24",
"172.64.54.0/24",
"172.64.55.0/24",
"172.64.56.0/24",
"172.64.57.0/24",
"172.64.58.0/24",
"172.64.59.0/24",
"172.64.60.0/24",
"172.64.61.0/24",
"172.64.62.0/24",
"172.64.63.0/24",
"172.64.64.0/24",
"172.64.65.0/24",
"172.64.66.0/24",
"172.64.67.0/24",
"172.64.68.0/24",
"172.64.69.0/24",
"172.64.70.0/24",
"172.64.71.0/24",
"172.64.72.0/24",
"172.64.73.0/24",
"172.64.74.0/24",
"172.64.75.0/24",
"172.64.76.0/24",
"172.64.77.0/24",
"172.64.78.0/24",
"172.64.79.0/24",
"172.64.80.0/24",
"172.64.81.0/24",
"172.64.82.0/24",
"172.64.83.0/24",
"172.64.84.0/24",
"172.64.85.0/24",
"172.64.86.0/24",
"172.64.87.0/24",
"172.64.88.0/24",
"172.64.89.0/24",
"172.64.90.0/24",
"172.64.91.0/24",
"172.64.92.0/24",
"172.64.93.0/24",
"172.64.94.0/24",
"172.64.95.0/24",
"172.64.96.0/24",
"172.64.97.0/24",
"172.64.98.0/24",
"172.64.99.0/24",
"172.64.100.0/24",
"172.64.101.0/24",
"172.64.102.0/24",
"172.64.103.0/24",
"172.64.104.0/24",
"172.64.105.0/24",
"172.64.106.0/24",
"172.64.107.0/24",
"172.64.108.0/24",
"172.64.109.0/24",
"172.64.110.0/24",
"172.64.111.0/24",
"172.64.112.0/24",
"172.64.113.0/24",
"172.64.114.0/24",
"172.64.115.0/24",
"172.64.116.0/24",
"172.64.117.0/24",
"172.64.118.0/24",
"172.64.119.0/24",
"172.64.120.0/24",
"172.64.121.0/24",
"172.64.122.0/24",
"172.64.123.0/24",
"172.64.124.0/24",
"172.64.125.0/24",
"172.64.126.0/24",
"172.64.127.0/24",
"172.64.128.0/24",
"172.64.129.0/24",
"172.64.130.0/24",
"172.64.131.0/24",
"172.64.132.0/24",
"172.64.133.0/24",
"172.64.134.0/24",
"172.64.135.0/24",
"172.64.136.0/24",
"172.64.137.0/24",
"172.64.138.0/24",
"172.64.139.0/24",
"172.64.140.0/24",
"172.64.141.0/24",
"172.64.142.0/24",
"172.64.143.0/24",
"172.64.144.0/24",
"172.64.145.0/24",
"172.64.146.0/24",
"172.64.147.0/24",
"172.64.148.0/24",
"172.64.149.0/24",
"172.64.150.0/24",
"172.64.151.0/24",
"172.64.152.0/24",
"172.64.153.0/24",
"172.64.154.0/24",
"172.64.155.0/24",
"172.64.156.0/24",
"172.64.157.0/24",
"172.64.158.0/24",
"172.64.159.0/24",
"172.64.160.0/24",
"172.64.161.0/24",
"172.64.162.0/24",
"172.64.163.0/24",
"172.64.164.0/24",
"172.64.165.0/24",
"172.64.166.0/24",
"172.64.167.0/24",
"172.64.168.0/24",
"172.64.169.0/24",
"172.64.170.0/24",
"172.64.171.0/24",
"172.64.172.0/24",
"172.64.173.0/24",
"172.64.174.0/24",
"172.64.175.0/24",
"172.64.176.0/24",
"172.64.177.0/24",
"172.64.178.0/24",
"172.64.179.0/24",
"172.64.180.0/24",
"172.64.181.0/24",
"172.64.182.0/24",
"172.64.183.0/24",
"172.64.184.0/24",
"172.64.185.0/24",
"172.64.186.0/24",
"172.64.187.0/24",
"172.64.188.0/24",
"172.64.189.0/24",
"172.64.190.0/24",
"172.64.191.0/24",
"172.64.192.0/24",
"172.64.193.0/24",
"172.64.194.0/24",
"172.64.195.0/24",
"172.64.196.0/24",
"172.64.197.0/24",
"172.64.198.0/24",
"172.64.199.0/24",
"172.64.200.0/24",
"172.64.201.0/24",
"172.64.202.0/24",
"172.64.203.0/24",
"172.64.204.0/24",
"172.64.205.0/24",
"172.64.206.0/24",
"172.64.207.0/24",
"172.64.208.0/24",
"172.64.209.0/24",
"172.64.210.0/24",
"172.64.211.0/24",
"172.64.212.0/24",
"172.64.213.0/24",
"172.64.214.0/24",
"172.64.215.0/24",
"172.64.216.0/24",
"172.64.217.0/24",
"172.64.218.0/24",
"172.64.219.0/24",
"172.64.220.0/24",
"172.64.221.0/24",
"172.64.222.0/24",
"172.64.223.0/24",
"172.64.224.0/24",
"172.64.225.0/24",
"172.64.226.0/24",
"172.64.227.0/24",
"172.64.228.0/24",
"172.64.229.0/24",
"172.64.230.0/24",
"172.64.231.0/24",
"172.64.232.0/24",
"172.64.233.0/24",
"172.64.234.0/24",
"172.64.235.0/24",
"172.64.236.0/24",
"172.64.237.0/24",
"172.64.238.0/24",
"172.64.239.0/24",
"172.64.240.0/24",
"172.64.241.0/24",
"172.64.242.0/24",
"172.64.243.0/24",
"172.64.244.0/24",
"172.64.245.0/24",
"172.64.246.0/24",
"172.64.247.0/24",
"172.64.248.0/24",
"172.64.249.0/24",
"172.64.250.0/24",
"172.64.251.0/24",
"172.64.252.0/24",
"172.64.253.0/24",
"172.64.254.0/24",
"172.64.255.0/24",
"172.65.0.0/24",
"172.65.1.0/24",
"172.65.2.0/24",
"172.65.3.0/24",
"172.65.4.0/24",
"172.65.5.0/24",
"172.65.6.0/24",
"172.65.7.0/24",
"172.65.8.0/24",
"172.65.9.0/24",
"172.65.10.0/24",
"172.65.11.0/24",
"172.65.12.0/24",
"172.65.13.0/24",
"172.65.14.0/24",
"172.65.15.0/24",
"172.65.16.0/24",
"172.65.17.0/24",
"172.65.18.0/24",
"172.65.19.0/24",
"172.65.20.0/24",
"172.65.21.0/24",
"172.65.22.0/24",
"172.65.23.0/24",
"172.65.24.0/24",
"172.65.25.0/24",
"172.65.26.0/24",
"172.65.27.0/24",
"172.65.28.0/24",
"172.65.29.0/24",
"172.65.30.0/24",
"172.65.31.0/24",
"172.65.32.0/24",
"172.65.33.0/24",
"172.65.34.0/24",
"172.65.35.0/24",
"172.65.36.0/24",
"172.65.37.0/24",
"172.65.38.0/24",
"172.65.39.0/24",
"172.65.40.0/24",
"172.65.41.0/24",
"172.65.42.0/24",
"172.65.43.0/24",
"172.65.44.0/24",
"172.65.45.0/24",
"172.65.46.0/24",
"172.65.47.0/24",
"172.65.48.0/24",
"172.65.49.0/24",
"172.65.50.0/24",
"172.65.51.0/24",
"172.65.52.0/24",
"172.65.53.0/24",
"172.65.54.0/24",
"172.65.55.0/24",
"172.65.56.0/24",
"172.65.57.0/24",
"172.65.58.0/24",
"172.65.59.0/24",
"172.65.60.0/24",
"172.65.61.0/24",
"172.65.62.0/24",
"172.65.63.0/24",
"172.65.64.0/24",
"172.65.65.0/24",
"172.65.66.0/24",
"172.65.67.0/24",
"172.65.68.0/24",
"172.65.69.0/24",
"172.65.70.0/24",
"172.65.71.0/24",
"172.65.72.0/24",
"172.65.73.0/24",
"172.65.74.0/24",
"172.65.75.0/24",
"172.65.76.0/24",
"172.65.77.0/24",
"172.65.78.0/24",
"172.65.79.0/24",
"172.65.80.0/24",
"172.65.81.0/24",
"172.65.82.0/24",
"172.65.83.0/24",
"172.65.84.0/24",
"172.65.85.0/24",
"172.65.86.0/24",
"172.65.87.0/24",
"172.65.88.0/24",
"172.65.89.0/24",
"172.65.90.0/24",
"172.65.91.0/24",
"172.65.92.0/24",
"172.65.93.0/24",
"172.65.94.0/24",
"172.65.95.0/24",
"172.65.96.0/24",
"172.65.97.0/24",
"172.65.98.0/24",
"172.65.99.0/24",
"172.65.100.0/24",
"172.65.101.0/24",
"172.65.102.0/24",
"172.65.103.0/24",
"172.65.104.0/24",
"172.65.105.0/24",
"172.65.106.0/24",
"172.65.107.0/24",
"172.65.108.0/24",
"172.65.109.0/24",
"172.65.110.0/24",
"172.65.111.0/24",
"172.65.112.0/24",
"172.65.113.0/24",
"172.65.114.0/24",
"172.65.115.0/24",
"172.65.116.0/24",
"172.65.117.0/24",
"172.65.118.0/24",
"172.65.119.0/24",
"172.65.120.0/24",
"172.65.121.0/24",
"172.65.122.0/24",
"172.65.123.0/24",
"172.65.124.0/24",
"172.65.125.0/24",
"172.65.126.0/24",
"172.65.127.0/24",
"172.65.128.0/24",
"172.65.129.0/24",
"172.65.130.0/24",
"172.65.131.0/24",
"172.65.132.0/24",
"172.65.133.0/24",
"172.65.134.0/24",
"172.65.135.0/24",
"172.65.136.0/24",
"172.65.137.0/24",
"172.65.138.0/24",
"172.65.139.0/24",
"172.65.140.0/24",
"172.65.141.0/24",
"172.65.142.0/24",
"172.65.143.0/24",
"172.65.144.0/24",
"172.65.145.0/24",
"172.65.146.0/24",
"172.65.147.0/24",
"172.65.148.0/24",
"172.65.149.0/24",
"172.65.150.0/24",
"172.65.151.0/24",
"172.65.152.0/24",
"172.65.153.0/24",
"172.65.154.0/24",
"172.65.155.0/24",
"172.65.156.0/24",
"172.65.157.0/24",
"172.65.158.0/24",
"172.65.159.0/24",
"172.65.160.0/24",
"172.65.161.0/24",
"172.65.162.0/24",
"172.65.163.0/24",
"172.65.164.0/24",
"172.65.165.0/24",
"172.65.166.0/24",
"172.65.167.0/24",
"172.65.168.0/24",
"172.65.169.0/24",
"172.65.170.0/24",
"172.65.171.0/24",
"172.65.172.0/24",
"172.65.173.0/24",
"172.65.174.0/24",
"172.65.175.0/24",
"172.65.176.0/24",
"172.65.177.0/24",
"172.65.178.0/24",
"172.65.179.0/24",
"172.65.180.0/24",
"172.65.181.0/24",
"172.65.182.0/24",
"172.65.183.0/24",
"172.65.184.0/24",
"172.65.185.0/24",
"172.65.186.0/24",
"172.65.187.0/24",
"172.65.188.0/24",
"172.65.189.0/24",
"172.65.190.0/24",
"172.65.191.0/24",
"172.65.192.0/24",
"172.65.193.0/24",
"172.65.194.0/24",
"172.65.195.0/24",
"172.65.196.0/24",
"172.65.197.0/24",
"172.65.198.0/24",
"172.65.199.0/24",
"172.65.200.0/24",
"172.65.201.0/24",
"172.65.202.0/24",
"172.65.203.0/24",
"172.65.204.0/24",
"172.65.205.0/24",
"172.65.206.0/24",
"172.65.207.0/24",
"172.65.208.0/24",
"172.65.209.0/24",
"172.65.210.0/24",
"172.65.211.0/24",
"172.65.212.0/24",
"172.65.213.0/24",
"172.65.214.0/24",
"172.65.215.0/24",
"172.65.216.0/24",
"172.65.217.0/24",
"172.65.218.0/24",
"172.65.219.0/24",
"172.65.220.0/24",
"172.65.221.0/24",
"172.65.222.0/24",
"172.65.223.0/24",
"172.65.224.0/24",
"172.65.225.0/24",
"172.65.226.0/24",
"172.65.227.0/24",
"172.65.228.0/24",
"172.65.229.0/24",
"172.65.230.0/24",
"172.65.231.0/24",
"172.65.232.0/24",
"172.65.233.0/24",
"172.65.234.0/24",
"172.65.235.0/24",
"172.65.236.0/24",
"172.65.237.0/24",
"172.65.238.0/24",
"172.65.239.0/24",
"172.65.240.0/24",
"172.65.241.0/24",
"172.65.242.0/24",
"172.65.243.0/24",
"172.65.244.0/24",
"172.65.245.0/24",
"172.65.246.0/24",
"172.65.247.0/24",
"172.65.248.0/24",
"172.65.249.0/24",
"172.65.250.0/24",
"172.65.251.0/24",
"172.65.252.0/24",
"172.65.253.0/24",
"172.65.254.0/24",
"172.65.255.0/24",
"172.66.0.0/24",
"172.66.1.0/24",
"172.66.2.0/24",
"172.66.3.0/24",
"172.66.40.0/24",
"172.66.41.0/24",
"172.66.42.0/24",
"172.66.43.0/24",
"172.66.44.0/24",
"172.66.45.0/24",
"172.66.46.0/24",
"172.66.47.0/24",
"172.67.0.0/24",
"172.67.1.0/24",
"172.67.2.0/24",
"172.67.3.0/24",
"172.67.4.0/24",
"172.67.5.0/24",
"172.67.6.0/24",
"172.67.7.0/24",
"172.67.8.0/24",
"172.67.9.0/24",
"172.67.10.0/24",
"172.67.11.0/24",
"172.67.12.0/24",
"172.67.13.0/24",
"172.67.14.0/24",
"172.67.15.0/24",
"172.67.16.0/24",
"172.67.17.0/24",
"172.67.18.0/24",
"172.67.19.0/24",
"172.67.20.0/24",
"172.67.21.0/24",
"172.67.22.0/24",
"172.67.23.0/24",
"172.67.24.0/24",
"172.67.25.0/24",
"172.67.26.0/24",
"172.67.27.0/24",
"172.67.28.0/24",
"172.67.29.0/24",
"172.67.30.0/24",
"172.67.31.0/24",
"172.67.32.0/24",
"172.67.33.0/24",
"172.67.34.0/24",
"172.67.35.0/24",
"172.67.36.0/24",
"172.67.37.0/24",
"172.67.38.0/24",
"172.67.39.0/24",
"172.67.40.0/24",
"172.67.41.0/24",
"172.67.42.0/24",
"172.67.43.0/24",
"172.67.44.0/24",
"172.67.45.0/24",
"172.67.46.0/24",
"172.67.47.0/24",
"172.67.48.0/24",
"172.67.49.0/24",
"172.67.50.0/24",
"172.67.51.0/24",
"172.67.52.0/24",
"172.67.53.0/24",
"172.67.54.0/24",
"172.67.55.0/24",
"172.67.56.0/24",
"172.67.57.0/24",
"172.67.58.0/24",
"172.67.59.0/24",
"172.67.60.0/24",
"172.67.61.0/24",
"172.67.62.0/24",
"172.67.63.0/24",
"172.67.64.0/24",
"172.67.65.0/24",
"172.67.66.0/24",
"172.67.67.0/24",
"172.67.68.0/24",
"172.67.69.0/24",
"172.67.70.0/24",
"172.67.71.0/24",
"172.67.72.0/24",
"172.67.73.0/24",
"172.67.74.0/24",
"172.67.75.0/24",
"172.67.76.0/24",
"172.67.77.0/24",
"172.67.78.0/24",
"172.67.79.0/24",
"172.67.80.0/24",
"172.67.81.0/24",
"172.67.82.0/24",
"172.67.83.0/24",
"172.67.84.0/24",
"172.67.85.0/24",
"172.67.86.0/24",
"172.67.87.0/24",
"172.67.88.0/24",
"172.67.89.0/24",
"172.67.90.0/24",
"172.67.91.0/24",
"172.67.92.0/24",
"172.67.93.0/24",
"172.67.94.0/24",
"172.67.95.0/24",
"172.67.96.0/24",
"172.67.97.0/24",
"172.67.98.0/24",
"172.67.99.0/24",
"172.67.100.0/24",
"172.67.101.0/24",
"172.67.102.0/24",
"172.67.103.0/24",
"172.67.104.0/24",
"172.67.105.0/24",
"172.67.106.0/24",
"172.67.107.0/24",
"172.67.108.0/24",
"172.67.109.0/24",
"172.67.110.0/24",
"172.67.111.0/24",
"172.67.112.0/24",
"172.67.113.0/24",
"172.67.114.0/24",
"172.67.115.0/24",
"172.67.116.0/24",
"172.67.117.0/24",
"172.67.118.0/24",
"172.67.119.0/24",
"172.67.120.0/24",
"172.67.121.0/24",
"172.67.122.0/24",
"172.67.123.0/24",
"172.67.124.0/24",
"172.67.125.0/24",
"172.67.126.0/24",
"172.67.127.0/24",
"172.67.128.0/24",
"172.67.129.0/24",
"172.67.130.0/24",
"172.67.131.0/24",
"172.67.132.0/24",
"172.67.133.0/24",
"172.67.134.0/24",
"172.67.135.0/24",
"172.67.136.0/24",
"172.67.137.0/24",
"172.67.138.0/24",
"172.67.139.0/24",
"172.67.140.0/24",
"172.67.141.0/24",
"172.67.142.0/24",
"172.67.143.0/24",
"172.67.144.0/24",
"172.67.145.0/24",
"172.67.146.0/24",
"172.67.147.0/24",
"172.67.148.0/24",
"172.67.149.0/24",
"172.67.150.0/24",
"172.67.151.0/24",
"172.67.152.0/24",
"172.67.153.0/24",
"172.67.154.0/24",
"172.67.155.0/24",
"172.67.156.0/24",
"172.67.157.0/24",
"172.67.158.0/24",
"172.67.159.0/24",
"172.67.160.0/24",
"172.67.161.0/24",
"172.67.162.0/24",
"172.67.163.0/24",
"172.67.164.0/24",
"172.67.165.0/24",
"172.67.166.0/24",
"172.67.167.0/24",
"172.67.168.0/24",
"172.67.169.0/24",
"172.67.170.0/24",
"172.67.171.0/24",
"172.67.172.0/24",
"172.67.173.0/24",
"172.67.174.0/24",
"172.67.175.0/24",
"172.67.176.0/24",
"172.67.177.0/24",
"172.67.178.0/24",
"172.67.179.0/24",
"172.67.180.0/24",
"172.67.181.0/24",
"172.67.182.0/24",
"172.67.183.0/24",
"172.67.184.0/24",
"172.67.185.0/24",
"172.67.186.0/24",
"172.67.187.0/24",
"172.67.188.0/24",
"172.67.189.0/24",
"172.67.190.0/24",
"172.67.191.0/24",
"172.67.192.0/24",
"172.67.193.0/24",
"172.67.194.0/24",
"172.67.195.0/24",
"172.67.196.0/24",
"172.67.197.0/24",
"172.67.198.0/24",
"172.67.199.0/24",
"172.67.200.0/24",
"172.67.201.0/24",
"172.67.202.0/24",
"172.67.203.0/24",
"172.67.204.0/24",
"172.67.205.0/24",
"172.67.206.0/24",
"172.67.207.0/24",
"172.67.208.0/24",
"172.67.209.0/24",
"172.67.210.0/24",
"172.67.211.0/24",
"172.67.212.0/24",
"172.67.213.0/24",
"172.67.214.0/24",
"172.67.215.0/24",
"172.67.216.0/24",
"172.67.217.0/24",
"172.67.218.0/24",
"172.67.219.0/24",
"172.67.220.0/24",
"172.67.221.0/24",
"172.67.222.0/24",
"172.67.223.0/24",
"172.67.224.0/24",
"172.67.225.0/24",
"172.67.226.0/24",
"172.67.227.0/24",
"172.67.228.0/24",
"172.67.229.0/24",
"172.67.230.0/24",
"172.67.231.0/24",
"172.67.232.0/24",
"172.67.233.0/24",
"172.67.234.0/24",
"172.67.235.0/24",
"172.67.236.0/24",
"172.67.237.0/24",
"172.67.238.0/24",
"172.67.239.0/24",
"172.67.240.0/24",
"172.67.241.0/24",
"172.67.242.0/24",
"172.67.243.0/24",
"172.67.244.0/24",
"172.67.245.0/24",
"172.67.246.0/24",
"172.67.247.0/24",
"172.67.248.0/24",
"172.67.249.0/24",
"172.67.250.0/24",
"172.67.251.0/24",
"172.67.252.0/24",
"172.67.253.0/24",
"172.67.254.0/24",
"172.67.255.0/24",
"172.68.0.0/24",
"172.68.1.0/24",
"172.68.2.0/24",
"172.68.3.0/24",
"172.68.4.0/24",
"172.68.5.0/24",
"172.68.6.0/24",
"172.68.7.0/24",
"172.68.8.0/24",
"172.68.9.0/24",
"172.68.10.0/24",
"172.68.11.0/24",
"172.68.12.0/24",
"172.68.13.0/24",
"172.68.14.0/24",
"172.68.15.0/24",
"172.68.16.0/24",
"172.68.17.0/24",
"172.68.18.0/24",
"172.68.19.0/24",
"172.68.20.0/24",
"172.68.21.0/24",
"172.68.22.0/24",
"172.68.23.0/24",
"172.68.24.0/24",
"172.68.25.0/24",
"172.68.26.0/24",
"172.68.27.0/24",
"172.68.28.0/24",
"172.68.29.0/24",
"172.68.30.0/24",
"172.68.31.0/24",
"172.68.32.0/24",
"172.68.33.0/24",
"172.68.34.0/24",
"172.68.35.0/24",
"172.68.36.0/24",
"172.68.37.0/24",
"172.68.38.0/24",
"172.68.39.0/24",
"172.68.40.0/24",
"172.68.41.0/24",
"172.68.42.0/24",
"172.68.43.0/24",
"172.68.45.0/24",
"172.68.46.0/24",
"172.68.47.0/24",
"172.68.48.0/24",
"172.68.49.0/24",
"172.68.50.0/24",
"172.68.51.0/24",
"172.68.52.0/24",
"172.68.53.0/24",
"172.68.54.0/24",
"172.68.55.0/24",
"172.68.56.0/24",
"172.68.57.0/24",
"172.68.58.0/24",
"172.68.59.0/24",
"172.68.60.0/24",
"172.68.61.0/24",
"
gitextract_nftpiot2/ ├── .github/ │ └── workflows/ │ ├── docs.yml │ ├── node-vless-docker.yml │ ├── nodejs.yml │ ├── remove-old-artifacts.yml │ └── version-comment.yml ├── .gitignore ├── LICENSE ├── README.md ├── config/ │ ├── config-client-with-dns-lcoal.json │ └── config-client-without-dns-lcoal.json ├── jsonconfig.json ├── package.json ├── src/ │ ├── worker-vless.js │ └── worker-with-socks5-experimental.js ├── test/ │ ├── cidr.js │ ├── webstream.mjs │ └── worker/ │ ├── cf-cdn-cgi-trace.js │ ├── cf-worker-http-header.js │ ├── cidr.js │ ├── ipaddr-test.js │ ├── stream-ws-test.js │ ├── worker-connect-test.js │ ├── wrangler.toml │ └── ws-send-issue.js └── wrangler.toml
SYMBOL INDEX (59 symbols across 11 files)
FILE: src/worker-vless.js
method fetch (line 23) | async fetch(request, env, ctx) {
function vlessOverWSHandler (line 62) | async function vlessOverWSHandler(request) {
function handleTCPOutBound (line 170) | async function handleTCPOutBound(remoteSocket, addressRemote, portRemote...
function makeReadableWebSocketStream (line 210) | function makeReadableWebSocketStream(webSocketServer, earlyDataHeader, l...
function processVlessHeader (line 279) | function processVlessHeader(
function remoteSocketToWS (line 400) | async function remoteSocketToWS(remoteSocket, webSocket, vlessResponseHe...
function base64ToArrayBuffer (line 468) | function base64ToArrayBuffer(base64Str) {
function isValidUUID (line 487) | function isValidUUID(uuid) {
constant WS_READY_STATE_OPEN (line 492) | const WS_READY_STATE_OPEN = 1;
constant WS_READY_STATE_CLOSING (line 493) | const WS_READY_STATE_CLOSING = 2;
function safeCloseWebSocket (line 498) | function safeCloseWebSocket(socket) {
function unsafeStringify (line 512) | function unsafeStringify(arr, offset = 0) {
function stringify (line 515) | function stringify(arr, offset = 0) {
function handleUDPOutBound (line 530) | async function handleUDPOutBound(webSocket, vlessResponseHeader, log) {
function getVLESSConfig (line 602) | function getVLESSConfig(userID, hostName) {
FILE: src/worker-with-socks5-experimental.js
method fetch (line 30) | async fetch(request, env, ctx) {
function vlessOverWSHandler (line 80) | async function vlessOverWSHandler(request) {
function handleTCPOutBound (line 185) | async function handleTCPOutBound(remoteSocket, addressType, addressRemot...
function makeReadableWebSocketStream (line 230) | function makeReadableWebSocketStream(webSocketServer, earlyDataHeader, l...
function processVlessHeader (line 299) | function processVlessHeader(
function remoteSocketToWS (line 420) | async function remoteSocketToWS(remoteSocket, webSocket, vlessResponseHe...
function base64ToArrayBuffer (line 488) | function base64ToArrayBuffer(base64Str) {
function isValidUUID (line 507) | function isValidUUID(uuid) {
constant WS_READY_STATE_OPEN (line 512) | const WS_READY_STATE_OPEN = 1;
constant WS_READY_STATE_CLOSING (line 513) | const WS_READY_STATE_CLOSING = 2;
function safeCloseWebSocket (line 518) | function safeCloseWebSocket(socket) {
function unsafeStringify (line 532) | function unsafeStringify(arr, offset = 0) {
function stringify (line 535) | function stringify(arr, offset = 0) {
function handleDNSQuery (line 550) | async function handleDNSQuery(udpChunk, webSocket, vlessResponseHeader, ...
function socks5Connect (line 600) | async function socks5Connect(addressType, addressRemote, portRemote, log) {
function socks5AddressParser (line 737) | function socks5AddressParser(address) {
function getVLESSConfig (line 771) | function getVLESSConfig(userID, hostName) {
FILE: test/cidr.js
function isIPv4InCFCIDR (line 1) | function isIPv4InCFCIDR(ip) {
function convertIp2Num (line 20) | function convertIp2Num(ip){
FILE: test/webstream.mjs
method start (line 3) | start(controller) {
method pull (line 29) | async pull(controller) {
method cancel (line 33) | cancel() {
method write (line 40) | write(chunk, controller) {
method close (line 62) | close() {
method abort (line 65) | abort() {
FILE: test/worker/cf-cdn-cgi-trace.js
method fetch (line 2) | async fetch(request, env, ctx) {
FILE: test/worker/cf-worker-http-header.js
method fetch (line 8) | async fetch(request, env, ctx) {
FILE: test/worker/cidr.js
method fetch (line 6) | async fetch(request, env, ctx) {
function checkIPInCIDR (line 17) | function checkIPInCIDR(ip, cidr) {
function delay (line 29) | function delay(ms) {
function isIPv4InRange (line 44) | function isIPv4InRange(address, cidr) {
function isIPv6InRange (line 72) | function isIPv6InRange(address, cidr) {
FILE: test/worker/ipaddr-test.js
method fetch (line 8) | async fetch(request, env, ctx) {
function expandIPv6 (line 62) | function expandIPv6 (string, parts) {
function matchCIDR (line 136) | function matchCIDR (first, second, partSize, cidrBits) {
function parseIntAuto (line 161) | function parseIntAuto (string) {
function padPart (line 179) | function padPart (part, length) {
function IPv4 (line 194) | function IPv4 (octets) {
function IPv6 (line 534) | function IPv6 (parts, zoneId) {
FILE: test/worker/stream-ws-test.js
method fetch (line 2) | async fetch(request, env, ctx) {
FILE: test/worker/worker-connect-test.js
method fetch (line 4) | async fetch(request, env, ctx) {
function delay (line 74) | function delay(timeout) {
FILE: test/worker/ws-send-issue.js
method fetch (line 4) | async fetch(request, env, ctx) {
function delay (line 56) | function delay(ms) {
Condensed preview — 25 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (294K chars).
[
{
"path": ".github/workflows/docs.yml",
"chars": 1368,
"preview": "name: docs\n\non:\n # trigger deployment on every push to main branch\n push:\n branches: [docs]\n # trigger deployment "
},
{
"path": ".github/workflows/node-vless-docker.yml",
"chars": 1052,
"preview": "name: node-vless-docker\non:\n workflow_dispatch:\njobs:\n build:\n runs-on: ubuntu-latest\n steps:\n - name: Chec"
},
{
"path": ".github/workflows/nodejs.yml",
"chars": 1551,
"preview": "# This is a basic workflow to help you get started with Actions\n\nname: npm-install\n\n# Controls when the action will run."
},
{
"path": ".github/workflows/remove-old-artifacts.yml",
"chars": 410,
"preview": "name: Remove old artifacts\n\non:\n workflow_dispatch:\n\njobs:\n remove-old-artifacts:\n runs-on: ubuntu-latest\n timeo"
},
{
"path": ".github/workflows/version-comment.yml",
"chars": 977,
"preview": "name: Add Version Comment\n\non:\n # trigger deployment on every push to main branch\n push:\n branches: [main]\n # trig"
},
{
"path": ".gitignore",
"chars": 50,
"preview": ".DS_Store\n/node_modules\n*-lock.*\n*.lock\n*.log\ndist"
},
{
"path": "LICENSE",
"chars": 18092,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Fr"
},
{
"path": "README.md",
"chars": 7,
"preview": "------\n"
},
{
"path": "config/config-client-with-dns-lcoal.json",
"chars": 1307,
"preview": "{\n \"log\": {\n \"loglevel\": \"debug\"\n },\n \"inbounds\": [\n {\n \"listen\": \"0.0.0.0\",\n \"port\": \"4080\",\n \""
},
{
"path": "config/config-client-without-dns-lcoal.json",
"chars": 1320,
"preview": "{\n \"log\": {\n \"loglevel\": \"debug\"\n },\n \"inbounds\": [\n {\n \"listen\": \"0.0.0.0\",\n \"port\": \"4080\",\n \""
},
{
"path": "jsonconfig.json",
"chars": 342,
"preview": "{\n\t\"compilerOptions\": {\n\t\t\"noEmit\": true,\n\t\t\"module\": \"esnext\",\n\t\t\"target\": \"ES2022\",\n\t\t\"lib\": [\"ES2022\"],\n\t\t\"strict\": t"
},
{
"path": "package.json",
"chars": 750,
"preview": "{\n \"name\": \"edgetunnel\",\n \"version\": \"1.0.0\",\n \"description\": \"Delete code, but keep the project for the sake of memo"
},
{
"path": "src/worker-vless.js",
"chars": 18745,
"preview": "// <!--GAMFC-->version base on commit 58686d5d125194d34a1137913b3a64ddcf55872f, time is 2024-11-27 09:26:01 UTC<!--GAMFC"
},
{
"path": "src/worker-with-socks5-experimental.js",
"chars": 23522,
"preview": "// <!--GAMFC-->version base on commit 58686d5d125194d34a1137913b3a64ddcf55872f, time is 2024-11-27 09:26:02 UTC<!--GAMFC"
},
{
"path": "test/cidr.js",
"chars": 149229,
"preview": "function isIPv4InCFCIDR(ip) {\n\tconst currentIPNum = convertIp2Num(ip);\n\t// if not valid number, return false\n\tif(!curren"
},
{
"path": "test/webstream.mjs",
"chars": 2026,
"preview": "let isCancel = false;\nconst readableStream = new ReadableStream({\n start(controller) {\n let count = 0;\n controlle"
},
{
"path": "test/worker/cf-cdn-cgi-trace.js",
"chars": 387,
"preview": "export default {\n\tasync fetch(request, env, ctx) {\n const url = new URL(request.url);\n const address = ur"
},
{
"path": "test/worker/cf-worker-http-header.js",
"chars": 638,
"preview": "export default {\n\t/**\n\t * @param {import(\"@cloudflare/workers-types\").Request} request\n\t * @param {{uuid: string}} env\n\t"
},
{
"path": "test/worker/cidr.js",
"chars": 2723,
"preview": "\nimport IPCIDR from 'ip-cidr';\n\nconst chunk = '0'.repeat(1024 * 5);\nexport default {\n async fetch(request, env, ctx) "
},
{
"path": "test/worker/ipaddr-test.js",
"chars": 34991,
"preview": "export default {\n\t/**\n\t * @param {import(\"@cloudflare/workers-types\").Request} request\n\t * @param {{uuid: string}} env\n\t"
},
{
"path": "test/worker/stream-ws-test.js",
"chars": 1748,
"preview": "export default {\n async fetch(request, env, ctx) {\n const upgradeHeader = request.headers.get('Upgrade');\n "
},
{
"path": "test/worker/worker-connect-test.js",
"chars": 2248,
"preview": "import { connect } from 'cloudflare:sockets';\n\nexport default {\n async fetch(request, env, ctx) {\n console.log('star"
},
{
"path": "test/worker/wrangler.toml",
"chars": 142,
"preview": "name = \"cf-worker-http-header\" # todo\nmain = \"./cf-worker-http-header.js\"\ncompatibility_date = \"2023-05-26\"\n\n[vars]\nUUID"
},
{
"path": "test/worker/ws-send-issue.js",
"chars": 2065,
"preview": "\nconst chunk = '0'.repeat(1024 * 5);\nexport default {\n async fetch(request, env, ctx) {\n try {\n con"
},
{
"path": "wrangler.toml",
"chars": 268,
"preview": "name = \"cf-worker-ws-dev-0415\" # todo\n#name = \"cf-worker-connect-test\" # todo\n#main = \"test/worker/cf-cdn-cgi-trace2.js\""
}
]
About this extraction
This page contains the full source code of the zizifn/edgetunnel GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 25 files (259.7 KB), approximately 109.8k tokens, and a symbol index with 59 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.