From cc2d4e42142f2ecd07ec6f4b4aeb5737e51da922 Mon Sep 17 00:00:00 2001 From: Jernej Slejko Date: Mon, 2 Sep 2024 13:56:44 +0200 Subject: [PATCH 1/6] updated script and instructions with AWS configuration --- .gitignore | 3 ++- README.md | 18 ++++++++++++++---- import_csv.py | 11 ++++++++--- 3 files changed, 24 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index b694934..807849c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.venv \ No newline at end of file +.venv +/.idea/ diff --git a/README.md b/README.md index ed2530c..41b0034 100644 --- a/README.md +++ b/README.md @@ -6,16 +6,26 @@ This project provides several utilities for working with AWS. Each utility is a - Scan infinite Dynamodb table items ## Installation -Clone the repository. -Install the required packages with pip install -r requirements.txt. +- clone the repository +- create virtual environment `python -m venv .venv` +- switch to virtual environment `source .venv/bin/activate` +- install the required packages with `pip install -r requirements.txt` +- when done, exit virtual environment with typing `deactivate` ## Example Usage -wipe_table.py +__wipe_table.py__ This utility wipes all the items from a DynamoDB table. - ``` python wipe_table.py [--aws_endpoint ] ``` +__import_csv.py__ +This utility imports csv file (key, value) into selected DynamoDB table. +``` +python import_csv.py --table=my_table --file=path_to_my_file.csv + +# optional parameters with default values overriden +python import_csv.py --table=my_table --file=path_to_my_file.csv --profile=my-profile --region=eu-west-2 +``` **Arguments** - `table_name:` The name of the DynamoDB table to wipe. diff --git a/import_csv.py b/import_csv.py index c085c18..9bfe18d 100644 --- a/import_csv.py +++ b/import_csv.py @@ -4,7 +4,9 @@ import argparse from botocore.exceptions import ClientError -def filter_and_import_csv_to_dynamodb(table_name, csv_file, columns_to_keep=None): + +def filter_and_import_csv_to_dynamodb(table_name, csv_file, profile, region, columns_to_keep=None): + boto3.setup_default_session(profile_name=profile, region_name=region) dynamodb = boto3.resource('dynamodb') table = dynamodb.Table(table_name) @@ -35,12 +37,15 @@ def filter_and_import_csv_to_dynamodb(table_name, csv_file, columns_to_keep=None print(f"Error importing item: {item}") print(e.response['Error']['Message']) + if __name__ == "__main__": parser = argparse.ArgumentParser(description="Import filtered CSV data to DynamoDB") parser.add_argument("-t", "--table", type=str, help="Name of the DynamoDB table", required=True) parser.add_argument("-f", "--file", type=str, help="Path to the CSV file", required=True) + parser.add_argument("-p", "--profile", type=str,help="Profile name for AWS configuration", default='default') + parser.add_argument("-r", "--region", type=str,help="Region name for AWS configuration", default='eu-west-1') parser.add_argument("-k", "--keep", type=str, nargs='*', help="Columns to keep (space-separated). If not specified, all columns will be kept.", default=None) args = parser.parse_args() - filter_and_import_csv_to_dynamodb(args.table, args.file, args.keep) - print("Filtered import complete!") \ No newline at end of file + filter_and_import_csv_to_dynamodb(args.table, args.file, args.profile, args.keep) + print("Filtered import complete!") From e7f200e2e077a47aa9bd3dc8cc2d131cc2211e78 Mon Sep 17 00:00:00 2001 From: Jernej Slejko Date: Mon, 2 Sep 2024 14:14:28 +0200 Subject: [PATCH 2/6] updated region var --- import_csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import_csv.py b/import_csv.py index 9bfe18d..08ad3db 100644 --- a/import_csv.py +++ b/import_csv.py @@ -47,5 +47,5 @@ def filter_and_import_csv_to_dynamodb(table_name, csv_file, profile, region, col parser.add_argument("-k", "--keep", type=str, nargs='*', help="Columns to keep (space-separated). If not specified, all columns will be kept.", default=None) args = parser.parse_args() - filter_and_import_csv_to_dynamodb(args.table, args.file, args.profile, args.keep) + filter_and_import_csv_to_dynamodb(args.table, args.file, args.profile, args.region, args.keep) print("Filtered import complete!") From f9c2504e2f26d9083a40584ce064ff1ef6f848f3 Mon Sep 17 00:00:00 2001 From: Jernej Slejko Date: Mon, 2 Sep 2024 15:46:50 +0200 Subject: [PATCH 3/6] Update README.md --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 41b0034..f0d2f50 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,30 @@ This project provides several utilities for working with AWS. Each utility is a - install the required packages with `pip install -r requirements.txt` - when done, exit virtual environment with typing `deactivate` +## AWS requirements +The user/profile needs to have correct permissions to create and modify `DynamoDB` configuration. +``` +{ + "Version": "2012-10-17", + "Statement": [ + { + "Sid": "DynamoDBEdit", + "Effect": "Allow", + "Action": [ + "dynamodb:BatchWriteItem", + "dynamodb:PutItem", + "dynamodb:DeleteItem", + "dynamodb:GetItem", + "dynamodb:Scan", + "dynamodb:Query", + "dynamodb:UpdateItem" + ], + "Resource": "*" + } + ] +} +``` + ## Example Usage __wipe_table.py__ This utility wipes all the items from a DynamoDB table. From b1512e8dcede9ce6d06c7d3d6f80259f68cb2bf2 Mon Sep 17 00:00:00 2001 From: Jernej Slejko Date: Mon, 16 Dec 2024 17:37:43 +0100 Subject: [PATCH 4/6] new script for getting the network traffic --- network_usage.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 network_usage.sh diff --git a/network_usage.sh b/network_usage.sh new file mode 100755 index 0000000..3aa5972 --- /dev/null +++ b/network_usage.sh @@ -0,0 +1,25 @@ +#!/bin/bash +if [ $# -ne 5 ]; then +echo "Usage: $0 " +echo -e "\tNote: Do not change the order of parameters." +echo -e "\n\tExample: $0 eu-west-1 NetworkOut 2020-06-01T00:00:00.000Z 2020-06-30T23:59:59.000Z my-profile" +exit 1 +fi +REGION="$1" +METRIC="$2" +START_TIME="$3" +END_TIME="$4" +PROFILE="$5" + +ADD_INSTANCES="" + +INSTANCES="${ADD_INSTANCES} $(aws ec2 describe-instances --region ${REGION} --profile ${PROFILE} --query Reservations[*].Instances[*].InstanceId --output text)" || { echo "Failed to run aws ec2 describe-instances commandline, exiting..."; exit 1; } +[ "${INSTANCES}x" == "x" ] && { echo "There are no instances found from the given region ${REGION}, exiting..."; exit 1; } +for _instance_id in ${INSTANCES}; do + unset _value + _instance_name=$(aws ec2 describe-tags --region ${REGION} --profile ${PROFILE} --filters "Name=resource-id,Values=${_instance_id}" "Name=key,Values=Name" --output text | cut -f5) + _value="$(aws cloudwatch get-metric-statistics --metric-name ${METRIC} --start-time ${START_TIME} --end-time ${END_TIME} --period 86400 --namespace AWS/EC2 --statistics Sum --dimensions Name=InstanceId,Value=${_instance_id} --region ${REGION} --profile ${PROFILE} --output text)" + [ "${_value}x" == "x" ] && { echo "Something went wrong while calculating the network usage of ${_instance_id}"; continue; } + echo "${_instance_name} (${_instance_id}): $(echo "${_value}" | awk '{ sum += $2 } END {printf ("%f\n", sum/1024/1024/1024)}';) GiB"; +done +echo -e "\nNote: If you think the values are inaccurate, please verify the input and modify if needed." \ No newline at end of file From c913f82f75da95ace0db87ed08fab3bd331d391f Mon Sep 17 00:00:00 2001 From: Jernej Slejko Date: Thu, 23 Jan 2025 12:25:13 +0100 Subject: [PATCH 5/6] new ip sets copy from one region to another --- clone_ip_set.py | 68 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 clone_ip_set.py diff --git a/clone_ip_set.py b/clone_ip_set.py new file mode 100644 index 0000000..247d2db --- /dev/null +++ b/clone_ip_set.py @@ -0,0 +1,68 @@ +import argparse +import boto3 + +def copy_waf_ip_set(source_region, target_region, ip_set_name, profile, cf): + boto3.setup_default_session(profile_name=profile) + # Step 1: Initialize clients for source and target regions + source_client = boto3.client('wafv2', region_name=source_region) + target_client = boto3.client('wafv2', region_name=target_region) + + # Step 2: Retrieve the IP Set details from the source region + try: + ip_set_response = source_client.list_ip_sets(Scope='REGIONAL') + ip_set = next((ip for ip in ip_set_response['IPSets'] if ip['Name'] == ip_set_name), None) + if not ip_set: + raise ValueError(f"IP Set '{ip_set_name}' not found in source region {source_region}.") + + ip_set_id = ip_set['Id'] + ip_set_details = source_client.get_ip_set(Name=ip_set_name, Scope='REGIONAL', Id=ip_set_id) + ip_addresses = ip_set_details['IPSet']['Addresses'] + except Exception as e: + print(f"Error retrieving IP Set from source region: {e}") + return + + # Step 3: Create a new IP Set in the target region + if cf: + scope = 'CLOUDFRONT' + else: + scope = 'REGIONAL' + + try: + create_response = target_client.create_ip_set( + Name=ip_set_name, + Scope=scope, + IPAddressVersion=ip_set_details['IPSet']['IPAddressVersion'], + Addresses=[] + ) + target_ip_set_id = create_response['Summary']['Id'] + print(f"Created new IP Set '{ip_set_name}' in target region {target_region} and with ID {target_ip_set_id}.") + except Exception as e: + print(f"Error creating IP Set in target region: {e}") + return + + # Step 4: Update the new IP Set with addresses + try: + target_client.update_ip_set( + Name=ip_set_name, + Scope=scope, + Id=target_ip_set_id, + LockToken=create_response['Summary']['LockToken'], + Addresses=ip_addresses + ) + print(f"Successfully copied IP Set '{ip_set_name}' to target region {target_region}.") + except Exception as e: + print(f"Error updating IP Set in target region: {e}") + return + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Clone IP set from one region to another") + parser.add_argument("-s", "--source", type=str, help="Source region", required=True) + parser.add_argument("-t", "--target", type=str, help="Target region. (CF is in `us-east-1`)", required=True) + parser.add_argument("-n", "--name", type=str, help="Name of the IP set", required=True) + parser.add_argument("-p", "--profile", type=str, help="Profile name for AWS configuration", default='default') + parser.add_argument("-c", "--cloudfront", type=bool, help="Create in cloudfront?", default=False) + args = parser.parse_args() + + copy_waf_ip_set(args.source, args.target, args.name, args.profile, args.cloudfront) + print("Filtered import complete!") From 661804627fa996da52a48918fc758668799961c6 Mon Sep 17 00:00:00 2001 From: Jernej Slejko Date: Wed, 28 May 2025 17:35:57 +0200 Subject: [PATCH 6/6] some funky shyt --- README.md | 12 +- ...phinet-org_2025-05-28T17:34:57.634514.json | 206 + ...ehedge-com_2025-05-28T17:34:58.505200.json | 253 + ...centds-org_2025-05-28T17:35:00.760535.json | 256 + ...or-ntd-org_2025-05-28T17:35:02.827275.json | 256 + ...idence-org_2025-05-28T17:35:03.881330.json | 256 + ...-eugms-org_2025-05-28T17:35:04.957613.json | 333 + ...balhep-org_2025-05-28T17:35:05.996399.json | 350 + ...bal-health_2025-05-28T17:35:07.222778.json | 256 + ...-jhsph-edu_2025-05-28T17:35:08.376780.json | 256 + ...tology-com_2025-05-28T17:35:09.437523.json | 239 + ...kcri-ac-tz_2025-05-28T17:35:10.512776.json | 256 + ...accine-org_2025-05-28T17:35:11.456132.json | 256 + ...edia-co-uk_2025-05-28T17:35:13.323682.json | 358 + ...vation-net_2025-05-28T17:35:14.425457.json | 257 + ...pssmsp-org_2025-05-28T17:35:15.448075.json | 256 + ...oolbox-org_2025-05-28T17:35:16.573707.json | 256 + ...-cam-ac-uk_2025-05-28T17:35:17.616846.json | 256 + ...u-pitt-edu_2025-05-28T17:35:18.792967.json | 239 + ...raab-world_2025-05-28T17:35:20.121455.json | 308 + ...alaria-org_2025-05-28T17:35:21.274614.json | 333 + ...liance-org_2025-05-28T17:35:22.312662.json | 256 + ...phinet-org_2025-05-28T17:35:23.331917.json | 256 + ...vacamr-org_2025-05-28T17:35:24.377759.json | 241 + ...alaria-org_2025-05-28T17:35:25.496789.json | 256 + ...t-1de2bb76_2025-05-28T17:35:26.580148.json | 104 + ...b1da7b36c5_2025-05-28T17:35:27.460046.json | 348 + create-cidr-list-from-ips.py | 27 + ip-set.txt | 13031 ++++++++++++++++ requirements.txt | 1 + update-all-web-acls.py | 163 + 31 files changed, 20129 insertions(+), 2 deletions(-) create mode 100644 backups/CloudFrontWebACL-accreditation-tephinet-org_2025-05-28T17:34:57.634514.json create mode 100644 backups/CloudFrontWebACL-index-juicehedge-com_2025-05-28T17:34:58.505200.json create mode 100644 backups/CloudFrontWebACL-www-acentds-org_2025-05-28T17:35:00.760535.json create mode 100644 backups/CloudFrontWebACL-www-cor-ntd-org_2025-05-28T17:35:02.827275.json create mode 100644 backups/CloudFrontWebACL-www-disabilityevidence-org_2025-05-28T17:35:03.881330.json create mode 100644 backups/CloudFrontWebACL-www-eugms-org_2025-05-28T17:35:04.957613.json create mode 100644 backups/CloudFrontWebACL-www-globalhep-org_2025-05-28T17:35:05.996399.json create mode 100644 backups/CloudFrontWebACL-www-growglobal-health_2025-05-28T17:35:07.222778.json create mode 100644 backups/CloudFrontWebACL-www-iddynamics-jhsph-edu_2025-05-28T17:35:08.376780.json create mode 100644 backups/CloudFrontWebACL-www-irishgerontology-com_2025-05-28T17:35:09.437523.json create mode 100644 backups/CloudFrontWebACL-www-kcri-ac-tz_2025-05-28T17:35:10.512776.json create mode 100644 backups/CloudFrontWebACL-www-malariavaccine-org_2025-05-28T17:35:11.456132.json create mode 100644 backups/CloudFrontWebACL-www-mantaraymedia-co-uk_2025-05-28T17:35:13.323682.json create mode 100644 backups/CloudFrontWebACL-www-mhinnovation-net_2025-05-28T17:35:14.425457.json create mode 100644 backups/CloudFrontWebACL-www-mhpssmsp-org_2025-05-28T17:35:15.448075.json create mode 100644 backups/CloudFrontWebACL-www-ntdtoolbox-org_2025-05-28T17:35:16.573707.json create mode 100644 backups/CloudFrontWebACL-www-pdu-gen-cam-ac-uk_2025-05-28T17:35:17.616846.json create mode 100644 backups/CloudFrontWebACL-www-pvctu-pitt-edu_2025-05-28T17:35:18.792967.json create mode 100644 backups/CloudFrontWebACL-www-raab-world_2025-05-28T17:35:20.121455.json create mode 100644 backups/CloudFrontWebACL-www-severemalaria-org_2025-05-28T17:35:21.274614.json create mode 100644 backups/CloudFrontWebACL-www-smc-alliance-org_2025-05-28T17:35:22.312662.json create mode 100644 backups/CloudFrontWebACL-www-tephinet-org_2025-05-28T17:35:23.331917.json create mode 100644 backups/CloudFrontWebACL-www-vacamr-org_2025-05-28T17:35:24.377759.json create mode 100644 backups/CloudFrontWebACL-www-vivaxmalaria-org_2025-05-28T17:35:25.496789.json create mode 100644 backups/CreatedByCloudFront-1de2bb76_2025-05-28T17:35:26.580148.json create mode 100644 backups/CreatedByCloudFront-fa908c59-5335-4df9-82f2-36b1da7b36c5_2025-05-28T17:35:27.460046.json create mode 100644 create-cidr-list-from-ips.py create mode 100644 ip-set.txt create mode 100644 update-all-web-acls.py diff --git a/README.md b/README.md index f0d2f50..3aa4f0f 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,14 @@ python import_csv.py --table=my_table --file=path_to_my_file.csv --profile=my-pr **Arguments** - `table_name:` The name of the DynamoDB table to wipe. - `aws_endpoint:` (optional) The endpoint to use for connecting to DynamoDB. If not specified, the default endpoint for the region will be used. + +__update-all-web-acls.py__ +```shell +# Use specific profile, update all WebACLs: +python update-all-web-acls.py --profile myprofile --scope CLOUDFRONT -## License -This project is licensed under the MIT License. See the LICENSE file for details. + +#Use specific profile, update only one WebACL: +python update-all-web-acls.py --profile myprofile --scope REGIONAL --region eu-central-1 --webacl-name my-web-acl + +``` \ No newline at end of file diff --git a/backups/CloudFrontWebACL-accreditation-tephinet-org_2025-05-28T17:34:57.634514.json b/backups/CloudFrontWebACL-accreditation-tephinet-org_2025-05-28T17:34:57.634514.json new file mode 100644 index 0000000..a6fa619 --- /dev/null +++ b/backups/CloudFrontWebACL-accreditation-tephinet-org_2025-05-28T17:34:57.634514.json @@ -0,0 +1,206 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-accreditation-tephinet-org", + "Id": "4fdeb54b-0c4e-46c3-8cf9-3853fe3a0c33", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-accreditation-tephinet-org/4fdeb54b-0c4e-46c3-8cf9-3853fe3a0c33", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "Version": "Version_3.1", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 9, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1011, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-accreditation-tephinet-org:" + }, + "LockToken": "ea7e1deb-467d-4d5c-9295-7dd6bdadc8db", + "ResponseMetadata": { + "RequestId": "89346135-398e-499c-a194-4b934c3e7dcc", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "89346135-398e-499c-a194-4b934c3e7dcc", + "content-type": "application/x-amz-json-1.1", + "content-length": "3879", + "date": "Wed, 28 May 2025 15:34:57 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-index-juicehedge-com_2025-05-28T17:34:58.505200.json b/backups/CloudFrontWebACL-index-juicehedge-com_2025-05-28T17:34:58.505200.json new file mode 100644 index 0000000..ce9f54b --- /dev/null +++ b/backups/CloudFrontWebACL-index-juicehedge-com_2025-05-28T17:34:58.505200.json @@ -0,0 +1,253 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-index-juicehedge-com", + "Id": "50d527cd-c497-4951-ac5f-ef0f57547617", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-index-juicehedge-com/50d527cd-c497-4951-ac5f-ef0f57547617", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "Juicehedge-API-exclusion", + "Priority": 3, + "Statement": { + "ByteMatchStatement": { + "SearchString": "api.juicehedge.com", + "FieldToMatch": { + "SingleHeader": { + "Name": "x-host-header" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + }, + "Action": { + "Allow": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Juicehedge-API-exclusion" + } + }, + { + "Name": "Allow-rule-list", + "Priority": 5, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Allow-rule-list" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 6, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 7, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 8, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 9, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 10, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-rate-limit/18f799b1-811e-4213-94ec-d039fffd462c" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + }, + { + "Name": "Google-throttle", + "Priority": 14, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Google-throttle" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 15, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1021, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-index-juicehedge-com:" + }, + "LockToken": "18441bc9-8243-4bba-806a-92b1228eb2f7", + "ResponseMetadata": { + "RequestId": "7a07ed58-702f-4512-9838-545c96b5dc98", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "7a07ed58-702f-4512-9838-545c96b5dc98", + "content-type": "application/x-amz-json-1.1", + "content-length": "4818", + "date": "Wed, 28 May 2025 15:34:58 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-acentds-org_2025-05-28T17:35:00.760535.json b/backups/CloudFrontWebACL-www-acentds-org_2025-05-28T17:35:00.760535.json new file mode 100644 index 0000000..71b75f6 --- /dev/null +++ b/backups/CloudFrontWebACL-www-acentds-org_2025-05-28T17:35:00.760535.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-acentds-org", + "Id": "5b798b0f-bede-40a0-94d5-a5a5165bfa00", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-acentds-org/5b798b0f-bede-40a0-94d5-a5a5165bfa00", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 8, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 9, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 14, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 15, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-acentds-org:" + }, + "LockToken": "5ad2cc71-e6f8-4c27-b8e6-1bd79703d462", + "ResponseMetadata": { + "RequestId": "c418e4a4-d02d-459f-933f-650b2dc584a1", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "c418e4a4-d02d-459f-933f-650b2dc584a1", + "content-type": "application/x-amz-json-1.1", + "content-length": "4901", + "date": "Wed, 28 May 2025 15:35:00 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-cor-ntd-org_2025-05-28T17:35:02.827275.json b/backups/CloudFrontWebACL-www-cor-ntd-org_2025-05-28T17:35:02.827275.json new file mode 100644 index 0000000..e437aab --- /dev/null +++ b/backups/CloudFrontWebACL-www-cor-ntd-org_2025-05-28T17:35:02.827275.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-cor-ntd-org", + "Id": "6e5ef6e8-2fae-434a-8219-3f4b952391c8", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-cor-ntd-org/6e5ef6e8-2fae-434a-8219-3f4b952391c8", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-cor-ntd-org:" + }, + "LockToken": "ec75eb0e-ddc5-4c38-ab22-dcad354394b2", + "ResponseMetadata": { + "RequestId": "25096261-e4c1-4c14-9635-800a1832e56c", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "25096261-e4c1-4c14-9635-800a1832e56c", + "content-type": "application/x-amz-json-1.1", + "content-length": "4899", + "date": "Wed, 28 May 2025 15:35:02 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-disabilityevidence-org_2025-05-28T17:35:03.881330.json b/backups/CloudFrontWebACL-www-disabilityevidence-org_2025-05-28T17:35:03.881330.json new file mode 100644 index 0000000..f7b823f --- /dev/null +++ b/backups/CloudFrontWebACL-www-disabilityevidence-org_2025-05-28T17:35:03.881330.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-disabilityevidence-org", + "Id": "2a6c454f-5715-4097-94c1-d05b5e9c380c", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-disabilityevidence-org/2a6c454f-5715-4097-94c1-d05b5e9c380c", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-disabilityevidence-org:" + }, + "LockToken": "91519aaa-66ac-4951-8823-6648dbd26c3f", + "ResponseMetadata": { + "RequestId": "81f41b61-cb21-4974-98a0-cad332cfaab5", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "81f41b61-cb21-4974-98a0-cad332cfaab5", + "content-type": "application/x-amz-json-1.1", + "content-length": "4932", + "date": "Wed, 28 May 2025 15:35:03 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-eugms-org_2025-05-28T17:35:04.957613.json b/backups/CloudFrontWebACL-www-eugms-org_2025-05-28T17:35:04.957613.json new file mode 100644 index 0000000..e08849b --- /dev/null +++ b/backups/CloudFrontWebACL-www-eugms-org_2025-05-28T17:35:04.957613.json @@ -0,0 +1,333 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-eugms-org", + "Id": "508a3e60-1a88-449e-8219-e03a92d5fc15", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-eugms-org/508a3e60-1a88-449e-8219-e03a92d5fc15", + "DefaultAction": { + "Allow": {} + }, + "Description": "Updated via script", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPNBlock" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "ScopeDownStatement": { + "NotStatement": { + "Statement": { + "AndStatement": { + "Statements": [ + { + "ByteMatchStatement": { + "SearchString": "AWSALB", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "IncludedCookies": [ + "AWSALB" + ] + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "AWSALBCORS", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "IncludedCookies": [ + "AWSALBCORS" + ] + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "SSESS", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "All": {} + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "STARTS_WITH" + } + } + ] + } + } + } + }, + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleThrottle" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "FacetsHitRateRule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1046, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-eugms-org:" + }, + "LockToken": "a4bd0acf-1150-4862-8a91-a68cb553755e", + "ResponseMetadata": { + "RequestId": "19f4d588-8665-47a4-8978-d8fc267adb99", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "19f4d588-8665-47a4-8978-d8fc267adb99", + "content-type": "application/x-amz-json-1.1", + "content-length": "5762", + "date": "Wed, 28 May 2025 15:35:04 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-globalhep-org_2025-05-28T17:35:05.996399.json b/backups/CloudFrontWebACL-www-globalhep-org_2025-05-28T17:35:05.996399.json new file mode 100644 index 0000000..f787c7c --- /dev/null +++ b/backups/CloudFrontWebACL-www-globalhep-org_2025-05-28T17:35:05.996399.json @@ -0,0 +1,350 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-globalhep-org", + "Id": "82721c2b-8b1e-436d-aaa4-dd14d1237e33", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-globalhep-org/82721c2b-8b1e-436d-aaa4-dd14d1237e33", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "Allow-ajax-crap", + "Priority": 3, + "Statement": { + "OrStatement": { + "Statements": [ + { + "ByteMatchStatement": { + "SearchString": "_wrapper_format=drupal_ajax", + "FieldToMatch": { + "QueryString": {} + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "CONTAINS" + } + }, + { + "ByteMatchStatement": { + "SearchString": "XMLHttpRequest", + "FieldToMatch": { + "SingleHeader": { + "Name": "x-requested-with" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "/api", + "FieldToMatch": { + "UriPath": {} + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "STARTS_WITH" + } + } + ] + } + }, + "Action": { + "Allow": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Allow-ajax-crap" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 4, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 7, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 8, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "Version": "Version_3.1", + "ScopeDownStatement": { + "NotStatement": { + "Statement": { + "RegexMatchStatement": { + "RegexString": ".*(core|themes|sites|modules)/.*", + "FieldToMatch": { + "UriPath": {} + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "LOWERCASE" + } + ] + } + } + } + }, + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "TARGETED", + "EnableMachineLearning": true + } + } + ], + "RuleActionOverrides": [ + { + "Name": "TGT_VolumetricSessionMaximum", + "ActionToUse": { + "Count": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 9, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facates-hit-rate-rule", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facates-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1067, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-globalhep-org:" + }, + "LockToken": "5cf41ea1-6836-4845-8987-6bf78af3bd00", + "ApplicationIntegrationURL": "https://064b3805baf9.edge.sdk.awswaf.com/064b3805baf9/9b7e74c25dbb/", + "ResponseMetadata": { + "RequestId": "d95bcd10-6a8e-4fc9-8da8-31e971912f09", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "d95bcd10-6a8e-4fc9-8da8-31e971912f09", + "content-type": "application/x-amz-json-1.1", + "content-length": "6167", + "date": "Wed, 28 May 2025 15:35:05 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-growglobal-health_2025-05-28T17:35:07.222778.json b/backups/CloudFrontWebACL-www-growglobal-health_2025-05-28T17:35:07.222778.json new file mode 100644 index 0000000..aedeede --- /dev/null +++ b/backups/CloudFrontWebACL-www-growglobal-health_2025-05-28T17:35:07.222778.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-growglobal-health", + "Id": "75e61f15-865e-469e-9b4f-c587f04b8dc7", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-growglobal-health/75e61f15-865e-469e-9b4f-c587f04b8dc7", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 7, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 8, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 9, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 14, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-growglobal-health:" + }, + "LockToken": "9d7235e6-eead-434a-b0ba-50e01b8dcb6e", + "ResponseMetadata": { + "RequestId": "8c30378b-0cbe-44e3-9421-5d50a35a2e0c", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "8c30378b-0cbe-44e3-9421-5d50a35a2e0c", + "content-type": "application/x-amz-json-1.1", + "content-length": "4918", + "date": "Wed, 28 May 2025 15:35:07 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-iddynamics-jhsph-edu_2025-05-28T17:35:08.376780.json b/backups/CloudFrontWebACL-www-iddynamics-jhsph-edu_2025-05-28T17:35:08.376780.json new file mode 100644 index 0000000..6258c8a --- /dev/null +++ b/backups/CloudFrontWebACL-www-iddynamics-jhsph-edu_2025-05-28T17:35:08.376780.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-iddynamics-jhsph-edu", + "Id": "842bea29-a29c-4dfe-9a27-c9f711d43423", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-iddynamics-jhsph-edu/842bea29-a29c-4dfe-9a27-c9f711d43423", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-iddynamics-jhsph-edu:" + }, + "LockToken": "dc1dd1fb-ee4f-4221-af46-a97f2c371171", + "ResponseMetadata": { + "RequestId": "486ba567-21b9-4b2b-b7c5-c0ea1108586d", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "486ba567-21b9-4b2b-b7c5-c0ea1108586d", + "content-type": "application/x-amz-json-1.1", + "content-length": "4926", + "date": "Wed, 28 May 2025 15:35:08 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-irishgerontology-com_2025-05-28T17:35:09.437523.json b/backups/CloudFrontWebACL-www-irishgerontology-com_2025-05-28T17:35:09.437523.json new file mode 100644 index 0000000..4d991cc --- /dev/null +++ b/backups/CloudFrontWebACL-www-irishgerontology-com_2025-05-28T17:35:09.437523.json @@ -0,0 +1,239 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-irishgerontology-com", + "Id": "09250338-4e72-4ad1-994e-c7ecd1270f54", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-irishgerontology-com/09250338-4e72-4ad1-994e-c7ecd1270f54", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1035, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-irishgerontology-com:" + }, + "LockToken": "373fbf07-6904-44b1-899b-be4d99264206", + "ResponseMetadata": { + "RequestId": "b90d9f6f-11d9-4d2a-85cf-f8ec775033bd", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "b90d9f6f-11d9-4d2a-85cf-f8ec775033bd", + "content-type": "application/x-amz-json-1.1", + "content-length": "4566", + "date": "Wed, 28 May 2025 15:35:09 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-kcri-ac-tz_2025-05-28T17:35:10.512776.json b/backups/CloudFrontWebACL-www-kcri-ac-tz_2025-05-28T17:35:10.512776.json new file mode 100644 index 0000000..8351050 --- /dev/null +++ b/backups/CloudFrontWebACL-www-kcri-ac-tz_2025-05-28T17:35:10.512776.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-kcri-ac-tz", + "Id": "26c0a8af-9721-458c-8d39-ee6904c440d4", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-kcri-ac-tz/26c0a8af-9721-458c-8d39-ee6904c440d4", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 8, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 9, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 14, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 15, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-kcri-ac-tz:" + }, + "LockToken": "c8af18e9-88f1-4a2b-9b94-2fa71aae76d7", + "ResponseMetadata": { + "RequestId": "ea543075-84d1-4c6d-9c6b-6b99da9c4d4b", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "ea543075-84d1-4c6d-9c6b-6b99da9c4d4b", + "content-type": "application/x-amz-json-1.1", + "content-length": "4898", + "date": "Wed, 28 May 2025 15:35:10 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-malariavaccine-org_2025-05-28T17:35:11.456132.json b/backups/CloudFrontWebACL-www-malariavaccine-org_2025-05-28T17:35:11.456132.json new file mode 100644 index 0000000..16d1238 --- /dev/null +++ b/backups/CloudFrontWebACL-www-malariavaccine-org_2025-05-28T17:35:11.456132.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-malariavaccine-org", + "Id": "9a000453-26e9-4f8f-bfe1-23f9ebbf0c5c", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-malariavaccine-org/9a000453-26e9-4f8f-bfe1-23f9ebbf0c5c", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-malariavaccine-org:" + }, + "LockToken": "058411b4-0ee5-4b57-8e43-ce824fdc5ad8", + "ResponseMetadata": { + "RequestId": "fe252dad-5477-4e93-91c7-76d76508b959", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "fe252dad-5477-4e93-91c7-76d76508b959", + "content-type": "application/x-amz-json-1.1", + "content-length": "4920", + "date": "Wed, 28 May 2025 15:35:11 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-mantaraymedia-co-uk_2025-05-28T17:35:13.323682.json b/backups/CloudFrontWebACL-www-mantaraymedia-co-uk_2025-05-28T17:35:13.323682.json new file mode 100644 index 0000000..28746ab --- /dev/null +++ b/backups/CloudFrontWebACL-www-mantaraymedia-co-uk_2025-05-28T17:35:13.323682.json @@ -0,0 +1,358 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-mantaraymedia-co-uk", + "Id": "c6d0a6aa-5ddc-4bbe-8c1d-d43c0177b558", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-mantaraymedia-co-uk/c6d0a6aa-5ddc-4bbe-8c1d-d43c0177b558", + "DefaultAction": { + "Allow": {} + }, + "Description": "Updated via script", + "Rules": [ + { + "Name": "AllowLoggedIn", + "Priority": 0, + "Statement": { + "ByteMatchStatement": { + "SearchString": "SSESS", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "All": {} + }, + "MatchScope": "KEY", + "OversizeHandling": "CONTINUE" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "STARTS_WITH" + } + }, + "Action": { + "Count": { + "CustomRequestHandling": { + "InsertHeaders": [ + { + "Name": "mrm-logged-in", + "Value": "1" + } + ] + } + } + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowLoggedIn" + } + }, + { + "Name": "AllowRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "ScopeDownStatement": { + "NotStatement": { + "Statement": { + "AndStatement": { + "Statements": [ + { + "ByteMatchStatement": { + "SearchString": "AWSALB", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "IncludedCookies": [ + "AWSALB" + ] + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "AWSALBCORS", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "IncludedCookies": [ + "AWSALBCORS" + ] + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "SESS", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "All": {} + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "STARTS_WITH" + } + } + ] + } + } + } + }, + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 8, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 9, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "Google-throttle", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 14, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 15, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1045, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-mantaraymedia-co-uk:" + }, + "LockToken": "2fb59381-2e4e-4b66-9ccf-facc58a4deda", + "ResponseMetadata": { + "RequestId": "9812020a-f0a3-40ba-9124-ec684c9e6fcc", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "9812020a-f0a3-40ba-9124-ec684c9e6fcc", + "content-type": "application/x-amz-json-1.1", + "content-length": "5954", + "date": "Wed, 28 May 2025 15:35:13 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-mhinnovation-net_2025-05-28T17:35:14.425457.json b/backups/CloudFrontWebACL-www-mhinnovation-net_2025-05-28T17:35:14.425457.json new file mode 100644 index 0000000..6c0fcc9 --- /dev/null +++ b/backups/CloudFrontWebACL-www-mhinnovation-net_2025-05-28T17:35:14.425457.json @@ -0,0 +1,257 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-mhinnovation-net", + "Id": "6578ef51-9d32-4128-9e77-8333e9e0c232", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-mhinnovation-net/6578ef51-9d32-4128-9e77-8333e9e0c232", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 3, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 7, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "Version": "Version_3.1", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 9, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 14, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-mhinnovation-net:" + }, + "LockToken": "3c583ebb-9f6d-44d9-bdb8-86badd7f25e6", + "ResponseMetadata": { + "RequestId": "1ba24810-2fdb-4a6d-9493-ad381024aa19", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "1ba24810-2fdb-4a6d-9493-ad381024aa19", + "content-type": "application/x-amz-json-1.1", + "content-length": "4938", + "date": "Wed, 28 May 2025 15:35:14 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-mhpssmsp-org_2025-05-28T17:35:15.448075.json b/backups/CloudFrontWebACL-www-mhpssmsp-org_2025-05-28T17:35:15.448075.json new file mode 100644 index 0000000..96a6a3d --- /dev/null +++ b/backups/CloudFrontWebACL-www-mhpssmsp-org_2025-05-28T17:35:15.448075.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-mhpssmsp-org", + "Id": "d7962a99-ae8c-4c65-a459-34c3719c3a9b", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-mhpssmsp-org/d7962a99-ae8c-4c65-a459-34c3719c3a9b", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1030, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-mhpssmsp-org:" + }, + "LockToken": "c74e23b2-a8f3-40b7-a0a3-0b8cc14f118b", + "ResponseMetadata": { + "RequestId": "c51e9e36-8e77-4feb-8e36-faa37c9cefd6", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "c51e9e36-8e77-4feb-8e36-faa37c9cefd6", + "content-type": "application/x-amz-json-1.1", + "content-length": "4911", + "date": "Wed, 28 May 2025 15:35:15 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-ntdtoolbox-org_2025-05-28T17:35:16.573707.json b/backups/CloudFrontWebACL-www-ntdtoolbox-org_2025-05-28T17:35:16.573707.json new file mode 100644 index 0000000..5a66957 --- /dev/null +++ b/backups/CloudFrontWebACL-www-ntdtoolbox-org_2025-05-28T17:35:16.573707.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-ntdtoolbox-org", + "Id": "18a04280-dd72-43a0-b0a1-07a5346f9bc2", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-ntdtoolbox-org/18a04280-dd72-43a0-b0a1-07a5346f9bc2", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 8, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 9, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 14, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 15, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-ntdtoolbox-org:" + }, + "LockToken": "5afe7362-7799-4faa-8b64-e8e84c66edec", + "ResponseMetadata": { + "RequestId": "062505bc-a339-4a94-ae99-546c5f4d823b", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "062505bc-a339-4a94-ae99-546c5f4d823b", + "content-type": "application/x-amz-json-1.1", + "content-length": "4910", + "date": "Wed, 28 May 2025 15:35:16 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-pdu-gen-cam-ac-uk_2025-05-28T17:35:17.616846.json b/backups/CloudFrontWebACL-www-pdu-gen-cam-ac-uk_2025-05-28T17:35:17.616846.json new file mode 100644 index 0000000..e703dd6 --- /dev/null +++ b/backups/CloudFrontWebACL-www-pdu-gen-cam-ac-uk_2025-05-28T17:35:17.616846.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-pdu-gen-cam-ac-uk", + "Id": "817f65e8-52ff-4920-92da-b8ffb91f1e25", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-pdu-gen-cam-ac-uk/817f65e8-52ff-4920-92da-b8ffb91f1e25", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-pdu-gen-cam-ac-uk:" + }, + "LockToken": "4982ef09-88a1-4f3b-b7be-99e7a5003a52", + "ResponseMetadata": { + "RequestId": "af39b9ee-4d7e-4c48-b1eb-68099a335930", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "af39b9ee-4d7e-4c48-b1eb-68099a335930", + "content-type": "application/x-amz-json-1.1", + "content-length": "4917", + "date": "Wed, 28 May 2025 15:35:17 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-pvctu-pitt-edu_2025-05-28T17:35:18.792967.json b/backups/CloudFrontWebACL-www-pvctu-pitt-edu_2025-05-28T17:35:18.792967.json new file mode 100644 index 0000000..d859e7b --- /dev/null +++ b/backups/CloudFrontWebACL-www-pvctu-pitt-edu_2025-05-28T17:35:18.792967.json @@ -0,0 +1,239 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-pvctu-pitt-edu", + "Id": "db4e57d2-f1f6-4f47-b1d9-93d88e3bb160", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-pvctu-pitt-edu/db4e57d2-f1f6-4f47-b1d9-93d88e3bb160", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 2, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 6, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "Google-throttle", + "Priority": 9, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1037, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-pvctu-pitt-edu:" + }, + "LockToken": "46d239a9-2570-4ef7-ab0b-b9e6e584a3a7", + "ResponseMetadata": { + "RequestId": "cee15f78-3351-4ea5-9cdd-568f487ce488", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "cee15f78-3351-4ea5-9cdd-568f487ce488", + "content-type": "application/x-amz-json-1.1", + "content-length": "4544", + "date": "Wed, 28 May 2025 15:35:18 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-raab-world_2025-05-28T17:35:20.121455.json b/backups/CloudFrontWebACL-www-raab-world_2025-05-28T17:35:20.121455.json new file mode 100644 index 0000000..fe82347 --- /dev/null +++ b/backups/CloudFrontWebACL-www-raab-world_2025-05-28T17:35:20.121455.json @@ -0,0 +1,308 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-raab-world", + "Id": "fd9a4672-8cbc-478a-ab6b-19cec2bfcf5c", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-raab-world/fd9a4672-8cbc-478a-ab6b-19cec2bfcf5c", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "AllowPEEK", + "Priority": 1, + "Statement": { + "OrStatement": { + "Statements": [ + { + "ByteMatchStatement": { + "SearchString": "MRM-Peek", + "FieldToMatch": { + "SingleHeader": { + "Name": "x-origin" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "RAAB importer", + "FieldToMatch": { + "SingleHeader": { + "Name": "user-agent" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + } + ] + } + }, + "Action": { + "Allow": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowPEEK" + } + }, + { + "Name": "BlockRuleList", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 3, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 7, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 9, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1044, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-raab-world:" + }, + "LockToken": "ebdd9e00-9609-44b6-b009-713aae898e89", + "ResponseMetadata": { + "RequestId": "181dbec7-a07f-4e55-8b06-e908d744eae9", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "181dbec7-a07f-4e55-8b06-e908d744eae9", + "content-type": "application/x-amz-json-1.1", + "content-length": "5501", + "date": "Wed, 28 May 2025 15:35:20 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-severemalaria-org_2025-05-28T17:35:21.274614.json b/backups/CloudFrontWebACL-www-severemalaria-org_2025-05-28T17:35:21.274614.json new file mode 100644 index 0000000..ba43691 --- /dev/null +++ b/backups/CloudFrontWebACL-www-severemalaria-org_2025-05-28T17:35:21.274614.json @@ -0,0 +1,333 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-severemalaria-org", + "Id": "4a7adbb4-3a33-4007-be01-705376a89747", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-severemalaria-org/4a7adbb4-3a33-4007-be01-705376a89747", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "ScopeDownStatement": { + "NotStatement": { + "Statement": { + "AndStatement": { + "Statements": [ + { + "ByteMatchStatement": { + "SearchString": "AWSALB", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "IncludedCookies": [ + "AWSALB" + ] + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "AWSALBCORS", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "IncludedCookies": [ + "AWSALBCORS" + ] + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "SSESS", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "All": {} + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "STARTS_WITH" + } + } + ] + } + } + } + }, + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "Google-throttle", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1046, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-severemalaria-org:" + }, + "LockToken": "d5162495-e200-46cc-97be-fada06ccc252", + "ResponseMetadata": { + "RequestId": "359caf84-641a-401d-8725-8f49a536c3f0", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "359caf84-641a-401d-8725-8f49a536c3f0", + "content-type": "application/x-amz-json-1.1", + "content-length": "5782", + "date": "Wed, 28 May 2025 15:35:21 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-smc-alliance-org_2025-05-28T17:35:22.312662.json b/backups/CloudFrontWebACL-www-smc-alliance-org_2025-05-28T17:35:22.312662.json new file mode 100644 index 0000000..45c2f1f --- /dev/null +++ b/backups/CloudFrontWebACL-www-smc-alliance-org_2025-05-28T17:35:22.312662.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-smc-alliance-org", + "Id": "ea7b90e5-ce68-47eb-b03b-2e8a1e84a189", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-smc-alliance-org/ea7b90e5-ce68-47eb-b03b-2e8a1e84a189", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-smc-alliance-org:" + }, + "LockToken": "2a03f41b-cc53-47e9-b384-45990fc19687", + "ResponseMetadata": { + "RequestId": "07abafdc-fa94-4f75-8291-3eba7b696d66", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "07abafdc-fa94-4f75-8291-3eba7b696d66", + "content-type": "application/x-amz-json-1.1", + "content-length": "4904", + "date": "Wed, 28 May 2025 15:35:22 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-tephinet-org_2025-05-28T17:35:23.331917.json b/backups/CloudFrontWebACL-www-tephinet-org_2025-05-28T17:35:23.331917.json new file mode 100644 index 0000000..cc45f38 --- /dev/null +++ b/backups/CloudFrontWebACL-www-tephinet-org_2025-05-28T17:35:23.331917.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-tephinet-org", + "Id": "a868215f-1deb-4cc8-89c3-fa84df102885", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-tephinet-org/a868215f-1deb-4cc8-89c3-fa84df102885", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-tephinet-org:" + }, + "LockToken": "dc09116e-d027-4262-a2fe-49fce5665d7a", + "ResponseMetadata": { + "RequestId": "2f15d219-82be-4224-8856-53c205162dac", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "2f15d219-82be-4224-8856-53c205162dac", + "content-type": "application/x-amz-json-1.1", + "content-length": "4892", + "date": "Wed, 28 May 2025 15:35:23 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-vacamr-org_2025-05-28T17:35:24.377759.json b/backups/CloudFrontWebACL-www-vacamr-org_2025-05-28T17:35:24.377759.json new file mode 100644 index 0000000..96c5223 --- /dev/null +++ b/backups/CloudFrontWebACL-www-vacamr-org_2025-05-28T17:35:24.377759.json @@ -0,0 +1,241 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-vacamr-org", + "Id": "d7ba616e-c608-4131-908f-e21e98927078", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-vacamr-org/d7ba616e-c608-4131-908f-e21e98927078", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 3, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 4, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 5, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 7, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 8, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 9, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Google-throttle" + } + }, + { + "Name": "Facets-hit-rate-rule", + "Priority": 14, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate-rule" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 15, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-vacamr-org:" + }, + "LockToken": "1e2eaa56-5b8e-43e0-a42a-2f055933f397", + "ResponseMetadata": { + "RequestId": "8c965ca2-a766-473d-abd6-c66913c32e9c", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "8c965ca2-a766-473d-abd6-c66913c32e9c", + "content-type": "application/x-amz-json-1.1", + "content-length": "4716", + "date": "Wed, 28 May 2025 15:35:24 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CloudFrontWebACL-www-vivaxmalaria-org_2025-05-28T17:35:25.496789.json b/backups/CloudFrontWebACL-www-vivaxmalaria-org_2025-05-28T17:35:25.496789.json new file mode 100644 index 0000000..ffabc4e --- /dev/null +++ b/backups/CloudFrontWebACL-www-vivaxmalaria-org_2025-05-28T17:35:25.496789.json @@ -0,0 +1,256 @@ +{ + "WebACL": { + "Name": "CloudFrontWebACL-www-vivaxmalaria-org", + "Id": "7bfdb750-1977-4c1e-a880-0d72e2a49999", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CloudFrontWebACL-www-vivaxmalaria-org/7bfdb750-1977-4c1e-a880-0d72e2a49999", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "BlockRuleList", + "Priority": 1, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 3, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 7, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "Google-throttle", + "Priority": 10, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "Facets-hit-rate", + "Priority": 11, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CloudFrontWebACLMetric" + }, + "Capacity": 1040, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CloudFrontWebACL-www-vivaxmalaria-org:" + }, + "LockToken": "0c920b7d-e013-4078-9756-b6cad93f96d7", + "ResponseMetadata": { + "RequestId": "c0b1c85a-95e1-4032-9c08-06de8f4f52a7", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "c0b1c85a-95e1-4032-9c08-06de8f4f52a7", + "content-type": "application/x-amz-json-1.1", + "content-length": "4904", + "date": "Wed, 28 May 2025 15:35:25 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CreatedByCloudFront-1de2bb76_2025-05-28T17:35:26.580148.json b/backups/CreatedByCloudFront-1de2bb76_2025-05-28T17:35:26.580148.json new file mode 100644 index 0000000..ad18267 --- /dev/null +++ b/backups/CreatedByCloudFront-1de2bb76_2025-05-28T17:35:26.580148.json @@ -0,0 +1,104 @@ +{ + "WebACL": { + "Name": "CreatedByCloudFront-1de2bb76", + "Id": "e5e983df-8fbd-455d-8eaf-80b6c25394e1", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CreatedByCloudFront-1de2bb76/e5e983df-8fbd-455d-8eaf-80b6c25394e1", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 0, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 1, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 2, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "Facets", + "Priority": 3, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CreatedByCloudFront-1de2bb76" + }, + "Capacity": 930, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CreatedByCloudFront-1de2bb76:" + }, + "LockToken": "b099888a-e259-4a32-aab7-6f1aead6fd19", + "ResponseMetadata": { + "RequestId": "c3ee9732-bd5b-4a60-b0a1-5421472edbd3", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "c3ee9732-bd5b-4a60-b0a1-5421472edbd3", + "content-type": "application/x-amz-json-1.1", + "content-length": "1950", + "date": "Wed, 28 May 2025 15:35:26 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/backups/CreatedByCloudFront-fa908c59-5335-4df9-82f2-36b1da7b36c5_2025-05-28T17:35:27.460046.json b/backups/CreatedByCloudFront-fa908c59-5335-4df9-82f2-36b1da7b36c5_2025-05-28T17:35:27.460046.json new file mode 100644 index 0000000..e4126b5 --- /dev/null +++ b/backups/CreatedByCloudFront-fa908c59-5335-4df9-82f2-36b1da7b36c5_2025-05-28T17:35:27.460046.json @@ -0,0 +1,348 @@ +{ + "WebACL": { + "Name": "CreatedByCloudFront-fa908c59-5335-4df9-82f2-36b1da7b36c5", + "Id": "e03b6d69-c6c1-4353-8243-89a59cbcde49", + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/webacl/CreatedByCloudFront-fa908c59-5335-4df9-82f2-36b1da7b36c5/e03b6d69-c6c1-4353-8243-89a59cbcde49", + "DefaultAction": { + "Allow": {} + }, + "Description": "", + "Rules": [ + { + "Name": "AllowRuleList", + "Priority": 0, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allow-rule-list/2a54850e-60cd-4d47-9cf8-205ad60300bb" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowRuleList" + } + }, + { + "Name": "MMV-intranet", + "Priority": 1, + "Statement": { + "OrStatement": { + "Statements": [ + { + "IPSetReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/ipset/MMV-intranet/6e3de466-904d-4d71-afcc-90960d7e547b" + } + }, + { + "ByteMatchStatement": { + "SearchString": "PowellSoftware", + "FieldToMatch": { + "SingleHeader": { + "Name": "user-agent" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "EXACTLY" + } + } + ] + } + }, + "Action": { + "Allow": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "MMV-intranet" + } + }, + { + "Name": "BlockRuleList", + "Priority": 2, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-rule-list/dade2d30-fe28-4205-868f-de9c65de9ef7" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockRuleList" + } + }, + { + "Name": "VPN-list-Block", + "Priority": 3, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/VPN-block/0a497e7d-6ce8-4ec2-851d-9136db401412" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "VPN-list-Block" + } + }, + { + "Name": "AWS-AWSManagedRulesAmazonIpReputationList", + "Priority": 4, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesAmazonIpReputationList" + } + }, + "OverrideAction": { + "Count": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesAmazonIpReputationList" + } + }, + { + "Name": "AWS-AWSManagedRulesCommonRuleSet", + "Priority": 5, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesCommonRuleSet", + "RuleActionOverrides": [ + { + "Name": "SizeRestrictions_BODY", + "ActionToUse": { + "Allow": {} + } + } + ] + } + }, + "OverrideAction": { + "Count": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesCommonRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesKnownBadInputsRuleSet", + "Priority": 6, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesKnownBadInputsRuleSet" + } + }, + "OverrideAction": { + "Count": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesKnownBadInputsRuleSet" + } + }, + { + "Name": "AWS-AWSManagedRulesBotControlRuleSet", + "Priority": 7, + "Statement": { + "ManagedRuleGroupStatement": { + "VendorName": "AWS", + "Name": "AWSManagedRulesBotControlRuleSet", + "ManagedRuleGroupConfigs": [ + { + "AWSManagedRulesBotControlRuleSet": { + "InspectionLevel": "COMMON" + } + } + ] + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AWS-AWSManagedRulesBotControlRuleSet" + } + }, + { + "Name": "BlockBotsRule", + "Priority": 8, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-bots-rule/65ff9e46-ec26-4067-95dd-ad237bbf3f67" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "BlockBotsRule" + } + }, + { + "Name": "AllowStaticFilesRule", + "Priority": 9, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Allows-static-files-rule/c52db705-9260-4443-8a28-7c806e592791" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AllowStaticFilesRule" + } + }, + { + "Name": "AI", + "Priority": 11, + "Statement": { + "OrStatement": { + "Statements": [ + { + "ByteMatchStatement": { + "SearchString": "ChatGPT", + "FieldToMatch": { + "SingleHeader": { + "Name": "user-agent" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "CONTAINS" + } + }, + { + "ByteMatchStatement": { + "SearchString": "Deepseek", + "FieldToMatch": { + "SingleHeader": { + "Name": "user-agent" + } + }, + "TextTransformations": [ + { + "Priority": 0, + "Type": "NONE" + } + ], + "PositionalConstraint": "CONTAINS" + } + } + ] + } + }, + "Action": { + "Block": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "AI" + } + }, + { + "Name": "Facets-hit-rate", + "Priority": 12, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Facets-hit-rate-rule/9d88dd3e-9acb-4110-9eea-c90ce8b98f98" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "Facets-hit-rate" + } + }, + { + "Name": "Google-throttle", + "Priority": 13, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Google-throttle/a69399f5-8ea7-4373-9c1c-f2abf81e65fc" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "GoogleRuleGroup" + } + }, + { + "Name": "CountryRateLimit", + "Priority": 14, + "Statement": { + "RuleGroupReferenceStatement": { + "ARN": "arn:aws:wafv2:us-east-1:691639156536:global/rulegroup/Block-country-by-rate/a07e6a3d-b69c-449b-90b8-9c485175fede" + } + }, + "OverrideAction": { + "None": {} + }, + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CountryRateLimit" + } + } + ], + "VisibilityConfig": { + "SampledRequestsEnabled": true, + "CloudWatchMetricsEnabled": true, + "MetricName": "CreatedByCloudFront-fa908c59-5335-4df9-82f2-36b1da7b36c5" + }, + "Capacity": 1063, + "ManagedByFirewallManager": false, + "LabelNamespace": "awswaf:691639156536:webacl:CreatedByCloudFront-fa908c59-5335-4df9-82f2-36b1da7b36c5:" + }, + "LockToken": "9083979c-d939-4c5a-bab8-64eebef5ff00", + "ResponseMetadata": { + "RequestId": "97c953d2-bdbc-4d29-87e3-f301e6ba53f4", + "HTTPStatusCode": 200, + "HTTPHeaders": { + "x-amzn-requestid": "97c953d2-bdbc-4d29-87e3-f301e6ba53f4", + "content-type": "application/x-amz-json-1.1", + "content-length": "6154", + "date": "Wed, 28 May 2025 15:35:27 GMT" + }, + "RetryAttempts": 0 + } +} \ No newline at end of file diff --git a/create-cidr-list-from-ips.py b/create-cidr-list-from-ips.py new file mode 100644 index 0000000..38419ab --- /dev/null +++ b/create-cidr-list-from-ips.py @@ -0,0 +1,27 @@ +import requests +import ipaddress + +# Step 1: Retrieve the IP list +url = 'https://raw.githubusercontent.com/az0/vpn_ip/refs/heads/main/data/output/ip.txt' +response = requests.get(url) +data = response.text + +# Step 2: Parse and clean the data +ips = [] +for line in data.splitlines(): + if line.strip() and not line.startswith('#'): + ip = line.split()[0] + try: + # Validate IP address + ipaddress.ip_address(ip) + ips.append(ip) + except ValueError: + continue + +# Step 3: Convert IPs to CIDR blocks +ip_objects = sorted(ipaddress.ip_address(ip) for ip in ips) +cidr_blocks = list(ipaddress.collapse_addresses(ip_objects)) + +# Step 4: Output the CIDR blocks +for cidr in cidr_blocks: + print(cidr) diff --git a/ip-set.txt b/ip-set.txt new file mode 100644 index 0000000..7f61a4d --- /dev/null +++ b/ip-set.txt @@ -0,0 +1,13031 @@ +1.2.3.4/32 +1.220.90.178/31 +1.220.90.180/32 +2.56.190.2/32 +2.56.190.6/32 +2.56.190.8/32 +2.56.190.12/32 +2.56.190.14/32 +2.56.190.18/32 +2.56.190.20/32 +2.56.190.26/32 +2.56.190.32/32 +2.56.190.38/32 +2.56.190.45/32 +2.56.190.52/32 +2.56.190.59/32 +2.56.190.66/32 +2.56.190.73/32 +2.56.190.80/32 +2.56.190.87/32 +2.56.190.94/32 +2.56.190.101/32 +2.56.190.108/32 +2.56.190.115/32 +2.56.190.122/32 +2.56.190.129/32 +2.56.190.136/32 +2.56.190.143/32 +2.56.190.150/32 +2.56.190.157/32 +2.56.190.164/32 +2.56.190.171/32 +2.56.190.178/32 +2.56.190.185/32 +2.56.190.192/32 +2.56.190.199/32 +2.56.190.206/32 +2.56.190.213/32 +2.56.190.220/32 +2.56.190.227/32 +2.56.190.234/32 +2.56.190.241/32 +2.56.190.248/32 +2.56.191.2/32 +2.56.191.4/32 +2.56.191.6/32 +2.56.191.8/32 +2.56.191.10/32 +2.56.191.12/32 +2.56.191.14/32 +2.56.191.16/32 +2.56.191.18/32 +2.56.191.20/32 +2.58.44.242/32 +2.58.46.19/32 +2.58.46.27/32 +2.58.46.235/32 +2.58.241.66/31 +2.58.241.68/30 +2.58.241.72/31 +2.58.241.74/32 +3.15.150.46/32 +3.76.250.140/32 +3.85.72.7/32 +3.89.0.0/32 +3.89.115.189/32 +3.91.199.77/32 +3.128.205.94/32 +3.169.182.15/32 +3.169.182.50/32 +3.169.182.115/32 +3.169.182.120/32 +3.210.106.128/32 +3.211.186.177/32 +3.211.192.152/32 +3.212.5.85/32 +3.215.43.189/32 +3.215.198.168/32 +3.216.48.242/32 +3.216.157.50/32 +3.216.165.97/32 +3.217.12.237/32 +3.217.73.212/32 +3.217.131.101/32 +3.219.9.96/32 +3.226.172.116/32 +3.227.77.159/32 +3.228.167.39/32 +5.8.16.163/32 +5.22.208.54/32 +5.22.208.166/32 +5.22.210.169/32 +5.22.210.213/32 +5.22.211.164/32 +5.34.182.223/32 +5.101.136.147/32 +5.101.137.195/32 +5.101.138.115/32 +5.101.138.227/32 +5.101.143.115/32 +5.101.168.131/32 +5.101.171.163/32 +5.101.171.195/32 +5.101.171.227/32 +5.101.174.195/32 +5.133.12.12/31 +5.149.250.222/32 +5.149.253.57/32 +5.149.255.178/32 +5.154.174.18/32 +5.154.174.81/32 +5.154.174.138/32 +5.154.174.161/32 +5.154.174.194/32 +5.157.13.2/31 +5.157.13.4/31 +5.157.13.6/32 +5.157.13.146/31 +5.157.13.148/32 +5.172.194.122/32 +5.172.194.182/32 +5.172.194.230/32 +5.172.194.251/32 +5.172.196.36/32 +5.172.196.41/32 +5.172.196.63/32 +5.172.196.231/32 +5.172.196.232/31 +5.172.196.234/32 +5.180.25.13/32 +5.180.25.193/32 +5.180.25.194/32 +5.180.62.3/32 +5.180.62.6/32 +5.180.62.9/32 +5.180.62.12/32 +5.180.62.15/32 +5.180.62.18/32 +5.180.62.21/32 +5.180.62.24/32 +5.180.62.27/32 +5.180.62.30/32 +5.180.62.33/32 +5.180.62.36/32 +5.180.62.39/32 +5.180.62.42/32 +5.180.62.45/32 +5.180.62.48/32 +5.180.62.51/32 +5.180.62.54/32 +5.180.62.57/32 +5.180.62.60/32 +5.180.62.63/32 +5.180.62.66/32 +5.180.62.69/32 +5.180.62.72/32 +5.180.62.75/32 +5.180.62.78/32 +5.180.62.81/32 +5.180.62.84/32 +5.180.62.87/32 +5.180.62.90/32 +5.180.62.93/32 +5.180.62.96/32 +5.180.62.99/32 +5.180.62.102/32 +5.180.62.105/32 +5.180.62.108/32 +5.180.62.111/32 +5.180.62.114/32 +5.180.62.117/32 +5.180.62.120/32 +5.180.62.123/32 +5.180.62.126/32 +5.180.62.129/32 +5.180.62.132/32 +5.180.62.135/32 +5.180.62.138/32 +5.180.62.141/32 +5.180.62.144/32 +5.180.62.147/32 +5.180.62.150/32 +5.180.62.153/32 +5.180.62.156/32 +5.180.62.159/32 +5.180.62.164/32 +5.180.62.169/32 +5.180.62.173/32 +5.180.62.174/31 +5.180.62.176/30 +5.180.62.180/31 +5.180.62.182/32 +5.181.157.8/30 +5.181.157.12/31 +5.181.157.112/31 +5.181.233.43/32 +5.181.233.59/32 +5.181.233.99/32 +5.181.233.107/32 +5.181.233.115/32 +5.181.234.75/32 +5.181.234.83/32 +5.181.234.91/32 +5.181.234.99/32 +5.181.234.107/32 +5.181.234.123/32 +5.181.234.163/32 +5.181.234.171/32 +5.181.234.179/32 +5.181.234.187/32 +5.181.234.195/32 +5.181.234.203/32 +5.181.234.211/32 +5.181.234.219/32 +5.181.234.227/32 +5.181.235.19/32 +5.181.235.35/32 +5.181.235.43/32 +5.181.235.51/32 +5.181.235.67/32 +5.181.235.68/32 +5.181.235.83/32 +5.181.235.107/32 +5.181.235.115/32 +5.182.16.182/32 +5.182.16.193/32 +5.182.16.204/32 +5.182.16.216/32 +5.182.16.228/32 +5.182.16.237/32 +5.182.16.248/32 +5.182.32.100/32 +5.182.32.102/32 +5.182.32.104/32 +5.182.32.106/32 +5.182.32.108/32 +5.182.32.110/32 +5.182.32.112/32 +5.182.32.114/32 +5.182.32.116/32 +5.182.32.118/32 +5.182.32.124/32 +5.182.32.126/32 +5.182.32.129/32 +5.182.32.131/32 +5.226.142.3/32 +5.252.69.2/31 +5.252.69.4/32 +5.253.115.2/32 +5.253.115.14/32 +5.253.115.26/32 +5.253.115.38/32 +5.253.115.50/32 +5.253.115.62/32 +5.253.115.74/32 +5.253.115.86/32 +5.253.204.162/31 +5.253.204.164/30 +5.253.204.168/29 +5.253.204.176/29 +5.253.204.184/30 +5.253.204.188/31 +5.253.204.190/32 +5.253.204.194/31 +5.253.204.196/30 +5.253.204.200/30 +5.253.204.204/31 +5.253.204.206/32 +5.253.205.3/32 +5.253.206.51/32 +5.253.206.59/32 +5.253.206.83/32 +5.253.206.91/32 +5.253.206.139/32 +5.253.206.147/32 +5.253.206.155/32 +5.253.206.163/32 +5.253.206.171/32 +5.253.207.19/32 +5.253.207.195/32 +5.253.207.203/32 +5.253.207.211/32 +5.253.207.219/32 +5.254.26.20/32 +5.254.70.217/32 +5.254.112.120/32 +5.254.112.194/32 +8.9.31.211/32 +12.187.175.7/32 +12.202.180.10/32 +12.202.180.118/32 +12.221.146.147/32 +13.127.14.8/32 +13.239.63.78/32 +13.244.114.234/32 +13.248.245.245/32 +18.166.62.109/32 +18.210.234.246/32 +18.212.186.158/32 +18.239.196.3/32 +18.239.196.62/32 +18.239.196.80/32 +18.239.196.214/32 +23.21.224.254/32 +23.22.252.240/32 +23.26.220.3/32 +23.26.220.6/31 +23.26.220.8/31 +23.26.220.11/32 +23.26.220.12/30 +23.26.220.17/32 +23.26.220.19/32 +23.26.220.21/32 +23.26.220.22/32 +23.26.220.24/31 +23.26.220.27/32 +23.26.220.29/32 +23.26.220.30/32 +23.81.64.130/32 +23.81.64.209/32 +23.81.64.210/32 +23.92.127.34/31 +23.92.127.36/32 +23.94.74.98/31 +23.94.74.100/32 +23.95.42.210/31 +23.95.42.212/32 +23.105.171.93/32 +23.106.56.2/32 +23.106.56.11/32 +23.106.56.12/31 +23.106.56.14/32 +23.106.56.19/32 +23.106.56.22/32 +23.106.56.35/32 +23.106.56.36/31 +23.106.56.38/32 +23.106.56.43/32 +23.106.56.51/32 +23.106.56.52/31 +23.106.56.54/32 +23.106.248.251/32 +23.106.249.34/31 +23.106.249.36/31 +23.106.249.39/32 +23.106.249.52/31 +23.106.249.54/32 +23.108.96.79/32 +23.133.64.162/31 +23.133.64.164/32 +23.146.243.194/31 +23.146.243.210/31 +23.148.145.199/32 +23.148.146.178/31 +23.148.146.210/31 +23.154.160.3/32 +23.154.160.5/32 +23.154.160.6/32 +23.154.160.8/32 +23.154.160.12/32 +23.154.160.17/32 +23.154.160.18/31 +23.154.160.20/32 +23.154.160.25/32 +23.154.160.26/31 +23.154.160.36/32 +23.161.192.144/32 +23.161.192.160/32 +23.161.192.176/32 +23.161.192.192/32 +23.161.192.208/32 +23.161.192.224/32 +23.161.192.240/32 +23.171.240.155/32 +23.191.80.2/31 +23.191.80.4/32 +23.191.80.98/31 +23.191.80.100/32 +23.226.133.66/32 +23.229.82.129/32 +23.229.82.130/32 +23.229.82.161/32 +23.229.82.162/32 +23.229.82.225/32 +23.229.82.226/32 +23.236.161.50/32 +23.236.161.210/32 +24.144.104.12/32 +24.199.96.107/32 +24.199.97.139/32 +24.199.97.146/32 +24.199.97.152/32 +24.199.97.158/32 +24.199.97.164/32 +24.199.97.178/32 +24.199.97.180/32 +24.199.98.173/32 +24.199.98.199/32 +24.199.102.179/32 +24.199.104.181/32 +24.199.106.240/32 +27.131.134.20/32 +27.131.134.67/32 +27.131.170.99/32 +27.131.170.163/32 +27.255.65.11/32 +31.7.62.50/31 +31.7.62.52/32 +31.13.188.27/32 +31.13.188.99/32 +31.13.188.107/32 +31.13.188.131/32 +31.13.188.139/32 +31.13.188.147/32 +31.13.188.155/32 +31.13.189.83/32 +31.13.189.123/32 +31.13.189.226/31 +31.13.189.228/30 +31.13.189.232/30 +31.13.189.236/31 +31.13.189.238/32 +31.13.189.242/31 +31.13.189.244/30 +31.13.189.248/30 +31.13.189.252/31 +31.13.189.254/32 +31.13.191.66/31 +31.13.191.68/30 +31.13.191.72/29 +31.13.191.80/29 +31.13.191.88/32 +31.13.191.90/31 +31.13.191.92/31 +31.13.191.94/32 +31.13.191.98/31 +31.13.191.100/30 +31.13.191.104/29 +31.13.191.112/29 +31.13.191.120/30 +31.13.191.124/31 +31.13.191.126/32 +31.13.191.131/32 +31.13.191.139/32 +31.13.191.147/32 +31.13.191.155/32 +31.13.191.163/32 +31.13.191.168/32 +31.13.191.173/32 +31.13.191.178/32 +31.14.252.2/32 +31.132.5.19/32 +31.132.6.3/32 +31.132.6.11/32 +31.132.7.3/32 +31.168.166.160/31 +31.171.152.99/32 +31.171.152.100/31 +31.171.152.102/32 +31.171.152.105/32 +31.171.152.107/32 +31.171.152.108/31 +31.171.152.110/32 +31.171.152.132/31 +31.171.152.135/32 +31.171.152.137/32 +31.171.152.138/32 +31.171.152.140/32 +31.171.153.98/31 +31.171.153.100/30 +31.171.153.104/30 +31.171.153.108/31 +31.171.155.3/32 +31.171.155.4/31 +31.171.155.7/32 +31.171.155.8/31 +31.171.155.10/32 +31.171.155.12/31 +31.171.155.14/32 +31.171.155.210/31 +31.171.155.212/32 +31.187.69.1/32 +31.187.69.12/32 +31.187.69.23/32 +31.187.69.34/32 +31.187.69.45/32 +31.187.69.56/32 +31.187.69.67/32 +31.187.69.78/32 +31.187.69.89/32 +31.187.69.100/32 +31.210.91.240/32 +31.220.5.141/32 +31.220.7.88/32 +31.220.7.123/32 +31.220.15.70/32 +31.220.43.80/32 +31.222.254.100/32 +31.222.254.102/32 +31.222.254.104/32 +31.222.254.106/32 +31.222.254.108/32 +31.222.254.110/32 +31.222.254.112/32 +31.222.254.114/32 +31.222.254.116/32 +31.222.254.118/32 +31.222.254.120/32 +31.222.254.122/32 +31.222.254.124/32 +31.222.254.126/32 +31.222.254.128/32 +31.222.254.130/32 +31.222.254.132/32 +31.222.254.134/32 +31.222.254.136/32 +31.222.254.138/32 +31.222.254.140/32 +31.222.254.142/32 +31.222.254.144/32 +31.222.254.146/32 +34.102.239.211/32 +34.160.212.61/32 +34.192.245.192/32 +34.196.197.197/32 +34.237.179.253/32 +34.238.149.150/32 +35.158.206.3/32 +35.174.159.132/32 +36.50.238.1/32 +36.50.238.2/31 +36.50.238.4/30 +36.50.238.8/29 +36.50.238.16/29 +36.50.238.24/32 +37.0.12.226/31 +37.0.12.228/30 +37.0.12.232/30 +37.0.12.236/31 +37.0.12.238/32 +37.9.56.115/32 +37.9.56.131/32 +37.9.58.51/32 +37.9.58.227/32 +37.9.59.131/32 +37.19.195.2/32 +37.19.195.7/32 +37.19.195.12/32 +37.19.195.17/32 +37.19.195.22/32 +37.19.195.27/32 +37.19.195.32/32 +37.19.195.37/32 +37.19.195.115/32 +37.19.195.120/32 +37.19.195.129/32 +37.19.195.133/32 +37.19.195.137/32 +37.19.195.141/32 +37.19.195.145/32 +37.19.195.149/32 +37.19.195.153/32 +37.19.195.158/32 +37.19.195.162/32 +37.19.195.193/32 +37.19.195.198/32 +37.19.195.203/32 +37.19.195.208/32 +37.19.195.213/32 +37.19.195.218/32 +37.19.196.50/32 +37.19.196.54/32 +37.19.197.32/30 +37.19.197.36/32 +37.19.199.34/32 +37.19.199.39/32 +37.19.199.44/32 +37.19.199.68/32 +37.19.199.72/32 +37.19.199.76/32 +37.19.199.80/32 +37.19.199.84/32 +37.19.199.129/32 +37.19.199.134/32 +37.19.199.139/32 +37.19.199.144/32 +37.19.199.149/32 +37.19.200.1/32 +37.19.200.17/32 +37.19.200.22/32 +37.19.200.26/31 +37.19.200.46/31 +37.19.200.49/32 +37.19.200.50/32 +37.19.200.52/31 +37.19.200.56/32 +37.19.200.58/32 +37.19.200.226/32 +37.19.200.228/32 +37.19.200.231/32 +37.19.200.233/32 +37.19.200.236/32 +37.19.200.238/32 +37.19.200.241/32 +37.19.200.243/32 +37.19.201.129/32 +37.19.201.130/31 +37.19.201.132/30 +37.19.201.136/31 +37.19.201.138/32 +37.19.205.145/32 +37.19.205.150/32 +37.19.205.155/32 +37.19.205.197/32 +37.19.205.198/32 +37.19.205.202/32 +37.19.205.223/32 +37.19.205.224/28 +37.19.205.240/30 +37.19.205.244/31 +37.19.212.2/32 +37.19.212.7/32 +37.19.212.12/32 +37.19.212.17/32 +37.19.212.22/32 +37.19.212.27/32 +37.19.212.32/32 +37.19.212.37/32 +37.19.212.42/32 +37.19.212.47/32 +37.19.212.52/32 +37.19.212.57/32 +37.19.212.62/32 +37.19.212.67/32 +37.19.212.72/32 +37.19.212.77/32 +37.19.212.82/32 +37.19.212.87/32 +37.19.212.92/32 +37.19.212.97/32 +37.19.212.102/32 +37.19.212.107/32 +37.19.212.112/32 +37.19.212.117/32 +37.19.212.122/32 +37.19.212.127/32 +37.19.212.132/32 +37.19.212.137/32 +37.19.212.142/32 +37.19.212.147/32 +37.19.212.152/32 +37.19.212.157/32 +37.19.212.162/32 +37.19.212.167/32 +37.19.212.172/32 +37.19.212.177/32 +37.19.212.182/32 +37.19.212.187/32 +37.19.212.192/32 +37.19.212.197/32 +37.19.212.202/32 +37.19.212.207/32 +37.19.212.208/32 +37.19.212.212/32 +37.19.212.214/31 +37.19.212.217/32 +37.19.212.222/32 +37.19.212.224/31 +37.19.212.227/32 +37.19.212.247/32 +37.19.213.2/32 +37.19.213.7/32 +37.19.213.12/32 +37.19.213.17/32 +37.19.213.22/32 +37.19.213.27/32 +37.19.213.32/32 +37.19.213.37/32 +37.19.213.42/32 +37.19.213.47/32 +37.19.213.52/32 +37.19.213.57/32 +37.19.213.62/32 +37.19.213.67/32 +37.19.213.72/32 +37.19.213.77/32 +37.19.213.82/32 +37.19.213.87/32 +37.19.213.92/32 +37.19.213.97/32 +37.19.213.102/32 +37.19.213.107/32 +37.19.213.112/32 +37.19.213.117/32 +37.19.213.122/32 +37.19.213.127/32 +37.19.213.132/32 +37.19.213.137/32 +37.19.213.142/32 +37.19.213.147/32 +37.19.213.152/32 +37.19.213.157/32 +37.19.213.162/32 +37.19.213.167/32 +37.19.213.172/32 +37.19.213.177/32 +37.19.213.182/32 +37.19.213.187/32 +37.19.213.192/32 +37.19.213.197/32 +37.19.213.202/32 +37.19.213.207/32 +37.19.213.212/32 +37.19.213.217/32 +37.19.213.222/32 +37.19.213.227/32 +37.19.213.232/32 +37.19.213.237/32 +37.19.213.242/32 +37.19.213.247/32 +37.19.214.1/32 +37.19.214.2/31 +37.19.214.4/31 +37.19.214.6/32 +37.19.217.3/32 +37.19.217.6/32 +37.19.217.9/32 +37.19.217.12/32 +37.19.217.15/32 +37.19.217.18/32 +37.19.217.21/32 +37.19.217.24/32 +37.19.217.27/32 +37.19.217.30/32 +37.19.217.33/32 +37.19.217.36/32 +37.19.217.39/32 +37.19.217.40/32 +37.19.217.44/31 +37.19.217.58/32 +37.19.218.1/32 +37.19.218.2/31 +37.19.218.15/32 +37.19.218.16/31 +37.19.218.139/32 +37.19.218.143/32 +37.19.218.147/32 +37.19.218.151/32 +37.19.218.155/32 +37.19.218.159/32 +37.19.218.163/32 +37.19.218.167/32 +37.19.218.171/32 +37.19.218.175/32 +37.19.218.180/32 +37.19.221.193/32 +37.19.221.194/31 +37.19.221.196/30 +37.19.223.2/32 +37.19.223.4/30 +37.19.223.8/29 +37.19.223.16/29 +37.19.223.24/30 +37.19.223.29/32 +37.19.223.30/32 +37.19.223.32/30 +37.19.223.36/31 +37.19.223.66/32 +37.19.223.71/32 +37.19.223.75/32 +37.19.223.80/32 +37.19.223.85/32 +37.19.223.98/31 +37.19.223.100/31 +37.19.223.103/32 +37.19.223.104/30 +37.19.223.108/31 +37.19.223.110/32 +37.19.223.112/29 +37.19.223.122/32 +37.19.223.200/31 +37.19.223.203/32 +37.19.223.204/30 +37.19.223.208/32 +37.19.223.210/31 +37.19.223.212/31 +37.19.223.215/32 +37.19.223.216/30 +37.19.223.220/31 +37.19.223.222/32 +37.19.223.224/32 +37.19.223.226/31 +37.19.223.228/30 +37.19.223.233/32 +37.19.223.234/31 +37.19.223.236/31 +37.19.223.238/32 +37.19.223.240/29 +37.19.223.248/31 +37.19.223.251/32 +37.46.115.5/32 +37.46.115.6/31 +37.46.115.8/30 +37.46.115.12/31 +37.46.115.42/31 +37.46.115.44/31 +37.46.115.46/32 +37.46.115.48/31 +37.46.115.50/32 +37.46.115.52/30 +37.46.115.56/32 +37.46.116.96/32 +37.46.116.112/32 +37.46.116.128/32 +37.46.116.144/32 +37.46.116.160/32 +37.46.116.176/32 +37.46.116.192/32 +37.46.116.208/32 +37.46.116.224/32 +37.46.116.240/32 +37.46.117.96/32 +37.46.117.112/32 +37.46.117.128/32 +37.46.117.144/32 +37.46.117.160/32 +37.46.117.176/32 +37.46.117.192/32 +37.46.117.208/32 +37.46.117.224/32 +37.46.117.240/32 +37.46.122.56/32 +37.46.122.112/32 +37.46.122.128/32 +37.46.122.144/32 +37.46.122.160/32 +37.46.122.176/32 +37.46.122.192/32 +37.46.122.208/32 +37.46.122.224/32 +37.46.122.240/32 +37.120.131.131/32 +37.120.131.136/32 +37.120.131.141/32 +37.120.131.149/32 +37.120.131.154/32 +37.120.131.195/32 +37.120.131.219/32 +37.120.131.227/32 +37.120.131.235/32 +37.120.131.243/32 +37.120.131.251/32 +37.120.132.115/32 +37.120.133.67/32 +37.120.133.72/32 +37.120.133.83/32 +37.120.133.85/32 +37.120.133.90/32 +37.120.137.66/32 +37.120.137.172/32 +37.120.137.194/32 +37.120.138.3/32 +37.120.138.171/32 +37.120.138.179/32 +37.120.138.180/32 +37.120.138.187/32 +37.120.138.188/32 +37.120.141.130/32 +37.120.143.3/32 +37.120.143.11/32 +37.120.143.19/32 +37.120.143.27/32 +37.120.143.35/32 +37.120.143.211/32 +37.120.143.219/32 +37.120.143.227/32 +37.120.144.115/32 +37.120.144.123/32 +37.120.144.243/32 +37.120.145.83/32 +37.120.145.91/32 +37.120.147.146/31 +37.120.147.148/32 +37.120.148.171/32 +37.120.148.179/32 +37.120.148.187/32 +37.120.149.19/32 +37.120.149.24/32 +37.120.149.29/32 +37.120.149.37/32 +37.120.149.42/32 +37.120.149.50/31 +37.120.149.52/32 +37.120.149.91/32 +37.120.149.99/32 +37.120.149.155/32 +37.120.149.163/32 +37.120.154.43/32 +37.120.154.51/32 +37.120.154.203/32 +37.120.154.211/32 +37.120.154.235/32 +37.120.155.211/32 +37.120.155.216/32 +37.120.155.227/32 +37.120.155.232/32 +37.120.156.18/31 +37.120.156.20/32 +37.120.156.34/31 +37.120.156.36/32 +37.120.156.67/32 +37.120.156.75/32 +37.120.156.83/32 +37.120.156.131/32 +37.120.156.139/32 +37.120.156.147/32 +37.120.156.219/32 +37.120.156.227/32 +37.120.157.3/32 +37.120.157.19/32 +37.120.157.27/32 +37.120.157.35/32 +37.120.157.43/32 +37.120.157.203/32 +37.120.157.235/32 +37.120.158.194/32 +37.120.159.196/32 +37.120.194.3/32 +37.120.194.43/32 +37.120.194.51/32 +37.120.194.59/32 +37.120.194.67/32 +37.120.194.75/32 +37.120.194.195/32 +37.120.194.203/32 +37.120.194.227/32 +37.120.194.235/32 +37.120.197.35/32 +37.120.197.43/32 +37.120.197.51/32 +37.120.197.59/32 +37.120.197.61/32 +37.120.199.195/32 +37.120.199.203/32 +37.120.199.235/32 +37.120.199.243/32 +37.120.199.251/32 +37.120.201.171/32 +37.120.201.179/32 +37.120.201.187/32 +37.120.201.195/32 +37.120.201.203/32 +37.120.201.211/32 +37.120.201.219/32 +37.120.201.227/32 +37.120.201.235/32 +37.120.201.243/32 +37.120.203.66/31 +37.120.203.68/32 +37.120.203.163/32 +37.120.203.171/32 +37.120.203.179/32 +37.120.203.187/32 +37.120.203.195/32 +37.120.203.203/32 +37.120.203.211/32 +37.120.203.219/32 +37.120.203.226/32 +37.120.204.51/32 +37.120.204.59/32 +37.120.204.131/32 +37.120.204.139/32 +37.120.204.147/32 +37.120.204.155/32 +37.120.204.163/32 +37.120.204.171/32 +37.120.204.179/32 +37.120.204.187/32 +37.120.204.211/32 +37.120.204.219/32 +37.120.204.227/32 +37.120.204.235/32 +37.120.204.243/32 +37.120.204.251/32 +37.120.209.163/32 +37.120.209.171/32 +37.120.209.179/32 +37.120.209.187/32 +37.120.209.195/32 +37.120.209.203/32 +37.120.209.211/32 +37.120.209.219/32 +37.120.209.227/32 +37.120.210.59/32 +37.120.210.66/31 +37.120.210.68/32 +37.120.210.83/32 +37.120.210.91/32 +37.120.210.99/32 +37.120.210.107/32 +37.120.210.146/31 +37.120.210.148/32 +37.120.211.99/32 +37.120.211.107/32 +37.120.211.115/32 +37.120.211.123/32 +37.120.211.131/32 +37.120.211.139/32 +37.120.211.147/32 +37.120.211.155/32 +37.120.211.163/32 +37.120.211.171/32 +37.120.212.3/32 +37.120.212.11/32 +37.120.212.19/32 +37.120.213.43/32 +37.120.213.67/32 +37.120.213.75/32 +37.120.213.83/32 +37.120.213.91/32 +37.120.213.99/32 +37.120.213.107/32 +37.120.213.115/32 +37.120.213.123/32 +37.120.213.131/32 +37.120.213.162/31 +37.120.213.164/32 +37.120.215.11/32 +37.120.215.19/32 +37.120.215.27/32 +37.120.215.35/32 +37.120.215.43/32 +37.120.215.51/32 +37.120.215.59/32 +37.120.215.75/32 +37.120.215.83/32 +37.120.215.91/32 +37.120.215.99/32 +37.120.215.115/32 +37.120.215.123/32 +37.120.215.162/32 +37.120.221.147/32 +37.120.221.155/32 +37.120.221.163/32 +37.120.221.187/32 +37.120.223.115/32 +37.120.223.116/32 +37.120.233.18/31 +37.120.233.20/32 +37.120.233.34/31 +37.120.233.36/32 +37.120.233.50/31 +37.120.233.52/32 +37.120.237.131/32 +37.120.237.139/32 +37.120.237.147/32 +37.156.216.130/31 +37.156.216.132/32 +37.156.216.146/31 +37.156.216.148/32 +37.221.112.194/31 +37.221.112.196/30 +37.221.112.200/30 +37.221.112.204/31 +37.221.112.206/32 +37.221.112.210/31 +37.221.112.212/30 +37.221.112.216/30 +37.221.112.220/31 +37.221.112.222/32 +37.235.48.19/32 +37.235.48.146/32 +37.235.48.170/32 +37.235.48.177/32 +37.235.49.77/32 +37.235.49.79/32 +37.235.49.110/32 +37.235.49.201/32 +37.235.50.37/32 +37.235.52.30/32 +37.235.52.33/32 +37.235.52.56/32 +37.235.52.62/32 +37.235.52.73/32 +37.235.52.94/32 +37.235.52.110/32 +37.235.52.114/32 +37.235.52.137/32 +37.235.52.177/32 +37.235.52.208/32 +37.235.52.231/32 +37.235.53.33/32 +37.235.53.80/31 +37.235.53.143/32 +37.235.53.170/32 +37.235.53.220/32 +37.235.53.247/32 +37.235.56.12/32 +37.235.56.140/32 +37.235.56.152/32 +37.235.56.177/32 +37.235.56.215/32 +37.235.56.227/32 +38.91.100.144/32 +38.95.13.130/31 +38.95.13.132/32 +38.132.101.210/31 +38.132.101.212/32 +38.132.112.2/32 +38.132.119.170/32 +38.165.231.71/32 +38.165.231.72/31 +38.170.155.242/32 +39.115.246.44/32 +39.115.246.49/32 +39.115.246.54/32 +39.115.246.59/32 +39.115.246.99/32 +39.115.246.104/32 +41.223.52.10/32 +41.223.53.116/32 +43.224.34.37/32 +44.194.53.183/32 +44.203.148.42/32 +44.211.59.242/32 +44.215.111.247/32 +45.9.248.2/31 +45.9.248.4/32 +45.9.249.67/32 +45.9.249.75/32 +45.9.249.83/32 +45.9.249.91/32 +45.9.249.99/32 +45.9.251.27/32 +45.9.251.35/32 +45.12.220.43/32 +45.12.220.51/32 +45.12.220.59/32 +45.12.220.67/32 +45.12.220.75/32 +45.12.220.115/32 +45.12.220.163/32 +45.12.220.171/32 +45.12.220.179/32 +45.12.220.187/32 +45.12.220.195/32 +45.12.220.203/32 +45.12.220.211/32 +45.12.220.219/32 +45.12.220.227/32 +45.12.220.235/32 +45.12.220.243/32 +45.12.220.251/32 +45.12.223.83/32 +45.12.223.91/32 +45.12.223.99/32 +45.12.223.107/32 +45.12.223.227/32 +45.12.223.235/32 +45.12.223.243/32 +45.12.223.251/32 +45.14.71.5/32 +45.14.71.6/31 +45.14.71.12/30 +45.14.71.16/30 +45.14.195.100/32 +45.14.195.102/32 +45.14.195.104/32 +45.14.195.106/32 +45.14.195.108/32 +45.14.195.110/32 +45.14.195.112/32 +45.14.195.114/32 +45.14.195.116/32 +45.14.195.118/32 +45.14.195.120/32 +45.14.195.122/32 +45.14.195.124/32 +45.14.195.126/32 +45.14.195.128/32 +45.14.195.130/32 +45.14.195.132/32 +45.14.195.134/32 +45.14.195.136/32 +45.14.195.138/32 +45.14.195.140/32 +45.14.195.142/32 +45.14.195.144/32 +45.14.195.146/32 +45.14.195.148/32 +45.14.195.150/32 +45.14.195.152/32 +45.14.195.154/32 +45.14.195.156/32 +45.14.195.158/32 +45.14.195.160/32 +45.14.195.162/32 +45.32.1.154/32 +45.32.14.121/32 +45.32.19.251/32 +45.32.22.164/32 +45.32.25.6/32 +45.32.27.112/32 +45.32.33.129/32 +45.32.53.130/32 +45.32.94.143/32 +45.32.128.201/32 +45.32.130.79/32 +45.32.133.141/32 +45.32.134.98/32 +45.32.138.136/32 +45.32.140.203/32 +45.32.147.30/32 +45.32.147.140/32 +45.32.148.50/32 +45.32.150.2/32 +45.32.151.145/32 +45.32.232.206/32 +45.32.240.71/32 +45.32.242.36/32 +45.32.244.207/32 +45.32.254.62/32 +45.38.189.1/32 +45.38.189.2/31 +45.38.189.4/30 +45.38.189.8/32 +45.55.132.68/32 +45.63.3.239/32 +45.63.5.47/32 +45.63.5.107/32 +45.63.6.229/32 +45.63.9.14/32 +45.63.15.200/32 +45.63.17.124/32 +45.63.93.66/32 +45.63.93.246/32 +45.63.98.192/32 +45.63.99.248/32 +45.64.106.106/32 +45.76.3.233/32 +45.76.12.202/32 +45.76.12.251/32 +45.76.46.5/32 +45.76.51.122/32 +45.76.81.137/32 +45.76.101.200/32 +45.76.110.174/32 +45.76.113.36/32 +45.76.128.185/32 +45.76.138.39/32 +45.76.165.215/32 +45.76.167.179/32 +45.76.207.17/32 +45.76.210.5/32 +45.76.216.41/32 +45.77.5.88/32 +45.77.6.204/32 +45.77.15.122/32 +45.77.27.103/32 +45.77.62.34/32 +45.77.99.95/32 +45.77.99.131/32 +45.77.130.175/32 +45.77.146.122/32 +45.77.155.51/32 +45.77.155.137/32 +45.77.185.243/32 +45.77.190.46/32 +45.77.203.126/32 +45.77.204.166/32 +45.77.205.196/32 +45.77.219.219/32 +45.77.220.108/32 +45.77.228.82/32 +45.77.235.169/32 +45.77.237.44/32 +45.82.33.4/32 +45.82.33.6/32 +45.82.33.8/32 +45.82.33.10/32 +45.82.33.14/32 +45.83.89.19/32 +45.83.89.27/32 +45.83.89.35/32 +45.83.89.43/32 +45.83.89.51/32 +45.83.89.115/32 +45.83.89.203/32 +45.83.89.211/32 +45.83.91.19/32 +45.83.91.27/32 +45.83.91.51/32 +45.83.91.123/32 +45.83.91.163/32 +45.83.91.171/32 +45.83.91.179/32 +45.83.91.187/32 +45.83.91.195/32 +45.83.91.203/32 +45.83.91.211/32 +45.83.91.227/32 +45.83.91.235/32 +45.83.91.243/32 +45.83.91.251/32 +45.83.124.1/32 +45.83.124.2/31 +45.83.124.4/30 +45.83.124.8/29 +45.83.124.16/29 +45.83.124.24/32 +45.83.125.1/32 +45.83.125.2/31 +45.83.125.4/30 +45.83.125.8/29 +45.83.125.16/29 +45.83.125.24/32 +45.83.126.1/32 +45.83.126.2/31 +45.83.126.4/30 +45.83.126.8/29 +45.83.126.16/29 +45.83.126.24/32 +45.83.127.1/32 +45.83.127.2/31 +45.83.127.4/30 +45.83.127.8/29 +45.83.127.16/29 +45.83.127.24/32 +45.83.136.1/32 +45.83.136.2/31 +45.83.136.4/30 +45.83.136.8/29 +45.83.136.16/29 +45.83.136.24/32 +45.83.137.1/32 +45.83.137.2/31 +45.83.137.4/30 +45.83.137.8/29 +45.83.137.16/29 +45.83.137.24/32 +45.83.138.1/32 +45.83.138.2/31 +45.83.138.4/30 +45.83.138.8/29 +45.83.138.16/29 +45.83.138.24/32 +45.83.139.1/32 +45.83.139.2/31 +45.83.139.4/30 +45.83.139.8/29 +45.83.139.16/29 +45.83.139.24/32 +45.83.144.1/32 +45.83.144.2/31 +45.83.144.4/30 +45.83.144.8/29 +45.83.144.16/29 +45.83.144.24/32 +45.83.145.1/32 +45.83.145.2/31 +45.83.145.4/30 +45.83.145.8/29 +45.83.145.16/28 +45.83.145.32/29 +45.83.145.40/30 +45.83.145.44/32 +45.83.145.46/31 +45.83.145.48/28 +45.83.145.64/27 +45.83.145.96/31 +45.83.145.98/32 +45.83.146.1/32 +45.83.146.2/31 +45.83.146.4/30 +45.83.146.8/29 +45.83.146.16/29 +45.83.146.24/32 +45.83.147.1/32 +45.83.147.2/31 +45.83.147.4/30 +45.83.147.8/29 +45.83.147.16/29 +45.83.147.24/32 +45.84.39.100/32 +45.84.39.102/32 +45.84.39.104/32 +45.84.39.106/32 +45.84.39.108/32 +45.84.39.110/32 +45.84.39.112/32 +45.84.39.114/32 +45.84.39.116/32 +45.84.39.118/32 +45.84.39.120/32 +45.84.39.122/32 +45.84.39.124/32 +45.84.39.126/32 +45.84.39.128/32 +45.84.39.130/32 +45.84.39.132/32 +45.84.39.134/32 +45.84.39.136/32 +45.84.39.138/32 +45.84.39.140/32 +45.84.39.142/32 +45.84.39.144/32 +45.84.39.146/32 +45.84.39.148/32 +45.85.144.100/32 +45.85.144.102/32 +45.85.144.104/32 +45.85.144.106/32 +45.85.144.108/32 +45.85.144.110/32 +45.85.144.112/32 +45.85.144.114/32 +45.85.144.116/32 +45.85.144.118/32 +45.85.144.120/32 +45.85.144.122/32 +45.85.144.124/32 +45.85.145.2/32 +45.85.145.15/32 +45.85.145.28/32 +45.85.145.41/32 +45.85.145.54/32 +45.85.145.67/32 +45.85.145.79/32 +45.85.145.91/32 +45.85.145.103/32 +45.85.145.115/32 +45.86.210.2/32 +45.86.210.4/32 +45.86.210.6/32 +45.86.210.8/32 +45.86.210.10/32 +45.86.210.12/32 +45.86.210.14/32 +45.86.210.16/32 +45.86.210.18/32 +45.86.210.20/32 +45.86.210.22/32 +45.86.210.24/32 +45.86.210.26/32 +45.86.210.28/32 +45.86.210.30/32 +45.86.210.32/32 +45.86.210.34/32 +45.86.210.36/32 +45.86.210.38/32 +45.86.210.40/32 +45.86.210.42/32 +45.86.210.44/32 +45.86.210.46/32 +45.86.210.48/32 +45.87.212.3/32 +45.87.212.11/32 +45.87.212.18/32 +45.87.212.34/32 +45.87.212.50/31 +45.87.212.52/32 +45.87.212.66/31 +45.87.212.68/32 +45.87.212.82/31 +45.87.212.84/32 +45.87.213.210/31 +45.87.213.212/30 +45.87.213.216/30 +45.87.213.220/31 +45.87.213.222/32 +45.87.213.226/32 +45.87.214.18/31 +45.87.214.20/30 +45.87.214.24/30 +45.87.214.28/31 +45.87.214.30/32 +45.87.214.34/31 +45.87.214.36/32 +45.87.214.66/32 +45.87.214.235/32 +45.88.190.100/32 +45.88.190.102/32 +45.88.190.104/32 +45.88.190.106/32 +45.88.190.108/32 +45.88.190.110/32 +45.88.190.112/32 +45.88.190.114/32 +45.88.190.116/32 +45.88.190.118/32 +45.88.190.120/32 +45.88.190.122/32 +45.88.190.124/32 +45.88.190.126/32 +45.88.190.128/32 +45.88.190.130/32 +45.88.190.132/32 +45.88.190.134/32 +45.88.190.136/32 +45.89.174.34/31 +45.89.174.36/32 +45.89.174.115/32 +45.89.174.123/32 +45.92.33.162/31 +45.92.33.164/30 +45.92.33.168/29 +45.92.33.176/29 +45.92.33.184/30 +45.92.33.188/31 +45.92.33.190/32 +45.94.208.1/32 +45.94.208.17/32 +45.94.208.33/32 +45.94.208.49/32 +45.94.208.64/32 +45.94.208.79/32 +45.94.208.94/32 +45.94.208.109/32 +45.94.208.129/32 +45.94.208.145/32 +45.94.208.161/32 +45.94.208.177/32 +45.94.208.192/32 +45.94.208.207/32 +45.94.208.222/32 +45.94.208.237/32 +45.114.118.77/32 +45.114.118.80/32 +45.114.118.102/32 +45.114.118.106/32 +45.128.62.30/31 +45.128.133.218/31 +45.128.133.220/31 +45.128.133.222/32 +45.128.133.226/31 +45.128.133.228/30 +45.128.133.232/31 +45.128.133.234/32 +45.128.134.82/31 +45.128.134.84/30 +45.128.134.88/30 +45.128.134.92/31 +45.128.134.94/32 +45.128.134.194/31 +45.128.134.196/30 +45.133.172.101/32 +45.133.172.103/32 +45.133.172.104/30 +45.133.172.108/31 +45.133.172.110/32 +45.133.172.112/30 +45.133.172.116/32 +45.133.172.118/31 +45.133.172.121/32 +45.133.172.122/32 +45.133.172.125/32 +45.133.172.126/31 +45.133.172.128/31 +45.133.172.133/32 +45.133.172.134/32 +45.133.172.136/31 +45.133.172.138/32 +45.133.172.140/31 +45.133.172.143/32 +45.133.172.145/32 +45.133.172.146/31 +45.133.172.148/30 +45.133.172.157/32 +45.133.172.158/31 +45.133.172.160/31 +45.133.173.32/31 +45.133.173.35/32 +45.133.173.36/32 +45.133.173.38/31 +45.133.173.40/31 +45.133.173.42/32 +45.133.173.47/32 +45.133.173.48/32 +45.133.173.50/31 +45.133.173.52/30 +45.133.173.57/32 +45.133.173.59/32 +45.133.173.99/32 +45.133.173.100/31 +45.133.173.103/32 +45.133.173.105/32 +45.133.173.106/32 +45.133.173.108/30 +45.133.173.112/30 +45.133.173.116/31 +45.133.173.119/32 +45.133.173.120/30 +45.133.173.125/32 +45.133.173.127/32 +45.133.173.128/31 +45.133.192.26/32 +45.133.192.194/31 +45.133.192.196/32 +45.134.140.33/32 +45.134.140.34/31 +45.134.140.36/30 +45.134.140.40/29 +45.134.140.48/29 +45.134.140.56/30 +45.134.142.85/32 +45.134.212.21/32 +45.134.212.23/32 +45.134.212.130/32 +45.134.212.137/32 +45.134.212.144/32 +45.134.212.151/32 +45.134.212.158/32 +45.134.212.165/32 +45.134.212.172/32 +45.134.212.179/32 +45.136.150.124/31 +45.136.155.130/32 +45.136.155.142/32 +45.136.155.154/32 +45.136.155.225/32 +45.136.155.226/31 +45.138.86.226/31 +45.138.86.228/32 +45.139.48.242/31 +45.139.48.244/30 +45.139.48.248/30 +45.139.48.252/31 +45.139.48.254/32 +45.140.184.1/32 +45.140.184.12/32 +45.140.184.23/32 +45.140.184.34/32 +45.140.184.45/32 +45.140.184.56/32 +45.140.184.67/32 +45.140.184.78/32 +45.140.184.89/32 +45.140.184.100/32 +45.140.184.111/32 +45.140.184.122/32 +45.140.184.138/32 +45.140.184.140/32 +45.140.184.142/32 +45.141.152.35/32 +45.141.152.43/32 +45.141.152.51/32 +45.141.152.59/32 +45.141.153.201/32 +45.141.153.204/32 +45.141.153.227/32 +45.144.154.169/32 +45.146.222.226/31 +45.146.222.228/30 +45.146.222.232/30 +45.146.222.236/31 +45.146.222.238/32 +45.151.45.4/30 +45.151.45.8/29 +45.151.45.16/28 +45.151.45.32/31 +45.152.180.3/32 +45.152.180.11/32 +45.152.180.19/32 +45.152.180.187/32 +45.152.180.235/32 +45.152.180.243/32 +45.152.180.251/32 +45.152.181.3/32 +45.152.181.11/32 +45.152.181.19/32 +45.152.181.27/32 +45.152.181.35/32 +45.152.181.43/32 +45.152.181.51/32 +45.152.181.131/32 +45.152.181.147/32 +45.152.181.155/32 +45.152.181.163/32 +45.152.181.171/32 +45.152.181.179/32 +45.152.181.187/32 +45.152.181.195/32 +45.152.181.203/32 +45.152.181.211/32 +45.152.181.219/32 +45.152.183.3/32 +45.152.183.11/32 +45.152.183.115/32 +45.152.183.171/32 +45.152.183.179/32 +45.152.183.187/32 +45.152.183.195/32 +45.152.183.203/32 +45.153.127.206/32 +45.153.127.239/32 +45.154.27.3/32 +45.154.27.203/32 +45.154.27.207/32 +45.156.248.50/31 +45.156.248.52/32 +45.158.38.74/32 +45.248.77.107/32 +45.248.77.115/32 +45.248.77.123/32 +45.248.77.147/32 +45.248.77.155/32 +45.248.77.163/32 +45.248.77.171/32 +45.248.77.203/32 +45.248.78.2/32 +45.248.78.6/32 +45.248.78.10/32 +45.248.78.26/32 +45.248.78.178/32 +45.248.78.185/32 +45.248.78.194/32 +45.248.78.201/32 +45.248.78.226/32 +45.248.78.231/32 +45.248.78.236/32 +45.248.78.241/32 +45.248.79.106/32 +45.248.79.114/32 +45.248.79.119/32 +45.248.79.154/32 +45.248.79.178/32 +45.248.79.182/32 +45.248.79.186/32 +45.248.79.250/32 +45.250.255.25/32 +46.29.25.2/31 +46.29.25.4/31 +46.29.25.6/32 +46.29.25.35/32 +46.29.25.65/32 +46.29.25.95/32 +46.29.25.125/32 +46.29.25.130/32 +46.101.74.66/32 +46.101.76.139/32 +46.101.90.33/32 +46.101.90.63/32 +46.101.165.35/32 +46.101.192.11/32 +46.166.129.1/32 +46.166.129.2/31 +46.166.179.209/32 +46.166.179.210/31 +46.183.184.93/32 +46.183.184.99/32 +46.183.184.170/32 +46.183.184.174/32 +46.183.184.194/32 +46.183.186.115/32 +46.183.187.13/32 +46.183.187.30/32 +46.183.187.90/32 +46.183.187.98/32 +46.183.187.107/32 +46.183.187.109/32 +46.183.187.138/32 +46.183.187.158/32 +46.183.187.173/32 +46.183.187.217/32 +46.199.75.100/31 +46.199.75.102/32 +46.199.75.105/32 +46.199.75.106/31 +46.246.8.146/31 +46.246.8.149/32 +46.246.8.150/31 +46.246.8.152/31 +46.246.8.154/32 +46.246.8.156/30 +46.246.8.160/30 +46.246.8.165/32 +46.246.8.167/32 +46.246.8.168/30 +46.246.8.172/32 +46.246.8.174/32 +46.246.8.177/32 +46.246.8.178/31 +46.246.8.180/31 +46.246.9.184/32 +46.246.24.16/32 +46.246.24.44/32 +46.246.24.55/32 +46.246.24.166/32 +46.246.24.182/32 +46.246.28.40/32 +46.246.28.122/32 +46.246.28.146/32 +46.246.28.154/32 +46.246.28.169/32 +46.246.93.32/32 +46.246.93.40/32 +46.246.93.132/32 +46.246.93.225/32 +46.246.93.230/32 +46.246.126.70/32 +50.7.93.27/32 +50.7.93.28/31 +51.79.159.148/32 +51.158.200.73/32 +51.158.200.82/32 +51.158.200.84/32 +51.158.201.135/32 +51.158.202.105/32 +51.158.252.30/31 +51.158.252.48/32 +51.158.252.50/32 +51.158.252.66/32 +51.158.252.69/32 +51.158.252.96/32 +51.158.252.160/32 +51.158.252.181/32 +51.158.252.252/32 +51.158.253.45/32 +51.158.253.77/32 +51.158.253.78/32 +51.158.253.113/32 +51.158.253.114/31 +51.158.253.118/31 +51.158.253.120/32 +51.158.253.128/32 +51.158.253.130/32 +51.158.253.152/31 +51.158.253.154/32 +51.159.223.46/32 +51.159.223.143/32 +51.161.131.91/32 +52.2.50.8/32 +52.6.143.226/32 +52.73.252.28/32 +52.205.77.231/32 +54.86.170.177/32 +54.90.50.83/32 +54.145.205.221/32 +54.162.80.9/32 +54.178.102.107/32 +54.221.227.129/32 +54.225.121.9/32 +54.225.202.104/32 +54.225.227.202/32 +54.225.246.212/32 +54.227.247.53/32 +54.235.191.183/32 +54.243.103.134/32 +54.243.128.120/32 +57.129.1.188/32 +57.129.1.204/32 +57.129.1.222/32 +58.120.141.74/31 +58.120.141.76/32 +62.3.36.25/32 +62.3.36.37/32 +62.3.36.50/32 +62.3.36.66/32 +62.3.36.77/32 +62.3.36.88/32 +62.3.36.97/32 +62.3.36.109/32 +62.3.36.122/32 +62.3.36.133/32 +62.3.36.147/32 +62.3.36.159/32 +62.3.36.169/32 +62.3.36.185/32 +62.3.36.197/32 +62.3.36.206/32 +62.3.36.215/32 +62.3.36.228/32 +62.112.9.164/30 +62.112.9.168/32 +62.112.9.192/32 +62.112.9.237/32 +62.112.9.243/32 +62.112.9.244/32 +62.133.46.3/32 +62.133.46.7/32 +62.133.46.9/32 +62.133.46.10/31 +62.133.46.14/31 +62.133.46.16/32 +62.133.47.131/32 +62.133.47.132/30 +62.133.47.136/31 +62.133.47.138/32 +62.133.47.140/31 +62.133.47.143/32 +62.133.47.144/32 +62.133.47.146/31 +62.133.47.148/30 +62.133.47.152/29 +62.182.99.32/32 +62.182.99.34/32 +62.182.99.36/32 +62.182.99.38/32 +62.182.99.40/32 +62.182.99.42/32 +62.182.99.44/32 +62.182.99.46/32 +62.182.99.48/32 +62.182.99.50/32 +62.182.99.52/32 +62.182.99.54/32 +62.182.99.56/32 +62.182.99.58/32 +62.182.99.60/32 +62.182.99.62/32 +62.182.99.64/32 +62.182.99.66/32 +62.182.99.68/32 +62.182.99.70/32 +62.182.99.72/32 +62.182.99.74/32 +62.182.99.76/32 +62.182.99.78/32 +62.182.99.80/32 +62.182.99.82/32 +62.182.99.84/32 +62.182.99.86/32 +62.182.99.88/32 +62.182.99.90/32 +62.182.99.93/32 +62.182.99.96/32 +62.182.99.99/32 +62.182.99.102/32 +62.182.99.105/32 +62.182.99.108/32 +62.182.99.111/32 +62.182.99.114/32 +62.182.99.117/32 +62.182.99.120/32 +62.182.99.123/32 +62.182.99.126/32 +62.182.99.129/32 +62.182.99.132/32 +62.182.99.135/32 +62.182.99.138/32 +62.182.99.141/32 +62.182.99.144/32 +62.182.99.147/32 +62.182.99.150/32 +62.182.99.156/32 +62.182.99.158/32 +62.182.99.160/32 +62.182.99.162/32 +62.182.99.218/32 +62.182.99.220/32 +62.182.99.222/32 +62.182.99.224/32 +62.182.99.226/32 +62.182.99.228/32 +62.182.99.230/32 +62.182.99.232/32 +62.182.99.234/32 +62.182.99.236/32 +62.182.99.238/32 +62.182.99.240/32 +62.182.99.242/32 +62.182.99.244/32 +62.182.99.246/32 +62.182.99.248/32 +62.182.99.250/32 +62.182.99.252/32 +62.182.99.254/32 +62.212.64.16/30 +62.212.64.20/32 +62.233.57.136/32 +62.233.57.206/32 +64.23.197.236/32 +64.23.201.184/32 +64.31.3.117/32 +64.44.32.43/32 +64.44.32.51/32 +64.44.32.75/32 +64.44.32.76/32 +64.44.32.115/32 +64.44.42.107/32 +64.44.80.3/32 +64.44.80.11/32 +64.44.80.19/32 +64.44.80.27/32 +64.44.80.35/32 +64.44.80.43/32 +64.44.80.51/32 +64.44.80.59/32 +64.44.80.67/32 +64.44.80.75/32 +64.44.80.83/32 +64.44.80.91/32 +64.44.80.99/32 +64.44.80.107/32 +64.44.80.115/32 +64.44.80.123/32 +64.44.80.131/32 +64.44.80.139/32 +64.44.80.147/32 +64.44.80.155/32 +64.44.80.163/32 +64.44.80.171/32 +64.44.80.179/32 +64.44.80.187/32 +64.44.140.3/32 +64.44.140.11/32 +64.44.140.19/32 +64.44.140.27/32 +64.44.140.35/32 +64.44.140.43/32 +64.44.140.51/32 +64.44.140.59/32 +64.176.3.166/32 +64.176.35.199/32 +64.176.36.84/32 +64.176.38.236/32 +64.176.45.102/32 +64.176.46.30/32 +64.176.48.109/32 +64.176.54.250/32 +64.176.55.14/32 +64.176.58.120/32 +64.176.58.238/32 +64.176.198.250/32 +64.176.207.137/32 +64.176.208.43/32 +64.176.210.202/32 +64.176.212.97/32 +64.176.213.68/32 +64.176.219.107/32 +64.176.223.76/32 +64.188.16.130/32 +64.225.2.23/32 +64.225.2.64/32 +64.226.91.213/32 +64.227.12.157/32 +64.227.28.170/32 +64.227.98.184/32 +64.227.101.64/32 +64.227.101.99/32 +64.227.102.81/32 +64.227.102.191/32 +64.227.107.79/32 +64.227.107.148/32 +64.227.109.169/32 +64.227.110.8/32 +64.227.110.245/32 +64.227.111.129/32 +64.227.111.154/32 +64.227.127.206/32 +65.8.161.16/32 +65.8.161.21/32 +65.8.161.26/32 +65.8.161.67/32 +65.20.101.55/32 +65.20.101.157/32 +65.20.102.217/32 +65.20.105.216/32 +65.20.107.146/32 +66.42.43.157/32 +66.90.67.42/31 +66.90.67.44/31 +66.90.72.170/31 +66.90.72.172/31 +66.90.72.174/32 +66.90.73.114/31 +66.90.73.116/31 +66.90.82.26/31 +66.90.82.28/31 +66.90.82.30/32 +66.111.61.161/32 +66.111.61.193/32 +66.111.61.213/32 +66.111.61.233/32 +66.115.182.130/31 +66.115.182.132/32 +66.135.4.139/32 +66.135.5.3/32 +66.135.5.92/32 +66.135.14.253/32 +66.135.15.232/32 +66.135.18.247/32 +66.135.25.115/32 +66.251.128.1/32 +66.251.128.2/31 +66.251.128.4/30 +66.251.128.8/30 +67.21.32.144/31 +67.21.32.146/32 +67.159.8.139/32 +67.159.8.140/31 +67.159.8.147/32 +67.159.8.148/31 +67.159.8.150/32 +67.205.146.130/32 +67.205.146.208/32 +67.205.150.105/32 +67.205.164.236/32 +67.205.175.184/32 +67.205.177.111/32 +67.205.182.128/32 +67.205.185.136/32 +67.205.186.50/32 +67.205.186.125/32 +67.219.104.230/32 +67.219.107.85/32 +67.219.108.86/32 +67.219.109.111/32 +68.183.34.62/32 +68.183.40.86/32 +68.183.44.169/32 +68.183.96.117/32 +68.183.141.81/32 +68.183.198.130/31 +68.183.198.133/32 +68.183.198.141/32 +68.183.198.158/32 +68.235.41.123/32 +68.235.56.51/32 +68.235.56.52/31 +68.235.56.59/32 +68.235.56.60/31 +69.10.63.242/31 +69.10.63.244/31 +69.10.63.246/32 +69.12.94.66/32 +69.55.55.249/32 +69.174.103.194/32 +70.34.247.97/32 +72.11.157.34/31 +72.11.157.36/32 +72.11.157.66/31 +72.11.157.68/32 +72.14.148.2/31 +72.14.148.4/30 +72.14.148.8/29 +72.14.148.16/28 +72.14.148.32/28 +72.14.148.48/32 +72.249.190.125/32 +74.63.204.210/31 +74.63.204.212/30 +74.63.204.216/30 +74.63.204.220/31 +74.63.204.222/32 +74.80.180.178/31 +74.80.180.180/32 +74.80.180.194/31 +74.80.180.196/32 +74.80.181.131/32 +74.80.181.132/31 +74.80.181.146/31 +74.80.181.148/32 +74.118.126.2/31 +74.118.126.4/30 +74.118.126.8/30 +74.118.126.16/30 +74.118.126.24/30 +74.118.126.32/30 +74.118.126.48/30 +74.118.126.56/29 +74.118.126.64/30 +74.118.126.72/30 +74.118.126.96/30 +74.118.126.104/29 +74.118.126.112/29 +74.118.126.132/30 +74.118.126.136/30 +74.118.126.144/30 +74.118.126.152/29 +74.118.126.172/30 +74.118.126.180/30 +74.118.126.184/29 +74.118.126.200/29 +74.118.126.208/28 +74.118.126.224/29 +74.118.126.240/30 +76.223.31.143/32 +76.223.112.12/32 +77.73.69.120/32 +77.74.192.227/32 +77.74.197.195/32 +77.75.120.131/32 +77.75.121.99/32 +77.75.121.147/32 +77.81.136.66/31 +77.81.136.68/32 +77.81.136.98/31 +77.81.136.100/32 +77.81.139.163/32 +77.81.139.171/32 +77.81.139.179/32 +77.81.139.187/32 +77.81.142.130/31 +77.81.142.132/30 +77.81.142.136/29 +77.81.142.144/32 +77.81.142.146/31 +77.81.142.148/30 +77.81.142.152/31 +77.81.142.155/32 +77.81.142.156/30 +77.81.191.3/32 +77.81.191.4/32 +77.83.198.123/32 +77.243.86.93/32 +77.243.86.116/32 +77.243.86.145/32 +77.243.86.170/32 +77.243.86.192/32 +77.243.86.214/32 +77.243.86.239/32 +77.243.87.8/32 +77.243.87.29/32 +77.243.87.51/32 +77.243.87.76/32 +77.243.87.98/32 +77.243.87.120/32 +77.243.87.144/32 +77.243.87.166/32 +77.243.87.190/32 +77.243.87.211/32 +77.243.87.232/32 +77.243.177.37/32 +77.243.177.53/32 +77.243.177.117/32 +77.243.181.195/32 +77.243.191.83/32 +77.243.191.107/32 +77.243.191.195/32 +77.243.191.243/32 +77.243.191.250/32 +77.247.178.54/32 +77.247.178.58/32 +77.247.178.94/32 +77.247.178.97/32 +77.247.178.107/32 +77.247.178.109/32 +77.247.178.110/32 +77.247.178.114/32 +77.247.178.144/32 +77.247.178.147/32 +77.247.178.154/32 +77.247.178.163/32 +77.247.178.199/32 +78.31.67.136/32 +78.47.62.131/32 +78.110.161.147/32 +78.110.163.243/32 +78.110.164.67/32 +78.110.165.115/32 +78.110.165.243/32 +78.110.166.162/32 +78.110.169.131/32 +78.110.170.35/32 +78.110.172.67/32 +78.110.175.99/32 +78.110.175.211/32 +78.141.195.227/32 +78.141.200.47/32 +78.141.228.3/32 +78.141.232.5/32 +78.141.237.253/32 +78.141.240.210/32 +78.141.243.3/32 +78.141.247.188/32 +78.157.193.51/32 +78.157.194.147/32 +78.157.194.227/32 +78.157.200.83/32 +78.157.200.195/32 +78.157.209.83/32 +78.157.209.99/32 +78.157.209.147/32 +78.157.216.3/32 +78.157.221.51/32 +79.110.55.2/31 +79.110.55.4/30 +79.110.55.8/30 +79.110.55.12/31 +79.110.55.14/32 +79.127.131.193/32 +79.127.131.194/32 +79.127.132.2/31 +79.127.132.4/32 +79.127.132.6/32 +79.127.132.8/30 +79.127.132.15/32 +79.127.132.16/29 +79.127.132.26/31 +79.127.132.29/32 +79.127.132.30/32 +79.127.132.33/32 +79.127.132.34/32 +79.127.132.40/32 +79.127.132.42/32 +79.127.132.44/32 +79.127.132.61/32 +79.127.132.62/31 +79.127.132.65/32 +79.127.132.66/31 +79.127.132.68/30 +79.127.132.72/29 +79.127.132.80/31 +79.127.132.88/32 +79.127.132.90/32 +79.127.132.92/32 +79.127.132.95/32 +79.127.132.108/32 +79.127.132.116/32 +79.127.134.1/32 +79.127.134.2/31 +79.127.134.4/30 +79.127.134.8/29 +79.127.134.16/28 +79.127.134.32/27 +79.127.134.64/27 +79.127.134.96/29 +79.127.134.104/30 +79.127.134.108/32 +79.127.136.1/32 +79.127.136.2/31 +79.127.136.4/30 +79.127.136.8/29 +79.127.136.16/28 +79.127.136.32/28 +79.127.136.48/29 +79.127.136.56/30 +79.127.136.65/32 +79.127.136.66/31 +79.127.136.68/30 +79.127.136.72/29 +79.127.136.80/28 +79.127.136.96/28 +79.127.136.112/30 +79.127.136.116/31 +79.127.136.118/32 +79.127.136.193/32 +79.127.136.194/32 +79.127.136.222/31 +79.127.139.33/32 +79.127.139.34/31 +79.127.141.1/32 +79.127.141.2/31 +79.127.141.4/30 +79.127.141.8/29 +79.127.141.16/28 +79.127.141.32/28 +79.127.141.48/30 +79.127.144.129/32 +79.127.144.130/31 +79.127.144.132/30 +79.127.144.136/29 +79.127.144.144/29 +79.127.144.152/30 +79.127.144.156/31 +79.127.145.65/32 +79.127.145.66/31 +79.127.145.68/30 +79.127.145.72/29 +79.127.145.80/29 +79.127.145.88/30 +79.127.145.92/31 +79.127.146.1/32 +79.127.146.2/31 +79.127.146.4/30 +79.127.146.8/29 +79.127.146.16/29 +79.127.146.24/30 +79.127.146.28/31 +79.127.146.51/32 +79.127.146.52/30 +79.127.146.56/29 +79.127.146.64/28 +79.127.146.101/32 +79.127.146.102/31 +79.127.146.104/29 +79.127.146.112/29 +79.127.146.120/30 +79.127.146.129/32 +79.127.146.130/31 +79.127.146.132/31 +79.127.146.134/32 +79.127.146.156/30 +79.127.146.160/28 +79.127.146.176/29 +79.127.146.184/32 +79.127.146.206/31 +79.127.146.208/28 +79.127.146.224/29 +79.127.146.232/31 +79.127.146.234/32 +79.127.147.88/32 +79.127.149.1/32 +79.127.149.2/31 +79.127.149.65/32 +79.127.149.66/31 +79.127.149.68/30 +79.127.149.72/29 +79.127.149.80/29 +79.127.149.88/30 +79.127.149.92/31 +79.127.150.97/32 +79.127.150.98/31 +79.127.154.1/32 +79.127.154.2/31 +79.127.154.4/30 +79.127.154.8/29 +79.127.154.16/29 +79.127.154.24/30 +79.127.160.129/32 +79.127.160.130/31 +79.127.160.132/30 +79.127.160.136/29 +79.127.160.144/28 +79.127.160.160/27 +79.127.160.192/28 +79.127.160.208/29 +79.127.164.65/32 +79.127.164.66/31 +79.127.164.68/30 +79.127.164.72/29 +79.127.164.80/29 +79.127.164.88/30 +79.127.164.92/31 +79.127.169.1/32 +79.127.169.2/32 +79.127.169.30/31 +79.127.169.59/32 +79.127.169.60/32 +79.127.180.1/32 +79.127.180.2/31 +79.127.180.4/30 +79.127.180.8/29 +79.127.180.16/29 +79.127.180.24/30 +79.127.180.28/31 +79.127.182.225/32 +79.127.182.226/31 +79.127.184.129/32 +79.127.184.130/31 +79.127.184.132/30 +79.127.184.136/29 +79.127.184.144/28 +79.127.184.160/27 +79.127.184.192/27 +79.127.184.224/28 +79.127.184.240/30 +79.127.184.244/32 +79.127.185.193/32 +79.127.185.194/31 +79.127.185.196/30 +79.127.185.200/29 +79.127.185.208/28 +79.127.185.224/28 +79.127.185.240/29 +79.127.185.248/31 +79.127.185.250/32 +79.127.186.222/31 +79.127.187.129/32 +79.127.187.130/31 +79.127.187.132/30 +79.127.187.136/29 +79.127.187.144/29 +79.127.187.152/30 +79.127.187.156/31 +79.127.187.185/32 +79.127.187.186/32 +79.127.187.214/31 +79.127.207.129/32 +79.127.207.130/31 +79.127.207.132/30 +79.127.207.136/29 +79.127.207.144/29 +79.127.207.152/30 +79.127.207.161/32 +79.127.207.162/31 +79.127.207.164/30 +79.127.207.168/29 +79.127.207.176/29 +79.127.207.184/30 +79.127.216.145/32 +79.127.216.146/31 +79.127.220.243/32 +79.127.220.244/30 +79.127.220.248/30 +79.127.224.97/32 +79.127.224.98/31 +79.127.231.175/32 +79.127.231.176/29 +79.127.231.184/30 +79.127.254.65/32 +79.127.254.66/31 +79.127.254.68/30 +79.127.254.72/29 +79.127.254.80/28 +79.127.254.96/28 +79.127.254.112/29 +79.135.104.5/32 +79.135.104.6/31 +79.135.104.8/31 +79.135.104.11/32 +79.135.104.12/30 +79.135.104.16/32 +79.135.104.20/30 +79.135.104.24/29 +79.135.104.33/32 +79.135.104.34/31 +79.135.104.36/30 +79.135.104.40/29 +79.135.104.48/28 +79.135.104.64/27 +79.135.104.96/30 +79.135.104.100/32 +79.135.104.104/32 +79.135.104.111/32 +79.135.104.112/32 +79.135.105.1/32 +79.135.105.2/31 +79.135.105.4/32 +79.135.105.12/32 +79.135.105.16/32 +79.135.105.20/32 +79.135.105.24/32 +79.135.105.40/32 +79.135.105.44/32 +79.135.105.48/32 +79.135.105.52/32 +79.135.105.56/32 +79.135.105.60/32 +79.135.105.68/32 +79.135.105.72/32 +79.135.105.76/32 +79.135.105.80/30 +79.135.105.84/32 +79.135.105.88/30 +79.135.105.92/32 +79.135.105.96/32 +79.135.105.100/32 +79.135.105.104/32 +79.135.105.112/32 +79.135.105.129/32 +79.135.105.130/31 +79.135.105.132/32 +79.135.105.148/32 +79.135.105.152/32 +79.135.105.160/32 +79.135.105.164/32 +79.135.105.168/32 +79.135.105.176/32 +79.135.105.180/32 +79.135.105.184/29 +79.135.105.192/32 +79.135.105.196/32 +79.135.105.200/32 +79.135.105.204/30 +79.135.105.208/32 +79.135.105.212/32 +79.141.162.81/32 +79.142.69.55/32 +79.142.69.56/32 +79.142.70.116/32 +79.142.76.197/32 +79.142.76.198/31 +79.142.77.63/32 +79.142.77.64/31 +79.142.77.96/32 +79.142.77.112/32 +79.142.77.128/32 +79.142.77.144/32 +79.142.77.160/32 +79.142.77.176/32 +79.142.77.192/32 +79.142.77.208/32 +79.142.77.224/32 +79.142.77.240/32 +80.69.175.219/32 +80.97.43.182/32 +80.211.108.24/32 +81.2.252.231/32 +81.17.122.1/32 +81.17.122.2/31 +81.17.122.4/30 +81.17.122.8/31 +81.17.122.10/32 +81.17.123.100/32 +81.17.123.102/32 +81.17.123.104/32 +81.17.123.106/32 +81.17.123.108/32 +81.17.123.110/32 +81.17.123.112/32 +81.17.123.114/32 +81.19.214.131/32 +81.19.214.132/32 +81.19.217.3/32 +81.19.217.5/32 +81.19.223.3/32 +81.19.223.4/32 +81.92.200.84/31 +81.92.200.86/32 +81.92.200.117/32 +81.92.202.11/32 +81.92.202.15/32 +81.92.202.20/32 +81.92.202.25/32 +81.92.202.29/32 +81.92.203.37/32 +81.92.203.42/32 +81.92.203.47/32 +81.92.203.52/32 +81.92.203.57/32 +81.92.203.101/32 +81.92.203.106/32 +81.92.203.111/32 +81.92.203.116/32 +81.92.203.121/32 +81.92.203.197/32 +81.92.203.202/32 +81.92.203.213/32 +81.92.203.218/32 +82.102.16.131/32 +82.102.16.136/32 +82.102.16.141/32 +82.102.16.146/32 +82.102.16.151/32 +82.102.16.179/32 +82.102.16.184/32 +82.102.16.219/32 +82.102.16.227/32 +82.102.16.235/32 +82.102.17.178/31 +82.102.17.180/32 +82.102.18.11/32 +82.102.18.34/32 +82.102.18.252/32 +82.102.19.51/32 +82.102.19.99/32 +82.102.19.123/32 +82.102.19.131/32 +82.102.19.137/32 +82.102.19.141/32 +82.102.19.146/32 +82.102.19.195/32 +82.102.19.203/32 +82.102.19.211/32 +82.102.19.216/32 +82.102.20.35/32 +82.102.20.212/32 +82.102.21.35/32 +82.102.21.43/32 +82.102.21.123/32 +82.102.21.195/32 +82.102.22.83/32 +82.102.22.92/32 +82.102.22.219/32 +82.102.22.227/32 +82.102.22.235/32 +82.102.25.50/31 +82.102.25.52/32 +82.102.25.210/31 +82.102.25.212/32 +82.102.27.92/32 +82.102.27.147/32 +82.102.27.203/32 +82.102.27.211/32 +82.102.27.235/32 +82.102.27.243/32 +82.102.28.35/32 +82.102.28.83/32 +82.102.31.146/31 +82.102.31.148/32 +82.166.160.58/32 +82.180.148.245/32 +82.180.148.247/32 +82.180.148.249/32 +82.180.148.251/32 +82.180.150.146/32 +82.180.151.1/32 +82.180.151.7/32 +82.180.151.13/32 +82.180.151.19/32 +82.180.151.25/32 +82.180.151.31/32 +82.180.151.37/32 +82.180.151.43/32 +82.180.151.49/32 +82.180.151.55/32 +82.180.151.61/32 +82.180.151.67/32 +82.180.151.73/32 +82.180.151.79/32 +83.97.23.179/32 +83.97.23.180/30 +83.97.23.184/31 +83.97.23.186/32 +83.97.23.188/32 +83.136.106.49/32 +83.136.106.149/32 +83.136.106.155/32 +83.136.106.159/32 +83.136.106.205/32 +83.136.106.221/32 +83.136.106.231/32 +83.136.106.241/32 +83.136.106.244/32 +83.136.182.100/32 +83.136.182.102/32 +83.136.182.104/32 +83.136.182.106/32 +83.136.182.108/32 +83.136.182.110/32 +83.136.182.112/32 +83.136.182.114/32 +83.136.182.116/32 +83.136.182.118/32 +83.136.182.120/32 +83.136.182.122/32 +83.136.182.124/32 +83.136.182.126/32 +83.136.182.128/32 +83.136.182.130/32 +83.136.182.132/32 +83.136.182.134/32 +83.136.182.136/32 +83.136.182.138/32 +83.136.182.140/32 +83.136.182.142/32 +83.136.182.144/32 +83.136.182.146/32 +83.136.182.148/32 +83.136.182.150/32 +83.136.182.152/32 +83.136.182.154/32 +83.136.182.156/32 +83.136.182.158/32 +83.136.248.49/32 +83.136.248.81/32 +83.136.248.84/32 +83.136.248.126/32 +83.136.248.151/32 +83.136.249.135/32 +83.136.249.195/32 +83.136.250.35/32 +83.136.250.139/32 +83.136.250.154/32 +83.136.250.167/32 +83.136.251.171/32 +83.136.251.201/32 +83.143.87.194/32 +83.143.245.179/32 +83.143.245.187/32 +83.243.121.73/32 +83.243.121.145/32 +84.17.35.226/32 +84.17.35.231/32 +84.17.35.232/32 +84.17.35.236/32 +84.17.35.241/32 +84.17.35.242/32 +84.17.35.246/32 +84.17.36.130/32 +84.17.36.135/32 +84.17.36.138/32 +84.17.36.140/32 +84.17.36.143/32 +84.17.36.145/32 +84.17.36.150/32 +84.17.36.152/32 +84.17.36.155/32 +84.17.36.157/32 +84.17.36.186/32 +84.17.36.188/32 +84.17.36.248/32 +84.17.36.250/32 +84.17.37.66/32 +84.17.37.71/32 +84.17.37.76/32 +84.17.37.79/32 +84.17.37.81/32 +84.17.37.84/32 +84.17.37.86/32 +84.17.37.226/32 +84.17.37.229/32 +84.17.37.232/32 +84.17.37.235/32 +84.17.37.238/32 +84.17.37.241/32 +84.17.37.244/32 +84.17.37.247/32 +84.17.37.250/32 +84.17.39.130/32 +84.17.39.133/32 +84.17.39.136/32 +84.17.39.163/32 +84.17.39.164/30 +84.17.39.168/31 +84.17.39.171/32 +84.17.39.172/30 +84.17.39.176/32 +84.17.39.178/31 +84.17.39.180/32 +84.17.39.182/31 +84.17.39.184/31 +84.17.39.194/32 +84.17.39.197/32 +84.17.39.200/32 +84.17.39.203/32 +84.17.39.206/32 +84.17.39.209/32 +84.17.39.212/32 +84.17.39.215/32 +84.17.39.218/32 +84.17.39.221/32 +84.17.39.250/32 +84.17.41.130/32 +84.17.41.135/32 +84.17.41.140/32 +84.17.41.145/32 +84.17.41.150/32 +84.17.41.155/32 +84.17.41.160/32 +84.17.41.165/32 +84.17.41.170/32 +84.17.41.175/32 +84.17.41.182/32 +84.17.42.1/32 +84.17.42.2/31 +84.17.42.33/32 +84.17.42.35/32 +84.17.42.37/32 +84.17.42.98/32 +84.17.42.103/32 +84.17.42.108/32 +84.17.42.113/32 +84.17.42.118/31 +84.17.43.130/32 +84.17.43.133/32 +84.17.43.139/32 +84.17.43.142/32 +84.17.43.145/32 +84.17.43.148/32 +84.17.43.151/32 +84.17.43.154/32 +84.17.43.225/32 +84.17.44.66/32 +84.17.44.71/32 +84.17.44.76/32 +84.17.44.81/32 +84.17.44.86/32 +84.17.44.91/32 +84.17.44.96/32 +84.17.44.101/32 +84.17.44.106/32 +84.17.44.111/32 +84.17.44.116/32 +84.17.44.121/32 +84.17.44.122/32 +84.17.44.131/32 +84.17.44.136/32 +84.17.44.141/32 +84.17.44.146/32 +84.17.44.149/32 +84.17.44.152/32 +84.17.45.156/32 +84.17.45.194/31 +84.17.45.199/32 +84.17.45.202/32 +84.17.45.211/32 +84.17.46.1/32 +84.17.46.2/31 +84.17.47.92/30 +84.17.47.96/31 +84.17.47.99/32 +84.17.47.100/31 +84.17.47.102/32 +84.17.47.104/29 +84.17.47.112/31 +84.17.47.114/32 +84.17.47.116/30 +84.17.47.122/32 +84.17.47.124/31 +84.17.47.126/32 +84.17.47.146/31 +84.17.47.148/31 +84.17.47.150/32 +84.17.48.32/30 +84.17.48.36/31 +84.17.48.38/32 +84.17.48.40/32 +84.17.48.42/31 +84.17.48.44/31 +84.17.48.48/29 +84.17.48.62/32 +84.17.48.64/31 +84.17.48.66/32 +84.17.48.68/30 +84.17.48.72/29 +84.17.48.80/32 +84.17.48.82/31 +84.17.48.84/31 +84.17.48.92/30 +84.17.48.96/29 +84.17.48.105/32 +84.17.48.106/31 +84.17.48.108/31 +84.17.48.111/32 +84.17.48.112/32 +84.17.48.114/31 +84.17.50.129/32 +84.17.50.157/32 +84.17.50.193/32 +84.17.50.194/31 +84.17.51.209/32 +84.17.51.210/31 +84.17.51.212/31 +84.17.52.3/32 +84.17.52.4/32 +84.17.52.8/32 +84.17.52.10/32 +84.17.52.17/32 +84.17.52.26/32 +84.17.52.32/32 +84.17.52.34/31 +84.17.52.36/32 +84.17.52.38/32 +84.17.52.40/32 +84.17.52.42/31 +84.17.52.46/32 +84.17.52.49/32 +84.17.52.51/32 +84.17.52.54/32 +84.17.52.65/32 +84.17.52.66/32 +84.17.52.68/31 +84.17.52.70/32 +84.17.52.77/32 +84.17.53.1/32 +84.17.53.2/31 +84.17.54.34/32 +84.17.54.36/32 +84.17.55.82/32 +84.17.55.97/32 +84.17.55.98/31 +84.17.56.130/32 +84.17.56.132/30 +84.17.56.136/32 +84.17.56.138/31 +84.17.56.140/31 +84.17.56.143/32 +84.17.56.144/30 +84.17.56.149/32 +84.17.56.150/31 +84.17.56.152/31 +84.17.56.161/32 +84.17.56.162/32 +84.17.56.164/30 +84.17.56.168/31 +84.17.56.170/32 +84.17.56.172/31 +84.17.56.175/32 +84.17.56.176/31 +84.17.56.178/32 +84.17.56.180/30 +84.17.56.184/32 +84.17.57.34/32 +84.17.57.37/32 +84.17.57.39/32 +84.17.57.42/32 +84.17.57.44/32 +84.17.57.49/32 +84.17.57.51/32 +84.17.57.54/32 +84.17.57.56/32 +84.17.57.113/32 +84.17.57.114/31 +84.17.58.3/32 +84.17.58.4/30 +84.17.58.8/32 +84.17.58.10/31 +84.17.58.12/32 +84.17.58.14/32 +84.17.58.16/31 +84.17.58.19/32 +84.17.58.20/30 +84.17.58.24/31 +84.17.58.32/30 +84.17.58.36/31 +84.17.58.38/32 +84.17.58.41/32 +84.17.58.42/31 +84.17.58.44/30 +84.17.58.48/29 +84.17.58.56/30 +84.17.58.60/32 +84.17.58.93/32 +84.17.58.94/31 +84.17.58.96/31 +84.17.58.99/32 +84.17.58.101/32 +84.17.58.102/31 +84.17.58.104/31 +84.17.58.108/30 +84.17.58.114/31 +84.17.58.116/32 +84.17.58.118/31 +84.17.58.120/30 +84.17.59.65/32 +84.17.59.66/31 +84.17.60.4/30 +84.17.60.9/32 +84.17.60.11/32 +84.17.60.12/31 +84.17.60.49/32 +84.17.60.50/31 +84.17.60.52/31 +84.17.60.54/32 +84.17.60.56/32 +84.17.60.58/32 +84.17.60.60/31 +84.17.60.62/32 +84.17.60.64/29 +84.17.60.72/32 +84.17.60.81/32 +84.17.60.82/31 +84.17.60.84/30 +84.17.60.88/30 +84.17.60.92/32 +84.17.60.99/32 +84.17.60.142/31 +84.17.60.145/32 +84.17.60.146/31 +84.17.60.148/30 +84.17.60.153/32 +84.17.60.154/31 +84.17.60.156/30 +84.17.60.160/32 +84.17.60.162/31 +84.17.60.164/30 +84.17.60.168/32 +84.17.62.97/32 +84.17.62.100/32 +84.17.63.8/29 +84.17.63.16/30 +84.17.63.20/31 +84.17.63.54/31 +84.17.63.56/31 +84.17.63.58/32 +84.39.112.20/32 +84.239.14.146/31 +84.239.14.148/30 +84.239.14.152/30 +84.239.14.156/31 +84.239.14.159/32 +84.239.14.160/32 +84.239.14.163/32 +84.239.14.164/30 +84.239.14.168/32 +84.239.14.170/31 +84.239.14.172/32 +84.239.14.176/32 +84.239.40.197/32 +84.239.40.198/31 +84.239.40.200/32 +84.239.40.202/31 +84.239.40.204/30 +84.239.40.208/30 +84.239.40.212/31 +84.239.40.214/32 +84.239.40.216/31 +84.239.40.218/32 +84.239.40.220/30 +84.239.40.224/31 +84.239.40.227/32 +84.239.40.229/32 +84.239.40.230/31 +84.239.40.233/32 +84.239.40.234/31 +84.239.40.237/32 +84.239.40.239/32 +84.239.40.240/32 +84.239.40.242/31 +84.239.40.244/30 +84.239.40.248/31 +84.239.40.250/32 +84.239.40.252/31 +84.239.40.254/32 +84.239.42.131/32 +84.239.42.132/30 +84.239.42.136/32 +84.239.42.138/31 +84.239.42.140/30 +84.239.42.144/30 +84.239.42.148/31 +84.239.42.151/32 +84.239.42.152/32 +84.239.49.6/32 +84.239.49.8/30 +84.239.49.12/32 +84.239.49.15/32 +84.239.49.16/30 +84.239.49.22/32 +84.239.49.24/30 +84.239.49.28/32 +84.239.49.30/31 +84.239.49.32/32 +84.239.49.34/31 +84.239.49.37/32 +84.239.49.38/31 +84.239.49.40/30 +84.239.49.44/32 +84.239.49.46/31 +84.239.49.48/32 +84.239.49.50/32 +84.239.49.53/32 +84.239.49.54/31 +84.239.49.56/30 +84.239.49.60/31 +84.239.49.62/32 +84.239.49.133/32 +84.239.49.134/31 +84.239.49.136/31 +84.239.49.138/32 +84.239.49.141/32 +84.239.49.143/32 +84.239.49.144/31 +84.239.49.146/32 +84.239.49.148/31 +84.239.49.154/32 +84.239.49.156/30 +84.239.49.160/32 +84.239.49.162/31 +84.239.49.164/32 +84.239.49.166/31 +84.239.49.168/30 +84.239.49.172/31 +84.239.49.176/29 +84.239.49.184/32 +84.239.49.186/32 +84.239.49.188/32 +84.239.49.191/32 +84.239.49.192/31 +84.239.49.194/32 +84.239.49.197/32 +84.239.49.198/31 +84.239.49.200/31 +84.239.49.203/32 +84.239.49.204/31 +84.239.49.207/32 +84.239.49.208/30 +84.239.49.212/32 +84.239.49.214/31 +84.239.49.217/32 +84.239.49.218/31 +84.239.49.220/31 +84.239.49.222/32 +84.239.49.225/32 +84.239.49.226/32 +84.239.49.229/32 +84.239.49.230/31 +84.239.49.232/30 +84.239.49.236/32 +84.239.49.238/31 +84.239.49.240/31 +84.239.49.242/32 +84.239.49.244/32 +84.239.49.246/31 +84.239.49.248/32 +84.239.49.250/31 +84.239.49.253/32 +84.247.0.14/31 +84.247.0.16/29 +84.247.0.24/30 +84.247.0.28/31 +84.247.0.30/32 +84.247.0.32/32 +84.247.0.34/32 +84.247.0.36/32 +84.247.48.52/30 +84.247.48.56/30 +84.247.48.60/31 +84.247.48.62/32 +84.247.48.83/32 +84.247.50.35/32 +84.247.50.43/32 +84.247.50.51/32 +84.247.50.59/32 +84.247.50.178/31 +84.247.50.180/31 +84.247.50.182/32 +84.252.92.131/32 +84.252.92.132/30 +84.252.92.136/29 +84.252.95.146/31 +84.252.95.148/31 +84.252.95.150/32 +84.252.95.162/31 +84.252.95.164/31 +84.252.95.166/32 +84.252.112.1/32 +84.252.112.2/31 +84.252.112.4/30 +84.252.112.8/32 +84.252.113.1/32 +84.252.113.2/31 +84.252.113.4/30 +84.252.113.8/29 +84.252.113.16/28 +84.252.113.32/28 +84.252.113.48/32 +84.252.114.1/32 +84.252.114.2/31 +84.252.114.4/30 +84.252.114.8/32 +84.252.115.1/32 +84.252.115.2/31 +84.252.115.4/30 +84.252.115.8/32 +85.10.50.173/32 +85.10.51.4/32 +85.10.56.5/32 +85.122.161.3/32 +85.132.252.34/31 +85.132.252.36/31 +85.132.252.38/32 +85.190.229.4/32 +85.190.229.24/32 +85.190.229.44/32 +85.190.229.64/32 +85.190.229.84/32 +85.190.230.21/32 +85.190.230.22/31 +85.190.232.100/32 +85.190.232.102/32 +85.190.232.104/32 +85.190.232.106/32 +85.190.232.108/32 +85.190.232.110/32 +85.190.232.112/32 +85.190.232.114/32 +85.190.232.116/32 +85.190.232.118/32 +85.190.232.120/32 +85.190.232.122/32 +85.190.232.124/32 +85.190.232.126/32 +85.190.232.128/32 +85.190.232.130/32 +85.190.232.132/32 +85.190.232.134/32 +85.190.232.136/32 +85.190.232.138/32 +85.190.232.140/32 +85.190.232.142/32 +85.190.232.144/32 +85.190.232.146/32 +85.190.232.148/32 +85.190.232.150/32 +85.190.232.152/32 +85.190.232.154/32 +85.190.232.156/32 +85.190.232.158/32 +85.190.232.160/32 +85.190.232.162/32 +85.190.232.164/32 +85.190.232.166/32 +85.190.232.168/32 +85.190.232.170/32 +85.190.232.172/32 +85.190.238.1/32 +85.190.238.3/32 +85.190.238.5/32 +85.190.238.7/32 +85.190.238.9/32 +85.190.238.11/32 +85.190.238.13/32 +85.190.238.15/32 +85.190.238.17/32 +85.190.238.19/32 +85.190.238.21/32 +85.190.238.23/32 +85.190.238.25/32 +85.190.238.27/32 +85.190.238.29/32 +85.190.238.31/32 +85.190.238.33/32 +85.190.238.35/32 +85.190.238.37/32 +85.190.238.39/32 +85.190.239.100/32 +85.190.239.102/32 +85.190.239.104/32 +85.190.239.106/32 +85.190.239.108/32 +85.190.239.110/32 +85.190.239.112/32 +85.190.239.114/32 +85.190.239.116/32 +85.190.239.118/32 +85.202.81.124/32 +85.202.81.126/32 +85.202.81.133/32 +85.202.81.135/32 +85.202.81.137/32 +85.202.81.139/32 +85.202.81.141/32 +85.202.81.143/32 +85.202.81.145/32 +85.202.81.147/32 +85.202.81.149/32 +85.202.81.151/32 +85.202.81.153/32 +85.202.81.155/32 +85.202.81.157/32 +85.202.81.159/32 +85.202.81.161/32 +85.202.81.163/32 +85.202.81.165/32 +85.202.81.167/32 +85.202.81.169/32 +85.203.39.130/31 +85.203.39.132/32 +85.203.39.226/31 +85.203.39.228/30 +85.203.39.232/30 +85.203.39.236/31 +85.203.39.238/32 +85.204.78.1/32 +85.204.78.2/31 +85.204.78.4/30 +85.204.78.8/32 +85.214.137.248/32 +86.104.248.170/32 +86.105.9.11/32 +86.105.9.115/32 +86.106.74.243/32 +86.106.74.244/30 +86.106.74.248/32 +86.106.74.250/31 +86.106.74.252/31 +86.106.74.254/32 +86.106.87.82/31 +86.106.87.84/32 +86.106.87.98/32 +86.106.90.243/32 +86.106.103.19/32 +86.106.103.115/32 +86.106.103.195/32 +86.106.103.235/32 +86.106.103.243/32 +86.106.103.251/32 +86.106.119.53/32 +86.106.119.210/32 +86.106.121.3/32 +86.106.121.4/30 +86.106.121.8/29 +86.106.121.16/28 +86.106.137.11/32 +86.106.137.187/32 +86.107.55.227/32 +86.107.55.230/32 +86.107.55.233/32 +86.107.55.236/32 +86.107.55.239/32 +86.107.55.242/32 +86.107.55.245/32 +86.107.55.248/32 +86.107.55.251/32 +86.107.55.253/32 +87.98.166.160/32 +87.101.95.251/32 +87.120.102.3/32 +87.120.102.19/32 +87.120.102.35/32 +87.120.102.51/32 +87.120.102.67/32 +87.120.102.83/32 +87.120.103.226/31 +87.120.103.228/32 +87.120.103.242/31 +87.120.103.244/32 +87.249.132.97/32 +87.249.132.98/31 +87.249.132.196/32 +87.249.133.97/32 +87.249.133.98/31 +87.249.133.100/30 +87.249.133.104/31 +87.249.133.108/30 +87.249.133.112/31 +87.249.133.130/32 +87.249.133.135/32 +87.249.133.139/32 +87.249.133.143/32 +87.249.133.148/32 +87.249.133.150/32 +87.249.133.193/32 +87.249.133.194/31 +87.249.133.196/30 +87.249.133.200/29 +87.249.133.208/29 +87.249.133.216/32 +87.249.133.219/32 +87.249.133.220/30 +87.249.133.224/28 +87.249.133.240/31 +87.249.133.242/32 +87.249.134.133/32 +87.249.134.138/31 +87.249.135.2/32 +87.249.135.14/32 +87.249.135.26/32 +87.249.135.65/32 +87.249.135.77/32 +87.249.135.89/32 +87.249.135.211/32 +87.249.135.223/32 +87.249.135.235/32 +87.249.135.247/32 +87.249.137.215/32 +87.249.137.217/32 +87.249.139.2/32 +87.249.139.14/32 +87.249.139.26/32 +87.249.139.38/32 +87.249.139.50/32 +87.249.139.62/32 +87.249.139.74/32 +87.249.139.86/32 +87.249.139.98/32 +87.249.139.110/32 +87.249.139.122/32 +87.249.139.162/31 +87.249.139.164/30 +87.249.139.168/31 +87.249.139.170/32 +88.214.236.137/32 +89.33.8.50/32 +89.33.246.19/32 +89.33.246.27/32 +89.34.98.78/32 +89.34.98.82/32 +89.34.98.86/32 +89.34.98.90/32 +89.34.98.94/32 +89.34.98.98/32 +89.34.98.102/32 +89.34.98.106/32 +89.34.98.110/32 +89.34.98.114/32 +89.34.98.195/32 +89.34.99.131/32 +89.35.25.231/32 +89.35.28.131/32 +89.35.28.132/32 +89.35.30.163/32 +89.35.30.164/32 +89.35.30.179/32 +89.35.30.183/32 +89.35.30.187/32 +89.35.30.191/32 +89.35.30.195/32 +89.35.30.199/32 +89.35.30.203/32 +89.35.30.207/32 +89.35.30.211/32 +89.35.30.215/32 +89.35.30.219/32 +89.35.30.223/32 +89.35.30.227/32 +89.35.30.231/32 +89.35.30.235/32 +89.35.30.239/32 +89.35.30.243/32 +89.35.30.247/32 +89.35.30.251/32 +89.36.76.74/31 +89.36.76.76/31 +89.36.76.78/32 +89.36.76.130/31 +89.36.76.132/30 +89.36.76.136/30 +89.36.76.140/31 +89.36.76.142/32 +89.36.224.107/32 +89.36.224.243/32 +89.36.224.251/32 +89.37.173.142/32 +89.37.173.152/32 +89.37.173.162/32 +89.37.173.172/32 +89.37.173.182/32 +89.37.173.192/32 +89.37.173.201/32 +89.37.173.210/32 +89.37.173.219/32 +89.37.173.228/32 +89.37.173.237/32 +89.37.173.246/32 +89.38.97.138/32 +89.38.97.196/32 +89.38.99.72/32 +89.39.104.165/32 +89.39.105.213/32 +89.39.106.82/32 +89.39.107.109/32 +89.39.107.113/32 +89.39.107.156/32 +89.39.107.185/32 +89.39.107.188/32 +89.40.71.99/32 +89.40.71.243/32 +89.40.183.3/32 +89.40.183.6/32 +89.40.183.9/32 +89.40.183.12/32 +89.40.183.15/32 +89.40.183.18/32 +89.40.183.21/32 +89.40.183.24/32 +89.40.183.27/32 +89.40.183.29/32 +89.40.183.227/32 +89.41.26.50/32 +89.45.4.2/31 +89.45.4.4/30 +89.45.4.8/30 +89.45.4.12/31 +89.45.4.14/32 +89.45.224.2/31 +89.45.224.4/30 +89.45.224.8/29 +89.45.224.16/29 +89.45.224.24/30 +89.45.224.28/31 +89.45.224.30/32 +89.46.102.115/32 +89.46.103.171/32 +89.46.233.229/32 +89.46.233.244/32 +89.46.235.31/32 +89.46.236.237/32 +89.46.237.190/32 +89.46.237.221/32 +89.46.237.242/32 +89.46.239.210/32 +89.47.62.82/31 +89.47.62.84/32 +89.47.62.98/32 +89.47.234.171/32 +89.47.234.179/32 +89.47.234.187/32 +89.47.234.195/32 +89.47.234.203/32 +89.105.214.98/31 +89.105.214.100/30 +89.105.214.104/29 +89.105.214.112/29 +89.105.214.120/30 +89.105.214.124/31 +89.105.214.126/32 +89.164.99.14/32 +89.187.144.168/32 +89.187.145.7/32 +89.187.161.34/32 +89.187.161.39/32 +89.187.161.44/32 +89.187.161.49/32 +89.187.161.54/32 +89.187.161.66/32 +89.187.161.71/32 +89.187.161.76/32 +89.187.161.81/32 +89.187.161.86/32 +89.187.162.91/32 +89.187.162.103/32 +89.187.162.104/30 +89.187.162.108/32 +89.187.162.175/32 +89.187.162.176/32 +89.187.162.178/31 +89.187.162.180/31 +89.187.162.211/32 +89.187.162.212/31 +89.187.163.153/32 +89.187.163.154/32 +89.187.163.161/32 +89.187.163.163/32 +89.187.163.164/31 +89.187.163.166/32 +89.187.163.168/30 +89.187.163.172/31 +89.187.163.174/32 +89.187.163.176/30 +89.187.163.180/32 +89.187.164.241/32 +89.187.164.242/31 +89.187.164.244/30 +89.187.164.248/31 +89.187.164.250/32 +89.187.165.97/32 +89.187.165.98/31 +89.187.168.65/32 +89.187.168.66/31 +89.187.168.160/28 +89.187.168.176/30 +89.187.168.181/32 +89.187.168.182/31 +89.187.170.135/32 +89.187.170.158/31 +89.187.170.163/32 +89.187.170.164/32 +89.187.170.166/32 +89.187.170.173/32 +89.187.170.174/31 +89.187.170.176/30 +89.187.170.180/31 +89.187.170.182/32 +89.187.171.71/32 +89.187.171.76/32 +89.187.171.81/32 +89.187.171.86/32 +89.187.171.91/32 +89.187.171.96/32 +89.187.171.101/32 +89.187.171.104/32 +89.187.171.106/32 +89.187.171.110/32 +89.187.171.116/32 +89.187.171.225/32 +89.187.171.239/32 +89.187.171.240/29 +89.187.171.248/32 +89.187.175.2/32 +89.187.175.7/32 +89.187.175.12/32 +89.187.175.17/32 +89.187.175.22/32 +89.187.175.27/32 +89.187.175.32/32 +89.187.175.37/32 +89.187.175.42/32 +89.187.175.47/32 +89.187.175.53/32 +89.187.175.54/32 +89.187.175.57/32 +89.187.175.58/32 +89.187.175.97/32 +89.187.175.98/32 +89.187.175.129/32 +89.187.175.130/32 +89.187.175.132/32 +89.187.175.137/32 +89.187.175.141/32 +89.187.175.144/29 +89.187.175.168/32 +89.187.175.174/31 +89.187.177.42/32 +89.187.177.71/32 +89.187.177.145/32 +89.187.177.146/31 +89.187.177.148/31 +89.187.177.226/32 +89.187.177.231/32 +89.187.177.236/32 +89.187.177.241/32 +89.187.177.246/32 +89.187.178.2/32 +89.187.178.7/32 +89.187.178.12/32 +89.187.178.17/32 +89.187.178.22/32 +89.187.178.27/32 +89.187.178.32/32 +89.187.178.37/32 +89.187.178.42/32 +89.187.178.47/32 +89.187.178.52/32 +89.187.178.173/32 +89.187.178.174/31 +89.187.178.176/30 +89.187.178.195/32 +89.187.178.200/30 +89.187.178.204/32 +89.187.179.55/32 +89.187.180.1/32 +89.187.180.14/31 +89.187.180.16/28 +89.187.180.32/28 +89.187.180.48/30 +89.187.180.52/32 +89.187.180.54/31 +89.187.182.3/32 +89.187.182.5/32 +89.187.182.6/31 +89.187.182.8/29 +89.187.182.17/32 +89.187.182.18/31 +89.187.182.20/30 +89.187.182.24/32 +89.187.182.26/31 +89.187.182.28/30 +89.187.182.32/30 +89.187.182.36/31 +89.187.182.39/32 +89.187.182.40/30 +89.187.182.44/32 +89.187.182.46/31 +89.187.182.48/32 +89.187.182.66/32 +89.187.182.71/32 +89.187.182.76/32 +89.187.182.81/32 +89.187.182.86/32 +89.187.182.91/32 +89.187.182.96/32 +89.187.182.101/32 +89.187.182.106/32 +89.187.182.111/32 +89.187.182.121/32 +89.187.183.135/32 +89.187.183.138/32 +89.187.183.146/32 +89.187.183.151/32 +89.187.183.162/32 +89.187.183.167/32 +89.187.183.172/32 +89.187.183.177/32 +89.187.183.182/32 +89.187.183.186/32 +89.187.185.33/32 +89.187.185.34/31 +89.187.185.86/32 +89.187.185.97/32 +89.187.185.161/32 +89.187.187.97/32 +89.187.187.98/31 +89.238.150.149/32 +89.238.150.228/31 +89.238.150.230/32 +89.238.176.213/32 +89.238.178.211/32 +89.238.186.235/32 +89.238.186.251/32 +89.238.191.173/32 +89.238.191.197/32 +89.238.191.198/32 +89.238.191.202/32 +89.238.191.207/32 +89.238.191.212/32 +89.249.65.67/32 +89.249.65.75/32 +89.249.65.83/32 +89.249.65.91/32 +89.249.65.99/32 +89.249.65.107/32 +89.249.65.115/32 +89.249.65.202/32 +89.249.74.234/31 +89.249.74.236/31 +89.249.74.238/32 +89.252.132.18/31 +89.252.132.20/32 +91.90.120.4/31 +91.90.120.6/32 +91.90.120.8/30 +91.90.120.12/31 +91.90.120.15/32 +91.90.120.16/31 +91.90.121.147/32 +91.90.121.179/32 +91.90.121.180/31 +91.90.121.184/31 +91.90.121.186/32 +91.90.121.188/31 +91.90.121.190/32 +91.90.122.131/32 +91.90.122.132/30 +91.90.122.137/32 +91.90.122.138/31 +91.90.122.140/30 +91.90.122.145/32 +91.90.122.147/32 +91.90.122.149/32 +91.90.122.150/31 +91.90.122.152/32 +91.90.122.154/31 +91.90.122.156/30 +91.90.123.50/31 +91.90.123.52/30 +91.90.123.56/30 +91.90.123.60/31 +91.90.123.62/32 +91.90.123.114/31 +91.90.123.116/31 +91.90.123.118/32 +91.90.123.171/32 +91.90.123.178/31 +91.90.123.180/30 +91.90.123.184/30 +91.90.123.188/31 +91.90.123.190/32 +91.90.123.195/32 +91.90.124.132/32 +91.90.124.134/31 +91.90.124.136/30 +91.90.124.140/31 +91.90.124.143/32 +91.90.124.144/32 +91.90.124.147/32 +91.90.124.149/32 +91.90.124.150/31 +91.90.124.152/31 +91.90.124.155/32 +91.90.124.156/30 +91.90.126.131/32 +91.90.126.132/30 +91.90.126.136/29 +91.90.126.144/31 +91.132.92.58/32 +91.132.92.77/32 +91.132.92.91/32 +91.132.92.196/32 +91.132.94.73/32 +91.132.94.87/32 +91.132.94.158/32 +91.132.94.161/32 +91.132.136.235/32 +91.132.137.67/32 +91.132.137.75/32 +91.132.137.99/32 +91.132.137.107/32 +91.132.137.115/32 +91.132.137.123/32 +91.132.138.67/32 +91.132.138.155/32 +91.132.138.163/32 +91.132.138.179/32 +91.132.138.187/32 +91.132.138.195/32 +91.132.138.196/32 +91.132.138.203/32 +91.132.138.211/32 +91.132.138.212/32 +91.132.138.219/32 +91.132.138.220/32 +91.132.138.227/32 +91.132.138.228/32 +91.132.139.2/31 +91.132.139.4/30 +91.132.139.8/29 +91.132.139.16/29 +91.132.139.24/30 +91.132.139.28/31 +91.132.139.30/32 +91.132.139.59/32 +91.132.139.75/32 +91.132.139.83/32 +91.191.213.150/32 +91.195.98.82/31 +91.195.98.84/32 +91.195.98.146/32 +91.195.99.162/32 +91.196.69.1/32 +91.196.69.3/32 +91.196.69.5/32 +91.196.69.7/32 +91.196.69.9/32 +91.196.69.11/32 +91.196.69.13/32 +91.196.69.15/32 +91.196.69.17/32 +91.196.69.19/32 +91.196.69.21/32 +91.196.69.23/32 +91.196.69.25/32 +91.196.69.27/32 +91.196.69.29/32 +91.196.69.31/32 +91.196.69.33/32 +91.196.69.35/32 +91.196.69.37/32 +91.196.220.2/32 +91.196.220.4/32 +91.196.220.6/32 +91.196.220.8/32 +91.196.220.10/32 +91.196.220.12/32 +91.196.220.14/32 +91.196.220.16/32 +91.196.220.18/32 +91.196.220.20/32 +91.196.220.22/32 +91.196.220.24/32 +91.196.220.26/32 +91.196.220.28/32 +91.196.220.30/32 +91.196.220.32/32 +91.196.220.34/32 +91.196.220.36/32 +91.196.220.38/32 +91.196.220.40/32 +91.196.220.42/32 +91.196.220.44/32 +91.196.220.46/32 +91.196.220.48/32 +91.196.220.50/32 +91.196.220.52/32 +91.196.220.54/32 +91.196.220.56/32 +91.196.220.58/32 +91.196.220.60/32 +91.196.220.62/32 +91.200.242.150/32 +91.200.242.190/32 +91.200.242.194/32 +91.200.242.203/32 +91.200.242.206/32 +91.200.242.210/32 +91.205.230.66/32 +91.205.230.193/32 +91.205.230.201/32 +91.205.230.209/32 +91.205.230.217/32 +91.205.230.241/32 +91.205.230.249/32 +91.207.57.251/32 +91.207.102.146/31 +91.207.102.148/32 +91.207.172.67/32 +91.207.172.72/32 +91.207.172.77/32 +91.207.172.85/32 +91.207.172.90/32 +91.207.174.2/32 +91.207.174.147/32 +91.207.174.155/32 +91.207.174.163/32 +91.207.175.27/32 +91.207.175.131/32 +91.207.175.139/32 +91.207.175.147/32 +91.214.64.4/32 +91.214.64.21/32 +91.214.64.41/32 +91.214.64.63/32 +91.214.64.82/32 +91.214.64.101/32 +91.214.64.122/32 +91.214.64.151/32 +91.214.64.166/32 +91.214.64.187/32 +91.214.64.207/32 +91.214.64.247/32 +91.214.65.16/32 +91.214.65.40/32 +91.214.65.58/32 +91.214.65.79/32 +91.214.65.101/32 +91.214.65.121/32 +91.214.65.149/32 +91.214.65.169/32 +91.214.65.189/32 +91.215.152.12/32 +91.219.212.82/32 +91.219.215.98/32 +91.219.236.55/32 +91.219.236.186/32 +91.219.238.36/31 +91.219.238.39/32 +91.221.66.218/32 +91.225.105.30/32 +91.228.216.3/32 +91.233.117.151/32 +91.250.240.42/32 +91.250.240.50/32 +91.250.240.58/32 +91.250.240.66/32 +92.118.150.22/32 +92.119.17.3/32 +92.119.17.6/32 +92.119.17.9/32 +92.119.17.12/32 +92.119.17.15/32 +92.119.17.18/32 +92.119.17.21/32 +92.119.17.24/32 +92.119.17.27/32 +92.119.17.30/32 +92.119.17.33/32 +92.119.17.36/32 +92.119.17.39/32 +92.119.17.42/32 +92.119.17.45/32 +92.119.17.48/32 +92.119.17.51/32 +92.119.17.54/32 +92.119.17.57/32 +92.119.17.60/32 +92.119.17.63/32 +92.119.17.66/32 +92.119.17.69/32 +92.119.17.72/32 +92.119.17.75/32 +92.119.17.78/32 +92.119.17.81/32 +92.119.17.84/32 +92.119.17.87/32 +92.119.17.90/32 +92.119.17.93/32 +92.119.17.96/32 +92.119.17.99/32 +92.119.17.102/32 +92.119.17.105/32 +92.119.17.108/32 +92.119.17.111/32 +92.119.17.114/32 +92.119.17.117/32 +92.119.17.120/32 +92.119.17.123/32 +92.119.17.126/32 +92.119.17.129/32 +92.119.17.132/32 +92.119.17.135/32 +92.119.17.138/32 +92.119.17.141/32 +92.119.17.144/32 +92.119.17.147/32 +92.119.17.150/32 +92.119.17.153/32 +92.119.17.156/32 +92.119.17.159/32 +92.119.17.162/32 +92.119.17.165/32 +92.119.17.168/32 +92.119.17.171/32 +92.119.17.174/32 +92.119.17.177/32 +92.119.17.180/32 +92.119.17.183/32 +92.119.17.186/32 +92.119.19.130/32 +92.119.19.132/32 +92.119.19.134/32 +92.119.19.136/32 +92.119.19.138/32 +92.119.19.140/32 +92.119.19.142/32 +92.119.19.144/32 +92.119.177.82/31 +92.119.177.84/32 +92.119.179.82/32 +92.223.105.123/32 +92.243.64.30/32 +92.243.64.60/32 +92.243.64.104/32 +92.243.64.151/32 +92.243.65.69/32 +92.243.65.93/32 +92.243.65.97/32 +92.243.65.188/32 +92.243.66.62/32 +92.243.66.79/32 +92.243.66.107/32 +92.243.66.119/32 +92.243.66.152/32 +92.243.66.203/32 +93.113.202.1/32 +93.113.202.2/31 +93.113.202.4/30 +93.113.202.8/32 +93.114.129.23/32 +93.114.129.25/32 +93.114.129.29/32 +93.114.129.31/32 +93.114.129.33/32 +93.114.129.35/32 +93.114.129.37/32 +93.114.129.39/32 +93.114.129.41/32 +93.114.129.43/32 +93.114.129.45/32 +93.114.129.47/32 +93.114.129.49/32 +93.114.129.51/32 +93.114.129.52/32 +93.114.129.54/32 +93.114.129.56/32 +93.114.129.58/32 +93.114.129.60/32 +93.114.129.62/32 +93.114.129.87/32 +93.114.129.89/32 +93.114.129.91/32 +93.114.129.93/32 +93.114.129.95/32 +93.114.129.97/32 +93.114.129.99/32 +93.114.129.101/32 +93.114.129.103/32 +93.114.129.105/32 +93.115.28.181/32 +93.177.74.165/32 +93.177.74.170/32 +93.177.74.179/32 +93.190.138.166/32 +93.190.140.80/32 +93.190.141.58/32 +93.190.142.102/32 +94.46.185.115/32 +94.46.185.147/32 +94.46.185.163/32 +94.46.187.179/32 +94.46.192.99/32 +94.46.194.211/32 +94.46.195.147/32 +94.46.195.243/32 +94.46.222.35/32 +94.46.222.67/32 +94.46.222.147/32 +94.46.223.19/32 +94.46.245.211/32 +94.101.87.12/32 +94.101.87.40/31 +94.101.87.144/32 +94.137.92.1/32 +94.137.92.2/31 +94.137.92.4/30 +94.137.92.8/32 +94.137.94.1/32 +94.137.94.2/31 +94.137.94.4/30 +94.137.94.8/32 +94.140.11.1/32 +94.140.11.3/32 +94.140.11.5/32 +94.140.11.7/32 +94.140.11.9/32 +94.140.11.11/32 +94.140.11.13/32 +94.140.11.15/32 +94.140.11.17/32 +94.140.11.19/32 +94.140.11.21/32 +94.140.11.23/32 +94.140.11.25/32 +94.140.11.27/32 +94.140.11.29/32 +94.140.11.31/32 +94.140.11.33/32 +94.140.11.35/32 +94.140.11.37/32 +94.190.195.24/29 +94.190.195.232/29 +94.229.69.243/32 +94.229.73.147/32 +94.229.73.187/32 +94.229.75.83/32 +94.229.76.195/32 +94.237.32.18/32 +94.237.33.219/32 +94.237.34.39/32 +94.237.35.200/32 +94.237.36.166/32 +94.237.39.76/32 +94.237.39.175/32 +94.237.40.100/32 +94.237.40.121/32 +94.237.40.144/32 +94.237.42.20/32 +94.237.42.60/32 +94.237.45.51/32 +94.237.45.177/32 +94.237.47.0/32 +94.237.47.18/32 +94.237.47.160/32 +94.237.48.134/32 +94.237.48.239/32 +94.237.109.151/32 +94.237.111.18/32 +94.237.111.58/32 +94.237.111.100/32 +94.237.115.113/32 +94.237.115.203/32 +94.237.117.240/32 +94.237.118.2/32 +94.237.119.121/32 +94.237.124.131/32 +94.242.50.173/32 +94.242.50.174/31 +94.242.50.183/32 +94.242.50.184/31 +94.242.50.193/32 +94.242.50.194/31 +94.242.50.203/32 +94.242.50.204/31 +94.242.50.213/32 +94.242.50.214/31 +94.242.59.241/32 +95.111.212.83/32 +95.111.212.160/32 +95.111.212.203/32 +95.111.213.0/32 +95.111.213.64/32 +95.111.215.58/32 +95.111.215.88/32 +95.111.215.209/32 +95.111.215.253/32 +95.141.32.101/32 +95.141.32.203/32 +95.141.35.9/32 +95.141.36.242/32 +95.143.177.66/31 +95.143.177.69/32 +95.143.177.98/31 +95.143.177.101/32 +95.153.31.114/31 +95.153.31.116/30 +95.153.31.120/30 +95.153.31.124/31 +95.153.31.126/32 +95.156.204.126/32 +95.156.204.135/32 +95.156.204.214/32 +95.173.205.129/32 +95.173.205.130/31 +95.173.205.132/30 +95.173.205.136/29 +95.173.205.144/29 +95.173.205.152/30 +95.173.205.156/31 +95.173.216.177/32 +95.173.216.178/31 +95.173.217.2/31 +95.173.217.4/30 +95.173.217.8/29 +95.173.217.16/28 +95.173.217.32/28 +95.173.217.48/29 +95.173.217.65/32 +95.173.217.71/32 +95.173.219.1/32 +95.173.219.2/31 +95.173.221.1/32 +95.173.221.2/31 +95.173.221.33/32 +95.173.221.34/31 +95.173.221.36/30 +95.173.221.40/29 +95.173.221.48/29 +95.173.221.56/30 +95.173.221.65/32 +95.173.221.66/31 +95.173.221.68/30 +95.173.221.72/29 +95.173.221.80/28 +95.173.221.96/28 +95.173.221.112/30 +95.173.221.116/31 +95.173.221.118/32 +95.173.221.129/32 +95.173.221.130/32 +95.173.221.158/31 +95.173.221.187/32 +95.173.221.188/32 +95.173.223.78/31 +95.173.223.80/32 +95.174.64.35/32 +95.174.65.163/32 +95.174.65.171/32 +95.174.66.27/32 +95.174.66.67/32 +95.174.66.83/32 +95.174.66.131/32 +95.174.66.179/32 +95.174.66.187/32 +95.174.66.195/32 +95.174.66.227/32 +95.174.66.235/32 +95.174.66.251/32 +95.179.196.79/32 +95.179.206.200/32 +95.179.208.249/32 +95.181.232.131/32 +95.181.232.132/31 +95.181.232.134/32 +95.181.232.137/32 +95.181.232.139/32 +95.181.232.141/32 +95.181.232.142/31 +95.181.232.144/32 +95.181.233.131/32 +95.181.233.132/30 +95.181.233.136/30 +95.181.233.140/31 +95.181.233.143/32 +95.181.233.144/32 +95.181.233.146/31 +95.181.233.148/30 +95.181.233.153/32 +95.181.233.154/31 +95.181.233.156/31 +95.181.234.131/32 +95.181.234.132/32 +95.181.234.134/31 +95.181.234.136/30 +95.181.234.141/32 +95.181.234.142/31 +95.181.234.144/32 +95.181.235.131/32 +95.181.235.132/30 +95.181.235.136/31 +95.181.235.138/32 +95.181.235.141/32 +95.181.235.142/31 +95.181.235.144/32 +95.181.236.131/32 +95.181.236.132/32 +95.181.236.134/31 +95.181.236.136/32 +95.181.236.138/31 +95.181.236.140/30 +95.181.236.144/32 +95.181.237.131/32 +95.181.237.132/30 +95.181.237.136/29 +95.181.237.144/32 +95.181.238.131/32 +95.181.238.132/30 +95.181.238.136/30 +95.181.238.140/31 +95.181.238.142/32 +95.181.238.155/32 +95.181.238.157/32 +95.181.238.158/31 +95.181.238.160/31 +95.181.238.163/32 +95.181.238.165/32 +95.181.238.167/32 +95.181.239.131/32 +95.181.239.132/30 +95.181.239.136/29 +95.181.239.144/32 +95.216.52.4/32 +96.9.245.99/32 +96.9.245.100/32 +96.9.246.91/32 +96.9.246.92/32 +96.9.246.123/32 +96.9.246.124/32 +96.9.246.179/32 +96.9.246.180/32 +96.9.247.187/32 +96.9.247.188/32 +96.9.251.2/32 +96.9.251.4/32 +96.9.251.6/32 +96.9.251.8/32 +96.9.251.10/32 +96.45.193.151/32 +96.47.239.194/32 +100.24.143.142/32 +102.38.199.1/32 +102.38.199.2/31 +102.38.199.4/30 +102.38.199.8/32 +102.38.204.1/32 +102.38.204.2/31 +102.38.204.4/30 +102.38.204.8/32 +102.129.145.10/31 +102.129.145.12/30 +102.129.145.16/31 +102.129.145.18/32 +102.129.145.20/32 +102.129.145.22/31 +102.129.145.24/31 +102.129.145.26/32 +102.129.145.28/31 +102.129.145.30/32 +102.129.145.33/32 +102.129.145.34/31 +102.129.145.37/32 +102.129.145.38/31 +102.129.145.41/32 +102.129.145.43/32 +102.129.145.45/32 +102.129.145.46/31 +102.129.145.48/29 +102.129.145.56/31 +102.129.145.59/32 +102.129.145.60/30 +102.129.145.64/29 +102.129.145.72/32 +102.129.145.74/31 +102.129.145.76/30 +102.129.145.80/32 +102.129.145.82/31 +102.129.145.84/32 +102.129.145.86/31 +102.129.145.88/32 +102.129.145.90/31 +102.129.145.92/30 +102.129.145.97/32 +102.129.145.98/31 +102.129.153.220/30 +102.129.153.224/31 +102.129.153.226/32 +102.129.153.229/32 +102.129.153.232/30 +102.129.153.236/31 +102.129.153.240/30 +102.129.153.245/32 +102.129.153.246/31 +102.129.224.190/32 +102.165.48.41/32 +102.165.48.42/32 +102.165.48.44/30 +102.165.48.48/29 +102.165.48.56/31 +102.165.48.59/32 +102.165.48.60/31 +102.165.48.63/32 +102.165.48.64/29 +102.165.48.72/30 +102.165.48.77/32 +102.165.48.79/32 +102.165.48.80/31 +102.165.48.83/32 +102.165.48.85/32 +102.165.48.87/32 +102.165.48.88/31 +102.165.48.90/32 +102.165.48.92/30 +102.165.48.96/31 +102.165.48.98/32 +102.165.48.101/32 +102.165.48.102/32 +102.218.103.1/32 +102.218.103.2/31 +102.218.103.4/30 +102.218.103.8/30 +102.218.103.12/32 +103.1.212.19/32 +103.1.212.27/32 +103.1.212.35/32 +103.1.212.43/32 +103.1.212.51/32 +103.1.212.59/32 +103.1.212.67/32 +103.1.212.75/32 +103.1.212.83/32 +103.1.212.91/32 +103.1.212.99/32 +103.1.212.107/32 +103.1.212.115/32 +103.1.212.123/32 +103.1.212.131/32 +103.1.212.139/32 +103.1.212.147/32 +103.1.212.155/32 +103.1.212.163/32 +103.1.212.187/32 +103.1.212.195/32 +103.1.212.242/31 +103.1.212.244/32 +103.1.213.139/32 +103.1.213.163/32 +103.1.213.210/31 +103.1.213.212/32 +103.4.29.76/31 +103.4.29.78/32 +103.4.30.197/32 +103.4.30.203/32 +103.9.79.185/32 +103.9.79.186/31 +103.9.79.218/31 +103.9.79.220/32 +103.15.105.132/32 +103.26.207.94/32 +103.26.207.103/32 +103.26.207.104/31 +103.26.207.213/32 +103.26.207.214/32 +103.27.203.46/31 +103.47.154.122/32 +103.50.33.48/32 +103.50.33.64/32 +103.50.33.74/32 +103.50.33.84/32 +103.50.33.94/32 +103.50.33.111/32 +103.50.33.121/32 +103.50.33.149/32 +103.50.33.159/32 +103.57.248.156/32 +103.57.248.164/32 +103.62.50.130/31 +103.62.50.132/32 +103.69.224.2/31 +103.69.224.4/31 +103.69.224.6/32 +103.69.224.10/31 +103.69.224.12/30 +103.69.224.16/28 +103.69.224.32/28 +103.69.224.48/29 +103.69.224.56/30 +103.69.224.60/31 +103.69.224.62/32 +103.69.224.64/26 +103.69.224.128/27 +103.69.224.160/32 +103.75.11.18/31 +103.75.11.20/30 +103.75.11.24/31 +103.75.11.26/32 +103.75.11.34/31 +103.75.11.36/31 +103.75.11.38/32 +103.75.11.130/31 +103.75.11.132/30 +103.75.11.136/30 +103.75.11.140/31 +103.75.11.142/32 +103.75.119.13/32 +103.77.232.74/31 +103.77.232.76/32 +103.77.234.210/31 +103.77.234.212/32 +103.87.68.50/31 +103.87.68.52/32 +103.87.68.146/31 +103.87.68.148/32 +103.104.28.105/32 +103.107.196.131/32 +103.107.196.139/32 +103.107.196.147/32 +103.107.196.155/32 +103.107.196.163/32 +103.107.196.171/32 +103.107.196.179/32 +103.107.196.187/32 +103.107.196.195/32 +103.107.196.211/32 +103.107.196.227/32 +103.107.196.235/32 +103.107.196.243/32 +103.107.197.75/32 +103.107.197.83/32 +103.107.197.91/32 +103.107.197.99/32 +103.107.197.107/32 +103.107.197.115/32 +103.107.197.123/32 +103.107.197.131/32 +103.107.197.139/32 +103.107.197.146/31 +103.107.197.148/32 +103.107.198.91/32 +103.107.198.99/32 +103.107.198.107/32 +103.107.198.115/32 +103.107.198.123/32 +103.107.198.131/32 +103.107.198.139/32 +103.107.198.163/32 +103.107.198.226/31 +103.107.198.228/32 +103.107.198.242/31 +103.107.198.244/32 +103.107.199.99/32 +103.107.199.107/32 +103.107.199.123/32 +103.107.199.131/32 +103.107.199.139/32 +103.107.199.147/32 +103.107.199.155/32 +103.108.92.82/31 +103.108.92.84/32 +103.108.94.130/32 +103.108.94.162/31 +103.108.94.164/32 +103.108.95.226/31 +103.108.95.228/32 +103.108.229.18/31 +103.108.229.20/30 +103.108.229.24/31 +103.108.229.26/32 +103.108.229.242/31 +103.108.229.244/30 +103.108.229.248/30 +103.108.229.252/31 +103.108.229.254/32 +103.108.231.18/31 +103.108.231.20/30 +103.108.231.24/31 +103.108.231.26/32 +103.108.231.162/31 +103.108.231.164/30 +103.108.231.168/30 +103.108.231.172/31 +103.108.231.174/32 +103.108.231.178/31 +103.108.231.180/31 +103.108.231.182/32 +103.125.235.18/31 +103.125.235.20/32 +103.125.235.25/32 +103.125.235.26/31 +103.125.235.28/30 +103.125.235.32/32 +103.126.138.186/32 +103.135.244.2/31 +103.137.12.19/32 +103.137.12.27/32 +103.137.12.43/32 +103.137.12.51/32 +103.137.12.115/32 +103.137.12.123/32 +103.137.12.131/32 +103.137.12.139/32 +103.137.12.147/32 +103.137.12.155/32 +103.137.12.163/32 +103.137.12.171/32 +103.137.12.179/32 +103.137.12.187/32 +103.137.12.195/32 +103.137.12.203/32 +103.137.12.211/32 +103.137.12.219/32 +103.137.12.227/32 +103.137.12.235/32 +103.137.12.243/32 +103.137.12.251/32 +103.137.14.34/31 +103.137.14.36/32 +103.137.14.131/32 +103.137.14.139/32 +103.137.14.147/32 +103.137.14.155/32 +103.137.14.163/32 +103.137.14.171/32 +103.137.14.179/32 +103.137.14.187/32 +103.137.14.195/32 +103.137.14.211/32 +103.137.14.219/32 +103.137.14.227/32 +103.137.14.235/32 +103.137.14.243/32 +103.137.15.11/32 +103.137.15.19/32 +103.137.15.27/32 +103.137.15.35/32 +103.137.15.43/32 +103.137.15.51/32 +103.137.15.59/32 +103.137.15.67/32 +103.137.15.75/32 +103.137.15.83/32 +103.155.232.220/30 +103.155.232.224/29 +103.155.232.232/31 +103.155.232.234/32 +103.163.218.43/32 +103.163.218.48/32 +103.163.218.53/32 +103.163.218.58/32 +103.163.218.121/32 +103.192.80.3/32 +103.205.140.227/32 +103.212.223.52/32 +103.212.224.195/32 +103.212.224.203/32 +103.212.224.211/32 +103.212.224.219/32 +103.212.224.227/32 +103.212.227.115/32 +103.212.227.147/32 +103.212.227.155/32 +103.212.227.163/32 +103.212.227.171/32 +103.212.227.179/32 +103.212.227.187/32 +103.214.20.98/31 +103.214.20.100/30 +103.214.20.104/31 +103.214.20.106/32 +103.214.20.210/31 +103.214.20.212/30 +103.214.20.216/30 +103.214.20.220/31 +103.214.20.222/32 +103.214.20.250/31 +103.214.20.252/31 +103.214.20.254/32 +103.214.45.2/32 +103.214.45.12/32 +103.214.45.22/32 +103.214.45.32/32 +103.214.45.42/32 +103.214.45.52/32 +103.214.45.62/32 +103.214.45.72/32 +103.214.45.82/32 +103.214.45.92/32 +103.214.45.102/32 +103.214.45.112/32 +103.214.45.122/32 +103.214.45.132/32 +103.214.45.142/32 +103.214.45.152/32 +103.214.45.162/32 +103.214.45.172/32 +103.214.45.182/32 +103.214.45.192/32 +103.214.45.202/32 +103.214.45.212/32 +103.214.45.222/32 +103.214.45.233/32 +103.214.45.244/32 +103.216.220.90/31 +103.216.220.92/31 +103.216.220.94/32 +103.216.220.98/31 +103.216.220.100/30 +103.216.220.104/30 +103.216.220.108/31 +103.216.220.110/32 +103.216.220.114/31 +103.216.220.116/30 +103.216.220.120/30 +103.216.220.124/31 +103.216.220.126/32 +103.219.20.2/32 +103.219.20.13/32 +103.219.20.24/32 +103.219.20.35/32 +103.219.20.46/32 +103.219.20.57/32 +103.219.20.68/32 +103.219.20.79/32 +103.219.20.90/32 +103.219.20.101/32 +103.219.20.112/32 +103.219.20.123/32 +103.219.20.134/32 +103.219.20.145/32 +103.219.20.156/32 +103.219.20.167/32 +103.219.20.178/32 +103.219.20.189/32 +103.219.20.200/32 +103.219.20.211/32 +103.219.20.222/32 +103.219.20.233/32 +103.219.20.244/32 +103.230.142.227/32 +103.231.90.103/32 +104.131.133.68/32 +104.131.166.124/32 +104.131.177.117/32 +104.131.179.7/32 +104.131.179.21/32 +104.131.179.66/32 +104.131.179.135/32 +104.131.179.145/32 +104.131.179.201/32 +104.131.179.213/32 +104.131.179.223/32 +104.131.180.11/32 +104.152.222.32/31 +104.152.222.34/32 +104.156.226.113/32 +104.156.232.115/32 +104.160.25.67/32 +104.160.25.75/32 +104.168.34.146/31 +104.168.34.148/32 +104.207.148.6/32 +104.207.150.248/32 +104.207.151.159/32 +104.223.81.18/32 +104.223.81.66/32 +104.223.81.130/32 +104.223.81.194/32 +104.223.93.130/32 +104.223.93.194/32 +104.223.95.130/32 +104.223.102.2/32 +104.223.103.66/32 +104.223.104.194/32 +104.223.127.194/31 +104.223.127.196/32 +104.234.212.2/31 +104.234.212.4/30 +104.234.212.8/29 +104.234.212.16/28 +104.234.212.32/27 +104.234.212.64/27 +104.234.212.96/28 +104.234.212.112/29 +104.234.212.120/30 +104.234.212.124/31 +104.234.212.126/32 +104.234.212.130/31 +104.234.212.132/30 +104.234.212.136/30 +104.234.212.140/31 +104.238.129.134/32 +104.238.134.236/32 +104.238.161.13/32 +104.238.170.71/32 +104.238.187.199/32 +104.238.188.118/32 +104.238.249.117/32 +104.244.158.103/32 +104.244.209.34/31 +104.244.209.36/32 +104.244.209.66/31 +104.244.209.68/32 +104.244.210.50/31 +104.244.210.52/32 +104.244.210.242/31 +104.244.210.244/32 +104.245.144.186/32 +104.248.226.35/32 +104.248.230.30/32 +104.248.230.44/32 +104.248.230.228/32 +104.248.232.125/32 +104.248.232.134/32 +104.248.232.193/32 +104.248.232.252/32 +104.248.234.46/32 +104.248.234.189/32 +104.248.234.230/32 +104.248.236.233/32 +104.248.239.94/32 +104.254.59.13/32 +104.254.92.10/31 +104.254.92.12/32 +104.254.92.74/32 +104.254.92.90/31 +104.254.92.92/32 +104.254.92.98/31 +104.254.92.100/32 +104.254.95.98/31 +104.254.95.100/30 +104.254.95.104/29 +104.254.95.112/29 +104.254.95.120/30 +104.254.95.124/31 +104.254.95.126/32 +104.255.169.109/32 +104.255.169.110/31 +107.22.193.119/32 +107.150.22.194/32 +107.150.23.130/32 +107.150.30.194/32 +107.150.31.2/32 +107.150.31.194/32 +107.161.86.130/32 +107.173.59.99/32 +107.173.59.139/32 +107.173.59.155/32 +107.173.69.11/32 +107.173.69.147/32 +107.173.69.155/32 +107.173.69.187/32 +107.173.69.188/32 +107.173.69.195/32 +107.173.69.203/32 +107.173.69.219/32 +107.173.69.227/32 +107.173.69.235/32 +107.173.73.3/32 +107.173.73.27/32 +107.173.73.35/32 +107.173.73.43/32 +107.174.17.3/32 +107.174.17.83/32 +107.174.17.99/32 +107.174.17.107/32 +107.174.17.115/32 +107.174.17.131/32 +107.174.17.139/32 +107.174.17.243/32 +107.174.17.251/32 +107.175.40.211/32 +107.175.40.219/32 +107.175.40.235/32 +107.175.104.195/32 +107.175.104.203/32 +107.175.104.227/32 +107.175.104.235/32 +107.175.104.243/32 +107.175.104.251/32 +107.175.105.147/32 +107.175.105.155/32 +107.175.105.163/32 +107.175.105.171/32 +107.175.105.187/32 +107.175.105.211/32 +107.175.105.219/32 +107.175.196.99/32 +107.181.177.2/31 +107.181.177.4/30 +107.181.177.8/29 +107.181.177.16/30 +108.61.85.6/32 +108.61.99.186/32 +108.61.158.161/32 +108.61.163.135/32 +108.61.168.97/32 +108.61.185.220/32 +108.61.185.244/32 +108.61.210.36/32 +108.61.245.243/32 +108.62.49.221/32 +108.138.245.7/32 +108.138.245.16/32 +108.138.245.30/32 +108.138.245.113/32 +108.138.245.124/32 +108.138.245.139/32 +108.138.245.155/32 +108.139.9.102/32 +108.139.9.110/32 +108.139.9.124/32 +108.139.9.159/32 +108.139.10.3/32 +108.139.10.47/32 +108.139.10.52/32 +108.139.10.119/32 +108.160.132.21/32 +108.181.50.243/32 +108.181.50.251/32 +108.181.51.211/32 +108.181.51.219/32 +108.181.51.234/32 +108.181.52.42/32 +108.181.52.114/32 +108.181.52.179/32 +108.181.52.211/32 +108.181.52.227/32 +108.181.53.3/32 +108.181.53.83/32 +108.181.67.245/32 +108.181.70.243/32 +108.181.120.26/31 +108.181.120.28/32 +108.181.134.89/32 +109.61.85.33/32 +109.61.85.34/31 +109.61.94.194/32 +109.61.94.196/32 +109.70.144.21/32 +109.70.144.26/32 +109.70.144.149/32 +109.70.144.154/32 +109.70.150.77/32 +109.70.150.81/32 +109.70.150.85/32 +109.70.150.89/32 +109.70.150.97/32 +109.70.150.98/32 +109.70.150.101/32 +109.70.150.105/32 +109.70.150.109/32 +109.70.150.113/32 +109.70.150.117/32 +109.70.150.121/32 +109.70.150.125/32 +109.70.150.130/32 +109.70.150.134/32 +109.70.150.138/32 +109.70.150.142/32 +109.70.150.146/32 +109.70.150.151/32 +109.70.150.155/32 +109.70.150.159/32 +109.70.150.163/32 +109.70.150.167/32 +109.70.150.171/32 +109.70.150.175/32 +109.70.150.179/32 +109.70.150.183/32 +109.70.150.187/32 +109.70.150.191/32 +109.70.150.195/32 +109.70.150.199/32 +109.70.150.203/32 +109.70.150.207/32 +109.70.150.211/32 +109.70.150.215/32 +109.70.150.219/32 +109.70.150.223/32 +109.70.150.227/32 +109.70.150.231/32 +109.70.150.235/32 +109.70.150.239/32 +109.70.150.243/32 +109.70.150.247/32 +109.70.150.251/32 +109.70.151.2/31 +109.169.63.9/32 +109.169.63.12/32 +109.169.63.48/32 +109.169.63.51/32 +109.201.130.1/32 +109.201.130.2/31 +109.202.99.35/32 +109.202.99.40/32 +109.202.99.45/32 +109.236.81.103/32 +109.236.81.160/32 +109.236.81.166/32 +109.248.147.66/31 +109.248.147.68/32 +109.248.149.34/31 +109.248.149.36/32 +116.90.72.43/32 +116.90.72.51/32 +116.90.72.59/32 +116.90.72.67/32 +116.90.72.75/32 +116.90.72.83/32 +116.90.72.91/32 +116.90.72.99/32 +116.90.72.107/32 +116.90.72.115/32 +116.90.72.242/31 +116.90.72.244/32 +116.90.74.67/32 +116.90.74.75/32 +116.90.74.83/32 +116.90.74.91/32 +116.90.74.99/32 +116.90.74.107/32 +116.90.74.115/32 +116.90.74.123/32 +116.90.74.131/32 +116.90.74.139/32 +116.90.74.147/32 +116.90.74.155/32 +116.90.74.163/32 +116.90.74.178/31 +116.90.74.180/30 +116.90.74.184/31 +116.90.74.186/32 +116.90.74.235/32 +116.90.75.139/32 +116.90.75.147/32 +116.90.75.155/32 +116.90.75.163/32 +116.90.75.171/32 +116.90.75.226/31 +116.90.75.228/32 +116.206.126.48/31 +116.206.228.178/31 +116.206.228.180/32 +118.107.220.29/32 +118.107.220.30/31 +118.107.220.37/32 +118.107.220.38/31 +118.107.220.45/32 +118.107.220.46/31 +118.107.220.53/32 +118.107.220.54/31 +121.127.47.81/32 +121.127.47.83/32 +122.155.174.47/32 +122.155.174.64/32 +122.155.174.66/32 +122.155.174.68/32 +122.155.174.70/32 +122.155.174.72/32 +122.155.174.96/32 +122.155.174.99/32 +122.155.174.102/32 +122.155.174.105/32 +125.212.217.212/32 +125.212.217.243/32 +125.212.220.6/32 +125.212.220.41/32 +125.212.220.47/32 +125.212.220.51/32 +125.212.220.54/32 +125.212.220.57/32 +125.212.241.132/32 +125.212.241.148/32 +128.1.209.254/32 +129.150.58.208/32 +129.151.168.120/32 +129.153.53.229/32 +129.227.97.98/31 +129.227.97.114/31 +129.227.103.90/32 +129.232.219.204/32 +130.162.57.220/32 +130.195.216.66/31 +130.195.216.68/30 +130.195.216.72/29 +130.195.216.80/29 +130.195.216.88/30 +130.195.216.92/31 +130.195.216.94/32 +130.195.217.2/31 +130.195.217.4/30 +130.195.217.8/29 +130.195.217.16/28 +130.195.221.162/31 +130.195.221.164/30 +130.195.221.168/30 +130.195.221.172/31 +130.195.221.174/32 +130.195.223.2/31 +130.195.223.4/30 +130.195.223.8/29 +130.195.223.16/28 +130.195.240.2/31 +130.195.240.4/30 +130.195.240.8/29 +130.195.240.16/29 +130.195.240.24/30 +130.195.240.28/31 +130.195.240.30/32 +130.195.241.2/31 +130.195.241.4/30 +130.195.241.8/29 +130.195.241.16/29 +130.195.241.24/30 +130.195.241.28/31 +130.195.241.30/32 +130.195.242.2/31 +130.195.242.4/30 +130.195.242.8/29 +130.195.242.16/29 +130.195.242.24/30 +130.195.242.28/31 +130.195.242.30/32 +130.195.243.2/31 +130.195.243.4/30 +130.195.243.8/29 +130.195.243.16/29 +130.195.243.24/30 +130.195.243.28/31 +130.195.243.30/32 +130.195.245.2/31 +130.195.245.4/30 +130.195.245.8/29 +130.195.245.16/28 +130.195.245.32/28 +130.195.245.48/29 +130.195.245.56/30 +130.195.250.18/31 +130.195.250.20/32 +130.195.250.34/31 +130.195.250.36/32 +130.195.250.66/31 +130.195.250.68/30 +130.195.250.72/29 +130.195.250.80/29 +130.195.250.88/30 +130.195.250.92/31 +130.195.250.94/32 +130.195.250.98/31 +130.195.250.100/30 +130.195.250.104/29 +130.195.250.112/29 +130.195.250.120/30 +130.195.250.124/31 +130.195.250.126/32 +131.255.6.41/32 +131.255.6.42/32 +132.145.210.97/32 +134.122.23.15/32 +134.122.28.167/32 +134.122.61.238/32 +134.122.100.46/32 +134.122.104.60/32 +134.122.116.14/32 +134.122.120.21/32 +134.209.164.220/32 +134.209.168.235/32 +134.209.175.160/32 +134.255.210.50/32 +134.255.210.70/32 +134.255.210.212/32 +136.244.65.149/32 +136.244.71.90/32 +136.244.112.152/32 +137.184.0.42/32 +137.184.1.15/32 +137.184.14.1/32 +137.184.14.231/32 +137.184.85.148/32 +137.184.85.204/32 +137.184.85.253/32 +137.184.93.84/32 +137.184.93.88/32 +137.184.93.92/32 +137.184.93.119/32 +137.184.105.198/32 +137.184.138.196/32 +137.184.146.185/32 +137.184.152.91/32 +137.184.194.200/32 +137.184.194.230/32 +137.184.198.12/32 +137.184.202.179/32 +138.68.14.4/32 +138.68.95.12/32 +138.68.161.49/32 +138.68.161.68/32 +138.68.161.126/32 +138.68.161.157/32 +138.68.161.176/32 +138.68.174.155/32 +138.68.180.2/32 +138.68.184.233/32 +138.186.142.202/31 +138.186.142.204/32 +138.197.36.171/32 +138.197.36.189/32 +138.197.128.87/32 +138.197.136.231/32 +138.197.151.54/32 +138.197.154.29/32 +138.197.159.100/32 +138.197.162.195/32 +138.199.6.151/32 +138.199.6.153/32 +138.199.6.177/32 +138.199.6.178/31 +138.199.6.181/32 +138.199.6.182/31 +138.199.6.184/30 +138.199.7.1/32 +138.199.7.24/32 +138.199.7.129/32 +138.199.7.130/31 +138.199.7.132/30 +138.199.7.136/30 +138.199.7.140/31 +138.199.7.159/32 +138.199.7.181/32 +138.199.7.225/32 +138.199.7.234/31 +138.199.7.250/31 +138.199.9.130/31 +138.199.9.133/32 +138.199.9.134/32 +138.199.9.143/32 +138.199.9.148/32 +138.199.9.152/32 +138.199.10.129/32 +138.199.10.131/32 +138.199.10.133/32 +138.199.10.135/32 +138.199.10.137/32 +138.199.10.139/32 +138.199.10.141/32 +138.199.10.143/32 +138.199.10.151/32 +138.199.10.153/32 +138.199.10.155/32 +138.199.10.205/32 +138.199.10.207/32 +138.199.10.210/32 +138.199.10.212/32 +138.199.10.215/32 +138.199.10.217/32 +138.199.11.130/32 +138.199.11.132/32 +138.199.11.135/32 +138.199.11.137/32 +138.199.11.140/32 +138.199.11.142/32 +138.199.11.145/32 +138.199.11.147/32 +138.199.11.150/32 +138.199.11.152/32 +138.199.11.162/32 +138.199.11.164/32 +138.199.11.167/32 +138.199.11.169/32 +138.199.15.66/32 +138.199.15.71/32 +138.199.15.76/32 +138.199.15.81/32 +138.199.15.86/32 +138.199.15.89/32 +138.199.16.2/32 +138.199.16.7/32 +138.199.16.12/32 +138.199.16.17/32 +138.199.16.21/32 +138.199.16.27/32 +138.199.16.32/32 +138.199.16.37/32 +138.199.16.42/32 +138.199.16.47/32 +138.199.16.52/32 +138.199.16.57/32 +138.199.16.62/32 +138.199.16.67/32 +138.199.16.72/32 +138.199.16.77/32 +138.199.16.82/32 +138.199.16.87/32 +138.199.16.92/32 +138.199.16.97/32 +138.199.16.102/32 +138.199.16.107/32 +138.199.16.112/32 +138.199.16.117/32 +138.199.16.177/32 +138.199.16.194/32 +138.199.16.199/32 +138.199.16.204/32 +138.199.16.209/32 +138.199.16.214/32 +138.199.16.219/32 +138.199.16.224/32 +138.199.16.228/32 +138.199.16.233/32 +138.199.16.237/32 +138.199.16.241/32 +138.199.16.245/32 +138.199.21.66/32 +138.199.21.71/32 +138.199.21.76/32 +138.199.21.81/32 +138.199.21.86/32 +138.199.21.91/32 +138.199.21.96/32 +138.199.21.98/32 +138.199.21.101/32 +138.199.21.103/32 +138.199.21.106/32 +138.199.21.108/32 +138.199.21.111/32 +138.199.21.113/32 +138.199.21.116/32 +138.199.21.118/32 +138.199.21.121/32 +138.199.21.193/32 +138.199.21.198/32 +138.199.21.203/32 +138.199.21.206/32 +138.199.21.216/32 +138.199.22.97/32 +138.199.22.102/31 +138.199.22.161/32 +138.199.22.162/31 +138.199.27.18/32 +138.199.27.20/30 +138.199.27.26/31 +138.199.31.129/32 +138.199.33.33/32 +138.199.33.35/32 +138.199.33.38/32 +138.199.33.40/32 +138.199.33.98/32 +138.199.33.100/32 +138.199.33.104/32 +138.199.33.106/32 +138.199.33.109/32 +138.199.33.111/32 +138.199.33.114/32 +138.199.33.116/32 +138.199.33.119/32 +138.199.33.121/32 +138.199.33.177/32 +138.199.33.178/31 +138.199.33.180/31 +138.199.33.225/32 +138.199.33.226/31 +138.199.33.228/30 +138.199.33.232/31 +138.199.33.236/30 +138.199.33.240/30 +138.199.33.244/32 +138.199.33.247/32 +138.199.33.248/30 +138.199.34.2/32 +138.199.34.14/32 +138.199.34.26/32 +138.199.34.38/32 +138.199.34.50/32 +138.199.34.193/32 +138.199.34.194/31 +138.199.34.196/30 +138.199.34.200/29 +138.199.34.208/29 +138.199.34.216/30 +138.199.34.220/31 +138.199.35.97/32 +138.199.35.98/31 +138.199.35.100/30 +138.199.35.104/29 +138.199.35.115/32 +138.199.35.120/32 +138.199.36.159/32 +138.199.36.160/31 +138.199.36.163/32 +138.199.42.226/32 +138.199.42.231/32 +138.199.42.236/32 +138.199.42.241/32 +138.199.42.246/32 +138.199.42.251/32 +138.199.47.130/32 +138.199.47.133/32 +138.199.47.136/32 +138.199.47.139/32 +138.199.47.142/32 +138.199.47.145/32 +138.199.47.148/32 +138.199.47.151/32 +138.199.47.154/32 +138.199.47.157/32 +138.199.47.160/32 +138.199.47.163/32 +138.199.47.166/32 +138.199.47.169/32 +138.199.47.172/32 +138.199.47.175/32 +138.199.47.178/32 +138.199.47.180/31 +138.199.47.193/32 +138.199.47.220/31 +138.199.47.222/32 +138.199.50.2/32 +138.199.50.7/32 +138.199.50.12/32 +138.199.50.17/32 +138.199.50.22/32 +138.199.50.46/32 +138.199.50.51/32 +138.199.50.56/32 +138.199.50.58/32 +138.199.50.97/32 +138.199.50.98/32 +138.199.50.103/32 +138.199.50.104/30 +138.199.50.129/32 +138.199.50.134/32 +138.199.50.139/32 +138.199.50.144/32 +138.199.52.2/32 +138.199.52.5/32 +138.199.52.8/32 +138.199.52.11/32 +138.199.52.14/32 +138.199.52.17/32 +138.199.52.20/32 +138.199.52.23/32 +138.199.52.26/32 +138.199.52.29/32 +138.199.52.32/32 +138.199.52.35/32 +138.199.52.44/32 +138.199.52.47/32 +138.199.52.50/32 +138.199.52.53/32 +138.199.52.56/32 +138.199.52.59/32 +138.199.52.62/32 +138.199.52.65/32 +138.199.52.68/32 +138.199.52.71/32 +138.199.52.74/32 +138.199.52.77/32 +138.199.52.80/32 +138.199.52.83/32 +138.199.52.86/32 +138.199.52.89/32 +138.199.52.92/32 +138.199.52.95/32 +138.199.52.98/32 +138.199.52.101/32 +138.199.52.104/32 +138.199.52.107/32 +138.199.52.110/32 +138.199.52.113/32 +138.199.52.116/32 +138.199.52.119/32 +138.199.52.193/32 +138.199.52.198/31 +138.199.52.200/31 +138.199.52.202/32 +138.199.52.241/32 +138.199.52.242/31 +138.199.52.244/30 +138.199.52.248/32 +138.199.53.225/32 +138.199.53.226/31 +138.199.53.228/30 +138.199.53.232/30 +138.199.53.236/31 +138.199.53.242/32 +138.199.53.247/32 +138.199.54.2/31 +138.199.54.4/30 +138.199.54.8/30 +138.199.54.12/32 +138.199.54.15/32 +138.199.54.17/32 +138.199.54.18/31 +138.199.54.20/30 +138.199.54.24/32 +138.199.54.226/32 +138.199.54.231/32 +138.199.54.236/32 +138.199.54.242/32 +138.199.54.247/32 +138.199.55.33/32 +138.199.55.34/31 +138.199.55.36/31 +138.199.55.40/29 +138.199.56.2/32 +138.199.56.8/32 +138.199.56.14/32 +138.199.56.20/32 +138.199.56.26/32 +138.199.56.32/32 +138.199.56.38/32 +138.199.56.44/32 +138.199.56.50/32 +138.199.56.56/32 +138.199.56.62/32 +138.199.56.68/32 +138.199.56.74/32 +138.199.56.80/32 +138.199.56.86/32 +138.199.56.92/32 +138.199.56.104/32 +138.199.56.225/32 +138.199.56.228/30 +138.199.56.232/32 +138.199.56.234/32 +138.199.56.236/31 +138.199.56.239/32 +138.199.56.242/31 +138.199.56.244/30 +138.199.56.248/31 +138.199.56.250/32 +138.199.59.130/31 +138.199.59.132/31 +138.199.59.134/32 +138.199.59.136/29 +138.199.59.145/32 +138.199.59.146/31 +138.199.59.148/30 +138.199.59.152/31 +138.199.59.155/32 +138.199.59.157/32 +138.199.59.158/31 +138.199.59.160/29 +138.199.59.168/31 +138.199.59.170/32 +138.199.59.172/30 +138.199.59.176/31 +138.199.59.178/32 +138.199.60.85/32 +138.199.60.86/31 +138.199.60.89/32 +138.199.62.193/32 +138.199.62.194/31 +138.199.62.196/30 +138.199.62.200/32 +138.199.63.162/32 +138.199.63.216/32 +138.199.63.228/32 +138.199.63.230/32 +138.199.63.232/32 +138.199.63.234/32 +138.199.63.236/32 +138.199.63.250/32 +139.28.216.99/32 +139.28.216.235/32 +139.28.216.243/32 +139.28.216.251/32 +139.28.218.2/31 +139.28.218.4/30 +139.28.218.8/29 +139.28.218.16/29 +139.28.218.24/30 +139.28.218.28/31 +139.28.218.30/32 +139.28.218.130/31 +139.28.218.132/30 +139.28.218.136/29 +139.28.218.144/29 +139.28.218.152/30 +139.28.218.156/31 +139.28.218.158/32 +139.28.218.171/32 +139.28.218.179/32 +139.28.218.187/32 +139.28.218.195/32 +139.28.218.203/32 +139.28.218.211/32 +139.28.218.219/32 +139.28.219.107/32 +139.28.219.108/32 +139.28.219.203/32 +139.28.219.227/32 +139.28.219.235/32 +139.28.219.243/32 +139.59.153.103/32 +139.59.158.2/32 +139.59.180.184/32 +139.59.184.150/32 +139.84.194.239/32 +139.84.196.176/32 +139.180.160.200/32 +139.180.183.16/32 +139.180.192.151/32 +139.180.196.117/32 +140.82.3.102/32 +140.82.7.212/32 +140.82.10.83/32 +140.82.11.152/32 +140.82.13.39/32 +140.82.27.10/32 +140.82.51.166/32 +140.82.52.33/32 +140.82.52.103/32 +140.82.55.100/32 +140.238.98.142/32 +140.238.246.196/32 +141.94.17.25/32 +141.94.17.26/31 +141.94.17.28/31 +141.94.17.32/30 +141.94.22.73/32 +141.98.100.123/32 +141.98.100.171/32 +141.98.100.179/32 +141.98.100.217/32 +141.98.100.218/31 +141.98.100.220/30 +141.98.100.224/30 +141.98.100.228/32 +141.98.103.75/32 +141.98.103.83/32 +141.98.103.91/32 +141.98.103.99/32 +141.98.103.107/32 +141.98.103.115/32 +141.98.103.123/32 +141.98.103.131/32 +141.98.103.139/32 +141.98.103.147/32 +141.145.202.150/32 +141.164.49.150/32 +141.164.62.22/32 +141.255.162.194/31 +141.255.162.196/32 +141.255.162.210/31 +141.255.162.212/32 +142.93.99.42/32 +142.93.104.237/32 +142.93.110.253/32 +142.93.150.190/32 +142.93.161.32/32 +142.93.171.162/32 +142.93.194.152/32 +142.93.206.118/32 +142.93.246.195/32 +142.93.252.128/32 +142.234.200.140/32 +142.234.200.176/32 +142.234.204.1/32 +142.234.204.2/32 +142.234.204.65/32 +143.110.174.16/32 +143.110.210.20/32 +143.110.220.53/32 +143.110.227.96/32 +143.110.228.35/32 +143.110.234.18/32 +143.198.18.37/32 +143.198.20.255/32 +143.198.28.24/32 +143.198.28.40/32 +143.198.28.69/32 +143.198.28.84/32 +143.198.28.146/32 +143.198.28.175/32 +143.198.28.199/32 +143.198.28.225/32 +143.198.32.236/32 +143.198.40.105/32 +143.198.75.74/32 +143.198.75.178/32 +143.198.113.74/32 +143.198.155.20/32 +143.198.198.209/32 +143.198.226.168/32 +143.198.228.193/32 +143.198.234.31/32 +143.244.40.225/32 +143.244.40.226/31 +143.244.41.1/32 +143.244.41.9/32 +143.244.41.17/32 +143.244.41.25/32 +143.244.41.33/32 +143.244.41.41/32 +143.244.41.49/32 +143.244.41.57/32 +143.244.41.65/32 +143.244.41.73/32 +143.244.41.81/32 +143.244.41.89/32 +143.244.41.96/32 +143.244.41.103/32 +143.244.41.110/32 +143.244.41.117/32 +143.244.44.138/32 +143.244.44.161/32 +143.244.44.166/32 +143.244.44.171/32 +143.244.44.176/32 +143.244.44.181/32 +143.244.44.186/32 +143.244.44.209/32 +143.244.46.161/32 +143.244.46.166/32 +143.244.46.172/32 +143.244.47.59/32 +143.244.47.228/32 +143.244.47.230/32 +143.244.49.136/31 +143.244.49.151/32 +143.244.49.152/32 +143.244.49.154/32 +143.244.56.130/32 +143.244.56.133/32 +143.244.56.136/32 +143.244.56.139/32 +143.244.56.142/32 +143.244.56.145/32 +143.244.56.148/32 +143.244.56.151/32 +143.244.56.154/32 +143.244.56.157/32 +143.244.56.158/32 +143.244.56.160/32 +143.244.56.163/32 +143.244.56.166/32 +143.244.56.169/32 +143.244.56.172/32 +143.244.56.175/32 +143.244.56.178/32 +143.244.56.181/32 +143.244.56.184/32 +143.244.56.186/32 +143.244.61.65/32 +143.244.61.67/32 +143.244.61.70/31 +143.244.61.73/32 +143.244.61.80/32 +143.244.61.226/32 +143.244.61.229/32 +143.244.61.232/32 +143.244.61.235/32 +143.244.61.238/32 +143.244.61.241/32 +143.244.61.249/32 +143.244.63.21/32 +143.244.63.23/32 +143.244.63.26/32 +143.244.63.41/32 +143.244.154.2/32 +144.22.163.249/32 +144.24.222.222/32 +144.48.37.3/32 +144.48.37.11/32 +144.48.37.35/32 +144.48.37.59/32 +144.48.37.67/32 +144.48.37.75/32 +144.48.37.131/32 +144.48.38.3/32 +144.48.38.155/32 +144.48.38.163/32 +144.48.38.171/32 +144.48.39.3/32 +144.48.39.179/32 +144.48.39.187/32 +144.48.39.203/32 +144.48.39.226/31 +144.48.39.228/30 +144.48.39.232/31 +144.48.39.234/32 +144.126.216.202/32 +144.126.228.189/32 +144.202.5.83/32 +144.202.5.130/32 +144.202.6.81/32 +144.202.10.115/32 +144.202.13.106/32 +144.202.15.147/32 +144.202.99.191/32 +144.202.102.51/32 +144.202.102.160/32 +144.202.103.70/32 +144.202.106.254/32 +145.14.135.1/32 +145.14.135.14/32 +145.14.135.27/32 +145.14.135.40/32 +145.14.135.53/32 +145.14.135.66/32 +145.14.135.79/32 +145.239.81.148/32 +145.239.82.102/32 +145.239.89.146/32 +145.239.92.26/32 +145.239.93.100/32 +145.239.94.171/32 +146.59.18.41/32 +146.59.18.42/31 +146.59.18.44/32 +146.59.19.185/32 +146.70.9.226/31 +146.70.9.228/32 +146.70.9.242/31 +146.70.9.244/32 +146.70.12.4/31 +146.70.12.8/30 +146.70.12.12/31 +146.70.14.19/32 +146.70.14.20/30 +146.70.14.24/30 +146.70.14.28/31 +146.70.14.30/32 +146.70.17.139/32 +146.70.17.163/32 +146.70.17.171/32 +146.70.17.179/32 +146.70.17.187/32 +146.70.17.195/32 +146.70.17.203/32 +146.70.18.98/32 +146.70.21.11/32 +146.70.21.19/32 +146.70.21.27/32 +146.70.21.35/32 +146.70.21.43/32 +146.70.21.51/32 +146.70.21.59/32 +146.70.21.67/32 +146.70.21.107/32 +146.70.21.115/32 +146.70.22.99/32 +146.70.22.107/32 +146.70.25.2/31 +146.70.25.4/32 +146.70.25.66/31 +146.70.25.68/32 +146.70.26.43/32 +146.70.26.51/32 +146.70.26.59/32 +146.70.26.67/32 +146.70.26.75/32 +146.70.26.83/32 +146.70.26.91/32 +146.70.29.194/31 +146.70.29.196/30 +146.70.29.200/30 +146.70.29.204/31 +146.70.29.206/32 +146.70.33.117/32 +146.70.38.64/30 +146.70.38.68/31 +146.70.38.72/31 +146.70.38.74/32 +146.70.39.3/32 +146.70.39.4/30 +146.70.39.8/29 +146.70.39.16/32 +146.70.39.19/32 +146.70.39.133/32 +146.70.39.134/31 +146.70.39.136/29 +146.70.39.144/31 +146.70.39.148/31 +146.70.45.82/32 +146.70.45.114/31 +146.70.45.116/30 +146.70.45.120/30 +146.70.45.124/31 +146.70.45.126/32 +146.70.45.210/32 +146.70.45.226/31 +146.70.45.228/30 +146.70.45.232/30 +146.70.45.236/31 +146.70.45.238/32 +146.70.48.2/31 +146.70.48.4/30 +146.70.48.8/30 +146.70.48.12/31 +146.70.48.14/32 +146.70.48.18/31 +146.70.48.20/31 +146.70.48.22/32 +146.70.51.210/31 +146.70.51.212/30 +146.70.51.216/30 +146.70.51.220/31 +146.70.51.222/32 +146.70.52.195/32 +146.70.52.196/30 +146.70.52.200/30 +146.70.52.211/32 +146.70.52.212/31 +146.70.52.214/32 +146.70.52.216/31 +146.70.52.218/32 +146.70.52.220/32 +146.70.52.228/32 +146.70.52.230/31 +146.70.52.232/30 +146.70.52.236/32 +146.70.55.43/32 +146.70.58.130/31 +146.70.58.132/30 +146.70.58.136/30 +146.70.58.140/31 +146.70.58.142/32 +146.70.59.130/31 +146.70.59.132/30 +146.70.59.138/31 +146.70.59.140/30 +146.70.59.146/31 +146.70.59.150/31 +146.70.59.152/29 +146.70.59.160/30 +146.70.59.164/31 +146.70.59.166/32 +146.70.59.169/32 +146.70.59.170/31 +146.70.59.172/30 +146.70.59.176/30 +146.70.62.227/32 +146.70.62.235/32 +146.70.62.243/32 +146.70.62.251/32 +146.70.65.3/32 +146.70.65.4/32 +146.70.65.7/32 +146.70.65.10/31 +146.70.65.12/31 +146.70.65.15/32 +146.70.68.99/32 +146.70.68.107/32 +146.70.68.155/32 +146.70.68.179/32 +146.70.68.187/32 +146.70.68.194/32 +146.70.68.226/32 +146.70.71.35/32 +146.70.71.43/32 +146.70.71.51/32 +146.70.71.59/32 +146.70.72.130/31 +146.70.72.132/30 +146.70.72.136/30 +146.70.72.140/31 +146.70.72.142/32 +146.70.72.162/31 +146.70.72.164/30 +146.70.72.168/30 +146.70.72.172/31 +146.70.72.174/32 +146.70.73.75/32 +146.70.73.83/32 +146.70.73.91/32 +146.70.74.83/32 +146.70.74.171/32 +146.70.75.83/32 +146.70.75.91/32 +146.70.75.99/32 +146.70.75.107/32 +146.70.75.115/32 +146.70.75.123/32 +146.70.75.131/32 +146.70.75.139/32 +146.70.75.147/32 +146.70.75.155/32 +146.70.75.163/32 +146.70.75.171/32 +146.70.75.179/32 +146.70.75.187/32 +146.70.75.195/32 +146.70.75.203/32 +146.70.75.211/32 +146.70.80.163/32 +146.70.80.171/32 +146.70.80.179/32 +146.70.80.187/32 +146.70.80.195/32 +146.70.81.163/32 +146.70.81.195/32 +146.70.83.66/31 +146.70.83.68/30 +146.70.83.72/30 +146.70.83.76/31 +146.70.83.78/32 +146.70.84.2/31 +146.70.84.4/30 +146.70.84.8/29 +146.70.84.16/28 +146.70.86.114/31 +146.70.86.116/30 +146.70.86.120/30 +146.70.86.124/31 +146.70.86.126/32 +146.70.90.3/32 +146.70.90.11/32 +146.70.90.19/32 +146.70.90.27/32 +146.70.95.114/31 +146.70.95.116/32 +146.70.95.130/32 +146.70.95.146/32 +146.70.96.66/31 +146.70.96.68/30 +146.70.96.72/30 +146.70.96.76/31 +146.70.96.78/32 +146.70.98.98/31 +146.70.98.100/30 +146.70.98.104/29 +146.70.98.112/29 +146.70.98.120/30 +146.70.98.124/31 +146.70.98.126/32 +146.70.98.130/31 +146.70.98.132/30 +146.70.98.136/29 +146.70.98.144/29 +146.70.98.152/30 +146.70.98.156/31 +146.70.98.158/32 +146.70.98.162/31 +146.70.98.164/30 +146.70.98.168/29 +146.70.98.176/29 +146.70.98.184/30 +146.70.98.188/31 +146.70.98.190/32 +146.70.99.162/32 +146.70.99.194/32 +146.70.99.226/32 +146.70.100.27/32 +146.70.100.50/31 +146.70.100.52/31 +146.70.100.54/32 +146.70.101.34/31 +146.70.101.36/32 +146.70.103.2/32 +146.70.103.34/32 +146.70.104.2/32 +146.70.104.34/32 +146.70.105.2/31 +146.70.105.4/32 +146.70.105.34/31 +146.70.105.36/32 +146.70.105.155/32 +146.70.105.195/32 +146.70.105.203/32 +146.70.105.211/32 +146.70.105.219/32 +146.70.105.227/32 +146.70.105.235/32 +146.70.105.243/32 +146.70.105.251/32 +146.70.107.2/31 +146.70.107.4/32 +146.70.107.34/32 +146.70.107.66/32 +146.70.107.98/32 +146.70.107.130/32 +146.70.108.34/32 +146.70.108.66/32 +146.70.108.98/32 +146.70.108.130/32 +146.70.108.162/31 +146.70.108.164/32 +146.70.112.219/32 +146.70.113.98/31 +146.70.113.100/30 +146.70.113.104/30 +146.70.113.108/31 +146.70.113.110/32 +146.70.113.114/31 +146.70.113.116/30 +146.70.113.120/30 +146.70.113.124/31 +146.70.113.126/32 +146.70.115.162/31 +146.70.115.164/30 +146.70.115.168/30 +146.70.115.172/31 +146.70.115.174/32 +146.70.120.146/31 +146.70.120.148/30 +146.70.120.152/30 +146.70.120.156/31 +146.70.120.158/32 +146.70.120.210/31 +146.70.120.212/30 +146.70.120.216/30 +146.70.120.220/31 +146.70.120.222/32 +146.70.121.195/32 +146.70.121.196/31 +146.70.121.199/32 +146.70.121.202/32 +146.70.121.204/31 +146.70.121.206/32 +146.70.123.98/31 +146.70.123.100/32 +146.70.127.242/31 +146.70.127.244/30 +146.70.127.248/30 +146.70.127.252/31 +146.70.127.254/32 +146.70.129.18/31 +146.70.129.20/30 +146.70.129.24/30 +146.70.129.28/31 +146.70.129.30/32 +146.70.133.130/31 +146.70.133.132/30 +146.70.133.136/31 +146.70.133.138/32 +146.70.133.147/32 +146.70.133.148/31 +146.70.133.151/32 +146.70.136.35/32 +146.70.136.36/30 +146.70.136.40/30 +146.70.136.44/31 +146.70.136.46/32 +146.70.142.18/31 +146.70.142.20/30 +146.70.142.24/31 +146.70.142.26/32 +146.70.142.82/31 +146.70.142.84/30 +146.70.142.88/30 +146.70.142.92/31 +146.70.142.94/32 +146.70.142.130/31 +146.70.142.132/31 +146.70.142.134/32 +146.70.142.138/31 +146.70.142.140/31 +146.70.142.142/32 +146.70.147.98/32 +146.70.147.114/31 +146.70.147.116/30 +146.70.147.120/30 +146.70.147.124/31 +146.70.147.126/32 +146.70.155.35/32 +146.70.156.2/31 +146.70.156.4/30 +146.70.156.8/29 +146.70.156.16/28 +146.70.161.162/31 +146.70.161.164/30 +146.70.161.168/30 +146.70.161.172/31 +146.70.161.174/32 +146.70.161.178/31 +146.70.161.180/30 +146.70.161.184/30 +146.70.161.188/31 +146.70.161.190/32 +146.70.170.2/31 +146.70.170.4/30 +146.70.170.8/30 +146.70.170.12/31 +146.70.170.14/32 +146.70.170.18/31 +146.70.170.20/30 +146.70.170.24/30 +146.70.170.28/31 +146.70.170.30/32 +146.70.174.66/32 +146.70.174.82/31 +146.70.174.84/30 +146.70.174.88/30 +146.70.174.92/31 +146.70.174.94/32 +146.70.174.130/31 +146.70.174.132/30 +146.70.174.136/30 +146.70.174.140/31 +146.70.174.142/32 +146.70.174.146/31 +146.70.174.148/30 +146.70.174.152/30 +146.70.174.156/31 +146.70.174.158/32 +146.70.174.162/31 +146.70.174.164/30 +146.70.174.168/30 +146.70.174.172/31 +146.70.174.174/32 +146.70.174.178/31 +146.70.174.180/30 +146.70.174.184/30 +146.70.174.188/31 +146.70.174.190/32 +146.70.174.194/31 +146.70.174.196/30 +146.70.174.200/30 +146.70.174.204/31 +146.70.174.206/32 +146.70.174.210/31 +146.70.174.212/30 +146.70.174.216/30 +146.70.174.220/31 +146.70.174.222/32 +146.70.174.226/31 +146.70.174.228/30 +146.70.174.232/30 +146.70.174.236/31 +146.70.174.238/32 +146.70.174.242/31 +146.70.174.244/30 +146.70.174.248/30 +146.70.174.252/31 +146.70.174.254/32 +146.70.176.242/31 +146.70.176.244/32 +146.70.179.18/31 +146.70.179.20/30 +146.70.179.24/30 +146.70.179.28/31 +146.70.179.30/32 +146.70.179.34/31 +146.70.179.36/30 +146.70.179.40/30 +146.70.179.44/31 +146.70.179.46/32 +146.70.179.50/31 +146.70.179.52/30 +146.70.179.56/30 +146.70.179.60/31 +146.70.179.62/32 +146.70.179.98/31 +146.70.179.100/30 +146.70.179.104/30 +146.70.179.108/31 +146.70.179.110/32 +146.70.181.34/31 +146.70.181.36/30 +146.70.181.40/30 +146.70.181.44/31 +146.70.181.46/32 +146.70.181.250/32 +146.70.182.2/31 +146.70.182.4/30 +146.70.182.8/30 +146.70.182.12/31 +146.70.182.14/32 +146.70.182.18/31 +146.70.182.20/30 +146.70.182.24/30 +146.70.182.28/31 +146.70.182.30/32 +146.70.182.34/31 +146.70.182.36/30 +146.70.182.40/30 +146.70.182.44/31 +146.70.182.46/32 +146.70.183.18/31 +146.70.183.20/30 +146.70.183.24/30 +146.70.183.28/31 +146.70.183.30/32 +146.70.183.130/31 +146.70.183.132/30 +146.70.183.136/30 +146.70.183.140/31 +146.70.183.142/32 +146.70.183.146/31 +146.70.183.148/30 +146.70.183.152/30 +146.70.183.156/31 +146.70.183.158/32 +146.70.183.162/31 +146.70.183.164/30 +146.70.183.168/30 +146.70.183.172/31 +146.70.183.174/32 +146.70.191.98/31 +146.70.191.100/32 +146.70.191.194/31 +146.70.191.196/32 +146.70.194.2/31 +146.70.194.4/30 +146.70.194.8/30 +146.70.194.12/31 +146.70.194.14/32 +146.70.194.18/31 +146.70.194.20/30 +146.70.194.24/30 +146.70.194.28/31 +146.70.194.30/32 +146.70.194.34/31 +146.70.194.36/30 +146.70.194.40/30 +146.70.194.44/31 +146.70.194.46/32 +146.70.194.50/31 +146.70.194.52/30 +146.70.194.56/30 +146.70.194.60/31 +146.70.194.62/32 +146.70.194.66/31 +146.70.194.68/30 +146.70.194.72/30 +146.70.194.76/31 +146.70.194.78/32 +146.70.194.82/31 +146.70.194.84/30 +146.70.194.88/30 +146.70.194.92/31 +146.70.194.94/32 +146.70.194.98/31 +146.70.194.100/30 +146.70.194.104/30 +146.70.194.108/31 +146.70.194.110/32 +146.70.194.114/31 +146.70.194.116/30 +146.70.194.120/30 +146.70.194.124/31 +146.70.194.126/32 +146.70.195.34/31 +146.70.195.36/30 +146.70.195.40/30 +146.70.195.44/31 +146.70.195.46/32 +146.70.195.82/31 +146.70.195.84/30 +146.70.195.88/30 +146.70.195.92/31 +146.70.195.94/32 +146.70.195.98/31 +146.70.195.100/30 +146.70.195.104/30 +146.70.195.108/31 +146.70.195.110/32 +146.70.198.2/31 +146.70.198.4/30 +146.70.198.8/30 +146.70.198.12/31 +146.70.198.14/32 +146.70.198.18/31 +146.70.198.20/30 +146.70.198.24/30 +146.70.198.28/31 +146.70.198.30/32 +146.70.198.34/31 +146.70.198.36/30 +146.70.198.40/30 +146.70.198.44/31 +146.70.198.46/32 +146.70.198.50/31 +146.70.198.52/30 +146.70.198.56/30 +146.70.198.60/31 +146.70.198.62/32 +146.70.202.2/32 +146.70.202.18/31 +146.70.202.20/30 +146.70.202.24/30 +146.70.202.28/31 +146.70.202.30/32 +146.70.202.34/32 +146.70.202.50/31 +146.70.202.52/30 +146.70.202.56/30 +146.70.202.60/31 +146.70.202.62/32 +146.70.202.66/31 +146.70.202.68/30 +146.70.202.72/30 +146.70.202.76/31 +146.70.202.78/32 +146.70.202.82/32 +146.70.202.98/31 +146.70.202.100/30 +146.70.202.104/30 +146.70.202.108/31 +146.70.202.110/32 +146.70.202.114/32 +146.70.202.130/31 +146.70.202.132/30 +146.70.202.136/30 +146.70.202.140/31 +146.70.202.142/32 +146.70.202.146/31 +146.70.202.148/30 +146.70.202.152/30 +146.70.202.156/31 +146.70.202.158/32 +146.70.202.162/31 +146.70.202.164/30 +146.70.202.168/30 +146.70.202.172/31 +146.70.202.174/32 +146.70.202.178/31 +146.70.202.180/30 +146.70.202.184/30 +146.70.202.188/31 +146.70.202.190/32 +146.70.203.18/31 +146.70.203.20/32 +146.70.204.162/31 +146.70.204.164/30 +146.70.204.168/30 +146.70.204.172/31 +146.70.204.174/32 +146.70.204.178/31 +146.70.204.180/30 +146.70.204.184/30 +146.70.204.188/31 +146.70.204.190/32 +146.70.217.66/31 +146.70.217.68/30 +146.70.217.72/29 +146.70.217.80/29 +146.70.217.88/30 +146.70.217.92/31 +146.70.217.94/32 +146.70.217.98/31 +146.70.217.100/30 +146.70.217.104/29 +146.70.217.112/29 +146.70.217.120/30 +146.70.217.124/31 +146.70.217.126/32 +146.70.221.18/31 +146.70.221.20/32 +146.70.221.34/31 +146.70.221.36/32 +146.70.221.130/31 +146.70.221.132/30 +146.70.221.136/29 +146.70.221.144/29 +146.70.221.152/30 +146.70.221.156/31 +146.70.221.158/32 +146.70.226.194/31 +146.70.226.196/30 +146.70.226.200/29 +146.70.226.208/29 +146.70.226.216/30 +146.70.226.220/31 +146.70.226.222/32 +146.70.226.226/31 +146.70.226.228/30 +146.70.226.232/29 +146.70.226.240/29 +146.70.226.248/30 +146.70.226.252/31 +146.70.226.254/32 +146.70.228.138/31 +146.70.228.140/31 +146.70.228.142/32 +146.70.228.162/31 +146.70.228.164/31 +146.70.228.166/32 +146.70.228.170/31 +146.70.228.172/31 +146.70.228.174/32 +146.70.229.3/32 +146.70.229.4/30 +146.70.229.8/29 +146.70.229.16/29 +146.70.229.24/30 +146.70.229.28/31 +146.70.229.30/32 +146.70.230.82/32 +146.70.230.98/32 +146.70.230.114/32 +146.70.230.130/32 +146.70.230.146/32 +146.70.231.2/31 +146.70.231.4/30 +146.70.231.8/29 +146.70.231.16/28 +146.70.237.130/31 +146.70.237.132/30 +146.70.237.136/29 +146.70.237.144/30 +146.70.237.148/32 +146.70.237.150/31 +146.70.237.152/31 +146.70.237.155/32 +146.70.237.156/31 +146.70.237.158/32 +146.70.238.3/32 +146.70.238.19/32 +146.70.238.35/32 +146.70.238.51/32 +146.70.238.147/32 +146.70.238.163/32 +146.70.238.179/32 +146.70.242.130/31 +146.70.242.132/32 +146.70.242.146/31 +146.70.242.148/32 +146.70.244.2/31 +146.70.244.4/32 +146.70.244.18/31 +146.70.244.20/32 +146.70.245.130/31 +146.70.245.132/30 +146.70.245.136/29 +146.70.245.144/29 +146.70.245.152/30 +146.70.245.156/31 +146.70.245.158/32 +146.70.246.98/32 +146.70.246.114/32 +146.70.246.130/32 +146.70.246.146/32 +146.70.246.162/32 +146.70.250.2/32 +146.70.250.18/32 +146.70.252.2/31 +146.70.252.4/30 +146.70.252.8/29 +146.70.252.16/29 +146.70.252.24/30 +146.70.252.28/31 +146.190.52.211/32 +146.190.72.110/32 +146.190.78.100/32 +146.190.118.73/32 +146.190.118.244/32 +146.190.126.27/32 +147.182.129.30/32 +147.182.129.49/32 +147.182.169.62/32 +147.182.198.132/32 +147.182.201.181/32 +147.182.243.115/32 +147.182.243.195/32 +147.182.245.222/32 +147.182.251.59/32 +147.182.251.79/32 +147.182.251.86/32 +147.182.251.93/32 +147.182.251.128/32 +147.182.251.135/32 +147.182.251.180/32 +147.182.253.232/32 +149.22.80.1/32 +149.22.80.2/31 +149.22.80.4/30 +149.22.80.8/29 +149.22.80.16/28 +149.22.80.32/27 +149.22.80.64/27 +149.22.80.96/29 +149.22.80.104/30 +149.22.80.108/31 +149.22.80.114/32 +149.22.80.119/32 +149.22.81.1/32 +149.22.81.2/31 +149.22.81.4/30 +149.22.81.8/29 +149.22.81.16/28 +149.22.81.32/28 +149.22.81.48/30 +149.22.81.52/31 +149.22.81.54/32 +149.22.82.1/32 +149.22.82.2/31 +149.22.82.4/30 +149.22.82.8/29 +149.22.82.16/28 +149.22.82.32/27 +149.22.82.64/27 +149.22.82.96/28 +149.22.82.112/30 +149.22.82.116/32 +149.22.84.1/32 +149.22.84.2/31 +149.22.84.4/30 +149.22.84.8/29 +149.22.84.16/28 +149.22.84.32/27 +149.22.84.64/27 +149.22.84.96/28 +149.22.84.112/29 +149.22.84.120/32 +149.22.84.129/32 +149.22.84.134/32 +149.22.84.139/32 +149.22.84.144/32 +149.22.84.149/32 +149.22.84.154/31 +149.22.85.65/32 +149.22.85.66/31 +149.22.85.78/31 +149.22.85.80/32 +149.22.85.193/32 +149.22.85.194/31 +149.22.85.196/30 +149.22.85.200/29 +149.22.85.208/29 +149.22.85.216/30 +149.22.85.220/31 +149.22.86.1/32 +149.22.86.2/31 +149.22.86.14/31 +149.22.86.16/32 +149.22.88.1/32 +149.22.88.2/31 +149.22.88.4/30 +149.22.88.8/29 +149.22.88.16/28 +149.22.88.32/28 +149.22.88.48/29 +149.22.88.56/30 +149.22.88.65/32 +149.22.88.66/31 +149.22.88.129/32 +149.22.88.134/32 +149.22.88.139/32 +149.22.88.144/32 +149.22.88.149/32 +149.22.88.150/32 +149.22.89.65/32 +149.22.89.66/31 +149.22.89.68/30 +149.22.89.72/29 +149.22.89.80/28 +149.22.89.96/29 +149.22.89.104/32 +149.22.91.129/32 +149.22.91.130/31 +149.22.91.161/32 +149.22.91.162/31 +149.22.91.164/30 +149.22.91.168/29 +149.22.91.176/29 +149.22.91.184/30 +149.22.94.1/32 +149.22.94.2/31 +149.22.94.4/30 +149.22.94.8/29 +149.22.94.16/28 +149.22.94.32/27 +149.22.94.64/27 +149.22.94.96/28 +149.22.94.112/31 +149.22.94.129/32 +149.22.94.130/31 +149.22.94.132/30 +149.22.94.136/29 +149.22.94.144/28 +149.22.94.160/28 +149.22.94.176/30 +149.22.94.180/32 +149.22.95.193/32 +149.22.95.194/31 +149.22.95.196/30 +149.22.95.200/29 +149.22.95.208/29 +149.22.95.216/30 +149.28.37.150/32 +149.28.42.29/32 +149.28.60.5/32 +149.28.91.71/32 +149.28.166.195/32 +149.28.187.234/32 +149.28.194.19/32 +149.28.194.222/32 +149.28.197.74/32 +149.28.198.80/32 +149.28.200.27/32 +149.28.200.183/32 +149.28.202.85/32 +149.28.203.72/32 +149.28.205.191/32 +149.28.206.26/32 +149.28.206.55/32 +149.28.206.171/32 +149.28.207.42/32 +149.28.210.204/32 +149.28.212.174/32 +149.28.214.68/32 +149.28.214.96/32 +149.28.214.221/32 +149.28.215.51/32 +149.28.218.123/32 +149.28.223.36/32 +149.28.225.61/32 +149.28.232.232/32 +149.28.234.31/32 +149.34.240.226/32 +149.34.240.231/32 +149.34.240.233/32 +149.34.240.236/32 +149.34.240.238/32 +149.34.240.241/32 +149.34.240.243/32 +149.34.240.246/32 +149.34.240.248/32 +149.34.243.34/32 +149.34.243.36/32 +149.34.244.129/32 +149.34.244.134/32 +149.34.244.139/32 +149.34.244.149/32 +149.34.244.154/32 +149.34.244.159/32 +149.34.244.164/32 +149.34.244.169/32 +149.34.244.174/32 +149.34.244.179/32 +149.34.244.194/32 +149.34.244.200/32 +149.34.244.205/32 +149.34.244.210/32 +149.34.244.215/32 +149.34.244.216/32 +149.34.244.218/31 +149.34.246.65/32 +149.34.246.66/31 +149.34.246.68/30 +149.34.246.72/29 +149.34.246.80/29 +149.34.246.88/30 +149.34.247.34/32 +149.34.247.36/32 +149.34.247.39/32 +149.34.247.41/32 +149.34.247.44/32 +149.34.247.46/32 +149.34.247.49/32 +149.34.247.51/32 +149.34.248.65/32 +149.34.248.66/31 +149.34.249.51/32 +149.34.249.53/32 +149.34.249.55/32 +149.34.249.57/32 +149.34.252.251/32 +149.34.253.2/32 +149.34.253.7/32 +149.34.253.12/32 +149.34.253.17/32 +149.34.253.22/32 +149.34.253.25/32 +149.34.253.194/32 +149.34.253.197/32 +149.34.253.200/32 +149.34.253.203/32 +149.34.253.206/32 +149.34.253.209/32 +149.34.253.213/32 +149.34.253.241/32 +149.34.253.242/31 +149.34.253.244/30 +149.34.253.248/31 +149.34.253.250/32 +149.36.48.129/32 +149.36.48.130/31 +149.36.48.132/30 +149.36.48.136/30 +149.36.48.141/32 +149.36.48.142/31 +149.36.48.144/29 +149.36.48.153/32 +149.36.48.154/31 +149.36.50.1/32 +149.36.50.2/31 +149.36.50.129/32 +149.36.50.130/31 +149.36.50.157/32 +149.36.50.158/31 +149.36.50.211/32 +149.36.51.3/32 +149.36.51.129/32 +149.36.51.130/31 +149.40.48.59/32 +149.40.48.65/32 +149.40.48.66/31 +149.40.48.68/30 +149.40.48.72/29 +149.40.48.80/28 +149.40.48.96/29 +149.40.48.104/30 +149.40.48.225/32 +149.40.48.226/31 +149.40.48.228/30 +149.40.48.232/29 +149.40.48.240/29 +149.40.48.248/30 +149.40.49.1/32 +149.40.49.2/32 +149.40.49.30/31 +149.40.50.66/31 +149.40.50.68/32 +149.40.50.81/32 +149.40.50.82/31 +149.40.51.98/32 +149.40.51.100/32 +149.40.51.103/32 +149.40.51.105/32 +149.40.51.112/32 +149.40.51.114/32 +149.40.51.117/32 +149.40.51.119/32 +149.40.51.130/32 +149.40.51.132/32 +149.40.51.135/32 +149.40.51.137/32 +149.40.51.140/32 +149.40.51.145/32 +149.40.51.150/32 +149.40.53.146/32 +149.40.53.148/32 +149.40.53.151/32 +149.40.53.153/32 +149.40.54.129/32 +149.40.54.130/31 +149.40.56.130/31 +149.40.56.132/32 +149.40.58.145/32 +149.40.58.146/32 +149.40.59.84/32 +149.40.59.215/32 +149.40.59.217/32 +149.40.61.193/32 +149.40.61.194/31 +149.40.61.225/32 +149.40.61.226/31 +149.40.62.21/32 +149.40.62.26/32 +149.40.62.31/32 +149.40.62.36/32 +149.40.62.41/32 +149.40.62.46/32 +149.40.62.51/32 +149.40.62.56/32 +149.40.62.61/32 +149.40.62.62/32 +149.40.62.90/31 +149.40.62.119/32 +149.40.63.129/32 +149.40.63.130/31 +149.40.63.132/30 +149.40.63.136/29 +149.40.63.144/29 +149.40.63.152/30 +149.50.208.97/32 +149.50.208.98/31 +149.50.209.129/32 +149.50.209.130/31 +149.50.209.132/30 +149.50.209.136/29 +149.50.209.144/29 +149.50.209.152/30 +149.50.209.161/32 +149.50.209.162/31 +149.50.209.164/30 +149.50.209.168/29 +149.50.209.176/29 +149.50.209.184/30 +149.50.211.129/32 +149.50.211.134/32 +149.50.211.139/32 +149.50.211.144/32 +149.50.211.149/32 +149.50.211.154/32 +149.50.211.159/32 +149.50.212.193/32 +149.50.212.194/31 +149.50.212.206/31 +149.50.212.208/32 +149.50.213.36/32 +149.50.213.38/32 +149.50.213.41/32 +149.50.213.43/32 +149.50.216.65/32 +149.50.216.66/31 +149.50.216.193/32 +149.50.216.194/31 +149.50.216.196/30 +149.50.216.200/29 +149.50.216.208/29 +149.50.216.216/32 +149.50.216.225/32 +149.50.216.226/31 +149.50.216.228/30 +149.50.216.232/29 +149.50.216.240/29 +149.50.216.248/31 +149.50.216.250/32 +149.50.217.114/32 +149.50.217.161/32 +149.50.217.162/31 +149.50.217.164/30 +149.50.217.168/29 +149.50.217.176/29 +149.50.217.184/30 +149.50.217.246/32 +149.50.217.248/32 +149.50.217.250/32 +149.50.223.18/32 +149.50.223.20/32 +149.50.223.23/32 +149.50.223.25/32 +149.50.223.34/32 +149.50.223.36/32 +149.50.223.39/32 +149.50.223.41/32 +149.50.223.66/32 +149.50.223.68/32 +149.56.10.81/32 +149.56.10.83/32 +149.56.10.84/32 +149.56.17.12/32 +149.56.178.49/32 +149.56.178.51/32 +149.57.28.8/31 +149.57.28.10/32 +149.57.28.49/32 +149.57.28.50/32 +149.57.28.225/32 +149.57.28.226/32 +149.57.28.241/32 +149.57.28.242/32 +149.78.184.70/32 +149.78.184.98/31 +149.88.16.50/32 +149.88.16.52/32 +149.88.16.55/32 +149.88.16.57/32 +149.88.16.194/32 +149.88.16.196/32 +149.88.16.199/32 +149.88.16.201/32 +149.88.16.204/32 +149.88.16.209/32 +149.88.16.214/32 +149.88.16.247/32 +149.88.16.249/32 +149.88.17.50/32 +149.88.17.66/32 +149.88.17.71/32 +149.88.17.129/32 +149.88.17.130/31 +149.88.17.132/30 +149.88.17.136/30 +149.88.17.140/31 +149.88.17.145/32 +149.88.17.146/31 +149.88.17.148/30 +149.88.17.152/29 +149.88.17.160/28 +149.88.17.176/30 +149.88.17.194/32 +149.88.17.196/32 +149.88.17.199/32 +149.88.17.201/32 +149.88.17.204/32 +149.88.17.206/32 +149.88.17.209/32 +149.88.17.211/32 +149.88.17.215/32 +149.88.17.217/32 +149.88.18.2/32 +149.88.18.193/32 +149.88.18.194/31 +149.88.18.196/30 +149.88.18.200/29 +149.88.18.208/28 +149.88.18.224/29 +149.88.18.232/31 +149.88.18.238/32 +149.88.19.149/32 +149.88.19.151/32 +149.88.19.225/32 +149.88.19.226/31 +149.88.19.228/30 +149.88.19.232/29 +149.88.19.240/29 +149.88.19.248/31 +149.88.19.250/32 +149.88.20.129/32 +149.88.20.130/31 +149.88.20.132/30 +149.88.20.136/30 +149.88.20.140/31 +149.88.20.243/32 +149.88.20.245/32 +149.88.21.1/32 +149.88.21.2/32 +149.88.21.30/31 +149.88.21.129/32 +149.88.21.130/31 +149.88.21.140/31 +149.88.21.142/32 +149.88.21.162/32 +149.88.21.164/32 +149.88.22.33/32 +149.88.22.34/31 +149.88.22.46/31 +149.88.22.48/32 +149.88.23.102/32 +149.88.23.107/32 +149.88.23.112/32 +149.88.23.117/32 +149.88.24.1/32 +149.88.24.2/31 +149.88.24.4/30 +149.88.24.8/31 +149.88.24.10/32 +149.88.24.129/32 +149.88.24.130/31 +149.88.24.132/30 +149.88.24.136/29 +149.88.24.144/28 +149.88.24.160/27 +149.88.24.192/27 +149.88.24.224/30 +149.88.24.228/31 +149.88.24.230/32 +149.88.25.129/32 +149.88.25.134/31 +149.88.25.136/31 +149.88.25.138/32 +149.88.27.66/32 +149.88.27.68/32 +149.88.27.98/32 +149.88.27.100/32 +149.88.27.103/32 +149.88.27.105/32 +149.88.27.129/32 +149.88.27.130/31 +149.88.27.132/31 +149.88.27.135/32 +149.88.27.136/29 +149.88.27.144/28 +149.88.27.160/28 +149.88.27.176/30 +149.88.27.180/32 +149.88.27.182/32 +149.88.27.193/32 +149.88.27.194/31 +149.88.27.196/30 +149.88.27.200/29 +149.88.27.208/28 +149.88.27.224/28 +149.88.27.240/29 +149.88.27.248/31 +149.88.27.250/32 +149.88.28.18/32 +149.88.28.20/32 +149.88.28.23/32 +149.88.28.25/32 +149.88.30.1/32 +149.88.30.2/32 +149.88.30.30/31 +149.88.30.59/32 +149.88.30.60/32 +149.88.30.130/32 +149.88.30.132/32 +149.88.30.135/32 +149.88.30.137/32 +149.88.30.140/32 +149.88.30.142/32 +149.88.30.145/32 +149.88.30.147/32 +149.88.30.150/32 +149.88.30.152/32 +149.88.30.178/32 +149.88.96.1/32 +149.88.96.2/31 +149.88.96.12/31 +149.88.96.14/32 +149.88.97.97/32 +149.88.97.98/31 +149.88.97.100/30 +149.88.97.104/29 +149.88.97.112/29 +149.88.97.120/31 +149.88.97.122/32 +149.88.98.65/32 +149.88.98.66/31 +149.88.98.81/32 +149.88.98.82/31 +149.88.98.161/32 +149.88.98.177/32 +149.88.99.130/32 +149.88.99.132/32 +149.88.100.65/32 +149.88.100.66/31 +149.88.100.193/32 +149.88.100.194/31 +149.88.100.196/30 +149.88.100.200/29 +149.88.100.208/29 +149.88.100.216/30 +149.88.100.226/32 +149.88.100.228/32 +149.88.100.231/32 +149.88.100.236/32 +149.88.102.33/32 +149.88.102.34/31 +149.88.102.36/30 +149.88.102.40/29 +149.88.102.48/29 +149.88.102.56/30 +149.88.102.97/32 +149.88.102.98/31 +149.88.102.100/30 +149.88.102.104/29 +149.88.102.112/29 +149.88.102.120/30 +149.88.103.33/32 +149.88.103.38/32 +149.88.103.43/32 +149.88.103.48/32 +149.88.103.53/32 +149.88.104.225/32 +149.88.104.226/31 +149.88.104.238/31 +149.88.104.240/32 +149.88.105.65/32 +149.88.105.66/31 +149.88.105.68/30 +149.88.105.72/29 +149.88.105.80/28 +149.88.105.96/28 +149.88.105.112/29 +149.88.105.120/30 +149.88.105.225/32 +149.88.105.226/31 +149.88.105.228/30 +149.88.105.232/29 +149.88.105.240/29 +149.88.105.248/30 +149.88.108.1/32 +149.88.108.2/31 +149.88.110.33/32 +149.88.110.34/31 +149.88.110.36/30 +149.88.110.40/29 +149.88.110.48/29 +149.88.110.56/30 +149.88.111.1/32 +149.88.111.2/31 +149.88.111.14/31 +149.88.111.16/32 +149.102.224.53/32 +149.102.224.161/32 +149.102.224.162/31 +149.102.224.164/30 +149.102.224.168/29 +149.102.224.176/29 +149.102.224.184/30 +149.102.224.225/32 +149.102.224.227/32 +149.102.224.229/32 +149.102.224.231/32 +149.102.224.239/32 +149.102.224.241/32 +149.102.224.244/32 +149.102.224.246/32 +149.102.226.193/32 +149.102.226.194/31 +149.102.226.196/30 +149.102.226.200/30 +149.102.226.225/32 +149.102.226.226/31 +149.102.226.228/30 +149.102.226.232/30 +149.102.226.237/32 +149.102.226.238/31 +149.102.226.240/29 +149.102.226.248/31 +149.102.227.1/32 +149.102.227.2/31 +149.102.227.4/30 +149.102.227.8/29 +149.102.227.16/28 +149.102.227.32/28 +149.102.227.48/29 +149.102.227.56/31 +149.102.227.58/32 +149.102.227.65/32 +149.102.227.66/31 +149.102.227.77/32 +149.102.227.78/31 +149.102.227.193/32 +149.102.228.1/32 +149.102.228.2/32 +149.102.228.29/32 +149.102.228.30/32 +149.102.228.57/32 +149.102.228.58/32 +149.102.228.85/32 +149.102.228.86/32 +149.102.228.193/32 +149.102.228.194/32 +149.102.228.221/32 +149.102.228.222/32 +149.102.229.193/32 +149.102.229.194/31 +149.102.230.193/32 +149.102.230.195/32 +149.102.230.197/32 +149.102.230.199/32 +149.102.230.201/32 +149.102.230.203/32 +149.102.230.209/32 +149.102.230.211/32 +149.102.230.214/32 +149.102.230.216/32 +149.102.232.225/32 +149.102.232.226/31 +149.102.235.33/32 +149.102.235.34/31 +149.102.235.36/30 +149.102.235.40/29 +149.102.235.48/31 +149.102.235.50/32 +149.102.236.33/32 +149.102.236.35/32 +149.102.236.38/32 +149.102.236.40/32 +149.102.236.43/32 +149.102.236.45/32 +149.102.236.193/32 +149.102.236.194/31 +149.102.236.196/30 +149.102.236.200/29 +149.102.236.208/28 +149.102.237.33/32 +149.102.237.34/31 +149.102.237.65/32 +149.102.237.67/32 +149.102.237.70/32 +149.102.237.75/32 +149.102.237.77/32 +149.102.237.80/32 +149.102.237.82/32 +149.102.237.85/32 +149.102.237.87/32 +149.102.237.129/32 +149.102.237.130/31 +149.102.237.132/30 +149.102.237.136/30 +149.102.237.140/31 +149.102.238.1/32 +149.102.238.2/31 +149.102.238.4/30 +149.102.238.8/31 +149.102.238.33/32 +149.102.238.98/32 +149.102.238.103/32 +149.102.238.108/32 +149.102.238.113/32 +149.102.238.115/32 +149.102.238.118/32 +149.102.238.120/32 +149.102.239.34/31 +149.102.239.36/30 +149.102.239.40/29 +149.102.239.48/29 +149.102.239.56/30 +149.102.239.225/32 +149.102.239.230/32 +149.102.242.89/32 +149.102.242.94/32 +149.102.242.98/32 +149.102.242.103/32 +149.102.243.23/32 +149.102.243.76/32 +149.102.243.78/32 +149.102.243.81/32 +149.102.243.83/32 +149.102.243.86/32 +149.102.243.88/32 +149.102.244.17/32 +149.102.244.18/31 +149.102.244.20/30 +149.102.244.24/30 +149.102.244.65/32 +149.102.244.66/31 +149.102.244.97/32 +149.102.244.102/32 +149.102.244.107/32 +149.102.244.112/32 +149.102.244.119/32 +149.102.244.120/30 +149.102.245.65/32 +149.102.245.66/31 +149.102.245.129/32 +149.102.245.130/31 +149.102.245.132/30 +149.102.245.136/29 +149.102.245.144/28 +149.102.245.160/28 +149.102.245.176/30 +149.102.245.180/31 +149.102.245.182/32 +149.102.248.97/32 +149.102.248.98/31 +149.102.248.110/31 +149.102.248.112/32 +149.102.248.194/32 +149.102.248.196/32 +149.102.249.130/32 +149.102.249.132/32 +149.102.249.135/32 +149.102.249.137/32 +149.102.249.140/32 +149.102.249.142/32 +149.102.249.145/32 +149.102.249.147/32 +149.102.249.150/32 +149.102.249.152/32 +149.102.250.50/32 +149.102.251.97/32 +149.102.251.98/31 +149.102.251.100/30 +149.102.251.104/30 +149.102.251.108/31 +149.102.251.193/32 +149.102.251.194/31 +149.102.251.206/31 +149.102.251.208/32 +149.102.252.66/32 +149.102.252.68/32 +149.102.252.71/32 +149.102.252.73/32 +149.102.252.77/32 +149.102.252.79/32 +149.102.252.82/32 +149.102.252.84/32 +149.102.252.88/32 +149.102.252.90/32 +149.102.252.98/32 +149.102.252.100/32 +149.102.252.103/32 +149.102.252.105/32 +149.102.252.116/32 +149.102.252.118/32 +149.102.252.120/32 +149.102.252.122/32 +149.102.254.65/32 +149.102.254.66/31 +149.102.254.68/30 +149.102.254.72/29 +149.102.254.80/29 +149.102.254.88/30 +149.130.223.17/32 +149.154.152.63/32 +149.154.152.77/32 +149.154.152.82/32 +149.154.152.130/32 +149.154.153.50/32 +149.154.153.188/32 +149.154.154.64/32 +149.154.154.71/32 +149.154.154.124/32 +149.154.154.137/32 +149.154.154.177/32 +149.154.157.131/32 +149.154.157.175/32 +149.248.222.213/32 +149.255.155.210/32 +151.80.113.194/32 +151.106.8.34/32 +151.236.5.33/32 +151.236.5.71/32 +151.236.6.95/32 +151.236.6.151/32 +151.236.6.179/32 +151.236.7.163/32 +151.236.7.189/32 +151.236.7.194/32 +151.236.7.208/32 +151.236.9.113/32 +151.236.18.9/32 +151.236.18.110/32 +151.236.18.132/32 +151.236.20.230/32 +151.236.20.239/32 +151.236.21.8/32 +151.236.21.148/32 +151.236.23.18/32 +151.236.23.82/32 +151.236.23.95/32 +151.236.23.117/32 +151.236.23.121/32 +151.236.23.137/32 +151.236.23.144/32 +151.236.23.185/32 +151.236.23.217/32 +151.236.23.229/32 +151.236.23.238/32 +151.236.24.13/32 +151.236.25.69/32 +151.236.25.223/32 +151.236.26.48/32 +151.236.29.84/32 +151.236.29.127/32 +151.236.29.147/32 +151.236.29.177/32 +151.236.29.192/32 +151.236.29.220/32 +151.236.30.115/32 +151.236.30.136/32 +152.67.109.67/32 +152.89.204.150/32 +152.89.204.152/32 +152.89.204.154/32 +152.89.204.156/32 +152.89.204.158/32 +152.89.204.160/32 +152.89.204.162/32 +152.89.204.164/32 +152.89.204.166/32 +152.89.204.168/32 +152.89.204.170/32 +152.89.204.172/32 +152.89.204.174/32 +152.89.204.176/32 +152.89.204.178/32 +152.89.204.180/32 +152.89.204.182/32 +152.89.204.184/32 +152.89.204.186/32 +152.89.204.188/32 +152.89.204.194/32 +152.89.204.199/32 +152.89.204.201/32 +152.89.204.203/32 +152.89.204.245/32 +152.89.204.247/32 +152.89.204.249/32 +152.89.204.251/32 +152.89.204.253/32 +152.89.206.2/31 +152.89.206.4/30 +152.89.206.8/29 +152.89.206.16/30 +152.89.207.130/32 +152.89.207.132/32 +152.89.207.134/32 +152.89.207.136/32 +152.89.207.138/32 +152.89.207.140/32 +153.92.40.100/32 +153.92.40.102/32 +153.92.40.104/32 +153.92.40.106/32 +153.92.40.108/32 +153.92.40.110/32 +153.92.40.112/32 +153.92.40.114/32 +153.92.40.116/32 +153.92.40.118/32 +153.92.40.120/32 +153.92.40.122/32 +153.92.40.124/32 +153.92.40.126/32 +153.92.40.128/32 +153.92.40.130/32 +153.92.40.132/32 +153.92.40.134/32 +154.16.49.72/30 +154.16.49.76/31 +154.16.49.78/32 +154.16.49.80/28 +154.16.49.96/32 +154.16.49.98/31 +154.16.49.100/31 +154.16.49.102/32 +154.16.57.27/32 +154.16.57.104/32 +154.16.57.150/32 +154.16.157.4/32 +154.16.157.20/32 +154.16.157.36/32 +154.16.157.52/32 +154.16.157.68/32 +154.16.157.84/32 +154.16.157.100/32 +154.16.157.116/32 +154.16.157.132/32 +154.16.157.148/32 +154.16.157.164/32 +154.16.157.180/32 +154.16.157.195/32 +154.16.157.210/32 +154.16.157.225/32 +154.16.157.240/32 +154.16.192.160/31 +154.16.192.162/32 +154.16.192.164/31 +154.16.192.168/30 +154.16.192.172/31 +154.16.192.174/32 +154.16.192.176/32 +154.16.192.178/31 +154.16.192.180/30 +154.16.192.184/30 +154.16.192.190/31 +154.16.192.192/29 +154.16.192.200/30 +154.16.192.204/31 +154.16.192.206/32 +154.16.192.208/31 +154.47.16.81/32 +154.47.16.82/31 +154.47.16.84/30 +154.47.16.88/31 +154.47.17.1/32 +154.47.17.3/32 +154.47.17.6/32 +154.47.17.8/32 +154.47.17.17/32 +154.47.17.19/32 +154.47.17.23/32 +154.47.17.25/32 +154.47.17.34/32 +154.47.17.36/32 +154.47.17.44/32 +154.47.17.46/32 +154.47.17.50/32 +154.47.17.52/32 +154.47.17.129/32 +154.47.17.130/31 +154.47.17.132/30 +154.47.17.136/29 +154.47.17.144/29 +154.47.17.152/30 +154.47.17.156/31 +154.47.18.2/31 +154.47.18.4/30 +154.47.18.9/32 +154.47.18.10/31 +154.47.18.12/31 +154.47.18.14/32 +154.47.18.203/32 +154.47.18.204/30 +154.47.18.208/31 +154.47.18.211/32 +154.47.18.212/31 +154.47.18.214/32 +154.47.19.129/32 +154.47.19.130/31 +154.47.19.162/32 +154.47.19.164/32 +154.47.19.193/32 +154.47.19.194/31 +154.47.19.196/30 +154.47.19.200/31 +154.47.19.206/31 +154.47.19.208/30 +154.47.19.212/31 +154.47.20.206/31 +154.47.20.208/31 +154.47.20.210/32 +154.47.22.33/32 +154.47.22.34/32 +154.47.22.37/32 +154.47.22.44/32 +154.47.22.65/32 +154.47.22.66/31 +154.47.22.68/30 +154.47.22.72/30 +154.47.22.77/32 +154.47.22.78/31 +154.47.22.80/29 +154.47.22.88/30 +154.47.22.97/32 +154.47.22.98/31 +154.47.22.100/30 +154.47.22.104/30 +154.47.23.193/32 +154.47.23.195/32 +154.47.23.197/32 +154.47.23.200/32 +154.47.23.202/32 +154.47.23.205/32 +154.47.23.207/32 +154.47.23.210/32 +154.47.23.212/32 +154.47.23.215/32 +154.47.23.217/32 +154.47.23.220/32 +154.47.23.222/32 +154.47.23.233/32 +154.47.23.235/32 +154.47.23.239/32 +154.47.23.241/32 +154.47.24.193/32 +154.47.24.194/31 +154.47.24.196/30 +154.47.24.200/30 +154.47.25.17/32 +154.47.25.18/31 +154.47.25.65/32 +154.47.25.66/31 +154.47.25.129/32 +154.47.25.130/31 +154.47.25.132/30 +154.47.25.136/30 +154.47.25.145/32 +154.47.25.146/31 +154.47.25.148/30 +154.47.25.152/30 +154.47.25.161/32 +154.47.25.162/31 +154.47.25.164/30 +154.47.25.168/30 +154.47.25.193/32 +154.47.25.194/31 +154.47.25.196/30 +154.47.25.200/29 +154.47.25.208/28 +154.47.25.224/28 +154.47.25.240/29 +154.47.25.248/30 +154.47.26.194/32 +154.47.26.196/32 +154.47.26.199/32 +154.47.26.201/32 +154.47.26.204/32 +154.47.26.206/32 +154.47.26.215/32 +154.47.26.217/32 +154.47.27.50/32 +154.47.28.129/32 +154.47.28.130/31 +154.47.29.161/32 +154.47.29.162/31 +154.47.29.174/31 +154.47.29.176/32 +154.47.31.162/32 +154.47.31.164/32 +154.47.31.177/32 +154.47.31.179/32 +154.47.31.182/32 +154.47.31.184/32 +154.205.152.242/32 +155.94.209.130/32 +155.94.216.2/32 +155.94.216.66/32 +155.94.216.130/32 +155.94.216.194/32 +155.94.217.2/32 +155.94.217.66/32 +155.94.218.66/32 +155.94.247.194/32 +155.94.248.66/32 +155.94.249.66/32 +155.94.251.66/32 +155.133.5.2/32 +155.133.5.17/32 +155.133.5.32/32 +155.133.5.47/32 +155.133.5.62/32 +155.133.15.1/32 +155.133.15.3/32 +155.133.15.5/32 +155.133.15.7/32 +155.133.15.9/32 +155.133.15.11/32 +155.133.15.13/32 +155.133.15.15/32 +155.133.15.17/32 +155.133.15.19/32 +155.133.15.129/32 +155.133.15.131/32 +155.133.15.133/32 +155.133.15.135/32 +155.133.15.137/32 +155.133.15.139/32 +155.133.15.141/32 +155.133.15.143/32 +155.133.15.145/32 +155.133.15.147/32 +155.133.17.2/32 +155.133.17.4/32 +155.133.17.6/32 +155.133.17.8/32 +155.133.17.10/32 +155.133.17.12/32 +155.133.17.14/32 +155.133.17.16/32 +155.133.17.18/32 +155.133.17.20/32 +155.133.17.22/32 +155.133.17.24/32 +155.133.17.26/32 +155.133.17.28/32 +155.133.17.30/32 +155.133.17.32/32 +155.133.17.34/32 +155.133.17.36/32 +155.133.17.38/32 +155.133.17.40/32 +155.133.71.1/32 +155.133.71.3/32 +155.133.71.5/32 +155.133.71.7/32 +155.133.71.105/32 +155.133.71.134/32 +155.133.71.158/32 +155.133.71.182/32 +155.133.71.206/32 +155.133.71.229/32 +155.138.130.173/32 +155.138.146.150/32 +156.38.157.201/32 +156.67.85.2/32 +156.67.85.4/32 +156.67.85.6/32 +156.67.85.8/32 +156.67.85.10/32 +156.67.85.12/32 +156.67.85.14/32 +156.67.85.16/32 +156.67.85.18/32 +156.67.85.20/32 +156.146.35.3/32 +156.146.35.4/30 +156.146.35.9/32 +156.146.35.10/31 +156.146.35.12/30 +156.146.35.16/30 +156.146.35.21/32 +156.146.35.22/31 +156.146.35.24/31 +156.146.35.66/32 +156.146.35.69/32 +156.146.35.72/32 +156.146.35.75/32 +156.146.35.78/32 +156.146.35.81/32 +156.146.35.84/32 +156.146.35.87/32 +156.146.35.90/32 +156.146.35.93/32 +156.146.35.96/32 +156.146.35.99/32 +156.146.35.102/32 +156.146.35.105/32 +156.146.35.108/32 +156.146.35.115/32 +156.146.36.34/32 +156.146.36.39/32 +156.146.36.44/32 +156.146.36.49/32 +156.146.36.51/32 +156.146.36.54/32 +156.146.36.56/32 +156.146.37.199/32 +156.146.37.201/32 +156.146.37.204/32 +156.146.37.206/32 +156.146.43.197/32 +156.146.43.200/32 +156.146.43.203/32 +156.146.43.206/32 +156.146.43.209/32 +156.146.43.211/32 +156.146.43.214/32 +156.146.43.216/32 +156.146.45.8/32 +156.146.45.10/32 +156.146.45.13/32 +156.146.45.18/32 +156.146.45.23/32 +156.146.45.129/32 +156.146.45.130/31 +156.146.45.132/30 +156.146.45.136/30 +156.146.45.226/32 +156.146.45.228/32 +156.146.45.233/32 +156.146.45.235/32 +156.146.47.129/32 +156.146.47.131/32 +156.146.47.133/32 +156.146.47.135/32 +156.146.47.137/32 +156.146.47.139/32 +156.146.47.141/32 +156.146.47.143/32 +156.146.47.145/32 +156.146.47.147/32 +156.146.47.149/32 +156.146.47.151/32 +156.146.47.153/32 +156.146.47.155/32 +156.146.47.157/32 +156.146.50.1/32 +156.146.50.2/31 +156.146.50.4/30 +156.146.50.8/30 +156.146.51.65/32 +156.146.51.66/31 +156.146.51.68/30 +156.146.51.72/29 +156.146.51.80/29 +156.146.51.88/30 +156.146.51.98/32 +156.146.51.104/32 +156.146.51.115/32 +156.146.51.117/32 +156.146.51.120/32 +156.146.51.122/32 +156.146.51.129/32 +156.146.54.81/32 +156.146.54.97/32 +156.146.54.98/31 +156.146.54.100/30 +156.146.54.104/30 +156.146.54.108/31 +156.146.55.2/32 +156.146.55.14/32 +156.146.55.26/32 +156.146.55.38/32 +156.146.55.50/32 +156.146.55.62/32 +156.146.55.74/32 +156.146.55.86/32 +156.146.55.98/32 +156.146.55.110/32 +156.146.55.159/32 +156.146.55.160/29 +156.146.55.169/32 +156.146.55.170/31 +156.146.55.172/32 +156.146.55.174/31 +156.146.55.176/30 +156.146.55.180/32 +156.146.55.182/31 +156.146.55.184/30 +156.146.55.225/32 +156.146.55.226/31 +156.146.55.228/30 +156.146.55.232/31 +156.146.55.238/31 +156.146.55.240/31 +156.146.55.242/32 +156.146.56.97/32 +156.146.56.98/31 +156.146.56.110/31 +156.146.56.112/32 +156.146.59.3/32 +156.146.59.4/30 +156.146.59.8/29 +156.146.59.16/32 +156.146.59.18/31 +156.146.59.20/32 +156.146.59.22/31 +156.146.59.24/31 +156.146.59.27/32 +156.146.59.28/31 +156.146.59.30/32 +156.146.59.32/32 +156.146.59.35/32 +156.146.59.36/30 +156.146.59.40/30 +156.146.59.44/32 +156.146.59.46/31 +156.146.59.48/31 +156.146.59.50/32 +156.146.63.82/32 +156.146.63.84/32 +156.146.63.99/32 +156.146.63.100/32 +156.146.63.103/32 +156.146.63.105/32 +156.146.63.108/32 +156.146.63.110/32 +156.146.63.116/32 +156.146.63.118/32 +156.146.63.120/32 +156.146.63.122/32 +157.230.0.96/32 +157.230.54.147/32 +157.230.54.153/32 +157.230.54.158/32 +157.230.54.161/32 +157.230.99.8/32 +157.230.111.167/32 +157.230.121.125/32 +157.230.230.235/32 +157.230.254.96/32 +157.245.52.95/32 +157.245.57.247/32 +157.245.81.161/32 +157.245.81.250/32 +157.245.92.232/32 +157.245.156.194/32 +157.245.158.102/32 +157.245.192.116/32 +157.245.200.9/32 +157.245.248.148/32 +158.101.137.158/32 +158.101.213.180/32 +158.178.128.233/32 +158.220.78.1/32 +158.220.78.21/32 +158.220.78.41/32 +158.220.78.61/32 +158.220.78.81/32 +158.247.196.200/32 +158.247.197.120/32 +158.247.198.133/32 +158.247.200.199/32 +158.247.205.28/32 +158.247.212.147/32 +158.247.218.30/32 +158.247.218.173/32 +158.247.220.143/32 +158.247.222.253/32 +158.247.224.58/32 +158.247.224.117/32 +158.247.234.235/32 +158.247.237.222/32 +158.247.254.198/32 +158.255.208.121/32 +158.255.208.193/32 +158.255.208.221/32 +158.255.209.80/32 +158.255.209.243/32 +158.255.211.46/32 +158.255.212.77/32 +158.255.212.162/32 +158.255.215.28/32 +158.255.215.65/32 +159.65.95.215/32 +159.65.218.178/32 +159.69.113.9/32 +159.89.52.126/32 +159.89.87.161/32 +159.89.232.112/32 +159.203.36.156/32 +159.203.36.215/32 +159.203.40.97/32 +159.203.41.0/32 +159.203.42.109/32 +159.203.44.199/32 +159.203.59.35/32 +159.203.80.209/32 +159.203.90.59/32 +159.223.106.80/32 +159.223.106.253/32 +159.223.108.255/32 +159.223.165.251/32 +159.223.179.233/32 +159.223.222.246/32 +160.238.37.0/32 +160.238.37.26/32 +160.238.37.32/32 +160.238.37.48/32 +160.238.37.64/32 +160.238.37.80/32 +160.238.37.96/32 +160.238.37.112/32 +160.238.37.128/32 +160.238.37.144/32 +161.35.12.148/32 +161.35.12.186/32 +161.35.61.140/32 +161.35.69.120/32 +161.35.108.242/32 +161.35.114.224/32 +162.210.194.1/32 +162.210.194.2/31 +162.210.194.4/32 +162.222.198.130/32 +162.243.167.155/32 +162.243.168.16/32 +162.243.168.160/32 +162.243.175.68/32 +163.5.171.2/31 +163.5.171.4/30 +163.5.171.8/29 +163.5.171.16/29 +163.5.171.24/30 +163.5.171.29/32 +163.5.171.30/31 +163.5.171.32/27 +163.5.171.64/28 +163.5.171.80/31 +163.5.171.83/32 +163.5.171.84/30 +163.5.171.88/29 +163.5.171.96/29 +163.5.171.104/30 +163.5.171.108/32 +163.5.171.111/32 +163.5.171.112/28 +163.5.171.128/29 +163.5.171.136/32 +164.90.145.177/32 +164.90.148.10/32 +164.90.156.115/32 +164.90.157.238/32 +164.90.190.63/32 +164.92.65.243/32 +164.92.69.176/32 +164.92.74.188/32 +164.92.91.59/32 +164.92.132.45/32 +164.92.134.202/32 +164.92.134.244/32 +164.92.180.144/32 +165.22.8.104/32 +165.22.12.57/32 +165.22.12.89/32 +165.22.12.129/32 +165.22.32.97/32 +165.22.34.97/32 +165.22.34.122/32 +165.22.40.95/32 +165.22.44.6/32 +165.22.47.235/32 +165.22.91.128/32 +165.22.195.6/32 +165.22.195.21/32 +165.22.205.58/32 +165.22.210.179/32 +165.22.217.61/32 +165.22.217.66/32 +165.22.217.97/32 +165.22.228.26/32 +165.22.239.106/32 +165.73.248.90/31 +165.73.248.92/32 +165.227.37.24/32 +165.227.45.141/32 +165.227.168.78/32 +165.231.141.74/32 +165.231.141.122/31 +165.231.141.124/32 +165.231.141.130/31 +165.231.141.132/32 +165.231.141.138/31 +165.231.141.140/32 +165.231.178.10/32 +165.231.178.18/31 +165.231.178.20/30 +165.231.178.24/31 +165.231.210.155/32 +165.231.210.163/32 +165.231.210.171/32 +165.231.253.66/31 +165.231.253.68/32 +165.231.253.210/31 +165.231.253.212/32 +165.231.253.242/31 +165.231.253.244/32 +165.232.46.33/32 +165.232.144.158/32 +165.232.153.85/32 +165.232.153.125/32 +165.232.156.61/32 +167.71.18.92/32 +167.71.49.204/32 +167.71.62.22/32 +167.71.82.20/32 +167.71.82.99/32 +167.71.82.174/32 +167.71.86.54/32 +167.71.90.10/32 +167.71.90.51/32 +167.71.90.68/32 +167.71.90.254/32 +167.71.140.174/32 +167.71.212.96/32 +167.71.213.49/32 +167.71.217.44/32 +167.71.219.202/32 +167.71.221.67/32 +167.88.50.2/31 +167.88.50.4/32 +167.88.50.34/31 +167.88.50.36/32 +167.88.60.226/31 +167.88.60.228/32 +167.88.60.242/31 +167.88.60.244/32 +167.89.118.52/32 +167.89.118.61/32 +167.89.118.62/32 +167.89.118.83/32 +167.89.118.95/32 +167.89.118.109/32 +167.89.118.120/32 +167.89.118.128/32 +167.89.123.54/32 +167.89.123.58/32 +167.89.123.62/32 +167.89.123.66/32 +167.89.123.89/32 +167.89.123.90/32 +167.89.123.124/32 +167.89.123.204/32 +167.99.192.192/32 +167.99.198.177/32 +167.99.198.196/32 +167.99.206.212/32 +167.172.20.51/32 +167.172.73.186/32 +167.172.177.66/32 +167.172.177.120/32 +167.179.67.27/32 +167.179.75.229/32 +167.179.77.241/32 +167.179.87.110/32 +167.179.87.236/32 +167.179.104.21/32 +167.179.112.130/32 +168.205.94.28/32 +168.205.94.31/32 +168.205.94.32/32 +169.150.196.71/32 +169.150.196.83/32 +169.150.196.95/32 +169.150.196.96/31 +169.150.196.100/32 +169.150.196.145/32 +169.150.196.150/32 +169.150.196.193/32 +169.150.196.221/32 +169.150.197.97/32 +169.150.197.98/31 +169.150.197.100/30 +169.150.197.104/29 +169.150.197.112/29 +169.150.197.120/31 +169.150.197.122/32 +169.150.197.161/32 +169.150.197.162/31 +169.150.197.193/32 +169.150.197.220/32 +169.150.199.1/32 +169.150.199.2/31 +169.150.199.65/32 +169.150.199.66/31 +169.150.201.162/31 +169.150.201.165/32 +169.150.201.166/32 +169.150.201.169/32 +169.150.201.171/32 +169.150.201.174/32 +169.150.201.176/32 +169.150.201.179/32 +169.150.201.181/32 +169.150.201.184/32 +169.150.203.129/32 +169.150.203.131/32 +169.150.203.133/32 +169.150.203.135/32 +169.150.203.137/32 +169.150.203.139/32 +169.150.203.141/32 +169.150.203.143/32 +169.150.203.145/32 +169.150.203.147/32 +169.150.203.161/32 +169.150.203.162/31 +169.150.203.166/32 +169.150.203.168/32 +169.150.203.171/32 +169.150.203.173/32 +169.150.203.176/32 +169.150.203.178/32 +169.150.203.181/32 +169.150.203.183/32 +169.150.204.2/31 +169.150.204.7/32 +169.150.204.8/32 +169.150.204.12/31 +169.150.204.17/32 +169.150.204.18/32 +169.150.204.22/31 +169.150.204.27/32 +169.150.204.33/32 +169.150.204.34/31 +169.150.204.36/30 +169.150.204.40/31 +169.150.204.44/30 +169.150.204.48/30 +169.150.204.52/32 +169.150.204.55/32 +169.150.204.56/31 +169.150.204.58/32 +169.150.205.33/32 +169.150.218.1/32 +169.150.218.6/32 +169.150.218.16/32 +169.150.218.21/32 +169.150.218.26/32 +169.150.218.31/32 +169.150.218.36/32 +169.150.218.41/32 +169.150.218.42/31 +169.150.218.44/30 +169.150.218.48/32 +169.150.218.55/32 +169.150.218.65/32 +169.150.218.70/32 +169.150.218.75/32 +169.150.218.80/32 +169.150.218.85/32 +169.150.218.90/31 +169.150.218.99/32 +169.150.218.101/32 +169.150.218.104/32 +169.150.218.106/32 +169.150.218.109/32 +169.150.218.115/32 +169.150.218.117/32 +169.150.218.119/32 +169.150.218.122/32 +169.150.218.137/32 +169.150.218.193/32 +169.150.218.194/31 +169.150.218.196/30 +169.150.218.200/29 +169.150.218.208/29 +169.150.218.216/30 +169.150.221.147/32 +169.150.226.21/32 +169.150.226.22/31 +169.150.226.24/30 +169.150.226.28/32 +169.150.226.30/31 +169.150.226.32/31 +169.150.226.39/32 +169.150.226.44/32 +169.150.226.56/32 +169.150.226.68/32 +169.150.226.80/32 +169.150.226.91/32 +169.150.226.102/32 +169.150.226.113/32 +169.150.226.161/32 +169.150.226.162/31 +169.150.226.164/30 +169.150.226.168/30 +169.150.231.1/32 +169.150.231.2/31 +169.150.231.4/31 +169.150.231.161/32 +169.150.231.162/31 +169.150.231.164/30 +169.150.231.168/29 +169.150.231.176/30 +169.150.231.180/31 +169.150.232.66/32 +169.150.232.68/32 +169.150.232.71/32 +169.150.232.73/32 +169.150.232.90/32 +169.150.232.92/32 +169.150.232.95/32 +169.150.232.97/32 +169.150.232.100/32 +169.150.232.102/32 +169.150.232.105/32 +169.150.232.107/32 +169.150.232.115/32 +169.150.232.117/32 +169.150.232.120/32 +169.150.232.122/32 +169.150.232.142/32 +169.150.232.144/32 +169.150.232.146/32 +169.150.232.148/32 +169.150.232.150/32 +169.150.232.152/32 +169.150.232.154/31 +169.150.232.156/32 +169.150.232.158/32 +169.150.232.160/32 +169.150.232.162/32 +169.150.232.164/31 +169.150.232.166/32 +169.150.237.1/32 +169.150.237.2/31 +169.150.238.151/32 +169.150.238.153/32 +169.150.254.1/32 +169.150.254.3/32 +169.150.254.5/32 +169.150.254.7/32 +169.150.254.9/32 +169.150.254.11/32 +169.150.254.16/32 +169.150.254.18/32 +169.150.254.21/32 +169.150.254.23/32 +169.150.254.33/32 +169.150.254.34/31 +169.150.254.36/30 +169.150.254.40/31 +169.150.254.42/32 +169.150.254.146/32 +169.150.254.148/32 +169.150.254.150/32 +169.150.254.153/32 +169.150.254.161/32 +169.150.254.162/31 +169.150.254.164/30 +169.150.254.168/30 +169.150.254.172/32 +169.150.254.174/31 +169.150.254.176/31 +169.150.254.178/32 +169.255.56.202/32 +170.62.160.1/32 +170.62.160.2/32 +170.62.160.4/31 +170.62.160.7/32 +170.62.160.8/30 +170.62.160.12/32 +170.78.75.25/32 +170.78.75.32/32 +170.78.75.62/32 +170.78.75.76/32 +172.81.177.237/32 +172.93.146.131/32 +172.93.146.132/32 +172.93.146.171/32 +172.93.146.172/32 +172.93.146.187/32 +172.93.146.188/32 +172.93.147.67/32 +172.93.147.130/32 +172.93.153.163/32 +172.93.165.100/31 +172.93.165.121/32 +172.93.177.3/32 +172.93.177.11/32 +172.93.177.19/32 +172.93.177.27/32 +172.93.177.35/32 +172.93.177.43/32 +172.93.177.51/32 +172.93.177.59/32 +172.93.177.67/32 +172.93.177.75/32 +172.93.177.83/32 +172.93.177.91/32 +172.93.177.99/32 +172.93.177.107/32 +172.93.177.115/32 +172.93.177.123/32 +172.93.177.131/32 +172.93.177.139/32 +172.93.177.147/32 +172.93.177.155/32 +172.93.177.163/32 +172.93.177.171/32 +172.93.177.179/32 +172.93.177.187/32 +172.93.177.195/32 +172.93.177.203/32 +172.93.177.211/32 +172.93.177.219/32 +172.93.177.227/32 +172.93.177.235/32 +172.93.177.243/32 +172.93.177.251/32 +172.93.188.14/32 +172.93.188.72/32 +172.93.188.139/32 +172.93.221.215/32 +172.93.221.216/32 +172.93.230.99/32 +172.93.230.107/32 +172.93.230.108/32 +172.93.237.99/32 +172.93.237.100/32 +172.98.68.194/31 +172.98.68.196/32 +172.98.68.205/32 +172.98.68.206/31 +172.98.68.216/31 +172.98.68.218/32 +172.98.68.227/32 +172.98.68.238/32 +172.98.82.2/31 +172.98.82.4/32 +172.98.82.146/31 +172.98.82.148/30 +172.98.82.152/31 +172.98.82.154/32 +172.241.250.131/32 +172.241.250.137/32 +172.241.250.138/32 +172.241.250.171/32 +172.255.125.141/32 +172.255.125.161/32 +173.44.36.66/31 +173.44.36.68/32 +173.44.36.130/32 +173.44.43.130/31 +173.44.43.132/32 +173.199.124.41/32 +173.205.82.34/32 +173.239.194.10/31 +173.239.194.12/32 +173.239.194.14/31 +173.239.194.17/32 +173.239.194.18/31 +173.239.194.20/32 +173.239.194.23/32 +173.239.194.25/32 +173.239.194.26/31 +173.239.194.28/30 +173.239.194.32/30 +173.239.194.37/32 +173.239.194.38/31 +173.239.194.40/29 +173.239.194.48/32 +173.239.194.50/31 +173.239.194.52/30 +173.239.194.56/30 +173.239.194.61/32 +173.239.194.64/30 +173.239.194.68/32 +173.239.201.2/31 +173.239.201.5/32 +173.239.201.6/31 +173.239.201.8/30 +173.239.201.13/32 +173.239.201.14/31 +173.239.201.16/30 +173.239.201.20/31 +173.239.201.23/32 +173.239.201.24/31 +173.239.201.26/32 +173.239.201.130/31 +173.239.201.132/32 +173.239.201.135/32 +173.239.201.136/31 +173.239.201.139/32 +173.239.201.140/32 +173.244.58.2/32 +173.244.58.4/30 +173.244.58.8/31 +173.244.58.11/32 +173.244.58.12/32 +173.244.58.130/31 +173.244.58.132/30 +173.244.58.136/31 +173.244.58.138/32 +173.244.58.140/30 +173.244.58.145/32 +173.244.58.146/31 +173.244.58.150/31 +173.244.58.152/32 +174.138.36.124/32 +174.138.84.62/32 +174.138.84.205/32 +175.110.108.1/32 +175.110.108.2/31 +175.110.108.4/30 +175.110.108.8/30 +175.110.108.12/32 +176.96.226.226/31 +176.96.226.228/30 +176.96.226.232/30 +176.96.226.236/31 +176.96.226.238/32 +176.96.226.242/31 +176.96.226.244/30 +176.96.226.248/30 +176.96.226.252/31 +176.96.226.254/32 +176.100.43.4/32 +176.100.43.16/32 +176.100.43.28/32 +176.100.43.40/32 +176.100.43.52/32 +176.100.43.64/32 +176.100.43.76/32 +176.113.72.51/32 +176.113.72.59/32 +176.113.72.67/32 +176.113.72.75/32 +176.113.72.83/32 +176.113.72.84/32 +176.113.72.91/32 +176.113.72.92/32 +176.113.72.211/32 +176.113.72.212/32 +176.113.72.219/32 +176.113.72.220/32 +176.113.72.235/32 +176.113.74.35/32 +176.113.74.82/31 +176.113.74.84/30 +176.113.74.88/30 +176.113.74.92/31 +176.113.74.94/32 +176.119.200.150/32 +176.125.228.133/32 +176.125.228.134/31 +176.125.228.136/30 +176.125.228.140/31 +176.125.228.143/32 +176.125.228.144/32 +176.125.228.146/31 +176.125.228.148/32 +176.125.228.151/32 +176.125.228.152/30 +176.125.229.131/32 +176.125.229.132/30 +176.125.229.137/32 +176.125.229.139/32 +176.125.229.141/32 +176.125.229.143/32 +176.125.229.144/31 +176.125.230.131/32 +176.125.230.132/30 +176.125.230.136/29 +176.125.230.144/31 +176.222.34.88/32 +177.54.151.174/32 +177.54.156.194/32 +177.54.156.207/32 +178.32.151.23/32 +178.62.4.148/32 +178.62.4.203/32 +178.62.6.124/32 +178.62.68.130/32 +178.62.70.151/32 +178.62.76.96/32 +178.73.210.89/32 +178.73.210.97/32 +178.73.210.113/32 +178.73.210.116/32 +178.73.210.211/32 +178.128.87.29/32 +178.132.104.2/32 +178.132.104.28/32 +178.132.104.54/32 +178.132.104.80/32 +178.132.104.105/32 +178.132.104.130/32 +178.132.104.155/32 +178.132.104.180/32 +178.132.104.205/32 +178.132.104.230/32 +178.159.3.162/32 +178.159.3.164/32 +178.159.3.166/32 +178.159.3.168/32 +178.159.3.170/32 +178.159.3.172/32 +178.159.3.174/32 +178.159.3.176/32 +178.159.3.178/32 +178.159.3.180/32 +178.159.3.182/32 +178.159.3.184/32 +178.159.9.83/32 +178.159.9.211/32 +178.160.194.207/32 +178.175.130.244/31 +178.175.130.250/31 +178.175.132.162/32 +178.175.132.164/32 +178.175.134.186/31 +178.175.134.188/32 +178.175.140.209/32 +178.175.140.210/32 +178.175.141.209/32 +178.175.141.225/32 +178.175.141.241/32 +178.175.142.7/32 +178.209.40.107/32 +178.209.51.17/32 +178.209.51.160/32 +178.218.167.210/31 +178.218.167.212/30 +178.218.167.216/31 +178.218.167.218/32 +178.239.160.197/32 +178.239.160.202/32 +178.239.161.75/32 +178.239.161.79/32 +178.239.161.83/32 +178.239.161.87/32 +178.239.161.91/32 +178.239.161.213/32 +178.239.161.218/32 +178.239.162.160/32 +178.239.162.163/32 +178.239.162.167/32 +178.239.162.171/32 +178.239.162.175/32 +178.239.162.179/32 +178.239.162.183/32 +178.239.162.187/32 +178.239.162.191/32 +178.239.162.195/32 +178.239.162.199/32 +178.239.162.203/32 +178.239.162.207/32 +178.239.162.211/32 +178.239.162.215/32 +178.239.162.219/32 +178.239.162.223/32 +178.239.162.227/32 +178.239.162.231/32 +178.239.162.235/32 +178.239.162.239/32 +178.239.162.243/32 +178.239.162.247/32 +178.239.162.251/32 +178.239.164.3/32 +178.239.164.65/32 +178.239.164.131/32 +178.239.164.193/32 +178.239.165.14/32 +178.239.165.16/32 +178.239.165.18/32 +178.239.165.20/32 +178.239.165.22/32 +178.239.165.24/32 +178.239.165.26/32 +178.239.165.28/32 +178.239.165.30/32 +178.239.165.32/32 +178.239.165.34/32 +178.239.165.36/32 +178.239.165.142/32 +178.239.165.151/32 +178.239.165.161/32 +178.239.165.171/32 +178.239.165.181/32 +178.239.165.190/32 +178.239.165.199/32 +178.239.165.208/32 +178.239.165.217/32 +178.239.165.226/32 +178.239.165.235/32 +178.239.165.245/32 +178.239.169.3/32 +178.239.169.4/32 +178.239.173.159/32 +178.239.173.163/32 +178.239.173.167/32 +178.239.173.171/32 +178.239.173.175/32 +178.239.173.179/32 +178.239.173.183/32 +178.239.173.187/32 +178.239.173.191/32 +178.239.173.195/32 +178.239.173.199/32 +178.239.173.203/32 +178.239.173.207/32 +178.239.173.211/32 +178.239.173.215/32 +178.239.173.219/32 +178.239.173.223/32 +178.239.173.227/32 +178.239.173.231/32 +178.239.173.235/32 +178.239.173.239/32 +178.239.173.243/32 +178.239.173.247/32 +178.239.173.251/32 +178.249.209.8/32 +178.249.209.20/32 +178.249.209.32/32 +178.249.210.6/31 +178.249.210.8/31 +178.249.210.10/32 +178.249.210.16/29 +178.249.210.24/31 +178.249.211.2/32 +178.249.211.7/32 +178.249.211.11/32 +178.249.211.13/32 +178.249.211.17/32 +178.249.211.22/32 +178.249.211.27/32 +178.249.211.32/32 +178.249.211.37/32 +178.249.211.42/32 +178.249.211.48/32 +178.249.211.53/32 +178.249.211.58/32 +178.249.211.181/32 +178.249.212.1/32 +178.249.212.5/32 +178.249.212.10/32 +178.249.212.15/32 +178.249.212.20/32 +178.249.212.25/32 +178.249.212.30/32 +178.249.212.35/32 +178.249.212.40/32 +178.249.212.45/32 +178.249.212.50/32 +178.249.212.55/32 +178.249.212.130/32 +178.249.212.133/32 +178.249.212.136/32 +178.249.212.139/32 +178.249.212.142/32 +178.249.212.145/32 +178.249.212.148/32 +178.249.212.151/32 +178.249.212.154/32 +178.249.212.161/32 +178.249.212.162/31 +178.249.212.199/32 +178.249.212.201/32 +178.249.212.204/32 +178.249.212.206/32 +178.249.214.65/32 +178.249.214.66/31 +178.249.214.68/30 +178.249.214.72/30 +178.249.214.81/32 +178.249.214.82/31 +178.249.214.84/30 +178.249.214.88/30 +178.249.214.129/32 +178.255.42.174/32 +179.48.248.3/32 +179.48.248.11/32 +179.48.248.19/32 +179.48.248.27/32 +179.48.248.35/32 +179.48.248.43/32 +179.48.249.195/32 +179.48.249.203/32 +179.48.249.211/32 +179.48.249.219/32 +179.48.249.227/32 +179.48.249.235/32 +179.61.197.126/31 +179.61.197.128/29 +179.61.197.136/30 +179.61.197.140/32 +179.61.197.142/31 +179.61.197.144/29 +179.61.197.152/30 +180.149.229.130/31 +180.149.229.132/30 +180.149.229.136/31 +180.149.229.138/32 +180.149.229.146/31 +180.149.229.148/31 +180.149.229.150/32 +180.149.231.82/32 +180.149.231.146/32 +180.149.231.150/32 +180.149.231.154/32 +180.149.231.194/32 +180.149.231.201/32 +180.149.231.242/32 +180.149.231.249/32 +181.119.30.27/32 +181.119.30.35/32 +181.119.30.44/32 +181.214.70.4/32 +181.214.70.18/32 +181.214.70.34/32 +181.214.70.50/32 +181.214.70.66/32 +181.214.70.82/32 +181.214.70.98/32 +181.214.70.114/32 +181.214.70.130/32 +181.214.70.146/32 +181.214.70.162/32 +181.214.70.178/32 +181.214.70.194/32 +181.214.70.210/32 +181.214.70.225/32 +181.214.70.240/32 +181.214.150.4/32 +181.214.150.18/32 +181.214.150.34/32 +181.214.150.50/32 +181.214.150.66/32 +181.214.150.82/32 +181.214.150.98/32 +181.214.150.114/32 +181.214.150.130/32 +181.214.150.146/32 +181.214.150.162/32 +181.214.150.178/32 +181.214.150.194/32 +181.214.150.210/32 +181.214.150.225/32 +181.214.150.240/32 +181.214.151.4/32 +181.214.151.18/32 +181.214.151.34/32 +181.214.151.50/32 +181.214.151.66/32 +181.214.151.82/32 +181.214.151.98/32 +181.214.151.114/32 +181.214.151.130/32 +181.214.151.146/32 +181.214.151.162/32 +181.214.151.178/32 +181.214.151.194/32 +181.214.151.210/32 +181.214.151.225/32 +181.214.151.240/32 +181.214.173.66/31 +181.214.173.68/31 +181.214.173.70/32 +181.214.173.72/30 +181.214.173.77/32 +181.214.173.78/32 +181.214.173.81/32 +181.214.173.82/31 +181.214.173.84/30 +181.214.173.88/32 +181.214.173.90/32 +181.214.173.92/31 +181.214.173.216/31 +181.214.173.220/32 +181.214.173.222/31 +181.214.173.224/29 +181.214.173.232/31 +181.214.173.236/30 +181.214.173.240/30 +181.214.196.4/32 +181.214.196.20/32 +181.214.196.36/32 +181.214.196.52/32 +181.214.196.68/32 +181.214.196.84/32 +181.214.196.100/32 +181.214.196.116/32 +181.214.196.132/32 +181.214.196.148/32 +181.214.196.164/32 +181.214.196.180/32 +181.214.196.195/32 +181.214.196.210/32 +181.214.196.225/32 +181.214.196.240/32 +181.214.206.8/31 +181.214.206.11/32 +181.214.206.13/32 +181.214.206.14/32 +181.214.206.16/32 +181.214.206.18/31 +181.214.206.21/32 +181.214.206.22/31 +181.214.206.24/32 +181.214.206.26/31 +181.214.206.28/31 +181.214.206.30/32 +181.214.206.32/29 +181.214.206.41/32 +181.214.206.45/32 +181.214.206.46/31 +181.214.218.123/32 +181.214.218.124/30 +181.214.218.128/29 +181.214.218.136/32 +181.214.218.152/32 +181.214.218.155/32 +181.214.218.156/31 +181.214.218.159/32 +181.214.218.160/30 +181.214.218.164/31 +181.214.218.166/32 +181.214.218.233/32 +181.214.226.4/32 +181.214.226.20/32 +181.214.226.36/32 +181.214.226.52/32 +181.214.226.68/32 +181.214.226.84/32 +181.214.226.100/32 +181.214.226.116/32 +181.214.226.132/32 +181.214.226.148/32 +181.214.226.164/32 +181.214.226.180/32 +181.214.226.195/32 +181.214.226.210/32 +181.214.226.225/32 +181.214.226.240/32 +181.214.233.116/32 +181.215.52.132/32 +181.215.52.142/32 +181.215.52.152/32 +181.215.52.162/32 +181.215.52.192/31 +181.215.52.194/32 +181.215.169.4/32 +181.215.169.18/32 +181.215.169.34/32 +181.215.169.50/32 +181.215.169.66/32 +181.215.169.82/32 +181.215.169.98/32 +181.215.169.114/32 +181.215.169.130/32 +181.215.169.146/32 +181.215.169.162/32 +181.215.169.178/32 +181.215.169.194/32 +181.215.169.210/32 +181.215.169.225/32 +181.215.169.240/32 +181.215.172.4/32 +181.215.172.20/32 +181.215.172.36/32 +181.215.172.52/32 +181.215.172.68/32 +181.215.172.84/32 +181.215.172.100/32 +181.215.172.116/32 +181.215.172.132/32 +181.215.172.148/32 +181.215.172.164/32 +181.215.172.180/32 +181.215.172.195/32 +181.215.172.210/32 +181.215.172.225/32 +181.215.172.240/32 +181.215.176.98/32 +181.215.176.101/32 +181.215.176.102/31 +181.215.176.104/31 +181.215.176.106/32 +181.215.176.108/31 +181.215.176.112/31 +181.215.176.115/32 +181.215.176.117/32 +181.215.176.118/32 +181.215.176.120/30 +181.215.176.227/32 +181.215.176.229/32 +181.215.176.231/32 +181.215.176.232/32 +181.215.176.234/31 +181.215.176.237/32 +181.215.176.238/31 +181.215.176.240/29 +181.215.176.248/30 +181.215.183.91/32 +181.215.183.92/32 +181.215.183.95/32 +181.215.183.96/32 +181.215.195.4/32 +181.215.195.20/32 +181.215.195.36/32 +181.215.195.52/32 +181.215.195.68/32 +181.215.195.84/32 +181.215.195.100/32 +181.215.195.116/32 +181.215.195.132/32 +181.215.195.148/32 +181.215.195.164/32 +181.215.195.180/32 +181.215.195.195/32 +181.215.195.210/32 +181.215.195.225/32 +181.215.195.240/32 +184.75.212.90/31 +184.75.212.92/32 +185.7.34.96/32 +185.7.34.112/32 +185.7.34.128/32 +185.7.34.144/32 +185.7.34.160/32 +185.7.34.176/32 +185.7.34.192/32 +185.7.34.208/32 +185.7.34.224/32 +185.7.34.240/32 +185.9.18.84/32 +185.9.18.163/32 +185.9.18.171/32 +185.16.205.3/32 +185.16.205.4/32 +185.16.205.131/32 +185.16.205.132/32 +185.16.207.39/32 +185.16.207.43/32 +185.16.207.48/32 +185.16.207.53/32 +185.16.207.58/32 +185.17.27.51/32 +185.17.27.98/32 +185.17.27.100/32 +185.17.27.102/32 +185.17.27.104/32 +185.17.27.106/32 +185.17.27.108/32 +185.17.27.110/32 +185.17.27.112/32 +185.17.27.114/32 +185.17.27.116/32 +185.17.27.120/32 +185.17.27.131/32 +185.18.207.158/32 +185.26.48.213/32 +185.26.239.50/32 +185.44.79.131/32 +185.44.79.132/32 +185.45.15.34/32 +185.45.15.194/32 +185.46.57.175/32 +185.51.134.194/31 +185.51.134.196/30 +185.51.134.200/31 +185.51.134.202/32 +185.59.221.242/32 +185.59.221.245/32 +185.59.221.248/32 +185.59.221.251/32 +185.61.148.67/32 +185.61.156.14/31 +185.61.156.16/29 +185.61.156.24/31 +185.65.50.11/32 +185.65.50.17/32 +185.65.50.23/32 +185.65.50.29/32 +185.65.50.35/32 +185.70.42.15/32 +185.70.42.17/32 +185.70.42.20/32 +185.70.42.22/32 +185.70.42.36/32 +185.70.42.52/32 +185.70.42.65/32 +185.70.42.71/32 +185.70.42.150/32 +185.73.240.231/32 +185.76.11.17/32 +185.76.11.18/31 +185.76.11.20/30 +185.76.11.24/30 +185.76.78.33/32 +185.82.219.203/32 +185.82.219.204/31 +185.90.60.210/31 +185.90.60.212/30 +185.90.60.216/30 +185.90.60.220/31 +185.90.60.222/32 +185.90.60.226/31 +185.90.60.228/31 +185.90.60.230/32 +185.92.210.145/32 +185.93.0.98/32 +185.93.0.103/32 +185.93.0.108/32 +185.93.0.113/32 +185.93.0.116/32 +185.93.0.119/32 +185.93.2.199/32 +185.93.2.206/32 +185.93.3.105/32 +185.93.3.106/31 +185.93.3.108/30 +185.93.3.112/32 +185.93.3.114/32 +185.93.3.198/31 +185.93.3.200/30 +185.93.182.251/32 +185.94.192.210/31 +185.94.192.212/32 +185.99.3.24/31 +185.99.3.195/32 +185.99.132.13/32 +185.99.252.35/32 +185.99.252.211/32 +185.101.34.85/32 +185.101.34.86/32 +185.104.184.3/32 +185.104.184.211/32 +185.104.185.146/32 +185.104.185.163/32 +185.104.187.75/32 +185.107.44.110/31 +185.107.44.112/31 +185.107.44.114/32 +185.107.44.144/32 +185.107.44.147/32 +185.107.44.149/32 +185.107.44.150/32 +185.107.44.164/30 +185.107.44.200/32 +185.107.44.202/31 +185.107.44.204/30 +185.107.44.208/31 +185.107.44.210/32 +185.107.44.218/31 +185.107.56.22/32 +185.107.56.28/32 +185.107.56.44/32 +185.107.56.49/32 +185.107.56.69/32 +185.107.56.75/32 +185.107.56.106/32 +185.107.56.123/32 +185.107.56.130/32 +185.107.56.133/32 +185.107.56.138/32 +185.107.56.143/32 +185.107.56.148/32 +185.107.56.153/32 +185.107.56.162/32 +185.107.56.211/32 +185.107.56.219/32 +185.107.56.235/32 +185.107.57.6/32 +185.107.80.36/32 +185.107.80.114/32 +185.107.80.191/32 +185.107.81.129/32 +185.107.81.130/31 +185.107.94.181/32 +185.107.95.49/32 +185.107.95.50/31 +185.108.129.16/32 +185.108.129.25/32 +185.108.129.48/31 +185.108.129.54/32 +185.108.129.83/32 +185.108.129.158/32 +185.108.129.198/32 +185.108.129.224/32 +185.108.129.226/32 +185.108.129.232/32 +185.109.168.131/32 +185.109.170.243/32 +185.111.109.1/32 +185.111.109.2/31 +185.111.109.4/30 +185.111.109.8/29 +185.111.109.16/29 +185.111.109.24/30 +185.120.147.2/32 +185.121.139.100/32 +185.123.100.125/32 +185.123.100.161/32 +185.123.100.188/32 +185.123.100.203/32 +185.123.100.234/32 +185.123.101.6/31 +185.123.101.19/32 +185.123.101.37/32 +185.123.101.60/32 +185.123.101.65/32 +185.123.101.67/32 +185.123.101.145/32 +185.128.25.66/32 +185.128.25.99/32 +185.128.26.51/32 +185.128.26.59/32 +185.128.26.171/32 +185.128.27.232/32 +185.130.184.115/32 +185.130.184.116/31 +185.130.184.118/32 +185.130.187.2/31 +185.130.187.4/30 +185.130.187.8/29 +185.130.187.16/28 +185.136.159.181/32 +185.150.196.156/31 +185.152.66.168/30 +185.152.66.172/31 +185.152.67.225/32 +185.152.67.226/31 +185.153.176.1/32 +185.153.176.17/32 +185.153.176.33/32 +185.153.176.49/32 +185.153.176.64/32 +185.153.176.79/32 +185.153.176.94/32 +185.153.176.109/32 +185.153.176.129/32 +185.153.176.145/32 +185.153.176.147/32 +185.153.176.165/32 +185.153.176.183/32 +185.153.176.201/32 +185.153.176.218/32 +185.153.176.235/32 +185.153.177.102/32 +185.153.177.104/32 +185.153.177.106/32 +185.153.177.108/32 +185.153.177.110/32 +185.153.177.112/32 +185.153.177.114/32 +185.153.177.116/32 +185.153.177.118/32 +185.153.177.120/32 +185.153.177.122/32 +185.153.177.124/32 +185.153.177.126/32 +185.153.177.158/32 +185.153.177.170/32 +185.153.177.182/32 +185.153.177.194/32 +185.153.177.206/32 +185.153.177.218/32 +185.153.177.230/32 +185.153.179.100/32 +185.153.179.102/32 +185.153.179.104/32 +185.153.179.106/32 +185.153.179.108/32 +185.153.179.110/32 +185.153.179.112/32 +185.153.179.114/32 +185.153.179.116/32 +185.153.179.118/32 +185.153.179.120/32 +185.153.179.122/32 +185.153.179.124/32 +185.153.179.126/32 +185.153.179.128/32 +185.153.179.130/32 +185.153.179.132/32 +185.153.179.134/32 +185.153.179.136/32 +185.153.179.138/32 +185.153.179.140/32 +185.153.179.142/32 +185.153.179.144/32 +185.153.179.146/32 +185.153.179.148/32 +185.153.179.150/32 +185.153.179.152/32 +185.153.179.154/32 +185.153.179.156/32 +185.153.179.158/32 +185.153.179.160/32 +185.153.179.162/32 +185.156.46.33/32 +185.156.46.34/31 +185.156.46.36/30 +185.156.46.40/30 +185.156.46.44/31 +185.156.172.162/31 +185.156.172.164/32 +185.156.172.202/32 +185.156.173.178/32 +185.156.174.3/32 +185.156.174.91/32 +185.156.175.115/32 +185.156.175.123/32 +185.156.175.132/32 +185.156.175.139/32 +185.156.175.178/31 +185.156.175.180/32 +185.159.156.3/32 +185.159.156.4/30 +185.159.156.8/31 +185.159.156.10/32 +185.159.156.17/32 +185.159.156.18/31 +185.159.156.20/32 +185.159.156.27/32 +185.159.156.28/31 +185.159.156.37/32 +185.159.156.43/32 +185.159.156.49/32 +185.159.156.54/32 +185.159.156.56/31 +185.159.156.58/32 +185.159.156.64/32 +185.159.156.66/32 +185.159.156.68/30 +185.159.156.72/31 +185.159.156.74/32 +185.159.156.81/32 +185.159.156.82/31 +185.159.156.84/30 +185.159.156.88/29 +185.159.156.96/27 +185.159.156.128/29 +185.159.156.137/32 +185.159.156.138/31 +185.159.156.140/31 +185.159.156.143/32 +185.159.156.144/32 +185.159.156.148/32 +185.159.156.160/31 +185.159.156.163/32 +185.159.156.164/30 +185.159.156.168/30 +185.159.156.175/32 +185.159.156.176/31 +185.159.156.178/32 +185.159.157.6/31 +185.159.157.8/30 +185.159.157.13/32 +185.159.157.14/31 +185.159.157.16/31 +185.159.157.18/32 +185.159.157.21/32 +185.159.157.22/31 +185.159.157.24/30 +185.159.157.28/31 +185.159.157.30/32 +185.159.157.32/31 +185.159.157.35/32 +185.159.157.36/30 +185.159.157.40/29 +185.159.157.48/30 +185.159.157.52/32 +185.159.157.55/32 +185.159.157.56/29 +185.159.157.65/32 +185.159.157.68/32 +185.159.157.70/31 +185.159.157.72/30 +185.159.157.76/31 +185.159.157.78/32 +185.159.157.80/31 +185.159.157.82/32 +185.159.157.84/30 +185.159.157.88/29 +185.159.157.96/31 +185.159.157.103/32 +185.159.157.104/30 +185.159.157.110/31 +185.159.157.113/32 +185.159.157.120/30 +185.159.157.124/32 +185.159.157.126/31 +185.159.157.128/28 +185.159.157.147/32 +185.159.157.148/31 +185.159.157.150/32 +185.159.157.153/32 +185.159.157.165/32 +185.159.157.169/32 +185.159.157.170/31 +185.159.157.172/30 +185.159.157.176/31 +185.159.157.183/32 +185.159.157.184/32 +185.159.157.186/31 +185.159.157.188/30 +185.159.157.192/32 +185.159.157.195/32 +185.159.157.197/32 +185.159.157.198/31 +185.159.157.200/30 +185.159.157.208/28 +185.159.157.224/28 +185.159.157.240/30 +185.159.157.245/32 +185.159.157.246/31 +185.159.157.248/31 +185.159.157.250/32 +185.159.157.252/31 +185.159.157.254/32 +185.159.158.1/32 +185.159.158.2/32 +185.159.158.21/32 +185.159.158.22/32 +185.159.158.50/31 +185.159.158.55/32 +185.159.158.57/32 +185.159.158.58/31 +185.159.158.60/30 +185.159.158.64/30 +185.159.158.74/32 +185.159.158.76/30 +185.159.158.80/30 +185.159.158.85/32 +185.159.158.86/31 +185.159.158.100/31 +185.159.158.104/32 +185.159.158.107/32 +185.159.158.108/30 +185.159.158.112/30 +185.159.158.116/32 +185.159.158.118/31 +185.159.158.120/32 +185.159.158.138/32 +185.159.158.144/29 +185.159.158.156/32 +185.159.158.163/32 +185.159.158.164/32 +185.159.158.168/32 +185.159.158.177/32 +185.159.158.178/31 +185.159.158.180/30 +185.159.158.185/32 +185.159.158.186/31 +185.159.158.188/30 +185.159.158.192/30 +185.159.158.196/31 +185.159.158.199/32 +185.159.158.200/32 +185.159.158.202/32 +185.159.158.204/30 +185.159.158.208/31 +185.159.158.210/32 +185.159.158.212/30 +185.159.158.216/29 +185.159.158.224/28 +185.159.158.240/29 +185.159.158.248/30 +185.159.159.16/30 +185.159.159.142/31 +185.159.159.144/32 +185.159.159.148/32 +185.162.16.185/32 +185.162.16.186/31 +185.162.16.188/31 +185.162.16.190/32 +185.163.44.137/32 +185.164.35.16/32 +185.165.170.1/32 +185.165.170.2/31 +185.166.87.3/32 +185.169.235.7/32 +185.169.235.20/32 +185.169.235.33/32 +185.169.235.46/32 +185.169.235.59/32 +185.169.235.72/32 +185.169.235.85/32 +185.169.235.98/32 +185.169.235.111/32 +185.169.255.3/32 +185.169.255.6/32 +185.169.255.9/32 +185.169.255.12/32 +185.169.255.15/32 +185.169.255.18/32 +185.169.255.21/32 +185.169.255.24/32 +185.169.255.27/32 +185.169.255.30/32 +185.169.255.33/32 +185.169.255.36/32 +185.169.255.39/32 +185.169.255.42/32 +185.169.255.45/32 +185.169.255.48/32 +185.172.52.100/32 +185.172.52.102/32 +185.172.52.104/32 +185.172.52.106/32 +185.172.52.108/32 +185.172.52.110/32 +185.172.52.112/32 +185.172.52.114/32 +185.172.52.116/32 +185.172.52.118/32 +185.172.52.120/32 +185.172.52.122/32 +185.172.52.124/32 +185.172.52.126/32 +185.172.52.128/32 +185.172.52.130/32 +185.172.52.132/32 +185.172.52.134/32 +185.172.52.136/32 +185.172.52.138/32 +185.172.52.140/32 +185.172.52.142/32 +185.172.52.144/32 +185.172.52.146/32 +185.172.52.148/32 +185.172.52.150/32 +185.172.52.152/32 +185.172.52.154/32 +185.172.52.156/32 +185.172.52.158/32 +185.172.52.160/32 +185.172.52.162/32 +185.172.52.164/32 +185.172.52.166/32 +185.172.52.168/32 +185.172.52.170/32 +185.174.156.1/32 +185.174.156.9/32 +185.175.56.102/32 +185.175.58.106/32 +185.176.222.134/31 +185.176.222.138/32 +185.176.222.156/32 +185.176.222.163/32 +185.177.124.84/32 +185.177.124.190/32 +185.177.124.206/32 +185.177.124.219/32 +185.177.125.4/32 +185.177.125.172/32 +185.177.125.196/32 +185.177.126.14/32 +185.177.126.132/32 +185.177.126.140/32 +185.180.12.242/32 +185.180.12.245/32 +185.180.12.248/32 +185.180.222.89/32 +185.181.100.178/31 +185.181.100.180/30 +185.181.100.184/30 +185.181.100.188/31 +185.181.100.190/32 +185.181.103.187/32 +185.182.193.5/32 +185.182.193.107/32 +185.183.33.11/32 +185.183.33.217/32 +185.183.34.27/32 +185.183.34.149/32 +185.183.34.165/32 +185.183.105.130/31 +185.183.105.132/32 +185.183.105.146/31 +185.183.105.148/32 +185.183.106.19/32 +185.183.106.27/32 +185.183.106.227/32 +185.184.228.129/32 +185.184.228.131/32 +185.184.228.133/32 +185.184.228.135/32 +185.184.228.137/32 +185.184.228.139/32 +185.184.228.141/32 +185.184.228.161/32 +185.184.228.181/32 +185.184.228.201/32 +185.184.228.221/32 +185.184.228.241/32 +185.185.134.146/31 +185.185.134.148/31 +185.185.134.150/32 +185.187.168.1/32 +185.187.168.16/32 +185.187.168.31/32 +185.187.168.46/32 +185.187.168.61/32 +185.187.168.76/32 +185.187.168.92/32 +185.187.168.108/32 +185.187.168.129/32 +185.187.168.144/32 +185.187.168.160/32 +185.187.168.176/32 +185.187.168.192/32 +185.187.168.207/32 +185.187.168.222/32 +185.187.168.237/32 +185.187.243.3/32 +185.187.243.5/32 +185.187.243.7/32 +185.187.243.9/32 +185.187.243.11/32 +185.187.243.13/32 +185.187.243.15/32 +185.187.243.17/32 +185.187.243.19/32 +185.187.243.21/32 +185.187.243.23/32 +185.187.243.25/32 +185.187.243.27/32 +185.187.243.29/32 +185.187.243.31/32 +185.187.243.33/32 +185.187.243.35/32 +185.187.243.37/32 +185.187.243.39/32 +185.187.243.41/32 +185.187.243.43/32 +185.187.243.45/32 +185.187.243.47/32 +185.187.243.49/32 +185.187.243.51/32 +185.187.243.53/32 +185.187.243.55/32 +185.187.243.57/32 +185.187.243.59/32 +185.189.114.28/32 +185.189.114.115/32 +185.189.114.116/30 +185.189.114.120/30 +185.189.114.124/31 +185.189.114.126/32 +185.189.114.235/32 +185.189.114.243/32 +185.189.160.11/32 +185.189.160.12/31 +185.189.160.27/32 +185.189.160.32/32 +185.189.161.50/31 +185.189.163.157/32 +185.189.163.162/32 +185.189.163.176/32 +185.189.163.211/32 +185.189.163.214/32 +185.189.163.219/32 +185.191.204.98/31 +185.191.204.100/32 +185.191.205.2/31 +185.191.205.4/32 +185.193.51.76/32 +185.193.51.98/32 +185.193.51.101/32 +185.193.51.116/32 +185.193.51.118/32 +185.193.51.137/32 +185.193.51.149/32 +185.193.51.163/32 +185.193.51.176/32 +185.196.22.1/32 +185.196.22.2/31 +185.196.22.4/30 +185.196.22.8/30 +185.196.22.12/32 +185.196.22.159/32 +185.196.22.166/32 +185.196.22.173/32 +185.196.22.180/32 +185.196.22.187/32 +185.196.22.194/32 +185.196.22.201/32 +185.196.22.208/32 +185.196.22.215/32 +185.198.167.225/32 +185.199.100.1/32 +185.199.100.3/32 +185.199.100.5/32 +185.199.100.7/32 +185.199.100.9/32 +185.199.100.11/32 +185.199.100.13/32 +185.199.100.15/32 +185.199.100.17/32 +185.199.100.19/32 +185.199.100.21/32 +185.199.100.23/32 +185.199.100.25/32 +185.199.100.27/32 +185.199.100.29/32 +185.199.100.31/32 +185.199.100.33/32 +185.199.100.35/32 +185.202.220.100/32 +185.202.220.102/32 +185.202.220.104/32 +185.202.220.106/32 +185.202.220.108/32 +185.202.220.110/32 +185.202.220.112/32 +185.202.220.114/32 +185.202.220.116/32 +185.202.220.118/32 +185.202.220.120/32 +185.202.220.122/32 +185.202.220.124/32 +185.202.220.126/32 +185.202.220.128/32 +185.202.220.130/32 +185.202.220.132/32 +185.202.220.134/32 +185.202.220.136/32 +185.202.220.138/32 +185.202.220.140/32 +185.202.220.142/32 +185.202.220.144/32 +185.202.220.146/32 +185.202.220.148/32 +185.202.220.150/32 +185.202.220.152/32 +185.202.220.154/32 +185.202.220.156/32 +185.202.220.158/32 +185.202.220.160/32 +185.202.220.162/32 +185.202.221.100/32 +185.202.221.102/32 +185.202.221.104/32 +185.202.221.106/32 +185.202.221.108/32 +185.202.221.110/32 +185.202.221.112/32 +185.202.221.114/32 +185.202.221.116/32 +185.202.221.118/32 +185.202.221.120/32 +185.202.221.122/32 +185.202.221.124/32 +185.202.221.126/32 +185.202.221.128/32 +185.202.221.130/32 +185.202.221.132/32 +185.202.221.134/32 +185.202.221.136/32 +185.202.221.138/32 +185.202.221.140/32 +185.202.221.142/32 +185.202.221.144/32 +185.202.221.146/32 +185.202.221.148/32 +185.202.221.150/32 +185.202.221.152/32 +185.202.221.154/32 +185.202.221.156/32 +185.202.221.158/32 +185.202.221.160/32 +185.203.122.1/32 +185.203.122.14/32 +185.203.122.27/32 +185.203.122.40/32 +185.203.122.52/32 +185.203.122.64/32 +185.203.122.76/32 +185.203.122.88/32 +185.203.122.100/32 +185.203.122.112/32 +185.203.122.129/32 +185.203.122.142/32 +185.203.122.155/32 +185.203.122.168/32 +185.203.122.180/32 +185.203.122.192/32 +185.203.122.204/32 +185.203.122.216/32 +185.203.122.228/32 +185.203.122.240/32 +185.203.218.100/32 +185.203.218.102/32 +185.203.218.104/32 +185.203.218.106/32 +185.203.218.108/32 +185.203.218.110/32 +185.203.218.112/32 +185.203.218.114/32 +185.203.218.116/32 +185.203.218.118/32 +185.203.218.120/32 +185.203.218.122/32 +185.203.218.124/32 +185.203.218.126/32 +185.203.218.128/32 +185.203.218.130/32 +185.203.218.132/32 +185.203.218.134/32 +185.203.218.136/32 +185.203.218.138/32 +185.203.218.140/32 +185.203.218.142/32 +185.203.218.144/32 +185.203.218.146/32 +185.203.218.148/32 +185.203.218.150/32 +185.203.218.152/32 +185.203.218.154/32 +185.203.218.156/32 +185.203.218.158/32 +185.203.218.160/32 +185.203.218.162/32 +185.203.219.100/32 +185.203.219.102/32 +185.203.219.104/32 +185.203.219.106/32 +185.203.219.108/32 +185.203.219.110/32 +185.203.219.112/32 +185.203.219.114/32 +185.203.219.116/32 +185.203.219.118/32 +185.203.219.120/32 +185.203.219.122/32 +185.203.219.124/32 +185.203.219.126/32 +185.203.219.128/32 +185.203.219.130/32 +185.203.219.132/32 +185.203.219.134/32 +185.203.219.136/32 +185.203.219.138/32 +185.203.219.140/32 +185.203.219.142/32 +185.203.219.144/32 +185.203.219.146/32 +185.203.219.148/32 +185.203.219.150/32 +185.203.219.152/32 +185.203.219.154/32 +185.203.219.156/32 +185.203.219.158/32 +185.203.219.160/32 +185.203.219.162/32 +185.204.1.134/32 +185.206.225.28/31 +185.206.225.130/31 +185.206.225.132/32 +185.206.225.195/32 +185.206.225.228/30 +185.206.225.232/30 +185.206.225.236/32 +185.206.225.243/32 +185.206.225.248/32 +185.210.217.99/32 +185.210.217.115/32 +185.210.217.120/32 +185.210.217.131/32 +185.210.217.139/32 +185.210.217.165/32 +185.210.217.170/32 +185.210.218.219/32 +185.211.32.1/32 +185.211.32.16/32 +185.211.32.31/32 +185.211.32.46/32 +185.211.32.61/32 +185.211.32.76/32 +185.211.32.92/32 +185.211.32.108/32 +185.211.32.129/32 +185.211.32.144/32 +185.211.32.160/32 +185.211.32.176/32 +185.211.32.192/32 +185.211.32.207/32 +185.211.32.222/32 +185.211.32.237/32 +185.212.111.98/31 +185.212.111.100/30 +185.212.111.104/30 +185.212.111.108/32 +185.212.111.147/32 +185.212.111.159/32 +185.212.111.171/32 +185.212.111.183/32 +185.212.118.100/32 +185.212.118.102/32 +185.212.118.104/32 +185.212.118.106/32 +185.212.118.108/32 +185.212.118.110/32 +185.212.118.112/32 +185.212.118.114/32 +185.212.118.116/32 +185.212.118.118/32 +185.212.118.120/32 +185.212.118.122/32 +185.212.118.124/32 +185.212.118.126/32 +185.212.118.128/32 +185.212.118.130/32 +185.212.118.132/32 +185.212.118.134/32 +185.212.149.44/32 +185.212.149.49/32 +185.212.149.50/31 +185.212.168.132/31 +185.212.168.134/32 +185.212.170.195/32 +185.213.24.190/32 +185.213.80.100/32 +185.213.80.102/32 +185.213.80.104/32 +185.213.80.106/32 +185.213.80.108/32 +185.213.80.110/32 +185.213.80.112/32 +185.213.80.114/32 +185.213.80.116/32 +185.213.80.118/32 +185.213.80.120/32 +185.213.80.122/32 +185.213.80.124/32 +185.213.80.126/32 +185.213.80.128/32 +185.213.80.130/32 +185.213.80.132/32 +185.213.80.134/32 +185.213.82.100/32 +185.213.82.102/32 +185.213.82.104/32 +185.213.82.106/32 +185.213.82.108/32 +185.213.82.110/32 +185.213.82.112/32 +185.213.82.114/32 +185.213.82.116/32 +185.213.82.118/32 +185.213.82.120/32 +185.213.82.122/32 +185.213.82.124/32 +185.213.82.126/32 +185.213.82.128/32 +185.213.82.130/32 +185.213.82.132/32 +185.213.82.134/32 +185.213.82.136/32 +185.213.82.138/32 +185.213.83.100/32 +185.213.83.102/32 +185.213.83.104/32 +185.213.83.106/32 +185.213.83.108/32 +185.213.83.110/32 +185.213.83.112/32 +185.213.83.114/32 +185.213.83.116/32 +185.213.83.118/32 +185.214.97.100/32 +185.214.97.102/32 +185.214.97.104/32 +185.214.97.106/32 +185.214.97.108/32 +185.214.97.110/32 +185.214.97.112/32 +185.214.97.114/32 +185.214.97.116/32 +185.214.97.118/32 +185.214.97.120/32 +185.214.97.122/32 +185.214.97.124/32 +185.214.97.126/32 +185.214.97.128/32 +185.214.97.130/32 +185.214.97.132/32 +185.214.97.134/32 +185.214.97.136/32 +185.214.97.138/32 +185.214.97.140/32 +185.214.97.142/32 +185.214.97.144/32 +185.214.97.146/32 +185.215.181.2/32 +185.215.181.17/32 +185.215.181.32/32 +185.215.181.47/32 +185.215.181.62/32 +185.215.181.77/32 +185.216.33.3/32 +185.216.33.8/32 +185.216.33.13/32 +185.216.33.18/32 +185.216.33.23/32 +185.216.34.100/32 +185.216.34.171/32 +185.216.34.219/32 +185.216.35.66/31 +185.216.35.68/32 +185.216.35.115/32 +185.216.35.120/32 +185.216.35.130/31 +185.216.35.132/32 +185.216.35.251/32 +185.216.73.1/32 +185.216.73.26/32 +185.216.73.51/32 +185.216.73.76/32 +185.216.73.100/32 +185.216.73.129/32 +185.216.73.154/32 +185.216.73.179/32 +185.216.73.204/32 +185.216.73.228/32 +185.216.74.144/32 +185.216.74.152/32 +185.216.74.160/32 +185.216.74.168/32 +185.216.74.176/32 +185.216.74.184/32 +185.216.74.186/32 +185.216.201.2/32 +185.216.201.13/32 +185.216.201.24/32 +185.216.201.35/32 +185.216.201.46/32 +185.216.201.57/32 +185.216.201.68/32 +185.216.201.79/32 +185.216.201.90/32 +185.217.68.130/32 +185.217.69.67/32 +185.217.69.82/32 +185.217.69.123/32 +185.217.69.131/32 +185.217.69.136/32 +185.217.69.141/32 +185.217.69.151/32 +185.217.69.156/32 +185.217.69.166/32 +185.217.69.176/32 +185.217.99.236/32 +185.217.171.8/32 +185.218.127.1/32 +185.218.127.3/32 +185.218.127.5/32 +185.218.127.7/32 +185.218.127.9/32 +185.218.127.11/32 +185.218.127.13/32 +185.218.127.15/32 +185.218.127.77/32 +185.218.127.79/32 +185.218.127.81/32 +185.218.127.83/32 +185.218.127.85/32 +185.218.127.87/32 +185.218.127.89/32 +185.219.140.1/32 +185.219.140.3/32 +185.219.140.5/32 +185.219.140.7/32 +185.219.140.9/32 +185.219.140.11/32 +185.219.140.13/32 +185.219.140.15/32 +185.219.140.17/32 +185.219.140.19/32 +185.219.140.21/32 +185.219.140.23/32 +185.219.140.25/32 +185.219.140.27/32 +185.219.140.29/32 +185.219.140.31/32 +185.219.140.33/32 +185.219.140.35/32 +185.219.140.37/32 +185.219.140.39/32 +185.219.140.41/32 +185.219.140.43/32 +185.219.140.45/32 +185.219.140.47/32 +185.219.140.49/32 +185.219.140.53/32 +185.220.69.82/31 +185.220.69.84/31 +185.220.69.86/32 +185.220.69.90/31 +185.220.69.92/31 +185.220.69.94/32 +185.220.69.117/32 +185.220.69.146/31 +185.220.69.148/31 +185.220.69.150/32 +185.220.69.154/31 +185.220.69.156/31 +185.220.69.158/32 +185.220.69.162/31 +185.220.69.164/31 +185.220.69.166/32 +185.220.69.170/31 +185.220.69.172/31 +185.220.69.174/32 +185.220.69.178/31 +185.220.69.180/31 +185.220.69.182/32 +185.220.69.186/31 +185.220.69.188/31 +185.220.69.190/32 +185.220.70.67/32 +185.220.70.195/32 +185.220.70.200/32 +185.220.70.205/32 +185.220.70.210/32 +185.220.70.215/32 +185.220.70.220/32 +185.220.70.225/32 +185.220.70.230/32 +185.220.70.235/32 +185.220.70.240/32 +185.221.132.226/31 +185.221.132.228/32 +185.221.132.242/31 +185.221.132.244/32 +185.223.233.3/32 +185.223.233.4/32 +185.224.196.91/32 +185.224.196.115/32 +185.224.196.125/32 +185.224.196.179/32 +185.225.28.50/31 +185.225.28.52/32 +185.225.28.163/32 +185.225.28.195/32 +185.225.234.1/32 +185.225.234.3/32 +185.225.234.5/32 +185.225.234.7/32 +185.225.234.9/32 +185.225.234.11/32 +185.225.234.13/32 +185.225.234.15/32 +185.225.234.17/32 +185.225.234.19/32 +185.225.234.21/32 +185.225.234.23/32 +185.226.65.169/32 +185.229.25.116/30 +185.229.25.120/32 +185.229.58.3/32 +185.229.58.129/32 +185.229.59.6/32 +185.229.59.19/32 +185.229.59.32/32 +185.229.59.45/32 +185.229.59.58/32 +185.229.59.71/32 +185.229.59.84/32 +185.229.59.100/32 +185.229.59.102/32 +185.229.59.104/32 +185.229.59.106/32 +185.229.59.108/32 +185.229.59.110/32 +185.229.59.112/32 +185.229.59.114/32 +185.229.59.116/32 +185.229.59.118/32 +185.229.59.120/32 +185.229.59.122/32 +185.229.59.124/32 +185.229.59.126/32 +185.229.59.128/32 +185.229.59.130/32 +185.229.190.55/32 +185.229.190.57/32 +185.230.125.2/31 +185.230.125.4/30 +185.230.125.8/29 +185.230.125.16/29 +185.230.125.24/30 +185.230.125.28/31 +185.230.125.30/32 +185.230.125.34/31 +185.230.125.36/30 +185.230.125.40/29 +185.230.125.48/29 +185.230.125.56/30 +185.230.125.60/31 +185.230.125.62/32 +185.230.125.107/32 +185.230.125.108/32 +185.230.126.146/31 +185.230.126.148/31 +185.230.126.150/32 +185.230.126.155/32 +185.230.126.194/31 +185.230.126.196/31 +185.230.139.1/32 +185.230.139.18/32 +185.230.139.35/32 +185.230.139.52/32 +185.230.139.69/32 +185.230.139.86/32 +185.230.139.103/32 +185.230.139.119/32 +185.230.139.140/32 +185.230.139.156/32 +185.230.139.172/32 +185.230.139.188/32 +185.230.139.204/32 +185.230.139.220/32 +185.230.139.236/32 +185.232.21.99/32 +185.232.22.75/32 +185.232.22.76/32 +185.232.22.83/32 +185.232.22.107/32 +185.232.22.130/31 +185.232.22.132/32 +185.232.22.194/31 +185.232.22.196/32 +185.232.23.43/32 +185.233.132.2/32 +185.233.132.5/32 +185.233.132.6/31 +185.233.132.12/30 +185.233.132.16/32 +185.233.132.18/31 +185.233.132.20/30 +185.233.132.24/31 +185.234.68.100/32 +185.234.68.102/32 +185.234.68.104/32 +185.234.68.106/32 +185.234.68.108/32 +185.234.68.110/32 +185.234.68.112/32 +185.234.68.114/32 +185.234.68.116/32 +185.234.68.118/32 +185.235.0.2/32 +185.235.0.34/32 +185.235.0.66/32 +185.235.0.98/32 +185.235.137.143/32 +185.236.42.19/32 +185.236.42.26/32 +185.236.42.28/32 +185.236.42.30/32 +185.236.42.32/32 +185.236.42.34/32 +185.236.42.36/32 +185.236.42.38/32 +185.236.42.40/32 +185.236.42.42/32 +185.236.42.44/32 +185.236.42.46/32 +185.236.42.48/32 +185.236.42.50/32 +185.236.42.52/32 +185.236.42.54/32 +185.236.42.56/32 +185.236.200.18/32 +185.236.200.34/31 +185.236.200.36/32 +185.236.200.115/32 +185.236.200.120/32 +185.236.200.131/32 +185.236.200.136/32 +185.236.200.147/32 +185.236.200.155/32 +185.236.200.172/32 +185.236.200.195/32 +185.236.200.203/32 +185.236.200.242/32 +185.236.201.131/32 +185.236.201.132/32 +185.236.201.139/32 +185.236.201.147/32 +185.236.202.83/32 +185.236.202.88/32 +185.244.212.51/32 +185.244.213.131/32 +185.244.214.227/32 +185.244.214.232/32 +185.244.214.237/32 +185.244.214.242/32 +185.244.214.247/32 +185.244.215.10/31 +185.244.215.12/31 +185.244.215.14/32 +185.244.215.99/32 +185.244.215.130/31 +185.244.215.132/31 +185.244.215.134/32 +185.244.215.147/32 +185.244.215.155/32 +185.244.215.163/32 +185.244.215.195/32 +185.244.215.196/32 +185.244.215.203/32 +185.244.215.211/32 +185.244.215.219/32 +185.245.84.50/31 +185.245.84.52/32 +185.245.84.83/32 +185.245.84.98/31 +185.245.84.100/31 +185.245.84.102/32 +185.245.84.106/31 +185.245.84.108/31 +185.245.84.110/32 +185.245.84.163/32 +185.245.84.171/32 +185.245.84.179/32 +185.245.84.187/32 +185.245.85.75/32 +185.245.85.130/31 +185.245.85.171/32 +185.245.85.179/32 +185.245.86.11/32 +185.245.86.19/32 +185.245.86.27/32 +185.245.86.35/32 +185.245.86.40/32 +185.245.86.44/32 +185.245.86.49/32 +185.245.86.54/32 +185.245.86.67/32 +185.245.86.83/32 +185.245.86.107/32 +185.245.86.115/32 +185.245.86.120/32 +185.245.86.147/32 +185.245.86.155/32 +185.245.86.195/32 +185.245.86.203/32 +185.245.86.235/32 +185.245.86.243/32 +185.245.87.8/32 +185.245.87.13/32 +185.245.87.18/32 +185.245.87.23/32 +185.245.87.28/32 +185.245.87.33/32 +185.245.87.43/32 +185.245.87.48/32 +185.245.87.59/32 +185.245.87.63/32 +185.245.87.110/32 +185.245.87.131/32 +185.245.87.139/32 +185.245.87.147/32 +185.245.87.187/32 +185.245.87.227/32 +185.245.87.243/32 +185.245.255.1/32 +185.245.255.14/32 +185.245.255.27/32 +185.245.255.40/32 +185.245.255.52/32 +185.245.255.64/32 +185.245.255.76/32 +185.245.255.88/32 +185.245.255.100/32 +185.245.255.112/32 +185.245.255.129/32 +185.245.255.142/32 +185.245.255.155/32 +185.245.255.168/32 +185.245.255.180/32 +185.245.255.192/32 +185.245.255.204/32 +185.245.255.216/32 +185.245.255.228/32 +185.245.255.240/32 +185.246.209.146/31 +185.246.209.148/30 +185.246.209.152/30 +185.246.210.1/32 +185.246.210.2/31 +185.246.211.72/30 +185.246.211.76/32 +185.246.211.78/31 +185.246.211.80/32 +185.246.211.87/32 +185.246.211.88/30 +185.246.211.193/32 +185.246.211.194/31 +185.246.211.196/30 +185.246.211.200/30 +185.246.211.204/31 +185.247.68.50/32 +185.247.70.3/32 +185.247.70.11/32 +185.247.70.19/32 +185.247.70.27/32 +185.247.70.35/32 +185.247.70.43/32 +185.247.70.51/32 +185.247.70.59/32 +185.247.70.67/32 +185.247.70.75/32 +185.247.70.83/32 +185.247.70.91/32 +185.247.70.99/32 +185.247.70.107/32 +185.247.70.115/32 +185.247.70.123/32 +185.247.70.131/32 +185.247.70.139/32 +185.247.70.147/32 +185.247.70.155/32 +185.247.70.163/32 +185.247.70.171/32 +185.247.70.179/32 +185.247.70.187/32 +185.247.70.195/32 +185.247.70.203/32 +185.247.70.211/32 +185.247.70.219/32 +185.247.70.227/32 +185.247.70.235/32 +185.247.70.243/32 +185.247.70.251/32 +185.247.71.11/32 +185.247.71.19/32 +185.247.71.27/32 +185.247.71.35/32 +185.247.71.43/32 +185.247.71.51/32 +185.247.71.59/32 +185.247.71.67/32 +185.252.220.114/32 +185.252.220.146/32 +185.253.96.2/31 +185.253.96.4/32 +185.253.97.130/32 +185.253.97.235/32 +185.253.97.236/31 +185.253.97.238/32 +185.253.97.244/30 +185.253.97.248/30 +185.253.97.253/32 +185.253.97.254/32 +185.253.98.18/31 +185.253.98.20/32 +185.253.98.22/31 +185.253.98.24/30 +185.253.98.28/31 +185.253.98.50/31 +185.253.98.52/31 +185.253.98.54/32 +185.253.98.58/31 +185.253.98.60/31 +185.253.98.62/32 +185.253.98.74/31 +185.253.98.76/31 +185.253.98.78/32 +185.253.98.82/31 +185.253.98.84/31 +185.253.98.86/32 +185.253.98.90/31 +185.253.98.92/31 +185.253.98.94/32 +185.253.98.101/32 +185.253.98.106/32 +185.253.160.131/32 +185.253.160.132/32 +185.253.160.135/32 +185.253.160.136/29 +185.253.160.144/32 +185.253.160.146/31 +185.253.160.148/30 +185.253.160.152/31 +185.253.160.154/32 +185.253.160.156/31 +185.253.162.131/32 +185.253.162.133/32 +185.253.162.134/31 +185.253.162.136/29 +185.253.162.144/32 +185.255.130.101/32 +185.255.130.103/32 +185.255.130.105/32 +185.255.130.107/32 +185.255.130.109/32 +185.255.130.111/32 +185.255.130.113/32 +185.255.130.115/32 +185.255.130.117/32 +185.255.130.119/32 +185.255.130.121/32 +185.255.130.123/32 +185.255.130.125/32 +185.255.130.127/32 +185.255.130.129/32 +185.255.130.131/32 +185.255.130.133/32 +185.255.130.135/32 +185.255.130.137/32 +185.255.130.139/32 +185.255.130.141/32 +185.255.130.143/32 +185.255.130.145/32 +185.255.130.147/32 +185.255.130.149/32 +185.255.130.151/32 +185.255.130.153/32 +185.255.130.155/32 +185.255.130.157/32 +185.255.130.159/32 +185.255.130.161/32 +185.255.130.163/32 +185.255.130.165/32 +185.255.130.167/32 +185.255.130.169/32 +185.255.130.171/32 +185.255.130.173/32 +188.74.181.2/32 +188.95.55.3/32 +188.95.55.8/32 +188.95.55.13/32 +188.95.55.18/32 +188.95.55.23/32 +188.95.55.28/32 +188.95.55.33/32 +188.95.55.38/32 +188.95.55.43/32 +188.95.55.48/32 +188.95.55.53/32 +188.95.55.58/32 +188.95.55.63/32 +188.95.55.68/32 +188.95.55.73/32 +188.95.55.78/32 +188.95.55.83/32 +188.95.55.88/32 +188.95.55.93/32 +188.95.55.98/32 +188.124.42.98/31 +188.124.42.100/32 +188.124.42.114/31 +188.124.42.116/32 +188.126.79.5/32 +188.126.79.6/31 +188.126.79.8/32 +188.126.79.10/31 +188.126.79.12/30 +188.126.79.16/30 +188.126.79.20/31 +188.126.79.22/32 +188.126.79.24/30 +188.126.79.28/31 +188.126.79.30/32 +188.126.89.99/32 +188.126.89.100/30 +188.126.89.104/30 +188.126.89.108/32 +188.126.89.110/31 +188.126.89.112/29 +188.126.89.120/32 +188.126.89.122/31 +188.126.89.124/31 +188.126.94.195/32 +188.126.94.196/30 +188.126.94.201/32 +188.126.94.203/32 +188.126.94.204/31 +188.126.94.206/32 +188.126.94.208/31 +188.126.94.211/32 +188.126.94.212/30 +188.126.94.216/32 +188.126.94.218/32 +188.126.94.221/32 +188.126.94.222/32 +188.126.94.227/32 +188.126.94.228/30 +188.126.94.232/29 +188.126.94.240/29 +188.126.94.248/30 +188.126.94.254/32 +188.166.81.73/32 +188.166.82.55/32 +188.166.82.84/32 +188.166.145.130/32 +188.166.146.239/32 +188.166.148.127/32 +188.166.150.58/32 +188.166.154.131/32 +188.166.159.197/32 +188.166.168.248/32 +188.166.189.7/32 +188.166.190.59/32 +188.208.143.104/32 +188.212.154.38/32 +188.212.154.51/32 +188.212.154.64/32 +188.212.154.77/32 +188.212.154.90/32 +188.212.154.103/32 +188.212.154.116/32 +188.212.154.130/32 +188.212.154.142/32 +188.212.154.155/32 +188.212.154.168/32 +188.212.154.181/32 +188.212.154.194/32 +188.212.154.207/32 +188.212.154.220/32 +188.212.154.233/32 +188.212.154.246/32 +188.213.34.3/32 +188.213.34.4/31 +188.213.34.9/32 +188.214.38.29/32 +188.214.38.115/32 +188.214.38.143/32 +188.214.38.248/32 +188.214.106.178/31 +188.214.106.180/30 +188.214.106.184/30 +188.214.106.188/31 +188.214.106.190/32 +188.214.122.35/32 +188.214.122.36/30 +188.214.122.40/32 +188.214.122.42/31 +188.214.122.44/32 +188.214.122.46/31 +188.214.122.48/29 +188.214.122.57/32 +188.214.122.58/31 +188.214.122.60/31 +188.214.122.62/32 +188.214.122.67/32 +188.214.122.68/30 +188.214.122.72/31 +188.214.122.75/32 +188.214.122.76/31 +188.214.122.78/32 +188.214.122.82/31 +188.214.122.84/30 +188.214.122.88/30 +188.214.122.92/31 +188.214.122.94/32 +188.214.125.35/32 +188.214.125.36/30 +188.214.125.40/31 +188.214.125.42/32 +188.214.125.44/30 +188.214.125.48/31 +188.214.125.50/32 +188.214.125.52/30 +188.214.125.56/30 +188.214.125.60/31 +188.214.125.62/32 +188.214.125.67/32 +188.214.125.68/30 +188.214.125.72/30 +188.214.125.76/31 +188.214.125.78/32 +188.214.125.162/31 +188.214.125.164/30 +188.214.125.168/30 +188.214.125.172/31 +188.214.125.174/32 +188.214.152.226/31 +188.214.152.228/30 +188.214.152.232/30 +188.214.152.236/31 +188.214.152.238/32 +188.214.158.34/31 +188.214.158.36/30 +188.214.158.40/30 +188.214.158.44/31 +188.215.235.35/32 +188.215.235.36/30 +188.215.235.40/31 +188.215.235.42/32 +188.215.235.44/32 +188.215.235.47/32 +188.215.235.48/32 +188.215.235.50/32 +188.215.235.52/30 +188.215.235.56/31 +188.215.235.58/32 +188.215.235.82/31 +188.215.235.84/30 +188.215.235.88/30 +188.215.235.92/31 +188.215.235.94/32 +188.240.56.6/32 +188.240.56.19/32 +188.240.56.32/32 +188.240.56.45/32 +188.240.56.58/32 +188.240.56.71/32 +188.240.56.84/32 +188.240.56.97/32 +188.240.56.110/32 +188.240.56.123/32 +188.240.56.136/32 +188.240.56.149/32 +188.240.56.162/32 +188.240.56.175/32 +188.240.56.188/32 +188.240.56.201/32 +188.240.56.214/32 +188.240.56.227/32 +188.240.56.241/32 +188.240.57.226/31 +188.240.57.228/30 +188.240.57.232/29 +188.240.57.240/29 +188.240.57.248/30 +188.240.57.252/31 +188.240.57.254/32 +188.241.80.131/32 +188.241.80.132/30 +188.241.80.136/32 +188.241.80.138/31 +188.241.80.140/31 +188.241.80.142/32 +188.241.83.66/31 +188.241.83.68/32 +188.241.157.38/32 +188.241.157.40/32 +188.241.157.42/32 +188.241.157.44/32 +188.241.157.46/32 +188.241.157.48/32 +188.241.157.50/32 +188.241.157.52/32 +188.241.157.54/32 +188.241.157.56/32 +188.241.157.58/32 +188.241.157.60/32 +188.241.157.62/32 +188.241.157.64/32 +188.241.157.66/32 +188.241.157.68/32 +188.241.157.70/32 +188.241.157.72/32 +188.241.157.74/32 +188.241.157.76/32 +188.241.157.78/32 +188.241.157.80/32 +188.241.157.82/32 +188.241.157.84/32 +188.241.157.86/32 +188.241.157.88/32 +188.241.157.90/32 +188.241.157.92/32 +188.241.157.94/32 +188.241.157.96/32 +188.241.157.98/32 +188.241.157.100/32 +188.241.157.102/32 +188.241.157.104/32 +188.241.157.106/32 +188.241.157.108/32 +188.241.177.5/32 +188.241.177.6/32 +188.241.177.8/30 +188.241.177.12/31 +188.241.177.14/32 +188.241.177.35/32 +188.241.177.36/30 +188.241.177.40/30 +188.241.177.45/32 +188.241.177.46/32 +188.241.177.115/32 +188.241.177.118/31 +188.241.177.120/32 +188.241.177.122/31 +188.241.177.124/31 +188.241.177.131/32 +188.241.177.132/32 +188.241.177.134/31 +188.241.177.136/31 +188.241.177.141/32 +188.241.177.142/32 +188.241.177.147/32 +188.241.177.148/30 +188.241.177.152/30 +188.241.177.156/31 +188.241.177.158/32 +188.241.177.226/31 +188.241.177.228/30 +188.241.177.232/30 +188.241.177.236/31 +188.241.177.238/32 +189.1.168.146/32 +189.1.168.154/32 +189.1.170.129/32 +190.2.131.156/30 +190.2.131.160/31 +190.2.131.167/32 +190.2.131.175/32 +190.2.132.124/30 +190.2.132.128/32 +190.2.132.134/31 +190.2.132.136/32 +190.2.132.139/32 +190.2.132.140/30 +190.2.132.148/32 +190.2.132.155/32 +190.2.132.157/32 +190.2.141.70/32 +190.2.141.77/32 +190.2.141.80/32 +190.2.141.97/32 +190.2.141.104/32 +190.2.141.122/32 +190.2.141.142/32 +190.2.141.146/31 +190.2.141.149/32 +190.2.141.151/32 +190.2.141.157/32 +190.2.141.158/32 +190.2.141.161/32 +190.2.141.164/32 +190.2.141.168/32 +190.2.146.180/32 +190.2.146.198/32 +190.2.146.214/32 +190.2.146.226/32 +190.2.146.228/32 +190.2.146.230/31 +190.2.146.232/32 +190.2.147.7/32 +190.2.153.215/32 +190.2.155.219/32 +190.103.176.46/32 +190.103.176.146/31 +190.103.176.148/32 +191.96.70.61/32 +191.96.150.162/31 +191.96.150.164/32 +191.96.150.168/29 +191.96.150.176/29 +191.96.150.185/32 +191.96.150.186/32 +191.96.150.188/30 +191.96.150.192/31 +191.96.150.195/32 +191.96.150.196/31 +191.96.150.199/32 +191.96.150.200/30 +191.96.150.204/32 +191.96.150.206/31 +191.96.150.208/31 +191.96.168.7/32 +191.96.168.10/31 +191.96.168.12/30 +191.96.168.16/29 +191.96.168.24/30 +191.96.168.29/32 +191.96.168.30/31 +191.96.168.32/32 +191.96.168.34/32 +191.96.168.36/30 +191.96.168.40/29 +191.96.168.49/32 +191.96.168.50/31 +191.96.168.52/31 +191.96.168.54/32 +191.96.168.56/31 +191.96.168.110/31 +191.96.168.112/30 +191.96.168.116/32 +191.96.168.118/31 +191.96.168.120/30 +191.96.168.124/31 +191.96.168.127/32 +191.96.168.128/31 +191.96.168.130/32 +191.96.168.132/30 +191.96.168.136/31 +191.96.168.138/32 +191.96.168.140/32 +191.96.168.142/31 +191.96.168.144/29 +191.96.168.152/31 +191.96.168.156/32 +191.96.168.158/31 +191.96.227.170/31 +191.96.227.172/30 +191.96.227.176/30 +191.96.227.180/31 +191.96.227.184/31 +191.96.227.186/32 +191.96.227.189/32 +191.96.227.191/32 +191.96.227.192/31 +191.96.227.195/32 +191.96.227.196/31 +191.96.227.199/32 +191.96.227.200/32 +191.96.227.202/32 +191.96.227.205/32 +191.96.227.206/32 +191.96.227.209/32 +191.101.31.70/31 +191.101.31.72/29 +191.101.31.80/31 +191.101.31.83/32 +191.101.31.84/32 +191.101.31.86/31 +191.101.31.88/29 +191.101.31.96/30 +191.101.160.4/32 +191.101.160.20/32 +191.101.160.36/32 +191.101.160.52/32 +191.101.160.68/32 +191.101.160.84/32 +191.101.160.100/32 +191.101.160.116/32 +191.101.160.132/32 +191.101.160.148/32 +191.101.160.164/32 +191.101.160.180/32 +191.101.160.195/32 +191.101.160.210/32 +191.101.160.225/32 +191.101.160.240/32 +191.101.210.10/31 +191.101.210.12/30 +191.101.210.16/32 +191.101.210.18/31 +191.101.210.20/31 +191.101.210.22/32 +191.101.210.25/32 +191.101.210.27/32 +191.101.210.28/31 +191.101.210.31/32 +191.101.210.32/31 +191.101.210.34/32 +191.101.210.36/31 +191.101.210.40/32 +191.101.210.42/31 +191.101.210.45/32 +191.101.210.46/32 +191.101.210.49/32 +191.101.210.50/31 +191.101.210.52/30 +191.101.210.56/29 +191.101.210.64/32 +191.101.210.66/32 +191.101.210.68/32 +191.101.217.41/32 +191.101.217.42/31 +191.101.217.44/31 +191.101.217.46/32 +191.101.217.48/31 +191.101.217.52/30 +191.101.217.56/30 +191.101.217.60/32 +191.101.217.62/31 +191.101.217.64/31 +191.101.217.66/32 +191.101.217.68/30 +191.101.217.72/29 +191.101.217.80/32 +191.101.217.83/32 +191.101.217.84/30 +191.101.217.88/30 +191.101.217.92/32 +191.101.217.94/31 +191.101.217.96/31 +191.101.217.98/32 +192.3.53.243/32 +192.34.61.64/32 +192.34.83.226/31 +192.34.83.228/32 +192.36.27.72/32 +192.36.27.86/32 +192.36.27.105/32 +192.36.61.153/32 +192.71.27.62/32 +192.71.27.72/32 +192.71.27.91/32 +192.71.166.35/32 +192.71.166.86/32 +192.71.211.82/32 +192.71.211.224/32 +192.71.211.232/32 +192.71.211.237/32 +192.71.213.12/32 +192.71.213.18/32 +192.71.213.24/32 +192.71.213.81/32 +192.71.213.84/32 +192.71.213.100/32 +192.71.213.151/32 +192.71.213.167/32 +192.71.218.24/32 +192.71.218.72/32 +192.71.218.97/32 +192.71.227.45/32 +192.71.227.149/32 +192.71.244.113/32 +192.71.244.244/32 +192.71.249.14/32 +192.71.249.49/32 +192.71.249.68/31 +192.71.249.79/32 +192.71.249.84/32 +192.71.249.88/32 +192.71.249.92/32 +192.71.249.96/32 +192.71.249.129/32 +192.71.249.133/32 +192.71.249.172/32 +192.71.249.188/31 +192.71.249.192/32 +192.71.249.196/32 +192.71.249.207/32 +192.71.249.221/32 +192.71.249.227/32 +192.121.46.57/32 +192.121.46.115/32 +192.121.170.4/32 +192.121.170.6/32 +192.121.170.11/32 +192.121.170.13/32 +192.121.170.14/32 +192.121.170.17/32 +192.121.170.20/32 +192.121.170.22/31 +192.121.170.25/32 +192.121.170.26/31 +192.121.170.29/32 +192.121.170.32/32 +192.121.170.38/32 +192.121.171.13/32 +192.121.171.110/32 +192.121.171.115/32 +192.121.171.202/32 +192.145.116.100/32 +192.145.116.102/32 +192.145.116.104/32 +192.145.116.106/32 +192.145.116.108/32 +192.145.116.110/32 +192.145.116.112/32 +192.145.116.114/32 +192.145.116.116/32 +192.145.116.118/32 +192.145.116.120/32 +192.145.116.122/32 +192.145.116.124/32 +192.145.116.126/32 +192.145.116.128/32 +192.145.116.130/32 +192.145.116.132/32 +192.145.116.134/32 +192.145.116.136/32 +192.145.116.138/32 +192.145.116.140/32 +192.145.116.142/32 +192.145.116.144/32 +192.145.116.146/32 +192.145.116.148/32 +192.145.116.150/32 +192.145.116.152/32 +192.145.116.154/32 +192.145.116.156/32 +192.145.116.158/32 +192.145.116.160/32 +192.145.116.162/32 +192.145.117.100/32 +192.145.117.102/32 +192.145.117.104/32 +192.145.117.106/32 +192.145.117.108/32 +192.145.117.110/32 +192.145.117.112/32 +192.145.117.114/32 +192.145.117.116/32 +192.145.117.118/32 +192.145.117.120/32 +192.145.117.122/32 +192.145.117.124/32 +192.145.117.126/32 +192.145.117.128/32 +192.145.117.130/32 +192.145.117.132/32 +192.145.117.134/32 +192.145.117.136/32 +192.145.117.138/32 +192.145.117.140/32 +192.145.117.142/32 +192.145.117.144/32 +192.145.117.146/32 +192.145.118.100/32 +192.145.118.102/32 +192.145.118.104/32 +192.145.118.106/32 +192.145.118.108/32 +192.145.118.110/32 +192.145.118.112/32 +192.145.118.114/32 +192.145.118.116/32 +192.145.118.118/32 +192.145.118.120/32 +192.145.118.122/32 +192.145.118.124/32 +192.145.118.126/32 +192.145.118.128/32 +192.145.118.130/32 +192.145.118.132/32 +192.145.118.134/32 +192.145.118.136/32 +192.145.118.138/32 +192.145.118.140/32 +192.145.118.142/32 +192.145.118.144/32 +192.145.118.146/32 +192.145.118.148/32 +192.145.118.150/32 +192.145.118.152/32 +192.145.118.154/32 +192.145.118.156/32 +192.145.118.158/32 +192.145.118.160/32 +192.145.118.162/32 +192.145.119.6/32 +192.145.119.100/32 +192.145.119.102/32 +192.145.119.104/32 +192.145.119.106/32 +192.145.119.108/32 +192.145.119.110/32 +192.145.119.112/32 +192.145.119.114/32 +192.145.119.116/32 +192.145.119.118/32 +192.145.119.120/32 +192.145.119.122/32 +192.145.119.124/32 +192.145.119.126/32 +192.145.119.128/32 +192.145.119.130/32 +192.145.119.132/32 +192.145.119.134/32 +192.145.119.136/32 +192.145.119.138/32 +192.145.119.140/32 +192.145.119.142/32 +192.145.124.83/32 +192.145.124.91/32 +192.145.124.99/32 +192.145.124.107/32 +192.145.124.123/32 +192.145.125.35/32 +192.145.127.179/32 +192.154.196.11/32 +192.154.196.41/32 +192.154.196.71/32 +192.154.196.101/32 +192.154.196.131/32 +192.154.196.162/32 +192.154.196.193/32 +192.154.196.224/32 +192.158.226.14/31 +192.158.226.16/32 +192.161.188.194/32 +192.161.189.130/32 +192.166.244.100/32 +192.166.244.102/32 +192.166.244.104/32 +192.166.244.106/32 +192.166.244.108/32 +192.166.244.110/32 +192.166.244.112/32 +192.166.244.114/32 +192.166.244.116/32 +192.166.244.118/32 +192.166.244.120/32 +192.166.244.122/32 +192.166.244.124/32 +192.166.244.126/32 +192.166.244.128/32 +192.166.244.132/32 +192.166.244.134/32 +192.166.244.136/32 +192.166.244.138/32 +192.166.246.100/32 +192.166.246.102/32 +192.166.246.104/32 +192.166.246.106/32 +192.166.246.108/32 +192.166.246.110/32 +192.166.246.112/32 +192.166.246.114/32 +192.166.246.116/32 +192.166.246.118/32 +192.166.246.120/32 +192.166.246.122/32 +192.166.246.124/32 +192.166.246.126/32 +192.166.246.128/32 +192.166.246.130/32 +192.166.246.132/32 +192.166.246.134/32 +192.166.246.136/32 +192.166.246.138/32 +192.166.246.140/32 +192.166.246.142/32 +192.166.247.100/32 +192.166.247.102/32 +192.166.247.104/32 +192.166.247.106/32 +192.166.247.108/32 +192.166.247.110/32 +192.166.247.112/32 +192.166.247.114/32 +192.166.247.116/32 +192.166.247.118/32 +192.166.247.120/32 +192.166.247.122/32 +192.166.247.124/32 +192.166.247.126/32 +192.166.247.128/32 +192.166.247.130/32 +192.166.247.132/32 +192.166.247.134/32 +192.166.247.136/32 +192.166.247.138/32 +192.166.247.140/32 +192.166.247.142/32 +192.166.247.144/32 +192.166.247.146/32 +192.166.247.148/32 +192.166.247.150/32 +192.166.247.152/32 +192.166.247.154/32 +192.166.247.156/32 +192.166.247.158/32 +192.166.247.160/32 +192.166.247.162/32 +192.166.247.164/32 +192.166.247.166/32 +192.166.247.168/32 +192.166.247.170/32 +192.241.130.49/32 +192.241.136.183/32 +192.241.154.243/32 +192.248.154.74/32 +192.248.157.230/32 +192.248.159.99/32 +192.248.168.217/32 +193.9.36.1/32 +193.9.36.2/31 +193.9.36.4/30 +193.9.36.8/29 +193.9.36.16/29 +193.9.36.24/32 +193.9.37.1/32 +193.9.37.2/31 +193.9.37.4/30 +193.9.37.8/29 +193.9.37.16/29 +193.9.37.24/32 +193.9.38.1/32 +193.9.38.2/31 +193.9.38.4/30 +193.9.38.8/29 +193.9.38.16/29 +193.9.38.24/32 +193.9.39.1/32 +193.9.39.2/31 +193.9.39.4/30 +193.9.39.8/29 +193.9.39.16/29 +193.9.39.24/32 +193.9.112.75/32 +193.9.112.83/32 +193.9.112.91/32 +193.9.112.235/32 +193.9.112.243/32 +193.9.112.251/32 +193.9.113.134/32 +193.19.204.129/32 +193.19.204.145/32 +193.19.204.161/32 +193.19.204.177/32 +193.19.204.193/32 +193.19.204.209/32 +193.19.204.225/32 +193.19.205.129/32 +193.19.205.145/32 +193.19.205.161/32 +193.19.205.177/32 +193.19.205.193/32 +193.19.205.209/32 +193.27.12.91/32 +193.27.14.178/31 +193.27.14.180/32 +193.29.61.6/32 +193.29.61.8/32 +193.29.61.10/32 +193.29.61.12/32 +193.29.61.14/32 +193.29.61.16/32 +193.29.61.18/32 +193.29.61.20/32 +193.29.61.22/32 +193.29.61.24/32 +193.29.61.26/32 +193.29.61.28/32 +193.29.61.30/32 +193.29.61.32/32 +193.29.61.34/32 +193.29.61.36/32 +193.29.61.38/32 +193.29.61.40/32 +193.29.61.42/32 +193.29.61.44/32 +193.29.61.46/32 +193.29.61.48/32 +193.29.61.50/32 +193.29.61.52/32 +193.29.61.54/32 +193.29.61.56/32 +193.29.61.58/32 +193.29.61.60/32 +193.29.61.62/32 +193.29.61.64/32 +193.29.61.66/32 +193.29.61.68/32 +193.29.61.70/32 +193.29.61.72/32 +193.29.61.74/32 +193.29.61.76/32 +193.29.61.78/32 +193.29.61.80/32 +193.29.61.82/32 +193.29.61.84/32 +193.29.61.86/32 +193.29.61.88/32 +193.29.61.90/32 +193.29.61.92/32 +193.29.61.94/32 +193.29.61.96/32 +193.29.61.98/32 +193.29.61.100/32 +193.29.61.158/32 +193.29.61.160/32 +193.29.61.162/32 +193.29.61.164/32 +193.29.61.166/32 +193.29.61.168/32 +193.29.61.170/32 +193.29.61.172/32 +193.29.106.18/31 +193.29.106.20/30 +193.29.106.24/30 +193.29.106.28/31 +193.29.106.30/32 +193.29.107.98/31 +193.29.107.100/30 +193.29.107.104/30 +193.29.107.108/31 +193.29.107.110/32 +193.29.107.162/31 +193.29.107.164/30 +193.29.107.168/30 +193.29.107.172/31 +193.29.107.174/32 +193.29.107.242/31 +193.29.107.244/30 +193.29.107.248/31 +193.29.107.250/32 +193.31.40.34/32 +193.36.118.210/31 +193.36.118.212/32 +193.36.118.226/31 +193.36.118.228/32 +193.36.118.242/31 +193.36.118.244/32 +193.36.237.100/32 +193.36.237.102/32 +193.36.237.104/32 +193.36.237.106/32 +193.36.237.108/32 +193.36.237.110/32 +193.36.237.112/32 +193.36.237.114/32 +193.36.237.116/32 +193.36.237.118/32 +193.37.254.66/31 +193.37.254.68/30 +193.37.254.72/30 +193.37.254.76/31 +193.37.254.78/32 +193.37.254.178/31 +193.37.255.179/32 +193.37.255.187/32 +193.37.255.235/32 +193.42.108.84/32 +193.42.108.86/32 +193.42.108.88/32 +193.42.108.90/32 +193.42.108.92/32 +193.42.108.94/32 +193.42.108.96/32 +193.42.108.98/32 +193.56.252.75/32 +193.56.252.83/32 +193.56.252.91/32 +193.56.252.99/32 +193.56.252.107/32 +193.56.252.115/32 +193.56.252.123/32 +193.56.252.131/32 +193.56.252.139/32 +193.56.252.147/32 +193.56.252.155/32 +193.56.252.163/32 +193.56.252.171/32 +193.56.252.179/32 +193.56.252.187/32 +193.56.252.195/32 +193.70.114.59/32 +193.123.95.113/32 +193.148.16.2/32 +193.148.18.82/31 +193.148.18.84/30 +193.148.18.88/31 +193.148.18.90/32 +193.160.118.1/32 +193.160.118.3/32 +193.160.118.5/32 +193.160.118.7/32 +193.160.118.9/32 +193.160.118.11/32 +193.160.118.13/32 +193.160.118.15/32 +193.160.118.17/32 +193.160.118.19/32 +193.160.118.21/32 +193.160.118.23/32 +193.160.118.25/32 +193.160.118.27/32 +193.160.118.29/32 +193.160.118.31/32 +193.161.204.22/31 +193.161.204.24/32 +193.176.84.16/29 +193.176.84.24/30 +193.176.84.29/32 +193.176.84.30/31 +193.176.84.32/32 +193.176.84.35/32 +193.176.84.36/31 +193.176.84.39/32 +193.176.84.40/32 +193.176.86.35/32 +193.176.86.38/31 +193.176.86.40/31 +193.176.86.42/32 +193.176.86.44/32 +193.176.86.46/32 +193.176.86.51/32 +193.176.86.52/30 +193.176.86.56/30 +193.176.86.60/32 +193.176.86.62/32 +193.176.87.59/32 +193.176.87.130/32 +193.176.87.194/32 +193.182.144.10/32 +193.182.144.21/32 +193.182.144.61/32 +193.182.144.63/32 +193.182.144.196/32 +193.203.12.231/32 +193.203.12.246/32 +193.203.13.10/32 +193.203.13.25/32 +193.203.13.40/32 +193.203.13.55/32 +193.203.13.70/32 +193.203.13.85/32 +193.203.13.100/32 +193.203.13.115/32 +193.203.13.135/32 +193.203.13.150/32 +193.203.13.165/32 +193.203.13.180/32 +193.203.13.195/32 +193.203.13.210/32 +193.203.13.224/32 +193.203.13.238/32 +193.235.146.53/32 +193.235.207.32/32 +193.235.207.83/32 +193.235.207.149/32 +194.5.215.194/31 +194.5.215.196/32 +194.31.54.3/32 +194.31.54.4/32 +194.32.122.9/32 +194.32.122.10/31 +194.32.122.12/30 +194.32.122.17/32 +194.32.122.18/31 +194.32.122.20/32 +194.32.122.22/32 +194.32.122.25/32 +194.32.122.27/32 +194.32.122.28/31 +194.32.235.1/32 +194.32.235.14/32 +194.32.235.27/32 +194.32.235.40/32 +194.32.235.52/32 +194.32.235.64/32 +194.32.235.76/32 +194.32.235.88/32 +194.32.235.100/32 +194.32.235.112/32 +194.32.235.129/32 +194.32.235.142/32 +194.32.235.155/32 +194.32.235.168/32 +194.32.235.180/32 +194.32.235.192/32 +194.32.235.204/32 +194.32.235.216/32 +194.32.235.228/32 +194.32.235.240/32 +194.34.132.55/32 +194.34.132.56/30 +194.34.235.1/32 +194.34.235.18/32 +194.34.235.28/32 +194.34.235.41/32 +194.34.235.53/32 +194.34.235.65/32 +194.34.235.79/32 +194.34.235.89/32 +194.34.235.101/32 +194.34.235.112/32 +194.35.232.2/32 +194.35.232.13/32 +194.35.232.24/32 +194.35.232.35/32 +194.35.232.46/32 +194.35.232.57/32 +194.35.232.68/32 +194.35.232.79/32 +194.35.232.90/32 +194.35.232.101/32 +194.35.232.112/32 +194.35.232.123/32 +194.35.232.134/32 +194.35.232.145/32 +194.35.232.155/32 +194.35.232.165/32 +194.35.232.175/32 +194.35.232.185/32 +194.35.232.195/32 +194.35.232.205/32 +194.35.232.215/32 +194.35.232.225/32 +194.35.232.235/32 +194.35.232.245/32 +194.35.233.3/32 +194.35.233.6/32 +194.35.233.9/32 +194.35.233.12/32 +194.35.233.15/32 +194.35.233.18/32 +194.35.233.21/32 +194.35.233.24/32 +194.35.233.27/32 +194.35.233.30/32 +194.35.233.33/32 +194.35.233.36/32 +194.35.233.39/32 +194.35.233.42/32 +194.35.233.45/32 +194.35.233.48/32 +194.35.233.51/32 +194.35.233.54/32 +194.35.233.57/32 +194.35.233.60/32 +194.35.233.63/32 +194.35.233.66/32 +194.35.233.69/32 +194.35.233.72/32 +194.35.233.75/32 +194.35.233.78/32 +194.35.233.83/32 +194.35.233.88/32 +194.35.233.93/32 +194.35.233.98/32 +194.35.233.104/32 +194.35.233.107/32 +194.35.233.110/32 +194.35.233.113/32 +194.35.233.116/32 +194.35.233.119/32 +194.35.233.122/32 +194.35.233.125/32 +194.35.233.128/32 +194.35.233.131/32 +194.35.233.134/32 +194.35.233.137/32 +194.35.233.140/32 +194.35.233.143/32 +194.35.233.148/32 +194.35.233.151/32 +194.35.233.154/32 +194.35.233.157/32 +194.35.233.160/32 +194.35.233.163/32 +194.35.233.166/32 +194.35.233.169/32 +194.35.233.172/32 +194.35.233.175/32 +194.35.233.178/32 +194.35.233.181/32 +194.35.233.184/32 +194.35.233.187/32 +194.35.233.190/32 +194.35.233.193/32 +194.35.233.196/32 +194.35.233.202/32 +194.35.233.205/32 +194.35.233.208/32 +194.35.233.211/32 +194.35.233.214/32 +194.35.233.217/32 +194.35.233.220/32 +194.35.233.223/32 +194.35.233.226/32 +194.35.233.229/32 +194.35.233.232/32 +194.35.233.235/32 +194.35.233.238/32 +194.35.233.241/32 +194.35.233.244/32 +194.35.233.247/32 +194.35.233.250/32 +194.35.233.253/32 +194.36.108.83/32 +194.36.108.84/30 +194.36.108.88/31 +194.36.108.91/32 +194.36.108.92/31 +194.36.108.94/32 +194.36.110.101/32 +194.36.110.130/31 +194.36.110.132/31 +194.36.110.134/32 +194.36.110.138/31 +194.36.110.140/31 +194.36.110.142/32 +194.36.110.146/31 +194.36.110.148/31 +194.36.110.150/32 +194.36.110.181/32 +194.36.110.197/32 +194.36.110.213/32 +194.36.110.229/32 +194.36.110.245/32 +194.49.52.2/32 +194.49.52.17/32 +194.49.52.32/32 +194.49.52.47/32 +194.49.52.62/32 +194.49.52.77/32 +194.49.52.92/32 +194.49.52.107/32 +194.49.52.122/32 +194.53.71.130/31 +194.53.71.132/31 +194.59.249.179/32 +194.59.249.242/32 +194.68.32.50/32 +194.68.32.129/32 +194.68.44.16/32 +194.68.44.31/32 +194.68.44.74/32 +194.68.44.89/32 +194.68.44.145/32 +194.68.44.181/32 +194.68.44.199/32 +194.68.44.215/32 +194.68.225.14/32 +194.68.225.33/32 +194.68.225.60/32 +194.68.225.96/32 +194.71.107.144/32 +194.71.126.33/32 +194.71.126.176/32 +194.71.130.11/32 +194.71.130.22/32 +194.71.130.42/32 +194.71.130.48/32 +194.71.130.89/32 +194.71.130.96/32 +194.71.130.121/32 +194.71.130.126/32 +194.71.130.128/32 +194.71.130.136/32 +194.71.130.147/32 +194.71.130.157/32 +194.71.130.170/32 +194.71.130.175/32 +194.71.130.217/32 +194.71.130.223/32 +194.71.227.59/32 +194.71.227.63/32 +194.71.227.72/32 +194.71.227.81/32 +194.71.227.85/32 +194.71.227.117/32 +194.71.227.120/32 +194.71.227.155/32 +194.71.227.156/32 +194.71.227.164/32 +194.71.227.175/32 +194.71.227.179/32 +194.71.227.200/32 +194.71.227.227/32 +194.99.105.99/32 +194.99.105.227/32 +194.99.105.232/32 +194.99.105.237/32 +194.99.105.242/32 +194.99.105.247/32 +194.110.13.130/31 +194.110.13.132/32 +194.110.13.135/32 +194.110.13.136/31 +194.110.13.138/32 +194.110.13.140/30 +194.110.13.144/32 +194.110.13.146/31 +194.110.13.148/30 +194.110.13.152/31 +194.110.13.154/32 +194.110.13.156/30 +194.110.13.160/32 +194.110.85.0/32 +194.110.85.16/32 +194.110.85.32/32 +194.110.85.48/32 +194.110.85.64/32 +194.110.85.80/32 +194.110.85.96/32 +194.110.85.112/32 +194.110.85.128/32 +194.110.85.144/32 +194.110.85.160/32 +194.110.85.176/32 +194.110.112.131/32 +194.110.112.139/32 +194.110.112.147/32 +194.110.112.155/32 +194.110.112.163/32 +194.110.112.171/32 +194.110.112.179/32 +194.110.112.187/32 +194.110.114.251/32 +194.114.136.210/31 +194.114.136.212/30 +194.114.136.216/30 +194.114.136.220/31 +194.114.136.222/32 +194.116.208.16/32 +194.116.208.18/32 +194.116.208.20/32 +194.116.208.22/32 +194.116.208.24/32 +194.116.208.26/32 +194.116.208.28/32 +194.116.208.30/32 +194.116.208.32/32 +194.116.208.34/32 +194.116.208.36/32 +194.126.177.6/31 +194.126.177.8/31 +194.126.177.13/32 +194.126.177.14/32 +194.126.177.16/28 +194.126.177.32/27 +194.126.177.64/26 +194.126.177.160/29 +194.127.172.67/32 +194.127.172.70/32 +194.127.172.73/32 +194.127.172.76/32 +194.127.172.79/32 +194.127.172.82/32 +194.127.172.85/32 +194.127.172.88/32 +194.127.172.91/32 +194.127.172.94/32 +194.127.172.97/32 +194.127.172.100/32 +194.127.172.103/32 +194.127.172.106/32 +194.127.172.109/32 +194.127.173.34/31 +194.156.136.77/32 +194.156.136.91/32 +194.156.136.105/32 +194.156.136.119/32 +194.156.136.133/32 +194.156.136.147/32 +194.156.136.161/32 +194.156.136.175/32 +194.156.136.189/32 +194.156.136.214/32 +194.156.136.228/32 +194.156.136.242/32 +194.180.179.4/32 +194.180.179.6/32 +194.180.179.8/32 +194.180.179.10/32 +194.180.179.12/32 +194.180.179.14/32 +194.180.179.16/32 +194.180.179.18/32 +194.180.179.20/32 +194.180.179.22/32 +194.180.179.24/32 +194.180.179.26/32 +194.180.179.28/32 +194.180.179.30/32 +194.180.179.32/32 +194.180.179.34/32 +194.180.179.36/32 +194.180.179.38/32 +194.180.179.40/32 +194.180.179.42/32 +194.187.251.51/32 +194.187.251.56/32 +194.187.251.61/32 +194.195.89.18/32 +194.195.89.20/32 +194.195.89.22/32 +194.195.89.24/32 +194.195.89.26/32 +194.195.89.28/32 +194.195.89.30/32 +194.195.89.32/32 +194.195.89.34/32 +194.195.89.36/32 +194.195.93.1/32 +194.195.93.3/32 +194.195.93.5/32 +194.195.93.7/32 +194.195.93.9/32 +194.195.93.11/32 +194.195.93.13/32 +194.195.93.15/32 +194.195.93.17/32 +194.195.93.19/32 +194.195.93.21/32 +194.195.93.23/32 +194.195.93.25/32 +194.233.96.10/32 +194.233.96.17/32 +194.233.96.24/32 +194.233.96.31/32 +194.233.96.38/32 +194.233.96.45/32 +194.233.96.52/32 +194.233.96.59/32 +194.233.96.66/32 +194.233.96.73/32 +194.233.96.80/32 +194.233.96.87/32 +194.233.96.94/32 +194.233.96.101/32 +194.233.96.108/32 +194.233.96.115/32 +194.233.96.122/32 +194.233.96.129/32 +194.233.96.136/32 +194.233.96.143/32 +194.233.96.149/32 +194.233.96.155/32 +194.233.96.161/32 +194.233.96.167/32 +194.233.96.173/32 +194.233.96.179/32 +194.233.96.185/32 +194.233.96.191/32 +194.233.96.197/32 +194.233.96.235/32 +194.233.96.241/32 +194.233.96.248/32 +194.233.98.63/32 +194.233.98.98/32 +194.233.98.105/32 +194.233.98.112/32 +194.233.98.129/32 +195.12.50.227/32 +195.12.50.232/32 +195.12.50.237/32 +195.28.182.200/32 +195.47.194.1/32 +195.47.194.17/32 +195.47.194.33/32 +195.47.194.49/32 +195.47.194.65/32 +195.47.194.81/32 +195.54.178.210/31 +195.54.178.212/32 +195.78.54.8/31 +195.78.54.13/32 +195.78.54.14/31 +195.78.54.17/32 +195.78.54.18/31 +195.78.54.21/32 +195.78.54.22/31 +195.78.54.25/32 +195.78.54.28/30 +195.78.54.32/32 +195.78.54.35/32 +195.78.54.36/32 +195.78.54.38/32 +195.78.54.40/29 +195.78.54.50/31 +195.78.54.52/31 +195.78.54.54/32 +195.78.54.56/31 +195.78.54.110/31 +195.78.54.112/32 +195.78.54.114/31 +195.78.54.117/32 +195.78.54.119/32 +195.78.54.120/32 +195.78.54.122/31 +195.78.54.126/31 +195.78.54.129/32 +195.78.54.130/31 +195.78.54.134/31 +195.78.54.136/31 +195.78.54.138/32 +195.78.54.140/31 +195.78.54.142/32 +195.78.54.144/32 +195.78.54.147/32 +195.78.54.148/31 +195.78.54.151/32 +195.78.54.152/30 +195.78.54.156/31 +195.80.149.242/31 +195.80.149.244/32 +195.80.150.162/31 +195.80.150.164/32 +195.80.150.226/31 +195.80.150.228/30 +195.80.150.232/31 +195.80.150.234/32 +195.123.244.72/32 +195.140.213.47/32 +195.140.215.167/32 +195.140.215.171/32 +195.140.215.176/32 +195.140.215.181/32 +195.140.215.186/32 +195.146.2.115/32 +195.146.2.155/32 +195.146.2.160/32 +195.146.2.171/32 +195.154.136.185/32 +195.158.248.1/32 +195.158.248.9/32 +195.158.248.17/32 +195.158.248.49/32 +195.158.248.57/32 +195.158.248.65/32 +195.158.248.73/32 +195.158.248.82/32 +195.158.248.90/32 +195.158.248.97/32 +195.158.248.105/32 +195.158.248.113/32 +195.158.248.121/32 +195.158.248.209/32 +195.158.248.218/32 +195.158.248.226/31 +195.158.248.228/30 +195.158.248.232/31 +195.158.248.234/32 +195.158.249.168/32 +195.158.249.170/32 +195.158.249.172/32 +195.158.249.174/32 +195.158.249.176/32 +195.158.249.178/32 +195.178.172.188/31 +195.181.161.2/31 +195.181.161.5/32 +195.181.161.8/32 +195.181.161.10/32 +195.181.161.12/30 +195.181.161.16/30 +195.181.161.20/32 +195.181.161.22/31 +195.181.161.24/32 +195.181.162.163/32 +195.181.163.1/32 +195.181.166.71/32 +195.181.166.129/32 +195.181.166.130/32 +195.181.167.193/32 +195.181.167.194/31 +195.181.167.196/30 +195.181.167.200/31 +195.181.170.194/32 +195.181.170.199/32 +195.181.170.204/32 +195.181.170.209/32 +195.181.170.210/32 +195.181.170.216/31 +195.181.172.145/32 +195.181.172.146/31 +195.206.104.91/32 +195.206.104.156/32 +195.206.104.179/32 +195.206.104.187/32 +195.206.104.243/32 +195.206.105.115/32 +195.206.105.123/32 +195.206.107.117/32 +195.206.170.3/32 +195.206.170.4/32 +195.206.170.131/32 +195.206.170.132/32 +195.206.171.131/32 +195.206.171.133/32 +195.206.171.139/32 +195.206.171.141/32 +195.206.171.143/32 +195.206.171.145/32 +195.206.171.147/32 +195.206.171.149/32 +195.206.171.151/32 +195.206.171.153/32 +195.206.171.160/32 +195.206.171.162/32 +195.206.171.164/32 +195.206.171.166/32 +195.206.171.168/32 +195.206.171.170/32 +195.206.171.172/32 +195.206.171.174/32 +195.206.171.176/32 +195.206.171.178/32 +195.206.171.180/32 +195.206.171.182/32 +195.206.171.184/32 +195.206.171.186/32 +195.206.171.188/32 +195.206.171.190/32 +195.206.180.3/32 +195.206.180.4/32 +195.206.180.131/32 +195.206.180.132/32 +195.206.183.46/32 +195.206.183.51/32 +195.206.183.56/32 +195.206.183.61/32 +195.206.183.66/32 +195.206.183.71/32 +195.206.183.76/32 +195.206.183.81/32 +195.206.183.86/32 +195.206.183.91/32 +195.206.183.96/32 +195.206.183.101/32 +195.206.183.106/32 +195.206.183.111/32 +195.206.183.116/32 +195.206.183.121/32 +195.206.183.126/32 +195.206.183.131/32 +195.206.183.136/32 +195.206.183.141/32 +195.206.183.146/32 +195.206.183.151/32 +195.206.183.156/32 +195.206.183.161/32 +195.206.183.166/32 +195.206.183.171/32 +195.206.183.176/32 +195.206.183.181/32 +195.206.183.186/32 +195.206.183.191/32 +195.206.183.196/32 +195.206.183.201/32 +195.206.183.206/32 +195.206.183.211/32 +195.206.183.215/32 +195.206.183.220/32 +195.206.183.225/32 +195.206.183.231/32 +195.206.183.235/32 +195.206.183.240/32 +195.206.183.245/32 +195.206.183.250/32 +195.216.219.121/32 +195.216.219.129/32 +195.216.219.131/32 +195.216.219.133/32 +195.216.219.135/32 +195.216.219.137/32 +195.216.219.139/32 +195.216.219.141/32 +195.216.219.143/32 +195.216.219.145/32 +195.216.219.147/32 +195.216.219.149/32 +195.216.219.151/32 +195.216.219.153/32 +195.216.219.155/32 +195.234.127.3/32 +195.234.127.4/32 +195.242.213.147/32 +195.242.213.148/32 +195.242.213.152/31 +196.196.53.19/32 +196.196.53.20/31 +196.196.53.23/32 +196.196.53.24/31 +196.196.53.26/32 +196.196.53.28/32 +196.196.53.30/32 +196.196.53.35/32 +196.196.53.36/32 +196.196.53.39/32 +196.196.53.40/30 +196.196.53.44/32 +196.196.53.46/32 +196.196.122.227/32 +196.196.122.228/32 +196.196.203.202/32 +196.196.232.3/32 +196.197.28.130/31 +196.197.28.132/30 +196.197.28.136/30 +196.197.28.140/31 +196.197.28.142/32 +196.240.54.3/32 +196.240.54.11/32 +196.240.54.19/32 +196.240.54.35/32 +196.240.54.43/32 +196.240.54.51/32 +196.240.54.59/32 +196.240.54.114/31 +196.240.54.116/30 +196.240.54.120/31 +196.240.54.122/32 +196.240.60.66/31 +196.240.60.68/32 +196.244.192.202/31 +196.244.192.204/32 +196.244.192.226/31 +196.244.192.228/30 +196.244.192.232/31 +196.244.194.2/31 +196.244.194.4/32 +196.245.151.210/31 +196.245.151.212/30 +196.245.151.216/31 +196.245.151.218/32 +196.247.24.11/32 +196.247.24.19/32 +196.247.50.3/32 +196.247.50.35/32 +196.247.50.51/32 +196.247.50.59/32 +196.247.50.67/32 +197.189.202.9/32 +197.189.207.6/32 +197.242.155.133/32 +197.242.155.197/32 +197.242.156.53/32 +197.242.156.56/32 +197.242.157.235/32 +197.242.157.255/32 +197.242.159.23/32 +197.242.159.199/32 +197.242.159.229/32 +198.8.92.98/31 +198.8.92.100/32 +198.12.64.34/31 +198.12.64.36/32 +198.12.116.194/31 +198.12.116.196/32 +198.13.49.73/32 +198.16.66.99/32 +198.16.66.100/31 +198.16.66.123/32 +198.16.66.124/31 +198.16.66.139/32 +198.16.66.140/31 +198.16.66.155/32 +198.16.66.156/31 +198.16.70.51/32 +198.16.70.52/31 +198.16.76.27/32 +198.16.76.28/31 +198.16.76.67/32 +198.16.76.68/31 +198.16.78.43/32 +198.16.78.44/31 +198.44.137.19/32 +198.44.137.20/31 +198.44.137.27/32 +198.44.137.28/31 +198.44.137.35/32 +198.44.137.36/31 +198.44.137.43/32 +198.44.137.44/31 +198.44.138.19/32 +198.44.138.20/31 +198.44.138.27/32 +198.44.138.35/32 +198.44.138.36/31 +198.44.138.43/32 +198.54.129.67/32 +198.54.129.68/31 +198.54.129.75/32 +198.54.129.76/31 +198.54.131.203/32 +198.54.131.204/31 +198.54.131.211/32 +198.54.131.219/32 +198.54.131.220/31 +198.54.133.227/32 +198.54.133.228/31 +198.54.133.235/32 +198.54.133.236/31 +198.55.125.194/32 +198.57.44.51/32 +198.57.46.164/32 +198.57.47.39/32 +198.57.47.244/32 +198.96.95.130/32 +198.96.95.194/32 +198.98.59.74/32 +198.147.22.186/32 +198.147.22.225/32 +198.147.22.227/32 +198.199.65.78/32 +198.199.74.67/32 +198.199.75.31/32 +198.199.89.186/32 +198.199.121.92/32 +198.211.101.138/32 +198.211.105.89/32 +199.189.26.130/32 +199.217.104.226/31 +199.217.104.228/32 +199.217.105.226/31 +199.217.105.228/32 +199.247.14.28/32 +199.254.199.163/32 +200.58.126.84/32 +201.131.126.23/32 +201.131.126.28/32 +202.43.6.34/31 +202.165.70.19/32 +202.165.70.27/32 +202.165.70.35/32 +202.165.70.43/32 +202.165.70.51/32 +202.165.70.59/32 +202.165.70.67/32 +202.165.70.75/32 +202.168.155.166/32 +203.10.99.11/32 +203.10.99.27/32 +203.10.99.35/32 +203.10.99.43/32 +203.10.99.51/32 +203.10.99.59/32 +203.10.99.67/32 +203.10.99.75/32 +203.10.99.83/32 +203.10.99.91/32 +203.10.99.99/32 +203.10.99.107/32 +203.10.99.115/32 +203.10.99.123/32 +203.10.99.131/32 +203.10.99.139/32 +203.10.99.147/32 +203.10.99.155/32 +203.10.99.163/32 +203.10.99.171/32 +203.10.99.179/32 +203.10.99.187/32 +203.10.99.195/32 +203.10.99.203/32 +203.17.245.213/32 +203.27.106.131/32 +203.27.106.139/32 +203.27.106.147/32 +203.27.106.155/32 +203.27.106.163/32 +203.27.106.171/32 +203.27.106.179/32 +204.27.60.133/32 +204.44.112.66/32 +205.132.47.1/32 +205.142.240.210/32 +206.189.20.28/32 +206.189.24.65/32 +206.189.24.101/32 +206.189.28.230/32 +206.189.37.255/32 +206.189.180.24/32 +206.189.180.56/32 +206.189.186.56/32 +206.189.196.186/32 +206.217.134.114/31 +206.217.134.116/32 +206.217.139.18/31 +206.217.139.20/32 +206.223.161.47/32 +206.223.183.13/32 +206.223.183.16/32 +206.223.183.21/32 +207.148.17.152/32 +207.148.18.191/32 +207.148.20.197/32 +207.148.24.201/32 +207.148.76.199/32 +207.148.83.60/32 +207.148.111.252/32 +207.154.242.99/32 +207.154.248.186/32 +207.154.250.41/32 +207.154.250.104/32 +207.154.250.218/32 +207.154.252.154/32 +207.211.214.22/32 +207.211.214.24/32 +207.211.214.26/32 +207.244.71.79/32 +207.244.71.80/31 +207.244.71.82/32 +207.244.71.84/32 +207.244.89.161/32 +207.244.89.162/32 +207.244.89.166/32 +207.246.82.198/32 +207.246.85.229/32 +207.246.86.81/32 +207.246.87.170/32 +207.246.91.208/32 +207.246.94.16/32 +207.246.122.76/32 +208.76.222.251/32 +208.76.223.121/32 +208.78.41.130/31 +208.78.41.132/32 +208.78.41.146/32 +208.78.41.162/31 +208.78.41.164/32 +208.85.16.221/32 +208.85.19.103/32 +208.85.23.3/32 +208.85.23.156/32 +208.167.239.197/32 +208.167.255.74/32 +208.167.255.118/32 +208.167.255.211/32 +209.38.201.143/32 +209.58.129.83/32 +209.58.129.88/32 +209.58.129.121/32 +209.58.129.122/32 +209.94.60.61/32 +209.94.60.162/32 +209.94.61.96/32 +209.94.61.237/32 +209.97.181.2/32 +209.97.181.124/32 +209.97.181.172/32 +209.97.181.191/32 +209.97.181.215/32 +209.97.181.245/32 +209.97.181.253/32 +209.97.185.104/32 +209.97.185.159/32 +209.97.189.102/32 +209.97.189.189/32 +209.127.204.9/32 +209.127.204.11/32 +209.127.204.12/30 +209.127.204.16/30 +209.127.204.20/31 +209.127.204.22/32 +209.127.204.68/32 +209.127.204.78/32 +209.127.204.248/32 +209.127.204.250/31 +209.141.46.169/32 +209.250.226.255/32 +209.250.230.247/32 +209.250.231.179/32 +209.250.232.8/32 +210.92.18.173/32 +210.217.18.66/32 +210.217.18.72/32 +210.217.18.75/32 +211.197.11.5/32 +211.197.11.10/32 +211.197.11.14/32 +212.8.243.7/32 +212.8.243.129/32 +212.8.250.216/32 +212.8.250.234/32 +212.8.252.66/32 +212.8.253.137/32 +212.8.253.154/32 +212.30.60.1/32 +212.30.60.2/31 +212.30.60.4/30 +212.30.60.8/32 +212.80.214.2/32 +212.92.104.193/32 +212.92.104.194/31 +212.92.104.196/30 +212.92.104.200/30 +212.92.104.209/32 +212.92.104.210/31 +212.92.104.212/30 +212.92.104.216/30 +212.92.104.225/32 +212.92.104.226/31 +212.92.104.228/30 +212.92.104.232/30 +212.92.104.241/32 +212.92.104.242/31 +212.92.104.244/30 +212.92.104.248/30 +212.102.33.98/32 +212.102.33.101/32 +212.102.33.104/32 +212.102.33.107/32 +212.102.33.115/32 +212.102.33.120/32 +212.102.35.237/32 +212.102.35.238/32 +212.102.36.130/32 +212.102.36.135/32 +212.102.36.140/32 +212.102.36.145/32 +212.102.36.150/32 +212.102.38.146/32 +212.102.38.149/32 +212.102.40.35/32 +212.102.40.40/32 +212.102.40.45/32 +212.102.40.50/32 +212.102.40.54/31 +212.102.40.57/32 +212.102.40.58/32 +212.102.44.35/32 +212.102.44.38/32 +212.102.44.50/32 +212.102.44.52/32 +212.102.44.54/32 +212.102.44.56/32 +212.102.44.58/32 +212.102.44.129/32 +212.102.44.131/32 +212.102.44.133/32 +212.102.44.135/32 +212.102.44.137/32 +212.102.44.161/32 +212.102.44.162/31 +212.102.44.164/30 +212.102.44.168/31 +212.102.44.170/32 +212.102.45.2/32 +212.102.45.7/32 +212.102.45.12/32 +212.102.45.17/32 +212.102.45.22/32 +212.102.45.27/32 +212.102.45.32/32 +212.102.45.37/32 +212.102.45.42/32 +212.102.45.47/32 +212.102.45.52/32 +212.102.45.57/32 +212.102.45.62/32 +212.102.45.67/32 +212.102.45.72/32 +212.102.45.77/32 +212.102.45.82/32 +212.102.45.87/32 +212.102.45.92/32 +212.102.45.97/32 +212.102.45.102/32 +212.102.45.105/32 +212.102.45.108/32 +212.102.45.111/32 +212.102.45.114/32 +212.102.45.117/32 +212.102.45.120/32 +212.102.45.122/32 +212.102.46.18/32 +212.102.46.21/32 +212.102.46.24/32 +212.102.46.26/32 +212.102.47.2/32 +212.102.47.5/32 +212.102.47.8/32 +212.102.47.11/32 +212.102.47.14/32 +212.102.47.17/32 +212.102.47.20/32 +212.102.47.23/32 +212.102.47.26/32 +212.102.47.29/32 +212.102.47.32/32 +212.102.47.35/32 +212.102.47.38/32 +212.102.47.41/32 +212.102.47.44/32 +212.102.47.47/32 +212.102.47.50/32 +212.102.47.53/32 +212.102.47.56/32 +212.102.47.59/32 +212.102.47.62/32 +212.102.47.65/32 +212.102.47.68/32 +212.102.47.71/32 +212.102.47.74/32 +212.102.47.77/32 +212.102.47.80/32 +212.102.47.83/32 +212.102.47.86/32 +212.102.47.89/32 +212.102.47.92/32 +212.102.47.95/32 +212.102.47.98/32 +212.102.47.101/32 +212.102.47.104/32 +212.102.47.107/32 +212.102.47.110/32 +212.102.47.113/32 +212.102.47.116/32 +212.102.47.119/32 +212.102.47.122/32 +212.102.48.66/32 +212.102.48.69/32 +212.102.48.72/32 +212.102.48.75/32 +212.102.50.66/32 +212.102.50.71/32 +212.102.50.76/32 +212.102.50.81/32 +212.102.50.86/32 +212.102.50.91/32 +212.102.50.96/32 +212.102.50.101/32 +212.102.50.106/32 +212.102.50.111/32 +212.102.50.116/32 +212.102.50.119/32 +212.102.50.122/32 +212.102.50.194/32 +212.102.50.197/32 +212.102.50.200/32 +212.102.50.203/32 +212.102.50.206/32 +212.102.50.209/32 +212.102.50.212/32 +212.102.51.55/32 +212.102.51.82/32 +212.102.51.110/32 +212.102.51.115/32 +212.102.51.194/32 +212.102.51.197/32 +212.102.51.200/32 +212.102.51.203/32 +212.102.51.206/32 +212.102.51.209/32 +212.102.51.212/32 +212.102.51.215/32 +212.102.51.218/32 +212.102.51.241/32 +212.102.51.247/32 +212.102.54.98/32 +212.102.54.103/32 +212.102.54.108/32 +212.102.54.113/32 +212.102.54.118/32 +212.102.55.97/32 +212.102.55.98/31 +212.102.55.101/32 +212.102.55.102/31 +212.102.55.104/31 +212.102.55.106/32 +212.102.55.108/31 +212.102.55.110/32 +212.102.55.112/30 +212.102.55.118/32 +212.102.55.120/32 +212.102.63.1/32 +212.102.63.2/31 +212.102.63.31/32 +212.102.63.32/31 +212.102.63.61/32 +212.102.63.62/31 +212.102.63.92/32 +212.103.48.66/32 +212.103.48.82/32 +212.103.48.163/32 +212.103.48.171/32 +212.103.49.66/31 +212.103.49.68/32 +212.103.50.43/32 +212.103.50.51/32 +212.129.41.135/32 +212.129.42.210/32 +212.129.43.241/32 +212.129.44.236/32 +212.129.45.224/32 +212.235.66.72/29 +213.152.162.214/32 +213.152.162.218/32 +213.152.162.222/32 +213.152.162.226/32 +213.152.162.230/32 +213.152.162.234/32 +213.152.162.238/32 +213.152.162.242/32 +213.152.162.246/32 +213.152.162.250/32 +213.152.176.251/32 +213.152.188.3/32 +213.152.188.6/32 +213.152.188.9/32 +213.152.188.12/32 +213.152.188.15/32 +213.152.188.18/32 +213.152.188.21/32 +213.152.188.24/32 +213.152.188.27/32 +213.152.188.30/32 +213.152.188.33/32 +213.152.188.36/32 +213.152.188.67/32 +213.152.188.70/32 +213.152.188.73/32 +213.152.188.76/32 +213.152.188.79/32 +213.152.188.82/32 +213.152.188.85/32 +213.152.188.88/32 +213.152.188.91/32 +213.152.188.94/32 +213.152.188.97/32 +213.152.188.100/32 +213.152.188.203/32 +213.152.188.204/32 +213.152.188.227/32 +213.152.188.228/32 +213.152.188.230/32 +213.152.188.232/32 +213.152.188.234/32 +213.152.188.236/32 +213.152.188.239/32 +213.152.188.241/32 +213.152.188.243/32 +213.152.188.245/32 +213.152.188.247/32 +213.152.188.249/32 +213.183.54.29/32 +213.183.54.51/32 +213.183.54.62/32 +213.183.54.144/32 +213.183.54.171/32 +213.183.55.47/32 +213.183.55.97/32 +213.183.55.184/32 +213.183.56.18/32 +213.183.56.48/32 +213.183.56.166/32 +213.183.56.186/32 +213.183.56.212/32 +213.183.57.61/32 +213.183.57.111/32 +213.183.57.144/32 +213.183.57.157/32 +213.183.57.162/32 +213.193.98.43/32 +213.202.99.98/32 +213.202.254.155/32 +213.207.130.34/31 +213.207.130.36/32 +213.207.132.2/31 +213.207.132.4/32 +213.232.87.49/32 +213.232.87.50/32 +213.232.87.57/32 +213.232.87.59/32 +213.232.87.61/32 +213.232.87.63/32 +213.232.87.65/32 +213.232.87.67/32 +213.232.87.69/32 +213.232.87.71/32 +213.232.87.73/32 +213.232.87.75/32 +213.232.87.77/32 +213.232.87.79/32 +213.232.87.81/32 +213.232.87.83/32 +213.232.87.85/32 +213.232.87.87/32 +213.232.87.89/32 +213.232.87.91/32 +213.232.87.93/32 +213.232.87.95/32 +213.232.87.97/32 +213.232.87.99/32 +213.232.87.101/32 +213.232.87.103/32 +213.232.87.105/32 +213.232.87.107/32 +213.232.87.109/32 +213.232.87.111/32 +213.232.87.113/32 +213.232.87.115/32 +213.232.87.117/32 +213.232.87.119/32 +213.232.87.121/32 +213.232.87.123/32 +213.232.87.125/32 +213.232.87.127/32 +213.232.87.129/32 +213.232.87.131/32 +213.232.87.133/32 +213.232.87.135/32 +213.232.87.137/32 +213.232.87.141/32 +213.232.87.142/32 +213.232.87.145/32 +213.232.87.146/32 +213.232.87.170/31 +213.232.87.174/31 +213.232.87.178/32 +213.232.87.180/32 +213.232.87.182/32 +213.232.87.184/32 +213.232.87.186/32 +213.232.87.188/32 +213.232.87.190/32 +213.232.87.192/32 +213.232.87.194/32 +213.232.87.196/32 +213.232.87.198/32 +213.232.87.200/32 +213.232.87.202/32 +213.232.87.204/32 +213.232.87.206/32 +213.232.87.208/32 +213.232.87.210/32 +213.232.87.212/32 +213.232.87.214/32 +213.232.87.219/32 +213.232.87.227/32 +213.232.87.229/32 +213.232.87.231/32 +213.232.87.233/32 +216.128.178.11/32 +216.155.134.250/32 +216.155.139.165/32 +216.238.67.146/32 +216.238.71.4/32 +216.238.72.140/32 +216.238.73.42/32 +216.238.73.153/32 +216.238.78.57/32 +216.238.79.236/32 +216.238.84.17/32 +216.238.85.124/32 +216.238.102.123/32 +216.238.115.202/32 +216.238.117.88/32 +216.238.117.143/32 +217.12.210.32/32 +217.12.210.35/32 +217.23.3.76/32 +217.64.127.219/32 +217.69.2.250/32 +217.69.3.51/32 +217.69.10.25/32 +217.69.12.176/32 +217.69.14.135/32 +217.69.15.127/32 +217.114.38.2/32 +217.114.38.10/32 +217.114.38.18/32 +217.114.38.26/32 +217.114.38.34/32 +217.114.38.42/32 +217.114.38.50/32 +217.114.38.58/32 +217.114.38.66/32 +217.114.38.74/32 +217.114.38.82/32 +217.114.38.90/32 +217.114.38.98/32 +217.114.38.106/32 +217.114.38.114/32 +217.114.38.122/32 +217.114.38.130/32 +217.114.38.138/32 +217.114.38.146/32 +217.114.38.154/32 +217.114.38.162/32 +217.114.38.170/32 +217.114.38.178/32 +217.114.38.186/32 +217.114.38.194/32 +217.114.38.202/32 +217.114.38.210/32 +217.114.38.218/32 +217.114.38.226/32 +217.114.38.233/32 +217.114.38.240/32 +217.114.38.247/32 +217.138.192.27/32 +217.138.192.35/32 +217.138.192.43/32 +217.138.192.51/32 +217.138.192.59/32 +217.138.192.67/32 +217.138.192.75/32 +217.138.192.83/32 +217.138.192.91/32 +217.138.192.99/32 +217.138.193.98/31 +217.138.193.100/30 +217.138.193.104/31 +217.138.193.106/32 +217.138.193.179/32 +217.138.193.180/30 +217.138.193.185/32 +217.138.193.186/31 +217.138.193.188/32 +217.138.193.190/32 +217.138.194.114/31 +217.138.194.116/32 +217.138.197.43/32 +217.138.197.51/32 +217.138.197.59/32 +217.138.197.67/32 +217.138.197.75/32 +217.138.197.235/32 +217.138.197.243/32 +217.138.197.251/32 +217.138.198.155/32 +217.138.198.163/32 +217.138.198.171/32 +217.138.198.179/32 +217.138.198.187/32 +217.138.198.195/32 +217.138.198.203/32 +217.138.198.211/32 +217.138.198.219/32 +217.138.198.227/32 +217.138.198.235/32 +217.138.198.246/32 +217.138.199.3/32 +217.138.199.11/32 +217.138.199.19/32 +217.138.199.27/32 +217.138.199.35/32 +217.138.199.43/32 +217.138.199.51/32 +217.138.202.75/32 +217.138.202.83/32 +217.138.202.91/32 +217.138.202.99/32 +217.138.202.107/32 +217.138.202.115/32 +217.138.202.123/32 +217.138.202.131/32 +217.138.202.139/32 +217.138.202.147/32 +217.138.203.219/32 +217.138.206.35/32 +217.138.206.43/32 +217.138.206.210/31 +217.138.206.212/32 +217.138.207.131/32 +217.138.207.139/32 +217.138.207.147/32 +217.138.207.155/32 +217.138.207.163/32 +217.138.207.171/32 +217.138.207.179/32 +217.138.207.187/32 +217.138.207.195/32 +217.138.207.203/32 +217.138.208.91/32 +217.138.208.139/32 +217.138.208.147/32 +217.138.208.155/32 +217.138.208.163/32 +217.138.208.171/32 +217.138.208.179/32 +217.138.208.187/32 +217.138.208.211/32 +217.138.208.219/32 +217.138.209.18/32 +217.138.209.51/32 +217.138.209.59/32 +217.138.209.67/32 +217.138.209.75/32 +217.138.209.83/32 +217.138.216.98/31 +217.138.216.100/30 +217.138.216.104/29 +217.138.216.112/29 +217.138.216.120/30 +217.138.216.124/31 +217.138.216.126/32 +217.138.216.130/31 +217.138.216.132/30 +217.138.216.136/29 +217.138.216.144/29 +217.138.216.152/30 +217.138.216.156/31 +217.138.216.158/32 +217.138.216.162/31 +217.138.216.164/30 +217.138.216.168/30 +217.138.216.172/31 +217.138.216.174/32 +217.138.217.50/31 +217.138.217.52/32 +217.138.217.210/31 +217.138.217.212/32 +217.138.218.179/32 +217.138.218.187/32 +217.138.218.195/32 +217.138.219.35/32 +217.138.219.163/32 +217.138.219.171/32 +217.138.222.27/32 +217.138.222.115/32 +217.138.222.123/32 +217.138.222.131/32 +217.138.222.147/32 +217.138.222.163/32 +217.138.222.171/32 +217.138.222.179/32 +217.138.222.187/32 +217.138.222.195/32 +217.138.222.203/32 +217.138.222.211/32 +217.138.222.219/32 +217.138.222.227/32 +217.138.222.235/32 +217.138.254.50/31 +217.138.254.52/32 +217.138.254.66/32 +217.138.255.162/32 +217.138.255.178/31 +217.138.255.180/32 +217.138.255.194/32 +217.146.90.2/31 +217.146.90.6/32 +217.146.90.8/32 +217.146.92.150/32 +217.146.92.154/32 +217.146.92.158/32 +217.146.92.162/32 +217.146.92.166/32 +217.146.92.170/32 +217.146.92.174/32 +217.146.92.178/32 +217.146.92.182/32 +217.146.92.186/32 +217.146.92.190/32 +217.146.92.194/32 +217.146.92.198/32 +217.146.92.202/32 +217.146.92.206/32 +217.146.92.210/32 +217.146.92.214/32 +217.146.92.218/32 +217.146.92.222/32 +217.146.92.226/32 +217.146.92.231/32 +217.146.92.235/32 +217.146.92.239/32 +217.146.92.243/32 +217.146.92.247/32 +217.146.92.251/32 +217.148.140.150/32 +217.148.140.169/32 +217.148.140.170/31 +217.148.140.172/31 +217.148.140.174/32 +217.148.140.217/32 +217.148.140.218/31 +217.148.140.220/31 +217.148.140.222/32 +217.170.204.82/32 +217.170.204.88/32 +217.170.206.134/31 diff --git a/requirements.txt b/requirements.txt index d8590fa..ac08e66 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ boto3 argparse +requests diff --git a/update-all-web-acls.py b/update-all-web-acls.py new file mode 100644 index 0000000..670a0e4 --- /dev/null +++ b/update-all-web-acls.py @@ -0,0 +1,163 @@ +import boto3 +import argparse +import json +import os +from datetime import datetime + + +def get_client(scope, profile, region): + session = boto3.Session(profile_name=profile, region_name=region if scope == "REGIONAL" else "us-east-1") + return session.client("wafv2") + + +def list_web_acls(waf_client, scope): + web_acls = [] + next_marker = None + while True: + kwargs = {"Scope": scope} + if next_marker: + kwargs["NextMarker"] = next_marker + response = waf_client.list_web_acls(**kwargs) + web_acls.extend(response["WebACLs"]) + next_marker = response.get("NextMarker") + if not next_marker: + break + return web_acls + + +def convert_bytes(obj): + if isinstance(obj, bytes): + return obj.decode("utf-8", errors="replace") + if isinstance(obj, dict): + return {k: convert_bytes(v) for k, v in obj.items()} + if isinstance(obj, list): + return [convert_bytes(i) for i in obj] + return obj + + +def download_acl(waf_client, name, id, scope, outdir="backups"): + os.makedirs(outdir, exist_ok=True) + response = waf_client.get_web_acl(Name=name, Id=id, Scope=scope) + with open(f"{outdir}/{name}_{datetime.now().isoformat()}.json", "w") as f: + json.dump(convert_bytes(response), f, indent=2) + return response + + +def modify_rule_group(rule): + # Modify only AWS-AWSManagedRulesCommonRuleSet + statement = rule.get("Statement", {}).get("ManagedRuleGroupStatement") + if statement and statement["Name"] == "AWSManagedRulesCommonRuleSet": + print(f" → Updating rule: {rule['Name']}") + rule["Statement"]["ManagedRuleGroupStatement"]["ScopeDownStatement"] = { + "NotStatement": { + "Statement": { + "AndStatement": { + "Statements": [ + { + "ByteMatchStatement": { + "SearchString": "AWSALB", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "IncludedCookies": ["AWSALB"] + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [{"Priority": 0, "Type": "NONE"}], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "AWSALBCORS", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "IncludedCookies": ["AWSALBCORS"] + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [{"Priority": 0, "Type": "NONE"}], + "PositionalConstraint": "EXACTLY" + } + }, + { + "ByteMatchStatement": { + "SearchString": "SSESS", + "FieldToMatch": { + "Cookies": { + "MatchPattern": { + "All": {} + }, + "MatchScope": "KEY", + "OversizeHandling": "NO_MATCH" + } + }, + "TextTransformations": [{"Priority": 0, "Type": "NONE"}], + "PositionalConstraint": "STARTS_WITH" + } + } + ] + } + } + } + } + + +def update_web_acl(waf_client, acl_summary, scope): + name = acl_summary["Name"] + id = acl_summary["Id"] + print(f"\nšŸ“¦ Processing WebACL: {name}") + + acl_data = download_acl(waf_client, name, id, scope) + rules = acl_data["WebACL"]["Rules"] + description = acl_data.get("Description") or "Updated via script" + updated = False + + for rule in rules: + if rule.get("Statement", {}).get("ManagedRuleGroupStatement", {}).get("Name") == "AWSManagedRulesCommonRuleSet": + modify_rule_group(rule) + updated = True + + if updated: + print(f" šŸ”§ Updating WebACL: {name}") + waf_client.update_web_acl( + Name=name, + Id=id, + Scope=scope, + DefaultAction=acl_data["WebACL"]["DefaultAction"], + Description=description, + Rules=rules, + LockToken=acl_data["LockToken"], + VisibilityConfig=acl_data["WebACL"]["VisibilityConfig"] + ) + else: + print(" āš ļø No matching rule found to update.") + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--profile", required=True, help="AWS CLI profile name") + parser.add_argument("--region", required=False, help="AWS region (required for REGIONAL)") + parser.add_argument("--scope", required=True, choices=["CLOUDFRONT", "REGIONAL"]) + parser.add_argument("--webacl-name", required=False, help="WebACL name to update (optional)") + args = parser.parse_args() + + if args.scope == "REGIONAL" and not args.region: + parser.error("--region is required when --scope is REGIONAL") + + waf_client = get_client(args.scope, args.profile, args.region) + + web_acls = list_web_acls(waf_client, args.scope) + for acl in web_acls: + if args.webacl_name and acl["Name"] != args.webacl_name: + continue + update_web_acl(waf_client, acl, args.scope) + + +if __name__ == "__main__": + main()