├── .gitignore ├── LICENSE ├── Readme.md ├── bjdns3 ├── cache.py ├── cn_ip.txt ├── gfwlist.txt ├── gfwlistcheck.py ├── gfwlistcheck_test.py ├── ipincn.py ├── requirements.txt ├── supervisor_bjdns_example.conf ├── utils.py ├── utils_test.py └── whitelist.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | env/ 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | *.egg-info/ 23 | .installed.cfg 24 | *.egg 25 | 26 | # PyInstaller 27 | # Usually these files are written by a python script from a template 28 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 29 | *.manifest 30 | *.spec 31 | 32 | # Installer logs 33 | pip-log.txt 34 | pip-delete-this-directory.txt 35 | 36 | # Unit test / coverage reports 37 | htmlcov/ 38 | .tox/ 39 | .coverage 40 | .coverage.* 41 | .cache 42 | nosetests.xml 43 | coverage.xml 44 | *,cover 45 | 46 | # Translations 47 | *.mo 48 | *.pot 49 | 50 | # Django stuff: 51 | *.log 52 | 53 | # Sphinx documentation 54 | docs/_build/ 55 | 56 | # PyBuilder 57 | target/ 58 | 59 | 60 | bjdns_sakura2.py 61 | bjdns_sakura.py 62 | dnsbytes.txt 63 | bjdns_v2.py 64 | dnserver.py 65 | bjdns_sakura1.py 66 | cache.txt 67 | bjdns.7z 68 | bjdns_openshift.py 69 | bjdns.conf 70 | bjdns_old.py 71 | test.py 72 | ad/ 73 | test1.py 74 | test.sh 75 | *.bak 76 | testpool.py 77 | bjdns2_config.py 78 | config.json 79 | .idea/ 80 | bjdns2/ 81 | config.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # BJDNS3 2 | 3 | BJDNS3 is a simple DNS server which can protect yourself against DNS poisoning for Chinese general user. 4 | 5 | ## Usage 6 | 7 | 1. Install Python3: 8 | ``` 9 | $ sudo apt install python3 python3-pip 10 | ``` 11 | 12 | 2. Clone: 13 | ``` 14 | $ git clone https://github.com/bieberg0n/bjdns.git 15 | $ cd bjdns/ 16 | ``` 17 | 18 | 3. Install requires: 19 | ``` 20 | $ sudo pip3 install -r requirements.txt 21 | ``` 22 | 23 | 4. Client usage: 24 | ``` 25 | $ ./bjdns3 -h 26 | Usage: 27 | bjdns3 [--debug] [-d ] [-l ] 28 | 29 | Examples: 30 | bjdns3 -d "119.29.29.29" 31 | 32 | Options: 33 | -h --help Show this screen 34 | -d DIRECT_DNS_SERVER dns server for Chinese host. default: 119.29.29.29, 114.114.114.114 35 | -l LISTEN_IP_PORT listen ip and port. default: 0.0.0.0:53 36 | --debug debug mode 37 | ``` 38 | 39 | Run: 40 | ``` 41 | $ sudo ./bjdns3 42 | ``` 43 | 44 | 5. Test: 45 | ``` 46 | dig www.twitter.com @127.0.0.1 47 | ``` 48 | 49 | 6. Now you can set your system's dns to "127.0.0.1". 50 | 51 | ## Thanks 52 | The file **whitelist.json** is modified from the file in [breakwa11](https://github.com/breakwa11)'s [gfw_whitelist](https://github.com/breakwa11/gfw_whitelist) project. The project uses [MIT](https://github.com/breakwa11/gfw_whitelist/blob/master/LICENSE) license. 53 | 54 | The file **gfwlist.txt** is from [gfwlist](https://github.com/gfwlist/gfwlist) .The project uses [LGPL-2.1](https://github.com/gfwlist/gfwlist/blob/master/COPYING.txt) license. 55 | 56 | ## License (GNU GPL3.0) 57 | Copyright (c) 2017-2019 bjong 58 | -------------------------------------------------------------------------------- /bjdns3: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | """bjdns3.py 4 | 5 | Usage: 6 | bjdns3.py [--debug] [-d ] [-l ] 7 | 8 | Examples: 9 | bjdns3.py -d "119.29.29.29" 10 | 11 | Options: 12 | -h --help Show this screen 13 | -d DIRECT_DNS_SERVER dns server, be used when query type is not A 14 | -l LISTEN_IP_PORT listen ip and port 15 | --debug debug mode 16 | """ 17 | 18 | import re 19 | import dnslib 20 | from docopt import docopt 21 | import json 22 | from struct import ( 23 | unpack, 24 | pack, 25 | ) 26 | from gevent import ( 27 | socket, 28 | monkey, 29 | ) 30 | from gevent.server import DatagramServer 31 | from cache import Cache 32 | from ipincn import CnIpChecker 33 | import gfwlistcheck 34 | from utils import ( 35 | empty, 36 | info, 37 | resp_from_json, 38 | ) 39 | monkey.patch_all() 40 | import requests 41 | 42 | 43 | class CnHostChecker: 44 | def __init__(self): 45 | with open('whitelist.json') as f: 46 | txt = f.read() 47 | self.whitelist = json.loads(txt) 48 | 49 | def is_cn_host(self, host): 50 | h = [part for part in reversed(host.split('.')) if part] 51 | 52 | if h[0] == 'cn': 53 | return True 54 | elif len(h) > 1: 55 | return self.whitelist.get(h[0], {}).get(h[1]) == 1 56 | else: 57 | return False 58 | 59 | 60 | def query_by_tcp(dns_ip, port, req_data): 61 | data = pack('>H', len(req_data)) + req_data 62 | 63 | s = socket.socket() 64 | s.connect((dns_ip, port)) 65 | s.sendall(data) 66 | res = s.recv(2048) 67 | 68 | s.close() 69 | if len(res) <= 2: 70 | return b'' 71 | else: 72 | return res[2:] 73 | 74 | 75 | def query_by_udp(dns_ip, raw_data, timeout=3.0): 76 | with socket.socket(2, 2) as s: 77 | s.settimeout(timeout) 78 | s.sendto(raw_data, (dns_ip, 53)) 79 | res = s.recv(512) 80 | return res 81 | 82 | 83 | def ip_from_resp(resp): 84 | p = re.compile(b'\xc0.\x00\x01\x00\x01') 85 | 86 | try: 87 | res = p.split(resp)[1] 88 | ip_bytes = unpack('BBBB', res[6:10]) 89 | ip = '.'.join([str(i) for i in ip_bytes]) 90 | except IndexError as e: 91 | info('get ip from resp error:', e) 92 | ip = '' 93 | 94 | return ip 95 | 96 | 97 | class DNSRequest: 98 | def __init__(self, raw_data, src_addr): 99 | self.raw_data = raw_data 100 | self.q_id = raw_data[:2] 101 | self.src = src_addr 102 | 103 | list_iter = iter(raw_data[13:]) 104 | name = '' 105 | for bit in iter(lambda: next(list_iter), 0): 106 | name += '.' if bit < 32 else chr(bit) 107 | 108 | self.domain_name = name 109 | 110 | q_type = unpack('>H', raw_data[14+len(name):16+len(name)]) 111 | self.type = q_type[0] 112 | self.question = dict(name=name, type=q_type) 113 | 114 | 115 | class DNSResponse: 116 | def __init__(self, record=None, ip='', ttl=0, q_data=b''): 117 | if record: 118 | self.raw = record.pack() 119 | 120 | rs = record.rr 121 | rs.extend(record.ar) 122 | 123 | for r in rs: 124 | if r.rtype == 1: 125 | self.ip = str(r.rdata) 126 | self.ttl = r.ttl 127 | return 128 | else: 129 | self.ip = '' 130 | self.ttl = 3600 131 | 132 | else: 133 | self.ip = ip 134 | self.ttl = ttl 135 | self.raw = make_data(q_data, ip, ttl) 136 | 137 | 138 | def make_data(data, ip, ttl): 139 | # data is request 140 | if ip: 141 | q_id, flags, quests, answers, author, addition = unpack('>HHHHHH', data[0:12]) 142 | flags_new = 33152 143 | answers_new = 1 144 | res = pack('>HHHHHH', q_id, flags_new, quests, answers_new, author, addition) 145 | 146 | res += data[12:] 147 | 148 | dns_answer = { 149 | 'name': 49164, 150 | 'type': 1, 151 | 'classify': 1, 152 | 'ttl': ttl, 153 | 'datalength': 4 154 | } 155 | res += pack('>HHHLH', 156 | dns_answer['name'], 157 | dns_answer['type'], 158 | dns_answer['classify'], 159 | dns_answer['ttl'], 160 | dns_answer['datalength']) 161 | 162 | ip = ip.split('.') 163 | ip_bytes = pack('BBBB', int(ip[0]), int(ip[1]), int(ip[2]), int(ip[3])) 164 | 165 | res += ip_bytes 166 | return res 167 | 168 | else: 169 | return b'' 170 | 171 | 172 | class Bjdns: 173 | def __init__(self, listen_addr, direct_dns_serv): 174 | self.cache = Cache() 175 | 176 | if direct_dns_serv: 177 | self.cn_dns = [direct_dns_serv] 178 | else: 179 | self.cn_dns = [ 180 | '119.29.29.29', 181 | '114.114.114.114', 182 | ] 183 | 184 | info('direct dns server:', self.cn_dns) 185 | self.cn_checker = CnHostChecker() 186 | self.checker = CnIpChecker() 187 | 188 | self.gfw_list = gfwlistcheck.GfwList() 189 | 190 | ip, port_str = listen_addr.split(':') 191 | self.server = DatagramServer((ip, int(port_str)), self.handle) 192 | self.session = requests.Session() 193 | 194 | def multi_query_by_udp(self, raw_data): 195 | if len(self.cn_dns) == 1: 196 | return query_by_udp(self.cn_dns[0], raw_data) 197 | 198 | else: 199 | try: 200 | return query_by_udp(self.cn_dns[0], raw_data, 0.5) 201 | except Exception as e: 202 | info(e) 203 | return query_by_udp(self.cn_dns[1], raw_data) 204 | 205 | def query_by_cn(self, req: DNSRequest): 206 | raw_data = self.multi_query_by_udp(req.raw_data) 207 | record = dnslib.DNSRecord.parse(raw_data) 208 | return DNSResponse(record=record) 209 | 210 | def query_by_oversea(self, req: DNSRequest): 211 | url = 'https://1.1.1.1/dns-query?ct=application/dns-json&name={}&type=1'.format(req.domain_name) 212 | src_ip = req.src[0] 213 | try: 214 | r = self.session.get(url, timeout=5) 215 | result = json.loads(r.text) 216 | if result['Status'] == 0: 217 | ip, ttl = resp_from_json(result) 218 | else: 219 | ip, ttl = '', 0 220 | 221 | resp = DNSResponse(ip=ip, ttl=ttl, q_data=req.raw_data) 222 | 223 | except Exception as e: 224 | info(e) 225 | raw_data = query_by_tcp('208.67.220.220', 443, req.raw_data) 226 | record = dnslib.DNSRecord.parse(raw_data) 227 | resp = DNSResponse(record=record) 228 | 229 | self.cache.write(src_ip, req.question, resp) 230 | return resp 231 | 232 | def _query(self, req: DNSRequest) -> DNSResponse: 233 | src_ip = req.src[0] 234 | if self.gfw_list.check(req.domain_name): 235 | log('host is in gfw list') 236 | return self.query_by_oversea(req) 237 | 238 | else: 239 | resp = self.query_by_cn(req) 240 | 241 | if self.cn_checker.is_cn_host(req.domain_name) or self.checker.check(resp.ip): 242 | log('host is in cn') 243 | self.cache.write(src_ip, req.question, resp) 244 | return resp 245 | 246 | else: 247 | log('host is in oversea') 248 | return self.query_by_oversea(req) 249 | 250 | def query(self, req: DNSRequest) -> bytes: 251 | src_ip, _ = req.src 252 | cache_resp = self.cache.select(src_ip, req.question) 253 | 254 | if cache_resp: 255 | resp = DNSResponse(record=dnslib.DNSRecord.parse(cache_resp)) 256 | info(req.src, '[cache]', req.domain_name, resp.ip, '(ttl:{})'.format(resp.ttl)) 257 | # return make_data(req.raw_data, resp.ip, resp.ttl) 258 | # info(req.q_id + cache_resp[2:]) 259 | return req.q_id + cache_resp[2:] 260 | 261 | elif req.type == 1: 262 | resp = self._query(req) 263 | info(req.src, req.domain_name, resp.ip, '(ttl:{})'.format(resp.ttl)) 264 | return resp.raw 265 | 266 | else: 267 | info(req.src, '[Type:{}]'.format(req.type), req.domain_name) 268 | resp = self.query_by_cn(req) 269 | self.cache.write(src_ip, req.question, resp) 270 | return resp.raw 271 | 272 | def handle(self, data, cli_addr): 273 | req = DNSRequest(data, cli_addr) 274 | 275 | resp_data = self.query(req) 276 | 277 | self.server.sendto(resp_data, cli_addr) 278 | 279 | def start(self): 280 | info('bjdns3 start.') 281 | self.server.serve_forever() 282 | 283 | 284 | if __name__ == '__main__': 285 | args = docopt(__doc__) 286 | 287 | dns_serv = args.get('-d') 288 | listen = args.get('-l') 289 | debug_mode = args.get('--debug') 290 | 291 | if debug_mode: 292 | log = info 293 | else: 294 | log = empty 295 | 296 | if not listen: 297 | listen = '0.0.0.0:53' 298 | 299 | info('listen:', listen) 300 | bjdns = Bjdns(listen, dns_serv) 301 | bjdns.start() 302 | -------------------------------------------------------------------------------- /cache.py: -------------------------------------------------------------------------------- 1 | import time 2 | from utils import info 3 | 4 | 5 | def host_add_dot(host): 6 | if not host.endswith('.'): 7 | host += '.' 8 | return host 9 | 10 | 11 | class Cache: 12 | def __init__(self): 13 | self.cache = dict() 14 | 15 | def write(self, src_ip: str, question: map, resp) -> None: 16 | if not self.cache.get(src_ip): 17 | self.cache[src_ip] = dict() 18 | 19 | q_type, name = question.get('type'), host_add_dot(question.get('name')) 20 | key = (q_type, name) 21 | self.cache[src_ip][key] = dict() 22 | self.cache[src_ip][key]['mtime'] = int(time.time()) 23 | 24 | self.cache[src_ip][key]['data'] = resp.raw 25 | self.cache[src_ip][key]['ttl'] = resp.ttl 26 | 27 | def select(self, src_ip: str, question: map): 28 | dns_type, name = question.get('type'), question.get('name') 29 | name = host_add_dot(name) 30 | 31 | try: 32 | value = self.cache.get(src_ip).get((dns_type, name)) 33 | response = value.get('response') 34 | except Exception: 35 | return None 36 | else: 37 | now = time.time() 38 | if response: 39 | ttls = [answer['TTL'] for answer in value['response']['Answer']] 40 | resp = value['response'] 41 | else: 42 | resp = value['data'] 43 | ttls = [value['ttl']] 44 | 45 | for ttl in ttls: 46 | if now - value['mtime'] > ttl: 47 | info(question['name'], 'Need update') 48 | return None 49 | else: 50 | return resp 51 | -------------------------------------------------------------------------------- /cn_ip.txt: -------------------------------------------------------------------------------- 1 | 1.0.1.0/24 2 | 1.0.2.0/23 3 | 1.0.8.0/21 4 | 1.0.32.0/19 5 | 1.1.0.0/24 6 | 1.1.2.0/23 7 | 1.1.4.0/22 8 | 1.1.8.0/21 9 | 1.1.16.0/20 10 | 1.1.32.0/19 11 | 1.2.0.0/23 12 | 1.2.2.0/24 13 | 1.2.5.0/24 14 | 1.2.6.0/23 15 | 1.2.8.0/21 16 | 1.2.16.0/20 17 | 1.2.32.0/19 18 | 1.2.64.0/18 19 | 1.3.0.0/16 20 | 1.4.1.0/24 21 | 1.4.2.0/23 22 | 1.4.4.0/22 23 | 1.4.8.0/21 24 | 1.4.16.0/20 25 | 1.4.32.0/19 26 | 1.4.64.0/18 27 | 1.8.0.0/18 28 | 1.8.64.0/19 29 | 1.8.96.0/22 30 | 1.8.100.0/23 31 | 1.8.112.0/20 32 | 1.8.128.0/20 33 | 1.8.144.0/22 34 | 1.8.148.0/23 35 | 1.8.154.0/23 36 | 1.8.156.0/22 37 | 1.8.160.0/19 38 | 1.8.192.0/19 39 | 1.8.224.0/20 40 | 1.8.244.0/22 41 | 1.8.248.0/21 42 | 1.10.0.0/21 43 | 1.10.8.0/23 44 | 1.10.11.0/24 45 | 1.10.12.0/22 46 | 1.10.16.0/20 47 | 1.10.32.0/19 48 | 1.10.64.0/18 49 | 1.12.0.0/14 50 | 1.24.0.0/13 51 | 1.45.0.0/16 52 | 1.48.0.0/14 53 | 1.56.0.0/13 54 | 1.68.0.0/14 55 | 1.80.0.0/12 56 | 1.116.0.0/14 57 | 1.180.0.0/14 58 | 1.184.0.0/15 59 | 1.188.0.0/14 60 | 1.192.0.0/13 61 | 1.202.0.0/15 62 | 1.204.0.0/14 63 | 8.128.0.0/10 64 | 8.208.64.0/18 65 | 8.208.128.0/17 66 | 8.209.0.0/16 67 | 8.210.0.0/15 68 | 8.212.0.0/14 69 | 8.216.0.0/13 70 | 14.0.0.0/21 71 | 14.0.12.0/22 72 | 14.1.0.0/22 73 | 14.1.24.0/22 74 | 14.1.108.0/22 75 | 14.16.0.0/12 76 | 14.102.128.0/22 77 | 14.102.180.0/22 78 | 14.103.0.0/16 79 | 14.104.0.0/13 80 | 14.112.0.0/12 81 | 14.130.0.0/15 82 | 14.134.0.0/15 83 | 14.144.0.0/12 84 | 14.192.60.0/22 85 | 14.192.76.0/22 86 | 14.196.0.0/15 87 | 14.204.0.0/15 88 | 14.208.0.0/12 89 | 20.134.160.0/20 90 | 20.139.160.0/20 91 | 27.0.128.0/21 92 | 27.0.160.0/21 93 | 27.0.188.0/22 94 | 27.0.204.0/22 95 | 27.0.208.0/21 96 | 27.8.0.0/13 97 | 27.16.0.0/12 98 | 27.34.232.0/21 99 | 27.36.0.0/14 100 | 27.40.0.0/13 101 | 27.50.40.0/21 102 | 27.50.128.0/17 103 | 27.54.72.0/21 104 | 27.54.152.0/21 105 | 27.54.192.0/18 106 | 27.98.208.0/20 107 | 27.98.224.0/19 108 | 27.99.128.0/17 109 | 27.103.0.0/16 110 | 27.106.128.0/18 111 | 27.106.204.0/22 112 | 27.109.32.0/19 113 | 27.109.124.0/22 114 | 27.112.0.0/18 115 | 27.112.80.0/20 116 | 27.112.112.0/21 117 | 27.113.128.0/18 118 | 27.115.0.0/17 119 | 27.116.44.0/22 120 | 27.121.72.0/21 121 | 27.121.120.0/21 122 | 27.128.0.0/15 123 | 27.131.220.0/22 124 | 27.144.0.0/16 125 | 27.148.0.0/14 126 | 27.152.0.0/13 127 | 27.184.0.0/13 128 | 27.192.0.0/11 129 | 27.224.0.0/14 130 | 36.0.0.0/22 131 | 36.0.16.0/20 132 | 36.0.32.0/19 133 | 36.0.64.0/18 134 | 36.0.128.0/17 135 | 36.1.0.0/16 136 | 36.4.0.0/14 137 | 36.16.0.0/12 138 | 36.32.0.0/14 139 | 36.36.0.0/16 140 | 36.37.0.0/19 141 | 36.37.36.0/23 142 | 36.37.39.0/24 143 | 36.37.40.0/21 144 | 36.37.48.0/20 145 | 36.40.0.0/13 146 | 36.48.0.0/15 147 | 36.51.0.0/17 148 | 36.51.128.0/18 149 | 36.51.192.0/19 150 | 36.51.224.0/20 151 | 36.51.240.0/21 152 | 36.51.248.0/22 153 | 36.51.252.0/23 154 | 36.56.0.0/13 155 | 36.96.0.0/11 156 | 36.128.0.0/10 157 | 36.192.0.0/11 158 | 36.248.0.0/14 159 | 36.254.0.0/16 160 | 36.255.116.0/22 161 | 36.255.128.0/22 162 | 36.255.164.0/22 163 | 36.255.172.0/22 164 | 36.255.176.0/22 165 | 39.0.0.0/24 166 | 39.0.2.0/23 167 | 39.0.4.0/22 168 | 39.0.8.0/21 169 | 39.0.16.0/20 170 | 39.0.32.0/19 171 | 39.0.64.0/18 172 | 39.0.128.0/17 173 | 39.64.0.0/11 174 | 39.96.0.0/13 175 | 39.104.0.0/14 176 | 39.108.0.0/16 177 | 39.109.120.0/23 178 | 39.128.0.0/10 179 | 40.0.176.0/20 180 | 40.0.247.0/24 181 | 40.0.248.0/22 182 | 40.0.252.0/23 183 | 40.0.255.0/24 184 | 40.72.0.0/15 185 | 40.77.136.112/28 186 | 40.77.236.224/27 187 | 40.77.254.64/27 188 | 40.125.128.0/17 189 | 40.126.64.0/18 190 | 40.198.10.0/24 191 | 40.198.16.0/21 192 | 40.198.24.0/23 193 | 40.251.225.0/24 194 | 40.251.227.0/24 195 | 42.0.0.0/22 196 | 42.0.8.0/21 197 | 42.0.16.0/21 198 | 42.0.24.0/22 199 | 42.0.32.0/19 200 | 42.0.128.0/17 201 | 42.1.0.0/19 202 | 42.1.32.0/20 203 | 42.1.48.0/21 204 | 42.1.56.0/22 205 | 42.4.0.0/14 206 | 42.48.0.0/13 207 | 42.56.0.0/14 208 | 42.62.0.0/17 209 | 42.62.128.0/19 210 | 42.62.160.0/20 211 | 42.62.180.0/22 212 | 42.62.184.0/21 213 | 42.63.0.0/16 214 | 42.80.0.0/15 215 | 42.83.64.0/20 216 | 42.83.80.0/22 217 | 42.83.88.0/21 218 | 42.83.96.0/19 219 | 42.83.128.0/23 220 | 42.83.134.0/24 221 | 42.83.140.0/24 222 | 42.83.142.0/23 223 | 42.83.144.0/20 224 | 42.83.160.0/19 225 | 42.83.192.0/18 226 | 42.84.0.0/14 227 | 42.88.0.0/13 228 | 42.96.64.0/19 229 | 42.96.96.0/21 230 | 42.96.108.0/22 231 | 42.96.112.0/20 232 | 42.96.128.0/17 233 | 42.97.0.0/16 234 | 42.99.0.0/18 235 | 42.99.64.0/19 236 | 42.99.96.0/20 237 | 42.99.112.0/22 238 | 42.99.120.0/21 239 | 42.100.0.0/14 240 | 42.120.0.0/15 241 | 42.122.0.0/16 242 | 42.123.0.0/19 243 | 42.123.36.0/22 244 | 42.123.40.0/21 245 | 42.123.48.0/20 246 | 42.123.64.0/18 247 | 42.123.128.0/17 248 | 42.128.0.0/12 249 | 42.156.0.0/19 250 | 42.156.36.0/22 251 | 42.156.40.0/21 252 | 42.156.48.0/20 253 | 42.156.64.0/18 254 | 42.156.128.0/17 255 | 42.157.0.0/16 256 | 42.158.0.0/15 257 | 42.160.0.0/12 258 | 42.176.0.0/13 259 | 42.184.0.0/15 260 | 42.186.0.0/16 261 | 42.187.0.0/18 262 | 42.187.64.0/19 263 | 42.187.96.0/20 264 | 42.187.112.0/21 265 | 42.187.120.0/22 266 | 42.187.128.0/17 267 | 42.192.0.0/13 268 | 42.201.0.0/17 269 | 42.202.0.0/15 270 | 42.204.0.0/14 271 | 42.208.0.0/12 272 | 42.224.0.0/12 273 | 42.240.0.0/16 274 | 42.242.0.0/15 275 | 42.244.0.0/15 276 | 42.246.0.0/16 277 | 42.247.0.0/22 278 | 42.247.4.0/24 279 | 42.247.5.0/25 280 | 42.247.5.128/26 281 | 42.247.5.204/30 282 | 42.247.5.208/28 283 | 42.247.5.224/27 284 | 42.247.6.0/23 285 | 42.247.8.0/21 286 | 42.247.16.0/20 287 | 42.247.32.0/19 288 | 42.247.64.0/18 289 | 42.247.128.0/17 290 | 42.248.0.0/13 291 | 43.224.12.0/22 292 | 43.224.24.0/22 293 | 43.224.44.0/22 294 | 43.224.52.0/22 295 | 43.224.56.0/22 296 | 43.224.64.0/21 297 | 43.224.72.0/22 298 | 43.224.80.0/22 299 | 43.224.100.0/22 300 | 43.224.144.0/22 301 | 43.224.160.0/22 302 | 43.224.176.0/22 303 | 43.224.184.0/22 304 | 43.224.200.0/21 305 | 43.224.208.0/21 306 | 43.224.216.0/22 307 | 43.224.240.0/22 308 | 43.225.76.0/22 309 | 43.225.86.0/24 310 | 43.225.120.0/22 311 | 43.225.180.0/22 312 | 43.225.208.0/22 313 | 43.225.216.0/21 314 | 43.225.224.0/20 315 | 43.225.240.0/21 316 | 43.225.252.0/22 317 | 43.226.32.0/19 318 | 43.226.64.0/19 319 | 43.226.96.0/20 320 | 43.226.112.0/21 321 | 43.226.120.0/22 322 | 43.226.128.0/19 323 | 43.226.160.0/21 324 | 43.226.236.0/22 325 | 43.226.240.0/20 326 | 43.227.0.0/21 327 | 43.227.8.0/22 328 | 43.227.32.0/19 329 | 43.227.64.0/19 330 | 43.227.104.0/22 331 | 43.227.136.0/21 332 | 43.227.144.0/22 333 | 43.227.152.0/21 334 | 43.227.160.0/20 335 | 43.227.176.0/21 336 | 43.227.188.0/22 337 | 43.227.192.0/19 338 | 43.227.232.0/22 339 | 43.227.248.0/21 340 | 43.228.0.0/18 341 | 43.228.64.0/21 342 | 43.228.76.0/22 343 | 43.228.100.0/22 344 | 43.228.116.0/24 345 | 43.228.118.0/23 346 | 43.228.132.0/22 347 | 43.228.136.0/22 348 | 43.228.148.0/22 349 | 43.228.152.0/22 350 | 43.228.188.0/22 351 | 43.229.40.0/22 352 | 43.229.49.0/24 353 | 43.229.50.0/23 354 | 43.229.56.0/22 355 | 43.229.96.0/22 356 | 43.229.136.0/21 357 | 43.229.168.0/21 358 | 43.229.176.0/20 359 | 43.229.192.0/21 360 | 43.229.216.0/21 361 | 43.229.232.0/21 362 | 43.230.20.0/22 363 | 43.230.32.0/22 364 | 43.230.68.0/22 365 | 43.230.72.0/22 366 | 43.230.84.0/22 367 | 43.230.124.0/22 368 | 43.230.220.0/22 369 | 43.230.224.0/19 370 | 43.231.12.0/22 371 | 43.231.32.0/20 372 | 43.231.80.0/20 373 | 43.231.96.0/20 374 | 43.231.136.0/21 375 | 43.231.144.0/20 376 | 43.231.160.0/20 377 | 43.231.176.0/21 378 | 43.236.0.0/15 379 | 43.238.0.0/16 380 | 43.239.0.0/19 381 | 43.239.32.0/20 382 | 43.239.48.0/22 383 | 43.239.116.0/22 384 | 43.239.120.0/22 385 | 43.239.172.0/22 386 | 43.240.0.0/22 387 | 43.240.56.0/21 388 | 43.240.68.0/22 389 | 43.240.72.0/21 390 | 43.240.84.0/22 391 | 43.240.124.0/23 392 | 43.240.127.0/24 393 | 43.240.128.0/21 394 | 43.240.136.0/22 395 | 43.240.156.0/22 396 | 43.240.160.0/19 397 | 43.240.192.0/19 398 | 43.240.240.0/20 399 | 43.241.0.0/20 400 | 43.241.16.0/21 401 | 43.241.48.0/22 402 | 43.241.76.0/22 403 | 43.241.80.0/20 404 | 43.241.112.0/22 405 | 43.241.168.0/21 406 | 43.241.176.0/21 407 | 43.241.184.0/22 408 | 43.241.208.0/20 409 | 43.241.224.0/20 410 | 43.241.240.0/22 411 | 43.241.248.0/22 412 | 43.242.8.0/21 413 | 43.242.16.0/20 414 | 43.242.48.0/22 415 | 43.242.53.0/24 416 | 43.242.54.0/23 417 | 43.242.56.0/21 418 | 43.242.64.0/22 419 | 43.242.72.0/21 420 | 43.242.80.0/20 421 | 43.242.96.0/22 422 | 43.242.144.0/20 423 | 43.242.160.0/21 424 | 43.242.180.0/22 425 | 43.242.188.0/22 426 | 43.242.192.0/21 427 | 43.242.204.0/22 428 | 43.242.216.0/21 429 | 43.242.252.0/22 430 | 43.243.4.0/22 431 | 43.243.8.0/21 432 | 43.243.16.0/22 433 | 43.243.88.0/22 434 | 43.243.128.0/22 435 | 43.243.136.0/22 436 | 43.243.144.0/21 437 | 43.243.156.0/22 438 | 43.243.180.0/22 439 | 43.243.228.0/22 440 | 43.243.232.0/22 441 | 43.243.244.0/22 442 | 43.246.0.0/18 443 | 43.246.64.0/19 444 | 43.246.96.0/22 445 | 43.246.228.0/22 446 | 43.247.4.0/22 447 | 43.247.8.0/22 448 | 43.247.44.0/22 449 | 43.247.48.0/22 450 | 43.247.68.0/22 451 | 43.247.76.0/22 452 | 43.247.84.0/22 453 | 43.247.88.0/21 454 | 43.247.96.0/21 455 | 43.247.108.0/22 456 | 43.247.112.0/22 457 | 43.247.148.0/22 458 | 43.247.152.0/22 459 | 43.247.176.0/20 460 | 43.247.196.0/22 461 | 43.247.200.0/21 462 | 43.247.208.0/20 463 | 43.247.224.0/19 464 | 43.248.0.0/21 465 | 43.248.20.0/22 466 | 43.248.28.0/22 467 | 43.248.48.0/22 468 | 43.248.76.0/22 469 | 43.248.80.0/20 470 | 43.248.96.0/19 471 | 43.248.128.0/20 472 | 43.248.144.0/21 473 | 43.248.176.0/20 474 | 43.248.192.0/20 475 | 43.248.208.0/22 476 | 43.248.228.0/22 477 | 43.248.232.0/22 478 | 43.248.244.0/22 479 | 43.249.4.0/22 480 | 43.249.120.0/22 481 | 43.249.132.0/22 482 | 43.249.136.0/22 483 | 43.249.144.0/20 484 | 43.249.160.0/21 485 | 43.249.168.0/22 486 | 43.249.192.0/22 487 | 43.249.236.0/22 488 | 43.250.4.0/22 489 | 43.250.12.0/22 490 | 43.250.16.0/21 491 | 43.250.28.0/22 492 | 43.250.32.0/22 493 | 43.250.96.0/20 494 | 43.250.112.0/21 495 | 43.250.128.0/22 496 | 43.250.144.0/21 497 | 43.250.160.0/22 498 | 43.250.168.0/22 499 | 43.250.176.0/22 500 | 43.250.200.0/22 501 | 43.250.212.0/22 502 | 43.250.216.0/21 503 | 43.250.236.0/22 504 | 43.250.244.0/22 505 | 43.251.4.0/22 506 | 43.251.12.0/22 507 | 43.251.36.0/22 508 | 43.251.192.0/22 509 | 43.251.232.0/22 510 | 43.251.244.0/22 511 | 43.252.48.0/22 512 | 43.252.56.0/22 513 | 43.252.224.0/22 514 | 43.254.0.0/21 515 | 43.254.8.0/22 516 | 43.254.24.0/22 517 | 43.254.36.0/22 518 | 43.254.44.0/22 519 | 43.254.52.0/22 520 | 43.254.64.0/22 521 | 43.254.72.0/22 522 | 43.254.84.0/22 523 | 43.254.88.0/21 524 | 43.254.100.0/22 525 | 43.254.104.0/22 526 | 43.254.112.0/21 527 | 43.254.128.0/22 528 | 43.254.136.0/21 529 | 43.254.144.0/20 530 | 43.254.168.0/21 531 | 43.254.180.0/22 532 | 43.254.184.0/21 533 | 43.254.192.0/22 534 | 43.254.200.0/22 535 | 43.254.208.0/22 536 | 43.254.220.0/22 537 | 43.254.224.0/20 538 | 43.254.240.0/22 539 | 43.254.248.0/21 540 | 43.255.0.0/21 541 | 43.255.8.0/22 542 | 43.255.16.0/22 543 | 43.255.48.0/22 544 | 43.255.64.0/20 545 | 43.255.84.0/22 546 | 43.255.96.0/22 547 | 43.255.144.0/22 548 | 43.255.176.0/22 549 | 43.255.184.0/22 550 | 43.255.192.0/22 551 | 43.255.200.0/21 552 | 43.255.208.0/21 553 | 43.255.224.0/21 554 | 43.255.232.0/22 555 | 43.255.244.0/22 556 | 45.40.192.0/20 557 | 45.40.224.0/19 558 | 45.65.16.0/20 559 | 45.112.132.0/22 560 | 45.112.188.0/22 561 | 45.112.208.0/22 562 | 45.112.216.0/21 563 | 45.112.228.0/22 564 | 45.112.232.0/21 565 | 45.113.12.0/22 566 | 45.113.16.0/20 567 | 45.113.40.0/22 568 | 45.113.52.0/22 569 | 45.113.72.0/22 570 | 45.113.144.0/21 571 | 45.113.168.0/22 572 | 45.113.184.0/22 573 | 45.113.200.0/21 574 | 45.113.208.0/20 575 | 45.113.228.0/22 576 | 45.113.240.0/22 577 | 45.113.252.0/22 578 | 45.114.0.0/22 579 | 45.114.32.0/22 580 | 45.114.40.0/22 581 | 45.114.52.0/22 582 | 45.114.96.0/22 583 | 45.114.136.0/22 584 | 45.114.196.0/22 585 | 45.114.200.0/22 586 | 45.114.228.0/22 587 | 45.114.236.0/22 588 | 45.114.252.0/22 589 | 45.115.44.0/22 590 | 45.115.100.0/22 591 | 45.115.120.0/22 592 | 45.115.132.0/22 593 | 45.115.144.0/22 594 | 45.115.156.0/22 595 | 45.115.164.0/22 596 | 45.115.200.0/22 597 | 45.115.212.0/22 598 | 45.115.216.0/22 599 | 45.115.244.0/22 600 | 45.115.248.0/22 601 | 45.116.16.0/21 602 | 45.116.24.0/22 603 | 45.116.32.0/21 604 | 45.116.52.0/22 605 | 45.116.96.0/21 606 | 45.116.140.0/22 607 | 45.116.152.0/22 608 | 45.116.208.0/22 609 | 45.117.8.0/22 610 | 45.117.20.0/22 611 | 45.117.68.0/22 612 | 45.117.124.0/22 613 | 45.117.252.0/22 614 | 45.119.60.0/22 615 | 45.119.64.0/21 616 | 45.119.72.0/22 617 | 45.119.104.0/22 618 | 45.119.232.0/22 619 | 45.120.100.0/22 620 | 45.120.140.0/22 621 | 45.120.164.0/22 622 | 45.120.180.128/27 623 | 45.120.240.0/22 624 | 45.121.52.0/22 625 | 45.121.64.0/21 626 | 45.121.72.0/22 627 | 45.121.92.0/22 628 | 45.121.96.0/22 629 | 45.121.172.0/22 630 | 45.121.176.0/22 631 | 45.121.240.0/20 632 | 45.122.0.0/19 633 | 45.122.32.0/21 634 | 45.122.40.0/22 635 | 45.122.60.0/22 636 | 45.122.64.0/19 637 | 45.122.96.0/20 638 | 45.122.112.0/21 639 | 45.122.160.0/19 640 | 45.122.192.0/20 641 | 45.122.208.0/21 642 | 45.122.216.0/22 643 | 45.123.28.0/22 644 | 45.123.32.0/21 645 | 45.123.44.0/22 646 | 45.123.48.0/20 647 | 45.123.64.0/20 648 | 45.123.80.0/21 649 | 45.123.120.0/22 650 | 45.123.128.0/21 651 | 45.123.136.0/22 652 | 45.123.148.0/22 653 | 45.123.152.0/21 654 | 45.123.164.0/22 655 | 45.123.168.0/21 656 | 45.123.176.0/21 657 | 45.123.184.0/22 658 | 45.123.204.0/22 659 | 45.123.212.0/22 660 | 45.123.224.0/19 661 | 45.124.0.0/22 662 | 45.124.20.0/22 663 | 45.124.28.0/22 664 | 45.124.32.0/21 665 | 45.124.44.0/22 666 | 45.124.68.0/22 667 | 45.124.76.0/22 668 | 45.124.80.0/22 669 | 45.124.100.0/22 670 | 45.124.124.0/22 671 | 45.124.172.0/22 672 | 45.124.176.0/22 673 | 45.124.208.0/22 674 | 45.124.248.0/22 675 | 45.125.24.0/22 676 | 45.125.44.0/22 677 | 45.125.52.0/22 678 | 45.125.56.0/22 679 | 45.125.76.0/22 680 | 45.125.80.0/20 681 | 45.125.96.0/21 682 | 45.125.136.0/22 683 | 45.126.48.0/21 684 | 45.126.108.0/22 685 | 45.126.112.0/21 686 | 45.126.120.0/22 687 | 45.126.220.0/22 688 | 45.127.8.0/21 689 | 45.127.128.0/22 690 | 45.127.144.0/21 691 | 45.127.156.0/22 692 | 45.248.8.0/22 693 | 45.248.80.0/22 694 | 45.248.88.0/22 695 | 45.248.96.0/20 696 | 45.248.128.0/21 697 | 45.248.204.0/22 698 | 45.248.208.0/20 699 | 45.248.224.0/19 700 | 45.249.0.0/21 701 | 45.249.12.0/22 702 | 45.249.16.0/20 703 | 45.249.32.0/21 704 | 45.249.112.0/22 705 | 45.249.188.0/22 706 | 45.249.192.0/20 707 | 45.249.208.0/21 708 | 45.250.12.0/22 709 | 45.250.16.0/22 710 | 45.250.28.0/22 711 | 45.250.32.0/21 712 | 45.250.40.0/22 713 | 45.250.76.0/22 714 | 45.250.80.0/20 715 | 45.250.96.0/22 716 | 45.250.104.0/21 717 | 45.250.112.0/20 718 | 45.250.128.0/20 719 | 45.250.144.0/21 720 | 45.250.152.0/22 721 | 45.250.164.0/22 722 | 45.250.180.0/22 723 | 45.250.184.0/21 724 | 45.250.192.0/22 725 | 45.251.0.0/22 726 | 45.251.8.0/22 727 | 45.251.16.0/21 728 | 45.251.52.0/22 729 | 45.251.84.0/22 730 | 45.251.88.0/21 731 | 45.251.96.0/21 732 | 45.251.120.0/21 733 | 45.251.137.0/24 734 | 45.251.138.0/23 735 | 45.251.140.0/22 736 | 45.251.144.0/20 737 | 45.251.160.0/19 738 | 45.251.192.0/19 739 | 45.251.224.0/22 740 | 45.252.0.0/19 741 | 45.252.32.0/20 742 | 45.252.48.0/22 743 | 45.252.84.0/22 744 | 45.252.88.0/21 745 | 45.252.96.0/19 746 | 45.252.128.0/19 747 | 45.252.160.0/20 748 | 45.252.176.0/22 749 | 45.252.192.0/19 750 | 45.252.224.0/21 751 | 45.252.232.0/22 752 | 45.253.0.0/18 753 | 45.253.64.0/20 754 | 45.253.80.0/21 755 | 45.253.92.0/22 756 | 45.253.96.0/20 757 | 45.253.112.0/21 758 | 45.253.120.0/22 759 | 45.253.130.0/23 760 | 45.253.132.0/22 761 | 45.253.136.0/21 762 | 45.253.144.0/20 763 | 45.253.160.0/19 764 | 45.253.192.0/18 765 | 45.254.0.0/20 766 | 45.254.16.0/21 767 | 45.254.28.0/22 768 | 45.254.40.0/22 769 | 45.254.48.0/20 770 | 45.254.64.0/18 771 | 45.254.128.0/18 772 | 45.254.192.0/19 773 | 45.254.224.0/21 774 | 45.254.236.0/22 775 | 45.254.240.0/22 776 | 45.254.248.0/22 777 | 45.255.0.0/18 778 | 45.255.64.0/19 779 | 45.255.96.0/20 780 | 45.255.112.0/21 781 | 45.255.120.0/22 782 | 45.255.136.0/21 783 | 45.255.144.0/20 784 | 45.255.160.0/19 785 | 45.255.192.0/19 786 | 45.255.224.0/20 787 | 45.255.240.0/21 788 | 45.255.248.0/22 789 | 46.61.179.170/31 790 | 46.248.24.0/23 791 | 47.92.0.0/14 792 | 47.96.0.0/11 793 | 49.4.0.0/14 794 | 49.51.56.0/22 795 | 49.51.60.0/23 796 | 49.51.110.0/23 797 | 49.51.112.0/20 798 | 49.52.0.0/14 799 | 49.64.0.0/11 800 | 49.112.0.0/13 801 | 49.120.0.0/14 802 | 49.128.0.0/24 803 | 49.128.2.0/23 804 | 49.128.4.0/22 805 | 49.140.0.0/15 806 | 49.152.0.0/14 807 | 49.208.0.0/14 808 | 49.220.0.0/14 809 | 49.232.0.0/14 810 | 49.239.0.0/18 811 | 49.239.192.0/18 812 | 52.80.0.0/15 813 | 52.82.0.0/17 814 | 52.82.128.0/19 815 | 52.82.176.0/21 816 | 52.82.184.0/23 817 | 52.82.187.0/24 818 | 52.82.188.0/22 819 | 52.82.192.0/18 820 | 52.83.0.0/16 821 | 52.94.249.0/27 822 | 52.95.216.104/30 823 | 52.130.0.0/15 824 | 54.222.0.0/15 825 | 54.231.208.0/20 826 | 54.240.224.0/24 827 | 57.92.96.0/20 828 | 58.14.0.0/15 829 | 58.16.0.0/13 830 | 58.24.0.0/15 831 | 58.30.0.0/15 832 | 58.32.0.0/11 833 | 58.65.232.0/21 834 | 58.66.0.0/15 835 | 58.68.128.0/19 836 | 58.68.160.0/23 837 | 58.68.163.0/24 838 | 58.68.164.0/22 839 | 58.68.179.0/24 840 | 58.68.180.0/24 841 | 58.68.200.0/21 842 | 58.68.208.0/20 843 | 58.68.224.0/19 844 | 58.82.0.0/17 845 | 58.83.0.0/16 846 | 58.87.64.0/18 847 | 58.99.128.0/17 848 | 58.100.0.0/15 849 | 58.116.0.0/14 850 | 58.128.0.0/13 851 | 58.144.0.0/16 852 | 58.154.0.0/15 853 | 58.192.0.0/11 854 | 58.240.0.0/12 855 | 59.32.0.0/11 856 | 59.64.0.0/12 857 | 59.80.0.0/15 858 | 59.82.0.0/16 859 | 59.83.0.0/18 860 | 59.83.132.0/22 861 | 59.83.136.0/21 862 | 59.83.144.0/20 863 | 59.83.160.0/19 864 | 59.83.192.0/18 865 | 59.107.0.0/16 866 | 59.108.0.0/14 867 | 59.151.0.0/17 868 | 59.152.16.0/20 869 | 59.152.36.0/22 870 | 59.152.64.0/20 871 | 59.152.112.0/21 872 | 59.153.4.0/22 873 | 59.153.32.0/22 874 | 59.153.64.0/21 875 | 59.153.72.0/22 876 | 59.153.92.0/22 877 | 59.153.136.0/22 878 | 59.153.152.0/21 879 | 59.153.164.0/22 880 | 59.153.168.0/21 881 | 59.153.176.0/20 882 | 59.153.192.0/22 883 | 59.155.0.0/16 884 | 59.172.0.0/14 885 | 59.191.0.0/17 886 | 59.192.0.0/10 887 | 60.0.0.0/11 888 | 60.55.0.0/16 889 | 60.63.0.0/16 890 | 60.160.0.0/11 891 | 60.194.0.0/15 892 | 60.200.0.0/13 893 | 60.208.0.0/12 894 | 60.232.0.0/15 895 | 60.235.0.0/16 896 | 60.245.128.0/17 897 | 60.247.0.0/16 898 | 60.252.0.0/16 899 | 60.253.128.0/17 900 | 60.255.0.0/16 901 | 61.4.81.0/24 902 | 61.4.82.0/23 903 | 61.4.84.0/22 904 | 61.4.88.0/21 905 | 61.4.176.0/20 906 | 61.8.160.0/20 907 | 61.14.212.0/22 908 | 61.14.216.0/21 909 | 61.14.240.0/21 910 | 61.28.0.0/17 911 | 61.29.128.0/18 912 | 61.29.192.0/19 913 | 61.29.224.0/20 914 | 61.45.128.0/18 915 | 61.45.224.0/20 916 | 61.47.128.0/18 917 | 61.48.0.0/13 918 | 61.87.192.0/18 919 | 61.128.0.0/10 920 | 61.213.145.106/32 921 | 61.232.0.0/14 922 | 61.236.0.0/15 923 | 61.240.0.0/14 924 | 62.234.0.0/16 925 | 64.85.27.0/24 926 | 65.55.60.184/30 927 | 68.79.0.0/18 928 | 69.230.192.0/18 929 | 69.231.128.0/18 930 | 69.234.192.0/18 931 | 69.235.128.0/18 932 | 71.131.192.0/18 933 | 71.132.0.0/18 934 | 71.136.64.0/18 935 | 71.137.0.0/18 936 | 72.163.248.0/22 937 | 81.68.0.0/14 938 | 82.156.0.0/15 939 | 84.54.56.0/23 940 | 87.254.207.0/24 941 | 93.183.14.0/24 942 | 93.183.18.0/24 943 | 94.191.0.0/17 944 | 101.0.0.0/22 945 | 101.1.0.0/22 946 | 101.2.172.0/22 947 | 101.4.0.0/14 948 | 101.16.0.0/12 949 | 101.32.0.0/14 950 | 101.36.0.0/18 951 | 101.36.64.0/20 952 | 101.36.88.0/21 953 | 101.36.96.0/19 954 | 101.36.128.0/17 955 | 101.37.0.0/16 956 | 101.38.0.0/15 957 | 101.40.0.0/13 958 | 101.48.0.0/15 959 | 101.50.8.0/21 960 | 101.50.56.0/22 961 | 101.52.0.0/16 962 | 101.53.100.0/22 963 | 101.54.0.0/16 964 | 101.55.224.0/21 965 | 101.64.0.0/13 966 | 101.72.0.0/14 967 | 101.76.0.0/15 968 | 101.78.0.0/22 969 | 101.78.32.0/19 970 | 101.80.0.0/12 971 | 101.96.0.0/21 972 | 101.96.8.0/22 973 | 101.96.16.0/20 974 | 101.96.128.0/17 975 | 101.99.96.0/19 976 | 101.101.64.0/19 977 | 101.101.100.0/24 978 | 101.101.102.0/23 979 | 101.101.104.0/21 980 | 101.101.112.0/20 981 | 101.102.64.0/19 982 | 101.102.100.0/23 983 | 101.102.102.0/24 984 | 101.102.104.0/21 985 | 101.102.112.0/20 986 | 101.104.0.0/14 987 | 101.110.64.0/19 988 | 101.110.96.0/20 989 | 101.110.116.0/22 990 | 101.110.120.0/21 991 | 101.120.0.0/14 992 | 101.124.0.0/15 993 | 101.126.0.0/16 994 | 101.128.0.0/22 995 | 101.128.8.0/21 996 | 101.128.16.0/20 997 | 101.128.32.0/19 998 | 101.129.0.0/16 999 | 101.130.0.0/15 1000 | 101.132.0.0/15 1001 | 101.134.0.0/17 1002 | 101.134.128.0/19 1003 | 101.134.160.0/20 1004 | 101.134.176.0/21 1005 | 101.134.184.0/22 1006 | 101.134.189.0/24 1007 | 101.134.190.0/23 1008 | 101.134.192.0/18 1009 | 101.135.0.0/16 1010 | 101.144.0.0/12 1011 | 101.192.0.0/14 1012 | 101.196.0.0/16 1013 | 101.198.128.0/18 1014 | 101.198.196.0/23 1015 | 101.198.224.0/19 1016 | 101.199.0.0/19 1017 | 101.199.48.0/20 1018 | 101.199.64.0/18 1019 | 101.199.128.0/17 1020 | 101.200.0.0/15 1021 | 101.203.128.0/19 1022 | 101.203.160.0/21 1023 | 101.203.172.0/22 1024 | 101.203.176.0/20 1025 | 101.204.0.0/14 1026 | 101.224.0.0/13 1027 | 101.232.0.0/15 1028 | 101.234.64.0/21 1029 | 101.234.76.0/22 1030 | 101.234.80.0/20 1031 | 101.234.96.0/19 1032 | 101.236.0.0/14 1033 | 101.240.0.0/13 1034 | 101.248.0.0/15 1035 | 101.251.0.0/22 1036 | 101.251.8.0/21 1037 | 101.251.16.0/20 1038 | 101.251.32.0/19 1039 | 101.251.64.0/18 1040 | 101.251.128.0/17 1041 | 101.252.0.0/15 1042 | 101.254.0.0/16 1043 | 102.176.130.0/24 1044 | 103.1.8.0/22 1045 | 103.1.20.0/22 1046 | 103.1.24.0/22 1047 | 103.1.72.0/22 1048 | 103.1.88.0/22 1049 | 103.1.168.0/22 1050 | 103.2.108.0/22 1051 | 103.2.156.0/22 1052 | 103.2.164.0/22 1053 | 103.2.200.0/21 1054 | 103.2.208.0/21 1055 | 103.3.84.0/22 1056 | 103.3.88.0/21 1057 | 103.3.96.0/19 1058 | 103.3.128.0/20 1059 | 103.3.148.0/22 1060 | 103.3.152.0/21 1061 | 103.4.56.0/22 1062 | 103.4.168.0/22 1063 | 103.4.184.0/22 1064 | 103.5.36.0/22 1065 | 103.5.52.0/23 1066 | 103.5.56.0/22 1067 | 103.5.152.0/22 1068 | 103.5.168.0/22 1069 | 103.5.192.0/22 1070 | 103.5.252.0/22 1071 | 103.6.76.0/22 1072 | 103.6.108.0/22 1073 | 103.6.120.0/22 1074 | 103.6.220.0/22 1075 | 103.6.228.0/22 1076 | 103.7.140.0/22 1077 | 103.7.212.0/22 1078 | 103.7.216.0/21 1079 | 103.8.0.0/21 1080 | 103.8.8.0/22 1081 | 103.8.32.0/22 1082 | 103.8.52.0/22 1083 | 103.8.68.0/22 1084 | 103.8.108.0/22 1085 | 103.8.156.0/22 1086 | 103.8.200.0/21 1087 | 103.8.220.0/22 1088 | 103.9.8.0/22 1089 | 103.9.24.0/22 1090 | 103.9.108.0/22 1091 | 103.9.152.0/22 1092 | 103.9.248.0/21 1093 | 103.10.0.0/22 1094 | 103.10.16.0/22 1095 | 103.10.84.0/22 1096 | 103.10.111.0/24 1097 | 103.10.140.0/22 1098 | 103.11.16.0/22 1099 | 103.11.168.0/22 1100 | 103.11.180.0/22 1101 | 103.12.32.0/22 1102 | 103.12.136.0/22 1103 | 103.12.184.0/22 1104 | 103.12.232.0/22 1105 | 103.13.12.0/22 1106 | 103.13.124.0/22 1107 | 103.13.144.0/22 1108 | 103.13.196.0/22 1109 | 103.13.244.0/22 1110 | 103.14.84.0/22 1111 | 103.14.132.0/22 1112 | 103.14.136.0/22 1113 | 103.14.156.0/22 1114 | 103.14.240.0/22 1115 | 103.15.4.0/22 1116 | 103.15.8.0/22 1117 | 103.15.16.0/22 1118 | 103.15.96.0/22 1119 | 103.15.200.0/22 1120 | 103.16.52.0/22 1121 | 103.16.80.0/21 1122 | 103.16.88.0/22 1123 | 103.16.108.0/22 1124 | 103.16.124.0/22 1125 | 103.17.40.0/22 1126 | 103.17.64.0/22 1127 | 103.17.120.0/23 1128 | 103.17.136.0/22 1129 | 103.17.160.0/22 1130 | 103.17.204.0/22 1131 | 103.17.228.0/22 1132 | 103.18.192.0/22 1133 | 103.18.208.0/21 1134 | 103.18.224.0/22 1135 | 103.19.12.0/22 1136 | 103.19.40.0/21 1137 | 103.19.64.0/21 1138 | 103.19.72.0/22 1139 | 103.19.232.0/22 1140 | 103.20.12.0/22 1141 | 103.20.32.0/24 1142 | 103.20.68.0/22 1143 | 103.20.112.0/22 1144 | 103.20.128.0/22 1145 | 103.20.160.0/22 1146 | 103.20.248.0/22 1147 | 103.21.112.0/21 1148 | 103.21.140.0/22 1149 | 103.21.176.0/22 1150 | 103.21.240.0/22 1151 | 103.22.0.0/18 1152 | 103.22.64.0/19 1153 | 103.22.100.0/22 1154 | 103.22.104.0/21 1155 | 103.22.112.0/20 1156 | 103.22.188.0/22 1157 | 103.22.228.0/22 1158 | 103.22.252.0/22 1159 | 103.23.8.0/22 1160 | 103.23.56.0/22 1161 | 103.23.160.0/21 1162 | 103.23.176.0/22 1163 | 103.23.228.0/22 1164 | 103.24.24.0/22 1165 | 103.24.116.0/22 1166 | 103.24.128.0/22 1167 | 103.24.144.0/22 1168 | 103.24.176.0/22 1169 | 103.24.184.0/22 1170 | 103.24.228.0/22 1171 | 103.24.252.0/22 1172 | 103.25.20.0/22 1173 | 103.25.24.0/21 1174 | 103.25.32.0/21 1175 | 103.25.40.0/22 1176 | 103.25.48.0/22 1177 | 103.25.64.0/21 1178 | 103.25.148.0/22 1179 | 103.25.156.0/22 1180 | 103.25.216.0/22 1181 | 103.26.0.0/22 1182 | 103.26.64.0/22 1183 | 103.26.76.0/22 1184 | 103.26.116.0/22 1185 | 103.26.156.0/22 1186 | 103.26.160.0/22 1187 | 103.26.228.0/22 1188 | 103.26.240.0/22 1189 | 103.27.4.0/22 1190 | 103.27.12.0/22 1191 | 103.27.24.0/22 1192 | 103.27.56.0/22 1193 | 103.27.96.0/22 1194 | 103.27.240.0/22 1195 | 103.28.4.0/22 1196 | 103.28.8.0/22 1197 | 103.28.184.0/22 1198 | 103.28.204.0/22 1199 | 103.28.212.0/22 1200 | 103.29.16.0/22 1201 | 103.29.128.0/21 1202 | 103.29.136.0/22 1203 | 103.30.20.0/22 1204 | 103.30.96.0/22 1205 | 103.30.148.0/22 1206 | 103.30.202.0/23 1207 | 103.30.228.0/22 1208 | 103.30.236.0/22 1209 | 103.31.1.0/24 1210 | 103.31.2.0/23 1211 | 103.31.48.0/21 1212 | 103.31.60.0/22 1213 | 103.31.64.0/21 1214 | 103.31.72.0/24 1215 | 103.31.148.0/22 1216 | 103.31.160.0/22 1217 | 103.31.168.0/22 1218 | 103.31.200.0/22 1219 | 103.31.236.0/22 1220 | 103.32.0.0/15 1221 | 103.34.0.0/16 1222 | 103.35.0.0/19 1223 | 103.35.32.0/20 1224 | 103.35.48.0/22 1225 | 103.35.104.0/22 1226 | 103.35.220.0/22 1227 | 103.36.28.0/22 1228 | 103.36.36.0/22 1229 | 103.36.56.0/21 1230 | 103.36.64.0/22 1231 | 103.36.72.0/22 1232 | 103.36.96.0/22 1233 | 103.36.132.0/22 1234 | 103.36.136.0/22 1235 | 103.36.160.0/19 1236 | 103.36.192.0/19 1237 | 103.36.224.0/20 1238 | 103.36.240.0/21 1239 | 103.37.12.0/22 1240 | 103.37.16.0/22 1241 | 103.37.24.0/22 1242 | 103.37.44.0/22 1243 | 103.37.52.0/22 1244 | 103.37.56.0/22 1245 | 103.37.72.0/22 1246 | 103.37.100.0/22 1247 | 103.37.104.0/22 1248 | 103.37.136.0/21 1249 | 103.37.144.0/20 1250 | 103.37.160.0/21 1251 | 103.37.172.0/22 1252 | 103.37.176.0/22 1253 | 103.37.188.0/22 1254 | 103.37.208.0/20 1255 | 103.37.252.0/22 1256 | 103.38.0.0/22 1257 | 103.38.32.0/22 1258 | 103.38.40.0/21 1259 | 103.38.76.0/22 1260 | 103.38.84.0/22 1261 | 103.38.92.0/22 1262 | 103.38.96.0/22 1263 | 103.38.116.0/22 1264 | 103.38.132.0/22 1265 | 103.38.140.0/22 1266 | 103.38.220.0/22 1267 | 103.38.224.0/21 1268 | 103.38.232.0/22 1269 | 103.38.252.0/23 1270 | 103.39.64.0/22 1271 | 103.39.88.0/22 1272 | 103.39.100.0/22 1273 | 103.39.104.0/22 1274 | 103.39.160.0/19 1275 | 103.39.200.0/21 1276 | 103.39.208.0/20 1277 | 103.39.224.0/21 1278 | 103.39.232.0/22 1279 | 103.40.12.0/22 1280 | 103.40.16.0/20 1281 | 103.40.32.0/20 1282 | 103.40.88.0/22 1283 | 103.40.192.0/22 1284 | 103.40.212.0/22 1285 | 103.40.220.0/22 1286 | 103.40.228.0/22 1287 | 103.40.232.0/21 1288 | 103.40.240.0/20 1289 | 103.41.0.0/22 1290 | 103.41.52.0/22 1291 | 103.41.140.0/22 1292 | 103.41.148.0/22 1293 | 103.41.152.0/22 1294 | 103.41.160.0/21 1295 | 103.41.220.0/22 1296 | 103.41.224.0/21 1297 | 103.41.232.0/22 1298 | 103.42.8.0/22 1299 | 103.42.24.0/22 1300 | 103.42.32.0/22 1301 | 103.42.64.0/21 1302 | 103.42.76.0/22 1303 | 103.42.232.0/22 1304 | 103.43.26.0/23 1305 | 103.43.84.0/22 1306 | 103.43.96.0/21 1307 | 103.43.104.0/22 1308 | 103.43.124.0/22 1309 | 103.43.184.0/22 1310 | 103.43.192.0/21 1311 | 103.43.208.0/22 1312 | 103.43.220.0/22 1313 | 103.43.224.0/22 1314 | 103.43.240.0/22 1315 | 103.44.59.0/24 1316 | 103.44.80.0/22 1317 | 103.44.120.0/21 1318 | 103.44.144.0/22 1319 | 103.44.152.0/22 1320 | 103.44.168.0/22 1321 | 103.44.176.0/20 1322 | 103.44.192.0/20 1323 | 103.44.224.0/22 1324 | 103.44.236.0/22 1325 | 103.44.240.0/20 1326 | 103.45.0.0/18 1327 | 103.45.72.0/21 1328 | 103.45.80.0/20 1329 | 103.45.96.0/19 1330 | 103.45.128.0/18 1331 | 103.45.192.0/19 1332 | 103.45.224.0/22 1333 | 103.45.248.0/22 1334 | 103.46.0.0/22 1335 | 103.46.12.0/22 1336 | 103.46.16.0/20 1337 | 103.46.32.0/19 1338 | 103.46.64.0/18 1339 | 103.46.128.0/21 1340 | 103.46.136.0/22 1341 | 103.46.152.0/21 1342 | 103.46.160.0/20 1343 | 103.46.176.0/21 1344 | 103.46.244.0/22 1345 | 103.46.248.0/22 1346 | 103.47.4.0/22 1347 | 103.47.20.0/22 1348 | 103.47.36.0/22 1349 | 103.47.40.0/22 1350 | 103.47.80.0/22 1351 | 103.47.96.0/22 1352 | 103.47.116.0/22 1353 | 103.47.120.0/22 1354 | 103.47.136.0/21 1355 | 103.47.212.0/22 1356 | 103.48.52.0/22 1357 | 103.48.92.0/22 1358 | 103.48.148.0/22 1359 | 103.48.152.0/22 1360 | 103.48.202.0/23 1361 | 103.48.216.0/21 1362 | 103.48.224.0/20 1363 | 103.48.240.0/21 1364 | 103.49.12.0/22 1365 | 103.49.20.0/22 1366 | 103.49.72.0/21 1367 | 103.49.96.0/22 1368 | 103.49.108.0/22 1369 | 103.49.128.0/22 1370 | 103.49.176.0/21 1371 | 103.50.36.0/22 1372 | 103.50.44.0/22 1373 | 103.50.48.0/20 1374 | 103.50.64.0/21 1375 | 103.50.72.0/22 1376 | 103.50.92.0/22 1377 | 103.50.108.0/22 1378 | 103.50.112.0/20 1379 | 103.50.132.0/22 1380 | 103.50.136.0/21 1381 | 103.50.172.0/22 1382 | 103.50.176.0/20 1383 | 103.50.192.0/21 1384 | 103.50.200.0/22 1385 | 103.50.220.0/22 1386 | 103.50.224.0/20 1387 | 103.50.240.0/21 1388 | 103.50.248.0/22 1389 | 103.52.40.0/22 1390 | 103.52.72.0/23 1391 | 103.52.74.0/25 1392 | 103.52.74.128/26 1393 | 103.52.74.192/27 1394 | 103.52.74.224/28 1395 | 103.52.74.240/30 1396 | 103.52.74.252/30 1397 | 103.52.75.0/24 1398 | 103.52.76.0/22 1399 | 103.52.80.0/21 1400 | 103.52.96.0/21 1401 | 103.52.104.0/22 1402 | 103.52.160.0/21 1403 | 103.52.172.0/22 1404 | 103.52.176.0/22 1405 | 103.52.184.0/22 1406 | 103.52.196.0/22 1407 | 103.53.64.0/21 1408 | 103.53.92.0/22 1409 | 103.53.124.0/22 1410 | 103.53.128.0/20 1411 | 103.53.144.0/22 1412 | 103.53.160.0/22 1413 | 103.53.180.0/22 1414 | 103.53.204.0/22 1415 | 103.53.208.0/21 1416 | 103.53.236.0/22 1417 | 103.53.248.0/22 1418 | 103.54.8.0/22 1419 | 103.54.48.0/22 1420 | 103.54.160.0/21 1421 | 103.54.212.0/22 1422 | 103.54.228.0/22 1423 | 103.54.240.0/22 1424 | 103.55.80.0/22 1425 | 103.55.120.0/22 1426 | 103.55.152.0/22 1427 | 103.55.172.0/22 1428 | 103.55.204.0/22 1429 | 103.55.208.0/22 1430 | 103.55.228.0/22 1431 | 103.55.236.0/22 1432 | 103.55.240.0/22 1433 | 103.56.20.0/22 1434 | 103.56.32.0/22 1435 | 103.56.56.0/21 1436 | 103.56.72.0/21 1437 | 103.56.140.0/22 1438 | 103.56.152.0/22 1439 | 103.56.184.0/22 1440 | 103.56.200.0/22 1441 | 103.57.12.0/22 1442 | 103.57.52.0/22 1443 | 103.57.56.0/22 1444 | 103.57.76.0/22 1445 | 103.57.136.0/22 1446 | 103.57.196.0/22 1447 | 103.58.24.0/22 1448 | 103.59.76.0/22 1449 | 103.59.112.0/21 1450 | 103.59.120.0/24 1451 | 103.59.123.0/24 1452 | 103.59.124.0/22 1453 | 103.59.128.0/22 1454 | 103.59.148.0/22 1455 | 103.60.32.0/22 1456 | 103.60.44.0/22 1457 | 103.60.164.0/22 1458 | 103.60.228.0/22 1459 | 103.60.236.0/22 1460 | 103.61.60.0/22 1461 | 103.61.104.0/22 1462 | 103.61.140.0/22 1463 | 103.61.152.0/21 1464 | 103.61.160.0/22 1465 | 103.61.172.0/22 1466 | 103.61.176.0/22 1467 | 103.62.24.0/22 1468 | 103.62.72.0/21 1469 | 103.62.80.0/21 1470 | 103.62.88.0/22 1471 | 103.62.96.0/19 1472 | 103.62.128.0/21 1473 | 103.62.156.0/22 1474 | 103.62.160.0/19 1475 | 103.62.192.0/22 1476 | 103.62.204.0/22 1477 | 103.62.208.0/20 1478 | 103.62.224.0/22 1479 | 103.63.32.0/19 1480 | 103.63.64.0/20 1481 | 103.63.80.0/21 1482 | 103.63.88.0/22 1483 | 103.63.140.0/22 1484 | 103.63.144.0/22 1485 | 103.63.152.0/22 1486 | 103.63.160.0/20 1487 | 103.63.176.0/21 1488 | 103.63.184.0/22 1489 | 103.63.192.0/20 1490 | 103.63.208.0/22 1491 | 103.63.240.0/20 1492 | 103.64.0.0/21 1493 | 103.64.24.0/21 1494 | 103.64.32.0/19 1495 | 103.64.64.0/18 1496 | 103.64.140.0/22 1497 | 103.64.144.0/22 1498 | 103.64.152.0/21 1499 | 103.64.160.0/19 1500 | 103.64.192.0/18 1501 | 103.65.0.0/20 1502 | 103.65.16.0/22 1503 | 103.65.48.0/20 1504 | 103.65.64.0/19 1505 | 103.65.100.0/22 1506 | 103.65.104.0/21 1507 | 103.65.112.0/20 1508 | 103.65.128.0/21 1509 | 103.65.136.0/22 1510 | 103.65.144.0/20 1511 | 103.65.160.0/20 1512 | 103.66.32.0/22 1513 | 103.66.40.0/22 1514 | 103.66.108.0/22 1515 | 103.66.200.0/22 1516 | 103.66.240.0/20 1517 | 103.67.0.0/21 1518 | 103.67.8.0/22 1519 | 103.67.40.0/21 1520 | 103.67.48.0/20 1521 | 103.67.64.0/18 1522 | 103.67.128.0/20 1523 | 103.67.144.0/21 1524 | 103.67.172.0/24 1525 | 103.67.175.0/24 1526 | 103.67.192.0/22 1527 | 103.67.212.0/22 1528 | 103.68.88.0/22 1529 | 103.68.100.0/22 1530 | 103.68.128.0/22 1531 | 103.69.16.0/22 1532 | 103.69.212.0/23 1533 | 103.70.8.0/22 1534 | 103.70.148.0/22 1535 | 103.70.236.0/22 1536 | 103.70.252.0/22 1537 | 103.71.0.0/22 1538 | 103.71.68.0/22 1539 | 103.71.72.0/22 1540 | 103.71.80.0/21 1541 | 103.71.88.0/22 1542 | 103.71.120.0/21 1543 | 103.71.128.0/22 1544 | 103.71.146.0/23 1545 | 103.71.196.0/22 1546 | 103.71.200.0/22 1547 | 103.71.232.0/22 1548 | 103.72.12.0/22 1549 | 103.72.16.0/20 1550 | 103.72.32.0/20 1551 | 103.72.48.0/21 1552 | 103.72.112.0/20 1553 | 103.72.128.0/21 1554 | 103.72.149.0/24 1555 | 103.72.150.0/23 1556 | 103.72.172.0/22 1557 | 103.72.180.0/22 1558 | 103.72.224.0/19 1559 | 103.73.0.0/19 1560 | 103.73.48.0/22 1561 | 103.73.116.0/22 1562 | 103.73.120.0/22 1563 | 103.73.128.0/20 1564 | 103.73.168.0/22 1565 | 103.73.176.0/22 1566 | 103.73.204.0/22 1567 | 103.73.208.0/22 1568 | 103.73.240.0/23 1569 | 103.73.244.0/22 1570 | 103.73.248.0/22 1571 | 103.74.24.0/21 1572 | 103.74.32.0/20 1573 | 103.74.48.0/22 1574 | 103.74.56.0/21 1575 | 103.74.80.0/22 1576 | 103.74.124.0/22 1577 | 103.74.148.0/22 1578 | 103.74.152.0/21 1579 | 103.74.204.0/22 1580 | 103.74.232.0/22 1581 | 103.75.87.0/24 1582 | 103.75.88.0/21 1583 | 103.75.104.0/21 1584 | 103.75.112.0/22 1585 | 103.75.120.0/22 1586 | 103.75.128.0/22 1587 | 103.75.144.0/22 1588 | 103.75.152.0/22 1589 | 103.75.236.0/24 1590 | 103.76.60.0/22 1591 | 103.76.64.0/21 1592 | 103.76.72.0/22 1593 | 103.76.92.0/22 1594 | 103.76.216.0/21 1595 | 103.76.224.0/22 1596 | 103.77.28.0/22 1597 | 103.77.52.0/22 1598 | 103.77.56.0/22 1599 | 103.77.88.0/22 1600 | 103.77.132.0/22 1601 | 103.77.148.0/22 1602 | 103.77.220.0/22 1603 | 103.78.56.0/21 1604 | 103.78.64.0/22 1605 | 103.78.124.0/22 1606 | 103.78.172.0/22 1607 | 103.78.176.0/22 1608 | 103.78.196.0/22 1609 | 103.78.228.0/22 1610 | 103.79.24.0/21 1611 | 103.79.36.0/22 1612 | 103.79.40.0/21 1613 | 103.79.56.0/21 1614 | 103.79.64.0/21 1615 | 103.79.80.0/21 1616 | 103.79.136.0/22 1617 | 103.79.188.0/22 1618 | 103.79.192.0/20 1619 | 103.79.208.0/21 1620 | 103.79.243.0/24 1621 | 103.80.44.0/22 1622 | 103.80.72.0/22 1623 | 103.80.176.0/21 1624 | 103.80.184.0/22 1625 | 103.80.192.0/22 1626 | 103.80.200.0/22 1627 | 103.80.232.0/22 1628 | 103.81.4.0/22 1629 | 103.81.44.0/22 1630 | 103.81.48.0/22 1631 | 103.81.96.0/22 1632 | 103.81.120.0/22 1633 | 103.81.148.0/22 1634 | 103.81.164.0/22 1635 | 103.81.200.0/22 1636 | 103.81.232.0/22 1637 | 103.82.60.0/22 1638 | 103.82.68.0/22 1639 | 103.82.84.0/22 1640 | 103.82.104.0/22 1641 | 103.82.224.0/22 1642 | 103.82.236.0/22 1643 | 103.83.44.0/22 1644 | 103.83.52.0/22 1645 | 103.83.60.0/22 1646 | 103.83.72.0/22 1647 | 103.83.112.0/22 1648 | 103.83.132.0/22 1649 | 103.83.180.0/22 1650 | 103.84.0.0/22 1651 | 103.84.12.0/22 1652 | 103.84.20.0/22 1653 | 103.84.24.0/21 1654 | 103.84.48.0/22 1655 | 103.84.56.0/22 1656 | 103.84.64.0/22 1657 | 103.84.72.0/22 1658 | 103.85.44.0/22 1659 | 103.85.48.0/21 1660 | 103.85.56.0/22 1661 | 103.85.84.0/22 1662 | 103.85.136.0/22 1663 | 103.85.144.0/22 1664 | 103.85.164.0/22 1665 | 103.85.168.0/21 1666 | 103.85.176.0/22 1667 | 103.86.28.0/22 1668 | 103.86.32.0/22 1669 | 103.86.60.0/22 1670 | 103.86.129.0/24 1671 | 103.86.204.0/22 1672 | 103.86.208.0/20 1673 | 103.86.224.0/19 1674 | 103.87.0.0/21 1675 | 103.87.20.0/22 1676 | 103.87.32.0/22 1677 | 103.87.96.0/22 1678 | 103.87.132.0/22 1679 | 103.87.180.0/22 1680 | 103.87.224.0/22 1681 | 103.88.4.0/22 1682 | 103.88.8.0/21 1683 | 103.88.16.0/21 1684 | 103.88.32.0/21 1685 | 103.88.60.0/22 1686 | 103.88.64.0/22 1687 | 103.88.72.0/22 1688 | 103.88.96.0/21 1689 | 103.88.152.0/23 1690 | 103.88.164.0/22 1691 | 103.88.212.0/22 1692 | 103.89.28.0/22 1693 | 103.89.96.0/20 1694 | 103.89.112.0/21 1695 | 103.89.148.0/22 1696 | 103.89.172.0/22 1697 | 103.89.184.0/21 1698 | 103.89.192.0/19 1699 | 103.89.224.0/21 1700 | 103.90.52.0/22 1701 | 103.90.92.0/22 1702 | 103.90.100.0/22 1703 | 103.90.104.0/21 1704 | 103.90.112.0/20 1705 | 103.90.128.0/21 1706 | 103.90.152.0/22 1707 | 103.90.168.0/22 1708 | 103.90.173.0/24 1709 | 103.90.176.0/22 1710 | 103.90.188.0/22 1711 | 103.90.192.0/22 1712 | 103.91.36.0/22 1713 | 103.91.40.0/22 1714 | 103.91.108.0/22 1715 | 103.91.152.0/22 1716 | 103.91.176.0/22 1717 | 103.91.200.0/22 1718 | 103.91.208.0/21 1719 | 103.91.236.0/22 1720 | 103.92.48.0/20 1721 | 103.92.64.0/20 1722 | 103.92.80.0/22 1723 | 103.92.86.0/24 1724 | 103.92.88.0/22 1725 | 103.92.108.0/22 1726 | 103.92.124.0/22 1727 | 103.92.132.0/22 1728 | 103.92.156.0/22 1729 | 103.92.164.0/22 1730 | 103.92.168.0/21 1731 | 103.92.176.0/20 1732 | 103.92.192.0/22 1733 | 103.92.236.0/22 1734 | 103.92.240.0/20 1735 | 103.93.0.0/21 1736 | 103.93.28.0/22 1737 | 103.93.84.0/22 1738 | 103.93.152.0/22 1739 | 103.93.180.0/22 1740 | 103.93.204.0/22 1741 | 103.94.12.0/22 1742 | 103.94.20.0/22 1743 | 103.94.28.0/22 1744 | 103.94.32.0/20 1745 | 103.94.72.0/22 1746 | 103.94.88.0/22 1747 | 103.94.116.0/22 1748 | 103.94.160.0/22 1749 | 103.94.200.0/22 1750 | 103.95.31.0/24 1751 | 103.95.52.0/22 1752 | 103.95.68.0/22 1753 | 103.95.88.0/21 1754 | 103.95.136.0/21 1755 | 103.95.144.0/22 1756 | 103.95.152.0/22 1757 | 103.95.216.0/21 1758 | 103.95.224.0/22 1759 | 103.95.236.0/22 1760 | 103.95.240.0/20 1761 | 103.96.8.0/22 1762 | 103.96.124.0/22 1763 | 103.96.136.0/22 1764 | 103.96.152.0/21 1765 | 103.96.160.0/19 1766 | 103.96.192.0/20 1767 | 103.96.208.0/21 1768 | 103.96.216.0/22 1769 | 103.97.36.0/22 1770 | 103.97.40.0/22 1771 | 103.97.60.0/23 1772 | 103.97.72.0/23 1773 | 103.97.74.0/24 1774 | 103.97.112.0/21 1775 | 103.97.148.0/22 1776 | 103.97.188.0/22 1777 | 103.97.192.0/22 1778 | 103.98.40.0/21 1779 | 103.98.48.0/22 1780 | 103.98.56.0/22 1781 | 103.98.80.0/22 1782 | 103.98.88.0/22 1783 | 103.98.100.0/22 1784 | 103.98.124.0/22 1785 | 103.98.136.0/21 1786 | 103.98.144.0/22 1787 | 103.98.164.0/22 1788 | 103.98.168.0/22 1789 | 103.98.180.0/22 1790 | 103.98.196.0/22 1791 | 103.98.216.0/21 1792 | 103.98.224.0/21 1793 | 103.98.232.0/22 1794 | 103.98.240.0/21 1795 | 103.98.248.0/23 1796 | 103.98.252.0/22 1797 | 103.99.56.0/22 1798 | 103.99.79.0/24 1799 | 103.99.104.0/22 1800 | 103.99.116.0/22 1801 | 103.99.120.0/22 1802 | 103.99.132.0/22 1803 | 103.99.136.0/21 1804 | 103.99.144.0/22 1805 | 103.99.152.0/22 1806 | 103.99.220.0/22 1807 | 103.99.232.0/21 1808 | 103.100.0.0/22 1809 | 103.100.32.0/22 1810 | 103.100.40.0/22 1811 | 103.100.48.0/22 1812 | 103.100.56.0/22 1813 | 103.100.64.0/22 1814 | 103.100.88.0/22 1815 | 103.100.116.0/22 1816 | 103.100.144.0/22 1817 | 103.100.240.0/22 1818 | 103.100.248.0/21 1819 | 103.101.4.0/22 1820 | 103.101.8.0/21 1821 | 103.101.60.0/22 1822 | 103.101.121.0/24 1823 | 103.101.122.0/23 1824 | 103.101.124.0/22 1825 | 103.101.144.0/21 1826 | 103.101.180.0/22 1827 | 103.101.184.0/22 1828 | 103.102.76.0/22 1829 | 103.102.80.0/22 1830 | 103.102.168.0/21 1831 | 103.102.180.0/22 1832 | 103.102.184.0/21 1833 | 103.102.192.0/21 1834 | 103.102.200.0/22 1835 | 103.102.208.0/21 1836 | 103.103.12.0/22 1837 | 103.103.16.0/22 1838 | 103.103.36.0/22 1839 | 103.103.72.0/22 1840 | 103.103.188.0/22 1841 | 103.103.200.0/21 1842 | 103.104.36.0/22 1843 | 103.104.40.0/22 1844 | 103.104.64.0/22 1845 | 103.104.152.0/22 1846 | 103.104.252.0/22 1847 | 103.105.0.0/21 1848 | 103.105.12.0/22 1849 | 103.105.16.0/22 1850 | 103.105.60.0/22 1851 | 103.105.116.0/22 1852 | 103.105.180.0/22 1853 | 103.105.184.0/22 1854 | 103.105.200.0/21 1855 | 103.105.220.0/22 1856 | 103.106.36.0/22 1857 | 103.106.40.0/21 1858 | 103.106.60.0/22 1859 | 103.106.68.0/22 1860 | 103.106.96.0/22 1861 | 103.106.120.0/22 1862 | 103.106.128.0/21 1863 | 103.106.190.0/23 1864 | 103.106.196.0/22 1865 | 103.106.212.0/22 1866 | 103.106.252.0/22 1867 | 103.107.0.0/22 1868 | 103.107.28.0/22 1869 | 103.107.32.0/22 1870 | 103.107.44.0/22 1871 | 103.107.72.0/22 1872 | 103.107.164.0/22 1873 | 103.107.168.0/22 1874 | 103.107.188.0/22 1875 | 103.107.192.0/22 1876 | 103.107.208.0/20 1877 | 103.108.52.0/22 1878 | 103.108.160.0/21 1879 | 103.108.192.0/21 1880 | 103.108.208.0/21 1881 | 103.108.224.0/22 1882 | 103.108.244.0/22 1883 | 103.108.251.0/24 1884 | 103.109.20.0/22 1885 | 103.109.48.0/22 1886 | 103.109.88.0/22 1887 | 103.109.106.0/23 1888 | 103.109.248.0/22 1889 | 103.110.32.0/22 1890 | 103.110.92.0/22 1891 | 103.110.119.0/24 1892 | 103.110.127.0/24 1893 | 103.110.128.0/23 1894 | 103.110.131.0/24 1895 | 103.110.132.0/22 1896 | 103.110.136.0/22 1897 | 103.110.156.0/22 1898 | 103.110.188.0/22 1899 | 103.110.204.0/22 1900 | 103.111.64.0/22 1901 | 103.111.172.0/22 1902 | 103.111.252.0/22 1903 | 103.112.31.0/24 1904 | 103.112.72.0/22 1905 | 103.112.88.0/21 1906 | 103.112.108.0/22 1907 | 103.112.112.0/21 1908 | 103.112.140.0/22 1909 | 103.113.4.0/22 1910 | 103.113.144.0/22 1911 | 103.113.220.0/22 1912 | 103.113.232.0/21 1913 | 103.114.4.0/22 1914 | 103.114.68.0/22 1915 | 103.114.100.0/22 1916 | 103.114.133.0/24 1917 | 103.114.134.0/23 1918 | 103.114.148.0/22 1919 | 103.114.156.0/22 1920 | 103.114.212.0/22 1921 | 103.114.236.0/22 1922 | 103.114.240.0/22 1923 | 103.115.52.0/22 1924 | 103.115.68.0/22 1925 | 103.115.92.0/22 1926 | 103.115.120.0/22 1927 | 103.115.148.0/22 1928 | 103.115.248.0/22 1929 | 103.116.76.0/22 1930 | 103.116.92.0/22 1931 | 103.116.120.0/22 1932 | 103.116.128.0/22 1933 | 103.116.150.0/23 1934 | 103.116.184.0/22 1935 | 103.116.220.0/22 1936 | 103.116.224.0/21 1937 | 103.117.16.0/22 1938 | 103.117.88.0/22 1939 | 103.117.188.0/22 1940 | 103.117.220.0/22 1941 | 103.118.19.0/24 1942 | 103.118.52.0/22 1943 | 103.118.56.0/21 1944 | 103.118.64.0/21 1945 | 103.118.72.0/22 1946 | 103.118.88.0/22 1947 | 103.118.173.0/24 1948 | 103.119.104.0/23 1949 | 103.119.106.0/24 1950 | 103.119.115.0/24 1951 | 103.119.156.0/22 1952 | 103.119.180.0/22 1953 | 103.119.200.0/22 1954 | 103.119.224.0/22 1955 | 103.120.52.0/22 1956 | 103.120.72.0/22 1957 | 103.120.76.0/24 1958 | 103.120.88.0/22 1959 | 103.120.96.0/22 1960 | 103.120.140.0/22 1961 | 103.120.196.0/22 1962 | 103.120.224.0/22 1963 | 103.121.52.0/22 1964 | 103.121.160.0/21 1965 | 103.121.250.0/24 1966 | 103.121.252.0/22 1967 | 103.122.48.0/22 1968 | 103.122.176.0/22 1969 | 103.122.192.0/22 1970 | 103.122.240.0/22 1971 | 103.123.4.0/22 1972 | 103.123.56.0/22 1973 | 103.123.88.0/21 1974 | 103.123.116.0/22 1975 | 103.123.176.0/22 1976 | 103.123.200.0/21 1977 | 103.123.208.0/21 1978 | 103.124.24.0/22 1979 | 103.124.48.0/22 1980 | 103.124.64.0/22 1981 | 103.124.212.0/22 1982 | 103.124.216.0/22 1983 | 103.125.20.0/22 1984 | 103.125.44.0/22 1985 | 103.125.132.0/22 1986 | 103.125.164.0/22 1987 | 103.125.196.0/22 1988 | 103.125.236.0/22 1989 | 103.126.0.0/22 1990 | 103.126.16.0/22 1991 | 103.126.44.0/22 1992 | 103.126.124.0/22 1993 | 103.126.128.0/22 1994 | 103.126.208.0/22 1995 | 103.129.53.0/24 1996 | 103.129.54.0/23 1997 | 103.129.148.0/22 1998 | 103.130.132.0/22 1999 | 103.130.160.0/22 2000 | 103.130.228.0/22 2001 | 103.131.20.0/22 2002 | 103.131.36.0/22 2003 | 103.131.152.0/22 2004 | 103.131.168.0/22 2005 | 103.131.224.0/21 2006 | 103.131.240.0/22 2007 | 103.132.60.0/22 2008 | 103.132.64.0/20 2009 | 103.132.80.0/22 2010 | 103.132.104.0/21 2011 | 103.132.112.0/21 2012 | 103.132.120.0/22 2013 | 103.132.164.0/22 2014 | 103.132.188.0/22 2015 | 103.132.208.0/21 2016 | 103.132.234.0/23 2017 | 103.133.12.0/22 2018 | 103.133.40.0/22 2019 | 103.133.128.0/22 2020 | 103.133.136.0/22 2021 | 103.133.176.0/22 2022 | 103.133.232.0/22 2023 | 103.192.0.0/19 2024 | 103.192.48.0/21 2025 | 103.192.56.0/22 2026 | 103.192.84.0/22 2027 | 103.192.88.0/21 2028 | 103.192.96.0/20 2029 | 103.192.112.0/22 2030 | 103.192.128.0/20 2031 | 103.192.144.0/22 2032 | 103.192.164.0/22 2033 | 103.192.188.0/22 2034 | 103.192.208.0/21 2035 | 103.192.216.0/22 2036 | 103.192.252.0/22 2037 | 103.193.40.0/21 2038 | 103.193.120.0/22 2039 | 103.193.140.0/22 2040 | 103.193.160.0/22 2041 | 103.193.188.0/22 2042 | 103.193.192.0/22 2043 | 103.193.212.0/22 2044 | 103.193.216.0/21 2045 | 103.193.224.0/20 2046 | 103.194.16.0/22 2047 | 103.194.230.0/23 2048 | 103.195.112.0/22 2049 | 103.195.152.0/22 2050 | 103.195.160.0/22 2051 | 103.196.64.0/22 2052 | 103.196.72.0/22 2053 | 103.196.88.0/21 2054 | 103.196.96.0/22 2055 | 103.196.168.0/22 2056 | 103.196.185.0/24 2057 | 103.196.186.0/23 2058 | 103.197.181.0/24 2059 | 103.197.183.0/24 2060 | 103.197.228.0/22 2061 | 103.197.253.0/24 2062 | 103.197.254.0/23 2063 | 103.198.20.0/22 2064 | 103.198.60.0/22 2065 | 103.198.64.0/22 2066 | 103.198.72.0/22 2067 | 103.198.124.0/22 2068 | 103.198.156.0/22 2069 | 103.198.180.0/22 2070 | 103.198.196.0/22 2071 | 103.198.200.0/22 2072 | 103.198.216.0/21 2073 | 103.198.224.0/20 2074 | 103.198.240.0/21 2075 | 103.199.164.0/22 2076 | 103.199.196.0/22 2077 | 103.199.228.0/22 2078 | 103.199.252.0/22 2079 | 103.200.52.0/22 2080 | 103.200.64.0/21 2081 | 103.200.136.0/21 2082 | 103.200.144.0/20 2083 | 103.200.160.0/19 2084 | 103.200.192.0/22 2085 | 103.200.220.0/22 2086 | 103.200.224.0/19 2087 | 103.201.0.0/20 2088 | 103.201.16.0/21 2089 | 103.201.28.0/22 2090 | 103.201.32.0/19 2091 | 103.201.64.0/22 2092 | 103.201.76.0/22 2093 | 103.201.80.0/20 2094 | 103.201.96.0/20 2095 | 103.201.112.0/21 2096 | 103.201.120.0/22 2097 | 103.201.152.0/21 2098 | 103.201.160.0/19 2099 | 103.201.192.0/18 2100 | 103.202.0.0/19 2101 | 103.202.32.0/20 2102 | 103.202.56.0/21 2103 | 103.202.64.0/18 2104 | 103.202.128.0/20 2105 | 103.202.144.0/22 2106 | 103.202.152.0/21 2107 | 103.202.160.0/19 2108 | 103.202.192.0/20 2109 | 103.202.212.0/22 2110 | 103.202.228.0/22 2111 | 103.202.236.0/22 2112 | 103.202.240.0/20 2113 | 103.203.0.0/19 2114 | 103.203.32.0/22 2115 | 103.203.96.0/19 2116 | 103.203.128.0/22 2117 | 103.203.140.0/22 2118 | 103.203.164.0/22 2119 | 103.203.168.0/22 2120 | 103.203.192.0/22 2121 | 103.203.200.0/22 2122 | 103.203.212.0/22 2123 | 103.203.216.0/22 2124 | 103.204.24.0/22 2125 | 103.204.88.0/22 2126 | 103.204.112.0/22 2127 | 103.204.136.0/21 2128 | 103.204.144.0/21 2129 | 103.204.152.0/22 2130 | 103.204.196.0/22 2131 | 103.204.232.0/21 2132 | 103.205.4.0/22 2133 | 103.205.40.0/21 2134 | 103.205.52.0/22 2135 | 103.205.108.0/22 2136 | 103.205.116.0/22 2137 | 103.205.136.0/22 2138 | 103.205.162.0/24 2139 | 103.205.188.0/22 2140 | 103.205.192.0/21 2141 | 103.205.200.0/22 2142 | 103.205.236.0/22 2143 | 103.205.248.0/21 2144 | 103.206.0.0/22 2145 | 103.206.44.0/22 2146 | 103.206.148.0/22 2147 | 103.207.104.0/22 2148 | 103.207.184.0/21 2149 | 103.207.192.0/20 2150 | 103.207.208.0/21 2151 | 103.207.220.0/22 2152 | 103.207.228.0/22 2153 | 103.207.232.0/22 2154 | 103.208.12.0/22 2155 | 103.208.16.0/22 2156 | 103.208.28.0/22 2157 | 103.208.48.0/22 2158 | 103.208.148.0/22 2159 | 103.209.112.0/22 2160 | 103.209.136.0/22 2161 | 103.209.200.0/22 2162 | 103.209.208.0/22 2163 | 103.209.216.0/22 2164 | 103.210.0.0/22 2165 | 103.210.96.0/22 2166 | 103.210.156.0/22 2167 | 103.210.160.0/19 2168 | 103.210.217.0/24 2169 | 103.210.218.0/23 2170 | 103.211.44.0/22 2171 | 103.211.96.0/23 2172 | 103.211.98.0/24 2173 | 103.211.100.0/22 2174 | 103.211.156.0/22 2175 | 103.211.165.0/24 2176 | 103.211.168.0/22 2177 | 103.211.220.0/22 2178 | 103.211.248.0/22 2179 | 103.212.0.0/20 2180 | 103.212.44.0/22 2181 | 103.212.48.0/22 2182 | 103.212.84.0/22 2183 | 103.212.100.0/22 2184 | 103.212.148.0/22 2185 | 103.212.164.0/22 2186 | 103.212.196.0/22 2187 | 103.212.200.0/22 2188 | 103.212.230.0/23 2189 | 103.212.252.0/22 2190 | 103.213.40.0/21 2191 | 103.213.48.0/20 2192 | 103.213.64.0/19 2193 | 103.213.96.0/22 2194 | 103.213.132.0/22 2195 | 103.213.136.0/21 2196 | 103.213.144.0/20 2197 | 103.213.160.0/19 2198 | 103.213.252.0/22 2199 | 103.214.48.0/22 2200 | 103.214.84.0/22 2201 | 103.214.212.0/22 2202 | 103.214.240.0/21 2203 | 103.215.28.0/22 2204 | 103.215.32.0/21 2205 | 103.215.44.0/22 2206 | 103.215.100.0/23 2207 | 103.215.108.0/22 2208 | 103.215.116.0/22 2209 | 103.215.120.0/22 2210 | 103.215.140.0/22 2211 | 103.216.4.0/22 2212 | 103.216.8.0/21 2213 | 103.216.16.0/20 2214 | 103.216.32.0/20 2215 | 103.216.64.0/22 2216 | 103.216.108.0/22 2217 | 103.216.136.0/22 2218 | 103.216.152.0/22 2219 | 103.216.224.0/21 2220 | 103.216.240.0/20 2221 | 103.217.0.0/18 2222 | 103.217.168.0/22 2223 | 103.217.180.0/22 2224 | 103.217.184.0/21 2225 | 103.217.192.0/20 2226 | 103.218.8.0/21 2227 | 103.218.16.0/21 2228 | 103.218.29.0/24 2229 | 103.218.30.0/23 2230 | 103.218.32.0/19 2231 | 103.218.64.0/19 2232 | 103.218.192.0/20 2233 | 103.218.208.0/21 2234 | 103.218.216.0/22 2235 | 103.219.24.0/21 2236 | 103.219.32.0/21 2237 | 103.219.64.0/22 2238 | 103.219.84.0/22 2239 | 103.219.88.0/21 2240 | 103.219.96.0/21 2241 | 103.219.176.0/22 2242 | 103.219.184.0/22 2243 | 103.220.48.0/20 2244 | 103.220.64.0/22 2245 | 103.220.92.0/22 2246 | 103.220.96.0/22 2247 | 103.220.104.0/21 2248 | 103.220.116.0/22 2249 | 103.220.120.0/21 2250 | 103.220.128.0/20 2251 | 103.220.144.0/21 2252 | 103.220.152.0/22 2253 | 103.220.160.0/19 2254 | 103.220.192.0/21 2255 | 103.220.200.0/22 2256 | 103.220.240.0/20 2257 | 103.221.0.0/19 2258 | 103.221.32.0/20 2259 | 103.221.48.0/22 2260 | 103.221.88.0/21 2261 | 103.221.96.0/19 2262 | 103.221.128.0/18 2263 | 103.221.192.0/20 2264 | 103.222.0.0/20 2265 | 103.222.16.0/22 2266 | 103.222.24.0/21 2267 | 103.222.33.0/24 2268 | 103.222.34.0/23 2269 | 103.222.36.0/22 2270 | 103.222.40.0/21 2271 | 103.222.48.0/20 2272 | 103.222.64.0/18 2273 | 103.222.128.0/18 2274 | 103.222.192.0/19 2275 | 103.222.224.0/21 2276 | 103.222.232.0/22 2277 | 103.222.240.0/21 2278 | 103.223.16.0/20 2279 | 103.223.32.0/19 2280 | 103.223.64.0/19 2281 | 103.223.96.0/20 2282 | 103.223.112.0/21 2283 | 103.223.121.0/24 2284 | 103.223.123.0/24 2285 | 103.223.124.0/22 2286 | 103.223.128.0/21 2287 | 103.223.140.0/22 2288 | 103.223.144.0/20 2289 | 103.223.160.0/20 2290 | 103.223.176.0/21 2291 | 103.223.188.0/22 2292 | 103.223.192.0/18 2293 | 103.224.0.0/22 2294 | 103.224.40.0/21 2295 | 103.224.60.0/22 2296 | 103.224.220.0/22 2297 | 103.224.224.0/21 2298 | 103.224.232.0/22 2299 | 103.226.40.0/22 2300 | 103.226.56.0/21 2301 | 103.226.80.0/22 2302 | 103.226.116.0/22 2303 | 103.226.132.0/22 2304 | 103.226.156.0/22 2305 | 103.226.180.0/22 2306 | 103.226.196.0/22 2307 | 103.227.48.0/22 2308 | 103.227.72.0/21 2309 | 103.227.80.0/22 2310 | 103.227.100.0/22 2311 | 103.227.120.0/22 2312 | 103.227.132.0/22 2313 | 103.227.136.0/22 2314 | 103.227.196.0/22 2315 | 103.227.204.0/23 2316 | 103.227.206.0/24 2317 | 103.227.212.0/22 2318 | 103.227.228.0/22 2319 | 103.228.12.0/22 2320 | 103.228.88.0/22 2321 | 103.228.136.0/22 2322 | 103.228.160.0/22 2323 | 103.228.176.0/22 2324 | 103.228.204.0/22 2325 | 103.228.208.0/22 2326 | 103.228.232.0/22 2327 | 103.229.20.0/22 2328 | 103.229.136.0/22 2329 | 103.229.148.0/22 2330 | 103.229.172.0/22 2331 | 103.229.212.0/22 2332 | 103.229.216.0/21 2333 | 103.229.228.0/22 2334 | 103.229.236.0/22 2335 | 103.229.240.0/22 2336 | 103.230.0.0/22 2337 | 103.230.28.0/22 2338 | 103.230.40.0/21 2339 | 103.230.96.0/22 2340 | 103.230.196.0/22 2341 | 103.230.200.0/21 2342 | 103.230.212.0/22 2343 | 103.230.236.0/22 2344 | 103.231.16.0/21 2345 | 103.231.64.0/21 2346 | 103.231.144.0/22 2347 | 103.231.180.0/22 2348 | 103.231.244.0/22 2349 | 103.232.4.0/22 2350 | 103.232.144.0/22 2351 | 103.232.213.0/24 2352 | 103.232.214.0/24 2353 | 103.233.4.0/22 2354 | 103.233.44.0/22 2355 | 103.233.52.0/22 2356 | 103.233.104.0/22 2357 | 103.233.128.0/22 2358 | 103.233.136.0/22 2359 | 103.233.228.0/22 2360 | 103.234.0.0/22 2361 | 103.234.20.0/22 2362 | 103.234.56.0/22 2363 | 103.234.124.0/22 2364 | 103.234.128.0/22 2365 | 103.234.172.0/22 2366 | 103.234.180.0/22 2367 | 103.235.56.0/21 2368 | 103.235.80.0/22 2369 | 103.235.85.0/24 2370 | 103.235.86.0/23 2371 | 103.235.128.0/20 2372 | 103.235.144.0/21 2373 | 103.235.184.0/22 2374 | 103.235.192.0/22 2375 | 103.235.200.0/22 2376 | 103.235.220.0/22 2377 | 103.235.224.0/19 2378 | 103.236.0.0/18 2379 | 103.236.64.0/19 2380 | 103.236.96.0/22 2381 | 103.236.120.0/22 2382 | 103.236.184.0/22 2383 | 103.236.240.0/20 2384 | 103.237.0.0/20 2385 | 103.237.24.0/21 2386 | 103.237.68.0/22 2387 | 103.237.88.0/22 2388 | 103.237.152.0/22 2389 | 103.237.176.0/20 2390 | 103.237.192.0/18 2391 | 103.238.0.0/21 2392 | 103.238.18.0/23 2393 | 103.238.20.0/22 2394 | 103.238.24.0/21 2395 | 103.238.32.0/20 2396 | 103.238.48.0/21 2397 | 103.238.56.0/22 2398 | 103.238.88.0/21 2399 | 103.238.96.0/22 2400 | 103.238.132.0/22 2401 | 103.238.140.0/22 2402 | 103.238.144.0/22 2403 | 103.238.160.0/22 2404 | 103.238.165.0/24 2405 | 103.238.166.0/23 2406 | 103.238.168.0/21 2407 | 103.238.176.0/20 2408 | 103.238.196.0/22 2409 | 103.238.204.0/22 2410 | 103.238.252.0/22 2411 | 103.239.0.0/22 2412 | 103.239.44.0/22 2413 | 103.239.68.0/22 2414 | 103.239.152.0/21 2415 | 103.239.180.0/22 2416 | 103.239.184.0/22 2417 | 103.239.192.0/21 2418 | 103.239.204.0/22 2419 | 103.239.208.0/22 2420 | 103.239.224.0/22 2421 | 103.239.244.0/22 2422 | 103.240.16.0/22 2423 | 103.240.36.0/22 2424 | 103.240.72.0/22 2425 | 103.240.84.0/22 2426 | 103.240.124.0/22 2427 | 103.240.172.0/22 2428 | 103.240.188.0/22 2429 | 103.240.244.0/22 2430 | 103.241.12.0/22 2431 | 103.241.92.0/22 2432 | 103.241.96.0/22 2433 | 103.241.160.0/22 2434 | 103.241.184.0/21 2435 | 103.241.220.0/22 2436 | 103.242.128.0/23 2437 | 103.242.160.0/22 2438 | 103.242.168.0/21 2439 | 103.242.176.0/22 2440 | 103.242.200.0/22 2441 | 103.242.212.0/22 2442 | 103.242.220.0/22 2443 | 103.242.240.0/22 2444 | 103.243.136.0/22 2445 | 103.243.252.0/22 2446 | 103.244.16.0/22 2447 | 103.244.58.0/23 2448 | 103.244.60.0/22 2449 | 103.244.64.0/20 2450 | 103.244.80.0/21 2451 | 103.244.116.0/22 2452 | 103.244.164.0/22 2453 | 103.244.232.0/22 2454 | 103.244.252.0/22 2455 | 103.245.23.0/24 2456 | 103.245.52.0/22 2457 | 103.245.60.0/22 2458 | 103.245.80.0/22 2459 | 103.245.124.0/22 2460 | 103.245.128.0/22 2461 | 103.246.8.0/21 2462 | 103.246.120.0/21 2463 | 103.246.132.0/22 2464 | 103.246.152.0/22 2465 | 103.247.168.0/21 2466 | 103.247.176.0/22 2467 | 103.247.200.0/22 2468 | 103.247.212.0/22 2469 | 103.248.64.0/23 2470 | 103.248.100.0/22 2471 | 103.248.124.0/22 2472 | 103.248.152.0/22 2473 | 103.248.168.0/22 2474 | 103.248.192.0/22 2475 | 103.248.212.0/22 2476 | 103.248.224.0/21 2477 | 103.249.8.0/21 2478 | 103.249.52.0/22 2479 | 103.249.128.0/22 2480 | 103.249.136.0/22 2481 | 103.249.144.0/22 2482 | 103.249.164.0/22 2483 | 103.249.168.0/21 2484 | 103.249.176.0/22 2485 | 103.249.188.0/22 2486 | 103.249.192.0/22 2487 | 103.249.244.0/22 2488 | 103.249.252.0/22 2489 | 103.250.32.0/22 2490 | 103.250.104.0/22 2491 | 103.250.124.0/22 2492 | 103.250.180.0/22 2493 | 103.250.192.0/22 2494 | 103.250.216.0/22 2495 | 103.250.224.0/22 2496 | 103.250.236.0/22 2497 | 103.250.248.0/21 2498 | 103.251.32.0/22 2499 | 103.251.84.0/22 2500 | 103.251.96.0/22 2501 | 103.251.124.0/22 2502 | 103.251.160.0/22 2503 | 103.251.192.0/22 2504 | 103.251.204.0/22 2505 | 103.251.240.0/22 2506 | 103.252.28.0/22 2507 | 103.252.36.0/22 2508 | 103.252.64.0/22 2509 | 103.252.96.0/22 2510 | 103.252.104.0/22 2511 | 103.252.172.0/22 2512 | 103.252.204.0/22 2513 | 103.252.208.0/22 2514 | 103.252.232.0/22 2515 | 103.252.248.0/22 2516 | 103.253.4.0/22 2517 | 103.253.60.0/22 2518 | 103.253.204.0/22 2519 | 103.253.220.0/22 2520 | 103.253.224.0/22 2521 | 103.253.232.0/22 2522 | 103.254.8.0/22 2523 | 103.254.20.0/22 2524 | 103.254.64.0/21 2525 | 103.254.76.0/22 2526 | 103.254.112.0/22 2527 | 103.254.176.0/22 2528 | 103.254.188.0/22 2529 | 103.255.68.0/22 2530 | 103.255.88.0/21 2531 | 103.255.136.0/21 2532 | 103.255.184.0/22 2533 | 103.255.200.0/22 2534 | 103.255.208.0/22 2535 | 103.255.228.0/22 2536 | 104.166.103.0/24 2537 | 104.222.196.0/24 2538 | 106.0.0.0/24 2539 | 106.0.2.0/23 2540 | 106.0.4.0/22 2541 | 106.0.8.0/21 2542 | 106.0.16.0/20 2543 | 106.0.44.0/22 2544 | 106.0.64.0/18 2545 | 106.2.0.0/23 2546 | 106.2.3.0/24 2547 | 106.2.4.0/22 2548 | 106.2.8.0/21 2549 | 106.2.16.0/20 2550 | 106.2.32.0/19 2551 | 106.2.64.0/18 2552 | 106.2.128.0/17 2553 | 106.3.16.0/20 2554 | 106.3.32.0/19 2555 | 106.3.64.0/20 2556 | 106.3.80.0/22 2557 | 106.3.88.0/21 2558 | 106.3.96.0/19 2559 | 106.3.128.0/17 2560 | 106.4.0.0/14 2561 | 106.8.0.0/15 2562 | 106.11.0.0/16 2563 | 106.12.0.0/14 2564 | 106.16.0.0/12 2565 | 106.32.0.0/12 2566 | 106.48.0.0/21 2567 | 106.48.8.0/22 2568 | 106.48.16.0/20 2569 | 106.48.32.0/20 2570 | 106.48.57.0/24 2571 | 106.48.60.0/24 2572 | 106.48.63.0/24 2573 | 106.48.64.0/18 2574 | 106.48.128.0/17 2575 | 106.49.1.0/24 2576 | 106.49.2.0/23 2577 | 106.49.4.0/22 2578 | 106.49.8.0/21 2579 | 106.49.16.0/20 2580 | 106.49.32.0/19 2581 | 106.49.64.0/19 2582 | 106.49.96.0/24 2583 | 106.49.98.0/23 2584 | 106.49.100.0/22 2585 | 106.49.104.0/21 2586 | 106.49.112.0/20 2587 | 106.49.128.0/17 2588 | 106.50.0.0/16 2589 | 106.52.0.0/14 2590 | 106.56.0.0/13 2591 | 106.74.0.0/16 2592 | 106.75.0.0/17 2593 | 106.75.128.0/18 2594 | 106.75.201.0/24 2595 | 106.75.204.0/22 2596 | 106.75.208.0/20 2597 | 106.75.224.0/19 2598 | 106.80.0.0/12 2599 | 106.108.0.0/14 2600 | 106.112.0.0/12 2601 | 106.224.0.0/12 2602 | 109.71.4.0/24 2603 | 109.244.0.0/16 2604 | 110.6.0.0/15 2605 | 110.16.0.0/14 2606 | 110.34.40.0/21 2607 | 110.40.0.0/15 2608 | 110.42.0.0/16 2609 | 110.43.0.0/18 2610 | 110.43.64.0/21 2611 | 110.43.72.0/22 2612 | 110.43.76.0/23 2613 | 110.43.80.0/20 2614 | 110.43.96.0/19 2615 | 110.43.128.0/17 2616 | 110.44.12.0/22 2617 | 110.44.144.0/20 2618 | 110.48.0.0/16 2619 | 110.51.0.0/16 2620 | 110.52.0.0/15 2621 | 110.56.0.0/13 2622 | 110.64.0.0/15 2623 | 110.72.0.0/15 2624 | 110.75.0.0/16 2625 | 110.76.0.0/20 2626 | 110.76.16.0/22 2627 | 110.76.20.0/24 2628 | 110.76.22.0/24 2629 | 110.76.24.0/21 2630 | 110.76.32.0/19 2631 | 110.76.132.0/22 2632 | 110.76.156.0/22 2633 | 110.76.184.0/22 2634 | 110.76.192.0/18 2635 | 110.77.0.0/17 2636 | 110.80.0.0/13 2637 | 110.88.0.0/14 2638 | 110.92.68.0/22 2639 | 110.93.32.0/19 2640 | 110.94.0.0/15 2641 | 110.96.0.0/11 2642 | 110.152.0.0/14 2643 | 110.156.0.0/15 2644 | 110.166.0.0/15 2645 | 110.172.192.0/18 2646 | 110.173.0.0/19 2647 | 110.173.32.0/20 2648 | 110.173.64.0/19 2649 | 110.173.192.0/19 2650 | 110.176.0.0/12 2651 | 110.192.0.0/11 2652 | 110.228.0.0/14 2653 | 110.232.32.0/19 2654 | 110.236.0.0/15 2655 | 110.240.0.0/12 2656 | 111.0.0.0/10 2657 | 111.66.0.0/16 2658 | 111.67.192.0/20 2659 | 111.68.64.0/19 2660 | 111.72.0.0/13 2661 | 111.85.0.0/16 2662 | 111.91.192.0/19 2663 | 111.92.248.0/21 2664 | 111.112.0.0/14 2665 | 111.116.0.0/15 2666 | 111.118.200.0/21 2667 | 111.119.64.0/18 2668 | 111.119.128.0/19 2669 | 111.120.0.0/14 2670 | 111.124.0.0/16 2671 | 111.126.0.0/15 2672 | 111.128.0.0/11 2673 | 111.160.0.0/13 2674 | 111.170.0.0/16 2675 | 111.172.0.0/14 2676 | 111.176.0.0/13 2677 | 111.186.0.0/15 2678 | 111.192.0.0/12 2679 | 111.208.0.0/13 2680 | 111.221.28.0/24 2681 | 111.221.128.0/17 2682 | 111.222.0.0/16 2683 | 111.223.4.0/22 2684 | 111.223.8.0/21 2685 | 111.223.16.0/22 2686 | 111.223.240.0/22 2687 | 111.223.249.0/24 2688 | 111.223.250.0/23 2689 | 111.224.0.0/13 2690 | 111.235.96.0/19 2691 | 111.235.156.0/22 2692 | 111.235.160.0/21 2693 | 111.235.170.0/23 2694 | 111.235.172.0/22 2695 | 111.235.176.0/20 2696 | 112.0.0.0/10 2697 | 112.64.0.0/14 2698 | 112.73.64.0/18 2699 | 112.74.0.0/16 2700 | 112.80.0.0/12 2701 | 112.96.0.0/13 2702 | 112.109.128.0/17 2703 | 112.111.0.0/16 2704 | 112.112.0.0/14 2705 | 112.116.0.0/15 2706 | 112.122.0.0/15 2707 | 112.124.0.0/14 2708 | 112.128.0.0/14 2709 | 112.132.0.0/16 2710 | 112.137.48.0/21 2711 | 112.192.0.0/14 2712 | 112.224.0.0/11 2713 | 113.0.0.0/13 2714 | 113.8.0.0/15 2715 | 113.11.192.0/19 2716 | 113.12.0.0/14 2717 | 113.16.0.0/15 2718 | 113.18.0.0/16 2719 | 113.21.232.0/21 2720 | 113.24.0.0/14 2721 | 113.31.0.0/16 2722 | 113.44.0.0/14 2723 | 113.48.0.0/14 2724 | 113.52.160.0/19 2725 | 113.52.228.0/22 2726 | 113.54.0.0/15 2727 | 113.56.0.0/15 2728 | 113.58.0.0/16 2729 | 113.59.0.0/17 2730 | 113.59.224.0/22 2731 | 113.62.0.0/15 2732 | 113.64.0.0/10 2733 | 113.128.0.0/15 2734 | 113.130.96.0/20 2735 | 113.130.112.0/21 2736 | 113.132.0.0/14 2737 | 113.136.0.0/13 2738 | 113.194.0.0/15 2739 | 113.197.100.0/23 2740 | 113.197.102.0/24 2741 | 113.197.104.0/22 2742 | 113.200.0.0/15 2743 | 113.202.0.0/16 2744 | 113.204.0.0/14 2745 | 113.208.96.0/19 2746 | 113.208.128.0/17 2747 | 113.209.0.0/16 2748 | 113.212.0.0/18 2749 | 113.212.100.0/22 2750 | 113.212.184.0/21 2751 | 113.213.0.0/17 2752 | 113.214.0.0/15 2753 | 113.218.0.0/15 2754 | 113.220.0.0/14 2755 | 113.224.0.0/12 2756 | 113.240.0.0/13 2757 | 113.248.0.0/14 2758 | 114.28.0.0/16 2759 | 114.31.64.0/21 2760 | 114.54.0.0/15 2761 | 114.60.0.0/14 2762 | 114.64.0.0/14 2763 | 114.68.0.0/16 2764 | 114.79.64.0/18 2765 | 114.80.0.0/12 2766 | 114.96.0.0/13 2767 | 114.104.0.0/14 2768 | 114.110.0.0/20 2769 | 114.110.64.0/18 2770 | 114.111.0.0/19 2771 | 114.111.160.0/19 2772 | 114.112.4.0/22 2773 | 114.112.8.0/22 2774 | 114.112.24.0/21 2775 | 114.112.32.0/19 2776 | 114.112.64.0/19 2777 | 114.112.96.0/20 2778 | 114.112.116.0/22 2779 | 114.112.120.0/21 2780 | 114.112.136.0/21 2781 | 114.112.144.0/20 2782 | 114.112.160.0/19 2783 | 114.112.192.0/19 2784 | 114.113.0.0/17 2785 | 114.113.128.0/21 2786 | 114.113.140.0/22 2787 | 114.113.144.0/20 2788 | 114.113.160.0/19 2789 | 114.113.196.0/22 2790 | 114.113.200.0/21 2791 | 114.113.208.0/20 2792 | 114.113.224.0/20 2793 | 114.114.0.0/15 2794 | 114.116.0.0/14 2795 | 114.132.0.0/16 2796 | 114.135.0.0/16 2797 | 114.138.0.0/15 2798 | 114.141.64.0/21 2799 | 114.141.80.0/21 2800 | 114.141.128.0/18 2801 | 114.196.0.0/15 2802 | 114.198.248.0/21 2803 | 114.208.0.0/12 2804 | 114.224.0.0/11 2805 | 115.24.0.0/14 2806 | 115.28.0.0/15 2807 | 115.31.64.0/20 2808 | 115.32.0.0/14 2809 | 115.42.56.0/22 2810 | 115.44.0.0/14 2811 | 115.48.0.0/12 2812 | 115.69.64.0/20 2813 | 115.84.0.0/18 2814 | 115.84.192.0/19 2815 | 115.85.192.0/18 2816 | 115.100.0.0/14 2817 | 115.104.0.0/14 2818 | 115.120.0.0/14 2819 | 115.124.16.0/20 2820 | 115.148.0.0/14 2821 | 115.152.0.0/13 2822 | 115.166.64.0/19 2823 | 115.168.0.0/13 2824 | 115.180.0.0/14 2825 | 115.187.0.0/20 2826 | 115.190.0.0/15 2827 | 115.192.0.0/11 2828 | 115.224.0.0/12 2829 | 116.0.8.0/21 2830 | 116.0.24.0/21 2831 | 116.1.0.0/16 2832 | 116.2.0.0/15 2833 | 116.4.0.0/14 2834 | 116.8.0.0/14 2835 | 116.13.0.0/16 2836 | 116.16.0.0/12 2837 | 116.50.0.0/20 2838 | 116.52.0.0/14 2839 | 116.56.0.0/15 2840 | 116.58.128.0/20 2841 | 116.58.208.0/20 2842 | 116.60.0.0/14 2843 | 116.66.0.0/18 2844 | 116.66.64.0/19 2845 | 116.66.96.0/20 2846 | 116.66.120.0/22 2847 | 116.68.136.0/21 2848 | 116.68.176.0/21 2849 | 116.69.0.0/16 2850 | 116.70.0.0/17 2851 | 116.76.0.0/14 2852 | 116.85.0.0/17 2853 | 116.85.128.0/18 2854 | 116.85.192.0/19 2855 | 116.85.224.0/20 2856 | 116.85.240.0/21 2857 | 116.85.248.0/23 2858 | 116.85.250.0/24 2859 | 116.85.252.0/22 2860 | 116.89.144.0/20 2861 | 116.90.80.0/20 2862 | 116.90.184.0/21 2863 | 116.95.0.0/16 2864 | 116.112.0.0/14 2865 | 116.116.0.0/15 2866 | 116.128.0.0/10 2867 | 116.192.0.0/16 2868 | 116.193.16.0/20 2869 | 116.193.32.0/19 2870 | 116.193.176.0/21 2871 | 116.194.0.0/15 2872 | 116.196.0.0/21 2873 | 116.196.8.0/22 2874 | 116.196.12.0/23 2875 | 116.196.16.0/20 2876 | 116.196.32.0/19 2877 | 116.196.64.0/18 2878 | 116.196.128.0/17 2879 | 116.197.160.0/21 2880 | 116.197.180.0/23 2881 | 116.198.0.0/16 2882 | 116.199.0.0/17 2883 | 116.199.128.0/19 2884 | 116.204.0.0/17 2885 | 116.204.168.0/22 2886 | 116.204.232.0/21 2887 | 116.204.244.0/22 2888 | 116.205.0.0/16 2889 | 116.207.0.0/16 2890 | 116.208.0.0/14 2891 | 116.212.160.0/20 2892 | 116.213.64.0/18 2893 | 116.213.128.0/17 2894 | 116.214.32.0/19 2895 | 116.214.64.0/20 2896 | 116.214.128.0/17 2897 | 116.215.0.0/16 2898 | 116.216.0.0/14 2899 | 116.224.0.0/12 2900 | 116.242.0.0/15 2901 | 116.244.0.0/14 2902 | 116.248.0.0/15 2903 | 116.252.0.0/15 2904 | 116.254.104.0/21 2905 | 116.254.128.0/17 2906 | 116.255.128.0/17 2907 | 117.8.0.0/13 2908 | 117.21.0.0/16 2909 | 117.22.0.0/15 2910 | 117.24.0.0/13 2911 | 117.32.0.0/13 2912 | 117.40.0.0/14 2913 | 117.44.0.0/15 2914 | 117.48.0.0/15 2915 | 117.50.0.0/16 2916 | 117.51.128.0/17 2917 | 117.53.48.0/20 2918 | 117.53.176.0/20 2919 | 117.57.0.0/16 2920 | 117.58.0.0/18 2921 | 117.59.0.0/16 2922 | 117.60.0.0/14 2923 | 117.64.0.0/13 2924 | 117.72.0.0/15 2925 | 117.74.64.0/19 2926 | 117.74.128.0/17 2927 | 117.75.0.0/16 2928 | 117.76.0.0/14 2929 | 117.80.0.0/12 2930 | 117.100.0.0/15 2931 | 117.103.16.0/20 2932 | 117.103.40.0/21 2933 | 117.103.72.0/21 2934 | 117.103.128.0/20 2935 | 117.104.168.0/21 2936 | 117.106.0.0/15 2937 | 117.112.0.0/13 2938 | 117.120.64.0/18 2939 | 117.120.128.0/17 2940 | 117.121.0.0/19 2941 | 117.121.32.0/21 2942 | 117.121.40.0/22 2943 | 117.121.44.0/23 2944 | 117.121.46.0/24 2945 | 117.121.48.0/20 2946 | 117.121.64.0/18 2947 | 117.121.128.0/20 2948 | 117.121.148.0/22 2949 | 117.121.152.0/21 2950 | 117.121.160.0/19 2951 | 117.121.192.0/21 2952 | 117.122.128.0/17 2953 | 117.124.0.0/14 2954 | 117.128.0.0/10 2955 | 118.24.0.0/15 2956 | 118.26.0.0/16 2957 | 118.28.0.0/15 2958 | 118.30.0.0/20 2959 | 118.30.16.0/21 2960 | 118.30.24.0/22 2961 | 118.30.32.0/19 2962 | 118.30.64.0/18 2963 | 118.30.128.0/17 2964 | 118.31.0.0/16 2965 | 118.64.0.0/15 2966 | 118.66.0.0/16 2967 | 118.67.112.0/20 2968 | 118.72.0.0/13 2969 | 118.80.0.0/15 2970 | 118.84.0.0/15 2971 | 118.88.32.0/19 2972 | 118.88.64.0/18 2973 | 118.88.128.0/17 2974 | 118.89.0.0/16 2975 | 118.102.16.0/20 2976 | 118.102.32.0/21 2977 | 118.103.164.0/22 2978 | 118.103.168.0/21 2979 | 118.103.176.0/22 2980 | 118.103.245.0/24 2981 | 118.103.246.0/23 2982 | 118.112.0.0/13 2983 | 118.120.0.0/14 2984 | 118.124.0.0/15 2985 | 118.126.1.0/24 2986 | 118.126.2.0/23 2987 | 118.126.4.0/22 2988 | 118.126.8.0/21 2989 | 118.126.16.0/23 2990 | 118.126.18.0/24 2991 | 118.126.32.0/19 2992 | 118.126.64.0/18 2993 | 118.126.128.0/17 2994 | 118.127.128.0/19 2995 | 118.132.0.0/14 2996 | 118.144.0.0/14 2997 | 118.178.0.0/16 2998 | 118.180.0.0/14 2999 | 118.184.5.0/24 3000 | 118.184.10.0/24 3001 | 118.184.115.0/24 3002 | 118.184.116.0/22 3003 | 118.184.120.0/23 3004 | 118.184.122.0/24 3005 | 118.184.128.0/18 3006 | 118.184.192.0/19 3007 | 118.184.240.0/20 3008 | 118.186.0.0/15 3009 | 118.188.0.0/16 3010 | 118.190.0.0/16 3011 | 118.191.0.0/17 3012 | 118.191.144.0/20 3013 | 118.191.160.0/19 3014 | 118.191.192.0/20 3015 | 118.191.209.0/24 3016 | 118.191.210.0/23 3017 | 118.191.212.0/22 3018 | 118.191.248.0/21 3019 | 118.192.0.0/16 3020 | 118.193.0.0/22 3021 | 118.193.32.0/20 3022 | 118.193.56.0/21 3023 | 118.193.68.0/22 3024 | 118.193.72.0/24 3025 | 118.193.77.0/24 3026 | 118.193.96.0/19 3027 | 118.194.0.0/17 3028 | 118.194.128.0/18 3029 | 118.194.192.0/19 3030 | 118.194.232.0/21 3031 | 118.194.240.0/20 3032 | 118.195.0.0/16 3033 | 118.196.0.0/14 3034 | 118.202.0.0/15 3035 | 118.204.0.0/14 3036 | 118.212.0.0/15 3037 | 118.215.192.0/18 3038 | 118.224.0.0/14 3039 | 118.228.0.0/17 3040 | 118.228.128.0/20 3041 | 118.228.144.0/21 3042 | 118.228.156.0/22 3043 | 118.228.160.0/19 3044 | 118.228.192.0/18 3045 | 118.229.0.0/16 3046 | 118.230.0.0/16 3047 | 118.239.0.0/16 3048 | 118.242.0.0/16 3049 | 118.244.0.0/14 3050 | 118.248.0.0/13 3051 | 119.0.0.0/15 3052 | 119.2.0.0/19 3053 | 119.2.128.0/17 3054 | 119.3.0.0/16 3055 | 119.4.0.0/14 3056 | 119.8.0.0/16 3057 | 119.10.0.0/17 3058 | 119.15.136.0/21 3059 | 119.16.0.0/16 3060 | 119.18.192.0/20 3061 | 119.18.208.0/21 3062 | 119.18.224.0/19 3063 | 119.19.0.0/16 3064 | 119.20.0.0/14 3065 | 119.27.64.0/18 3066 | 119.27.128.0/17 3067 | 119.28.28.0/24 3068 | 119.29.0.0/16 3069 | 119.30.48.0/20 3070 | 119.31.192.0/19 3071 | 119.32.0.0/14 3072 | 119.36.0.0/15 3073 | 119.38.0.0/17 3074 | 119.38.128.0/18 3075 | 119.38.192.0/20 3076 | 119.38.208.0/22 3077 | 119.38.212.0/23 3078 | 119.38.214.0/27 3079 | 119.38.214.56/29 3080 | 119.38.214.64/26 3081 | 119.38.214.128/25 3082 | 119.38.215.0/24 3083 | 119.38.216.0/21 3084 | 119.39.0.0/16 3085 | 119.40.0.0/18 3086 | 119.40.64.0/20 3087 | 119.40.128.0/17 3088 | 119.41.0.0/16 3089 | 119.42.0.0/19 3090 | 119.42.52.0/22 3091 | 119.42.128.0/20 3092 | 119.42.224.0/19 3093 | 119.44.0.0/15 3094 | 119.48.0.0/13 3095 | 119.57.0.0/16 3096 | 119.58.0.0/16 3097 | 119.59.128.0/17 3098 | 119.60.0.0/15 3099 | 119.62.0.0/16 3100 | 119.63.32.0/19 3101 | 119.75.208.0/20 3102 | 119.78.0.0/15 3103 | 119.80.0.0/16 3104 | 119.82.208.0/20 3105 | 119.84.0.0/14 3106 | 119.88.0.0/16 3107 | 119.89.0.0/17 3108 | 119.89.128.0/21 3109 | 119.89.136.0/23 3110 | 119.89.139.0/24 3111 | 119.89.140.0/22 3112 | 119.89.144.0/20 3113 | 119.89.160.0/20 3114 | 119.89.176.0/22 3115 | 119.89.180.0/23 3116 | 119.89.183.0/24 3117 | 119.89.184.0/21 3118 | 119.89.192.0/23 3119 | 119.89.194.0/24 3120 | 119.89.196.0/22 3121 | 119.89.200.0/21 3122 | 119.89.208.0/21 3123 | 119.89.217.0/24 3124 | 119.89.218.0/23 3125 | 119.89.220.0/22 3126 | 119.89.224.0/19 3127 | 119.90.0.0/16 3128 | 119.91.0.0/17 3129 | 119.91.128.0/20 3130 | 119.91.144.0/22 3131 | 119.91.148.0/23 3132 | 119.91.151.0/24 3133 | 119.91.152.0/21 3134 | 119.91.160.0/20 3135 | 119.91.176.0/23 3136 | 119.91.178.0/24 3137 | 119.91.180.0/22 3138 | 119.91.184.0/21 3139 | 119.91.192.0/21 3140 | 119.91.200.0/23 3141 | 119.91.202.0/24 3142 | 119.91.204.0/22 3143 | 119.91.208.0/21 3144 | 119.91.216.0/22 3145 | 119.91.220.0/24 3146 | 119.91.222.0/23 3147 | 119.91.224.0/19 3148 | 119.96.0.0/13 3149 | 119.108.0.0/15 3150 | 119.112.0.0/12 3151 | 119.128.0.0/12 3152 | 119.144.0.0/14 3153 | 119.148.160.0/19 3154 | 119.151.192.0/18 3155 | 119.160.200.0/21 3156 | 119.161.120.0/21 3157 | 119.161.128.0/21 3158 | 119.161.168.0/21 3159 | 119.161.176.0/20 3160 | 119.161.192.0/18 3161 | 119.162.0.0/15 3162 | 119.164.0.0/14 3163 | 119.176.0.0/12 3164 | 119.232.0.0/15 3165 | 119.235.128.0/19 3166 | 119.235.160.0/20 3167 | 119.235.184.0/22 3168 | 119.248.0.0/14 3169 | 119.252.96.0/21 3170 | 119.252.240.0/21 3171 | 119.252.248.0/23 3172 | 119.252.251.0/24 3173 | 119.252.252.0/23 3174 | 119.253.0.0/16 3175 | 119.254.0.0/15 3176 | 120.0.0.0/12 3177 | 120.24.0.0/14 3178 | 120.30.0.0/15 3179 | 120.32.0.0/12 3180 | 120.48.0.0/15 3181 | 120.52.0.0/14 3182 | 120.64.0.0/13 3183 | 120.72.32.0/19 3184 | 120.72.128.0/17 3185 | 120.76.0.0/14 3186 | 120.80.0.0/13 3187 | 120.88.8.0/21 3188 | 120.90.0.0/15 3189 | 120.92.0.0/17 3190 | 120.92.128.0/18 3191 | 120.92.194.0/23 3192 | 120.92.198.0/23 3193 | 120.92.200.0/21 3194 | 120.92.208.0/20 3195 | 120.92.224.0/19 3196 | 120.94.0.0/15 3197 | 120.128.0.0/14 3198 | 120.132.0.0/17 3199 | 120.132.128.0/18 3200 | 120.132.192.0/19 3201 | 120.132.224.0/21 3202 | 120.132.232.0/22 3203 | 120.132.240.0/20 3204 | 120.133.0.0/16 3205 | 120.134.0.0/15 3206 | 120.136.16.0/21 3207 | 120.136.128.0/18 3208 | 120.137.0.0/17 3209 | 120.143.128.0/19 3210 | 120.192.0.0/10 3211 | 121.0.8.0/21 3212 | 121.0.16.0/20 3213 | 121.4.0.0/15 3214 | 121.8.0.0/13 3215 | 121.16.0.0/12 3216 | 121.32.0.0/13 3217 | 121.40.0.0/14 3218 | 121.46.0.0/18 3219 | 121.46.76.0/22 3220 | 121.46.128.0/17 3221 | 121.47.0.0/16 3222 | 121.48.0.0/15 3223 | 121.50.8.0/21 3224 | 121.51.0.0/16 3225 | 121.52.160.0/19 3226 | 121.52.208.0/20 3227 | 121.52.224.0/19 3228 | 121.54.176.0/21 3229 | 121.55.0.0/18 3230 | 121.56.0.0/15 3231 | 121.58.0.0/17 3232 | 121.58.136.0/21 3233 | 121.58.144.0/20 3234 | 121.58.160.0/21 3235 | 121.59.0.0/16 3236 | 121.60.0.0/14 3237 | 121.68.0.0/14 3238 | 121.76.0.0/15 3239 | 121.79.128.0/18 3240 | 121.89.0.0/16 3241 | 121.100.128.0/17 3242 | 121.101.0.0/18 3243 | 121.101.208.0/20 3244 | 121.192.0.0/13 3245 | 121.200.192.0/21 3246 | 121.201.0.0/16 3247 | 121.204.0.0/14 3248 | 121.224.0.0/12 3249 | 121.248.0.0/14 3250 | 121.255.0.0/16 3251 | 122.0.64.0/18 3252 | 122.0.128.0/17 3253 | 122.4.0.0/14 3254 | 122.8.1.0/24 3255 | 122.8.6.0/23 3256 | 122.8.10.0/23 3257 | 122.8.12.0/22 3258 | 122.8.16.0/20 3259 | 122.8.32.0/19 3260 | 122.8.64.0/20 3261 | 122.8.80.0/22 3262 | 122.8.86.0/23 3263 | 122.8.88.0/24 3264 | 122.8.91.0/24 3265 | 122.8.92.0/22 3266 | 122.8.96.0/22 3267 | 122.8.100.0/24 3268 | 122.8.111.0/24 3269 | 122.8.112.0/21 3270 | 122.8.120.0/22 3271 | 122.8.124.0/23 3272 | 122.8.128.0/17 3273 | 122.10.132.0/22 3274 | 122.10.136.0/21 3275 | 122.10.144.0/20 3276 | 122.10.160.0/22 3277 | 122.10.196.0/23 3278 | 122.10.216.0/22 3279 | 122.10.228.0/22 3280 | 122.10.232.0/21 3281 | 122.10.240.0/21 3282 | 122.10.248.0/22 3283 | 122.11.0.0/17 3284 | 122.12.0.0/15 3285 | 122.14.0.0/17 3286 | 122.14.192.0/18 3287 | 122.48.0.0/16 3288 | 122.49.0.0/18 3289 | 122.51.0.0/16 3290 | 122.64.0.0/11 3291 | 122.96.0.0/15 3292 | 122.98.144.0/20 3293 | 122.98.160.0/21 3294 | 122.98.172.0/22 3295 | 122.98.176.0/20 3296 | 122.98.192.0/21 3297 | 122.98.232.0/21 3298 | 122.98.240.0/20 3299 | 122.102.0.0/20 3300 | 122.102.64.0/19 3301 | 122.112.0.0/18 3302 | 122.112.64.0/19 3303 | 122.112.96.0/22 3304 | 122.112.107.0/24 3305 | 122.112.109.0/24 3306 | 122.112.118.0/24 3307 | 122.112.122.0/24 3308 | 122.112.125.0/24 3309 | 122.112.128.0/17 3310 | 122.113.0.0/16 3311 | 122.114.0.0/16 3312 | 122.115.0.0/18 3313 | 122.115.80.0/20 3314 | 122.115.96.0/19 3315 | 122.115.128.0/17 3316 | 122.119.0.0/16 3317 | 122.128.100.0/22 3318 | 122.128.120.0/21 3319 | 122.136.0.0/13 3320 | 122.144.128.0/17 3321 | 122.152.192.0/18 3322 | 122.156.0.0/14 3323 | 122.188.0.0/14 3324 | 122.192.0.0/14 3325 | 122.198.0.0/16 3326 | 122.200.40.0/21 3327 | 122.200.64.0/18 3328 | 122.201.48.0/20 3329 | 122.204.0.0/14 3330 | 122.224.0.0/12 3331 | 122.240.0.0/13 3332 | 122.248.24.0/21 3333 | 122.248.48.0/20 3334 | 122.255.64.0/21 3335 | 123.0.128.0/21 3336 | 123.0.136.0/23 3337 | 123.0.139.0/24 3338 | 123.0.140.0/22 3339 | 123.0.144.0/20 3340 | 123.0.160.0/19 3341 | 123.4.0.0/14 3342 | 123.8.0.0/13 3343 | 123.49.129.0/24 3344 | 123.49.130.0/23 3345 | 123.49.132.0/22 3346 | 123.49.136.0/22 3347 | 123.49.152.0/21 3348 | 123.49.160.0/19 3349 | 123.49.192.0/18 3350 | 123.50.160.0/19 3351 | 123.52.0.0/14 3352 | 123.56.0.0/15 3353 | 123.58.0.0/18 3354 | 123.58.64.0/20 3355 | 123.58.80.0/21 3356 | 123.58.88.0/22 3357 | 123.58.96.0/19 3358 | 123.58.128.0/17 3359 | 123.59.0.0/16 3360 | 123.61.0.0/16 3361 | 123.62.0.0/16 3362 | 123.64.0.0/11 3363 | 123.96.0.0/15 3364 | 123.98.0.0/17 3365 | 123.99.128.0/17 3366 | 123.100.0.0/19 3367 | 123.100.232.0/24 3368 | 123.101.0.0/16 3369 | 123.103.0.0/20 3370 | 123.103.16.0/21 3371 | 123.103.24.0/22 3372 | 123.103.28.0/23 3373 | 123.103.30.0/24 3374 | 123.103.32.0/19 3375 | 123.103.64.0/18 3376 | 123.108.134.0/24 3377 | 123.108.138.0/23 3378 | 123.108.140.0/24 3379 | 123.108.142.0/24 3380 | 123.108.208.0/20 3381 | 123.112.0.0/12 3382 | 123.128.0.0/13 3383 | 123.137.0.0/16 3384 | 123.138.0.0/15 3385 | 123.144.0.0/12 3386 | 123.160.0.0/12 3387 | 123.176.60.0/22 3388 | 123.176.80.0/20 3389 | 123.177.0.0/16 3390 | 123.178.0.0/15 3391 | 123.180.0.0/14 3392 | 123.184.0.0/13 3393 | 123.196.0.0/15 3394 | 123.199.128.0/17 3395 | 123.206.0.0/15 3396 | 123.232.0.0/14 3397 | 123.242.0.0/17 3398 | 123.242.192.0/21 3399 | 123.244.0.0/14 3400 | 123.249.0.0/16 3401 | 123.253.0.0/16 3402 | 123.254.96.0/21 3403 | 124.6.64.0/18 3404 | 124.14.0.0/15 3405 | 124.16.0.0/15 3406 | 124.20.0.0/14 3407 | 124.28.192.0/18 3408 | 124.29.0.0/17 3409 | 124.31.0.0/16 3410 | 124.40.112.0/20 3411 | 124.40.128.0/18 3412 | 124.40.192.0/19 3413 | 124.40.240.0/22 3414 | 124.42.0.0/16 3415 | 124.47.0.0/18 3416 | 124.64.0.0/15 3417 | 124.66.0.0/17 3418 | 124.67.0.0/16 3419 | 124.68.0.0/17 3420 | 124.68.128.0/18 3421 | 124.68.192.0/19 3422 | 124.68.224.0/20 3423 | 124.68.240.0/23 3424 | 124.68.242.0/24 3425 | 124.68.244.0/23 3426 | 124.68.254.0/23 3427 | 124.69.0.0/16 3428 | 124.70.0.0/22 3429 | 124.72.0.0/13 3430 | 124.88.0.0/13 3431 | 124.108.8.0/21 3432 | 124.108.40.0/21 3433 | 124.109.96.0/21 3434 | 124.112.0.0/13 3435 | 124.126.0.0/15 3436 | 124.128.0.0/13 3437 | 124.147.128.0/17 3438 | 124.150.137.0/24 3439 | 124.151.0.0/16 3440 | 124.152.0.0/16 3441 | 124.160.0.0/13 3442 | 124.172.0.0/14 3443 | 124.192.0.0/15 3444 | 124.196.0.0/16 3445 | 124.200.0.0/13 3446 | 124.220.0.0/14 3447 | 124.224.0.0/12 3448 | 124.240.0.0/17 3449 | 124.240.128.0/18 3450 | 124.242.0.0/16 3451 | 124.243.192.0/18 3452 | 124.248.0.0/17 3453 | 124.249.0.0/16 3454 | 124.250.0.0/17 3455 | 124.250.136.0/21 3456 | 124.250.144.0/20 3457 | 124.250.160.0/19 3458 | 124.250.192.0/18 3459 | 124.251.0.0/16 3460 | 124.254.0.0/18 3461 | 125.31.192.0/18 3462 | 125.32.0.0/12 3463 | 125.58.128.0/17 3464 | 125.61.128.0/17 3465 | 125.62.0.0/18 3466 | 125.64.0.0/11 3467 | 125.96.0.0/15 3468 | 125.98.0.0/16 3469 | 125.104.0.0/13 3470 | 125.112.0.0/12 3471 | 125.169.0.0/16 3472 | 125.171.0.0/16 3473 | 125.208.0.0/19 3474 | 125.208.37.0/24 3475 | 125.208.40.0/24 3476 | 125.208.45.0/24 3477 | 125.208.46.0/23 3478 | 125.208.48.0/20 3479 | 125.210.0.0/15 3480 | 125.213.0.0/17 3481 | 125.214.96.0/19 3482 | 125.215.0.0/18 3483 | 125.216.0.0/13 3484 | 125.254.128.0/17 3485 | 128.108.0.0/16 3486 | 129.28.0.0/16 3487 | 129.204.0.0/16 3488 | 129.211.0.0/16 3489 | 129.223.254.0/24 3490 | 130.214.218.0/23 3491 | 131.228.96.0/24 3492 | 131.253.12.0/29 3493 | 131.253.12.80/28 3494 | 131.253.12.240/29 3495 | 132.232.0.0/16 3496 | 132.237.134.0/24 3497 | 132.237.150.0/24 3498 | 134.175.0.0/16 3499 | 135.159.208.0/20 3500 | 135.244.80.0/20 3501 | 137.59.59.0/24 3502 | 137.59.88.0/22 3503 | 138.32.244.0/22 3504 | 139.5.56.0/21 3505 | 139.5.80.0/22 3506 | 139.5.92.0/22 3507 | 139.5.128.0/22 3508 | 139.5.160.0/22 3509 | 139.5.192.0/22 3510 | 139.5.204.0/22 3511 | 139.5.244.0/22 3512 | 139.9.0.0/16 3513 | 139.129.0.0/16 3514 | 139.148.0.0/16 3515 | 139.155.0.0/16 3516 | 139.159.0.0/19 3517 | 139.159.32.0/21 3518 | 139.159.40.0/22 3519 | 139.159.50.8/30 3520 | 139.159.50.20/32 3521 | 139.159.50.23/32 3522 | 139.159.50.24/32 3523 | 139.159.50.27/32 3524 | 139.159.50.28/30 3525 | 139.159.50.32/27 3526 | 139.159.50.64/26 3527 | 139.159.50.128/25 3528 | 139.159.52.0/22 3529 | 139.159.56.0/21 3530 | 139.159.64.0/19 3531 | 139.159.96.0/20 3532 | 139.159.112.0/22 3533 | 139.159.116.0/23 3534 | 139.159.120.0/21 3535 | 139.159.128.0/17 3536 | 139.170.0.0/16 3537 | 139.176.0.0/16 3538 | 139.183.0.0/16 3539 | 139.186.0.0/16 3540 | 139.189.0.0/16 3541 | 139.196.0.0/15 3542 | 139.198.0.0/21 3543 | 139.198.8.0/23 3544 | 139.198.11.0/24 3545 | 139.198.12.0/22 3546 | 139.198.16.0/20 3547 | 139.198.32.0/19 3548 | 139.198.66.0/23 3549 | 139.198.68.0/22 3550 | 139.198.72.0/21 3551 | 139.198.80.0/20 3552 | 139.198.96.0/20 3553 | 139.198.112.0/21 3554 | 139.198.122.0/23 3555 | 139.198.124.0/22 3556 | 139.198.128.0/17 3557 | 139.199.0.0/16 3558 | 139.200.0.0/13 3559 | 139.208.0.0/13 3560 | 139.217.0.0/16 3561 | 139.219.0.0/16 3562 | 139.220.0.0/17 3563 | 139.220.128.0/18 3564 | 139.220.192.0/22 3565 | 139.220.196.0/23 3566 | 139.220.200.0/21 3567 | 139.220.208.0/23 3568 | 139.220.212.0/22 3569 | 139.220.216.0/21 3570 | 139.220.224.0/19 3571 | 139.221.0.0/16 3572 | 139.224.0.0/16 3573 | 139.226.0.0/15 3574 | 140.75.0.0/16 3575 | 140.101.208.0/24 3576 | 140.143.0.0/16 3577 | 140.179.0.0/16 3578 | 140.205.0.0/18 3579 | 140.205.64.0/19 3580 | 140.205.96.0/20 3581 | 140.205.112.0/21 3582 | 140.205.120.0/23 3583 | 140.205.123.0/24 3584 | 140.205.124.0/22 3585 | 140.205.128.0/17 3586 | 140.206.0.0/15 3587 | 140.210.0.0/16 3588 | 140.224.0.0/16 3589 | 140.237.0.0/16 3590 | 140.240.0.0/16 3591 | 140.242.216.0/24 3592 | 140.242.223.0/24 3593 | 140.242.224.0/24 3594 | 140.243.0.0/16 3595 | 140.246.0.0/16 3596 | 140.249.0.0/16 3597 | 140.250.0.0/16 3598 | 140.255.0.0/16 3599 | 144.0.0.0/16 3600 | 144.7.0.0/16 3601 | 144.12.0.0/16 3602 | 144.36.146.0/23 3603 | 144.48.12.0/22 3604 | 144.48.64.0/22 3605 | 144.48.88.0/22 3606 | 144.48.156.0/22 3607 | 144.48.180.0/22 3608 | 144.48.184.0/22 3609 | 144.48.204.0/22 3610 | 144.48.208.0/21 3611 | 144.52.0.0/16 3612 | 144.123.0.0/16 3613 | 144.211.80.0/24 3614 | 144.211.138.0/24 3615 | 144.255.0.0/16 3616 | 146.56.192.0/18 3617 | 146.196.56.0/22 3618 | 146.196.68.0/22 3619 | 146.196.92.0/22 3620 | 146.196.112.0/21 3621 | 146.196.124.0/22 3622 | 146.217.137.0/24 3623 | 146.222.79.0/24 3624 | 146.222.81.0/24 3625 | 146.222.94.0/24 3626 | 147.243.13.32/27 3627 | 147.243.13.64/27 3628 | 147.243.14.32/27 3629 | 148.70.0.0/16 3630 | 150.0.0.0/16 3631 | 150.115.0.0/16 3632 | 150.121.0.0/16 3633 | 150.122.0.0/16 3634 | 150.129.136.0/22 3635 | 150.129.192.0/22 3636 | 150.129.252.0/22 3637 | 150.138.0.0/15 3638 | 150.223.0.0/16 3639 | 150.242.0.0/21 3640 | 150.242.8.0/22 3641 | 150.242.28.0/22 3642 | 150.242.44.0/22 3643 | 150.242.48.0/21 3644 | 150.242.56.0/22 3645 | 150.242.76.0/22 3646 | 150.242.80.0/22 3647 | 150.242.92.0/22 3648 | 150.242.96.0/22 3649 | 150.242.112.0/21 3650 | 150.242.120.0/22 3651 | 150.242.152.0/22 3652 | 150.242.158.0/24 3653 | 150.242.160.0/21 3654 | 150.242.168.0/22 3655 | 150.242.184.0/21 3656 | 150.242.192.0/22 3657 | 150.242.224.0/22 3658 | 150.242.232.0/21 3659 | 150.242.240.0/21 3660 | 150.242.248.0/22 3661 | 150.255.0.0/16 3662 | 152.32.168.0/21 3663 | 152.32.176.0/20 3664 | 152.32.192.0/18 3665 | 152.104.128.0/17 3666 | 152.136.0.0/16 3667 | 153.0.0.0/16 3668 | 153.3.0.0/16 3669 | 153.34.0.0/15 3670 | 153.36.0.0/15 3671 | 153.99.0.0/16 3672 | 153.101.0.0/16 3673 | 153.118.0.0/15 3674 | 154.8.128.0/17 3675 | 156.107.160.0/24 3676 | 156.107.170.0/24 3677 | 157.0.0.0/16 3678 | 157.18.0.0/16 3679 | 157.61.0.0/16 3680 | 157.119.8.0/21 3681 | 157.119.16.0/22 3682 | 157.119.28.0/22 3683 | 157.119.132.0/22 3684 | 157.119.136.0/21 3685 | 157.119.144.0/20 3686 | 157.119.160.0/21 3687 | 157.119.172.0/22 3688 | 157.119.192.0/21 3689 | 157.119.240.0/22 3690 | 157.119.252.0/22 3691 | 157.122.0.0/16 3692 | 157.133.186.0/23 3693 | 157.133.192.0/21 3694 | 157.133.212.0/24 3695 | 157.133.236.0/24 3696 | 157.148.0.0/16 3697 | 157.156.0.0/16 3698 | 157.255.0.0/16 3699 | 159.75.0.0/16 3700 | 159.153.120.0/22 3701 | 159.226.0.0/16 3702 | 160.19.208.0/21 3703 | 160.19.216.0/22 3704 | 160.20.48.0/22 3705 | 160.62.10.0/24 3706 | 160.83.109.0/24 3707 | 160.83.110.0/23 3708 | 160.202.60.0/23 3709 | 160.202.62.0/24 3710 | 160.202.148.0/22 3711 | 160.202.152.0/22 3712 | 160.202.212.0/22 3713 | 160.202.216.0/21 3714 | 160.202.224.0/19 3715 | 160.238.64.0/22 3716 | 161.163.0.0/21 3717 | 161.163.28.0/23 3718 | 161.163.176.0/24 3719 | 161.163.178.0/23 3720 | 161.163.180.0/22 3721 | 161.189.0.0/16 3722 | 161.207.0.0/16 3723 | 162.14.0.0/16 3724 | 162.105.0.0/16 3725 | 163.0.0.0/16 3726 | 163.47.4.0/22 3727 | 163.53.0.0/20 3728 | 163.53.36.0/22 3729 | 163.53.40.0/21 3730 | 163.53.48.0/20 3731 | 163.53.64.0/22 3732 | 163.53.88.0/21 3733 | 163.53.96.0/19 3734 | 163.53.128.0/21 3735 | 163.53.136.0/22 3736 | 163.53.160.0/20 3737 | 163.53.188.0/22 3738 | 163.53.220.0/22 3739 | 163.53.236.0/22 3740 | 163.53.240.0/22 3741 | 163.125.0.0/16 3742 | 163.142.0.0/16 3743 | 163.177.0.0/16 3744 | 163.179.0.0/16 3745 | 163.204.0.0/16 3746 | 163.244.246.0/24 3747 | 164.52.52.0/24 3748 | 165.156.30.0/24 3749 | 166.111.0.0/16 3750 | 167.139.0.0/16 3751 | 167.189.0.0/16 3752 | 167.220.244.0/22 3753 | 168.159.144.0/21 3754 | 168.159.152.0/22 3755 | 168.159.156.0/23 3756 | 168.159.158.0/24 3757 | 168.160.0.0/16 3758 | 168.230.0.0/24 3759 | 170.179.0.0/16 3760 | 170.225.224.0/23 3761 | 170.252.152.0/21 3762 | 171.8.0.0/13 3763 | 171.34.0.0/15 3764 | 171.36.0.0/14 3765 | 171.40.0.0/13 3766 | 171.80.0.0/12 3767 | 171.104.0.0/13 3768 | 171.112.0.0/12 3769 | 171.208.0.0/12 3770 | 172.81.192.0/18 3771 | 175.0.0.0/12 3772 | 175.16.0.0/13 3773 | 175.24.0.0/14 3774 | 175.30.0.0/15 3775 | 175.42.0.0/15 3776 | 175.44.0.0/16 3777 | 175.46.0.0/15 3778 | 175.48.0.0/12 3779 | 175.64.0.0/11 3780 | 175.102.0.0/16 3781 | 175.106.128.0/17 3782 | 175.111.108.0/22 3783 | 175.111.144.0/20 3784 | 175.111.160.0/20 3785 | 175.111.184.0/22 3786 | 175.146.0.0/15 3787 | 175.148.0.0/14 3788 | 175.152.0.0/14 3789 | 175.158.96.0/22 3790 | 175.160.0.0/12 3791 | 175.176.156.0/22 3792 | 175.178.0.0/16 3793 | 175.184.128.0/18 3794 | 175.185.0.0/16 3795 | 175.186.0.0/15 3796 | 175.188.0.0/14 3797 | 180.76.16.0/20 3798 | 180.76.32.0/19 3799 | 180.76.64.0/18 3800 | 180.76.128.0/18 3801 | 180.76.192.0/19 3802 | 180.76.224.0/20 3803 | 180.76.240.0/24 3804 | 180.76.242.0/23 3805 | 180.76.244.0/22 3806 | 180.76.248.0/22 3807 | 180.76.252.0/23 3808 | 180.76.255.0/24 3809 | 180.77.0.0/16 3810 | 180.78.0.0/15 3811 | 180.84.0.0/15 3812 | 180.86.0.0/16 3813 | 180.88.0.0/14 3814 | 180.94.56.0/21 3815 | 180.94.96.0/20 3816 | 180.94.120.0/21 3817 | 180.95.128.0/17 3818 | 180.96.0.0/11 3819 | 180.129.128.0/17 3820 | 180.130.0.0/16 3821 | 180.136.0.0/13 3822 | 180.148.16.0/21 3823 | 180.148.152.0/21 3824 | 180.148.216.0/21 3825 | 180.148.224.0/19 3826 | 180.149.128.0/19 3827 | 180.150.160.0/21 3828 | 180.150.176.0/20 3829 | 180.152.0.0/13 3830 | 180.160.0.0/12 3831 | 180.178.112.0/21 3832 | 180.178.192.0/18 3833 | 180.184.0.0/14 3834 | 180.188.0.0/17 3835 | 180.189.148.0/22 3836 | 180.200.252.0/22 3837 | 180.201.0.0/16 3838 | 180.202.0.0/15 3839 | 180.208.0.0/15 3840 | 180.210.212.0/22 3841 | 180.210.233.0/24 3842 | 180.210.236.0/22 3843 | 180.212.0.0/15 3844 | 180.222.224.0/19 3845 | 180.223.0.0/16 3846 | 180.233.0.0/18 3847 | 180.233.64.0/19 3848 | 180.233.144.0/22 3849 | 180.235.64.0/19 3850 | 180.235.112.0/22 3851 | 182.16.144.0/21 3852 | 182.16.192.0/19 3853 | 182.18.0.0/17 3854 | 182.23.184.0/21 3855 | 182.23.200.0/21 3856 | 182.32.0.0/12 3857 | 182.48.96.0/19 3858 | 182.49.0.0/16 3859 | 182.50.0.0/22 3860 | 182.50.8.0/21 3861 | 182.50.112.0/20 3862 | 182.51.0.0/16 3863 | 182.54.0.0/17 3864 | 182.61.0.0/18 3865 | 182.61.128.0/19 3866 | 182.61.192.0/18 3867 | 182.80.0.0/13 3868 | 182.88.0.0/14 3869 | 182.92.0.0/16 3870 | 182.96.0.0/11 3871 | 182.128.0.0/12 3872 | 182.144.0.0/13 3873 | 182.157.0.0/16 3874 | 182.160.64.0/19 3875 | 182.174.0.0/15 3876 | 182.200.0.0/13 3877 | 182.236.128.0/17 3878 | 182.237.24.0/21 3879 | 182.238.0.0/16 3880 | 182.239.0.0/19 3881 | 182.240.0.0/13 3882 | 182.254.0.0/17 3883 | 182.254.128.0/18 3884 | 182.254.192.0/19 3885 | 182.254.224.0/20 3886 | 182.254.240.0/21 3887 | 182.254.248.0/23 3888 | 182.254.251.0/24 3889 | 182.254.252.0/22 3890 | 183.0.0.0/10 3891 | 183.64.0.0/13 3892 | 183.78.160.0/21 3893 | 183.78.180.0/22 3894 | 183.81.180.0/22 3895 | 183.84.0.0/15 3896 | 183.91.128.0/22 3897 | 183.91.136.0/21 3898 | 183.91.144.0/20 3899 | 183.92.0.0/14 3900 | 183.128.0.0/11 3901 | 183.160.0.0/13 3902 | 183.168.0.0/15 3903 | 183.170.0.0/16 3904 | 183.172.0.0/14 3905 | 183.184.0.0/13 3906 | 183.192.0.0/10 3907 | 185.109.236.0/24 3908 | 188.65.16.0/22 3909 | 188.131.128.0/17 3910 | 192.11.23.0/24 3911 | 192.11.26.0/24 3912 | 192.11.39.0/24 3913 | 192.11.236.0/24 3914 | 192.23.191.0/24 3915 | 192.55.10.0/23 3916 | 192.55.40.0/24 3917 | 192.55.46.0/24 3918 | 192.55.68.0/22 3919 | 192.102.204.0/22 3920 | 192.124.154.0/24 3921 | 192.137.31.0/24 3922 | 192.139.135.0/24 3923 | 192.139.136.0/24 3924 | 192.140.128.0/21 3925 | 192.140.136.0/22 3926 | 192.140.156.0/22 3927 | 192.140.160.0/19 3928 | 192.140.192.0/20 3929 | 192.140.208.0/21 3930 | 192.144.128.0/17 3931 | 192.163.11.0/24 3932 | 192.232.97.0/24 3933 | 193.20.64.0/22 3934 | 193.112.0.0/16 3935 | 194.138.136.0/24 3936 | 194.138.202.0/23 3937 | 194.138.245.0/24 3938 | 198.175.100.0/22 3939 | 198.208.17.0/24 3940 | 198.208.19.0/24 3941 | 199.7.72.0/24 3942 | 199.65.192.0/21 3943 | 199.244.144.0/24 3944 | 202.0.100.0/23 3945 | 202.0.122.0/23 3946 | 202.1.105.0/24 3947 | 202.1.106.0/24 3948 | 202.3.128.0/23 3949 | 202.3.134.0/24 3950 | 202.4.128.0/19 3951 | 202.4.252.0/22 3952 | 202.5.208.0/21 3953 | 202.5.216.0/22 3954 | 202.6.6.0/23 3955 | 202.6.66.0/23 3956 | 202.6.72.0/23 3957 | 202.6.87.0/24 3958 | 202.6.88.0/23 3959 | 202.6.92.0/23 3960 | 202.6.103.0/24 3961 | 202.6.108.0/24 3962 | 202.6.110.0/23 3963 | 202.6.114.0/24 3964 | 202.6.176.0/20 3965 | 202.8.0.0/24 3966 | 202.8.2.0/23 3967 | 202.8.4.0/23 3968 | 202.8.12.0/24 3969 | 202.8.24.0/24 3970 | 202.8.77.0/24 3971 | 202.8.128.0/19 3972 | 202.8.192.0/20 3973 | 202.9.32.0/24 3974 | 202.9.34.0/23 3975 | 202.9.48.0/23 3976 | 202.9.51.0/24 3977 | 202.9.52.0/23 3978 | 202.9.54.0/24 3979 | 202.9.57.0/24 3980 | 202.9.58.0/23 3981 | 202.10.64.0/21 3982 | 202.10.74.0/23 3983 | 202.10.76.0/22 3984 | 202.10.112.0/20 3985 | 202.12.1.0/24 3986 | 202.12.2.0/24 3987 | 202.12.17.0/24 3988 | 202.12.18.0/23 3989 | 202.12.72.0/24 3990 | 202.12.84.0/23 3991 | 202.12.96.0/24 3992 | 202.12.98.0/23 3993 | 202.12.106.0/24 3994 | 202.12.111.0/24 3995 | 202.12.116.0/24 3996 | 202.14.64.0/23 3997 | 202.14.69.0/24 3998 | 202.14.73.0/24 3999 | 202.14.74.0/23 4000 | 202.14.76.0/24 4001 | 202.14.78.0/23 4002 | 202.14.88.0/24 4003 | 202.14.97.0/24 4004 | 202.14.104.0/23 4005 | 202.14.108.0/23 4006 | 202.14.111.0/24 4007 | 202.14.114.0/23 4008 | 202.14.118.0/23 4009 | 202.14.124.0/23 4010 | 202.14.127.0/24 4011 | 202.14.129.0/24 4012 | 202.14.135.0/24 4013 | 202.14.136.0/24 4014 | 202.14.149.0/24 4015 | 202.14.151.0/24 4016 | 202.14.157.0/24 4017 | 202.14.158.0/23 4018 | 202.14.169.0/24 4019 | 202.14.170.0/23 4020 | 202.14.172.0/22 4021 | 202.14.176.0/24 4022 | 202.14.184.0/23 4023 | 202.14.208.0/23 4024 | 202.14.213.0/24 4025 | 202.14.219.0/24 4026 | 202.14.220.0/24 4027 | 202.14.222.0/23 4028 | 202.14.225.0/24 4029 | 202.14.226.0/23 4030 | 202.14.231.0/24 4031 | 202.14.235.0/24 4032 | 202.14.236.0/22 4033 | 202.14.246.0/24 4034 | 202.14.251.0/24 4035 | 202.20.66.0/24 4036 | 202.20.79.0/24 4037 | 202.20.87.0/24 4038 | 202.20.88.0/23 4039 | 202.20.90.0/24 4040 | 202.20.94.0/23 4041 | 202.20.114.0/24 4042 | 202.20.117.0/24 4043 | 202.20.120.0/24 4044 | 202.20.125.0/24 4045 | 202.20.126.0/23 4046 | 202.21.48.0/20 4047 | 202.21.131.0/24 4048 | 202.21.132.0/24 4049 | 202.21.141.0/24 4050 | 202.21.142.0/24 4051 | 202.21.147.0/24 4052 | 202.21.148.0/24 4053 | 202.21.150.0/23 4054 | 202.21.152.0/23 4055 | 202.21.154.0/24 4056 | 202.21.156.0/24 4057 | 202.21.208.0/24 4058 | 202.22.248.0/21 4059 | 202.27.12.0/24 4060 | 202.27.14.0/24 4061 | 202.27.136.0/23 4062 | 202.36.226.0/24 4063 | 202.38.0.0/22 4064 | 202.38.8.0/21 4065 | 202.38.48.0/20 4066 | 202.38.64.0/18 4067 | 202.38.128.0/21 4068 | 202.38.136.0/23 4069 | 202.38.138.0/24 4070 | 202.38.140.0/22 4071 | 202.38.146.0/23 4072 | 202.38.149.0/24 4073 | 202.38.150.0/23 4074 | 202.38.152.0/22 4075 | 202.38.156.0/24 4076 | 202.38.158.0/23 4077 | 202.38.160.0/23 4078 | 202.38.164.0/22 4079 | 202.38.168.0/22 4080 | 202.38.176.0/23 4081 | 202.38.184.0/21 4082 | 202.38.192.0/18 4083 | 202.40.4.0/23 4084 | 202.40.7.0/24 4085 | 202.40.15.0/24 4086 | 202.40.135.0/24 4087 | 202.40.136.0/24 4088 | 202.40.140.0/24 4089 | 202.40.143.0/24 4090 | 202.40.144.0/23 4091 | 202.40.150.0/24 4092 | 202.40.155.0/24 4093 | 202.40.156.0/24 4094 | 202.40.158.0/23 4095 | 202.40.162.0/24 4096 | 202.41.8.0/23 4097 | 202.41.11.0/24 4098 | 202.41.12.0/23 4099 | 202.41.128.0/24 4100 | 202.41.130.0/23 4101 | 202.41.142.0/24 4102 | 202.41.152.0/21 4103 | 202.41.192.0/24 4104 | 202.41.196.0/22 4105 | 202.41.200.0/22 4106 | 202.41.240.0/20 4107 | 202.43.76.0/22 4108 | 202.43.144.0/20 4109 | 202.44.16.0/20 4110 | 202.44.48.0/22 4111 | 202.44.67.0/24 4112 | 202.44.74.0/24 4113 | 202.44.97.0/24 4114 | 202.44.129.0/24 4115 | 202.44.132.0/23 4116 | 202.44.146.0/23 4117 | 202.45.0.0/23 4118 | 202.45.2.0/24 4119 | 202.45.15.0/24 4120 | 202.45.16.0/20 4121 | 202.46.16.0/23 4122 | 202.46.18.0/24 4123 | 202.46.20.0/23 4124 | 202.46.128.0/24 4125 | 202.46.224.0/20 4126 | 202.47.82.0/23 4127 | 202.47.96.0/20 4128 | 202.47.126.0/24 4129 | 202.47.128.0/24 4130 | 202.47.130.0/23 4131 | 202.52.34.0/24 4132 | 202.52.143.0/24 4133 | 202.53.140.0/24 4134 | 202.53.143.0/24 4135 | 202.57.212.0/22 4136 | 202.57.216.0/22 4137 | 202.57.240.0/20 4138 | 202.58.0.0/24 4139 | 202.58.101.0/24 4140 | 202.58.112.0/22 4141 | 202.59.0.0/23 4142 | 202.59.212.0/22 4143 | 202.59.236.0/24 4144 | 202.59.240.0/24 4145 | 202.60.48.0/21 4146 | 202.60.96.0/21 4147 | 202.60.112.0/20 4148 | 202.60.132.0/22 4149 | 202.60.136.0/21 4150 | 202.60.144.0/20 4151 | 202.61.68.0/22 4152 | 202.61.76.0/22 4153 | 202.61.88.0/22 4154 | 202.61.123.0/24 4155 | 202.61.127.0/24 4156 | 202.62.112.0/22 4157 | 202.62.248.0/22 4158 | 202.62.252.0/24 4159 | 202.62.255.0/24 4160 | 202.63.80.0/20 4161 | 202.63.160.0/19 4162 | 202.63.248.0/22 4163 | 202.63.253.0/24 4164 | 202.65.0.0/21 4165 | 202.65.8.0/23 4166 | 202.67.0.0/22 4167 | 202.69.4.0/23 4168 | 202.69.16.0/20 4169 | 202.70.0.0/19 4170 | 202.70.96.0/20 4171 | 202.70.192.0/20 4172 | 202.71.32.0/20 4173 | 202.72.40.0/21 4174 | 202.72.80.0/20 4175 | 202.72.112.0/20 4176 | 202.73.128.0/22 4177 | 202.73.240.0/20 4178 | 202.74.8.0/21 4179 | 202.74.36.0/24 4180 | 202.74.42.0/24 4181 | 202.74.52.0/24 4182 | 202.74.80.0/20 4183 | 202.74.254.0/23 4184 | 202.75.208.0/20 4185 | 202.75.252.0/22 4186 | 202.76.247.0/24 4187 | 202.76.252.0/22 4188 | 202.77.80.0/21 4189 | 202.77.92.0/22 4190 | 202.78.8.0/21 4191 | 202.79.224.0/21 4192 | 202.79.248.0/22 4193 | 202.80.192.0/20 4194 | 202.81.0.0/22 4195 | 202.81.176.0/20 4196 | 202.83.252.0/22 4197 | 202.84.0.0/20 4198 | 202.84.16.0/23 4199 | 202.84.22.0/24 4200 | 202.84.24.0/21 4201 | 202.85.208.0/20 4202 | 202.86.249.0/24 4203 | 202.87.80.0/20 4204 | 202.88.32.0/22 4205 | 202.89.8.0/21 4206 | 202.89.96.0/22 4207 | 202.89.108.0/22 4208 | 202.89.119.0/24 4209 | 202.89.232.0/21 4210 | 202.90.0.0/22 4211 | 202.90.16.0/20 4212 | 202.90.37.0/24 4213 | 202.90.96.0/19 4214 | 202.90.193.0/24 4215 | 202.90.196.0/24 4216 | 202.90.205.0/24 4217 | 202.90.224.0/20 4218 | 202.91.0.0/22 4219 | 202.91.96.0/20 4220 | 202.91.128.0/22 4221 | 202.91.176.0/20 4222 | 202.91.224.0/19 4223 | 202.92.0.0/22 4224 | 202.92.8.0/21 4225 | 202.92.48.0/20 4226 | 202.92.252.0/22 4227 | 202.93.0.0/22 4228 | 202.93.252.0/22 4229 | 202.94.0.0/19 4230 | 202.94.68.0/24 4231 | 202.94.74.0/24 4232 | 202.94.81.0/24 4233 | 202.94.92.0/22 4234 | 202.95.2.0/23 4235 | 202.95.4.0/22 4236 | 202.95.8.0/21 4237 | 202.95.16.0/20 4238 | 202.95.240.0/21 4239 | 202.95.252.0/22 4240 | 202.96.0.0/12 4241 | 202.112.0.0/13 4242 | 202.120.0.0/15 4243 | 202.122.0.0/21 4244 | 202.122.32.0/21 4245 | 202.122.64.0/19 4246 | 202.122.112.0/20 4247 | 202.122.128.0/24 4248 | 202.122.132.0/24 4249 | 202.123.96.0/20 4250 | 202.123.116.0/22 4251 | 202.123.120.0/22 4252 | 202.124.16.0/21 4253 | 202.124.24.0/22 4254 | 202.125.107.0/24 4255 | 202.125.109.0/24 4256 | 202.125.112.0/20 4257 | 202.125.176.0/20 4258 | 202.127.0.0/21 4259 | 202.127.12.0/22 4260 | 202.127.16.0/20 4261 | 202.127.40.0/21 4262 | 202.127.48.0/20 4263 | 202.127.112.0/20 4264 | 202.127.128.0/19 4265 | 202.127.160.0/21 4266 | 202.127.192.0/20 4267 | 202.127.208.0/23 4268 | 202.127.212.0/22 4269 | 202.127.216.0/21 4270 | 202.127.224.0/19 4271 | 202.129.208.0/24 4272 | 202.130.0.0/19 4273 | 202.130.39.0/24 4274 | 202.130.224.0/19 4275 | 202.131.16.0/21 4276 | 202.131.59.0/24 4277 | 202.131.208.0/20 4278 | 202.133.32.0/20 4279 | 202.134.58.0/24 4280 | 202.134.128.0/20 4281 | 202.134.208.0/20 4282 | 202.136.48.0/20 4283 | 202.136.208.0/20 4284 | 202.136.224.0/20 4285 | 202.136.248.0/22 4286 | 202.136.254.0/23 4287 | 202.137.231.0/24 4288 | 202.140.140.0/22 4289 | 202.140.144.0/20 4290 | 202.141.160.0/19 4291 | 202.142.16.0/20 4292 | 202.143.4.0/22 4293 | 202.143.16.0/20 4294 | 202.143.32.0/20 4295 | 202.143.56.0/21 4296 | 202.143.100.0/22 4297 | 202.143.104.0/22 4298 | 202.146.160.0/20 4299 | 202.146.186.0/24 4300 | 202.146.188.0/22 4301 | 202.146.196.0/22 4302 | 202.146.200.0/21 4303 | 202.147.144.0/20 4304 | 202.148.32.0/20 4305 | 202.148.64.0/18 4306 | 202.149.32.0/19 4307 | 202.149.160.0/19 4308 | 202.149.224.0/19 4309 | 202.150.16.0/20 4310 | 202.150.32.0/20 4311 | 202.150.56.0/22 4312 | 202.150.192.0/20 4313 | 202.150.224.0/19 4314 | 202.151.0.0/22 4315 | 202.151.128.0/19 4316 | 202.152.176.0/20 4317 | 202.153.0.0/22 4318 | 202.153.7.0/24 4319 | 202.153.48.0/20 4320 | 202.157.192.0/19 4321 | 202.158.160.0/19 4322 | 202.158.242.0/24 4323 | 202.160.140.0/22 4324 | 202.160.156.0/22 4325 | 202.160.176.0/20 4326 | 202.162.67.0/24 4327 | 202.162.75.0/24 4328 | 202.164.0.0/20 4329 | 202.164.96.0/19 4330 | 202.165.96.0/21 4331 | 202.165.104.0/22 4332 | 202.165.176.0/20 4333 | 202.165.208.0/20 4334 | 202.165.239.0/24 4335 | 202.165.240.0/23 4336 | 202.165.243.0/24 4337 | 202.165.245.0/24 4338 | 202.165.251.0/24 4339 | 202.165.252.0/22 4340 | 202.166.224.0/19 4341 | 202.168.80.0/22 4342 | 202.168.128.0/20 4343 | 202.168.160.0/19 4344 | 202.170.128.0/19 4345 | 202.170.216.0/21 4346 | 202.170.224.0/19 4347 | 202.171.216.0/21 4348 | 202.171.232.0/24 4349 | 202.171.235.0/24 4350 | 202.172.0.0/22 4351 | 202.172.7.0/24 4352 | 202.173.0.0/22 4353 | 202.173.6.0/24 4354 | 202.173.8.0/21 4355 | 202.173.112.0/22 4356 | 202.173.224.0/19 4357 | 202.174.64.0/20 4358 | 202.174.124.0/22 4359 | 202.176.224.0/19 4360 | 202.179.160.0/20 4361 | 202.179.240.0/20 4362 | 202.180.128.0/19 4363 | 202.180.208.0/21 4364 | 202.181.8.0/22 4365 | 202.181.28.0/22 4366 | 202.181.112.0/20 4367 | 202.182.32.0/20 4368 | 202.182.192.0/19 4369 | 202.189.0.0/18 4370 | 202.189.80.0/20 4371 | 202.189.184.0/21 4372 | 202.191.0.0/24 4373 | 202.191.68.0/22 4374 | 202.191.72.0/21 4375 | 202.191.80.0/20 4376 | 202.192.0.0/12 4377 | 203.0.4.0/22 4378 | 203.0.10.0/23 4379 | 203.0.18.0/24 4380 | 203.0.24.0/24 4381 | 203.0.42.0/23 4382 | 203.0.45.0/24 4383 | 203.0.46.0/23 4384 | 203.0.81.0/24 4385 | 203.0.82.0/23 4386 | 203.0.90.0/23 4387 | 203.0.96.0/23 4388 | 203.0.104.0/21 4389 | 203.0.114.0/23 4390 | 203.0.122.0/24 4391 | 203.0.128.0/24 4392 | 203.0.130.0/23 4393 | 203.0.132.0/22 4394 | 203.0.137.0/24 4395 | 203.0.142.0/24 4396 | 203.0.144.0/24 4397 | 203.0.146.0/24 4398 | 203.0.148.0/24 4399 | 203.0.150.0/23 4400 | 203.0.152.0/24 4401 | 203.0.177.0/24 4402 | 203.0.224.0/24 4403 | 203.1.4.0/22 4404 | 203.1.18.0/24 4405 | 203.1.26.0/23 4406 | 203.1.65.0/24 4407 | 203.1.66.0/23 4408 | 203.1.70.0/23 4409 | 203.1.76.0/23 4410 | 203.1.90.0/24 4411 | 203.1.97.0/24 4412 | 203.1.98.0/23 4413 | 203.1.100.0/22 4414 | 203.1.108.0/24 4415 | 203.1.253.0/24 4416 | 203.1.254.0/24 4417 | 203.2.64.0/21 4418 | 203.2.73.0/24 4419 | 203.2.112.0/21 4420 | 203.2.126.0/23 4421 | 203.2.140.0/24 4422 | 203.2.150.0/24 4423 | 203.2.152.0/22 4424 | 203.2.156.0/23 4425 | 203.2.160.0/21 4426 | 203.2.180.0/23 4427 | 203.2.196.0/23 4428 | 203.2.209.0/24 4429 | 203.2.214.0/23 4430 | 203.2.226.0/23 4431 | 203.2.229.0/24 4432 | 203.2.236.0/23 4433 | 203.3.68.0/24 4434 | 203.3.72.0/23 4435 | 203.3.75.0/24 4436 | 203.3.80.0/21 4437 | 203.3.96.0/22 4438 | 203.3.105.0/24 4439 | 203.3.112.0/21 4440 | 203.3.120.0/24 4441 | 203.3.123.0/24 4442 | 203.3.135.0/24 4443 | 203.3.139.0/24 4444 | 203.3.143.0/24 4445 | 203.4.132.0/23 4446 | 203.4.134.0/24 4447 | 203.4.151.0/24 4448 | 203.4.152.0/22 4449 | 203.4.174.0/23 4450 | 203.4.180.0/24 4451 | 203.4.186.0/24 4452 | 203.4.205.0/24 4453 | 203.4.208.0/22 4454 | 203.4.227.0/24 4455 | 203.4.230.0/23 4456 | 203.5.4.0/23 4457 | 203.5.7.0/24 4458 | 203.5.8.0/23 4459 | 203.5.11.0/24 4460 | 203.5.21.0/24 4461 | 203.5.22.0/24 4462 | 203.5.44.0/24 4463 | 203.5.46.0/23 4464 | 203.5.52.0/22 4465 | 203.5.56.0/23 4466 | 203.5.60.0/23 4467 | 203.5.114.0/23 4468 | 203.5.118.0/24 4469 | 203.5.120.0/24 4470 | 203.5.172.0/24 4471 | 203.5.180.0/23 4472 | 203.5.182.0/24 4473 | 203.5.185.0/24 4474 | 203.5.186.0/24 4475 | 203.5.188.0/23 4476 | 203.5.190.0/24 4477 | 203.5.195.0/24 4478 | 203.5.214.0/23 4479 | 203.5.218.0/23 4480 | 203.6.131.0/24 4481 | 203.6.136.0/24 4482 | 203.6.138.0/23 4483 | 203.6.142.0/24 4484 | 203.6.150.0/23 4485 | 203.6.157.0/24 4486 | 203.6.159.0/24 4487 | 203.6.224.0/20 4488 | 203.6.248.0/23 4489 | 203.7.129.0/24 4490 | 203.7.138.0/23 4491 | 203.7.147.0/24 4492 | 203.7.150.0/23 4493 | 203.7.158.0/24 4494 | 203.7.192.0/23 4495 | 203.7.200.0/24 4496 | 203.8.0.0/24 4497 | 203.8.8.0/24 4498 | 203.8.23.0/24 4499 | 203.8.70.0/24 4500 | 203.8.82.0/24 4501 | 203.8.86.0/23 4502 | 203.8.91.0/24 4503 | 203.8.110.0/23 4504 | 203.8.115.0/24 4505 | 203.8.166.0/23 4506 | 203.8.169.0/24 4507 | 203.8.173.0/24 4508 | 203.8.184.0/24 4509 | 203.8.186.0/23 4510 | 203.8.190.0/23 4511 | 203.8.192.0/24 4512 | 203.8.197.0/24 4513 | 203.8.198.0/23 4514 | 203.8.203.0/24 4515 | 203.8.209.0/24 4516 | 203.8.210.0/23 4517 | 203.8.212.0/22 4518 | 203.8.217.0/24 4519 | 203.8.220.0/24 4520 | 203.9.32.0/24 4521 | 203.9.36.0/23 4522 | 203.9.57.0/24 4523 | 203.9.63.0/24 4524 | 203.9.65.0/24 4525 | 203.9.70.0/23 4526 | 203.9.72.0/24 4527 | 203.9.75.0/24 4528 | 203.9.76.0/23 4529 | 203.9.96.0/22 4530 | 203.9.100.0/23 4531 | 203.9.108.0/24 4532 | 203.9.158.0/24 4533 | 203.10.34.0/24 4534 | 203.10.56.0/24 4535 | 203.10.74.0/23 4536 | 203.10.84.0/22 4537 | 203.10.88.0/24 4538 | 203.10.95.0/24 4539 | 203.10.125.0/24 4540 | 203.11.70.0/24 4541 | 203.11.76.0/22 4542 | 203.11.82.0/24 4543 | 203.11.84.0/22 4544 | 203.11.100.0/22 4545 | 203.11.109.0/24 4546 | 203.11.117.0/24 4547 | 203.11.122.0/24 4548 | 203.11.126.0/24 4549 | 203.11.136.0/22 4550 | 203.11.141.0/24 4551 | 203.11.142.0/23 4552 | 203.11.180.0/22 4553 | 203.11.208.0/22 4554 | 203.12.16.0/24 4555 | 203.12.19.0/24 4556 | 203.12.24.0/24 4557 | 203.12.57.0/24 4558 | 203.12.65.0/24 4559 | 203.12.66.0/24 4560 | 203.12.70.0/23 4561 | 203.12.87.0/24 4562 | 203.12.90.0/24 4563 | 203.12.92.0/22 4564 | 203.12.100.0/23 4565 | 203.12.103.0/24 4566 | 203.12.114.0/24 4567 | 203.12.118.0/24 4568 | 203.12.130.0/24 4569 | 203.12.137.0/24 4570 | 203.12.196.0/22 4571 | 203.12.211.0/24 4572 | 203.12.219.0/24 4573 | 203.12.226.0/24 4574 | 203.12.240.0/22 4575 | 203.13.18.0/24 4576 | 203.13.24.0/24 4577 | 203.13.44.0/23 4578 | 203.13.88.0/23 4579 | 203.13.92.0/22 4580 | 203.13.173.0/24 4581 | 203.13.224.0/23 4582 | 203.13.227.0/24 4583 | 203.13.233.0/24 4584 | 203.14.24.0/22 4585 | 203.14.33.0/24 4586 | 203.14.56.0/24 4587 | 203.14.61.0/24 4588 | 203.14.62.0/24 4589 | 203.14.104.0/24 4590 | 203.14.114.0/23 4591 | 203.14.118.0/24 4592 | 203.14.162.0/24 4593 | 203.14.184.0/21 4594 | 203.14.192.0/24 4595 | 203.14.194.0/23 4596 | 203.14.214.0/24 4597 | 203.14.231.0/24 4598 | 203.14.246.0/24 4599 | 203.15.0.0/20 4600 | 203.15.20.0/23 4601 | 203.15.22.0/24 4602 | 203.15.87.0/24 4603 | 203.15.88.0/23 4604 | 203.15.105.0/24 4605 | 203.15.112.0/21 4606 | 203.15.130.0/23 4607 | 203.15.149.0/24 4608 | 203.15.151.0/24 4609 | 203.15.156.0/22 4610 | 203.15.174.0/24 4611 | 203.15.227.0/24 4612 | 203.15.232.0/21 4613 | 203.15.240.0/23 4614 | 203.15.246.0/24 4615 | 203.16.10.0/24 4616 | 203.16.12.0/23 4617 | 203.16.16.0/21 4618 | 203.16.27.0/24 4619 | 203.16.38.0/24 4620 | 203.16.49.0/24 4621 | 203.16.50.0/23 4622 | 203.16.58.0/24 4623 | 203.16.63.0/24 4624 | 203.16.133.0/24 4625 | 203.16.161.0/24 4626 | 203.16.162.0/24 4627 | 203.16.186.0/23 4628 | 203.16.228.0/24 4629 | 203.16.238.0/24 4630 | 203.16.240.0/24 4631 | 203.16.245.0/24 4632 | 203.17.2.0/24 4633 | 203.17.18.0/24 4634 | 203.17.28.0/24 4635 | 203.17.39.0/24 4636 | 203.17.56.0/24 4637 | 203.17.74.0/23 4638 | 203.17.88.0/23 4639 | 203.17.136.0/24 4640 | 203.17.164.0/24 4641 | 203.17.187.0/24 4642 | 203.17.190.0/23 4643 | 203.17.231.0/24 4644 | 203.17.233.0/24 4645 | 203.17.248.0/23 4646 | 203.17.255.0/24 4647 | 203.18.2.0/23 4648 | 203.18.4.0/24 4649 | 203.18.7.0/24 4650 | 203.18.31.0/24 4651 | 203.18.37.0/24 4652 | 203.18.48.0/23 4653 | 203.18.52.0/24 4654 | 203.18.72.0/22 4655 | 203.18.80.0/23 4656 | 203.18.87.0/24 4657 | 203.18.100.0/23 4658 | 203.18.105.0/24 4659 | 203.18.107.0/24 4660 | 203.18.110.0/24 4661 | 203.18.129.0/24 4662 | 203.18.131.0/24 4663 | 203.18.132.0/23 4664 | 203.18.144.0/24 4665 | 203.18.153.0/24 4666 | 203.18.199.0/24 4667 | 203.18.208.0/24 4668 | 203.18.211.0/24 4669 | 203.18.215.0/24 4670 | 203.19.1.0/24 4671 | 203.19.18.0/24 4672 | 203.19.24.0/24 4673 | 203.19.30.0/24 4674 | 203.19.41.0/24 4675 | 203.19.44.0/23 4676 | 203.19.46.0/24 4677 | 203.19.58.0/24 4678 | 203.19.60.0/23 4679 | 203.19.64.0/24 4680 | 203.19.68.0/24 4681 | 203.19.72.0/24 4682 | 203.19.101.0/24 4683 | 203.19.111.0/24 4684 | 203.19.131.0/24 4685 | 203.19.133.0/24 4686 | 203.19.144.0/24 4687 | 203.19.147.0/24 4688 | 203.19.149.0/24 4689 | 203.19.156.0/24 4690 | 203.19.176.0/24 4691 | 203.19.178.0/23 4692 | 203.19.208.0/24 4693 | 203.19.228.0/22 4694 | 203.19.233.0/24 4695 | 203.19.242.0/24 4696 | 203.19.248.0/23 4697 | 203.19.255.0/24 4698 | 203.20.17.0/24 4699 | 203.20.40.0/23 4700 | 203.20.44.0/24 4701 | 203.20.48.0/24 4702 | 203.20.61.0/24 4703 | 203.20.65.0/24 4704 | 203.20.84.0/23 4705 | 203.20.89.0/24 4706 | 203.20.106.0/23 4707 | 203.20.115.0/24 4708 | 203.20.117.0/24 4709 | 203.20.118.0/23 4710 | 203.20.122.0/24 4711 | 203.20.126.0/23 4712 | 203.20.135.0/24 4713 | 203.20.136.0/21 4714 | 203.20.150.0/24 4715 | 203.20.230.0/24 4716 | 203.20.232.0/24 4717 | 203.20.236.0/24 4718 | 203.21.0.0/23 4719 | 203.21.2.0/24 4720 | 203.21.8.0/24 4721 | 203.21.10.0/24 4722 | 203.21.18.0/24 4723 | 203.21.33.0/24 4724 | 203.21.34.0/24 4725 | 203.21.41.0/24 4726 | 203.21.44.0/24 4727 | 203.21.68.0/24 4728 | 203.21.82.0/24 4729 | 203.21.96.0/22 4730 | 203.21.124.0/24 4731 | 203.21.136.0/23 4732 | 203.21.145.0/24 4733 | 203.21.206.0/24 4734 | 203.22.24.0/24 4735 | 203.22.28.0/23 4736 | 203.22.31.0/24 4737 | 203.22.68.0/24 4738 | 203.22.76.0/24 4739 | 203.22.84.0/24 4740 | 203.22.87.0/24 4741 | 203.22.92.0/22 4742 | 203.22.99.0/24 4743 | 203.22.106.0/24 4744 | 203.22.122.0/23 4745 | 203.22.131.0/24 4746 | 203.22.163.0/24 4747 | 203.22.166.0/24 4748 | 203.22.170.0/24 4749 | 203.22.176.0/21 4750 | 203.22.194.0/24 4751 | 203.22.242.0/23 4752 | 203.22.245.0/24 4753 | 203.22.246.0/24 4754 | 203.22.252.0/23 4755 | 203.23.0.0/24 4756 | 203.23.47.0/24 4757 | 203.23.61.0/24 4758 | 203.23.62.0/23 4759 | 203.23.73.0/24 4760 | 203.23.85.0/24 4761 | 203.23.92.0/22 4762 | 203.23.98.0/24 4763 | 203.23.107.0/24 4764 | 203.23.112.0/24 4765 | 203.23.130.0/24 4766 | 203.23.140.0/23 4767 | 203.23.172.0/24 4768 | 203.23.182.0/24 4769 | 203.23.186.0/23 4770 | 203.23.192.0/24 4771 | 203.23.197.0/24 4772 | 203.23.198.0/24 4773 | 203.23.204.0/22 4774 | 203.23.224.0/24 4775 | 203.23.226.0/23 4776 | 203.23.228.0/22 4777 | 203.23.249.0/24 4778 | 203.23.251.0/24 4779 | 203.24.13.0/24 4780 | 203.24.18.0/24 4781 | 203.24.27.0/24 4782 | 203.24.43.0/24 4783 | 203.24.56.0/24 4784 | 203.24.58.0/24 4785 | 203.24.67.0/24 4786 | 203.24.74.0/24 4787 | 203.24.79.0/24 4788 | 203.24.80.0/23 4789 | 203.24.84.0/23 4790 | 203.24.86.0/24 4791 | 203.24.90.0/24 4792 | 203.24.111.0/24 4793 | 203.24.112.0/24 4794 | 203.24.116.0/24 4795 | 203.24.122.0/23 4796 | 203.24.145.0/24 4797 | 203.24.152.0/23 4798 | 203.24.157.0/24 4799 | 203.24.161.0/24 4800 | 203.24.167.0/24 4801 | 203.24.199.0/24 4802 | 203.24.202.0/24 4803 | 203.24.212.0/23 4804 | 203.24.217.0/24 4805 | 203.24.219.0/24 4806 | 203.24.244.0/24 4807 | 203.25.19.0/24 4808 | 203.25.20.0/23 4809 | 203.25.46.0/24 4810 | 203.25.48.0/21 4811 | 203.25.64.0/23 4812 | 203.25.91.0/24 4813 | 203.25.99.0/24 4814 | 203.25.100.0/24 4815 | 203.25.106.0/24 4816 | 203.25.131.0/24 4817 | 203.25.135.0/24 4818 | 203.25.138.0/24 4819 | 203.25.147.0/24 4820 | 203.25.153.0/24 4821 | 203.25.154.0/23 4822 | 203.25.164.0/24 4823 | 203.25.166.0/24 4824 | 203.25.174.0/23 4825 | 203.25.180.0/24 4826 | 203.25.182.0/24 4827 | 203.25.191.0/24 4828 | 203.25.199.0/24 4829 | 203.25.200.0/24 4830 | 203.25.202.0/23 4831 | 203.25.208.0/20 4832 | 203.25.229.0/24 4833 | 203.25.235.0/24 4834 | 203.25.236.0/24 4835 | 203.25.242.0/24 4836 | 203.26.12.0/24 4837 | 203.26.34.0/24 4838 | 203.26.49.0/24 4839 | 203.26.50.0/24 4840 | 203.26.55.0/24 4841 | 203.26.56.0/23 4842 | 203.26.60.0/24 4843 | 203.26.65.0/24 4844 | 203.26.68.0/24 4845 | 203.26.76.0/24 4846 | 203.26.80.0/24 4847 | 203.26.84.0/24 4848 | 203.26.97.0/24 4849 | 203.26.102.0/23 4850 | 203.26.115.0/24 4851 | 203.26.116.0/24 4852 | 203.26.129.0/24 4853 | 203.26.143.0/24 4854 | 203.26.144.0/24 4855 | 203.26.148.0/23 4856 | 203.26.154.0/24 4857 | 203.26.158.0/23 4858 | 203.26.161.0/24 4859 | 203.26.170.0/24 4860 | 203.26.173.0/24 4861 | 203.26.176.0/24 4862 | 203.26.185.0/24 4863 | 203.26.202.0/23 4864 | 203.26.210.0/24 4865 | 203.26.214.0/24 4866 | 203.26.222.0/24 4867 | 203.26.224.0/24 4868 | 203.26.228.0/24 4869 | 203.26.232.0/24 4870 | 203.27.0.0/24 4871 | 203.27.10.0/24 4872 | 203.27.15.0/24 4873 | 203.27.16.0/24 4874 | 203.27.20.0/24 4875 | 203.27.22.0/23 4876 | 203.27.40.0/24 4877 | 203.27.45.0/24 4878 | 203.27.53.0/24 4879 | 203.27.65.0/24 4880 | 203.27.66.0/24 4881 | 203.27.81.0/24 4882 | 203.27.88.0/24 4883 | 203.27.102.0/24 4884 | 203.27.109.0/24 4885 | 203.27.117.0/24 4886 | 203.27.121.0/24 4887 | 203.27.122.0/23 4888 | 203.27.125.0/24 4889 | 203.27.200.0/24 4890 | 203.27.202.0/24 4891 | 203.27.233.0/24 4892 | 203.27.241.0/24 4893 | 203.27.250.0/24 4894 | 203.28.10.0/24 4895 | 203.28.12.0/24 4896 | 203.28.33.0/24 4897 | 203.28.34.0/23 4898 | 203.28.43.0/24 4899 | 203.28.44.0/24 4900 | 203.28.54.0/24 4901 | 203.28.56.0/24 4902 | 203.28.73.0/24 4903 | 203.28.74.0/24 4904 | 203.28.76.0/24 4905 | 203.28.86.0/24 4906 | 203.28.88.0/24 4907 | 203.28.112.0/24 4908 | 203.28.131.0/24 4909 | 203.28.136.0/24 4910 | 203.28.140.0/24 4911 | 203.28.145.0/24 4912 | 203.28.165.0/24 4913 | 203.28.169.0/24 4914 | 203.28.170.0/24 4915 | 203.28.178.0/23 4916 | 203.28.185.0/24 4917 | 203.28.187.0/24 4918 | 203.28.196.0/24 4919 | 203.28.226.0/23 4920 | 203.28.239.0/24 4921 | 203.29.2.0/24 4922 | 203.29.8.0/23 4923 | 203.29.13.0/24 4924 | 203.29.14.0/24 4925 | 203.29.28.0/24 4926 | 203.29.46.0/24 4927 | 203.29.57.0/24 4928 | 203.29.61.0/24 4929 | 203.29.63.0/24 4930 | 203.29.69.0/24 4931 | 203.29.73.0/24 4932 | 203.29.81.0/24 4933 | 203.29.90.0/24 4934 | 203.29.95.0/24 4935 | 203.29.100.0/24 4936 | 203.29.103.0/24 4937 | 203.29.112.0/24 4938 | 203.29.120.0/22 4939 | 203.29.182.0/23 4940 | 203.29.187.0/24 4941 | 203.29.189.0/24 4942 | 203.29.190.0/24 4943 | 203.29.205.0/24 4944 | 203.29.210.0/24 4945 | 203.29.217.0/24 4946 | 203.29.227.0/24 4947 | 203.29.231.0/24 4948 | 203.29.233.0/24 4949 | 203.29.234.0/24 4950 | 203.29.248.0/24 4951 | 203.29.254.0/23 4952 | 203.30.16.0/23 4953 | 203.30.25.0/24 4954 | 203.30.29.0/24 4955 | 203.30.66.0/24 4956 | 203.30.81.0/24 4957 | 203.30.87.0/24 4958 | 203.30.111.0/24 4959 | 203.30.121.0/24 4960 | 203.30.123.0/24 4961 | 203.30.152.0/24 4962 | 203.30.156.0/24 4963 | 203.30.162.0/24 4964 | 203.30.173.0/24 4965 | 203.30.175.0/24 4966 | 203.30.187.0/24 4967 | 203.30.194.0/24 4968 | 203.30.217.0/24 4969 | 203.30.220.0/24 4970 | 203.30.222.0/24 4971 | 203.30.232.0/23 4972 | 203.30.235.0/24 4973 | 203.30.240.0/23 4974 | 203.30.246.0/24 4975 | 203.30.250.0/23 4976 | 203.31.45.0/24 4977 | 203.31.46.0/24 4978 | 203.31.49.0/24 4979 | 203.31.51.0/24 4980 | 203.31.54.0/23 4981 | 203.31.69.0/24 4982 | 203.31.72.0/24 4983 | 203.31.80.0/24 4984 | 203.31.85.0/24 4985 | 203.31.97.0/24 4986 | 203.31.105.0/24 4987 | 203.31.106.0/24 4988 | 203.31.108.0/23 4989 | 203.31.124.0/24 4990 | 203.31.162.0/24 4991 | 203.31.174.0/24 4992 | 203.31.177.0/24 4993 | 203.31.181.0/24 4994 | 203.31.187.0/24 4995 | 203.31.189.0/24 4996 | 203.31.204.0/24 4997 | 203.31.220.0/24 4998 | 203.31.222.0/23 4999 | 203.31.225.0/24 5000 | 203.31.229.0/24 5001 | 203.31.248.0/23 5002 | 203.31.253.0/24 5003 | 203.32.20.0/24 5004 | 203.32.48.0/23 5005 | 203.32.56.0/24 5006 | 203.32.60.0/24 5007 | 203.32.62.0/24 5008 | 203.32.68.0/23 5009 | 203.32.76.0/24 5010 | 203.32.81.0/24 5011 | 203.32.84.0/23 5012 | 203.32.95.0/24 5013 | 203.32.102.0/24 5014 | 203.32.105.0/24 5015 | 203.32.130.0/24 5016 | 203.32.133.0/24 5017 | 203.32.140.0/24 5018 | 203.32.152.0/24 5019 | 203.32.186.0/23 5020 | 203.32.192.0/24 5021 | 203.32.196.0/24 5022 | 203.32.203.0/24 5023 | 203.32.204.0/23 5024 | 203.32.212.0/24 5025 | 203.33.4.0/24 5026 | 203.33.7.0/24 5027 | 203.33.12.0/23 5028 | 203.33.21.0/24 5029 | 203.33.26.0/24 5030 | 203.33.32.0/24 5031 | 203.33.63.0/24 5032 | 203.33.64.0/24 5033 | 203.33.67.0/24 5034 | 203.33.68.0/24 5035 | 203.33.73.0/24 5036 | 203.33.79.0/24 5037 | 203.33.100.0/24 5038 | 203.33.122.0/24 5039 | 203.33.129.0/24 5040 | 203.33.131.0/24 5041 | 203.33.145.0/24 5042 | 203.33.156.0/24 5043 | 203.33.158.0/23 5044 | 203.33.174.0/24 5045 | 203.33.185.0/24 5046 | 203.33.200.0/24 5047 | 203.33.202.0/23 5048 | 203.33.204.0/24 5049 | 203.33.206.0/23 5050 | 203.33.214.0/23 5051 | 203.33.224.0/23 5052 | 203.33.226.0/24 5053 | 203.33.233.0/24 5054 | 203.33.243.0/24 5055 | 203.33.250.0/24 5056 | 203.34.4.0/24 5057 | 203.34.21.0/24 5058 | 203.34.27.0/24 5059 | 203.34.39.0/24 5060 | 203.34.48.0/23 5061 | 203.34.54.0/24 5062 | 203.34.56.0/23 5063 | 203.34.67.0/24 5064 | 203.34.69.0/24 5065 | 203.34.76.0/24 5066 | 203.34.92.0/24 5067 | 203.34.106.0/24 5068 | 203.34.113.0/24 5069 | 203.34.147.0/24 5070 | 203.34.150.0/24 5071 | 203.34.152.0/23 5072 | 203.34.161.0/24 5073 | 203.34.162.0/24 5074 | 203.34.187.0/24 5075 | 203.34.192.0/21 5076 | 203.34.204.0/22 5077 | 203.34.232.0/24 5078 | 203.34.240.0/24 5079 | 203.34.242.0/24 5080 | 203.34.245.0/24 5081 | 203.34.251.0/24 5082 | 203.55.2.0/23 5083 | 203.55.4.0/24 5084 | 203.55.10.0/24 5085 | 203.55.13.0/24 5086 | 203.55.22.0/24 5087 | 203.55.30.0/24 5088 | 203.55.93.0/24 5089 | 203.55.101.0/24 5090 | 203.55.109.0/24 5091 | 203.55.110.0/24 5092 | 203.55.116.0/23 5093 | 203.55.119.0/24 5094 | 203.55.128.0/23 5095 | 203.55.146.0/23 5096 | 203.55.192.0/24 5097 | 203.55.196.0/24 5098 | 203.55.218.0/23 5099 | 203.55.221.0/24 5100 | 203.55.224.0/24 5101 | 203.56.1.0/24 5102 | 203.56.4.0/24 5103 | 203.56.12.0/24 5104 | 203.56.24.0/24 5105 | 203.56.38.0/24 5106 | 203.56.40.0/24 5107 | 203.56.46.0/24 5108 | 203.56.50.0/23 5109 | 203.56.52.0/22 5110 | 203.56.68.0/23 5111 | 203.56.82.0/23 5112 | 203.56.84.0/23 5113 | 203.56.95.0/24 5114 | 203.56.110.0/24 5115 | 203.56.121.0/24 5116 | 203.56.161.0/24 5117 | 203.56.169.0/24 5118 | 203.56.172.0/23 5119 | 203.56.175.0/24 5120 | 203.56.183.0/24 5121 | 203.56.185.0/24 5122 | 203.56.187.0/24 5123 | 203.56.192.0/24 5124 | 203.56.198.0/24 5125 | 203.56.201.0/24 5126 | 203.56.208.0/23 5127 | 203.56.210.0/24 5128 | 203.56.214.0/24 5129 | 203.56.216.0/24 5130 | 203.56.227.0/24 5131 | 203.56.228.0/24 5132 | 203.56.232.0/24 5133 | 203.56.240.0/24 5134 | 203.56.252.0/24 5135 | 203.56.254.0/24 5136 | 203.57.5.0/24 5137 | 203.57.6.0/24 5138 | 203.57.12.0/23 5139 | 203.57.28.0/24 5140 | 203.57.39.0/24 5141 | 203.57.46.0/24 5142 | 203.57.58.0/24 5143 | 203.57.61.0/24 5144 | 203.57.66.0/24 5145 | 203.57.69.0/24 5146 | 203.57.70.0/23 5147 | 203.57.73.0/24 5148 | 203.57.90.0/24 5149 | 203.57.101.0/24 5150 | 203.57.109.0/24 5151 | 203.57.123.0/24 5152 | 203.57.157.0/24 5153 | 203.57.200.0/24 5154 | 203.57.202.0/24 5155 | 203.57.206.0/24 5156 | 203.57.222.0/24 5157 | 203.57.224.0/20 5158 | 203.57.246.0/23 5159 | 203.57.249.0/24 5160 | 203.57.253.0/24 5161 | 203.57.254.0/23 5162 | 203.62.2.0/24 5163 | 203.62.131.0/24 5164 | 203.62.139.0/24 5165 | 203.62.161.0/24 5166 | 203.62.197.0/24 5167 | 203.62.228.0/22 5168 | 203.62.234.0/24 5169 | 203.62.246.0/24 5170 | 203.65.240.0/22 5171 | 203.76.160.0/22 5172 | 203.76.168.0/22 5173 | 203.76.208.0/21 5174 | 203.76.216.0/22 5175 | 203.76.240.0/22 5176 | 203.77.180.0/22 5177 | 203.78.48.0/20 5178 | 203.78.156.0/22 5179 | 203.79.0.0/20 5180 | 203.80.4.0/23 5181 | 203.80.32.0/20 5182 | 203.80.57.0/24 5183 | 203.80.129.0/24 5184 | 203.80.132.0/22 5185 | 203.80.140.0/22 5186 | 203.80.144.0/20 5187 | 203.81.0.0/21 5188 | 203.81.16.0/20 5189 | 203.81.244.0/22 5190 | 203.82.0.0/23 5191 | 203.82.16.0/21 5192 | 203.82.112.0/20 5193 | 203.82.224.0/20 5194 | 203.83.0.0/22 5195 | 203.83.12.0/22 5196 | 203.83.56.0/21 5197 | 203.83.224.0/20 5198 | 203.86.0.0/18 5199 | 203.86.64.0/19 5200 | 203.86.250.0/24 5201 | 203.86.254.0/23 5202 | 203.88.32.0/19 5203 | 203.88.100.0/22 5204 | 203.88.192.0/19 5205 | 203.89.0.0/22 5206 | 203.89.100.0/22 5207 | 203.89.136.0/22 5208 | 203.89.144.0/24 5209 | 203.90.0.0/22 5210 | 203.90.8.0/21 5211 | 203.90.128.0/18 5212 | 203.90.192.0/19 5213 | 203.91.32.0/19 5214 | 203.91.96.0/20 5215 | 203.91.120.0/21 5216 | 203.92.0.0/22 5217 | 203.92.6.0/24 5218 | 203.92.160.0/19 5219 | 203.93.0.0/16 5220 | 203.94.0.0/19 5221 | 203.95.0.0/21 5222 | 203.95.96.0/19 5223 | 203.95.128.0/18 5224 | 203.95.200.0/21 5225 | 203.95.208.0/22 5226 | 203.95.224.0/19 5227 | 203.99.8.0/21 5228 | 203.99.16.0/22 5229 | 203.99.30.0/23 5230 | 203.99.80.0/20 5231 | 203.100.32.0/20 5232 | 203.100.58.0/24 5233 | 203.100.60.0/24 5234 | 203.100.63.0/24 5235 | 203.100.80.0/20 5236 | 203.100.96.0/19 5237 | 203.100.192.0/20 5238 | 203.104.32.0/20 5239 | 203.105.96.0/19 5240 | 203.105.128.0/19 5241 | 203.107.0.0/17 5242 | 203.110.160.0/19 5243 | 203.110.208.0/20 5244 | 203.110.232.0/23 5245 | 203.110.234.0/24 5246 | 203.114.80.0/20 5247 | 203.114.244.0/22 5248 | 203.118.192.0/19 5249 | 203.118.241.0/24 5250 | 203.118.248.0/22 5251 | 203.119.24.0/23 5252 | 203.119.32.0/24 5253 | 203.119.34.0/23 5254 | 203.119.80.0/22 5255 | 203.119.85.0/24 5256 | 203.119.113.0/24 5257 | 203.119.114.0/23 5258 | 203.119.116.0/22 5259 | 203.119.120.0/21 5260 | 203.119.128.0/17 5261 | 203.123.58.0/24 5262 | 203.128.32.0/19 5263 | 203.128.96.0/19 5264 | 203.128.128.0/24 5265 | 203.128.224.0/21 5266 | 203.130.32.0/20 5267 | 203.132.32.0/19 5268 | 203.134.240.0/22 5269 | 203.134.246.0/23 5270 | 203.135.96.0/19 5271 | 203.135.160.0/20 5272 | 203.142.12.0/23 5273 | 203.142.219.0/24 5274 | 203.142.224.0/19 5275 | 203.145.0.0/19 5276 | 203.148.0.0/18 5277 | 203.148.64.0/20 5278 | 203.148.80.0/22 5279 | 203.148.86.0/23 5280 | 203.149.92.0/22 5281 | 203.152.64.0/19 5282 | 203.152.128.0/19 5283 | 203.153.0.0/22 5284 | 203.156.192.0/18 5285 | 203.158.16.0/21 5286 | 203.160.129.0/24 5287 | 203.160.192.0/19 5288 | 203.161.0.0/22 5289 | 203.161.180.0/24 5290 | 203.161.183.0/24 5291 | 203.161.192.0/19 5292 | 203.166.160.0/19 5293 | 203.167.28.0/22 5294 | 203.168.0.0/19 5295 | 203.170.58.0/23 5296 | 203.171.0.0/22 5297 | 203.171.208.0/24 5298 | 203.171.224.0/20 5299 | 203.174.4.0/24 5300 | 203.174.6.0/24 5301 | 203.174.96.0/20 5302 | 203.175.128.0/19 5303 | 203.175.192.0/18 5304 | 203.176.0.0/18 5305 | 203.176.64.0/19 5306 | 203.176.168.0/21 5307 | 203.184.80.0/20 5308 | 203.187.160.0/19 5309 | 203.189.0.0/23 5310 | 203.189.6.0/23 5311 | 203.189.112.0/22 5312 | 203.189.192.0/19 5313 | 203.189.240.0/22 5314 | 203.190.96.0/20 5315 | 203.190.249.0/24 5316 | 203.191.0.0/23 5317 | 203.191.2.0/24 5318 | 203.191.5.0/24 5319 | 203.191.7.0/24 5320 | 203.191.64.0/18 5321 | 203.191.133.0/24 5322 | 203.191.144.0/20 5323 | 203.192.0.0/19 5324 | 203.193.224.0/19 5325 | 203.195.64.0/19 5326 | 203.195.128.0/17 5327 | 203.196.0.0/20 5328 | 203.196.28.0/22 5329 | 203.201.181.0/24 5330 | 203.201.182.0/24 5331 | 203.202.236.0/22 5332 | 203.205.64.0/19 5333 | 203.207.64.0/18 5334 | 203.207.128.0/17 5335 | 203.208.0.0/20 5336 | 203.208.16.0/22 5337 | 203.208.32.0/19 5338 | 203.209.224.0/19 5339 | 203.212.0.0/20 5340 | 203.212.80.0/20 5341 | 203.217.164.0/22 5342 | 203.223.0.0/20 5343 | 203.223.16.0/24 5344 | 203.223.22.0/24 5345 | 204.55.160.0/24 5346 | 204.74.96.0/24 5347 | 204.114.176.0/23 5348 | 206.219.44.0/23 5349 | 206.219.50.0/23 5350 | 206.219.52.0/23 5351 | 207.89.20.0/24 5352 | 210.2.0.0/23 5353 | 210.2.2.0/24 5354 | 210.2.5.0/24 5355 | 210.2.6.0/23 5356 | 210.2.8.0/21 5357 | 210.2.24.0/21 5358 | 210.5.0.0/19 5359 | 210.5.56.0/24 5360 | 210.5.60.0/24 5361 | 210.5.128.0/19 5362 | 210.7.56.0/21 5363 | 210.12.0.0/15 5364 | 210.14.64.0/19 5365 | 210.14.112.0/20 5366 | 210.14.128.0/17 5367 | 210.15.0.0/17 5368 | 210.15.128.0/18 5369 | 210.16.128.0/21 5370 | 210.16.136.0/22 5371 | 210.16.156.0/22 5372 | 210.16.160.0/19 5373 | 210.21.0.0/16 5374 | 210.22.0.0/16 5375 | 210.23.32.0/19 5376 | 210.25.0.0/16 5377 | 210.26.0.0/15 5378 | 210.28.0.0/14 5379 | 210.32.0.0/12 5380 | 210.51.0.0/16 5381 | 210.52.0.0/15 5382 | 210.56.192.0/19 5383 | 210.72.0.0/14 5384 | 210.76.0.0/15 5385 | 210.78.0.0/16 5386 | 210.79.64.0/18 5387 | 210.79.224.0/19 5388 | 210.82.0.0/15 5389 | 210.87.128.0/18 5390 | 210.185.192.0/18 5391 | 210.192.96.0/19 5392 | 211.64.0.0/13 5393 | 211.80.0.0/12 5394 | 211.96.0.0/14 5395 | 211.100.0.0/17 5396 | 211.100.128.0/19 5397 | 211.100.160.0/20 5398 | 211.100.184.0/21 5399 | 211.100.192.0/18 5400 | 211.101.0.0/16 5401 | 211.102.0.0/15 5402 | 211.136.0.0/13 5403 | 211.144.0.0/13 5404 | 211.152.0.0/17 5405 | 211.152.134.0/23 5406 | 211.152.136.0/21 5407 | 211.152.144.0/23 5408 | 211.152.150.0/23 5409 | 211.152.157.0/24 5410 | 211.152.158.0/23 5411 | 211.152.160.0/19 5412 | 211.152.192.0/18 5413 | 211.153.0.0/16 5414 | 211.154.0.0/19 5415 | 211.154.32.0/20 5416 | 211.154.48.0/21 5417 | 211.154.64.0/18 5418 | 211.154.128.0/17 5419 | 211.155.0.0/18 5420 | 211.155.67.0/24 5421 | 211.155.68.0/24 5422 | 211.155.72.0/21 5423 | 211.155.80.0/20 5424 | 211.155.97.0/24 5425 | 211.155.98.0/23 5426 | 211.155.100.0/22 5427 | 211.155.104.0/21 5428 | 211.155.112.0/23 5429 | 211.155.117.0/24 5430 | 211.155.118.0/23 5431 | 211.155.120.0/21 5432 | 211.155.128.0/17 5433 | 211.156.0.0/18 5434 | 211.156.64.0/19 5435 | 211.156.96.0/21 5436 | 211.156.104.0/22 5437 | 211.156.108.0/23 5438 | 211.156.112.0/20 5439 | 211.156.128.0/17 5440 | 211.157.0.0/16 5441 | 211.158.0.0/15 5442 | 211.160.0.0/13 5443 | 212.64.0.0/17 5444 | 212.129.128.0/17 5445 | 218.0.0.0/12 5446 | 218.16.0.0/13 5447 | 218.24.0.0/14 5448 | 218.28.0.0/15 5449 | 218.30.0.0/19 5450 | 218.30.64.0/18 5451 | 218.30.128.0/17 5452 | 218.31.0.0/16 5453 | 218.56.0.0/13 5454 | 218.64.0.0/11 5455 | 218.96.0.0/15 5456 | 218.98.0.0/18 5457 | 218.98.96.0/19 5458 | 218.98.128.0/19 5459 | 218.98.193.0/24 5460 | 218.98.194.0/23 5461 | 218.98.196.0/22 5462 | 218.98.200.0/21 5463 | 218.98.208.0/20 5464 | 218.98.224.0/19 5465 | 218.99.0.0/16 5466 | 218.100.96.0/19 5467 | 218.100.128.0/17 5468 | 218.104.0.0/14 5469 | 218.108.0.0/15 5470 | 218.185.192.0/19 5471 | 218.192.0.0/12 5472 | 218.240.0.0/14 5473 | 218.244.0.0/15 5474 | 218.246.0.0/17 5475 | 218.246.129.0/24 5476 | 218.246.131.0/24 5477 | 218.246.132.0/23 5478 | 218.246.134.0/24 5479 | 218.246.139.0/24 5480 | 218.246.144.0/20 5481 | 218.246.160.0/19 5482 | 218.246.192.0/18 5483 | 218.247.0.0/18 5484 | 218.247.96.0/19 5485 | 218.247.128.0/17 5486 | 218.249.0.0/16 5487 | 219.72.0.0/16 5488 | 219.82.0.0/16 5489 | 219.83.128.0/17 5490 | 219.90.68.0/22 5491 | 219.90.72.0/21 5492 | 219.128.0.0/11 5493 | 219.216.0.0/13 5494 | 219.224.0.0/13 5495 | 219.232.0.0/15 5496 | 219.234.0.0/20 5497 | 219.234.32.0/19 5498 | 219.234.64.0/18 5499 | 219.234.128.0/17 5500 | 219.235.0.0/16 5501 | 219.236.0.0/14 5502 | 219.242.0.0/15 5503 | 219.244.0.0/14 5504 | 220.101.192.0/18 5505 | 220.112.0.0/14 5506 | 220.152.128.0/17 5507 | 220.154.0.0/16 5508 | 220.155.0.0/21 5509 | 220.155.9.0/24 5510 | 220.155.10.0/23 5511 | 220.155.12.0/22 5512 | 220.155.16.0/21 5513 | 220.155.24.0/22 5514 | 220.155.28.0/23 5515 | 220.155.31.0/24 5516 | 220.155.32.0/19 5517 | 220.155.64.0/18 5518 | 220.155.128.0/17 5519 | 220.158.241.0/24 5520 | 220.158.243.0/24 5521 | 220.160.0.0/11 5522 | 220.192.0.0/12 5523 | 220.231.0.0/18 5524 | 220.231.128.0/17 5525 | 220.232.64.0/18 5526 | 220.234.0.0/16 5527 | 220.242.0.0/24 5528 | 220.242.12.0/23 5529 | 220.242.14.0/24 5530 | 220.242.17.0/24 5531 | 220.242.18.0/23 5532 | 220.242.20.0/24 5533 | 220.242.25.0/24 5534 | 220.242.26.0/23 5535 | 220.242.28.0/22 5536 | 220.242.32.0/20 5537 | 220.242.48.0/23 5538 | 220.242.53.0/24 5539 | 220.242.55.0/24 5540 | 220.242.56.0/22 5541 | 220.242.60.0/23 5542 | 220.242.62.0/24 5543 | 220.242.64.0/19 5544 | 220.242.96.0/20 5545 | 220.242.112.0/21 5546 | 220.242.120.0/22 5547 | 220.242.124.0/23 5548 | 220.242.126.0/24 5549 | 220.242.161.0/24 5550 | 220.242.163.0/24 5551 | 220.242.167.0/24 5552 | 220.242.168.0/21 5553 | 220.242.176.0/20 5554 | 220.242.192.0/18 5555 | 220.243.0.0/17 5556 | 220.243.128.0/18 5557 | 220.243.204.0/24 5558 | 220.243.214.0/24 5559 | 220.243.217.0/24 5560 | 220.243.218.0/24 5561 | 220.243.238.0/24 5562 | 220.247.136.0/21 5563 | 220.248.0.0/14 5564 | 220.252.0.0/16 5565 | 221.0.0.0/13 5566 | 221.8.0.0/14 5567 | 221.12.0.0/17 5568 | 221.12.128.0/18 5569 | 221.13.0.0/16 5570 | 221.14.0.0/15 5571 | 221.122.0.0/15 5572 | 221.128.128.0/17 5573 | 221.129.0.0/16 5574 | 221.130.0.0/15 5575 | 221.133.224.0/19 5576 | 221.136.0.0/15 5577 | 221.172.0.0/14 5578 | 221.176.0.0/19 5579 | 221.176.32.0/20 5580 | 221.176.48.0/21 5581 | 221.176.56.0/24 5582 | 221.176.58.0/23 5583 | 221.176.60.0/22 5584 | 221.176.64.0/18 5585 | 221.176.128.0/17 5586 | 221.177.0.0/16 5587 | 221.178.0.0/15 5588 | 221.180.0.0/14 5589 | 221.192.0.0/14 5590 | 221.196.0.0/15 5591 | 221.198.0.0/16 5592 | 221.199.0.0/17 5593 | 221.199.128.0/18 5594 | 221.199.192.0/20 5595 | 221.199.224.0/19 5596 | 221.200.0.0/13 5597 | 221.208.0.0/12 5598 | 221.224.0.0/12 5599 | 222.16.0.0/12 5600 | 222.32.0.0/11 5601 | 222.64.0.0/11 5602 | 222.125.0.0/16 5603 | 222.126.128.0/19 5604 | 222.126.160.0/21 5605 | 222.126.168.0/22 5606 | 222.126.172.0/23 5607 | 222.126.178.0/23 5608 | 222.126.180.0/22 5609 | 222.126.184.0/21 5610 | 222.126.192.0/21 5611 | 222.126.206.0/23 5612 | 222.126.208.0/22 5613 | 222.126.212.0/23 5614 | 222.126.216.0/21 5615 | 222.126.224.0/20 5616 | 222.126.240.0/24 5617 | 222.126.242.0/23 5618 | 222.126.244.0/22 5619 | 222.126.248.0/21 5620 | 222.128.0.0/12 5621 | 222.160.0.0/14 5622 | 222.168.0.0/13 5623 | 222.176.0.0/12 5624 | 222.192.0.0/11 5625 | 222.240.0.0/13 5626 | 222.248.0.0/15 5627 | 223.0.0.0/12 5628 | 223.20.0.0/15 5629 | 223.27.184.0/22 5630 | 223.29.208.0/22 5631 | 223.29.252.0/22 5632 | 223.64.0.0/11 5633 | 223.96.0.0/12 5634 | 223.112.0.0/14 5635 | 223.116.0.0/15 5636 | 223.120.0.0/13 5637 | 223.128.0.0/15 5638 | 223.144.0.0/12 5639 | 223.160.0.0/14 5640 | 223.166.0.0/15 5641 | 223.192.0.0/15 5642 | 223.198.0.0/15 5643 | 223.201.0.0/16 5644 | 223.202.0.0/15 5645 | 223.208.0.0/13 5646 | 223.220.0.0/15 5647 | 223.223.176.0/20 5648 | 223.223.192.0/20 5649 | 223.240.0.0/13 5650 | 223.248.0.0/14 5651 | 223.252.128.0/19 5652 | 223.252.192.0/18 5653 | 223.254.0.0/16 5654 | 223.255.0.0/17 5655 | 223.255.236.0/22 5656 | 223.255.252.0/23 -------------------------------------------------------------------------------- /gfwlistcheck.py: -------------------------------------------------------------------------------- 1 | import base64 2 | import urllib.parse 3 | from utils import ( 4 | dict_deep_set 5 | ) 6 | 7 | 8 | class GfwList: 9 | def __init__(self): 10 | self.data = dict() 11 | self.read_line() 12 | 13 | def add_host(self, host): 14 | parts = [part for part in reversed(host.split('.')) if part] 15 | dict_deep_set(self.data, parts) 16 | 17 | def read_line(self): 18 | with open('gfwlist.txt') as f: 19 | txt = f.read() 20 | 21 | txt = base64.b64decode(txt).decode() 22 | lines = txt.split('\n') 23 | 24 | for line in lines: 25 | if line == '' or line[0] in ('[', '!', '@'): 26 | continue 27 | 28 | elif line.startswith('|http'): 29 | url = urllib.parse.urlsplit(line[1:]) 30 | host = url.netloc 31 | self.add_host(host) 32 | 33 | elif line.startswith('||'): 34 | self.add_host(line[2:]) 35 | 36 | elif '/' not in line: 37 | self.add_host(line) 38 | 39 | def check(self, host): 40 | d = self.data 41 | parts = [part for part in reversed(host.split('.')) if part] 42 | for part in parts[:-1]: 43 | if d.get(part): 44 | d = d[part] 45 | else: 46 | return False 47 | 48 | else: 49 | return d.get(parts[-1]) is not None 50 | 51 | 52 | if __name__ == '__main__': 53 | gfwlist = GfwList() 54 | -------------------------------------------------------------------------------- /gfwlistcheck_test.py: -------------------------------------------------------------------------------- 1 | import gfwlistcheck 2 | 3 | 4 | def test_GfwList_check(): 5 | gfwlist = gfwlistcheck.GfwList() 6 | hosts = [ 7 | ('ftchinese.com', True), 8 | ('www.qq.com', False), 9 | ('share.dmhy.org', True), 10 | ('t66y.com', True), 11 | ] 12 | 13 | for host, r in hosts: 14 | assert gfwlist.check(host) == r 15 | 16 | 17 | if __name__ == '__main__': 18 | test_GfwList_check() -------------------------------------------------------------------------------- /ipincn.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | import IPy 4 | 5 | 6 | class CnIpChecker: 7 | def __init__(self): 8 | self.dat_file = 'cn_ip.txt' 9 | self.pool = dict() 10 | self.read_file() 11 | 12 | def read_file(self): 13 | with open(self.dat_file) as f: 14 | txt = f.read() 15 | 16 | for line in txt.split('\n'): 17 | parts = line.split('/', 2) 18 | ip = parts[0] 19 | mask = int(parts[1]) 20 | if not self.pool.get(mask): 21 | self.pool[mask] = set() 22 | self.pool[mask].add(ip) 23 | 24 | def check(self, ip): 25 | for mask in range(32, 9, -1): 26 | ip_range = str(IPy.IP(ip).make_net(mask).net()) 27 | if ip_range in self.pool[mask]: 28 | return True 29 | else: 30 | return False 31 | 32 | 33 | if __name__ == "__main__": 34 | # ip_in_cn = ip_in_cn_gen() 35 | checker = CnIpChecker() 36 | print(checker.check('124.225.171.2')) 37 | print(checker.check('49.114.165.195')) 38 | for ip in ['49.114.165.195', 39 | '211.137.180.236', 40 | '175.223.16.46', 41 | '175.223.52.32', 42 | '219.74.86.136', 43 | '223.62.178.66', 44 | '223.33.184.117', 45 | '222.102.171.135', 46 | '113.162.202.32', 47 | '37.131.68.47', 48 | '178.77.154.240', 49 | '186.204.91.244', 50 | '119.139.14.70', 51 | '103.1.30.66', 52 | '192.168.102.42', 53 | '171.208.114.19', 54 | '27.42.26.56', 55 | '49.114.165.195', 56 | '211.137.180.236', 57 | '175.223.16.46', 58 | '175.223.52.32', 59 | '219.74.86.136', 60 | '223.62.178.66', 61 | '223.33.184.117', 62 | '222.102.171.135', 63 | '113.162.202.32', 64 | '37.131.68.47', 65 | '178.77.154.240', 66 | '186.123.135.229', 67 | '61.18.254.113', 68 | '210.91.142.47', 69 | '223.255.252.1']: 70 | print(ip, checker.check(ip)) 71 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | gevent 3 | docopt 4 | IPy 5 | dnslib -------------------------------------------------------------------------------- /supervisor_bjdns_example.conf: -------------------------------------------------------------------------------- 1 | [program:bjdns] 2 | directory = /home/user/bjdns/ 3 | command = python3 bjdns3 4 | autostart = true 5 | startsecs = 5 6 | user = user 7 | redirect_stderr = true 8 | stdout_logfile = /home/user/bjdns/bjdns.log 9 | loglevel = debug 10 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- 1 | import time 2 | import struct 3 | import socket 4 | 5 | 6 | def empty(*args): 7 | ... 8 | 9 | 10 | def info(*args): 11 | print(time.strftime('%Y-%m-%d %H:%M:%S'), *args) 12 | 13 | 14 | def resp_from_json(json_str: dict): 15 | j = json_str 16 | if not j.get('Answer'): 17 | return '', 0 18 | else: 19 | for a in j['Answer']: 20 | if a.get('type') == 1: 21 | return a['data'], a['TTL'] 22 | else: 23 | return '', 0 24 | 25 | 26 | def is_private_ip(ip): 27 | if ip == '' or ip == '1' or ip.startswith('127'): 28 | return True 29 | else: 30 | ip1 = 167772160 31 | ip2 = 2886729728 32 | ip3 = 3232235520 33 | binaryIp = socket.inet_aton(ip) 34 | numIp = struct.unpack('!L', binaryIp)[0] 35 | mark = 2**32-1 36 | ag = (mark << 16) & numIp 37 | if ip3 == ag: 38 | return True 39 | ag = mark << 20 & numIp 40 | if ip2 == ag: 41 | return True 42 | ag = (mark << 24) & numIp 43 | if ip1 == ag: 44 | return True 45 | return False 46 | 47 | 48 | def dict_deep_set(d: dict, data_list: list): 49 | for data in data_list: 50 | if d.get(data) is None: 51 | d[data] = dict() 52 | 53 | d = d[data] 54 | -------------------------------------------------------------------------------- /utils_test.py: -------------------------------------------------------------------------------- 1 | import utils 2 | 3 | 4 | def test_dict_deep_set(): 5 | d = dict() 6 | d['cn'] = dict() 7 | utils.dict_deep_set(d, ['cn', 'cctv', 'www']) 8 | utils.dict_deep_set(d, ['com', 'cctv', 'www']) 9 | assert d['cn']['cctv'] == 'www' 10 | assert d['com']['cctv'] == 'www' 11 | assert d['com'].get('cct') != 'www' 12 | 13 | 14 | if __name__ == '__main__': 15 | test_dict_deep_set() 16 | --------------------------------------------------------------------------------