#
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructions.
# See for detailed information.
# In particular, see
#
# for a discussion of each configuration directive.
#
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
# consult the online docs. You have been warned.
#
# The configuration directives are grouped into three basic sections:
# 1. Directives that control the operation of the Apache server process as a
# whole (the 'global environment').
# 2. Directives that define the parameters of the 'main' or 'default' server,
# which responds to requests that aren't handled by a virtual host.
# These directives also provide default values for the settings
# of all virtual hosts.
# 3. Settings for virtual hosts, which allow Web requests to be sent to
# different IP addresses or hostnames and have them handled by the
# same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "/etc/httpd" will be interpreted by the
# server as "/etc/httpd/logs/foo.log".
#
### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#
#
# Don't give away too much information about all the subcomponents
# we are running. Comment out this line if you don't mind remote sites
# finding out what major optional modules you are running
ServerTokens OS
#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE! If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation
# (available at );
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
ServerRoot "/etc/httpd"
#
# PidFile: The file in which the server should record its process
# identification number when it starts. Note the PIDFILE variable in
# /etc/sysconfig/httpd must be set appropriately if this location is
# changed.
#
PidFile run/httpd.pid
#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 60
#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive Off
#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100
#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15
##
## Server-Pool Size Regulation (MPM specific)
##
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
StartServers 8
MinSpareServers 5
MaxSpareServers 20
ServerLimit 256
MaxClients 256
MaxRequestsPerChild 4000
# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
StartServers 4
MaxClients 300
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
Listen 194.85.70.32:80
#Listen 80
#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_alias_module modules/mod_authn_alias.so
LoadModule authn_anon_module modules/mod_authn_anon.so
LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
LoadModule include_module modules/mod_include.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule logio_module modules/mod_logio.so
LoadModule env_module modules/mod_env.so
LoadModule ext_filter_module modules/mod_ext_filter.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule expires_module modules/mod_expires.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule info_module modules/mod_info.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule substitute_module modules/mod_substitute.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule cache_module modules/mod_cache.so
LoadModule suexec_module modules/mod_suexec.so
LoadModule disk_cache_module modules/mod_disk_cache.so
LoadModule cgi_module modules/mod_cgi.so
#
# The following modules are not loaded by default:
#
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#######################################################
#######################################################
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
#
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received.
#
# The path to the end user account 'public_html' directory must be
# accessible to the webserver userid. This usually means that ~userid
# must have permissions of 711, ~userid/public_html must have permissions
# of 755, and documents contained therein must be world-readable.
# Otherwise, the client will only receive a "403 Forbidden" message.
#
# See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
#
#
# UserDir is disabled by default since it can confirm the presence
# of a username on the system (depending on home directory
# permissions).
#
UserDir disabled
#
# To enable requests to /~user/ to serve the user's public_html
# directory, remove the "UserDir disabled" line above, and uncomment
# the following line instead:
#
#UserDir public_html
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
#
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
#
# Order allow,deny
# Allow from all
#
#
# Order deny,allow
# Deny from all
#
#
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents. The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex index.html index.html.var
#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives. See also the AllowOverride
# directive.
#
AccessFileName .htaccess
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
Order allow,deny
Deny from all
# Satisfy All
#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
TypesConfig /etc/mime.types
#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value. If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain
#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
# MIMEMagicFile /usr/share/magic.mime
MIMEMagicFile conf/magic
#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off
#
# EnableMMAP: Control whether memory-mapping is used to deliver
# files (assuming that the underlying OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems. On some systems, turning it off (regardless of
# filesystem) can improve performance; for details, please see
# http://httpd.apache.org/docs/2.2/mod/core.html#enablemmap
#
#EnableMMAP off
#
# EnableSendfile: Control whether the sendfile kernel support is
# used to deliver files (assuming that the OS supports it).
# The default is on; turn this off if you serve from NFS-mounted
# filesystems. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#enablesendfile
#
#EnableSendfile off
#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a
# container, that host's errors will be logged there and not here.
#
ErrorLog /var/log/httpd/error_log
#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
# "combinedio" includes actual counts of actual bytes received (%I) and sent (%O); this
# requires the mod_logio module to be loaded.
#LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a
# container, they will be logged here. Contrariwise, if you *do*
# define per- access logfiles, transactions will be
# logged therein and *not* in this file.
#
#CustomLog logs/access_log common
#
# If you would like to have separate agent and referer logfiles, uncomment
# the following directives.
#
#CustomLog logs/referer_log referer
#CustomLog logs/agent_log agent
#
# For a single logfile with access, agent, and referer information
# (Combined Logfile Format), use the following directive:
#
CustomLog logs/access_log combined
#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (internal error documents, FTP directory
# listings, mod_status and mod_info output etc., but not CGI generated
# documents or custom error documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of: On | Off | EMail
#
ServerSignature On
#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
# We include the /icons/ alias for FancyIndexed directory listings. If you
# do not use FancyIndexing, you may comment this out.
#
Alias /icons/ "/var/www/icons/"
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
#
# WebDAV module configuration section.
#
# Location of the WebDAV lock database.
DAVLockDB /var/lib/dav/lockdb
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
# ScriptAlias / cgi-bin/ "/var/www/cgi-bin/
ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"
#
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
#
AllowOverride None
# Options None
Options ExecCGI
Order allow,deny
Allow from all
#
# Redirect allows you to tell clients about documents which used to exist in
# your server's namespace, but do not anymore. This allows you to tell the
# clients where to look for the relocated document.
# Example:
# Redirect permanent /foo http://www.example.com/bar
#
# Directives controlling the display of server-generated directory listings.
#
#
# IndexOptions: Controls the appearance of server-generated directory
# listings.
#
IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable Charset=UTF-8
#
# AddIcon* directives tell the server which icon to show for different
# files or filename extensions. These are only displayed for
# FancyIndexed directories.
#
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
#
# DefaultIcon is which icon to show for files which do not have an icon
# explicitly set.
#
DefaultIcon /icons/unknown.gif
#
# AddDescription allows you to place a short description after a file in
# server-generated indexes. These are only displayed for FancyIndexed
# directories.
# Format: AddDescription "description" filename
#
#AddDescription "GZIP compressed document" .gz
#AddDescription "tar archive" .tar
#AddDescription "GZIP compressed tar archive" .tgz
#
# ReadmeName is the name of the README file the server will look for by
# default, and append to directory listings.
#
# HeaderName is the name of a file which should be prepended to
# directory indexes.
ReadmeName README.html
HeaderName HEADER.html
#
# IndexIgnore is a set of filenames which directory indexing should ignore
# and not include in the listing. Shell-style wildcarding is permitted.
#
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
#
# DefaultLanguage and AddLanguage allows you to specify the language of
# a document. You can then use content negotiation to give a browser a
# file in a language the user can understand.
#
# Specify a default language. This means that all data
# going out without a specific language tag (see below) will
# be marked with this one. You probably do NOT want to set
# this unless you are sure it is correct for all cases.
#
# * It is generally better to not mark a page as
# * being a certain language than marking it with the wrong
# * language!
#
# DefaultLanguage nl
#
# Note 1: The suffix does not have to be the same as the language
# keyword --- those with documents in Polish (whose net-standard
# language code is pl) may ponse-1.0
#
# The following directive disables redirects on non-GET requests for
# a directory that does not include the trailing slash. This fixes a
# problem with Microsoft WebFolders which does not appropriately handle
# redirects for folders with DAV methods.
# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
#
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "MS FrontPage" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
BrowserMatch "^gnome-vfs/1.0" redirect-carefully
BrowserMatch "^XML Spy" redirect-carefully
BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Change the ".example.com" to match your domain to enable.
#
#
# SetHandler server-status
# Order deny,allow
# Deny from all
# Allow from .example.com
#
#
# Allow remote server configuration reports, with the URL of
# http://servername/server-info (requires that mod_info.c be loaded).
# Change the ".example.com" to match your domain to enable.
#
#
# SetHandler server-info
# Order deny,allow
# Deny from all
# Allow from .example.com
#
#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
#
#ProxyRequests On
#
#
# Order deny,allow
# Deny from all
# Allow from .example.com
#
#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
#
#ProxyVia On
#
# To enable a cache of proxied content, uncomment the following lines.
# See http://httpd.apache.org/docs/2.2/mod/mod_cache.html for more details.
#
#
# CacheEnable disk /
# CacheRoot "/var/cache/mod_proxy"
#
#
#
# End of proxy directives.
### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
#
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
NameVirtualHost 194.85.70.32
# Where do we put the lock and pif files?
LockFile "/var/lock/httpd.lock"
#CoreDumpDirectory "/etc/httpd"
#NameVirtualHost *:80
#
# NOTE: NameVirtualHost cannot be used without a port specifier
# (e.g. :80) if mod_ssl is being used, due to the nature of the
# SSL protocol.
#
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#
# ServerAdmin webmaster@dummy-host.example.com
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#
ServerAdmin semenov@itep.ru
DirectoryIndex index.html
ServerName saturn.itep.ru
DocumentRoot /home/httpd/htdocs/saturn
Options ExecCGI
AllowOverride none
ServerAdmin semenov@itep.ru
ServerName store.in.ru
ServerAlias store
DirectoryIndex index.shtml
DocumentRoot /home/httpd/htdocs/store
ServerAdmin semenov@itep.ru
DocumentRoot /home/httpd/htdocs/elics/html
ServerName elics.in.ru
# CharsetSourceEnc koi8-r
ServerAdmin netmaster@itep.ru
ServerName book.itep.ru
ServerAlias book
DocumentRoot /home/httpd/htdocs/book/result
ServerAdmin netmaster@itep.ru
ServerName knowtest.itep.ru
ServerAlias knowtest
DocumentRoot /home/httpd/htdocs/book/tester
DirectoryIndex tes.htm
DocumentRoot "/home/httpd/htdocs/saturn"
ServerName saturn.itep.ru
DirectoryIndex index.shtml
ServerAdmin semenov@itep.ru
ErrorLog /var/log/httpd/error_log
TransferLog /var/log/httpd/access_log
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
Options FollowSymLinks
AllowOverride None
Options Indexes FollowSymLinks MultiViews
Options +Includes
AllowOverride None
Order allow,deny
Allow from all
### 2019-5-9 1:0:1 3
deny from 222.186.138.65
### 2019-5-8 3:40:1 3
deny from 116.255.164.149
### 2019-5-7 18:40:1 3
deny from 103.207.37.189
### 2019-5-7 10:40:1 3
deny from 112.245.241.53
### 2019-5-6 14:0:2 3
deny from 103.85.85.98
### 2019-5-6 1:40:1 3
deny from 60.215.46.188
### 2019-5-5 14:40:1 3
deny from 60.169.77.107
### 2019-5-5 14:40:1 4
deny from 91.246.163.240
### 2019-5-5 0:40:1 3
deny from 45.127.97.48
### 2019-5-4 10:40:1 3
deny from 171.211.182.138
### 2019-5-4 5:40:1 4
deny from 123.206.67.103
### 2019-5-3 1:40:1 3
deny from 118.24.111.132
### 2019-5-2 10:0:1 4
deny from 132.232.181.184
### 2019-4-30 7:0:1 4
deny from 202.120.51.237
### 2019-4-30 6:40:1 3
deny from 183.131.85.53
### 2019-4-29 13:40:1 3
deny from 23.252.165.109
### 2019-4-29 11:40:1 3
deny from 125.35.24.86
### 2019-4-29 2:40:1 3
deny from 125.119.55.27
### 2019-4-28 4:40:1 3
deny from 125.121.134.131
### 2019-4-27 12:40:1 4
deny from 103.55.25.121
### 2019-4-26 21:40:1 3
deny from 115.199.239.196
### 2019-4-26 9:40:1 4
deny from 172.81.225.95
### 2019-4-26 4:40:1 3
deny from 118.24.221.245
### 2019-4-26 3:40:1 3
deny from 122.114.146.180
### 2019-4-25 20:40:1 3
deny from 122.247.179.178
### 2019-4-25 15:40:1 4
deny from 111.230.235.56
### 2019-4-25 1:40:1 3
deny from 117.87.152.69
# point of Deny inclusions ######################################
### 2019-4-20 17:40:1 3
deny from 222.186.57.142
### 2019-4-20 10:40:1 3
deny from 122.247.184.187
### 2019-4-19 17:40:1 3
deny from 123.133.161.68
### 2019-4-19 8:40:1 3
deny from 123.163.150.12
### 2019-4-18 19:40:1 3
deny from 183.156.244.193
### 2019-4-18 10:0:1 3
deny from 211.22.220.25
### 2019-4-17 23:0:1 3
deny from 222.186.20.85
### 2019-4-17 20:40:1 3
deny from 171.80.157.191
### 2019-4-17 19:40:1 3
deny from 112.90.184.68
### 2019-4-17 18:40:1 3
deny from 222.186.10.54
### 2019-4-17 18:40:1 3
deny from 222.186.46.52
### 2019-4-17 1:40:1 3
deny from 115.204.161.43
### 2019-4-16 23:40:1 4
deny from 148.217.200.15
### 2019-4-16 8:40:2 3
deny from 115.217.36.107
### 2019-4-16 0:40:1 3
deny from 125.121.138.248
### 2019-4-16 0:40:1 4
deny from 119.42.112.211
### 2019-4-16 0:40:1 4
deny from 123.207.74.161
### 2019-4-15 22:40:1 3
deny from 125.119.66.192
### 2019-4-15 20:40:1 3
deny from 106.111.130.240
### 2019-4-15 19:40:1 4
deny from 59.188.231.5
### 2019-4-15 8:40:1 4
deny from 116.255.187.24
### 2019-4-14 21:40:1 4
deny from 118.89.248.54
### 2019-4-14 6:40:1 3
deny from 94.191.27.19
### 2019-4-14 3:40:1 3
deny from 103.243.26.74
### 2019-4-13 19:40:1 4
deny from 104.40.242.46
### 2019-4-13 8:40:1 3
deny from 112.245.184.41
### 2019-4-13 6:40:1 3
deny from 103.114.133.65
### 2019-4-13 4:40:1 3
deny from 103.207.166.61
### 2019-4-12 17:40:1 2
deny from 66.249.64.27
### 2019-4-11 10:40:1 3
deny from 162.247.99.14
### 2019-4-11 2:40:1 4
deny from 111.230.157.95
### 2019-4-10 20:40:1 4
deny from 103.213.248.97
### 2019-4-10 13:40:1 3
deny from 222.186.59.195
### 2019-4-9 13:40:1 2
deny from 66.249.79.86
### 2019-4-9 13:40:1 2
deny from 66.249.79.88
### 2019-4-9 12:0:1 3
deny from 61.174.156.135
### 2019-4-7 19:40:2 3
deny from 182.254.171.146
### 2019-4-7 19:40:2 3
deny from 49.82.147.58
### 2019-4-7 15:40:1 3
deny from 115.199.239.179
### 2019-4-7 4:40:1 4
deny from 121.201.127.120
### 2019-4-7 4:0:1 3
deny from 203.171.232.156
### 2019-4-6 21:40:2 3
deny from 222.186.134.108
### 2019-4-6 20:40:1 3
deny from 103.246.247.42
### 2019-4-6 20:40:1 4
deny from 81.108.158.210
### 2019-4-6 16:40:1 3
deny from 14.192.212.131
### 2019-4-6 4:40:1 3
deny from 119.123.130.215
### 2019-4-6 1:40:1 3
deny from 23.225.204.183
### 2019-4-5 18:0:1 3
deny from 116.255.150.21
### 2019-4-5 11:40:1 3
deny from 174.139.190.138
### 2019-4-5 11:40:1 4
deny from 70.50.174.227
### 2019-4-5 10:40:1 3
deny from 103.24.93.31
### 2019-4-4 0:0:1 4
deny from 108.36.229.128
### 2019-4-3 10:40:1 3
deny from 182.34.27.201
### 2019-4-2 10:40:1 3
deny from 116.255.155.50
### 2019-4-1 13:40:1 3
deny from 112.252.16.28
### 2019-4-1 0:40:1 3
deny from 119.7.72.11
### 2019-3-31 21:0:1 3
deny from 112.252.16.7
### 2019-3-31 6:0:1 3
deny from 183.156.241.147
### 2019-3-30 21:40:2 3
deny from 60.215.29.218
### 2019-3-30 21:0:1 3
deny from 175.154.50.179
### 2019-3-29 6:40:1 2
deny from 66.249.66.159
### 2019-3-28 19:0:1 3
deny from 112.252.28.251
### 2019-3-28 17:40:1 3
deny from 60.215.46.37
### 2019-3-28 13:0:1 3
deny from 45.64.113.211
### 2019-3-28 11:40:1 3
deny from 119.5.78.37
### 2019-3-27 21:0:1 3
deny from 112.245.155.137
### 2019-3-27 17:40:1 3
deny from 222.186.30.232
### 2019-3-27 16:40:1 3
deny from 103.243.26.236
### 2019-3-27 8:40:1 3
deny from 67.198.244.138
### 2019-3-27 6:40:1 3
deny from 27.209.91.17
### 2019-3-27 5:40:1 3
deny from 111.230.141.97
### 2019-3-26 23:40:1 3
deny from 58.218.213.188
### 2019-3-26 13:40:1 4
deny from 60.251.152.85
### 2019-3-26 12:40:1 3
deny from 112.67.221.249
### 2019-3-26 11:40:1 3
deny from 132.232.66.231
### 2019-3-26 8:40:1 3
deny from 211.149.142.222
### 2019-3-26 0:40:1 3
deny from 106.12.124.99
### 2019-3-25 15:40:1 3
deny from 119.185.24.255
### 2019-3-25 6:0:1 3
deny from 39.66.7.107
### 2019-3-24 17:40:1 3
deny from 182.45.203.178
### 2019-3-24 12:40:1 3
deny from 42.51.196.31
### 2019-3-24 7:40:1 3
deny from 222.186.10.142
### 2019-3-23 16:40:1 4
deny from 180.76.182.93
### 2019-3-23 12:40:1 3
deny from 222.186.150.234
### 2019-3-22 18:40:1 3
deny from 119.123.131.110
### 2019-3-22 18:0:2 3
deny from 123.133.163.233
### 2019-3-22 15:0:1 4
deny from 118.25.2.209
### 2019-3-22 13:40:1 3
deny from 123.129.224.43
### 2019-3-22 11:40:1 2
deny from 66.249.66.77
### 2019-3-22 6:40:1 3
deny from 103.56.53.78
### 2019-3-21 11:40:1 4
deny from 123.206.44.225
### 2019-3-21 0:40:1 3
deny from 61.160.207.166
### 2019-3-20 6:40:1 3
deny from 222.186.57.149
### 2019-3-19 16:40:1 3
deny from 123.129.224.78
### 2019-3-19 14:40:1 3
deny from 222.186.150.193
### 2019-3-19 12:0:1 3
deny from 222.186.59.44
### 2019-3-17 11:0:1 3
deny from 188.131.144.100
### 2019-3-17 0:40:1 3
deny from 181.49.106.234
### 2019-3-16 4:40:1 3
deny from 122.114.76.52
### 2019-3-15 21:40:1 4
deny from 122.114.28.27
### 2019-3-15 3:40:1 3
deny from 119.3.225.98
### 2019-3-14 11:0:1 2
deny from 66.249.66.78
### 2019-3-13 18:40:1 3
deny from 222.186.59.29
### 2019-3-13 16:40:2 3
deny from 46.173.55.27
### 2019-3-12 17:40:1 4
deny from 114.116.74.220
### 2019-3-12 15:40:1 4
deny from 34.73.179.24
### 2019-3-11 23:40:1 3
deny from 132.232.106.86
### 2019-3-11 23:0:1 4
deny from 220.132.207.222
### 2019-3-11 22:40:2 4
deny from 87.205.121.255
### 2019-3-11 21:0:1 4
deny from 193.112.81.162
### 2019-3-7 4:40:1 3
deny from 119.185.41.161
### 2019-3-6 17:40:1 3
deny from 159.192.222.153
### 2019-3-6 9:0:1 3
deny from 222.130.219.196
### 2019-3-5 12:40:1 4
deny from 103.90.224.142
### 2019-3-5 9:40:1 2
deny from 209.163.119.82
### 2019-3-4 17:0:1 4
deny from 88.225.254.156
### 2019-3-4 1:0:1 3
deny from 210.61.130.61
### 2019-3-4 1:0:1 4
deny from 210.61.130.61
### 2019-3-3 23:40:1 3
deny from 45.76.101.225
### 2019-3-3 16:40:1 3
deny from 91.224.99.241
### 2019-3-3 14:40:1 2
deny from 66.249.66.76
### 2019-3-3 13:0:1 3
deny from 112.252.18.171
### 2019-3-3 12:0:1 3
deny from 60.215.28.49
### 2019-3-2 15:40:2 4
deny from 61.253.14.191
### 2019-3-2 2:40:1 3
deny from 112.245.241.212
### 2019-2-28 9:0:1 3
deny from 222.186.160.61
### 2019-2-28 8:0:1 3
deny from 112.252.16.41
### 2019-2-27 23:0:1 4
deny from 3.121.146.242
### 2019-2-27 17:40:1 3
deny from 182.45.203.66
### 2019-2-27 5:40:1 3
deny from 222.186.57.109
### 2019-2-26 19:0:1 4
deny from 90.171.21.197
### 2019-2-25 8:40:1 3
deny from 119.186.36.62
### 2019-2-25 5:40:1 3
deny from 94.232.54.130
### 2019-2-24 8:40:1 4
deny from 195.101.247.218
### 2019-2-24 3:40:1 3
deny from 83.52.22.54
### 2019-2-23 17:40:1 3
deny from 59.36.169.180
### 2019-2-23 5:0:1 3
deny from 123.133.162.240
### 2019-2-22 22:40:2 3
deny from 193.112.40.242
### 2019-2-22 19:0:1 4
deny from 78.110.249.46
### 2019-2-22 8:40:1 4
deny from 217.82.31.163
### 2019-2-21 11:40:1 3
deny from 47.95.232.10
### 2019-2-20 15:40:1 4
deny from 220.191.252.252
### 2019-2-19 21:40:1 4
deny from 114.41.36.152
### 2019-2-19 20:40:1 3
deny from 39.66.79.50
### 2019-2-19 8:40:1 4
deny from 78.194.206.26
### 2019-2-19 5:40:1 2
deny from 207.46.13.33
### 2019-2-16 5:40:1 3
deny from 139.199.155.25
### 2019-2-16 2:0:1 3
deny from 60.215.28.132
### 2019-2-13 10:0:1 4
deny from 213.125.142.194
### 2019-2-10 4:40:1 3
deny from 89.132.90.197
### 2019-2-10 1:40:1 2
deny from 207.46.13.40
### 2019-2-10 0:0:1 2
deny from 207.46.13.83
### 2019-2-9 22:0:1 3
deny from 148.70.29.88
### 2019-2-9 21:40:1 2
deny from 157.55.39.133
### 2019-2-8 22:0:1 4
deny from 182.237.2.51
### 2019-2-7 12:40:1 4
deny from 91.64.85.229
### 2019-2-6 3:40:2 4
deny from 45.40.245.25
### 2019-2-5 4:0:1 3
deny from 119.188.248.36
### 2019-2-4 13:0:1 3
deny from 39.66.70.75
### 2019-2-2 18:0:1 2
deny from 103.131.27.3
### 2019-2-2 2:40:1 3
deny from 202.119.65.29
### 2019-2-1 19:40:1 3
deny from 187.162.25.188
### 2019-1-27 8:40:1 3
deny from 129.204.66.169
### 2019-1-27 5:40:2 3
deny from 222.189.204.83
### 2019-1-26 12:40:1 3
deny from 188.131.138.195
### 2019-1-25 17:40:1 3
deny from 112.245.242.134
### 2019-1-25 16:40:1 3
deny from 119.186.36.45
### 2019-1-25 9:40:1 3
deny from 178.238.20.218
### 2019-1-25 9:0:1 3
deny from 81.27.221.125
### 2019-1-24 13:40:1 3
deny from 94.191.94.95
### 2019-1-24 1:0:1 4
deny from 110.50.85.173
### 2019-1-23 21:40:1 3
deny from 192.186.9.150
### 2019-1-23 17:40:1 3
deny from 118.25.51.81
### 2019-1-23 16:0:1 3
deny from 83.58.42.27
### 2019-1-22 14:40:1 3
deny from 109.252.139.244
### 2019-1-21 22:40:1 2
deny from 189.51.98.182
### 2019-1-21 20:0:1 4
deny from 123.207.3.73
### 2019-1-21 11:40:1 3
deny from 185.232.20.198
### 2019-1-21 1:40:1 4
deny from 157.230.128.187
### 2019-1-20 19:0:1 3
deny from 91.79.200.126
### 2019-1-20 17:40:1 2
deny from 183.4.65.33
### 2019-1-18 23:0:1 2
deny from 40.77.167.139
### 2019-1-18 16:40:1 3
deny from 79.104.6.235
### 2019-1-18 11:40:1 3
deny from 129.204.20.210
### 2019-1-18 3:0:1 3
deny from 61.132.226.51
### 2019-1-17 16:40:1 4
deny from 202.96.155.48
### 2019-1-17 7:0:1 2
deny from 207.46.13.4
### 2019-1-16 10:40:1 3
deny from 110.42.1.19
### 2019-1-16 10:40:1 4
deny from 110.42.1.19
### 2019-1-15 17:40:1 4
deny from 106.12.8.151
### 2019-1-15 14:40:1 3
deny from 119.27.175.168
### 2019-1-14 18:0:1 3
deny from 119.185.5.163
### 2019-1-14 8:40:1 4
deny from 149.172.48.183
### 2019-1-13 19:0:1 3
deny from 123.207.240.40
### 2019-1-12 16:40:1 2
deny from 138.229.110.171
### 2019-1-12 12:40:1 3
deny from 103.23.47.99
### 2019-1-12 5:0:1 4
deny from 103.50.253.8
### 2019-1-12 3:0:1 4
deny from 40.125.200.20
### 2019-1-11 6:40:1 2
deny from 207.46.13.173
### 2019-1-10 17:40:1 3
deny from 222.179.152.117
### 2019-1-10 12:40:1 2
deny from 207.46.13.94
### 2019-1-10 12:40:1 2
deny from 157.55.39.145
### 2019-1-10 0:40:1 2
deny from 207.46.13.41
### 2019-1-9 23:0:1 3
deny from 123.133.163.109
### 2019-1-9 18:40:1 3
deny from 119.185.7.41
### 2019-1-7 18:40:1 3
deny from 39.66.76.199
### 2019-1-6 15:40:1 2
deny from 207.46.13.101
### 2019-1-6 8:40:1 3
deny from 212.64.89.137
### 2019-1-6 8:0:1 4
deny from 132.232.69.172
### 2019-1-5 8:40:1 3
deny from 144.48.242.113
### 2019-1-5 7:40:1 3
deny from 122.114.171.128
### 2019-1-4 20:40:1 2
deny from 207.46.13.204
### 2019-1-4 16:40:1 3
deny from 139.199.100.101
### 2019-1-4 16:0:1 4
deny from 132.232.224.155
### 2019-1-4 10:40:1 3
deny from 222.76.212.56
### 2019-1-4 4:40:1 3
deny from 39.66.70.112
### 2019-1-3 20:40:1 3
deny from 119.7.79.50
### 2019-1-3 17:40:1 4
deny from 181.143.183.45
### 2019-1-3 9:0:1 4
deny from 222.192.60.40
### 2019-1-3 0:40:1 3
deny from 139.199.23.198
### 2019-1-2 12:0:1 3
deny from 120.79.77.82
### 2019-1-1 20:0:1 3
deny from 134.175.87.117
### 2019-1-1 18:40:1 4
deny from 203.159.249.181
### 2019-1-1 11:0:1 3
deny from 60.215.30.25
### 2019-1-1 0:40:1 3
deny from 43.229.207.200
### 2018-12-31 14:40:1 3
deny from 203.114.124.181
### 2018-12-31 9:40:1 4
deny from 129.28.103.29
### 2018-12-30 9:0:1 3
deny from 103.110.81.2
### 2018-12-30 2:40:1 4
deny from 139.199.59.75
### 2018-12-30 2:0:1 3
deny from 27.209.177.36
### 2018-12-29 20:0:1 3
deny from 123.249.7.34
### 2018-12-29 15:0:1 3
deny from 112.114.105.42
### 2018-12-29 13:40:1 3
deny from 39.66.78.201
### 2018-12-29 10:40:1 4
deny from 47.244.118.112
### 2018-12-28 17:40:1 4
deny from 222.186.139.133
### 2018-12-28 13:40:1 4
deny from 132.232.37.105
### 2018-12-28 8:0:2 3
deny from 119.186.38.199
### 2018-12-27 11:0:1 3
deny from 60.215.31.11
### 2018-12-27 11:0:1 3
deny from 118.123.19.99
### 2018-12-27 6:0:1 3
deny from 43.252.229.160
### 2018-12-27 6:0:1 3
deny from 112.245.154.166
### 2018-12-27 5:40:1 3
deny from 60.215.46.75
### 2018-12-27 4:40:1 3
deny from 116.196.81.21
### 2018-12-27 4:40:1 3
deny from 112.252.30.218
### 2018-12-27 2:40:1 4
deny from 125.70.9.249
### 2018-12-26 2:40:1 4
deny from 92.87.91.22
### 2018-12-25 12:40:1 3
deny from 112.245.157.183
### 2018-12-25 11:40:1 3
deny from 45.40.241.250
### 2018-12-25 7:40:1 2
deny from 157.55.39.68
### 2018-12-24 17:40:1 3
deny from 114.115.247.159
### 2018-12-24 15:40:1 3
deny from 117.41.183.82
### 2018-12-23 18:40:1 3
deny from 132.232.43.136
### 2018-12-23 14:40:1 3
deny from 120.78.0.241
### 2018-12-23 14:0:1 3
deny from 139.199.18.17
### 2018-12-23 14:0:1 4
deny from 139.199.18.17
### 2018-12-22 8:0:1 3
deny from 45.116.77.139
### 2018-12-22 5:40:1 3
deny from 134.175.144.186
### 2018-12-21 3:40:1 2
deny from 66.249.79.160
### 2018-12-20 17:0:1 2
deny from 158.69.124.228
### 2018-12-20 17:0:1 3
deny from 222.186.23.24
### 2018-12-20 13:0:1 4
deny from 212.237.49.211
### 2018-12-20 5:40:1 4
deny from 51.75.27.78
### 2018-12-16 14:40:1 4
deny from 134.175.39.175
### 2018-12-15 22:40:1 4
deny from 122.114.70.110
### 2018-12-15 2:0:1 2
deny from 40.77.167.127
### 2018-12-14 18:0:1 3
deny from 139.199.65.226
### 2018-12-14 17:40:1 4
deny from 46.24.63.27
### 2018-12-13 9:40:1 3
deny from 112.252.28.84
### 2018-12-13 2:40:1 3
deny from 144.48.241.70
### 2018-12-12 18:40:1 3
deny from 118.24.68.129
### 2018-12-12 16:40:1 2
deny from 40.77.167.177
### 2018-12-12 7:0:1 4
deny from 61.219.85.137
### 2018-12-12 4:40:1 3
deny from 94.191.99.179
### 2018-12-11 20:40:1 3
deny from 45.61.252.194
### 2018-12-11 11:40:1 3
deny from 39.66.77.181
### 2018-12-10 20:40:1 3
deny from 112.245.156.61
### 2018-12-10 16:0:1 3
deny from 91.121.72.71
### 2018-12-10 0:40:1 3
deny from 222.186.57.163
### 2018-12-7 18:0:1 3
deny from 83.149.204.128
### 2018-12-7 9:40:1 3
deny from 27.209.176.245
### 2018-12-7 2:40:1 3
deny from 221.2.44.75
### 2018-12-6 1:0:1 3
deny from 123.133.161.14
### 2018-12-5 19:40:1 3
deny from 31.145.27.182
### 2018-12-5 19:40:1 4
deny from 31.145.27.182
### 2018-12-5 13:40:1 3
deny from 204.13.67.243
### 2018-12-4 11:40:1 4
deny from 31.208.4.138
### 2018-12-4 6:40:1 2
deny from 140.224.61.168
### 2018-12-3 20:40:1 3
deny from 95.24.234.203
### 2018-12-3 20:40:1 3
deny from 189.111.177.113
### 2018-12-3 1:0:1 2
deny from 5.188.211.13
### 2018-12-2 15:40:1 3
deny from 203.171.226.142
### 2018-12-2 12:40:1 4
deny from 212.19.96.163
### 2018-11-30 22:40:2 4
deny from 54.36.115.76
### 2018-11-30 11:40:1 4
deny from 145.239.95.143
### 2018-11-27 12:40:1 4
deny from 125.26.165.189
### 2018-11-26 21:40:1 4
deny from 125.64.94.208
### 2018-11-25 20:0:1 4
deny from 119.29.54.156
### 2018-11-25 4:40:1 2
deny from 46.149.58.10
### 2018-11-23 22:40:1 4
deny from 116.89.248.213
### 2018-11-22 17:40:1 2
deny from 207.46.13.93
### 2018-11-22 6:40:1 2
deny from 178.248.3.136
### 2018-11-21 17:40:1 3
deny from 140.143.119.39
### 2018-11-21 12:0:1 4
deny from 204.12.242.250
### 2018-11-21 11:40:1 2
deny from 207.46.13.215
### 2018-11-21 2:40:1 2
deny from 40.77.167.178
### 2018-11-20 13:40:1 3
deny from 186.10.66.139
### 2018-11-20 3:40:1 3
deny from 118.89.21.195
### 2018-11-19 7:40:1 4
deny from 212.64.43.37
### 2018-11-18 15:40:1 4
deny from 140.143.153.197
### 2018-11-18 3:40:1 2
deny from 207.46.13.159
### 2018-11-17 17:40:1 2
deny from 178.216.138.115
### 2018-11-17 6:40:1 3
deny from 202.91.10.52
### 2018-11-16 22:40:1 3
deny from 210.89.52.233
### 2018-11-16 22:0:1 2
deny from 66.249.79.166
### 2018-11-16 22:0:1 2
deny from 66.249.79.168
### 2018-11-16 20:0:1 3
deny from 198.44.228.85
### 2018-11-16 19:40:1 3
deny from 139.219.234.67
### 2018-11-16 5:40:1 4
deny from 144.48.242.213
### 2018-11-15 13:0:2 2
deny from 66.249.66.94
### 2018-11-15 9:40:1 2
deny from 207.46.13.197
### 2018-11-15 1:40:1 4
deny from 103.71.238.152
### 2018-11-12 20:40:2 3
deny from 202.91.10.53
### 2018-11-12 20:40:2 4
deny from 52.36.210.148
### 2018-11-12 17:40:1 2
deny from 200.55.189.173
### 2018-11-12 8:0:1 3
deny from 122.248.32.10
### 2018-11-12 0:0:1 4
deny from 103.214.168.86
### 2018-11-11 15:40:1 2
deny from 207.46.13.142
### 2018-11-11 14:0:1 4
deny from 212.35.170.125
### 2018-11-11 10:0:1 2
deny from 116.15.43.86
### 2018-11-11 2:40:1 4
deny from 178.162.204.238
### 2018-11-9 23:0:1 3
deny from 112.114.102.93
### 2018-11-9 22:40:1 4
deny from 134.175.186.164
### 2018-11-9 17:0:1 3
deny from 45.120.51.36
### 2018-11-9 10:40:1 3
deny from 116.255.251.204
### 2018-11-9 9:40:1 4
deny from 134.175.228.226
### 2018-11-9 7:40:1 4
deny from 140.143.19.50
### 2018-11-9 6:40:1 2
deny from 66.249.69.156
### 2018-11-9 6:40:1 2
deny from 66.249.69.157
### 2018-11-9 2:40:2 3
deny from 116.255.196.32
### 2018-11-8 15:40:1 3
deny from 122.114.98.67
### 2018-11-7 18:0:1 3
deny from 218.28.136.213
### 2018-11-7 12:40:1 3
deny from 116.255.174.172
### 2018-11-7 2:0:1 3
deny from 124.106.83.63
### 2018-11-6 11:0:1 4
deny from 102.165.51.161
### 2018-11-5 7:40:1 3
deny from 144.255.152.40
### 2018-11-5 2:40:1 3
deny from 132.232.81.88
### 2018-11-4 20:40:1 3
deny from 1.220.217.37
### 2018-11-2 0:40:1 2
deny from 66.249.69.17
### 2018-10-31 12:40:1 2
deny from 40.77.167.118
### 2018-10-31 4:40:1 2
deny from 207.46.13.133
### 2018-10-31 1:40:1 3
deny from 27.22.195.145
### 2018-10-30 18:0:1 3
deny from 115.205.228.204
### 2018-10-30 11:0:1 3
deny from 221.233.65.196
### 2018-10-29 15:40:1 3
deny from 221.229.204.71
### 2018-10-28 20:0:1 3
deny from 160.124.140.180
### 2018-10-28 12:40:1 3
deny from 167.114.208.180
### 2018-10-28 8:40:1 3
deny from 221.233.64.90
### 2018-10-28 3:0:1 3
deny from 175.155.239.1
### 2018-10-27 23:40:1 2
deny from 66.249.79.40
### 2018-10-27 18:0:1 3
deny from 58.87.98.110
### 2018-10-27 18:0:1 3
deny from 132.232.98.175
### 2018-10-27 12:40:1 4
deny from 42.116.70.120
### 2018-10-27 8:0:1 3
deny from 114.116.25.11
### 2018-10-27 3:0:1 3
deny from 220.191.28.25
### 2018-10-27 0:40:1 3
deny from 193.112.86.81
### 2018-10-26 16:40:1 3
deny from 58.51.18.251
### 2018-10-25 23:40:1 3
deny from 122.241.24.16
### 2018-10-24 15:0:2 3
deny from 183.154.20.250
### 2018-10-24 10:0:1 3
deny from 95.153.94.211
### 2018-10-24 1:40:1 3
deny from 111.177.126.160
### 2018-10-23 22:40:1 2
deny from 207.46.13.25
### 2018-10-23 0:40:1 4
deny from 167.99.12.115
### 2018-10-22 10:40:1 3
deny from 115.192.66.71
### 2018-10-22 5:40:1 3
deny from 115.230.124.26
### 2018-10-21 8:0:1 3
deny from 122.226.92.114
### 2018-10-20 1:40:1 2
deny from 201.230.155.6
### 2018-10-19 4:0:1 3
deny from 114.115.145.58
### 2018-10-18 23:40:1 2
deny from 40.77.167.123
### 2018-10-18 10:40:1 2
deny from 40.77.167.169
### 2018-10-18 8:0:1 2
deny from 140.250.95.17
### 2018-10-17 19:0:1 3
deny from 118.120.231.129
### 2018-10-15 15:0:1 2
deny from 122.7.211.93
### 2018-10-15 13:40:1 2
deny from 207.46.13.95
### 2018-10-14 23:0:1 2
deny from 40.77.167.26
### 2018-10-14 19:40:1 2
deny from 40.77.167.180
### 2018-10-14 13:40:1 2
deny from 40.77.167.147
### 2018-10-14 8:40:1 2
deny from 180.121.134.5
### 2018-10-13 12:40:1 2
deny from 59.61.220.219
### 2018-10-13 12:0:1 2
deny from 140.224.61.249
### 2018-10-12 3:0:1 3
deny from 36.22.109.158
### 2018-10-11 21:40:1 3
deny from 115.221.125.66
### 2018-10-11 11:0:1 2
deny from 207.46.13.160
### 2018-10-11 10:0:1 3
deny from 115.192.238.243
### 2018-10-10 23:40:1 3
deny from 122.114.14.222
### 2018-10-10 18:0:1 3
deny from 113.96.44.209
### 2018-10-10 9:40:1 4
deny from 123.206.181.192
### 2018-10-10 0:40:1 3
deny from 134.175.192.235
### 2018-10-9 22:0:1 2
deny from 207.46.13.163
### 2018-10-9 22:0:1 2
deny from 207.46.13.202
### 2018-10-9 0:0:1 3
deny from 115.192.248.20
### 2018-10-7 20:40:1 2
deny from 40.77.167.173
### 2018-10-7 16:0:1 4
deny from 203.153.214.171
### 2018-10-7 10:40:1 3
deny from 94.142.12.120
### 2018-10-7 10:0:1 3
deny from 60.169.3.56
### 2018-10-7 10:0:1 3
deny from 183.155.198.43
### 2018-10-6 22:40:1 3
deny from 132.232.199.76
### 2018-10-6 19:40:1 2
deny from 123.54.177.151
### 2018-10-6 11:40:1 3
deny from 78.37.226.225
### 2018-10-6 9:0:1 2
deny from 110.83.135.134
### 2018-10-5 23:40:1 2
deny from 157.55.39.108
### 2018-10-5 23:0:1 2
deny from 40.77.167.6
### 2018-10-5 22:0:2 3
deny from 139.199.3.218
### 2018-10-5 1:0:1 2
deny from 36.25.219.42
### 2018-10-4 13:40:1 3
deny from 132.232.46.114
### 2018-10-4 1:40:1 2
deny from 115.224.40.120
### 2018-10-3 15:40:1 2
deny from 207.46.13.51
### 2018-10-3 4:0:1 4
deny from 154.85.13.36
### 2018-10-2 22:40:1 4
deny from 197.156.72.155
### 2018-10-2 15:40:1 3
deny from 113.160.245.89
### 2018-10-2 13:40:1 2
deny from 40.77.167.216
### 2018-10-2 11:0:1 2
deny from 40.77.167.222
### 2018-10-2 1:0:1 3
deny from 141.101.250.1
### 2018-10-2 1:0:1 4
deny from 141.101.250.1
### 2018-10-1 13:40:1 4
deny from 140.143.237.105
### 2018-10-1 8:40:2 3
deny from 61.160.193.85
### 2018-10-1 4:40:1 3
deny from 139.199.106.94
### 2018-10-1 1:0:1 3
deny from 47.75.177.95
### 2018-9-30 18:40:1 2
deny from 117.24.37.232
### 2018-9-30 18:0:1 2
deny from 40.77.167.165
### 2018-9-28 19:40:1 2
deny from 66.249.64.202
### 2018-9-28 17:40:1 3
deny from 120.78.192.166
### 2018-9-28 5:40:1 3
deny from 202.115.202.23
### 2018-9-28 3:40:1 3
deny from 183.36.126.108
### 2018-9-27 20:40:1 2
deny from 123.54.174.169
### 2018-9-27 20:40:1 2
deny from 66.249.66.66
### 2018-9-27 4:40:1 3
deny from 125.117.174.59
### 2018-9-26 23:40:2 3
deny from 114.115.208.52
### 2018-9-25 13:0:1 3
deny from 200.111.100.109
### 2018-9-24 9:0:1 3
deny from 110.10.178.72
### 2018-9-23 22:40:1 4
deny from 89.248.168.171
### 2018-9-23 19:40:1 3
deny from 125.121.51.228
### 2018-9-23 18:0:1 3
deny from 218.73.129.190
### 2018-9-23 12:0:1 2
deny from 40.77.167.122
### 2018-9-22 19:40:1 4
deny from 1.1.129.227
### 2018-9-22 7:40:1 3
deny from 114.116.20.245
### 2018-9-21 17:40:1 3
deny from 144.48.242.39
### 2018-9-21 5:40:2 2
deny from 207.46.13.148
### 2018-9-21 5:40:2 2
deny from 207.46.13.236
### 2018-9-20 13:40:1 3
deny from 179.184.51.186
### 2018-9-19 20:40:1 3
deny from 221.143.43.59
### 2018-9-19 6:40:1 2
deny from 5.135.189.186
### 2018-9-19 6:40:1 3
deny from 185.85.160.35
### 2018-9-19 1:40:1 2
deny from 40.77.167.130
### 2018-9-18 9:0:1 4
deny from 132.232.151.50
### 2018-9-17 17:40:1 2
deny from 207.46.13.120
### 2018-9-17 16:40:1 3
deny from 115.159.72.254
### 2018-9-17 5:40:1 3
deny from 117.50.34.27
### 2018-9-13 16:40:1 2
deny from 66.249.69.102
### 2018-9-13 13:40:1 4
deny from 107.151.148.75
### 2018-9-13 8:40:1 4
deny from 120.79.22.66
### 2018-9-12 19:40:1 3
deny from 60.169.3.16
### 2018-9-12 16:40:1 3
deny from 188.187.176.13
### 2018-9-12 13:40:2 3
deny from 112.78.147.146
### 2018-9-12 7:0:1 4
deny from 132.232.129.159
### 2018-9-11 19:0:1 4
deny from 180.76.108.209
### 2018-9-11 5:40:1 2
deny from 157.55.39.60
### 2018-9-11 1:0:1 4
deny from 99.149.209.113
### 2018-9-11 0:40:1 3
deny from 205.209.187.122
### 2018-9-10 23:40:1 3
deny from 193.112.129.95
### 2018-9-9 20:40:1 4
deny from 202.129.187.226
### 2018-9-9 12:0:1 3
deny from 36.27.111.174
### 2018-9-9 7:0:1 3
deny from 192.161.169.82
### 2018-9-8 20:0:1 3
deny from 115.216.113.97
### 2018-9-8 18:0:1 2
deny from 66.249.75.88
### 2018-9-7 16:0:1 2
deny from 207.46.13.147
### 2018-9-7 14:40:1 2
deny from 157.55.39.186
### 2018-9-6 22:40:1 3
deny from 103.193.173.83
### 2018-9-6 18:40:1 2
deny from 66.249.75.89
### 2018-9-6 16:40:1 4
deny from 154.8.159.162
### 2018-9-5 18:0:1 3
deny from 5.128.120.148
### 2018-9-5 11:0:1 3
deny from 114.115.143.161
### 2018-9-5 9:0:1 3
deny from 114.115.147.23
### 2018-9-5 2:40:1 3
deny from 47.92.116.51
### 2018-9-4 23:0:1 2
deny from 40.77.167.135
### 2018-9-4 8:40:1 2
deny from 207.46.13.243
### 2018-9-2 16:40:1 2
deny from 40.77.167.187
### 2018-9-2 7:40:1 3
deny from 192.161.169.83
### 2018-9-1 22:40:1 3
deny from 103.26.77.218
### 2018-9-1 18:0:1 3
deny from 162.247.99.131
### 2018-9-1 16:40:2 4
deny from 115.73.210.156
### 2018-8-31 18:40:1 3
deny from 42.51.44.84
### 2018-8-31 6:40:1 3
deny from 180.179.32.26
### 2018-8-30 13:40:1 4
deny from 89.169.164.59
### 2018-8-30 4:40:1 3
deny from 101.205.41.129
### 2018-8-29 13:40:1 3
deny from 120.38.238.254
### 2018-8-28 13:0:1 3
deny from 111.174.106.1
### 2018-8-28 9:0:1 3
deny from 60.169.3.59
### 2018-8-28 4:40:1 3
deny from 193.112.48.223
### 2018-8-27 17:0:1 3
deny from 183.146.185.116
### 2018-8-27 4:40:1 4
deny from 198.13.38.95
### 2018-8-26 19:40:1 3
deny from 115.221.121.86
### 2018-8-26 12:40:1 3
deny from 183.156.245.27
### 2018-8-26 8:40:1 3
deny from 222.186.169.204
### 2018-8-26 3:40:1 3
deny from 123.207.148.196
### 2018-8-25 7:40:1 4
deny from 89.119.94.129
### 2018-8-24 19:0:1 3
deny from 125.121.135.146
### 2018-8-24 16:0:1 3
deny from 59.63.207.88
### 2018-8-24 13:0:1 3
deny from 118.193.196.165
### 2018-8-24 5:40:1 3
deny from 47.95.250.198
### 2018-8-23 2:40:1 3
deny from 125.122.60.133
### 2018-8-23 0:40:2 2
deny from 66.249.69.166
### 2018-8-23 0:40:2 2
deny from 66.249.69.168
### 2018-8-21 21:40:1 4
deny from 119.23.32.12
### 2018-8-21 4:40:1 3
deny from 175.155.236.172
### 2018-8-20 15:40:1 3
deny from 58.250.169.41
### 2018-8-20 9:0:2 3
deny from 218.74.11.33
### 2018-8-20 6:40:1 3
deny from 125.122.58.48
### 2018-8-20 6:0:1 3
deny from 115.205.230.119
### 2018-8-19 22:40:2 3
deny from 61.174.152.105
### 2018-8-19 3:40:1 3
deny from 106.14.159.174
### 2018-8-19 2:0:1 3
deny from 192.161.169.85
### 2018-8-19 1:0:1 3
deny from 183.129.76.19
### 2018-8-19 1:0:1 3
deny from 222.86.190.44
### 2018-8-18 21:0:1 3
deny from 36.27.109.52
### 2018-8-18 21:0:1 3
deny from 220.184.55.68
### 2018-8-18 16:40:1 3
deny from 39.107.230.156
### 2018-8-18 10:0:1 4
deny from 123.206.7.150
### 2018-8-17 13:0:1 3
deny from 116.196.75.202
### 2018-8-15 18:40:1 3
deny from 115.192.248.180
### 2018-8-15 18:0:1 3
deny from 220.184.121.217
### 2018-8-14 22:0:1 3
deny from 14.204.69.253
### 2018-8-13 5:40:1 3
deny from 60.191.69.194
### 2018-8-13 5:40:1 3
deny from 125.121.52.124
### 2018-8-13 5:0:1 3
deny from 115.221.120.89
### 2018-8-11 14:40:1 3
deny from 198.11.173.103
### 2018-8-9 11:40:1 3
deny from 106.12.4.2
### 2018-8-9 3:0:1 3
deny from 122.114.130.172
### 2018-8-7 7:0:1 3
deny from 45.40.195.123
### 2018-8-6 20:0:1 3
deny from 202.100.179.141
### 2018-8-6 5:40:1 2
deny from 66.249.64.198
### 2018-8-6 5:40:1 2
deny from 66.249.64.200
### 2018-8-5 15:0:1 3
deny from 47.94.157.167
### 2018-8-4 9:40:2 3
deny from 112.91.100.218
### 2018-8-4 7:40:1 3
deny from 61.174.60.34
### 2018-8-4 6:0:1 3
deny from 183.145.201.47
### 2018-8-3 21:0:1 3
deny from 221.229.207.8
### 2018-8-3 21:0:1 3
deny from 120.79.232.170
### 2018-8-2 13:40:1 3
deny from 193.112.110.213
### 2018-8-2 1:0:1 3
deny from 154.8.169.177
### 2018-8-1 22:0:1 2
deny from 66.249.69.13
### 2018-8-1 22:0:1 2
deny from 66.249.69.15
### 2018-8-1 21:40:1 3
deny from 123.207.181.158
### 2018-7-31 16:40:1 3
deny from 115.195.70.15
### 2018-7-31 15:40:1 4
deny from 47.90.103.192
### 2018-7-30 15:0:1 2
deny from 27.123.250.113
### 2018-7-30 13:40:1 3
deny from 115.231.8.192
### 2018-7-30 10:40:1 3
deny from 154.8.174.198
### 2018-7-30 8:0:1 3
deny from 80.58.142.98
### 2018-7-29 21:0:1 3
deny from 139.129.193.250
### 2018-7-29 14:40:1 3
deny from 115.221.112.22
### 2018-7-28 20:0:1 3
deny from 113.85.28.166
### 2018-7-28 7:40:1 3
deny from 60.176.77.101
### 2018-7-28 0:40:1 3
deny from 154.8.229.40
### 2018-7-28 0:0:1 4
deny from 140.143.242.151
### 2018-7-27 23:40:1 3
deny from 61.160.213.170
### 2018-7-27 13:40:1 3
deny from 183.128.44.170
### 2018-7-25 3:40:2 3
deny from 101.200.36.6
### 2018-7-24 16:40:1 3
deny from 163.17.205.2
### 2018-7-24 13:0:1 3
deny from 134.159.206.99
### 2018-7-23 14:40:1 2
deny from 27.59.107.81
### 2018-7-23 7:0:1 4
deny from 123.207.14.151
### 2018-7-23 1:40:2 3
deny from 164.115.24.144
### 2018-7-21 16:40:1 4
deny from 120.79.154.208
### 2018-7-20 20:0:1 3
deny from 124.229.76.206
### 2018-7-19 9:40:1 3
deny from 77.94.124.230
### 2018-7-18 22:40:1 4
deny from 40.118.201.170
### 2018-7-18 14:40:1 3
deny from 95.106.168.72
### 2018-7-17 19:0:1 3
deny from 39.107.69.157
### 2018-7-17 9:40:1 4
deny from 202.90.198.126
### 2018-7-17 6:40:1 3
deny from 120.77.36.85
### 2018-7-14 5:40:1 3
deny from 132.232.2.198
### 2018-7-13 17:0:1 2
deny from 101.110.119.24
### 2018-7-13 14:40:2 2
deny from 46.4.32.207
### 2018-7-12 8:40:1 3
deny from 91.242.222.201
### 2018-7-12 7:0:1 1
deny from 190.186.32.252
### 2018-7-10 7:0:1 1
deny from 185.100.87.245
### 2018-7-9 10:40:1 3
deny from 58.87.124.178
### 2018-7-9 7:0:1 1
deny from 164.52.24.164
### 2018-7-6 21:40:1 3
deny from 185.246.152.18
### 2018-7-6 18:40:1 4
deny from 39.108.124.111
### 2018-7-6 14:0:1 2
deny from 5.188.211.26
### 2018-7-4 7:40:1 4
deny from 121.42.139.163
### 2018-7-4 7:0:1 4
deny from 100.12.158.130
### 2018-7-1 16:40:1 3
deny from 95.108.244.50
### 2018-7-1 3:0:1 4
deny from 211.149.226.85
### 2018-6-30 18:0:1 4
deny from 27.123.1.126
### 2018-6-29 22:0:1 3
deny from 93.185.29.194
### 2018-6-28 17:40:1 3
deny from 47.91.228.96
### 2018-6-28 14:0:1 3
deny from 183.171.179.182
### 2018-6-28 4:40:1 2
deny from 157.55.39.31
### 2018-6-28 3:40:1 4
deny from 121.41.17.66
### 2018-6-26 14:40:1 3
deny from 46.37.157.21
### 2018-6-26 11:40:1 3
deny from 185.57.31.162
### 2018-6-25 19:0:1 2
deny from 207.46.13.208
### 2018-6-24 22:40:1 3
deny from 43.226.36.79
### 2018-6-24 17:0:1 3
deny from 37.193.153.118
### 2018-6-24 12:40:1 3
deny from 14.192.11.115
### 2018-6-24 11:40:1 3
deny from 185.57.29.121
### 2018-6-22 7:40:1 1
deny from 18.82.1.184
### 2018-6-21 5:40:1 2
deny from 203.133.170.22
### 2018-6-20 16:0:1 3
deny from 148.163.88.67
### 2018-6-20 15:40:1 4
deny from 46.105.116.173
### 2018-6-20 10:40:1 3
deny from 178.73.210.251
### 2018-6-20 7:0:1 1
deny from 169.44.33.146
### 2018-6-20 6:40:1 2
deny from 157.55.39.222
### 2018-6-19 19:0:1 3
deny from 128.71.77.128
### 2018-6-18 23:40:1 3
deny from 190.55.43.233
### 2018-6-14 17:0:1 4
deny from 47.75.147.204
### 2018-6-14 13:0:1 3
deny from 188.232.30.128
### 2018-6-13 7:40:1 1
deny from 37.191.238.118
### 2018-6-10 17:0:1 4
deny from 192.144.165.36
### 2018-6-10 7:40:1 1
deny from 112.85.42.147
### 2018-6-9 7:0:1 1
deny from 112.85.42.146
### 2018-6-8 11:0:1 4
deny from 118.89.58.143
### 2018-6-7 7:0:1 1
deny from 60.190.40.206
### 2018-6-7 1:0:1 3
deny from 217.118.64.122
### 2018-6-6 22:40:1 4
deny from 146.164.26.45
### 2018-6-6 10:40:1 2
deny from 207.46.13.12
### 2018-6-6 1:40:1 3
deny from 85.95.132.225
### 2018-6-5 7:40:1 1
deny from 81.3.154.136
### 2018-6-4 17:40:1 3
deny from 93.76.210.35
### 2018-6-4 7:40:1 3
deny from 61.100.180.18
### 2018-6-4 1:0:1 3
deny from 96.44.130.10
### 2018-6-3 22:0:1 4
deny from 119.29.152.170
### 2018-6-2 7:0:1 1
deny from 58.218.198.189
### 2018-6-1 11:40:1 3
deny from 92.255.236.159
### 2018-6-1 7:0:1 1
deny from 103.35.172.106
### 2018-6-1 1:40:1 3
deny from 178.214.255.201
### 2018-6-1 0:0:1 3
deny from 178.214.255.53
### 2018-5-31 12:40:1 3
deny from 94.41.205.102
### 2018-5-30 15:40:1 4
deny from 45.40.136.36
### 2018-5-29 7:0:1 1
deny from 178.62.106.142
### 2018-5-29 5:40:1 3
deny from 188.162.194.87
### 2018-5-29 2:0:1 3
deny from 96.44.133.34
### 2018-5-28 7:0:1 1
deny from 5.188.10.180
### 2018-5-28 7:0:1 1
deny from 217.149.7.179
### 2018-5-27 23:0:1 4
deny from 122.152.209.78
### 2018-5-26 22:0:1 4
deny from 119.254.155.210
### 2018-5-25 22:40:1 4
deny from 111.231.191.53
### 2018-5-25 7:40:1 1
deny from 104.40.220.5
### 2018-5-24 16:40:1 3
deny from 83.149.205.81
### 2018-5-24 6:0:1 4
deny from 203.195.200.90
### 2018-5-23 17:0:1 4
deny from 115.159.159.80
### 2018-5-23 13:0:2 4
deny from 118.24.8.71
### 2018-5-23 11:40:2 4
deny from 183.179.59.45
### 2018-5-22 10:40:1 3
deny from 96.44.128.254
### 2018-5-22 9:40:1 4
deny from 103.45.9.123
### 2018-5-22 7:0:1 1
deny from 131.108.88.37
### 2018-5-22 7:0:1 1
deny from 182.100.67.231
### 2018-5-21 18:40:1 2
deny from 46.166.137.198
### 2018-5-21 7:0:2 1
deny from 103.79.141.40
### 2018-5-20 15:0:1 4
deny from 43.252.210.145
### 2018-5-20 13:0:1 4
deny from 140.143.39.221
### 2018-5-19 7:40:1 1
deny from 93.174.93.207
### 2018-5-17 11:40:1 3
deny from 96.44.130.190
### 2018-5-16 14:40:1 3
deny from 69.12.90.242
### 2018-5-16 7:0:1 1
deny from 45.55.63.203
### 2018-5-16 7:0:1 1
deny from 103.89.88.96
### 2018-5-15 15:40:1 2
deny from 62.210.111.29
### 2018-5-13 9:40:1 4
deny from 36.89.56.91
### 2018-5-12 21:40:1 4
deny from 103.100.209.90
### 2018-5-12 7:0:1 1
deny from 222.186.52.123
### 2018-5-11 21:40:1 2
deny from 84.245.9.132
### 2018-5-11 13:0:1 3
deny from 194.85.70.247
### 2018-5-11 10:0:1 2
deny from 62.210.111.90
### 2018-5-11 2:40:1 2
deny from 207.46.13.212
### 2018-5-11 2:40:1 2
deny from 207.46.13.209
### 2018-5-10 16:40:1 4
deny from 118.89.59.25
### 2018-5-7 18:0:1 4
deny from 118.24.18.46
### 2018-5-6 20:0:1 4
deny from 213.6.8.249
### 2018-5-6 18:40:1 3
deny from 61.139.77.172
### 2018-5-6 10:0:1 4
deny from 58.27.48.16
### 2018-5-5 7:40:1 1
deny from 193.201.224.232
### 2018-5-4 19:40:2 4
deny from 220.130.209.58
### 2018-5-3 1:40:1 2
deny from 40.77.167.168
### 2018-5-2 5:40:1 3
deny from 61.19.251.44
### 2018-5-1 18:0:1 4
deny from 123.129.209.33
### 2018-5-1 1:40:2 2
deny from 157.55.39.126
### 2018-4-28 23:40:1 4
deny from 222.191.251.87
### 2018-4-28 23:40:1 4
deny from 144.48.9.5
### 2018-4-27 7:0:1 1
deny from 77.141.167.37
### 2018-4-27 7:0:1 1
deny from 181.224.250.124
### 2018-4-26 19:0:1 2
deny from 79.181.246.191
### 2018-4-26 12:40:1 3
deny from 109.201.78.80
### 2018-4-25 13:0:1 4
deny from 116.196.97.198
### 2018-4-25 8:0:1 2
deny from 207.46.13.36
### 2018-4-23 17:0:1 2
deny from 176.9.196.28
### 2018-4-20 20:0:1 3
deny from 213.186.199.187
### 2018-4-20 7:40:1 1
deny from 123.207.29.145
### 2018-4-20 7:40:1 1
deny from 162.248.221.126
### 2018-4-19 17:40:1 3
deny from 95.28.28.19
### 2018-4-19 7:40:1 1
deny from 164.52.24.138
### 2018-4-18 17:40:1 3
deny from 202.29.212.93
### 2018-4-18 7:0:1 1
deny from 5.186.77.62
### 2018-4-17 7:40:1 1
deny from 203.154.45.96
### 2018-4-12 6:0:1 4
deny from 1.31.230.130
### 2018-4-11 19:40:1 2
deny from 207.46.13.225
### 2018-4-11 14:0:1 2
deny from 157.55.39.66
### 2018-4-10 19:0:1 2
deny from 77.243.191.54
### 2018-4-10 13:40:1 3
deny from 173.254.205.229
### 2018-4-10 6:0:2 2
deny from 207.46.13.5
### 2018-4-9 16:40:1 2
deny from 40.77.167.105
### 2018-4-8 15:0:1 2
deny from 40.77.167.134
### 2018-4-7 12:0:1 2
deny from 40.77.167.203
Options Indexes MultiViews
AllowOverride None
Allow from all
Order allow,deny