[
  {
    "path": ".github/CONTRIBUTING.md",
    "content": "# Contributing\n \nIf you'd like to add a new referrer spammer to the list, [click here to edit the domains.txt file](https://github.com/Stevie-Ray/referrer-spam-blocker/edit/master/generator/domains.txt) and create a pull request. Alternatively you can create a [new issue](https://github.com/Stevie-Ray/referrer-spam-blocker/issues/new). In your issue or pull request please explain where the referrer domain appeared and why you think it is a spammer. **Please open one pull request per new domain**.\n \nIf you open a pull request, it is appreciated if you execute the **run.php** file with PHP. It sorts the domains, creates the Nginx and Apache files and checks if somebody already reported the domain.\n\n## Using the generator\n\n### Install\n\nRequirements:\n\n* PHP must be installed on your machine\n* You must have installed [composer](https://getcomposer.org/), PHP's package manager\n\nInstall your dependencies:\n\n```sh\ncomposer install\n```\n\nRun the command to generate the files:\n\n```\nphp run.php\n```\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "github: [Stevie-Ray]\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE.md",
    "content": "<!--- Provide a general summary of the issue in the Title above -->\n\n## Expected Behavior\n<!--- If you're describing a bug, tell us what should happen -->\n<!--- If you're suggesting a change/improvement, tell us how it should work -->\n\n## Current Behavior\n<!--- If describing a bug, tell us what happens instead of the expected behavior -->\n<!--- If suggesting a change/improvement, explain the difference from current behavior -->\n\n## Possible Solution\n<!--- Not obligatory, but suggest a fix/reason for the bug, -->\n<!--- or ideas how to implement the addition or change -->\n\n## Steps to Reproduce (for bugs)\n<!--- Provide a link to a live example, or an unambiguous set of steps to -->\n<!--- reproduce this bug. Include code to reproduce, if relevant -->\n1.\n2.\n3.\n4.\n\n## Context\n<!--- How has this issue affected you? What are you trying to accomplish? -->\n<!--- Providing context helps us come up with a solution that is most useful in the real world -->\n\n## Your Environment\n<!--- Include as many relevant details about the environment you experienced the bug in -->\n* Version used:\n* Browser Name and version:\n* Operating System and version (desktop or mobile):\n* Link to your project:"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "<!--- Provide a general summary of your changes in the Title above -->\n\n## Description\n<!--- Describe your changes in detail -->\n\n## Motivation and Context\n<!--- Why is this change required? What problem does it solve? -->\n<!--- If it fixes an open issue, please link to the issue here. -->\n\n## How Has This Been Tested?\n<!--- Please describe in detail how you tested your changes. -->\n<!--- Include details of your testing environment, and the tests you ran to -->\n<!--- see how your change affects other areas of the code, etc. -->\n\n## Screenshots (if appropriate):\n\n## Types of changes\n<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->\n- [ ] Bug fix (non-breaking change which fixes an issue)\n- [ ] New feature (non-breaking change which adds functionality)\n- [ ] Breaking change (fix or feature that would cause existing functionality to change)\n\n## Checklist:\n<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->\n<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->\n- [ ] My code follows the code style of this project.\n- [ ] My change requires a change to the documentation.\n- [ ] I have updated the documentation accordingly.\n- [ ] I have read the **CONTRIBUTING** document."
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: CI/CD Pipeline\n\non:\n  push:\n    branches: [ master ]\n  pull_request:\n    branches: [ master ]\n\njobs:\n  test:\n    name: Run Tests\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        php: [8.3, 8.4]\n\n    steps:\n    - name: Checkout code\n      uses: actions/checkout@v6\n\n    - name: Setup PHP\n      uses: shivammathur/setup-php@v2\n      with:\n        php-version: ${{ matrix.php }}\n        extensions: mbstring, iconv\n        coverage: pcov\n\n    - name: Validate composer.json and composer.lock\n      run: composer validate --strict\n\n    - name: Get composer cache directory\n      id: composer-cache\n      run: echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT\n\n    - name: Cache dependencies\n      uses: actions/cache@v4\n      with:\n        path: ${{ steps.composer-cache.outputs.dir }}\n        key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}\n        restore-keys: ${{ runner.os }}-php-${{ matrix.php }}-composer-\n\n    - name: Install dependencies\n      run: composer install --prefer-dist --no-progress\n\n    - name: Run quality checks\n      run: composer run quality\n\n    - name: Run tests with coverage\n      run: composer run test-coverage\n\n  security:\n    name: Security Audit\n    runs-on: ubuntu-latest\n    needs: test\n    \n    steps:\n    - name: Checkout code\n      uses: actions/checkout@v6\n\n    - name: Setup PHP\n      uses: shivammathur/setup-php@v2\n      with:\n        php-version: '8.3'\n\n    - name: Install dependencies\n      run: composer install --prefer-dist --no-progress\n\n    - name: Run security audit\n      run: composer audit\n\n  release:\n    name: Create Release\n    runs-on: ubuntu-latest\n    needs: [test, security]\n    if: github.ref == 'refs/heads/master' && github.event_name == 'push'\n    \n    steps:\n    - name: Checkout code\n      uses: actions/checkout@v6\n      with:\n        fetch-depth: 0\n\n    - name: Setup PHP\n      uses: shivammathur/setup-php@v2\n      with:\n        php-version: '8.3'\n        extensions: mbstring, iconv\n\n    - name: Install dependencies\n      run: composer install --prefer-dist --no-progress\n\n    - name: Generate configuration files\n      run: composer generate\n\n    - name: Bump version and push tag\n      id: create_tag\n      uses: mathieudutour/github-tag-action@v6.0\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n\n    - name: Create Release\n      uses: softprops/action-gh-release@v2\n      with:\n        tag_name: ${{ steps.create_tag.outputs.new_tag }}\n        generate_release_notes: true\n        files: |\n          *.conf\n          *.vcl\n          *.caddy*\n          *.res\n          web.config\n      env:\n        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".gitignore",
    "content": "vendor/\n.idea/\n.phpunit.cache/\n.php-cs-fixer.cache\n"
  },
  {
    "path": ".htaccess",
    "content": "# https://github.com/Stevie-Ray/referrer-spam-blocker\n# Updated 2026-03-04 18:14:04\n\n\n<IfModule mod_rewrite.c>\n\nRewriteEngine On\n\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*0\\-0\\.fr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*000free\\.us.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*007agent\\-i\\.fr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*00author\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*00go\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*00it\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*01casino\\-x\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*033nachtvandeliteratuur\\.nl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*03e\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*03p\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*0n\\-line\\.tv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1\\-88\\.vip.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1\\-99seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1\\-best\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1\\-free\\-share\\-buttons\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*100\\-reasons\\-for\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*100dollars\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*100searchengines\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*101flag\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*11235813\\.webzdarma\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*12\\-reasons\\-for\\-seo\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*12masterov\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*12u\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*15\\-reasons\\-for\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*16lv\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1hwy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1kinobig\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1kreditzaim\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1pamm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1st\\-urist\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1webmaster\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1wek\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1winru\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1x\\-slot\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1x\\-slots\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xbet\\-entry\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xbetcc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xbetonlines1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xbetportugal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xbetts\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xslot\\-casino\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xslot\\-casino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xslot\\-casino\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xslot\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xslots\\-africa\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xslots\\-brasil\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xslots\\-casino\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xslots\\.africa.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*1xslots\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2\\-best\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2\\-easy\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2\\-go\\-now\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2015god\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*24chasa\\.bg.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*24h\\.doctor.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*24videos\\.tv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*24x7\\-server\\-support\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*256bit\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*273\\-fz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2ads\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2itech\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2kata\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2nt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*2your\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3\\-best\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3\\-letter\\-domains\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3dgame3d\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3dracergames\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*3waynetworks\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4\\-best\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*40momporntube\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*45en\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*45tahunkhongguan\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4inn\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4ip\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4istoshop\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4webmasters\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4webmasters\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*4xcasino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5\\-best\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5\\-steps\\-to\\-start\\-business\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5elementov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*5forex\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*6\\-best\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*69\\-13\\-59\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*6hopping\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7\\-best\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*70casino\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*76brighton\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*76brighton\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7kop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7makemoneyonline\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7milliondollars\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7ooo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*7zap\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*8\\-best\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*84lv\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*8xv8\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*9\\-best\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*99\\-reasons\\-for\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*QIWI\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*a\\-elita\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*a\\-hau\\.mk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*a14download\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abacoasale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abaiak\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abbanreddy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abc\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abcdefh\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abcdeg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abclauncher\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abiente\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abovetherivernc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abtasty\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*abuser\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*academia\\-nsk\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acads\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acarreo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*account\\-my1\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*accs\\-store\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*actata\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*actualremont\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*acunetix\\-referrer\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adanih\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adcash\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*addblueoff\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adelachrist\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adelly\\.bg.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adf\\.ly.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adpostmalta\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adrenalinebot\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adrenalinebot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adspart\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adtiger\\.tk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adult\\-video\\-chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adultfullhd\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adventureparkcostarica\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advertisefree\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*adviceforum\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advocatemsk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advokateg\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advokateg\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advokateg\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*advokateg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aerodizain\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aerogo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aerotour\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*affiliate\\-programs\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*affordablewebsitesandmobileapps\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*afora\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*afshan\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agreda\\.pluto\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agro\\-gid\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*agtl\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ahecmarket\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ahhjf\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ahrefs\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ai\\-seo\\-services\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aibolita\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aidarmebel\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aimeesblog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aimiot\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aitiman\\.ae.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akama\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akmussale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akuhni\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akusherok\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*akvamaster\\.dp\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alborzan\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*albuteroli\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alcobutik24\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alert\\-fdm\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alert\\-fjg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alert\\-hgd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alert\\-jdh\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alertomall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alessandraleone\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alexsander\\.ch.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alfa\\-medosmotr\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alfa9\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alfabot\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alfapro\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alguiblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alibestsale\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aliexpress\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aliexsale\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alif\\-ba\\-ta\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alinabaniecka\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alive\\-ua\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aliviahome\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alkanfarma\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*all\\-news\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*all4bath\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*all4invest\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allcredits\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allcryptonews\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alldownload\\.pw.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allergick\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allergija\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allfan\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allforminecraft\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allknow\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allkrim\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allmarketsnewdayli\\.gdn.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allnews\\.md.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allnews24\\.in.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allpdfmags\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allproblog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allsilver925\\.co\\.il.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alltheviews\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allvacancy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allwomen\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*allwrighter\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alma\\-mramor\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alp\\-rk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alphaforum\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alphaopt24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alpharma\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alpinaskate\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*altermix\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*alveris\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*am\\-se\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amanda\\-porn\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amatocanizalez\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amazon\\-seo\\-service\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amoi\\.tn.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amoremio\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amos\\-kids\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amospalla\\.es.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amp\\-project\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amt\\-k\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amtel\\-vredestein\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*amylynnandrews\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*anabolics\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*anal\\-acrobats\\.hol\\.es.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*analytics\\-ads\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*analyze\\-best\\-copywriting\\-services\\.party.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*analyze\\-extra\\-analytic\\-service\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ananumous\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*anapa\\-inns\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*andrewancheta\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*android\\-style\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*android\\-systems\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*android\\-vsem\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*android4fun\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*androids\\-store\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*animalphotos\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*animebox\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*animenime\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*annaeydlish\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*anrtmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*anti\\-crisis\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*anticrawler\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*antiguabarbuda\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*antonovich\\-design\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*anydesk\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aosheng\\-tech\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aoul\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*apartmentbay\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*apartmentratings\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*apilian\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*apishops\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*apollon\\-market\\-url\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*applepharma\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*apteka\\-doc\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*apteka\\-pharm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*apteka\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*apxeo\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arabic\\-poetry\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aramaicmedia\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arate\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arcadepages\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arcarticle\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*architecturebest\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arendadogovor\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arendakvartir\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arendas\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arendovalka\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*argo\\-visa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arkansale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arkartex\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arkkivoltti\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arpe\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arraty\\.altervista\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*artblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*artclipart\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*artdeko\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*artefakct\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*artpaint\\-market\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*artparquet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*artpress\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*artsmarket\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*arturs\\.moscow.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aruplighting\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*asacopaco\\.tk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ascotgoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*asia\\-forum\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ask\\-yug\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*asmxsatadriverin\\.aircus\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*astimvnc\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*asupro\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*asynt\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aszokshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*atlant\\-auto\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*atlasvkusov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*atleticpharm\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*atley\\.eu\\.pn.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*atmagroup\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*atoblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*atyks\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aucoinhomes\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*audiobangout\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ausergrubhof\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*australia\\-opening\\-times\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto\\-b2b\\-seo\\-service\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto\\-complex\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto\\-kia\\-fulldrive\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto\\-moto\\-elektronika\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto\\-news\\-digest\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto\\-seo\\-service\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto\\-seo\\-service\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto\\-zapchasti\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto\\.rusvile\\.lt.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*auto4style\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autoblog\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autobrennero\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autobudpostach\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autofuct\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autoloans\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autolombard\\-krasnodar\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*automate\\-amazon\\-affiliation\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*automobile\\-spec\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autonew\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autoseo\\-service\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autoseo\\-traffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autoseo\\-trial\\-for\\-1\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autoseoservice\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autoseotips\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autoservic\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autotop\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autovideobroadcast\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*autowebmarket\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avcoast\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avek\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aviapanda\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aviaseller\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aviav\\.ru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avitocars\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aviva\\-limoux\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avkzarabotok\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avkzarabotok\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avon\\-severozapad\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avtoarenda\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avtocredit\\-legko\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avtointeres\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avtorskoe\\-vino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avtovolop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*avtovykup\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*awency\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*aworlds\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*axcus\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ayerbo\\.xhost\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ayongoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*azadnegar\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*azartclub\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*azartniy\\-bonus\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*azazu\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*azbuka\\-mo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*azbukadiets\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*azbukafree\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*azlex\\.uz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*b\\-buyeasy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*b2b\\-lounge\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bablonow\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*baciakte\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*backgroundpictures\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*backlinks\\-fast\\-top\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bag77\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bahisgunceladresi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*baixar\\-musicas\\-gratis\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bala\\.getenjoyment\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*baladur\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*balakhna\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*balayazh\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*balitouroffice\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*balkanfarma\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*balkanfarma\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*balois\\.worldbreak\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bambi\\.ck\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*banan\\.tv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bankcrediti\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bankhummer\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bankiem\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*barbarahome\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bard\\-real\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bashtime\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*basisches\\-wasser\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*batietiket\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*batut\\-fun\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bausparen\\.bz\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bavariagid\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bavsac\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bazaronline24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bbtec\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bdf\\-tracker\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*beachtoday\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*beamfall\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*beauby\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*beauty\\-clinic\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*beauty\\-lesson\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*beclean\\-nn\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bedroomlighting\\.us.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*begalka\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*belinvestdom\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*belreferatov\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*berdasovivan\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*beremenyashka\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*berglion\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*berkinan\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*berlininsl\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*berrymall\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-deal\\-hdd\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-mam\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-offer\\-hdd\\-1\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-offer\\-hdd\\-1\\.space.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-offer\\-hdd\\-1\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-offer\\-hdd\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-offer\\-hdd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-ping\\-service\\-usa\\-1\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-ping\\-service\\-usa\\-1\\.space.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-ping\\-service\\-usa\\-1\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-ping\\-service\\-usa\\.blue.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-ping\\-service\\-usa\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-ping\\-service\\-usa\\.space.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-ping\\-service\\-usa\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-ping\\-service\\-usa\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-printmsk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-seo\\-offer\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-seo\\-service\\.tk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-seo\\-software\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*best\\-seo\\-solution\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestbookclub\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestchoice\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestempresas\\.es.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestfortraders\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*besthatcheries\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestleofferhdd\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestmobilityscooterstoday\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestofferfyhdd\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestofferhddacy\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestofferhddbyt\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestofferhddeed\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestofferhddity\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestofferifyhdd\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestofferswalkmydogouteveryday\\.gq.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestorofferhdd\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestplacetobuyeriacta\\.jw\\.lt.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestvpnrating\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestwebsiteawards\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bestwebsitesawards\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bet\\-prognoz\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bet\\-winner1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bet2much\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*betonka\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*betslive\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*betterhealthbeauty\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bettorschool\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*betune\\.onlinewebshop\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*betwinservice\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*beyan\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bez\\-zabora\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bezcmexa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bezlimitko\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bezprostatita\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bezsporno\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*beztuberkuleza\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bhf\\.vc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bibprsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bif\\-ru\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bigcities\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*biglistofwebsites\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*biketank\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*billiard\\-classic\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*billigerstrom\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*billyblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bimatoprost\\-careprost\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bimatoprost\\-careprost\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bin\\-brokers\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*binokna\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*binomo\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bio\\-japan\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bio\\-market\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bio\\.trade\\-jp\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bioca\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*biplanecentre\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bird1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*birzha\\-truda\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bisign\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bitcoin\\-ua\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bitcoins\\-forum\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bitcoins\\-forum\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bitcoins\\-forum\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bitcoins\\-forum\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bitcoins\\-live\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*biteg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bitniex\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*biz\\-law\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*biznesluxe\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*biznesrealnost\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*biznesschat\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bizru\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bki24\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bkns\\.vn.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*black\\-friday\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*black\\-tip\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blackhatworth\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blackle\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blackplanet\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blackwitchcraft\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blancablog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blavia\\.00author\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bleacherreport\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blockchaintop\\.nl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blockworld\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog\\.f00kclan\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog\\.koorg\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog\\.latuti\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog\\.remote\\-computer\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog\\.xsk\\.in.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog\\.yam\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog100\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog2019\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog2019\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blog4u\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogarun\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bloggen\\.be.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bloggers\\.nl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogig\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogking\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bloglag\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blognet\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogorganictraffic\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogos\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogping\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogs\\.rediff\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogseo\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogstar\\.fun.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogster\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogtotal\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogtraffic\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blogua\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*blue\\-square\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bluerobot\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bmusshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bo\\-vtb24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*board\\.f00d\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bobba\\.dzaba\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bodybuilding\\-shop\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*boleznikogi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bolezniorganov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*boltalko\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*boltushkiclub\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bombla\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bonkers\\.name.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bonniesblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bonus\\-betting\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bonus\\-spasibo\\-sberbank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bonus\\-vtb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bonux\\.nextview\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bookmaker\\-bet\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bookmark4you\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bookmark4you\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bookmark4you\\.com\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*books\\-top\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*boole\\.onlinewebshop\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*boost\\-my\\-site\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*boost24\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*boostmyppc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bosefux\\.esy\\.es.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bosman\\.pluto\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bostonline\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bot\\-traffic\\.icu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bot\\-traffic\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*botamycos\\.fr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bottraffic\\.live.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bottraffic143\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bottraffic329\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bottraffic4free\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bottraffic4free\\.host.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bottraffic999\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bouda\\.kvalitne\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bowigosale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bpro1\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bradleylive\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brains2\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brakehawk\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brandnewtube\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brandov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brateg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brauni\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bravica\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bravica\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bravica\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bravica\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bravica\\.news.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bravica\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bravica\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bravica\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bravica\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*break\\-the\\-chains\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*breget74\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brendbutik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*briankatrine\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brickmaster\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brillianty\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bristolhostel\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bristolhotel\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bristolhotel\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*britneyblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brk\\-rti\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brokergid\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brooklyn\\-ads\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brooklynsays\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brothers\\-smaller\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brus\\-vsem\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brus\\.city.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*brusilov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bsell\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*btcnix\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*btt\\-club\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*budilneg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*budmavtomatika\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*budpost\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bufetout\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bugof\\.gq.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buhproffi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buigas\\.00it\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buildnw\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buildwithwendy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buketeg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bukleteg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bulgaria\\-web\\-developers\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buqayy0\\.livejournal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bur\\-rk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*burger\\-imperia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*burn\\-fat\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*business\\-online\\-sberbank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buttons\\-for\\-website\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buttons\\-for\\-your\\-website\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buy\\-cheap\\-online\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buy\\-cheap\\-pills\\-order\\-online\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buy\\-forum\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buy\\-meds24\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buyantiviralwp\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buyessay3\\.blogspot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buyessaynow\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buyessayonline19\\.blogspot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buyfriend\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buyk\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buynorxx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buypharmacydrug\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buypillsonline24h\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buypillsorderonline\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buypuppies\\.ca.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buyscabiescream\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buytizanidineonline\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buytizanidineonlinenoprescription\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*buyviagraa\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bvps8\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bycontext\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*byme\\.se.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*bytimedance\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*c\\-english\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*c2bit\\.hk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*californianews\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*call\\-of\\-duty\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*callejondelpozo\\.es.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*calvet\\.altervista\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cancerfungus\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*candida\\-international\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*candida\\-society\\.org\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cannazon\\-market\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*canoncdriverq3\\.pen\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*canyougethighofftizanidine\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*canzoni\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carabela\\.com\\.do.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carbon\\-linger\\-hierarchy\\-suntan\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carder\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carder\\.tv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carders\\.ug.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cardiosport\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cardsdumps\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cardsharp1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cardul\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carezi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carfax\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carivka\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carloans\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carscrim\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carsdined\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carsnumber\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carson\\.getenjoyment\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*carsoncitypizza\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cartechnic\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casablancamanor\\.co\\.za.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cashforum\\.cc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-top3\\.fun.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-top3\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-top3\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-top3\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-top3\\.space.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-top3\\.website.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-v\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-vulkane\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-x\\-now\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casino\\-x\\.host.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casinosbewertung\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*casinox\\-jp\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*castingbank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*catalogs\\-parts\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*catherinemill\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*catterybengal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cattyhealth\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cauxmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cayado\\.snn\\.gr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cazino\\-v\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cazino\\-v\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cbcseward\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cbox\\.ws.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ccfullzshop\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*celestepage\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*celldog\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cenokos\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cenoval\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*centre\\-indigo\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*centrumcoachingu\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cercacamion\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*certifywebsite\\.win.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cezartabac\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cfsrating\\.sonicwall\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cgi2\\.nintendo\\.co\\.jp.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chainii\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*channel\\-badge\\-betray\\-volcanic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chastnoeporno\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chatmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chatrazvrat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chatroulette\\.life.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chcu\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cheap\\-trusted\\-backlinks\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cheapkeys\\.ovh.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cheappills24h\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chee\\-by\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chelyabinsk\\.dienai\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chelyabinsk\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cherrypointplace\\.ca.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cherubinimobili\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chimiver\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chinese\\-amezon\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chip35\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chipmp3\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chizhik\\-2\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*chomexun\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*choosecuisine\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ci\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ciarustde\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cigarpass\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cilolamall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cinemaenergy\\-hd\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ciproandtizanidine\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*citizenclsdriveri7\\.pen\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cityadspix\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*citybur\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cityreys\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*civilwartheater\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*clarithromycin500mg\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*clash\\-clans\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*classicakuhni\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cleandom\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cleaningservices\\.kiev\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*clicksor\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*climate\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*clmforexeu\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*clothing\\-deal\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cloudsendchef\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*club\\-lukojl\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*club\\-musics\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*club\\-samodelkin\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cmd\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cmrrsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cmseshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cobaltpro\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cocyq\\.inwtrade\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*coderstate\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*codq\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*codysbbq\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*coeus\\-solutions\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*coffeemashiny\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*coinswitch\\.cash.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*coldfilm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*coleso\\.md.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*collectinviolity\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*collegeessay19\\.blogspot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*columb\\.net\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cometorussia\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*comissionka\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*commentag\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*commerage\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*comp\\-pomosch\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-alex\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-alex\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-alexa\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-alexa\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-andrew\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-andrew\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-barak\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-barak\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-brian\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-brian\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-checker\\-7\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-don\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-don\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-donald\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-elena\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-elena\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-fred\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-fred\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-george\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-george\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-irvin\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-irvin\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-ivan\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-ivan\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-jack\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-jane\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-jess\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-jessica\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-john\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-josh\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-julia\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-julianna\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-margo\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-mark\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-mary\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-nelson\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-olga\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-viktor\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-walt\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-walter\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*compliance\\-willy\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*computer\\-remont\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*comuneshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*conciergegroup\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*concretepol\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*connectikastudio\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*constanceonline\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*constantaservice\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*construmac\\.com\\.mx.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*contextualyield\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-aa\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-bb\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-cc\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-dd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-ee\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-ff\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-gg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-hh\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-ii\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-jj\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-kk\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-ll\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-mm\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-nn\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-oo\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-pp\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-qq\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-rr\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-ss\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-tt\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-uu\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-vv\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-ww\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-xx\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-yy\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookie\\-law\\-enforcement\\-zz\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookielawblog\\.wordpress\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cookingmeat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cool\\-mining\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cool\\-wedding\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*coop\\-gamers\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*copblock\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*copyrightclaims\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*copyrightinstitute\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*coral\\-info\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cosmediqueresults\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*countravel\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*covadhosting\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*covblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*coverage\\-my\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*covetnica\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*covid\\-schutzmasken\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cowblog\\.fr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cp24\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cpnbshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cranly\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crazy\\-mining\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crd\\.clan\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*creams\\.makeforum\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*credit\\-card\\-tinkoff\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*credit\\-cards\\-online24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*credit\\.co\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*creditmoney\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crest\\-poloski\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crest3d\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crirussian\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cruiseraf\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crypto\\-bear\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crypto\\-bears\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crypto\\-mining\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crypto\\-wallets\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crypto1x1\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*crystalslot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cubook\\.supernew\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*curenaturalicancro\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*curenaturalicancro\\.nl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*customsua\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cutalltheshit\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cvety24\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cvta\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cxpromote\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cyber\\-monday\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cyclobenzaprinevstizanidine\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cymbaltaandtizanidine\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*cyprusbuyproperties\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*czcedu\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dacha\\-svoimi\\-rukami\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dailyblog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dailyrank\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dailyseo\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dailystorm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dailystrength\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dailytraffic\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dame\\-ns\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*damedingel\\.ya\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*damianis\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*danashop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*danceuniverse\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*danhale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dantk\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*daptravel\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*darcysassoon\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*darkbooks\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*darknet\\-hydra\\-onion\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*darknet\\.sb.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*darknetsitesguide\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*darleneblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*darodar\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*datsun\\-do\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dav\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*davilaonline\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dawlenie\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dbmkfhqk\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dbutton\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dcdcapital\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ddlmega\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ddpills\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*de\\.zapmeta\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dear\\-diary\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*deart\\-13\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*deda\\-moroza\\-zakaz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*deirdre\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dekorkeramik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*delayreferat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*delfin\\-aqua\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*delo\\.fund.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*deluxewatch\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*demenageur\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*den\\-noch24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dengi\\-v\\-kredit\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*denisecarey\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*deniseconnie\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*deniven\\.1bb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dent\\-home\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dentuled\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*depositfiles\\-porn\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*depositfiles\\-porn\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dermatovenerologiya\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*deryie\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*descargar\\-musica\\-gratis\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*descargar\\-musicas\\-gratis\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*design\\-lands\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*designdevise\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*detailedvideos\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*detalizaciya\\-tut\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*detective01\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*detki\\-opt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*detoolzon\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*detskie\\-konstruktory\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*detskie\\-zabavi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*deutsche\\-poesie\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dev\\-seo\\.blog.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*devochki\\-video\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dezeypmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dgdsoutlet\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*diarioaconcagua\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*diatelier\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dicru\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*diebesten\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dienai\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dienmaytot\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*diesel\\-parts28\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*digest\\-project\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*digilander\\.libero\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*digital\\-video\\-processing\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*digitalfaq\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dimkino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dinkolove\\.ya\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*diplom\\-nk\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*diplomas\\-ru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dipstar\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*directrev\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*discounttaxi\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*discover\\-prior\\-full\\-stack\\-services\\.party.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*discover\\-prior\\-ppc\\-service\\.party.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*discover\\-top\\-seo\\-service\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*distonija\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*divan\\-dekor\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dividendo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*diy\\-handmade\\-ideas\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*djekxa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*djonwatch\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*djstools\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dktr\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dldsshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dlya\\-android\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dms\\-sw\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dna\\-sklad\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dnepr\\-avtospar\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dneprsvet\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dnmetall\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*docs4all\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*docsarchive\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*docsportal\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*docstoc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doctmalls\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doctornadezhda\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*documentbase\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*documentserver\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*documentsite\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dodge\\-forum\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doeco\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doggyhealthy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dogovorpodryada\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dogshowsonice\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dogsrun\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dojki\\-devki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dojki\\-hd\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doktoronline\\.no.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dokumentalkino\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dom\\-international\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domain\\-tracker\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domashneeruporno\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domashniy\\-hotel\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domashniy\\-recepti\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dombestofferhdd\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domcran\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domik\\-derevne\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dominateforex\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domination\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dominterior\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dommdom\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domovozik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domoysshop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dompechey\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*domsadiogorod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*donvito\\.unas\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doreenblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doska\\-vsem\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dostavka\\-v\\-krym\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dostavka\\-v\\-ukrainu\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dosug\\-lux\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dosugrostov\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*download\\-of\\-the\\-warez\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*downloadkakaotalk\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*downloadmefiranaratb1972\\.xpg\\.com\\.br.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doxyporno\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doxysexy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*doyouknowtheword\\-flummox\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dprkboards\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*draniki\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dreamland\\-bg\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dreams\\-works\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*drev\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*driving\\.kiev\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*drugs\\-no\\-rx\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*drugspowerstore\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*drugstoreforyou\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*drupa\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*druzhbany\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*druzhininevgeniy63\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dspautomations\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dstroy\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*duitbux\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dumpsccshop\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dvd\\-famille\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dvk\\-stroi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dvr\\.biz\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*dzinerstudio\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*e\\-avon\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*e\\-buyeasy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*e\\-collantes\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*e\\-commerce\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*e\\-commerce\\-seo1\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*e\\-kwiaciarz\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*e\\-stroymart\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*e2click\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eandsgallery\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eaptekaplus\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*earn\\-from\\-articles\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*earnian\\-money\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*earnity\\-money\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*easycommerce\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*easync\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*easytuningshop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eavuinsr\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ecblog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ecommerce\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ecommerce\\-seo\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ecomp3\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*econom\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ecookna\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*edakgfvwql\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*edelstahlschornstein\\-123\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*editmedios\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*edmed\\-sonline\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ednetstore\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*edshopping\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eduardoluis\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*education\\-cz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*educhess\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*edudocs\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eduinfosite\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eduserver\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eecz\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eets\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ege\\-essay\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ege\\-krasnoyarsk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*egovaleo\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*egvar\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ek\\-invest\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ekatalog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ekaterinburg\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ekbspravka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eko\\-gazon\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ekobata\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ekoproekt\\-kr\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ekspertmed\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ekto\\.ee.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*el\\-nation\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elainasblog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eldoradorent\\.az.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*election\\.interferencer\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*electric\\-blue\\-industries\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*electricwheelchairsarea\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*electro\\-prom\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elegante\\-vitrage\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrikovich\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrischezi\\.canalblog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrischeziga\\.livejournal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrischezigarette1\\.blog\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrischezigarette1\\.onsugar\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrischezigarette2\\.devhub\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrischezigarette2\\.onsugar\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrischezigarettekaufen2\\.cowblog\\.fr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrischezigaretten1\\.blogse\\.nl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrischezigaretten2\\.beeplog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektronischezi\\.livejournal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektronischezigarette2\\.mex\\.tl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektronischezigarettekaufen1\\.beeplog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektronischezigarettekaufen1\\.myblog\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektronischezigarettekaufen2\\.tumblr\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrozigarette1\\.dreamwidth\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrozigarette2\\.webs\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrozigarette2\\.wordpressy\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrozigarettekaufen1\\.devhub\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrozigarettekaufen2\\.blogse\\.nl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrozigaretten1\\.postbit\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrozigaretten1\\.tumblr\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrozigaretten1\\.webs\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elektrozigaretten2\\.yn\\.lt.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elementspluss\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elenatkachenko\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elentur\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elidelcream\\.weebly\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elitesportsadvisor\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elizabethbruno\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elkacentr\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ellemarket\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elmifarhangi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eloconcream\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eloxal\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*elvel\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*embedle\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*emctestlab\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*emerson\\-rus\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*emicef\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*empire\\-market\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*empire\\-market\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*empiremarket\\-link\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*empiremarketlink24\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*empirestuff\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*empis\\.magix\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*encmbtia\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*energomash\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*energy\\-ua\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*energydiet\\-info\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*energydiet24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*energysexy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*enginebay\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*englishdictionaryfree\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*englishtopic\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*enter\\-unicredit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*entgetadsincome\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*envistore\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eonpal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*epcpolo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*epicdiving\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eraglass\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*erank\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eredijovon\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ereko\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*erias\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eric\\-artem\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ericshome\\.store.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*erinhome\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ero\\-video\\-chat\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*erofus\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eropho\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eropho\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*erot\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*erotag\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eroticheskij\\-video\\-chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*erotikstories\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*es\\-pfrf\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*es5\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*escort\\-russian\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*escortplius\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eshop\\.md.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eskei83\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*esnm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*esoterikforum\\.at.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*essaytags\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*estdj\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*este\\-line\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*etairikavideo\\.gr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*etehnika\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*etotupo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ets\\-2\\-mod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*etsfshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eu\\-cookie\\-law\\-enforcement\\-4\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eu\\-cookie\\-law\\-enforcement\\-5\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eu\\-cookie\\-law\\-enforcement\\-6\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eu\\-cookie\\-law\\-enforcement\\-7\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eu\\-cookie\\-law\\-enforcement1\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eu\\-cookie\\-law\\-enforcement2\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eu\\-cookie\\-law\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eu\\-cookie\\-law\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eurocredit\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*euromasterclass\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*euronis\\-free\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*europages\\.com\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*europeanwatches\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eurosamodelki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*euroskat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*evaashop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*event\\-tracking\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eventiyahall\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*evreuxshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*exchangeit\\.gq.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*exchanges\\-bet\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*exclusive\\-profit\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*exdocsfiles\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*execedmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*executehosting\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*exotic\\-video\\-chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*expdom\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*expediacustomerservicenumber\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*expert\\-find\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*expertnaya\\-ocenka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*explore\\-prior\\-web\\-service\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*express\\-vyvoz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*expresstoplivo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*extener\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*extener\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*extrabot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*extremez\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eyes\\-on\\-you\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*eyessurgery\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ez8motelseaworldsandiego\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettekaufen\\.myblog\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettekaufen1\\.hpage\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettekaufen2\\.blox\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettekaufen2\\.mpbloggar\\.se.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettekaufen2\\.yolasite\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettenkaufen1\\.deviantart\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettenkaufen1\\.pagina\\.gr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettenkaufen2\\.dreamwidth\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettenshop1\\.yolasite\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettenshop2\\.myblog\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigarettenshop2\\.postbit\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigaretteshop\\.webs\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigaretteshop2\\.mywapblog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezigaretteshop2\\.vefblog\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezofest\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ezrvrentals\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*f\\-loaded\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*f\\-online\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*f00kclan\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*f012\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*f07\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*f0815\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*f1nder\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*facebook\\-mobile\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fainaidea\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*faithe\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*falco3d\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*falcoware\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*family1st\\.ca.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*familyholiday\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*familyphysician\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fanoboi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fartunabest\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fashion\\-mk\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fashiong\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fashionindeed\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fast\\-wordpress\\-start\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fastgg\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fatrizscae\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*favorcosmetics\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*favoritemoney\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*favoritki\\-msk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*favornews\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fazika\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fba\\-mexico\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fbdownloader\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fbfreegifts\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fc\\-007\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fealq\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*feargames\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*feedback\\.sharemyfile\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*feedouble\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*feedouble\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*feel\\-planet\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*feeriaclub\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*feiacmr\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*feminist\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*femmesdenudees\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fenoyl\\.batcave\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ferieboligkbh\\.dk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fermersovet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fetishinside\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fialka\\.tomsk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fidalsa\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fierrohack\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*figensahin\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*filesclub\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*filesdatabase\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*filesvine\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*film\\-one\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*filmetricsasia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*filmgo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*filmidivx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*films2018\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*filter\\-ot\\-zheleza\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*financial\\-simulation\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*finansov\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*findacheaplawyers\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*finder\\.cool.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*findercarphotos\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fineblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*finstroy\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*finteks\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*firma\\-legion\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*firmgeo\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*firstblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fit\\-discount\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fitness\\-video\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fitodar\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fiuagts\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fiuxy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fiverr\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fix\\-website\\-errors\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fizika\\.tv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flash4fun\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flavors\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flex4launch\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flexderek\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*floating\\-share\\-buttons\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flooringinstallation\\-edmonton\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flowersbazar\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flowertherapy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flowwwers\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flprog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flyblog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*flytourisme\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fm\\-upgrade\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fmgrupe\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*foojo\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*for\\-marketersy\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*for\\-your\\.website.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forensicpsychiatry\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forex\\-indextop20\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forex\\-procto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forex\\.osobye\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forex21\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forexgb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forexunion\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forminecrafters\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forms\\-mtm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forpostlock\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forsex\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fortwosmartcar\\.pw.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forum\\-engineering\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forum\\.poker4life\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forum\\.tvmir\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forum20\\.smailik\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forum69\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*forums\\.toucharcade\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fotoxxxru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*foxinsocks\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*foxjuegos\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*foxtechfpv\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*foxweber\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fpclub\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fr\\.netlog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*francaise\\-poesie\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*frankofficial\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*frauplus\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-fb\\-traffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-fbook\\-traffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-floating\\-buttons\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-games\\-download\\.falcoware\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\-aaa\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\-bbb\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\-ccc\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\-ddd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\-eee\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\-fff\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-share\\-buttons\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\-aaa\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\-bbb\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\-ccc\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\-ddd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\-eee\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\-fff\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\-hhh\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\-iii\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons1\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons2\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons3\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons4\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons5\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons6\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-social\\-buttons7\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-traffic\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-video\\-chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-video\\-tool\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*free\\-website\\-traffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*freeasecret\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*freenode\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*freeseedsonline\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*freetangodownload\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*freewebs\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*freewhatsappload\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*freewlan\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*freshberry\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*freshnails\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*front\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*front\\.to.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fsalas\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fsin\\-pokypka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ftns\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fuck\\-paid\\-share\\-buttons\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fuel\\-gas\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fullzdumps\\.cc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fungirlsgames\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*funnypica\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*furniture\\-ukraine\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*furniturehomewares\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*futbolkisales\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fvetgoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*fxtips\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*g7m\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gabeshop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gabysuniqueboutique\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gael\\-s\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gagrasector\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*galaxy\\-family\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*galaxyflowers\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*galblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*galeon\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gamblingpp\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*game\\-mmorpg\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*game\\-top\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*game300\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*games\\.kolossale\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gammatraffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gandikapper\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gaokr\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gap\\-search\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*garantprava\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gardene\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gasvleningrade\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gatwick\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gays\\-video\\-chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gaz\\-voshod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gazel\\-72\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gazobeton\\-p\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gazoblok\\.net\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gbh\\-invest\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gcmx\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gcup\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gdcentre\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gearcraft\\.us.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gearsadspromo\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gelezki\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*geliyballon\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gelstate\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*generalporn\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*genericlowlatencyasiodriverhq\\.aircus\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*geniusfood\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gentamicineyedrops\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*georgeblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gepatit\\-info\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*germes\\-trans\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-best\\-copywriting\\-service\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-clickir\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-clickize\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-free\\-social\\-traffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-free\\-traffic\\-now\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-more\\-freeen\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-more\\-freeer\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-more\\-freeish\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-more\\-freeize\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-more\\-freele\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-morebit\\-free\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-prime\\-seo\\-services\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-seo\\-help\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*get\\-your\\-social\\-buttons\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getaadsincome\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getadsincomeian\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getadsincomely\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getadsincomeof\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getbottraffic4free\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getbottraffic4free\\.host.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getbottraffic4free\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getbytadsincome\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getfy\\-click\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getism\\-more\\-free\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getity\\-more\\-free\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getityadsincome\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getive\\-more\\-free\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getlamborghini\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getoutofdebtfree\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getprismatic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getpy\\-click\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getpy\\-more\\-free\\-visitors\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getrichquick\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getrichquickly\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*getyourprofit\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gevciamst\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gezlev\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gfaq\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ghazel\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ghernnqr\\.skyrock\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gheus\\.altervista\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ghostvisitor\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gidonline\\.one.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gidro\\-partner\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*giftbig\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*girlporn\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*girls\\-ufa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*girlsatgames\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gk\\-atlant\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gk\\-casino\\.fun.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gk\\-casino\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gk\\-casino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gk\\-casino\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gk\\-casino\\.space.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gk\\-casino\\.website.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gkvector\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*glall\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*glass\\-msk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*glavprofit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*glcomputers\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*glktfw\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*global\\-smm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*globalscam\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*globatur\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*globetrotting\\-culture\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*glogow\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*glopages\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*go2album\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gobongo\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goforexvps\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gogps\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gojiberriess\\.apishops\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gok\\-kasten\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goldandcard\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*golden\\-catalog\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*golden\\-praga\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goldenggames\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goldvaultmetals\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*golmau\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*golyedevushki\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gonextmedia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*good\\-potolok\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goodbyecellulite\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goodcoffeepremium\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goodhumor24\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goodnightjournal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goodprotein\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*google\\-liar\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*googlefeud\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*googlemare\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*googlsucks\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gorabagrata\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gorgaz\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goroda\\-vsego\\-mira\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gorodservis\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gosreg\\.amchs\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gototal\\.co\\.nz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gourcy\\.altervista\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*goyua\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gq\\-catalog\\.gq.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*graceonline\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*grafaman\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*grand\\-chlen\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*graphid\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gratuitbaise\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*greatblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*greatgrace\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*greentechsy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*grizzlysgrill\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*groshi\\-kredut\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*groupmoney\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*growmyfunds\\.ca.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*growshop\\.es.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*growth\\-hackingan\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*growth\\-hackingead\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*growth\\-hackingeads\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*growth\\-hackingor\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*growth\\-hackingy\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*grupografico\\-pilar\\.com\\.ar.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gruzchiki24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gsbs\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gsmlab\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gsmtlf\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gta\\-club\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gta\\-top\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gttpsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*guardlink\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*guardlink\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*guge\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*guidetopetersburg\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gungamesz\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*guruofcasino\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gwhwpxbw\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*gxcb\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*h2monline\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hacktougroup\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hagirkblog\\.space.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hahashka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*haikuware\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*halat\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*halefa\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hamyshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*handicapvansarea\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*handicapvantoday\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*handsandlegs\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hanink\\.biz\\.ly.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hankspring\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*happysong\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hard\\-porn\\.mobi.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hardcore\\.anzwers\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hardosale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*harpro\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*havepussy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hawaiisurf\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hazardky\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hd1080film\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hd720kino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hdfreeporno\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hdhc\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hdmoviecamera\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hdmoviecams\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hdmoviecams\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hdsmartvideoreg\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*headpharmacy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*healbio\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*healgastro\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*healing\\-dysplasia\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*healmytrauma\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*healthhacks\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*heeha\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hem\\.passagen\\.se.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hentai\\-manga\\.porn.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*heroero\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hexometer\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hifidesign\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hilaryblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hill\\-accent\\-withdraw\\-sentiment\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*himandmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hit\\-kino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hitree\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hitsbox\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hiwibyh\\.bugs3\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hiwpro\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hkdiiohi\\.skyrock\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hkjrsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hmmm\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hmywwogw\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hobild\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hol\\.es.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*holiday\\-shop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*holidaypics\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*holistickenko\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*holodkovich\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*home\\.myplaycity\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*homeafrikalike\\.tk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*homedo\\.fabpage\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*homeinns\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*homelygarden\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*homemade\\.gq.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*homemypicture\\.tk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*honesty\\-homemade\\-grizzly\\-humanlike\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hongfanji\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hoporno\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*horoshieokna\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*host\\-protection\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hostcritique\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hoste\\.octopis\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hostiman\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hosting\\-tracker\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hostingclub\\.lk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hostsshop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hotblognetwork\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hotdl\\.in.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hotspot\\.ipb\\.co\\.id.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hottour\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hotwatersdamps\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*houdom\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*housedesigning\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*housediz\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*housekuba\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*housemilan\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*houseofgaga\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*houseofrose\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*houston\\-vikings\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-i\\-build\\-website\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-i\\-promote\\-website\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-buy\\-bitcoin\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-buy\\-bitcoin\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-buy\\-bitcoins\\-cheap\\.party.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-buy\\-bitcoins\\-cheap\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-buy\\-bitcoins\\-cheap\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-buy\\-bitcoins\\-cheap\\.trade.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-buy\\-bitcoins\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-buy\\-bitcoins\\.trade.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-earn\\-quick\\-money\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-promote\\-website\\.faith.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*how\\-to\\-promote\\-website\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*howlongdoestizanidinestayinyoursystem\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*howmuchdoestizanidinecost\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*howopen\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*howtostopreferralspam\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*howtostopreferralspam\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hoztorg\\-opt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hplaserjetpdriver8y\\.pen\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hptwaakw\\.blog\\.fc2\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hrtonline\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hscsscotland\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hseipaa\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hsoutdoor\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hspline\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*https\\-legalrc\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hugblog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*huhn\\.altervista\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hulfingtonpost\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hully\\.altervista\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*humanorightswatch\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hundejo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*huntdown\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*husky\\-shop\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hustoon\\.over\\-blog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hvd\\-store\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-2019\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-2020\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-2020\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-centr\\.fun.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-dealer\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-guide\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-new\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-onion\\-faq\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-pc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-shop\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-site\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-slon\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-vhod2020\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\-zerkalo20\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra1717\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2\\.market.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2020\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2020gate\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2020market\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2020onion\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2020ru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2020zerkala\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2020zerkalo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra20onion\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra20online\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra20original\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2use\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydra2zahod\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraena\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydrahow\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydrahudra\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraland\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydramarket2020\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydramirror2020\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydranten\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraonion2019\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydrarusmarket\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraruz\\-2020\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraruzonion2020\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraruzonionx\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraruzxpnew4af\\.com\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraruzxpnew4af\\.ink.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraruzxpnew4aff\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraruzxpwnew4afonion\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydraulicoilcooler\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydrauliczny\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydravizoficial\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydrazerkalo2019\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydrazerkalo2020\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hydropump\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hyip\\-zanoza\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*hyipmanager\\.in.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*i\\-spare\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ialgramer\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iamsport\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ib\\-homecredit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ib\\-rencredit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iblogpress\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iceton\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ico\\.re.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ictizanidinehcl4mg\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*idc\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*idealtits\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ideayz\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*idegenvezeto\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ideibiznesa2015\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ieeeoutlet\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ifirestarter\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ifmo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*igadgetsworld\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*igamingtop\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*igru\\-xbox\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ilikevitaly\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*illagedusexe\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ilmen\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iloveitaly\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iloveitaly\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ilovevitaly\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ilovevitaly\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ilovevitaly\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ilovevitaly\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ilovevitaly\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ilovevitaly\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ilovevitaly\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*imediadesk\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iminent\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*immigrational\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*immobiliaremassaro\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*immobilieralgerie\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*imperia31\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*imperiafilm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*impotentik\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*impresagaia\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*in\\-mostbet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*in\\-sto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*inbabes\\.sexushost\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*inboxdollars\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*incanto\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*incitystroy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*incomekey\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*incoonline\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*increasewwwtraffic\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*indetiske\\.ya\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*indo\\-export\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*inet\\-shop\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*infazavr\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*infektsii\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*infobabki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*infodocsportal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*infogame\\.name.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*infokonkurs\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*inform\\-ua\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ingramreed\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*inmoll\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*innodgfdriverhm\\.aircus\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*insider\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*installspartners\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*instasexyblog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*insultu\\-net\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*intelhdgraphicsgtdrive6w\\.metroblog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*interferencer\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*interfucks\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*intermesh\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*internet\\-apteka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*intex\\-air\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*intimchats\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*intimver\\.3dgayxxx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*invest\\-pamm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*investingclub\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*investpamm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*investsuccess\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*invivo\\.hu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*inzn\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*io9\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ipod\\-app\\-reviews\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ipostroika\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iqoption\\-bin\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iqoption\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iqoption\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iradiology\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iridsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ishgetadsincome\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*isistaylorporn\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iskalko\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iskussnica\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*isotoner\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ispaniya\\-costa\\-blanca\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*istanbulit\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*istizanidineacontrolledsubstance\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*istizanidineanarcoticdrug\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*istizanidineanopiate\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*istizanidinelikexanax\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*istock\\-mebel\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*it\\-max\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*it\\-worlds\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*itbc\\.kiev\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*itrevolution\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*itronics\\.ca.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*itsdp3\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ivegetadsincome\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*iyfsearch\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*izamorfix\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*izhevsk\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*izhevskjob\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*izhstrelok\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*izi24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*j\\-times\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jabug\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jacblog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jackonline\\.store.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*janemill\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*janettabridal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*japfm\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jasonpartington\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jav\\-fetish\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jav\\-fetish\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jav\\-idol\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*javatex\\.co\\.id.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*javcoast\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*javlibrary\\.cc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jaxcube\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jazzstyle4us\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jeffbullas\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jennyfire\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jikem\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jintub\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jjbabskoe\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*job\\-opros\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*job\\-prosto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jobfree24\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jobgirl24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jobius\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*johnnyhaley\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*joinandplay\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*joingames\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*josephineblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*journalhome\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*joyceblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*joycee\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*judyandsimon\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*juliadiets\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*juliaworld\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jumkite\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*justkillingti\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*justprofit\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jweber\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jwss\\.cc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*jyrxd\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kaac\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabbalah\\-red\\-bracelets\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-5ka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-alfaclick\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-binbank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-card\\-5ka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-click\\-alfabank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-esia\\-gosuslugi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-faberlic\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-gosuslugi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-ipoteka\\-domclick\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-karta\\-5ka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-lk\\-megafon\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-lk\\-rt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-login\\-mts\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-mil\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-mos\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-my\\-beeline\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-my\\-pochtabank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-nalog\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-online\\-bm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-online\\-open\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-online\\-rsb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-online\\-rshb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-online\\-sberbank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-online\\-sovcombank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-online\\-vtb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-pfr\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-pfrf\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-platon\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-qiwi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-tele2\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-tinkoff\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-tricolor\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-ttk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kabinet\\-vtb24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kaircm\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kakablog\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kakadu\\-interior\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kakworldoftanks\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kalb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kambasoft\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kamin\\-sam\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kamorel\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kanakox\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*karachev\\-city\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*karadene\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*karapuz\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*karusel\\-market\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*katjimej\\.blog\\.fc2\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*katrd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*katushka\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kaz\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kazan\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kazka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kazlenta\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kazrent\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kellyonline\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kendrablog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kenyagoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kerch\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ketrzyn\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kevblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kevinsnow\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kexihao\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*keywords\\-monitoring\\-success\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*keywords\\-monitoring\\-your\\-success\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kharkov\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kharlov\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kidd\\.reunionwatch\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kierowca\\-praca\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kiev\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kimblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kinnarimasajes\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kino\\-filmi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kino\\-fun\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kino\\-key\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kino2018\\.cc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kinobaks\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kinobum\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kinoflux\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kinohit1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kinopolet\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kinosed\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kinostar\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kinotorka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kiprinform\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kiwe\\-analytics\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kiwi237au\\.tk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kiyany\\-za\\-spravedluvist\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kletkimehan\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*klfd\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kndxbkdx\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*knigonosha\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kochanelli\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kolcasale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*koleso24\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kollekcioner\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kolotiloff\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*komp\\-pomosch\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*komputernaya\\-pomosh\\-moscow\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*komputers\\-best\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*komukc\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kongoultry\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*konkursov\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*koopilka\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*koptims\\.tiu\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*koronirealestate\\.gr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kosova\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kosunnyclub\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kotaku\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kozhakoshek\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kozhasobak\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kozhniebolezni\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kpcconline\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krafte\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krasivoe\\-hd\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krasivoe\\-hd\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krasnodar\\-avtolombard\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krasnodar\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krasota\\-zdorovie\\.pw.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krasota\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kredutu\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kredytbank\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kruiz\\-sochi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krumble\\-adsde\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krumble\\-adsen\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krumble\\-adsic\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krumbleent\\-ads\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*krynica\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ktotut\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kumuk\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kupit\\-adenu\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kursy\\-ege\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kustanay\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kvartir\\-remont\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kvartira\\-sutochno\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kvartiry\\-remont\\.ucoz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*kw21\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*l2soft\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*la\\-fa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*labguamec\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*labplus\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*labvis\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ladov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lafppshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*laitrcus\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lakiikraski\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lalalove\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lambreshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*laminat\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lampokrat\\.ws.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lanasshop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*landliver\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*landoftracking\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*languagecode\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lankarns\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*laparfumotec\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lapitec\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*laptop\\-4\\-less\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*laptoper\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*larchik\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*larutti\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*laudit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-check\\-eight\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-check\\-nine\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-check\\-seven\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-check\\-two\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-aa\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-bb\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-bot\\-aa\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-bot\\-bb\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-bot\\-cc\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-bot\\-dd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-bot\\-ee\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-bot\\-ff\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-bot\\-hh\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-bot\\-ii\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-cc\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-check\\-eight\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-check\\-five\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-check\\-four\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-check\\-nine\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-check\\-one\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-check\\-six\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-check\\-three\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-check\\-two\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-dd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-ee\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-eight\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-ff\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-five\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-four\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-gg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-hh\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-one\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-seven\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-three\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-enforcement\\-two\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-five\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-four\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-one\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-six\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-three\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*law\\-two\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lawrenceblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*laxdrills\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*layola\\.biz\\.tc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lazy\\-z\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lcecshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*leadwayau\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*leboard\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lebowmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ledalfa\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*leddjc\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ledis\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ledpolice\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ledx\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*leeboyrussia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*legalrc\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lego4x4\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lenvred\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*leon\\-official\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lernur\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lerporn\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*leto\\-dacha\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*letolove\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*letsgotofriday\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*levaquin750mg\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lezbiyanki\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lflash\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*li\\-er\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lida\\-ru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lider82\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*life\\.biz\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lifebyleese\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lifespeaker\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ligastavok\\-in\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*light\\.ifmo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lighthearteds\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*likesdesign\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lilishopstogether\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lindsayblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*linerdrilling\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*link\\.web\\-list\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lipidofobia\\.com\\.br.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*liquimondo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lirunet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lisque\\.batcave\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*littleberry\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*live\\-sexchat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*live\\-xbet\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*livefixer\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*liveinternet\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*liveinternet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*livejournal\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*livia\\-pache\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*livingroomdecoratingideas\\.website.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*livingsimply\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lk\\-gosuslugi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lk\\-lk\\-rt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*llastbuy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lmrauction\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*loadopia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*local\\-seo\\-for\\-multiple\\-locations\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*login\\-tinkoff\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*loginduepunti\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*logo\\-all\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lol\\-smurfs\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lolz\\.guru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lolzteam\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lolzteam\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lomb\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lombardfinder\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lombia\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lombia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lomza\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*londonstratford\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lookover\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lost\\-alpha\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lotoflotto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*loveorganic\\.ch.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*low\\-format\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lowpricesiterx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lsex\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lsitenonrepeat\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*luckybull\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*luckyshop\\.net\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lukoilcard\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lumb\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*lutherstable\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*luton\\-invest\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*luxmagazine\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*luxup\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*luxurybet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*m\\-google\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*m\\.ok\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*m1media\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*macresource\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*madisonclothingny\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*madjonline\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*madot\\.onlinewebshop\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mafcards\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*magazintiande\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*magda\\-gadalka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*magento\\-crew\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*magicart\\.store.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*magicdiet\\.gq.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*magnetic\\-bracelets\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maigralr\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mail\\.allnews24\\.in.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mainhunter\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mainlinehobby\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*make\\-money\\-online\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*makedo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*makemoneyonline\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*makeprogress\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*makler\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maladot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*malbgoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*malls\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maltadailypost\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mamidushop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mamylik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*manimpotence\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*manipulyator\\-peterburg\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*manonstore\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*manualterap\\.roleforum\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*manwang\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maofengjx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*marathonbet\\-in\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*marblestyle\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*marcogrup\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maridan\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maridan\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*marihome\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*marinetraffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*marjorieblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*marketland\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*marktforschung\\-stuttgart\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*marmitaco\\.cat.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*martinahome\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*martlinker\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*massage\\-info\\.nl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*masserect\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*master\\-muznachas\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*masterseek\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mastershef\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*masturbate\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mathoutlet\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*matomete\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*matras\\.space.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mattgibson\\.us.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mature\\.free\\-websites\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*max\\-apprais\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maximilitary\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maxinesamson\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maxthon\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*maxxximoda\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mazda\\-roadsters\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mbiologi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mebel\\-alait\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mebel\\-arts\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mebel\\-ekb\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mebel\\-iz\\-dereva\\.kiev\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mebelcomplekt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mebeldekor\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mebeldekor\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*meblieco\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*med\\-dopomoga\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*med\\-recept\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*med\\-zdorovie\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*med\\-zdorovie\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medanestesia\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medbrowse\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medcor\\-list\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medi\\-fitt\\.hu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medic\\-al\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medicaltranslate\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medicinacom\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medicineseasybuy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medicovi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medictube\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medispainstitute\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medkletki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medkritika\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medmajor\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medosmotr\\-ufa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*meds\\-online24\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*medtherapy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*meduza\\-consult\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*meendo\\-free\\-traffic\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*megaapteka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*megakino\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*megalit\\-d\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*megapolis\\-96\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*megatkani\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*megavolt\\.net\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*melbet\\-in\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*melissahome\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*members\\.ghanaweb\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*memovn\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*menhealed\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mercanmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mere\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mericanmopedstore\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*meriton\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*meroyharte\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mesto\\-x\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*metallo\\-konstruktsii\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*metallosajding\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*metarip\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*metaxalonevstizanidine\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*meteocast\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*meuikcr\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mex\\-annushka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mhp\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mhrdmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*miaxxx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*micasainvest\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*michellblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*microsearch\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*microsoftportal\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*midnight\\.im.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mielec\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mifepriston\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*migente\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*migera\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*migronis\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mikozstop\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mikrobiologies\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mikrocement\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mikrozaim\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mikrozaym2you\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*minecraft\\-neo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*minecraft\\-rus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*minegam\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*minghaimuyuan\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mini\\.7zap\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*miningblack\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*minyetki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mir\\-betting\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mir\\-business\\-24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mir\\-limuzinov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mirfairytale\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mirmedinfo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mirobuvi\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mirobuvi\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mirtorrent\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mirzonru\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*misselle\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mister\\-shop\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mitrasound\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mixed\\-wrestling\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mksoap\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mksport\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mmdoors\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mmm\\.lc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mmm\\.sb.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mmog\\-play\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mmoguider\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mnogabukaff\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mobicover\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mobile\\.ok\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mobilemedia\\.md.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mobisport\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mobot\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mobplayer\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mobplayer\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mockupui\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*modabutik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*modforwot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*modnie\\-futbolki\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moe1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moesonce\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moi\\-glazki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moinozhki\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moiragracie\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moisadogorod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mokrayakiska\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mole\\.pluto\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*monarhs\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*monetizationking\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*money\\-every\\-day\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*money\\-for\\-placing\\-articles\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*money7777\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moneymaster\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moneytop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moneyzzz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*monicablog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*monitorwebsitespeed\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moomi\\-daeri\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moon\\.market.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moonci\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*more\\-letom\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*morf\\.snn\\.gr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*morlat\\.altervista\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moroccosurfadventures\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moscow\\-clining\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moscow\\-region\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moscow\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mosdverka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mosputana\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mosputana\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mosrif\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mossiemckenzie\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mossmesi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*most\\-kerch\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*most\\.gov\\.iq.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mostantikor\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mostbet\\-285\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mostbet\\-original\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mostcool\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mostorgnerud\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*motion\\-interactive\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mototsikl\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mountainstream\\.ms.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moy\\-dokument\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moy\\-evroopt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moyakuhnia\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moyaskidka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moyaterapiya\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moygorod\\-online\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*moyparnik\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mp3films\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mpftpupload\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mrbojikobi4\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mrcsa\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mriyadh\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mrmoneymustache\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mrt\\-info\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mrwhite\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*msk\\-diplomat\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*msk\\-sprawka\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mtras\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mtsguru\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mug\\-na\\-chas\\-moscow\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*muizre\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mukis\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mundoaberrante\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*muscle\\-factory\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*muscle\\-factory\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*music\\.utrolive\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*musicas\\.baixar\\-musicas\\-gratis\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*musichallaudio\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*musicprojectfoundation\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*musicstock\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*musicvidz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*muz\\-baza\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*muz\\-shoes\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*muznachas\\-service\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*muztops\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mvmagoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mwductwork\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*my\\-bc\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*my\\.opera\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mybestoffers\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*myborder\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mybuh\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mycaf\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mycheaptraffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mycollegereview\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mydirtystuff\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mydoctorok\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mydownloadengine\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mydownlodablefiles\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*myecomir\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*myfreemp3\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*myftpupload\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*myindospace\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mylida\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*myliveblog\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mypets\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*myplaycity\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*myprintscreen\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mysexpics\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mytherealshop\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*mytraffic\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*na\\-telefon\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*na15\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nacap\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nachalka21\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nagdak\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nakozhe\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nalogovyy\\-kodeks\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nancyblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nanochskazki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nanwar\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*naobumium\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*naphi\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*naphukete\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nardulan\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*narkologiya\\-belgorod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*narkologiya\\-orel\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*narkologiya\\-penza\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*narkologiya\\-peterburg\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*narkologiya\\-voronezh\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*narkomaniya\\-stop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*narosty\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*narutonaruto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nastroyke\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*natali\\-forex\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nate\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*natprof\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*naturalpharm\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*naval\\.jislaaik\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*navek\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nbok\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nbsproject\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nebbiasale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*needtosellmyhousefast\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*negral\\.pluto\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*net\\-profits\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*netallergy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nethouse\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*netlify\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*netpics\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nevansk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nevapotolok\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*new\\-apps\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*newagebev\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*newbieseoblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*newsfj\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*newsrosprom\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*newstaffadsshop\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*newstraveller\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*newstudio\\.tv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nextconseil\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nfocusdriver\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ngps1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nhmrcsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nhsports\\.cl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nicola\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nicolaonline\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*niki\\-mlt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nikitsyringedrivelg\\.pen\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ninacecillia\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*niuting\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nizniynovgorod\\.dienai\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nl\\.netlog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*no\\-rx\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*noclegonline\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nomerounddec\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nonews\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nordstar\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*notaria\\-desalas\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*notebook\\-pro\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*notfastfood\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*noumeda\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*novalskincare\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*novgorod\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*novosibirsk\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*novosti\\-avto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*novosti\\-hi\\-tech\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*novostic\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*now\\-hydra2020\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*npoet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ntdtv\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nubuilderian\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nucia\\.biz\\.ly.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nudepatch\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nudo\\.ca.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nufaq\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nullrefer\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nutriwestncahi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nuup\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nvformula\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nvkzsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nwrcz\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nyfinance\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*nyinfo\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*o\\-o\\-11\\-o\\-o\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*o\\-o\\-6\\-o\\-o\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*o\\-o\\-6\\-o\\-o\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*o\\-o\\-8\\-o\\-o\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*o\\-o\\-8\\-o\\-o\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*o\\-promyshlennosti\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*o00\\.in.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oblismall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*obnal\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*obnallpro\\.cc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*obsessionphrases\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*obuv\\-kupit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*obyavka\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*obzor\\-casino\\-x\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*obzor\\-casino\\-x\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ochistka\\-stokov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*odesproperty\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*odiabetikah\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*odsadsmobile\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*odywpjtw\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ofermerah\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*offers\\.bycontext\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*office\\-windows\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*office2web\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*officedocuments\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*offtime\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ogorodnic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ok\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oklogistic\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*okna\\-systems\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*okno\\.ooo.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*okoshkah\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*okroshki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oktube\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oledonline\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*olovoley\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*olvanto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*omega\\.best.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*omsk\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*one\\-a\\-plus\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*one\\-gear\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onefilms\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onenews24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onion20hydra\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onionhydra\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onionshydra\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-akbars\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-binbank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-hit\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-intim\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-mkb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-pharma\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-pochtabank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-raiffeisen\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-sbank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-templatestore\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-video\\-chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-vostbank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-vtb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\-x\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*online\\.ktc45\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlinebay\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlinedic\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlinedomains\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlinefilmz\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlineserialy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlinetvseries\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlinewot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlinewritingjobs17\\.blogspot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onload\\.pw.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlyforemont\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlythegames\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*onlywoman\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oohlivecams\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ooo\\-gotovie\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ooo\\-olni\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oooh\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*openfrost\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*openfrost\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*openlibrary\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*openmediasoft\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ops\\.picscout\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*optitrade24\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*optsol\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oqex\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oracle\\-patches\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*orakul\\.spb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oranga\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*order\\-prime\\-smm\\-service\\.party.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ordernorxx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*orel\\-reshka\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oren\\-cats\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*origin\\-my\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ororodnik\\.goodbb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*osb\\.se11\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*osoznanie\\-narkotikam\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*osteochondrosis\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ostroike\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ostrovtaxi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*otbelivanie\\-zubov\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*otdbiaxaem\\-vmeste\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*otdyx\\-s\\-komfortom\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*oudallas\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ourtherapy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*outshop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ovirus\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*own\\-ahrefs\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ownshop\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*owohho\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ozas\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*p\\-business\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*paceform\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pacobarrero\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pageinsider\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*paidonlinesites\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*painting\\-planet\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*palma\\-de\\-sochi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*palvira\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*palvira\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pamjatnik\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pammik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pamyatnik\\-spb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pamyatnik\\-tsena\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pandoshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*paparazzistudios\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*paperwritingservice17\\.blogspot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*paradontozanet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*parcsmalls\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*paretto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*parking\\-invest\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*partizan19\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*partnerskie\\-programmy\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*patonsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*paulinho\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pay\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*paydayonlinecom\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pc\\-services\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pechikamini\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pecmastore\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pensplan\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pensplan4u\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*penzu\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*percin\\.biz\\.ly.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*perfection\\-pleasure\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*perform\\-like\\-alibabaity\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*perform\\-likeism\\-alibaba\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*perimetor\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*perm\\.dienai\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*perm\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*perper\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*perso\\.wanadoo\\.es.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*personalhoro\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*petedrummond\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*petroleumgeo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*petrovka\\-online\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*petrushka\\-restoran\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*petscar\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pfrf\\-kabinet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pharm\\-\\-shop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*phimarshcer\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*phimmakinhdi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*phobia\\.us.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*photo\\-clip\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*photo\\.houseofgaga\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*photochki\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*photokitchendesign\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*photorepair\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*php\\-market\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*physfunc\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*picscout\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*picturesmania\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pills24h\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*piluli\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pinkduck\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pinupcasinos\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pinupcasinos1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pinupp1\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pipki\\.pp\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*piratbike\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pirateday\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pirelli\\-matador\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pisze\\.pisz\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*piter\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*piulatte\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pizdeishn\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pizdeishn\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pizza\\-imperia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pizza\\-tycoon\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pk\\-pomosch\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pk\\-services\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pkr1hand\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*plagscan\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*plastweb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*platesauto\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*platinumdeals\\.gr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*plohaya\\-kreditnaya\\-istoriya\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*plusnetwork\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pochemychka\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*podarkilove\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*poddon\\-moskva\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*podemnik\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*podseka1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pogodnyyeavarii\\.gq.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pogosh\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pogruztehnik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*poisk\\-zakona\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*poiskzakona\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pokemongooo\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*poker\\-royal777\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pokupaylegko\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*polcin\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*polemikon\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*politika\\.bg.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*polyana\\-skazok\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pomoc\\-drogowa\\.cba\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pony\\-business\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*popads\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*popelina\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pops\\.foundation.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*popugauka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*popugaychiki\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*popular\\-church\\-arrow\\-voucher\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*popup\\-fdm\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*popup\\-hgd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*popup\\-jdh\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porn\\-video\\-chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porn\\-w\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porndl\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornhive\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornhub\\-forum\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornhub\\-forum\\.uni\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornhub\\-ru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornhubforum\\.tk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porno\\-asia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porno\\-chaman\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porno\\-dojki\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porno\\-gallery\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porno\\-play\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porno\\-raskazy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porno\\-transsexuals\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porno\\-video\\-chati\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porno2xl\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornobest\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornoblood\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornobrazzers\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornodojd\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornoelita\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornofiljmi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornoforadult\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornofoto\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornogig\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornohd1080\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornokajf\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornoklad\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornoklad\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornokorol\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornonik\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornophoto\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornoplen\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornorasskazy\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornosemki\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornoslave\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pornotubexxx\\.name.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*porodasobak\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*portal\\-eu\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*portnoff\\.od\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*portnoff\\.od\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*poshiv\\-chehol\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*positive2b\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pospektr\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*postclass\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*posteezy\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*potolokelekor\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*povodok\\-shop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*powitania\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pozdravleniya\\-c\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pozdrawleniya\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pozdrawleniya\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pozvonim\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pp\\-budpostach\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pravoholding\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*predmety\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prezidentshop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*priceg\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pricheskaonline\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pricheski\\-video\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*primfootball\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*primoblog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*princeadvantagesales\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*print\\-technology\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*printie\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*printingpeach\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*priora\\-2\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*privatbank46\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*private\\-service\\.best.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*privatov\\-zapisi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*privhosting\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prizesk\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prizrn\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prlog\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pro\\-okis\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*probenzo\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*procrafts\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prodaemdveri\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*producm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prodvigator\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prodvigator\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*proekt\\-gaz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*proekt\\-mos\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*professionalsolutions\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*professionalwritingservices15\\.blogspot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*profnastil\\-moscow\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*proftests\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*progressive\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prohoster\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prointer\\.net\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prointer\\.net\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*projectforte\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*projefrio\\.com\\.br.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prokotov\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prom23\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prombudpostach\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*promodj\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*promoforum\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*promoteapps\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*promotion\\-for99\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pron\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pronekut\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*proposal\\-engine\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*propranolol40mg\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*proquoshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prosmibank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-almata\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-astana\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-belgoroda\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-kharkova\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-kiev\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-novgoroda\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-odessa\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-rostova\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-rostova\\.ru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-tolyatti\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-tyumeni\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostitutki\\-yaroslavlya\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*prostoacc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*psa48\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*psiosale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pskcijdc\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*psn\\-card\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*psvita\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*psychocryonics\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ptashkatextil\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ptfic\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*punch\\.media.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*purchasepillsnorx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*puteshestvennik\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*putevka24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*putitin\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*puzo2arbuza\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*puzzleweb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*pyrodesigns\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*q\\-moto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*qcstrtvt\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*qexyfu\\.bugs3\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*qitt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*qoinex\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*qtrstar\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*qualitymarketzone\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*quick\\-seeker\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*quickchange\\.cc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*quit\\-smoking\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*qwarckoine\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*qwesa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*qxnr\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*r\\-control\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rabot\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rabotaetvse\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rachelblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*radiogambling\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rainbirds\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ranedaly\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rangapoker\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rangjued\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rank\\-checker\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rankchecker\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ranking2017\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rankings\\-analytics\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ranksays\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rankscanner\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ranksignals\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ranksonic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ranksonic\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ranksonic\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ranksonic\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rapevideosmovies\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rapidgator\\-porn\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rapidhits\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rapidsites\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*raschtextil\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rasteniya\\-vs\\-zombi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ratraiser\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rattan\\.co\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*raymondblog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*razamicroelectronics\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*razborka\\-skoda\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rb\\-str\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rcb101\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rczhan\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*real\\-time\\-analytics\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*realnye\\-otzyvy\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*realresultslist\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*realting\\-moscow\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*recinziireale\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*recipedays\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*recipedays\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rednise\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*redraincine\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*refererx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*refpawro\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*refudiatethissarah\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*reginablog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*reginanahum\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*regionshop\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*registratciya\\-v\\-moskve\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*reklama\\-i\\-rabota\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*reklama1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*reklamnoe\\.agency.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*reklamuss\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*releshop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rembash\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remedyotc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remkompov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remmling\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remont\\-comp\\-pomosh\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remont\\-fridge\\-tv\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remont\\-komputerov\\-notebook\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remont\\-kvartirspb\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remont\\-mobile\\-phones\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remont\\-ustanovka\\-tehniki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remontgruzovik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remontvau\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remote\\-dba\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*remotecomputingservices\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rent2spb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rentalmaty\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*replica\\-watch\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*replicaclub\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*research\\.ifmo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*resell\\-seo\\-services\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*resellerclub\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*residualforlife\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*responsive\\-test\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*respublica\\-otel\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*resurs\\-2012\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*retreatia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*reversing\\.cc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*revolgc\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*reyel1985\\.webnode\\.fr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rezeptiblud\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rfavon\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rfd\\-split\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rfesc\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rialp\\.getenjoyment\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*richinvestmonitor\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rida\\.tokyo.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*riedismall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rietisvi\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rightenergysolutions\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ring4rhino\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ringporno\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rique\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*risparmiocasa\\.bz\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rkmbonline\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*robocheck\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*robot\\-forex\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*roleforum\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*roma\\-kukareku\\.livejournal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*roof\\-city\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*room\\-mebel\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ros\\-ctm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rospromtest\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rossanasaavedra\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rossmark\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rostov\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*royal\\-betting\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*royal\\-casino\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*royal\\-casino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*royal\\-casinos\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*royal\\-casinos\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*royal\\-cazino\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*royal\\-cazino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*royal\\-investments\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rozalli\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*roznica\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rp9\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rrutw\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rspectr\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ru\\-lk\\-rt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ru\\-onion\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ru\\-online\\-sberbank\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ruex\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rufreechats\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ruhydraru\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ruinfocomp\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rulate\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rumamba\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*runetki\\-online\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*runovschool\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*runstocks\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rupolitshow\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rus\\-lit\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rus\\-teh\\.narod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ruscams\\-com\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ruscopybook\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rusenvironmental\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rusexy\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rusoft\\-zone\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ruspoety\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*russia\\-tao\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*russia\\-today\\-video\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*russian\\-postindex\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*russian\\-translator\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*russian\\-videochats\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*russintv\\.fr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*russkie\\-sochineniya\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*russkoe\\-zdorovie\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rustag\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rutor\\.group.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rvtv\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rxshop\\.md.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*rybalka\\-opt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*s\\-forum\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*s\\-luna\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sabaapress\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sabinablog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sack\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sad\\-torg\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sady\\-urala\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sahohev\\.000host\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*saitevpatorii\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sakhboard\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sale\\-japan\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*saletool\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*saltspray\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*salutmontreal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*samanthablog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*samara\\-airport\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*samara\\-comfort\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*samchist\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*samlaurabrown\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*samo\\-soznanie\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*samogonius\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sanatorrii\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sanjosestartups\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*santaren\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*santasgift\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*santechnik\\.jimdo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*santehnovich\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sapaship\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sarafangel\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sarahmilne\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*saratov\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sarf3omlat\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sashagreyblog\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*saudegoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sauna\\-v\\-ufe\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sauni\\-lipetsk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sauni\\-moskva\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*savetubevideo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*savetubevideo\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*savne\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sax\\-sex\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sbdl\\.no.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sbornik\\-zakonov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sc\\-specialhost\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-alex\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-alexa\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-andrew\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-barak\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-brian\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-don\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-donald\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-elena\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-fred\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-george\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-irvin\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-ivan\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-jack\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-jane\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-jess\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-jessica\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-john\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-josh\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-julia\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-julianna\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-margo\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-mark\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-marwin\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-mary\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-nelson\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-olga\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-viktor\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-walt\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-walter\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scanner\\-willy\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scansafe\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scat\\.porn.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scenarii\\-1\\-sentyabrya\\.uroki\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*school\\-diplomat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sciedsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*score\\-prime\\-web\\-service\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*screen\\-led\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*screentoolkit\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*scripted\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sdelai\\-prosto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sdelatmebel\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sdi\\-pme\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*search\\-error\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*search\\-helper\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*searchencrypt\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*searchlock\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seccioncontrabajo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*secret\\.xn\\-\\-oogle\\-wmc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*secretscook\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*security\\-corporation\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*securityallianceservices\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*see\\-your\\-website\\-here\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seekanvdoo22\\.live.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seisasale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seksotur\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sel\\-hoz\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*selfhotdog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sell\\-fb\\-group\\-here\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*semalt\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*semalt\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*semalt\\.semalt\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*semaltmedia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*semxiu\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*senacertificados\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*senger\\.atspace\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seo\\-2\\-0\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seo\\-b2b\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seo\\-platform\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seo\\-services\\-b2b\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seo\\-services\\-wordpress\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seo\\-smm\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seo\\-tips\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seo\\-traffic\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seoanalyses\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seobook\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seocheckupx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seocheckupx\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seoexperimenty\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seojokes\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seokicks\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seopub\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seoriseome\\.netlify\\.app.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seoservices2018\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*serenamall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*serialsway\\.ucoz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*serialsx\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*servemlixo\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*servisural\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*serw\\.clicksor\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*seryeznie\\-znakomstva\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*setioweb\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sex\\-dating\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sex\\-porno\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sex\\-spying\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sex\\-videochats\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexkrasivo\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexpornotales\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexreliz\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexreliz\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexsaoy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexuria\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexvideo\\-sex\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexvporno\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexwife\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexy\\-girl\\-chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexyali\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexyteens\\.hol\\.es.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sexytrend\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sfd\\-chess\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shagtomsk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shakhtar\\-doneck\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shamcisale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shanscasino1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*share\\-button\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*share\\-buttons\\-for\\-free\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*share\\-buttons\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sharebutton\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sharebutton\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sharebutton\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sharebutton\\.to.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sharemyfile\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shariki\\-zuma\\-lines\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shcrose\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sheki\\-spb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shemy\\-vishivki\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shiksabd\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shinikiev\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ship\\-marvel\\.co\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shisenshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shisha\\-swag\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shlyahten\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shnyagi\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shodanhq\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shop\\-electron\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shop\\-garena\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shop\\.garena\\.ru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shop\\.xz618\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shop2hydra\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shop4fit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shopfishing\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shoppinglocation\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shoppingmiracles\\.co\\.uk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shoprybalka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shops\\-ru\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shopsellcardsdumps\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shopvilleroyboch\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shopwme\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shtaketniki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shtormmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*shulepov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sib\\-kukla\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sibecoprom\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sibkukla\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sideeffectsoftizanidine\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sign\\-service\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*signx\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sihugoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*silverage\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*silvergull\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*silvermature\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sim\\-dealer\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sim\\-service\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*similarmoviesdb\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*simoncinicancertherapy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*simple\\-share\\-buttons\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*simplepooltips\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sims\\-sims\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sinel\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sinestesia\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*singularwebs\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sinhronperevod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*siongetadsincome\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sirhoutlet\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*siritshop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sisiynas\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*site\\-auditor\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*site\\-speed\\-check\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*site\\-speed\\-checker\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*site3\\.free\\-share\\-buttons\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*site5\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*siteexpress\\.co\\.il.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*siteripz\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sitesadd\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sitevaluation\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sitevaluation\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sivs\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sjmsw\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sk\\.golden\\-praga\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ski\\-centers\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*skidku\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*skinali\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*skinali\\.photo\\-clip\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sklad\\-24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*skladvaz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sky\\-mine\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*skylta\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sladkoevideo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slashpet\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slavic\\-magic\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slavkokacunko\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sledstvie\\-veli\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slftsdybbg\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slkrm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slomm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slonechka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sloopyjoes\\.com\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slotron\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slow\\-website\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*slujbauborki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*smailik\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*small\\-game\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*small\\-games\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*smartpet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*smartphonediscount\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sms2x2\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*smstraf\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*smt4\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*smzt\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*snabs\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*snaiper\\-bg\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sneakerfreaker\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*snegozaderzhatel\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*snip\\.to.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*snip\\.tw.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*snjatie\\-geroinovoy\\-lomki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*snomer1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*snyatie\\-lomki\\-v\\-stacionare\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soaksoak\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soblaznu\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soc\\-econom\\-problems\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soc\\-proof\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*socas\\.pluto\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sochi\\-3d\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-button\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-aa\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-aaa\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-bb\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-bbb\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-cc\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-ccc\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-dd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-ddd\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-ee\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-eee\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-ff\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-fff\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-gg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-ggg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-hh\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-ii\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\-iii\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-buttons\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-fun\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-s\\-ggg\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-s\\-hhh\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-s\\-iii\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-search\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-traffic\\-1\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-traffic\\-2\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-traffic\\-3\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-traffic\\-4\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-traffic\\-5\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-traffic\\-6\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-traffic\\-7\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-vestnik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*social\\-widget\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*socialbookmarksubmission\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*socialbutton\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*socialbuttons\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*socialine\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*socialseet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*socialtrade\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sofit\\-dmd\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soft\\-program\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*softomix\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*softomix\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*softomix\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*softomix\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*softtor\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*softxaker\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sohoindia\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soki\\.tv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*solartek\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*solitaire\\-game\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*solnplast\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sonata\\-arctica\\.wz\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*songoo\\.wz\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sonnikforme\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sonyelektronik\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sosdepotdebilan\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sotkal\\.lark\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soundfrost\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soup\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*souvenirua\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sovetogorod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sovetskie\\-plakaty\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soviet\\-portal\\.do\\.am.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sowhoz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*soyuzexpedition\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sp\\-laptop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sp\\-zakupki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*space2019\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spacebarnot\\.work.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spain\\-poetry\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spartania\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spb\\-plitka\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spb\\-scenar\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spbchampionat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*special\\-porn\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*specstroy36\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*speedup\\-my\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spin2016\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sport\\-video\\-obzor\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sportbetfair\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sportobzori\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sportwizard\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spravka130\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spravkavspb\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spravkavspb\\.work.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sprawka\\-help\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spscmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spuemonti\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spy\\-app\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*spy\\-sts\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sqadia\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*squarespace\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*squidoo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*srecorder\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sribno\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ssn\\.is.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sssexxx\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ssve\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*st\\-komf\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sta\\-grand\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stairliftstrue\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*star61\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stardevine\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stariy\\-baku\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*start\\.myplaycity\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*startraffic\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*startufa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*startwp\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stat\\.lviv\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*statashop\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*static\\.seders\\.website.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*statustroll\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stauga\\.altervista\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stavimdveri\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*steame\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*steelmaster\\.lv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stiralkovich\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stocktwists\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stoki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stoletie\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stoliar\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stomatologi\\.moscow.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stop\\-nark\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stop\\-zavisimost\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*store\\-rx\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*strady\\.org\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*strana\\-krasoty\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*strana\\-solnca\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stream\\-tds\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*streetfire\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*streetfooduncovered\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*streha\\-metalko\\.si.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*strigkaomsk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroi\\-24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroicol\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroimajor\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroiminsk\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroiminsk\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stromerrealty\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*strongholdsb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*strongtools\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroy\\-matrix\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroyalp\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroydetali\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroyka\\-gid\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroyka47\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stroymonolit\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*studentguide\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*studiofaca\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stuff\\-about\\-money\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stuffhydra\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*stylecaster\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*styro\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*su1ufa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*success\\-seo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*suckoutlet\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sudachitravel\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sugarkun\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sugvant\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sundrugstore\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*super\\-seo\\-guru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*superiends\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*supermama\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*supermesta\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*supermodni\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*supernew\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*superoboi\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*superpages\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*superslots\\-casino\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*superslots\\-casino\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*superslots\\-cazino\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*superslots\\-cazino\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*superslotz\\-casino\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*superslotz\\-cazino\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*supertraffic\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*supervesti\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*surflinksmedical\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*susanholtphotography\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*suzanneboswell\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svadba\\-teplohod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svarbit\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svarog\\-jez\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svensk\\-poesi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svet\\-depo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svetka\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svetlotorg\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svetoch\\.moscow.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svetodiodoff\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svoimi\\-rukamy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*svs\\-avto\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*swagbucks\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*swaplab\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sweet\\.tv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*sygraem\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*szansadlarolnikow\\.com\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*t\\-machinery\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*t\\-rec\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*t3chtonic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*taartstore\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tagmeanvice\\.live.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*taihouse\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tam\\-gde\\-more\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tamada69\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tammyblog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*targetpay\\.nl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tasteidea\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tastyfoodideas\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tattoo\\-stickers\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tattoo33\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tattooha\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*taximytishi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tccp\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tcenavoprosa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tcsinksale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tcyh\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*td\\-33\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*td\\-abs\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*td\\-l\\-market\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*td\\-perimetr\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tdbatik\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tds\\-west\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*teastory\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*techart24\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*technika\\-remont\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*technopellet\\.gr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tecspb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tedxrj\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tedy\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*teedle\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tehngr\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*telegramdownload10\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*telesvoboda\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*telfer\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*teman\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tennis\\-bet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tentcomplekt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*teplohod\\-gnezdo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*teplokomplex\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*teplolidoma\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*terapist\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*teresablog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tesla\\-audit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*teslathemes\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*test\\-extra\\-full\\-stack\\-services\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*test\\-prime\\-smm\\-service\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*test\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*texbaza\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*texnika\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tgsubs\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tgtclick\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thaimassage\\-slon\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thaoduoctoc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*the\\-torrent\\-tracker\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*the\\-usa\\-games\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*the\\-world\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*theautoprofit\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thebluenoodle\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thecoral\\.com\\.br.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thedownloadfreeonlinegames\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thedownloadfromwarez\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thefds\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thegreensociety\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*theguardlan\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*theheroes\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thejournal\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thelotter\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thepokertimer\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*therealshop\\.exaccess\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thesensehousehotel\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thesmartsearch\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thewomenlife\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thiegs\\.reco\\.ws.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*thin\\.me\\.pn.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tiandeural\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tiens2010\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*timeallnews\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*timer4web\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*timetorelax\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*timmy\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tip8\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidine4mg\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidine4mgprice\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidine4mgstreetprice\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidine4mgstreetvalue\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidine4mgtablets\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidine4mguses\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidine6mg\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineandcipro\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineandgabapentin\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineandhydrocodone\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinecapsules\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinecost\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinedosage\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinedosageforsleep\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinedruginteractions\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinedrugtest\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineduringpregnancy\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinefibromyalgia\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineformigraines\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineforopiatewithdrawal\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehcl2mg\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehcl2mgsideeffects\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehcl2mgtablet\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehcl4mgisitanarcotic\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehcl4mgtab\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehcl4mgtabinfo\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehcl4mgtablet\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehclsideeffects\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehydrochloride2mg\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineinfo\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineingredients\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineinteractions\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinemusclerelaxant\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinenarcotic\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineonline\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineoral\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineorflexeril\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinepain\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinepills\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinerecreationaluse\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinerestlesslegsyndrome\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineshowupondrugtest\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinesideeffects\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinesideeffectsweightloss\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinesleepaid\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinestreetprice\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinestreetvalue\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidineusedfor\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinevscyclobenzaprine\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinevssoma\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinevsvalium\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinewithdrawal\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinewithdrawalsymptoms\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tizanidinezanaflex\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tkanorganizma\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tksn\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tocan\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tocan\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tokshow\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*toloka\\.hurtom\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tomatis\\.gospartner\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tomck\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tommysautomotivecare\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*top\\-gan\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*top\\-instagram\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*top\\-kasyna\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*top\\-l2\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*top1\\-seo\\-service\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*top10\\-online\\-games\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*top10\\-way\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*top250movies\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*top8\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*topgurudeals\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*topmebeltorg\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*topmira\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*toposvita\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*topquality\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*topseoservices\\.co.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*topshef\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*topvidos\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tor\\.vc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*torobrand\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*torontoplumbinggroup\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*torospa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*torrentgamer\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*torrentred\\.games.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*torrents\\-tracker\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*torrnada\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*torture\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*totppgoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*touchmods\\.fr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tourburlington\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tovaroboom\\.vast\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tpu\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*track\\-rankings\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tracker24\\-gps\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trade365\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traderzplanet\\.co\\.in.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trafaret74\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trafers\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traffic\\-cash\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traffic\\-paradise\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traffic2cash\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traffic2cash\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traffic2cash\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traffic2money\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trafficbot\\.life.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trafficbot4free\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trafficdrive\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trafficgenius\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trafficmonetize\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trafficmonetizer\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trafficstudio\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traffictomoney\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trahvid\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tramadolandtizanidine\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*transit\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*transsex\\-videochat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traphouselatino\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*travel\\-semantics\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*travgoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*traxdom\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trex\\-casino\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trex\\.casino.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tri\\-slona\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trick\\-negotiation\\-cup\\-wonder\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tricolortv\\-online\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trieste\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trion\\.od\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trion\\.od\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*triumf\\-realty\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trk\\-4\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*trubywriting\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*truck\\-spite\\-lawyer\\-activity\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*truebeauty\\.cc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tsatu\\.edu\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tsc\\-koleso\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tsstcorpcddvdwshbbdriverfb\\.aircus\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ttechno\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tuberkulezanet\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tuberkuleznik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tudusale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tula\\.mdverey\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tuningdom\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tupper\\-posuda\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tupper\\-shop\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*turbo\\-suslik\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*turist\\-strani\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*turkeyreport\\.tk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*turvgori\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tvand\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tvfru\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tvgoals\\.tv.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tvoystartup\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*twincitiescarservice\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*twojebook\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*twsufa\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*twu\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tytoona\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*tyumen\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*u\\-cheats\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*u17795\\.netangels\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ua\\-company\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ua\\.tc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uaecdsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uasb\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ublaze\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ucanfly\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ucban\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uchebavchehii\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uchil\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ucoz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ucsfstore\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ucsol\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uctraffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*udav\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ufa\\.dienai\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ufa\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ufolabs\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uginekologa\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ukrainian\\-poetry\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ukrcargo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ukrtvory\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ukstmalls\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ul\\-potolki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ultimateuninstall\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*um\\-razum\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*umg\\-stroy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*umityangin\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*undergroundcityphoto\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uni\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*unibus\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*unimodemhalfduplefw\\.pen\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uniqgen\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*unitygame3d\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*univerfiles\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*unlimitdocs\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*unmaroll\\.ya\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*unpredictable\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*upcronline\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptime\\-alpha\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptime\\-as\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptime\\-beta\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptime\\-delta\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptime\\-eu\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptime\\-gamma\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptime\\-us\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptime\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptimebot\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uptimechecker\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ural\\-buldozer\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*urbanblog\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*urbanchr\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*urblog\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*urccvfmc\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*urlopener\\.blogspot\\.com\\.au.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*urlopener\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*urlumbrella\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uruto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*us\\-america\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*usadacha\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*userequip\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uslugi\\-tatarstan\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ussearche\\.cf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ustion\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uterkysale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*utrolive\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uusmsale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uyut\\-dom\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uyutmaster73\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uzpaket\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*uzungil\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*v\\-casino\\.fun.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*v\\-casino\\.host.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*v\\-casino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*v\\-casino\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*v\\-casino\\.website.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*v\\-casino\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*v\\-cazino\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*v\\-cazino\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vabasa\\.inwtrade\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vaderenergy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vadimkravtcov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*valid\\-cc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*validccseller\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*validus\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*valkiria\\-tk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vanessablog\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vape\\-x\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vapmedia\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vapsy\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vardenafil20\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*varikozdok\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vashsvet\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vavada\\-casino\\.host.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vavada\\-casino\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vavada\\-cazino\\.host.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vavada\\-cazino\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vavilone\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vbabule\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vbikse\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vc\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vchulkah\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vduplo\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*veerotech\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vegascosmetics\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vekzdorov\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*veles\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*velobikestock\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*veloland\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*venta\\-prom\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ventelnos\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ventopt\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*veronicablog\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vescenter\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*veselokloun\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vesnatehno\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vesnatehno\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vesta\\-lada\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vetbvc\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vezdevoz\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vezuviy\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vgoloveboli\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*via\\-gra\\.webstarts\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*viagra\\-soft\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*viagra\\.pp\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*viagroid\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*viandpet\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*viberdownload10\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*video\\-\\-production\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*video\\-chat\\.in.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*video\\-girl\\-online\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*video\\-hollywood\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*video\\-woman\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videochat\\-dating\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videochat\\.guru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videochat\\.mx.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videochat\\.tv\\.br.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videochat\\.world.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videochaty\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videofrost\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videofrost\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videokrik\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videos\\-for\\-your\\-business\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videosbox\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videotop\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*videotuber\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vidzwap\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*viel\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vigrx\\-original\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*viktoria\\-center\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vilingstore\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vinsit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vip\\-dom\\.in.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vip\\-parfumeria\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vipsiterip\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*virtchats\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*virtual\\-love\\-video\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*virtual\\-sex\\-chat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*virtual\\-sex\\-time\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*virtual\\-sex\\-videochat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*virtual\\-zaim\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*virtualbb\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*virus\\-schutzmasken\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*visa\\-china\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*visa\\-pasport\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vita\\.com\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vitanail\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*viven\\.host\\.sk.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vizag\\.kharkov\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vk\\-mus\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vk\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vkak\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vkonche\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vkontaktemusic\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vkontarkte\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vksaver\\-all\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vksex\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vladhistory\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vladtime\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vltai\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vmnmvzsmn\\.over\\-blog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vod\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vodabur\\.by.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vodaodessa\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*voditeltrezviy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vodkoved\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*volgograd\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*volond\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*voloomoney\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*volume\\-pills\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*voprosotvet24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*voronezh\\.xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vostgard\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vostoktrade\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vote\\-up\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vozbujdenie\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vpdr\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vpnhowto\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vrazbor59\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vriel\\.batcave\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vrnelectro\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vrnhnmall\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vrotike\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vsdelke\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vseigru\\.one.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vseigry\\.fun.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vseprobrak\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vsesubwaysurfers\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vseuznaem\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vucms\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vulkan\\-nadengi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vulkan\\-oficial\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vulkanrussia1\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vykup\\-avto\\-krasnodar\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vykupavto\\-krasnodar\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vzheludke\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vzlom\\-na\\-zakaz\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vzubah\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vzube\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*vzubkah\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*w2mobile\\-za\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*w3javascript\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*w7s\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wakeupseoconsultant\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wallabag\\.malooma\\.bzh.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wallet\\-prlzn\\.space.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wallinside\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wallpaperdesk\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wallpapers\\-all\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wallpapers\\-best\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wallpapersdesk\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wallstore\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wandamary\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wapsite\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*warmex\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*warningwar\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wasabisale\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*watch\\-movies\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wave\\-games\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wayfcoin\\.space.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wbjm\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wcb\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wdfdocando\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wdss\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*we\\-ping\\-for\\-youian\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*we\\-ping\\-for\\-youic\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*web\\-analytics\\.date.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*web\\-betting\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*web\\-lazy\\-services\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*web\\-list\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*web\\-revenue\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*web\\.cvut\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*webalex\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*webinstantservice\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*webix\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*webjam\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*weblibrary\\.win.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*webmaster\\-traffic\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*webmonetizer\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*webradiology\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*webs\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-analytics\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-analyzer\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-errors\\-scanner\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-promotion\\.bid.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-promotion\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-promotion\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-promotion\\.win.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-seo\\.bid.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-seo\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-seo\\.win.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-smm\\.bid.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-smm\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-smm\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\-smm\\.win.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\.review.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\.stream.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-services\\.win.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-speed\\-check\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-speed\\-checker\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-speed\\-up\\.site.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-speed\\-up\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*website\\-stealer\\-warning\\-alert\\.hdmoviecams\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*websitebottraffic\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*websitebottraffic\\.host.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*websites\\-reviews\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*websocial\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*webtherapy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*weburlopener\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wedding\\-salon\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*weebly\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*weekes\\.biz\\.tc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*weightatraining\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*weightbelts\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*welck\\.octopis\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*welcomeauto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*weprik\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wetgames\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wfdesigngroup\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*whatistizanidine2mg\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*whatistizanidinehclusedfor\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*whatsappdownload10\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*whereiskentoday\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wicivow\\.007h\\.ml.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wikes\\.20fr\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*williamrobsonproperty\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*winx\\-play\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*witherrom55\\.eklablog\\.fr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wjxmenye\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wmasterlead\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wnoz\\.de.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*woman\\-h\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*woman\\-orgasm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*woman\\-tampon\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*womens\\-journal\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*womensplay\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*womensterritory\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wordpress\\-crew\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wordpresscore\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*work\\-from\\-home\\-earn\\-money\\-online\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*workius\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*workona\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*works\\.if\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*world\\-mmo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*worldgamenews\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*worldhistory\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*worldis\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*worldlovers\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*worldmed\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*worldofbtc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wormix\\-cheats\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wowas31\\.ucoz\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*woweb\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wpnull\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wptraffic\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wrazilwispolecznie\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wrc\\-info\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*writingservices17\\.blogspot\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wrona\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wstroika\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wufak\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wurr\\.voila\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ww1943\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ww2awards\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*www\\-lk\\-rt\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*www\\.gelendzhic\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*www1\\.free\\-share\\-buttons\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*wzgyyq\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*x\\-lime\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*x\\-lime\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*x\\-musics\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*x\\-stars\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*x5market\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xaker26\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xbaboon\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xboxster\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xexe\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xfire\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xgftnlrt\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xion\\.cash.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xjrul\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xkaz\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xlolitka\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xmnb\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-\\-\\-\\-53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-\\-\\-6cdbciescapvf0a8bibwx0a1bu\\.xn\\-\\-90ais.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-\\-6kcaacnblni5c5bicdpcmficy\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-\\-6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-\\-6kcamwewcd9bayelq\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-\\-7kcaaxchbbmgncr7chzy0k0hk\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-\\-7kceclhb4abre1b4a0ccl2fxch1a\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-\\-8kcatubaocd1bneepefojs1h2e\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-\\-clckdac3bsfgdft3aebjp5etek\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-7sbabb9a1b7bddgm6a1i\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-7sbabhjc3ccc5aggbzfmfi\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-7sbabhv4abd8aih6bb7k\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-7sbabm1ahc4b2aqff\\.su.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-7sbabn5abjehfwi8bj\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-7sbaphztdjeboffeiof6c\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-7sbbpe3afguye\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-7sbho2agebbhlivy\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-8sbaki4azawu5b\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-8sbarihbihxpxqgaf0g1e\\.xn\\-\\-80adxhks.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-8sbbjimdeyfsi\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-8sbdbjgb1ap7a9c4czbh\\.xn\\-\\-p1acf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-8sbhefaln6acifdaon5c6f4axh\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-8sblgmbj1a1bk8l\\.xn\\-\\-\\-\\-161\\-4vemb6cjl7anbaea3afninj\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-8sbowe2akbcd4h\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-8sbpmgeilbd8achi0c\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-btbdvdh4aafrfciljm6k\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-ctbbcjd3dbsehgi\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-ctbfcdjl8baejhfb1oh\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-ctbigni3aj4h\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-dtbffp5aagjgfm\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-ftbeoaiyg1ak1cb7d\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-gtbdb0beu1bb8gj\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-itbbudqejbfpg3l\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-\\-\\-jtbjfcbdfr0afji4m\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-78\\-6kc6akkhn3a3k\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-78\\-6kcmzqfpcb1amd1q\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80aaafbn2bc2ahdfrfkln6l\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80aaajbdbddwj2alwjieei2afr3v\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80aaajkrncdlqdh6ane8t\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80aaaks3bbhabgbigamdr2h\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80aabcsc3bqirlt\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80aanaardaperhcem4a6i\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80ab4aa2g\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80adaggc5bdhlfamsfdij4p7b\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80adgcaax6acohn6r\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80aeahghtf8ac5i\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80aeb6argv\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80aebzmbfeebe\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80ahdheogk5l\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80ahvj9e\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80ajbshivpvn2i\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-80ajjbdhgmudixfjc8c5a9df8b\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-90acenikpebbdd4f6d\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-90acjmaltae3acm\\.xn\\-\\-p1acf.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-90adhhccf5aeewt7j\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-b1adccayqiirhu\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-b1ag5cfn\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-b1agm2d\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-c1acygb\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-d1abj0abs9d\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-d1aifoe0a9a\\.top.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-e1aaajzchnkg\\.ru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-e1aahcgdjkg4aeje6j\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-e1agf4c\\.xn\\-\\-80adxhks.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-e1aggki3c\\.xn\\-\\-80adxhks.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-h1ahbi\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-hxazdsfy\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-l1aengat\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-mhg\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-oogle\\-wmc\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xn\\-\\-q1a\\.xn\\-\\-b1aube0e\\.xn\\-\\-c1acygb\\.xn\\-\\-p1ai.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xnxx\\-n\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xolodremont\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xpert\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xportvusbdriver8i\\.snack\\.ws.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xpresscare\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xrp\\-ripple\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xrus\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xsion\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xtraffic\\.plus.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xtrafficplus\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xtrafficplus\\.online.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xtrafficplus\\.shop.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xtrafficplus\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xtubeporno\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xvideosbay\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xxart\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xxx\\-treker\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xxxhamster\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xxxtube69\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xxxvideochat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xz618\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*xzlive\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yaderenergy\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yaminecraft\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yeartwit\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yellowstonevisitortours\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yes\\-com\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yes\\-do\\-now\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yhirurga\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ykecwqlixx\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*ynymnwbm\\.bloger\\.index\\.hr.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yodse\\.io.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yoga4\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youandcredit\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youbloodyripper\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youdesigner\\.kz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yougame\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yougetsignal\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youghbould\\.wordpress\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youhack\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youjizz\\.vc.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youporn\\-forum\\.ga.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youporn\\-forum\\.uni\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youporn\\-ru\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*your\\-good\\-links\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*your\\-tales\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yourdesires\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youresponsive\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yourothersite\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yoursearch\\.me.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yourserverisdown\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yoursite\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yourtraffic\\.club.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youtoner\\.it.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*youtubedownload\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yqpc\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yuarra\\.pluto\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yubikk\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yugk\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yugo\\-star\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yunque\\.pluto\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yur\\-p\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yurcons\\.pro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yurgorod\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*yuristproffi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zagadki\\.in\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zahodi2hydra\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zahvat\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zaidia\\.xhost\\.ro.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zaim\\-pod\\-zalog\\-krasnodar\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zaimhelp\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zajm\\-pod\\-zalog\\-nedvizhimosti\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zakazfutbolki\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zakaznoy\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zakazvzloma\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zakis\\-azota24\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zakisazota\\-official\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zakon\\-ob\\-obrazovanii\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zaloadi\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zamolotkom\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zapnado\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zarabotat\\-na\\-sajte\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zarabotat\\-v\\-internete\\.biz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zarenica\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zastenchivosti\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zastroyka\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zavod\\-gm\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zazagames\\.org.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zdesformula\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zdesoboi\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zdm\\-auto\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zdm\\-auto\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zdorovie\\-nogi\\.info.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zebradudka\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zelena\\-mriya\\.com\\.ua.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zeleznobeton\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zerocash\\.msk\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zexhgoods\\.xyz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zhcsapp\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zhoobintravel\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zhorapankratov7\\.blogspot\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zigarettenonl\\.canalblog\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zigarettenonlinekaufen\\.tumblr\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zigarettenonlinekaufen1\\.bloog\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zigarettenonlinekaufen1\\.blox\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zigarettenonlinekaufen2\\.bloog\\.pl.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zigarettenonlinekaufen2\\.drupalgardens\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zigzog\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zlatnajesen\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zmoda\\.hostreo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*znakomstva\\-moskva77\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*znakomstva\\-piter78\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*znakomstvaonlain\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*znaniyapolza\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zojirushi\\-products\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zolotoy\\-lis\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zonefiles\\.bid.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zoominfo\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zot\\.moscow.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zt\\-m\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zuchn\\.com.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zverokruh\\-shop\\.cz.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zvetki\\.ru.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zvooq\\.eu.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zvuker\\.net.*$ [NC,OR]\nRewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*zyzzcentral\\.ru.*$ [NC]\nRewriteRule ^(.*)$ – [F,L]\n\n</IfModule>\n\n<IfModule mod_setenvif.c>\n\nSetEnvIfNoCase Referer 0\\-0\\.fr spambot=yes\nSetEnvIfNoCase Referer 000free\\.us spambot=yes\nSetEnvIfNoCase Referer 007agent\\-i\\.fr spambot=yes\nSetEnvIfNoCase Referer 00author\\.com spambot=yes\nSetEnvIfNoCase Referer 00go\\.com spambot=yes\nSetEnvIfNoCase Referer 00it\\.com spambot=yes\nSetEnvIfNoCase Referer 01casino\\-x\\.ru spambot=yes\nSetEnvIfNoCase Referer 033nachtvandeliteratuur\\.nl spambot=yes\nSetEnvIfNoCase Referer 03e\\.info spambot=yes\nSetEnvIfNoCase Referer 03p\\.info spambot=yes\nSetEnvIfNoCase Referer 0n\\-line\\.tv spambot=yes\nSetEnvIfNoCase Referer 1\\-88\\.vip spambot=yes\nSetEnvIfNoCase Referer 1\\-99seo\\.com spambot=yes\nSetEnvIfNoCase Referer 1\\-best\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 1\\-free\\-share\\-buttons\\.com spambot=yes\nSetEnvIfNoCase Referer 100\\-reasons\\-for\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 100dollars\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 100searchengines\\.com spambot=yes\nSetEnvIfNoCase Referer 101flag\\.ru spambot=yes\nSetEnvIfNoCase Referer 11235813\\.webzdarma\\.cz spambot=yes\nSetEnvIfNoCase Referer 12\\-reasons\\-for\\-seo\\.net spambot=yes\nSetEnvIfNoCase Referer 12masterov\\.com spambot=yes\nSetEnvIfNoCase Referer 12u\\.info spambot=yes\nSetEnvIfNoCase Referer 15\\-reasons\\-for\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 16lv\\.com spambot=yes\nSetEnvIfNoCase Referer 1hwy\\.com spambot=yes\nSetEnvIfNoCase Referer 1kinobig\\.ru spambot=yes\nSetEnvIfNoCase Referer 1kreditzaim\\.ru spambot=yes\nSetEnvIfNoCase Referer 1pamm\\.ru spambot=yes\nSetEnvIfNoCase Referer 1st\\-urist\\.ru spambot=yes\nSetEnvIfNoCase Referer 1webmaster\\.ml spambot=yes\nSetEnvIfNoCase Referer 1wek\\.top spambot=yes\nSetEnvIfNoCase Referer 1winru\\.ru spambot=yes\nSetEnvIfNoCase Referer 1x\\-slot\\.site spambot=yes\nSetEnvIfNoCase Referer 1x\\-slots\\.site spambot=yes\nSetEnvIfNoCase Referer 1xbet\\-entry\\.ru spambot=yes\nSetEnvIfNoCase Referer 1xbetcc\\.com spambot=yes\nSetEnvIfNoCase Referer 1xbetonlines1\\.ru spambot=yes\nSetEnvIfNoCase Referer 1xbetportugal\\.com spambot=yes\nSetEnvIfNoCase Referer 1xbetts\\.ru spambot=yes\nSetEnvIfNoCase Referer 1xslot\\-casino\\.online spambot=yes\nSetEnvIfNoCase Referer 1xslot\\-casino\\.ru spambot=yes\nSetEnvIfNoCase Referer 1xslot\\-casino\\.site spambot=yes\nSetEnvIfNoCase Referer 1xslot\\.site spambot=yes\nSetEnvIfNoCase Referer 1xslots\\-africa\\.site spambot=yes\nSetEnvIfNoCase Referer 1xslots\\-brasil\\.site spambot=yes\nSetEnvIfNoCase Referer 1xslots\\-casino\\.site spambot=yes\nSetEnvIfNoCase Referer 1xslots\\.africa spambot=yes\nSetEnvIfNoCase Referer 1xslots\\.site spambot=yes\nSetEnvIfNoCase Referer 2\\-best\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 2\\-easy\\.xyz spambot=yes\nSetEnvIfNoCase Referer 2\\-go\\-now\\.xyz spambot=yes\nSetEnvIfNoCase Referer 2015god\\.org spambot=yes\nSetEnvIfNoCase Referer 24chasa\\.bg spambot=yes\nSetEnvIfNoCase Referer 24h\\.doctor spambot=yes\nSetEnvIfNoCase Referer 24videos\\.tv spambot=yes\nSetEnvIfNoCase Referer 24x7\\-server\\-support\\.site spambot=yes\nSetEnvIfNoCase Referer 256bit\\.by spambot=yes\nSetEnvIfNoCase Referer 273\\-fz\\.ru spambot=yes\nSetEnvIfNoCase Referer 2ads\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer 2itech\\.ru spambot=yes\nSetEnvIfNoCase Referer 2kata\\.ru spambot=yes\nSetEnvIfNoCase Referer 2nt\\.ru spambot=yes\nSetEnvIfNoCase Referer 2your\\.site spambot=yes\nSetEnvIfNoCase Referer 3\\-best\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 3\\-letter\\-domains\\.net spambot=yes\nSetEnvIfNoCase Referer 3dgame3d\\.com spambot=yes\nSetEnvIfNoCase Referer 3dracergames\\.com spambot=yes\nSetEnvIfNoCase Referer 3waynetworks\\.com spambot=yes\nSetEnvIfNoCase Referer 4\\-best\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 40momporntube\\.com spambot=yes\nSetEnvIfNoCase Referer 45en\\.ru spambot=yes\nSetEnvIfNoCase Referer 45tahunkhongguan\\.com spambot=yes\nSetEnvIfNoCase Referer 4inn\\.ru spambot=yes\nSetEnvIfNoCase Referer 4ip\\.su spambot=yes\nSetEnvIfNoCase Referer 4istoshop\\.com spambot=yes\nSetEnvIfNoCase Referer 4webmasters\\.com spambot=yes\nSetEnvIfNoCase Referer 4webmasters\\.org spambot=yes\nSetEnvIfNoCase Referer 4xcasino\\.ru spambot=yes\nSetEnvIfNoCase Referer 5\\-best\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 5\\-steps\\-to\\-start\\-business\\.com spambot=yes\nSetEnvIfNoCase Referer 5elementov\\.ru spambot=yes\nSetEnvIfNoCase Referer 5forex\\.ru spambot=yes\nSetEnvIfNoCase Referer 6\\-best\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 69\\-13\\-59\\.ru spambot=yes\nSetEnvIfNoCase Referer 6hopping\\.com spambot=yes\nSetEnvIfNoCase Referer 7\\-best\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 70casino\\.online spambot=yes\nSetEnvIfNoCase Referer 76brighton\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer 76brighton\\.com spambot=yes\nSetEnvIfNoCase Referer 7kop\\.ru spambot=yes\nSetEnvIfNoCase Referer 7makemoneyonline\\.com spambot=yes\nSetEnvIfNoCase Referer 7milliondollars\\.com spambot=yes\nSetEnvIfNoCase Referer 7ooo\\.ru spambot=yes\nSetEnvIfNoCase Referer 7zap\\.com spambot=yes\nSetEnvIfNoCase Referer 8\\-best\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 84lv\\.com spambot=yes\nSetEnvIfNoCase Referer 8xv8\\.com spambot=yes\nSetEnvIfNoCase Referer 9\\-best\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer 99\\-reasons\\-for\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer QIWI\\.xyz spambot=yes\nSetEnvIfNoCase Referer a\\-elita\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer a\\-hau\\.mk spambot=yes\nSetEnvIfNoCase Referer a14download\\.com spambot=yes\nSetEnvIfNoCase Referer abacoasale\\.xyz spambot=yes\nSetEnvIfNoCase Referer abaiak\\.com spambot=yes\nSetEnvIfNoCase Referer abbanreddy\\.com spambot=yes\nSetEnvIfNoCase Referer abc\\.xyz spambot=yes\nSetEnvIfNoCase Referer abcdefh\\.xyz spambot=yes\nSetEnvIfNoCase Referer abcdeg\\.xyz spambot=yes\nSetEnvIfNoCase Referer abclauncher\\.com spambot=yes\nSetEnvIfNoCase Referer abiente\\.ru spambot=yes\nSetEnvIfNoCase Referer abovetherivernc\\.com spambot=yes\nSetEnvIfNoCase Referer abtasty\\.com spambot=yes\nSetEnvIfNoCase Referer abuser\\.shop spambot=yes\nSetEnvIfNoCase Referer academia\\-nsk\\.org spambot=yes\nSetEnvIfNoCase Referer acads\\.net spambot=yes\nSetEnvIfNoCase Referer acarreo\\.ru spambot=yes\nSetEnvIfNoCase Referer account\\-my1\\.xyz spambot=yes\nSetEnvIfNoCase Referer accs\\-store\\.ru spambot=yes\nSetEnvIfNoCase Referer actata\\.co spambot=yes\nSetEnvIfNoCase Referer actualremont\\.ru spambot=yes\nSetEnvIfNoCase Referer acunetix\\-referrer\\.com spambot=yes\nSetEnvIfNoCase Referer adanih\\.com spambot=yes\nSetEnvIfNoCase Referer adcash\\.com spambot=yes\nSetEnvIfNoCase Referer addblueoff\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer adelachrist\\.top spambot=yes\nSetEnvIfNoCase Referer adelly\\.bg spambot=yes\nSetEnvIfNoCase Referer adf\\.ly spambot=yes\nSetEnvIfNoCase Referer adpostmalta\\.com spambot=yes\nSetEnvIfNoCase Referer adrenalinebot\\.net spambot=yes\nSetEnvIfNoCase Referer adrenalinebot\\.ru spambot=yes\nSetEnvIfNoCase Referer adspart\\.com spambot=yes\nSetEnvIfNoCase Referer adtiger\\.tk spambot=yes\nSetEnvIfNoCase Referer adult\\-video\\-chat\\.ru spambot=yes\nSetEnvIfNoCase Referer adultfullhd\\.com spambot=yes\nSetEnvIfNoCase Referer adventureparkcostarica\\.com spambot=yes\nSetEnvIfNoCase Referer advertisefree\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer adviceforum\\.info spambot=yes\nSetEnvIfNoCase Referer advocatemsk\\.ru spambot=yes\nSetEnvIfNoCase Referer advokateg\\.co spambot=yes\nSetEnvIfNoCase Referer advokateg\\.com spambot=yes\nSetEnvIfNoCase Referer advokateg\\.ru spambot=yes\nSetEnvIfNoCase Referer advokateg\\.xyz spambot=yes\nSetEnvIfNoCase Referer aerodizain\\.com spambot=yes\nSetEnvIfNoCase Referer aerogo\\.com spambot=yes\nSetEnvIfNoCase Referer aerotour\\.ru spambot=yes\nSetEnvIfNoCase Referer affiliate\\-programs\\.biz spambot=yes\nSetEnvIfNoCase Referer affordablewebsitesandmobileapps\\.com spambot=yes\nSetEnvIfNoCase Referer afora\\.ru spambot=yes\nSetEnvIfNoCase Referer afshan\\.shop spambot=yes\nSetEnvIfNoCase Referer agreda\\.pluto\\.ro spambot=yes\nSetEnvIfNoCase Referer agro\\-gid\\.com spambot=yes\nSetEnvIfNoCase Referer agtl\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer ahecmarket\\.xyz spambot=yes\nSetEnvIfNoCase Referer ahhjf\\.com spambot=yes\nSetEnvIfNoCase Referer ahrefs\\.com spambot=yes\nSetEnvIfNoCase Referer ai\\-seo\\-services\\.com spambot=yes\nSetEnvIfNoCase Referer aibolita\\.com spambot=yes\nSetEnvIfNoCase Referer aidarmebel\\.kz spambot=yes\nSetEnvIfNoCase Referer aimeesblog\\.xyz spambot=yes\nSetEnvIfNoCase Referer aimiot\\.net spambot=yes\nSetEnvIfNoCase Referer aitiman\\.ae spambot=yes\nSetEnvIfNoCase Referer akama\\.com spambot=yes\nSetEnvIfNoCase Referer akmussale\\.xyz spambot=yes\nSetEnvIfNoCase Referer akuhni\\.by spambot=yes\nSetEnvIfNoCase Referer akusherok\\.ru spambot=yes\nSetEnvIfNoCase Referer akvamaster\\.dp\\.ua spambot=yes\nSetEnvIfNoCase Referer alborzan\\.com spambot=yes\nSetEnvIfNoCase Referer albuteroli\\.com spambot=yes\nSetEnvIfNoCase Referer alcobutik24\\.com spambot=yes\nSetEnvIfNoCase Referer alert\\-fdm\\.xyz spambot=yes\nSetEnvIfNoCase Referer alert\\-fjg\\.xyz spambot=yes\nSetEnvIfNoCase Referer alert\\-hgd\\.xyz spambot=yes\nSetEnvIfNoCase Referer alert\\-jdh\\.xyz spambot=yes\nSetEnvIfNoCase Referer alertomall\\.xyz spambot=yes\nSetEnvIfNoCase Referer alessandraleone\\.com spambot=yes\nSetEnvIfNoCase Referer alexsander\\.ch spambot=yes\nSetEnvIfNoCase Referer alfa\\-medosmotr\\.ru spambot=yes\nSetEnvIfNoCase Referer alfa9\\.com spambot=yes\nSetEnvIfNoCase Referer alfabot\\.xyz spambot=yes\nSetEnvIfNoCase Referer alfapro\\.ru spambot=yes\nSetEnvIfNoCase Referer alguiblog\\.online spambot=yes\nSetEnvIfNoCase Referer alibestsale\\.com spambot=yes\nSetEnvIfNoCase Referer aliexpress\\.com spambot=yes\nSetEnvIfNoCase Referer aliexsale\\.ru spambot=yes\nSetEnvIfNoCase Referer alif\\-ba\\-ta\\.com spambot=yes\nSetEnvIfNoCase Referer alinabaniecka\\.pl spambot=yes\nSetEnvIfNoCase Referer alive\\-ua\\.com spambot=yes\nSetEnvIfNoCase Referer aliviahome\\.online spambot=yes\nSetEnvIfNoCase Referer alkanfarma\\.org spambot=yes\nSetEnvIfNoCase Referer all\\-news\\.kz spambot=yes\nSetEnvIfNoCase Referer all4bath\\.ru spambot=yes\nSetEnvIfNoCase Referer all4invest\\.ru spambot=yes\nSetEnvIfNoCase Referer allcredits\\.su spambot=yes\nSetEnvIfNoCase Referer allcryptonews\\.com spambot=yes\nSetEnvIfNoCase Referer alldownload\\.pw spambot=yes\nSetEnvIfNoCase Referer allergick\\.com spambot=yes\nSetEnvIfNoCase Referer allergija\\.com spambot=yes\nSetEnvIfNoCase Referer allfan\\.ru spambot=yes\nSetEnvIfNoCase Referer allforminecraft\\.ru spambot=yes\nSetEnvIfNoCase Referer allknow\\.info spambot=yes\nSetEnvIfNoCase Referer allkrim\\.com spambot=yes\nSetEnvIfNoCase Referer allmarketsnewdayli\\.gdn spambot=yes\nSetEnvIfNoCase Referer allnews\\.md spambot=yes\nSetEnvIfNoCase Referer allnews24\\.in spambot=yes\nSetEnvIfNoCase Referer allpdfmags\\.net spambot=yes\nSetEnvIfNoCase Referer allproblog\\.com spambot=yes\nSetEnvIfNoCase Referer allsilver925\\.co\\.il spambot=yes\nSetEnvIfNoCase Referer alltheviews\\.com spambot=yes\nSetEnvIfNoCase Referer allvacancy\\.ru spambot=yes\nSetEnvIfNoCase Referer allwomen\\.info spambot=yes\nSetEnvIfNoCase Referer allwrighter\\.ru spambot=yes\nSetEnvIfNoCase Referer alma\\-mramor\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer alot\\.com spambot=yes\nSetEnvIfNoCase Referer alp\\-rk\\.ru spambot=yes\nSetEnvIfNoCase Referer alphaforum\\.ru spambot=yes\nSetEnvIfNoCase Referer alphaopt24\\.ru spambot=yes\nSetEnvIfNoCase Referer alpharma\\.net spambot=yes\nSetEnvIfNoCase Referer alpinaskate\\.com spambot=yes\nSetEnvIfNoCase Referer altermix\\.ua spambot=yes\nSetEnvIfNoCase Referer alveris\\.ru spambot=yes\nSetEnvIfNoCase Referer am\\-se\\.com spambot=yes\nSetEnvIfNoCase Referer amanda\\-porn\\.ga spambot=yes\nSetEnvIfNoCase Referer amatocanizalez\\.net spambot=yes\nSetEnvIfNoCase Referer amazon\\-seo\\-service\\.com spambot=yes\nSetEnvIfNoCase Referer amoi\\.tn spambot=yes\nSetEnvIfNoCase Referer amoremio\\.by spambot=yes\nSetEnvIfNoCase Referer amos\\-kids\\.ru spambot=yes\nSetEnvIfNoCase Referer amospalla\\.es spambot=yes\nSetEnvIfNoCase Referer amp\\-project\\.pro spambot=yes\nSetEnvIfNoCase Referer amt\\-k\\.ru spambot=yes\nSetEnvIfNoCase Referer amtel\\-vredestein\\.com spambot=yes\nSetEnvIfNoCase Referer amylynnandrews\\.xyz spambot=yes\nSetEnvIfNoCase Referer anabolics\\.shop spambot=yes\nSetEnvIfNoCase Referer anal\\-acrobats\\.hol\\.es spambot=yes\nSetEnvIfNoCase Referer analytics\\-ads\\.xyz spambot=yes\nSetEnvIfNoCase Referer analyze\\-best\\-copywriting\\-services\\.party spambot=yes\nSetEnvIfNoCase Referer analyze\\-extra\\-analytic\\-service\\.stream spambot=yes\nSetEnvIfNoCase Referer ananumous\\.ru spambot=yes\nSetEnvIfNoCase Referer anapa\\-inns\\.ru spambot=yes\nSetEnvIfNoCase Referer andrewancheta\\.com spambot=yes\nSetEnvIfNoCase Referer android\\-style\\.com spambot=yes\nSetEnvIfNoCase Referer android\\-systems\\.ru spambot=yes\nSetEnvIfNoCase Referer android\\-vsem\\.org spambot=yes\nSetEnvIfNoCase Referer android4fun\\.org spambot=yes\nSetEnvIfNoCase Referer androids\\-store\\.com spambot=yes\nSetEnvIfNoCase Referer animalphotos\\.xyz spambot=yes\nSetEnvIfNoCase Referer animebox\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer animenime\\.ru spambot=yes\nSetEnvIfNoCase Referer annaeydlish\\.top spambot=yes\nSetEnvIfNoCase Referer anrtmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer anti\\-crisis\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer anticrawler\\.org spambot=yes\nSetEnvIfNoCase Referer antiguabarbuda\\.ru spambot=yes\nSetEnvIfNoCase Referer antonovich\\-design\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer anydesk\\.site spambot=yes\nSetEnvIfNoCase Referer aosheng\\-tech\\.com spambot=yes\nSetEnvIfNoCase Referer aoul\\.top spambot=yes\nSetEnvIfNoCase Referer apartmentbay\\.ru spambot=yes\nSetEnvIfNoCase Referer apartmentratings\\.com spambot=yes\nSetEnvIfNoCase Referer apilian\\.xyz spambot=yes\nSetEnvIfNoCase Referer apishops\\.ru spambot=yes\nSetEnvIfNoCase Referer apollon\\-market\\-url\\.org spambot=yes\nSetEnvIfNoCase Referer applepharma\\.ru spambot=yes\nSetEnvIfNoCase Referer apteka\\-doc\\.ru spambot=yes\nSetEnvIfNoCase Referer apteka\\-pharm\\.ru spambot=yes\nSetEnvIfNoCase Referer apteka\\.info spambot=yes\nSetEnvIfNoCase Referer apxeo\\.info spambot=yes\nSetEnvIfNoCase Referer arabic\\-poetry\\.com spambot=yes\nSetEnvIfNoCase Referer aramaicmedia\\.org spambot=yes\nSetEnvIfNoCase Referer arate\\.ru spambot=yes\nSetEnvIfNoCase Referer arcadepages\\.com spambot=yes\nSetEnvIfNoCase Referer arcarticle\\.online spambot=yes\nSetEnvIfNoCase Referer architecturebest\\.com spambot=yes\nSetEnvIfNoCase Referer arendadogovor\\.ru spambot=yes\nSetEnvIfNoCase Referer arendakvartir\\.kz spambot=yes\nSetEnvIfNoCase Referer arendas\\.net spambot=yes\nSetEnvIfNoCase Referer arendovalka\\.xyz spambot=yes\nSetEnvIfNoCase Referer argo\\-visa\\.ru spambot=yes\nSetEnvIfNoCase Referer arkansale\\.xyz spambot=yes\nSetEnvIfNoCase Referer arkartex\\.ru spambot=yes\nSetEnvIfNoCase Referer arkkivoltti\\.net spambot=yes\nSetEnvIfNoCase Referer arpe\\.top spambot=yes\nSetEnvIfNoCase Referer arraty\\.altervista\\.org spambot=yes\nSetEnvIfNoCase Referer artblog\\.top spambot=yes\nSetEnvIfNoCase Referer artclipart\\.ru spambot=yes\nSetEnvIfNoCase Referer artdeko\\.info spambot=yes\nSetEnvIfNoCase Referer artefakct\\.com spambot=yes\nSetEnvIfNoCase Referer artpaint\\-market\\.ru spambot=yes\nSetEnvIfNoCase Referer artparquet\\.ru spambot=yes\nSetEnvIfNoCase Referer artpress\\.top spambot=yes\nSetEnvIfNoCase Referer artsmarket\\.xyz spambot=yes\nSetEnvIfNoCase Referer arturs\\.moscow spambot=yes\nSetEnvIfNoCase Referer aruplighting\\.com spambot=yes\nSetEnvIfNoCase Referer asacopaco\\.tk spambot=yes\nSetEnvIfNoCase Referer ascotgoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer asia\\-forum\\.ru spambot=yes\nSetEnvIfNoCase Referer ask\\-yug\\.com spambot=yes\nSetEnvIfNoCase Referer asmxsatadriverin\\.aircus\\.com spambot=yes\nSetEnvIfNoCase Referer astimvnc\\.online spambot=yes\nSetEnvIfNoCase Referer asupro\\.com spambot=yes\nSetEnvIfNoCase Referer asynt\\.net spambot=yes\nSetEnvIfNoCase Referer aszokshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer atlant\\-auto\\.info spambot=yes\nSetEnvIfNoCase Referer atlasvkusov\\.ru spambot=yes\nSetEnvIfNoCase Referer atleticpharm\\.org spambot=yes\nSetEnvIfNoCase Referer atley\\.eu\\.pn spambot=yes\nSetEnvIfNoCase Referer atmagroup\\.ru spambot=yes\nSetEnvIfNoCase Referer atoblog\\.online spambot=yes\nSetEnvIfNoCase Referer atyks\\.ru spambot=yes\nSetEnvIfNoCase Referer aucoinhomes\\.com spambot=yes\nSetEnvIfNoCase Referer audiobangout\\.com spambot=yes\nSetEnvIfNoCase Referer ausergrubhof\\.info spambot=yes\nSetEnvIfNoCase Referer australia\\-opening\\-times\\.com spambot=yes\nSetEnvIfNoCase Referer auto\\-b2b\\-seo\\-service\\.com spambot=yes\nSetEnvIfNoCase Referer auto\\-complex\\.by spambot=yes\nSetEnvIfNoCase Referer auto\\-kia\\-fulldrive\\.ru spambot=yes\nSetEnvIfNoCase Referer auto\\-moto\\-elektronika\\.cz spambot=yes\nSetEnvIfNoCase Referer auto\\-news\\-digest\\.ru spambot=yes\nSetEnvIfNoCase Referer auto\\-seo\\-service\\.com spambot=yes\nSetEnvIfNoCase Referer auto\\-seo\\-service\\.org spambot=yes\nSetEnvIfNoCase Referer auto\\-zapchasti\\.org spambot=yes\nSetEnvIfNoCase Referer auto\\.rusvile\\.lt spambot=yes\nSetEnvIfNoCase Referer auto4style\\.ru spambot=yes\nSetEnvIfNoCase Referer autoblog\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer autobrennero\\.it spambot=yes\nSetEnvIfNoCase Referer autobudpostach\\.club spambot=yes\nSetEnvIfNoCase Referer autofuct\\.ru spambot=yes\nSetEnvIfNoCase Referer autoloans\\.com spambot=yes\nSetEnvIfNoCase Referer autolombard\\-krasnodar\\.ru spambot=yes\nSetEnvIfNoCase Referer automate\\-amazon\\-affiliation\\.com spambot=yes\nSetEnvIfNoCase Referer automobile\\-spec\\.com spambot=yes\nSetEnvIfNoCase Referer autonew\\.biz spambot=yes\nSetEnvIfNoCase Referer autoseo\\-service\\.org spambot=yes\nSetEnvIfNoCase Referer autoseo\\-traffic\\.com spambot=yes\nSetEnvIfNoCase Referer autoseo\\-trial\\-for\\-1\\.com spambot=yes\nSetEnvIfNoCase Referer autoseoservice\\.org spambot=yes\nSetEnvIfNoCase Referer autoseotips\\.com spambot=yes\nSetEnvIfNoCase Referer autoservic\\.by spambot=yes\nSetEnvIfNoCase Referer autotop\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer autovideobroadcast\\.com spambot=yes\nSetEnvIfNoCase Referer autowebmarket\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer avcoast\\.com spambot=yes\nSetEnvIfNoCase Referer avek\\.ru spambot=yes\nSetEnvIfNoCase Referer aviapanda\\.ru spambot=yes\nSetEnvIfNoCase Referer aviaseller\\.su spambot=yes\nSetEnvIfNoCase Referer aviav\\.ru\\.com spambot=yes\nSetEnvIfNoCase Referer avitocars\\.ru spambot=yes\nSetEnvIfNoCase Referer aviva\\-limoux\\.com spambot=yes\nSetEnvIfNoCase Referer avkzarabotok\\.com spambot=yes\nSetEnvIfNoCase Referer avkzarabotok\\.info spambot=yes\nSetEnvIfNoCase Referer avon\\-severozapad\\.ru spambot=yes\nSetEnvIfNoCase Referer avtoarenda\\.by spambot=yes\nSetEnvIfNoCase Referer avtocredit\\-legko\\.ru spambot=yes\nSetEnvIfNoCase Referer avtointeres\\.ru spambot=yes\nSetEnvIfNoCase Referer avtorskoe\\-vino\\.ru spambot=yes\nSetEnvIfNoCase Referer avtovolop\\.ru spambot=yes\nSetEnvIfNoCase Referer avtovykup\\.kz spambot=yes\nSetEnvIfNoCase Referer awency\\.com spambot=yes\nSetEnvIfNoCase Referer aworlds\\.com spambot=yes\nSetEnvIfNoCase Referer axcus\\.top spambot=yes\nSetEnvIfNoCase Referer ayerbo\\.xhost\\.ro spambot=yes\nSetEnvIfNoCase Referer ayongoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer azadnegar\\.com spambot=yes\nSetEnvIfNoCase Referer azartclub\\.org spambot=yes\nSetEnvIfNoCase Referer azartniy\\-bonus\\.com spambot=yes\nSetEnvIfNoCase Referer azazu\\.ru spambot=yes\nSetEnvIfNoCase Referer azbuka\\-mo\\.ru spambot=yes\nSetEnvIfNoCase Referer azbukadiets\\.ru spambot=yes\nSetEnvIfNoCase Referer azbukafree\\.com spambot=yes\nSetEnvIfNoCase Referer azlex\\.uz spambot=yes\nSetEnvIfNoCase Referer b\\-buyeasy\\.com spambot=yes\nSetEnvIfNoCase Referer b2b\\-lounge\\.com spambot=yes\nSetEnvIfNoCase Referer bablonow\\.ru spambot=yes\nSetEnvIfNoCase Referer baciakte\\.online spambot=yes\nSetEnvIfNoCase Referer backgroundpictures\\.net spambot=yes\nSetEnvIfNoCase Referer backlinks\\-fast\\-top\\.com spambot=yes\nSetEnvIfNoCase Referer bag77\\.ru spambot=yes\nSetEnvIfNoCase Referer bahisgunceladresi\\.com spambot=yes\nSetEnvIfNoCase Referer baixar\\-musicas\\-gratis\\.com spambot=yes\nSetEnvIfNoCase Referer bala\\.getenjoyment\\.net spambot=yes\nSetEnvIfNoCase Referer baladur\\.ru spambot=yes\nSetEnvIfNoCase Referer balakhna\\.online spambot=yes\nSetEnvIfNoCase Referer balayazh\\.com spambot=yes\nSetEnvIfNoCase Referer balitouroffice\\.com spambot=yes\nSetEnvIfNoCase Referer balkanfarma\\.org spambot=yes\nSetEnvIfNoCase Referer balkanfarma\\.ru spambot=yes\nSetEnvIfNoCase Referer balois\\.worldbreak\\.com spambot=yes\nSetEnvIfNoCase Referer bambi\\.ck\\.ua spambot=yes\nSetEnvIfNoCase Referer banan\\.tv spambot=yes\nSetEnvIfNoCase Referer bankcrediti\\.ru spambot=yes\nSetEnvIfNoCase Referer bankhummer\\.co spambot=yes\nSetEnvIfNoCase Referer bankiem\\.pl spambot=yes\nSetEnvIfNoCase Referer barbarahome\\.top spambot=yes\nSetEnvIfNoCase Referer bard\\-real\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer bashtime\\.ru spambot=yes\nSetEnvIfNoCase Referer basisches\\-wasser\\.net spambot=yes\nSetEnvIfNoCase Referer batietiket\\.com spambot=yes\nSetEnvIfNoCase Referer batut\\-fun\\.ru spambot=yes\nSetEnvIfNoCase Referer bausparen\\.bz\\.it spambot=yes\nSetEnvIfNoCase Referer bavariagid\\.de spambot=yes\nSetEnvIfNoCase Referer bavsac\\.com spambot=yes\nSetEnvIfNoCase Referer bazaronline24\\.ru spambot=yes\nSetEnvIfNoCase Referer bbtec\\.net spambot=yes\nSetEnvIfNoCase Referer bdf\\-tracker\\.top spambot=yes\nSetEnvIfNoCase Referer beachtoday\\.ru spambot=yes\nSetEnvIfNoCase Referer beamfall\\.info spambot=yes\nSetEnvIfNoCase Referer beauby\\.ru spambot=yes\nSetEnvIfNoCase Referer beauty\\-clinic\\.ru spambot=yes\nSetEnvIfNoCase Referer beauty\\-lesson\\.com spambot=yes\nSetEnvIfNoCase Referer beclean\\-nn\\.ru spambot=yes\nSetEnvIfNoCase Referer bedroomlighting\\.us spambot=yes\nSetEnvIfNoCase Referer begalka\\.xyz spambot=yes\nSetEnvIfNoCase Referer belinvestdom\\.by spambot=yes\nSetEnvIfNoCase Referer belreferatov\\.net spambot=yes\nSetEnvIfNoCase Referer berdasovivan\\.ru spambot=yes\nSetEnvIfNoCase Referer beremenyashka\\.com spambot=yes\nSetEnvIfNoCase Referer berglion\\.com spambot=yes\nSetEnvIfNoCase Referer berkinan\\.xyz spambot=yes\nSetEnvIfNoCase Referer berlininsl\\.com spambot=yes\nSetEnvIfNoCase Referer berrymall\\.ru spambot=yes\nSetEnvIfNoCase Referer best\\-deal\\-hdd\\.pro spambot=yes\nSetEnvIfNoCase Referer best\\-mam\\.ru spambot=yes\nSetEnvIfNoCase Referer best\\-offer\\-hdd\\-1\\.info spambot=yes\nSetEnvIfNoCase Referer best\\-offer\\-hdd\\-1\\.space spambot=yes\nSetEnvIfNoCase Referer best\\-offer\\-hdd\\-1\\.top spambot=yes\nSetEnvIfNoCase Referer best\\-offer\\-hdd\\.pro spambot=yes\nSetEnvIfNoCase Referer best\\-offer\\-hdd\\.xyz spambot=yes\nSetEnvIfNoCase Referer best\\-ping\\-service\\-usa\\-1\\.info spambot=yes\nSetEnvIfNoCase Referer best\\-ping\\-service\\-usa\\-1\\.space spambot=yes\nSetEnvIfNoCase Referer best\\-ping\\-service\\-usa\\-1\\.top spambot=yes\nSetEnvIfNoCase Referer best\\-ping\\-service\\-usa\\.blue spambot=yes\nSetEnvIfNoCase Referer best\\-ping\\-service\\-usa\\.me spambot=yes\nSetEnvIfNoCase Referer best\\-ping\\-service\\-usa\\.space spambot=yes\nSetEnvIfNoCase Referer best\\-ping\\-service\\-usa\\.top spambot=yes\nSetEnvIfNoCase Referer best\\-ping\\-service\\-usa\\.xyz spambot=yes\nSetEnvIfNoCase Referer best\\-printmsk\\.ru spambot=yes\nSetEnvIfNoCase Referer best\\-seo\\-offer\\.com spambot=yes\nSetEnvIfNoCase Referer best\\-seo\\-service\\.tk spambot=yes\nSetEnvIfNoCase Referer best\\-seo\\-software\\.xyz spambot=yes\nSetEnvIfNoCase Referer best\\-seo\\-solution\\.com spambot=yes\nSetEnvIfNoCase Referer bestbookclub\\.ru spambot=yes\nSetEnvIfNoCase Referer bestchoice\\.cf spambot=yes\nSetEnvIfNoCase Referer bestempresas\\.es spambot=yes\nSetEnvIfNoCase Referer bestfortraders\\.com spambot=yes\nSetEnvIfNoCase Referer besthatcheries\\.com spambot=yes\nSetEnvIfNoCase Referer bestleofferhdd\\.info spambot=yes\nSetEnvIfNoCase Referer bestmobilityscooterstoday\\.com spambot=yes\nSetEnvIfNoCase Referer bestofferfyhdd\\.info spambot=yes\nSetEnvIfNoCase Referer bestofferhddacy\\.info spambot=yes\nSetEnvIfNoCase Referer bestofferhddbyt\\.info spambot=yes\nSetEnvIfNoCase Referer bestofferhddeed\\.info spambot=yes\nSetEnvIfNoCase Referer bestofferhddity\\.info spambot=yes\nSetEnvIfNoCase Referer bestofferifyhdd\\.info spambot=yes\nSetEnvIfNoCase Referer bestofferswalkmydogouteveryday\\.gq spambot=yes\nSetEnvIfNoCase Referer bestorofferhdd\\.info spambot=yes\nSetEnvIfNoCase Referer bestplacetobuyeriacta\\.jw\\.lt spambot=yes\nSetEnvIfNoCase Referer bestvpnrating\\.com spambot=yes\nSetEnvIfNoCase Referer bestwebsiteawards\\.com spambot=yes\nSetEnvIfNoCase Referer bestwebsitesawards\\.com spambot=yes\nSetEnvIfNoCase Referer bet\\-prognoz\\.com spambot=yes\nSetEnvIfNoCase Referer bet\\-winner1\\.ru spambot=yes\nSetEnvIfNoCase Referer bet2much\\.ru spambot=yes\nSetEnvIfNoCase Referer betonka\\.pro spambot=yes\nSetEnvIfNoCase Referer betslive\\.ru spambot=yes\nSetEnvIfNoCase Referer betterhealthbeauty\\.com spambot=yes\nSetEnvIfNoCase Referer bettorschool\\.ru spambot=yes\nSetEnvIfNoCase Referer betune\\.onlinewebshop\\.net spambot=yes\nSetEnvIfNoCase Referer betwinservice\\.com spambot=yes\nSetEnvIfNoCase Referer beyan\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer bez\\-zabora\\.ru spambot=yes\nSetEnvIfNoCase Referer bezcmexa\\.ru spambot=yes\nSetEnvIfNoCase Referer bezlimitko\\.xyz spambot=yes\nSetEnvIfNoCase Referer bezprostatita\\.com spambot=yes\nSetEnvIfNoCase Referer bezsporno\\.ru spambot=yes\nSetEnvIfNoCase Referer beztuberkuleza\\.ru spambot=yes\nSetEnvIfNoCase Referer bhf\\.vc spambot=yes\nSetEnvIfNoCase Referer bibprsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer bif\\-ru\\.info spambot=yes\nSetEnvIfNoCase Referer bigcities\\.org spambot=yes\nSetEnvIfNoCase Referer biglistofwebsites\\.com spambot=yes\nSetEnvIfNoCase Referer biketank\\.ga spambot=yes\nSetEnvIfNoCase Referer billiard\\-classic\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer billigerstrom\\.co spambot=yes\nSetEnvIfNoCase Referer billyblog\\.online spambot=yes\nSetEnvIfNoCase Referer bimatoprost\\-careprost\\.com spambot=yes\nSetEnvIfNoCase Referer bimatoprost\\-careprost\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer bin\\-brokers\\.com spambot=yes\nSetEnvIfNoCase Referer binokna\\.ru spambot=yes\nSetEnvIfNoCase Referer binomo\\.kz spambot=yes\nSetEnvIfNoCase Referer bio\\-japan\\.net spambot=yes\nSetEnvIfNoCase Referer bio\\-market\\.kz spambot=yes\nSetEnvIfNoCase Referer bio\\.trade\\-jp\\.net spambot=yes\nSetEnvIfNoCase Referer bioca\\.org spambot=yes\nSetEnvIfNoCase Referer biplanecentre\\.ru spambot=yes\nSetEnvIfNoCase Referer bird1\\.ru spambot=yes\nSetEnvIfNoCase Referer birzha\\-truda\\.eu spambot=yes\nSetEnvIfNoCase Referer bisign\\.info spambot=yes\nSetEnvIfNoCase Referer bitcoin\\-ua\\.top spambot=yes\nSetEnvIfNoCase Referer bitcoins\\-forum\\.club spambot=yes\nSetEnvIfNoCase Referer bitcoins\\-forum\\.info spambot=yes\nSetEnvIfNoCase Referer bitcoins\\-forum\\.online spambot=yes\nSetEnvIfNoCase Referer bitcoins\\-forum\\.pro spambot=yes\nSetEnvIfNoCase Referer bitcoins\\-live\\.ru spambot=yes\nSetEnvIfNoCase Referer biteg\\.xyz spambot=yes\nSetEnvIfNoCase Referer bitniex\\.com spambot=yes\nSetEnvIfNoCase Referer biz\\-law\\.ru spambot=yes\nSetEnvIfNoCase Referer biznesluxe\\.ru spambot=yes\nSetEnvIfNoCase Referer biznesrealnost\\.ru spambot=yes\nSetEnvIfNoCase Referer biznesschat\\.net spambot=yes\nSetEnvIfNoCase Referer bizru\\.info spambot=yes\nSetEnvIfNoCase Referer bki24\\.info spambot=yes\nSetEnvIfNoCase Referer bkns\\.vn spambot=yes\nSetEnvIfNoCase Referer black\\-friday\\.ga spambot=yes\nSetEnvIfNoCase Referer black\\-tip\\.top spambot=yes\nSetEnvIfNoCase Referer blackhatworth\\.com spambot=yes\nSetEnvIfNoCase Referer blackle\\.com spambot=yes\nSetEnvIfNoCase Referer blackplanet\\.com spambot=yes\nSetEnvIfNoCase Referer blackwitchcraft\\.ru spambot=yes\nSetEnvIfNoCase Referer blancablog\\.online spambot=yes\nSetEnvIfNoCase Referer blavia\\.00author\\.com spambot=yes\nSetEnvIfNoCase Referer bleacherreport\\.com spambot=yes\nSetEnvIfNoCase Referer blockchaintop\\.nl spambot=yes\nSetEnvIfNoCase Referer blockworld\\.ru spambot=yes\nSetEnvIfNoCase Referer blog\\.f00kclan\\.de spambot=yes\nSetEnvIfNoCase Referer blog\\.koorg\\.ru spambot=yes\nSetEnvIfNoCase Referer blog\\.latuti\\.net spambot=yes\nSetEnvIfNoCase Referer blog\\.remote\\-computer\\.de spambot=yes\nSetEnvIfNoCase Referer blog\\.xsk\\.in spambot=yes\nSetEnvIfNoCase Referer blog\\.yam\\.com spambot=yes\nSetEnvIfNoCase Referer blog100\\.org spambot=yes\nSetEnvIfNoCase Referer blog2019\\.top spambot=yes\nSetEnvIfNoCase Referer blog2019\\.xyz spambot=yes\nSetEnvIfNoCase Referer blog4u\\.top spambot=yes\nSetEnvIfNoCase Referer blogarun\\.co spambot=yes\nSetEnvIfNoCase Referer bloggen\\.be spambot=yes\nSetEnvIfNoCase Referer bloggers\\.nl spambot=yes\nSetEnvIfNoCase Referer blogig\\.org spambot=yes\nSetEnvIfNoCase Referer blogking\\.top spambot=yes\nSetEnvIfNoCase Referer bloglag\\.com spambot=yes\nSetEnvIfNoCase Referer blognet\\.top spambot=yes\nSetEnvIfNoCase Referer blogorganictraffic\\.shop spambot=yes\nSetEnvIfNoCase Referer blogos\\.kz spambot=yes\nSetEnvIfNoCase Referer blogping\\.xyz spambot=yes\nSetEnvIfNoCase Referer blogs\\.rediff\\.com spambot=yes\nSetEnvIfNoCase Referer blogseo\\.xyz spambot=yes\nSetEnvIfNoCase Referer blogstar\\.fun spambot=yes\nSetEnvIfNoCase Referer blogster\\.com spambot=yes\nSetEnvIfNoCase Referer blogtotal\\.de spambot=yes\nSetEnvIfNoCase Referer blogtraffic\\.shop spambot=yes\nSetEnvIfNoCase Referer blogua\\.org spambot=yes\nSetEnvIfNoCase Referer blue\\-square\\.biz spambot=yes\nSetEnvIfNoCase Referer bluerobot\\.info spambot=yes\nSetEnvIfNoCase Referer bmusshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer bo\\-vtb24\\.ru spambot=yes\nSetEnvIfNoCase Referer board\\.f00d\\.de spambot=yes\nSetEnvIfNoCase Referer bobba\\.dzaba\\.com spambot=yes\nSetEnvIfNoCase Referer bodybuilding\\-shop\\.biz spambot=yes\nSetEnvIfNoCase Referer boleznikogi\\.com spambot=yes\nSetEnvIfNoCase Referer bolezniorganov\\.ru spambot=yes\nSetEnvIfNoCase Referer boltalko\\.xyz spambot=yes\nSetEnvIfNoCase Referer boltushkiclub\\.ru spambot=yes\nSetEnvIfNoCase Referer bombla\\.org spambot=yes\nSetEnvIfNoCase Referer bonkers\\.name spambot=yes\nSetEnvIfNoCase Referer bonniesblog\\.online spambot=yes\nSetEnvIfNoCase Referer bonus\\-betting\\.ru spambot=yes\nSetEnvIfNoCase Referer bonus\\-spasibo\\-sberbank\\.ru spambot=yes\nSetEnvIfNoCase Referer bonus\\-vtb\\.ru spambot=yes\nSetEnvIfNoCase Referer bonux\\.nextview\\.ru spambot=yes\nSetEnvIfNoCase Referer bookmaker\\-bet\\.com spambot=yes\nSetEnvIfNoCase Referer bookmark4you\\.biz spambot=yes\nSetEnvIfNoCase Referer bookmark4you\\.com spambot=yes\nSetEnvIfNoCase Referer bookmark4you\\.com\\.biz spambot=yes\nSetEnvIfNoCase Referer books\\-top\\.com spambot=yes\nSetEnvIfNoCase Referer boole\\.onlinewebshop\\.net spambot=yes\nSetEnvIfNoCase Referer boost\\-my\\-site\\.com spambot=yes\nSetEnvIfNoCase Referer boost24\\.biz spambot=yes\nSetEnvIfNoCase Referer boostmyppc\\.com spambot=yes\nSetEnvIfNoCase Referer bosefux\\.esy\\.es spambot=yes\nSetEnvIfNoCase Referer bosman\\.pluto\\.ro spambot=yes\nSetEnvIfNoCase Referer bostonline\\.xyz spambot=yes\nSetEnvIfNoCase Referer bot\\-traffic\\.icu spambot=yes\nSetEnvIfNoCase Referer bot\\-traffic\\.xyz spambot=yes\nSetEnvIfNoCase Referer botamycos\\.fr spambot=yes\nSetEnvIfNoCase Referer bottraffic\\.live spambot=yes\nSetEnvIfNoCase Referer bottraffic143\\.xyz spambot=yes\nSetEnvIfNoCase Referer bottraffic329\\.xyz spambot=yes\nSetEnvIfNoCase Referer bottraffic4free\\.club spambot=yes\nSetEnvIfNoCase Referer bottraffic4free\\.host spambot=yes\nSetEnvIfNoCase Referer bottraffic999\\.xyz spambot=yes\nSetEnvIfNoCase Referer bouda\\.kvalitne\\.cz spambot=yes\nSetEnvIfNoCase Referer bowigosale\\.xyz spambot=yes\nSetEnvIfNoCase Referer bpro1\\.top spambot=yes\nSetEnvIfNoCase Referer bradleylive\\.xyz spambot=yes\nSetEnvIfNoCase Referer brains2\\.biz spambot=yes\nSetEnvIfNoCase Referer brakehawk\\.com spambot=yes\nSetEnvIfNoCase Referer brandnewtube\\.com spambot=yes\nSetEnvIfNoCase Referer brandov\\.ru spambot=yes\nSetEnvIfNoCase Referer brateg\\.xyz spambot=yes\nSetEnvIfNoCase Referer brauni\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer bravica\\.biz spambot=yes\nSetEnvIfNoCase Referer bravica\\.com spambot=yes\nSetEnvIfNoCase Referer bravica\\.me spambot=yes\nSetEnvIfNoCase Referer bravica\\.net spambot=yes\nSetEnvIfNoCase Referer bravica\\.news spambot=yes\nSetEnvIfNoCase Referer bravica\\.online spambot=yes\nSetEnvIfNoCase Referer bravica\\.pro spambot=yes\nSetEnvIfNoCase Referer bravica\\.ru spambot=yes\nSetEnvIfNoCase Referer bravica\\.su spambot=yes\nSetEnvIfNoCase Referer break\\-the\\-chains\\.com spambot=yes\nSetEnvIfNoCase Referer breget74\\.ru spambot=yes\nSetEnvIfNoCase Referer brendbutik\\.ru spambot=yes\nSetEnvIfNoCase Referer briankatrine\\.top spambot=yes\nSetEnvIfNoCase Referer brickmaster\\.pro spambot=yes\nSetEnvIfNoCase Referer brillianty\\.info spambot=yes\nSetEnvIfNoCase Referer bristolhostel\\.com spambot=yes\nSetEnvIfNoCase Referer bristolhotel\\.com spambot=yes\nSetEnvIfNoCase Referer bristolhotel\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer britneyblog\\.online spambot=yes\nSetEnvIfNoCase Referer brk\\-rti\\.ru spambot=yes\nSetEnvIfNoCase Referer brokergid\\.ru spambot=yes\nSetEnvIfNoCase Referer brooklyn\\-ads\\.com spambot=yes\nSetEnvIfNoCase Referer brooklynsays\\.com spambot=yes\nSetEnvIfNoCase Referer brothers\\-smaller\\.ru spambot=yes\nSetEnvIfNoCase Referer brus\\-vsem\\.ru spambot=yes\nSetEnvIfNoCase Referer brus\\.city spambot=yes\nSetEnvIfNoCase Referer brusilov\\.ru spambot=yes\nSetEnvIfNoCase Referer bsell\\.ru spambot=yes\nSetEnvIfNoCase Referer btcnix\\.com spambot=yes\nSetEnvIfNoCase Referer btt\\-club\\.pro spambot=yes\nSetEnvIfNoCase Referer budilneg\\.xyz spambot=yes\nSetEnvIfNoCase Referer budmavtomatika\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer budpost\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer bufetout\\.ru spambot=yes\nSetEnvIfNoCase Referer bugof\\.gq spambot=yes\nSetEnvIfNoCase Referer buhproffi\\.ru spambot=yes\nSetEnvIfNoCase Referer buigas\\.00it\\.com spambot=yes\nSetEnvIfNoCase Referer buildnw\\.ru spambot=yes\nSetEnvIfNoCase Referer buildwithwendy\\.com spambot=yes\nSetEnvIfNoCase Referer buketeg\\.xyz spambot=yes\nSetEnvIfNoCase Referer bukleteg\\.xyz spambot=yes\nSetEnvIfNoCase Referer bulgaria\\-web\\-developers\\.com spambot=yes\nSetEnvIfNoCase Referer buqayy0\\.livejournal\\.com spambot=yes\nSetEnvIfNoCase Referer bur\\-rk\\.ru spambot=yes\nSetEnvIfNoCase Referer burger\\-imperia\\.com spambot=yes\nSetEnvIfNoCase Referer burn\\-fat\\.ga spambot=yes\nSetEnvIfNoCase Referer business\\-online\\-sberbank\\.ru spambot=yes\nSetEnvIfNoCase Referer buttons\\-for\\-website\\.com spambot=yes\nSetEnvIfNoCase Referer buttons\\-for\\-your\\-website\\.com spambot=yes\nSetEnvIfNoCase Referer buy\\-cheap\\-online\\.info spambot=yes\nSetEnvIfNoCase Referer buy\\-cheap\\-pills\\-order\\-online\\.com spambot=yes\nSetEnvIfNoCase Referer buy\\-forum\\.ru spambot=yes\nSetEnvIfNoCase Referer buy\\-meds24\\.com spambot=yes\nSetEnvIfNoCase Referer buyantiviralwp\\.com spambot=yes\nSetEnvIfNoCase Referer buyessay3\\.blogspot\\.ru spambot=yes\nSetEnvIfNoCase Referer buyessaynow\\.biz spambot=yes\nSetEnvIfNoCase Referer buyessayonline19\\.blogspot\\.ru spambot=yes\nSetEnvIfNoCase Referer buyfriend\\.ru spambot=yes\nSetEnvIfNoCase Referer buyk\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer buynorxx\\.com spambot=yes\nSetEnvIfNoCase Referer buypharmacydrug\\.com spambot=yes\nSetEnvIfNoCase Referer buypillsonline24h\\.com spambot=yes\nSetEnvIfNoCase Referer buypillsorderonline\\.com spambot=yes\nSetEnvIfNoCase Referer buypuppies\\.ca spambot=yes\nSetEnvIfNoCase Referer buyscabiescream\\.com spambot=yes\nSetEnvIfNoCase Referer buytizanidineonline\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer buytizanidineonlinenoprescription\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer buyviagraa\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer bvps8\\.com spambot=yes\nSetEnvIfNoCase Referer bycontext\\.com spambot=yes\nSetEnvIfNoCase Referer byme\\.se spambot=yes\nSetEnvIfNoCase Referer bytimedance\\.ru spambot=yes\nSetEnvIfNoCase Referer c\\-english\\.ru spambot=yes\nSetEnvIfNoCase Referer c2bit\\.hk spambot=yes\nSetEnvIfNoCase Referer californianews\\.cf spambot=yes\nSetEnvIfNoCase Referer call\\-of\\-duty\\.info spambot=yes\nSetEnvIfNoCase Referer callejondelpozo\\.es spambot=yes\nSetEnvIfNoCase Referer calvet\\.altervista\\.org spambot=yes\nSetEnvIfNoCase Referer cancerfungus\\.com spambot=yes\nSetEnvIfNoCase Referer candida\\-international\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer candida\\-society\\.org\\.uk spambot=yes\nSetEnvIfNoCase Referer cannazon\\-market\\.org spambot=yes\nSetEnvIfNoCase Referer canoncdriverq3\\.pen\\.io spambot=yes\nSetEnvIfNoCase Referer canyougethighofftizanidine\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer canzoni\\.ru spambot=yes\nSetEnvIfNoCase Referer carabela\\.com\\.do spambot=yes\nSetEnvIfNoCase Referer carbon\\-linger\\-hierarchy\\-suntan\\.top spambot=yes\nSetEnvIfNoCase Referer carder\\.me spambot=yes\nSetEnvIfNoCase Referer carder\\.tv spambot=yes\nSetEnvIfNoCase Referer carders\\.ug spambot=yes\nSetEnvIfNoCase Referer cardiosport\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer cardsdumps\\.com spambot=yes\nSetEnvIfNoCase Referer cardsharp1\\.ru spambot=yes\nSetEnvIfNoCase Referer cardul\\.ru spambot=yes\nSetEnvIfNoCase Referer carezi\\.com spambot=yes\nSetEnvIfNoCase Referer carfax\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer carivka\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer carloans\\.com spambot=yes\nSetEnvIfNoCase Referer carscrim\\.com spambot=yes\nSetEnvIfNoCase Referer carsdined\\.org spambot=yes\nSetEnvIfNoCase Referer carsnumber\\.com spambot=yes\nSetEnvIfNoCase Referer carson\\.getenjoyment\\.net spambot=yes\nSetEnvIfNoCase Referer carsoncitypizza\\.com spambot=yes\nSetEnvIfNoCase Referer cartechnic\\.ru spambot=yes\nSetEnvIfNoCase Referer casablancamanor\\.co\\.za spambot=yes\nSetEnvIfNoCase Referer cashforum\\.cc spambot=yes\nSetEnvIfNoCase Referer casino\\-top3\\.fun spambot=yes\nSetEnvIfNoCase Referer casino\\-top3\\.online spambot=yes\nSetEnvIfNoCase Referer casino\\-top3\\.ru spambot=yes\nSetEnvIfNoCase Referer casino\\-top3\\.site spambot=yes\nSetEnvIfNoCase Referer casino\\-top3\\.space spambot=yes\nSetEnvIfNoCase Referer casino\\-top3\\.website spambot=yes\nSetEnvIfNoCase Referer casino\\-v\\.site spambot=yes\nSetEnvIfNoCase Referer casino\\-vulkane\\.com spambot=yes\nSetEnvIfNoCase Referer casino\\-x\\-now\\.ru spambot=yes\nSetEnvIfNoCase Referer casino\\-x\\.host spambot=yes\nSetEnvIfNoCase Referer casinosbewertung\\.de spambot=yes\nSetEnvIfNoCase Referer casinox\\-jp\\.com spambot=yes\nSetEnvIfNoCase Referer castingbank\\.ru spambot=yes\nSetEnvIfNoCase Referer catalogs\\-parts\\.com spambot=yes\nSetEnvIfNoCase Referer catherinemill\\.xyz spambot=yes\nSetEnvIfNoCase Referer catterybengal\\.com spambot=yes\nSetEnvIfNoCase Referer cattyhealth\\.com spambot=yes\nSetEnvIfNoCase Referer cauxmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer cayado\\.snn\\.gr spambot=yes\nSetEnvIfNoCase Referer cazino\\-v\\.online spambot=yes\nSetEnvIfNoCase Referer cazino\\-v\\.ru spambot=yes\nSetEnvIfNoCase Referer cbcseward\\.com spambot=yes\nSetEnvIfNoCase Referer cbox\\.ws spambot=yes\nSetEnvIfNoCase Referer ccfullzshop\\.com spambot=yes\nSetEnvIfNoCase Referer celestepage\\.xyz spambot=yes\nSetEnvIfNoCase Referer celldog\\.ru spambot=yes\nSetEnvIfNoCase Referer cenokos\\.ru spambot=yes\nSetEnvIfNoCase Referer cenoval\\.ru spambot=yes\nSetEnvIfNoCase Referer centre\\-indigo\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer centrumcoachingu\\.com spambot=yes\nSetEnvIfNoCase Referer cercacamion\\.it spambot=yes\nSetEnvIfNoCase Referer certifywebsite\\.win spambot=yes\nSetEnvIfNoCase Referer cezartabac\\.ro spambot=yes\nSetEnvIfNoCase Referer cfsrating\\.sonicwall\\.com spambot=yes\nSetEnvIfNoCase Referer cgi2\\.nintendo\\.co\\.jp spambot=yes\nSetEnvIfNoCase Referer chainii\\.ru spambot=yes\nSetEnvIfNoCase Referer channel\\-badge\\-betray\\-volcanic\\.com spambot=yes\nSetEnvIfNoCase Referer chastnoeporno\\.com spambot=yes\nSetEnvIfNoCase Referer chat\\.ru spambot=yes\nSetEnvIfNoCase Referer chatmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer chatrazvrat\\.ru spambot=yes\nSetEnvIfNoCase Referer chatroulette\\.life spambot=yes\nSetEnvIfNoCase Referer chcu\\.net spambot=yes\nSetEnvIfNoCase Referer cheap\\-trusted\\-backlinks\\.com spambot=yes\nSetEnvIfNoCase Referer cheapkeys\\.ovh spambot=yes\nSetEnvIfNoCase Referer cheappills24h\\.com spambot=yes\nSetEnvIfNoCase Referer chee\\-by\\.biz spambot=yes\nSetEnvIfNoCase Referer chelyabinsk\\.dienai\\.ru spambot=yes\nSetEnvIfNoCase Referer chelyabinsk\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer cherrypointplace\\.ca spambot=yes\nSetEnvIfNoCase Referer cherubinimobili\\.it spambot=yes\nSetEnvIfNoCase Referer chimiver\\.info spambot=yes\nSetEnvIfNoCase Referer chinese\\-amezon\\.com spambot=yes\nSetEnvIfNoCase Referer chip35\\.ru spambot=yes\nSetEnvIfNoCase Referer chipmp3\\.ru spambot=yes\nSetEnvIfNoCase Referer chizhik\\-2\\.ru spambot=yes\nSetEnvIfNoCase Referer chomexun\\.com spambot=yes\nSetEnvIfNoCase Referer choosecuisine\\.com spambot=yes\nSetEnvIfNoCase Referer ci\\.ua spambot=yes\nSetEnvIfNoCase Referer ciarustde\\.online spambot=yes\nSetEnvIfNoCase Referer cigarpass\\.com spambot=yes\nSetEnvIfNoCase Referer cilolamall\\.xyz spambot=yes\nSetEnvIfNoCase Referer cinemaenergy\\-hd\\.ru spambot=yes\nSetEnvIfNoCase Referer ciproandtizanidine\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer citizenclsdriveri7\\.pen\\.io spambot=yes\nSetEnvIfNoCase Referer cityadspix\\.com spambot=yes\nSetEnvIfNoCase Referer citybur\\.ru spambot=yes\nSetEnvIfNoCase Referer cityreys\\.ru spambot=yes\nSetEnvIfNoCase Referer civilwartheater\\.com spambot=yes\nSetEnvIfNoCase Referer clarithromycin500mg\\.com spambot=yes\nSetEnvIfNoCase Referer clash\\-clans\\.ru spambot=yes\nSetEnvIfNoCase Referer classicakuhni\\.ru spambot=yes\nSetEnvIfNoCase Referer cleandom\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer cleaningservices\\.kiev\\.ua spambot=yes\nSetEnvIfNoCase Referer clicksor\\.com spambot=yes\nSetEnvIfNoCase Referer climate\\.by spambot=yes\nSetEnvIfNoCase Referer clmforexeu\\.com spambot=yes\nSetEnvIfNoCase Referer clothing\\-deal\\.club spambot=yes\nSetEnvIfNoCase Referer cloudsendchef\\.com spambot=yes\nSetEnvIfNoCase Referer club\\-lukojl\\.ru spambot=yes\nSetEnvIfNoCase Referer club\\-musics\\.ru spambot=yes\nSetEnvIfNoCase Referer club\\-samodelkin\\.ru spambot=yes\nSetEnvIfNoCase Referer cmd\\.kz spambot=yes\nSetEnvIfNoCase Referer cmrrsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer cmseshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer cobaltpro\\.ru spambot=yes\nSetEnvIfNoCase Referer cocyq\\.inwtrade\\.com spambot=yes\nSetEnvIfNoCase Referer coderstate\\.com spambot=yes\nSetEnvIfNoCase Referer codq\\.info spambot=yes\nSetEnvIfNoCase Referer codysbbq\\.com spambot=yes\nSetEnvIfNoCase Referer coeus\\-solutions\\.de spambot=yes\nSetEnvIfNoCase Referer coffeemashiny\\.ru spambot=yes\nSetEnvIfNoCase Referer coinswitch\\.cash spambot=yes\nSetEnvIfNoCase Referer coldfilm\\.ru spambot=yes\nSetEnvIfNoCase Referer coleso\\.md spambot=yes\nSetEnvIfNoCase Referer collectinviolity\\.com spambot=yes\nSetEnvIfNoCase Referer collegeessay19\\.blogspot\\.ru spambot=yes\nSetEnvIfNoCase Referer columb\\.net\\.ua spambot=yes\nSetEnvIfNoCase Referer cometorussia\\.net spambot=yes\nSetEnvIfNoCase Referer comissionka\\.net spambot=yes\nSetEnvIfNoCase Referer commentag\\.com spambot=yes\nSetEnvIfNoCase Referer commerage\\.ru spambot=yes\nSetEnvIfNoCase Referer comp\\-pomosch\\.ru spambot=yes\nSetEnvIfNoCase Referer compliance\\-alex\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-alex\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-alexa\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-alexa\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-andrew\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-andrew\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-barak\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-barak\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-brian\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-brian\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-checker\\-7\\.info spambot=yes\nSetEnvIfNoCase Referer compliance\\-don\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-don\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-donald\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-elena\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-elena\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-fred\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-fred\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-george\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-george\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-irvin\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-irvin\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-ivan\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-ivan\\.xyz spambot=yes\nSetEnvIfNoCase Referer compliance\\-jack\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-jane\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-jess\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-jessica\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-john\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-josh\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-julia\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-julianna\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-margo\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-mark\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-mary\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-nelson\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-olga\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-viktor\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-walt\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-walter\\.top spambot=yes\nSetEnvIfNoCase Referer compliance\\-willy\\.top spambot=yes\nSetEnvIfNoCase Referer computer\\-remont\\.ru spambot=yes\nSetEnvIfNoCase Referer comuneshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer conciergegroup\\.org spambot=yes\nSetEnvIfNoCase Referer concretepol\\.com spambot=yes\nSetEnvIfNoCase Referer connectikastudio\\.com spambot=yes\nSetEnvIfNoCase Referer constanceonline\\.top spambot=yes\nSetEnvIfNoCase Referer constantaservice\\.net spambot=yes\nSetEnvIfNoCase Referer construmac\\.com\\.mx spambot=yes\nSetEnvIfNoCase Referer contextualyield\\.com spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-aa\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-bb\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-cc\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-dd\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-ee\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-ff\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-gg\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-hh\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-ii\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-jj\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-kk\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-ll\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-mm\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-nn\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-oo\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-pp\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-qq\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-rr\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-ss\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-tt\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-uu\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-vv\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-ww\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-xx\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-yy\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookie\\-law\\-enforcement\\-zz\\.xyz spambot=yes\nSetEnvIfNoCase Referer cookielawblog\\.wordpress\\.com spambot=yes\nSetEnvIfNoCase Referer cookingmeat\\.ru spambot=yes\nSetEnvIfNoCase Referer cool\\-mining\\.com spambot=yes\nSetEnvIfNoCase Referer cool\\-wedding\\.net spambot=yes\nSetEnvIfNoCase Referer coop\\-gamers\\.ru spambot=yes\nSetEnvIfNoCase Referer copblock\\.org spambot=yes\nSetEnvIfNoCase Referer copyrightclaims\\.org spambot=yes\nSetEnvIfNoCase Referer copyrightinstitute\\.org spambot=yes\nSetEnvIfNoCase Referer coral\\-info\\.com spambot=yes\nSetEnvIfNoCase Referer cosmediqueresults\\.com spambot=yes\nSetEnvIfNoCase Referer countravel\\.net spambot=yes\nSetEnvIfNoCase Referer covadhosting\\.biz spambot=yes\nSetEnvIfNoCase Referer covblog\\.top spambot=yes\nSetEnvIfNoCase Referer coverage\\-my\\.com spambot=yes\nSetEnvIfNoCase Referer covetnica\\.com spambot=yes\nSetEnvIfNoCase Referer covid\\-schutzmasken\\.de spambot=yes\nSetEnvIfNoCase Referer cowblog\\.fr spambot=yes\nSetEnvIfNoCase Referer cp24\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer cpnbshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer cranly\\.net spambot=yes\nSetEnvIfNoCase Referer crazy\\-mining\\.org spambot=yes\nSetEnvIfNoCase Referer crd\\.clan\\.su spambot=yes\nSetEnvIfNoCase Referer creams\\.makeforum\\.eu spambot=yes\nSetEnvIfNoCase Referer credit\\-card\\-tinkoff\\.ru spambot=yes\nSetEnvIfNoCase Referer credit\\-cards\\-online24\\.ru spambot=yes\nSetEnvIfNoCase Referer credit\\.co\\.ua spambot=yes\nSetEnvIfNoCase Referer creditmoney\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer crest\\-poloski\\.ru spambot=yes\nSetEnvIfNoCase Referer crest3d\\.ru spambot=yes\nSetEnvIfNoCase Referer crirussian\\.ru spambot=yes\nSetEnvIfNoCase Referer cruiseraf\\.net spambot=yes\nSetEnvIfNoCase Referer crypto\\-bear\\.com spambot=yes\nSetEnvIfNoCase Referer crypto\\-bears\\.com spambot=yes\nSetEnvIfNoCase Referer crypto\\-mining\\.club spambot=yes\nSetEnvIfNoCase Referer crypto\\-wallets\\.org spambot=yes\nSetEnvIfNoCase Referer crypto1x1\\.com spambot=yes\nSetEnvIfNoCase Referer crystalslot\\.com spambot=yes\nSetEnvIfNoCase Referer cubook\\.supernew\\.org spambot=yes\nSetEnvIfNoCase Referer curenaturalicancro\\.com spambot=yes\nSetEnvIfNoCase Referer curenaturalicancro\\.nl spambot=yes\nSetEnvIfNoCase Referer customsua\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer cutalltheshit\\.com spambot=yes\nSetEnvIfNoCase Referer cvety24\\.by spambot=yes\nSetEnvIfNoCase Referer cvta\\.xyz spambot=yes\nSetEnvIfNoCase Referer cxpromote\\.com spambot=yes\nSetEnvIfNoCase Referer cyber\\-monday\\.ga spambot=yes\nSetEnvIfNoCase Referer cyclobenzaprinevstizanidine\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer cymbaltaandtizanidine\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer cyprusbuyproperties\\.com spambot=yes\nSetEnvIfNoCase Referer czcedu\\.com spambot=yes\nSetEnvIfNoCase Referer dacha\\-svoimi\\-rukami\\.com spambot=yes\nSetEnvIfNoCase Referer dailyblog\\.xyz spambot=yes\nSetEnvIfNoCase Referer dailyrank\\.net spambot=yes\nSetEnvIfNoCase Referer dailyseo\\.xyz spambot=yes\nSetEnvIfNoCase Referer dailystorm\\.ru spambot=yes\nSetEnvIfNoCase Referer dailystrength\\.org spambot=yes\nSetEnvIfNoCase Referer dailytraffic\\.shop spambot=yes\nSetEnvIfNoCase Referer dame\\-ns\\.kz spambot=yes\nSetEnvIfNoCase Referer damedingel\\.ya\\.ru spambot=yes\nSetEnvIfNoCase Referer damianis\\.ru spambot=yes\nSetEnvIfNoCase Referer danashop\\.ru spambot=yes\nSetEnvIfNoCase Referer danceuniverse\\.ru spambot=yes\nSetEnvIfNoCase Referer danhale\\.xyz spambot=yes\nSetEnvIfNoCase Referer dantk\\.kz spambot=yes\nSetEnvIfNoCase Referer daptravel\\.com spambot=yes\nSetEnvIfNoCase Referer darcysassoon\\.top spambot=yes\nSetEnvIfNoCase Referer darkbooks\\.org spambot=yes\nSetEnvIfNoCase Referer darknet\\-hydra\\-onion\\.biz spambot=yes\nSetEnvIfNoCase Referer darknet\\.sb spambot=yes\nSetEnvIfNoCase Referer darknetsitesguide\\.com spambot=yes\nSetEnvIfNoCase Referer darleneblog\\.online spambot=yes\nSetEnvIfNoCase Referer darodar\\.com spambot=yes\nSetEnvIfNoCase Referer datsun\\-do\\.com spambot=yes\nSetEnvIfNoCase Referer dav\\.kz spambot=yes\nSetEnvIfNoCase Referer davilaonline\\.shop spambot=yes\nSetEnvIfNoCase Referer dawlenie\\.com spambot=yes\nSetEnvIfNoCase Referer dbmkfhqk\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer dbutton\\.net spambot=yes\nSetEnvIfNoCase Referer dcdcapital\\.com spambot=yes\nSetEnvIfNoCase Referer ddlmega\\.net spambot=yes\nSetEnvIfNoCase Referer ddpills\\.com spambot=yes\nSetEnvIfNoCase Referer de\\.zapmeta\\.com spambot=yes\nSetEnvIfNoCase Referer dear\\-diary\\.ru spambot=yes\nSetEnvIfNoCase Referer deart\\-13\\.ru spambot=yes\nSetEnvIfNoCase Referer deda\\-moroza\\-zakaz\\.ru spambot=yes\nSetEnvIfNoCase Referer deirdre\\.top spambot=yes\nSetEnvIfNoCase Referer dekorkeramik\\.ru spambot=yes\nSetEnvIfNoCase Referer delayreferat\\.ru spambot=yes\nSetEnvIfNoCase Referer delfin\\-aqua\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer delo\\.fund spambot=yes\nSetEnvIfNoCase Referer deluxewatch\\.su spambot=yes\nSetEnvIfNoCase Referer demenageur\\.com spambot=yes\nSetEnvIfNoCase Referer den\\-noch24\\.ru spambot=yes\nSetEnvIfNoCase Referer dengi\\-v\\-kredit\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer denisecarey\\.top spambot=yes\nSetEnvIfNoCase Referer deniseconnie\\.top spambot=yes\nSetEnvIfNoCase Referer deniven\\.1bb\\.ru spambot=yes\nSetEnvIfNoCase Referer dent\\-home\\.ru spambot=yes\nSetEnvIfNoCase Referer dentuled\\.net spambot=yes\nSetEnvIfNoCase Referer depositfiles\\-porn\\.com spambot=yes\nSetEnvIfNoCase Referer depositfiles\\-porn\\.ga spambot=yes\nSetEnvIfNoCase Referer dermatovenerologiya\\.com spambot=yes\nSetEnvIfNoCase Referer deryie\\.com spambot=yes\nSetEnvIfNoCase Referer descargar\\-musica\\-gratis\\.net spambot=yes\nSetEnvIfNoCase Referer descargar\\-musicas\\-gratis\\.com spambot=yes\nSetEnvIfNoCase Referer design\\-lands\\.ru spambot=yes\nSetEnvIfNoCase Referer designdevise\\.com spambot=yes\nSetEnvIfNoCase Referer detailedvideos\\.com spambot=yes\nSetEnvIfNoCase Referer detalizaciya\\-tut\\.biz spambot=yes\nSetEnvIfNoCase Referer detective01\\.ru spambot=yes\nSetEnvIfNoCase Referer detki\\-opt\\.ru spambot=yes\nSetEnvIfNoCase Referer detoolzon\\.xyz spambot=yes\nSetEnvIfNoCase Referer detskie\\-konstruktory\\.ru spambot=yes\nSetEnvIfNoCase Referer detskie\\-zabavi\\.ru spambot=yes\nSetEnvIfNoCase Referer deutsche\\-poesie\\.com spambot=yes\nSetEnvIfNoCase Referer dev\\-seo\\.blog spambot=yes\nSetEnvIfNoCase Referer devochki\\-video\\.ru spambot=yes\nSetEnvIfNoCase Referer dezeypmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer dgdsoutlet\\.xyz spambot=yes\nSetEnvIfNoCase Referer diarioaconcagua\\.com spambot=yes\nSetEnvIfNoCase Referer diatelier\\.ru spambot=yes\nSetEnvIfNoCase Referer dicru\\.info spambot=yes\nSetEnvIfNoCase Referer diebesten\\.co spambot=yes\nSetEnvIfNoCase Referer dienai\\.ru spambot=yes\nSetEnvIfNoCase Referer dienmaytot\\.xyz spambot=yes\nSetEnvIfNoCase Referer diesel\\-parts28\\.ru spambot=yes\nSetEnvIfNoCase Referer digest\\-project\\.ru spambot=yes\nSetEnvIfNoCase Referer digilander\\.libero\\.it spambot=yes\nSetEnvIfNoCase Referer digital\\-video\\-processing\\.com spambot=yes\nSetEnvIfNoCase Referer digitalfaq\\.com spambot=yes\nSetEnvIfNoCase Referer dimkino\\.ru spambot=yes\nSetEnvIfNoCase Referer dinkolove\\.ya\\.ru spambot=yes\nSetEnvIfNoCase Referer diplom\\-nk\\.com spambot=yes\nSetEnvIfNoCase Referer diplomas\\-ru\\.com spambot=yes\nSetEnvIfNoCase Referer dipstar\\.org spambot=yes\nSetEnvIfNoCase Referer directrev\\.com spambot=yes\nSetEnvIfNoCase Referer discounttaxi\\.kz spambot=yes\nSetEnvIfNoCase Referer discover\\-prior\\-full\\-stack\\-services\\.party spambot=yes\nSetEnvIfNoCase Referer discover\\-prior\\-ppc\\-service\\.party spambot=yes\nSetEnvIfNoCase Referer discover\\-top\\-seo\\-service\\.review spambot=yes\nSetEnvIfNoCase Referer distonija\\.com spambot=yes\nSetEnvIfNoCase Referer divan\\-dekor\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer dividendo\\.ru spambot=yes\nSetEnvIfNoCase Referer diy\\-handmade\\-ideas\\.com spambot=yes\nSetEnvIfNoCase Referer djekxa\\.ru spambot=yes\nSetEnvIfNoCase Referer djonwatch\\.ru spambot=yes\nSetEnvIfNoCase Referer djstools\\.com spambot=yes\nSetEnvIfNoCase Referer dktr\\.ru spambot=yes\nSetEnvIfNoCase Referer dldsshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer dlya\\-android\\.org spambot=yes\nSetEnvIfNoCase Referer dms\\-sw\\.ru spambot=yes\nSetEnvIfNoCase Referer dna\\-sklad\\.ru spambot=yes\nSetEnvIfNoCase Referer dnepr\\-avtospar\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer dneprsvet\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer dnmetall\\.ru spambot=yes\nSetEnvIfNoCase Referer docs4all\\.com spambot=yes\nSetEnvIfNoCase Referer docsarchive\\.net spambot=yes\nSetEnvIfNoCase Referer docsportal\\.net spambot=yes\nSetEnvIfNoCase Referer docstoc\\.com spambot=yes\nSetEnvIfNoCase Referer doctmalls\\.xyz spambot=yes\nSetEnvIfNoCase Referer doctornadezhda\\.ru spambot=yes\nSetEnvIfNoCase Referer documentbase\\.net spambot=yes\nSetEnvIfNoCase Referer documentserver\\.net spambot=yes\nSetEnvIfNoCase Referer documentsite\\.net spambot=yes\nSetEnvIfNoCase Referer dodge\\-forum\\.eu spambot=yes\nSetEnvIfNoCase Referer doeco\\.ru spambot=yes\nSetEnvIfNoCase Referer doggyhealthy\\.com spambot=yes\nSetEnvIfNoCase Referer dogovorpodryada\\.ru spambot=yes\nSetEnvIfNoCase Referer dogshowsonice\\.com spambot=yes\nSetEnvIfNoCase Referer dogsrun\\.net spambot=yes\nSetEnvIfNoCase Referer dojki\\-devki\\.ru spambot=yes\nSetEnvIfNoCase Referer dojki\\-hd\\.com spambot=yes\nSetEnvIfNoCase Referer doktoronline\\.no spambot=yes\nSetEnvIfNoCase Referer dokumentalkino\\.net spambot=yes\nSetEnvIfNoCase Referer dom\\-international\\.ru spambot=yes\nSetEnvIfNoCase Referer domain\\-tracker\\.com spambot=yes\nSetEnvIfNoCase Referer domashneeruporno\\.com spambot=yes\nSetEnvIfNoCase Referer domashniy\\-hotel\\.ru spambot=yes\nSetEnvIfNoCase Referer domashniy\\-recepti\\.ru spambot=yes\nSetEnvIfNoCase Referer dombestofferhdd\\.info spambot=yes\nSetEnvIfNoCase Referer domcran\\.net spambot=yes\nSetEnvIfNoCase Referer domik\\-derevne\\.ru spambot=yes\nSetEnvIfNoCase Referer dominateforex\\.ml spambot=yes\nSetEnvIfNoCase Referer domination\\.ml spambot=yes\nSetEnvIfNoCase Referer dominterior\\.org spambot=yes\nSetEnvIfNoCase Referer dommdom\\.com spambot=yes\nSetEnvIfNoCase Referer domovozik\\.ru spambot=yes\nSetEnvIfNoCase Referer domoysshop\\.ru spambot=yes\nSetEnvIfNoCase Referer dompechey\\.by spambot=yes\nSetEnvIfNoCase Referer domsadiogorod\\.ru spambot=yes\nSetEnvIfNoCase Referer donvito\\.unas\\.cz spambot=yes\nSetEnvIfNoCase Referer doreenblog\\.online spambot=yes\nSetEnvIfNoCase Referer doska\\-vsem\\.ru spambot=yes\nSetEnvIfNoCase Referer dostavka\\-v\\-krym\\.com spambot=yes\nSetEnvIfNoCase Referer dostavka\\-v\\-ukrainu\\.ru spambot=yes\nSetEnvIfNoCase Referer dosug\\-lux\\.ru spambot=yes\nSetEnvIfNoCase Referer dosugrostov\\.site spambot=yes\nSetEnvIfNoCase Referer download\\-of\\-the\\-warez\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer downloadkakaotalk\\.com spambot=yes\nSetEnvIfNoCase Referer downloadmefiranaratb1972\\.xpg\\.com\\.br spambot=yes\nSetEnvIfNoCase Referer doxyporno\\.com spambot=yes\nSetEnvIfNoCase Referer doxysexy\\.com spambot=yes\nSetEnvIfNoCase Referer doyouknowtheword\\-flummox\\.ml spambot=yes\nSetEnvIfNoCase Referer dprkboards\\.com spambot=yes\nSetEnvIfNoCase Referer draniki\\.org spambot=yes\nSetEnvIfNoCase Referer dreamland\\-bg\\.com spambot=yes\nSetEnvIfNoCase Referer dreams\\-works\\.net spambot=yes\nSetEnvIfNoCase Referer drev\\.biz spambot=yes\nSetEnvIfNoCase Referer driving\\.kiev\\.ua spambot=yes\nSetEnvIfNoCase Referer drugs\\-no\\-rx\\.info spambot=yes\nSetEnvIfNoCase Referer drugspowerstore\\.com spambot=yes\nSetEnvIfNoCase Referer drugstoreforyou\\.com spambot=yes\nSetEnvIfNoCase Referer drupa\\.com spambot=yes\nSetEnvIfNoCase Referer druzhbany\\.ru spambot=yes\nSetEnvIfNoCase Referer druzhininevgeniy63\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer dspautomations\\.com spambot=yes\nSetEnvIfNoCase Referer dstroy\\.su spambot=yes\nSetEnvIfNoCase Referer duitbux\\.info spambot=yes\nSetEnvIfNoCase Referer dumpsccshop\\.com spambot=yes\nSetEnvIfNoCase Referer dvd\\-famille\\.com spambot=yes\nSetEnvIfNoCase Referer dvk\\-stroi\\.ru spambot=yes\nSetEnvIfNoCase Referer dvr\\.biz\\.ua spambot=yes\nSetEnvIfNoCase Referer dzinerstudio\\.com spambot=yes\nSetEnvIfNoCase Referer e\\-avon\\.ru spambot=yes\nSetEnvIfNoCase Referer e\\-buyeasy\\.com spambot=yes\nSetEnvIfNoCase Referer e\\-collantes\\.com spambot=yes\nSetEnvIfNoCase Referer e\\-commerce\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer e\\-commerce\\-seo1\\.com spambot=yes\nSetEnvIfNoCase Referer e\\-kwiaciarz\\.pl spambot=yes\nSetEnvIfNoCase Referer e\\-stroymart\\.kz spambot=yes\nSetEnvIfNoCase Referer e2click\\.com spambot=yes\nSetEnvIfNoCase Referer eandsgallery\\.com spambot=yes\nSetEnvIfNoCase Referer eaptekaplus\\.ru spambot=yes\nSetEnvIfNoCase Referer earn\\-from\\-articles\\.com spambot=yes\nSetEnvIfNoCase Referer earnian\\-money\\.info spambot=yes\nSetEnvIfNoCase Referer earnity\\-money\\.info spambot=yes\nSetEnvIfNoCase Referer easycommerce\\.cf spambot=yes\nSetEnvIfNoCase Referer easync\\.io spambot=yes\nSetEnvIfNoCase Referer easytuningshop\\.ru spambot=yes\nSetEnvIfNoCase Referer eavuinsr\\.online spambot=yes\nSetEnvIfNoCase Referer ecblog\\.xyz spambot=yes\nSetEnvIfNoCase Referer ecommerce\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer ecommerce\\-seo\\.org spambot=yes\nSetEnvIfNoCase Referer ecomp3\\.ru spambot=yes\nSetEnvIfNoCase Referer econom\\.co spambot=yes\nSetEnvIfNoCase Referer ecookna\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer edakgfvwql\\.ru spambot=yes\nSetEnvIfNoCase Referer edelstahlschornstein\\-123\\.de spambot=yes\nSetEnvIfNoCase Referer editmedios\\.com spambot=yes\nSetEnvIfNoCase Referer edmed\\-sonline\\.com spambot=yes\nSetEnvIfNoCase Referer ednetstore\\.xyz spambot=yes\nSetEnvIfNoCase Referer edshopping\\.net spambot=yes\nSetEnvIfNoCase Referer eduardoluis\\.com spambot=yes\nSetEnvIfNoCase Referer education\\-cz\\.ru spambot=yes\nSetEnvIfNoCase Referer educhess\\.ru spambot=yes\nSetEnvIfNoCase Referer edudocs\\.net spambot=yes\nSetEnvIfNoCase Referer eduinfosite\\.com spambot=yes\nSetEnvIfNoCase Referer eduserver\\.net spambot=yes\nSetEnvIfNoCase Referer eecz\\.org spambot=yes\nSetEnvIfNoCase Referer eets\\.net spambot=yes\nSetEnvIfNoCase Referer ege\\-essay\\.ru spambot=yes\nSetEnvIfNoCase Referer ege\\-krasnoyarsk\\.ru spambot=yes\nSetEnvIfNoCase Referer egovaleo\\.it spambot=yes\nSetEnvIfNoCase Referer egvar\\.net spambot=yes\nSetEnvIfNoCase Referer ek\\-invest\\.ru spambot=yes\nSetEnvIfNoCase Referer ekatalog\\.xyz spambot=yes\nSetEnvIfNoCase Referer ekaterinburg\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer ekbspravka\\.ru spambot=yes\nSetEnvIfNoCase Referer eko\\-gazon\\.ru spambot=yes\nSetEnvIfNoCase Referer ekobata\\.ru spambot=yes\nSetEnvIfNoCase Referer ekoproekt\\-kr\\.ru spambot=yes\nSetEnvIfNoCase Referer ekspertmed\\.com spambot=yes\nSetEnvIfNoCase Referer ekto\\.ee spambot=yes\nSetEnvIfNoCase Referer el\\-nation\\.com spambot=yes\nSetEnvIfNoCase Referer elainasblog\\.xyz spambot=yes\nSetEnvIfNoCase Referer eldoradorent\\.az spambot=yes\nSetEnvIfNoCase Referer election\\.interferencer\\.ru spambot=yes\nSetEnvIfNoCase Referer electric\\-blue\\-industries\\.com spambot=yes\nSetEnvIfNoCase Referer electricwheelchairsarea\\.com spambot=yes\nSetEnvIfNoCase Referer electro\\-prom\\.com spambot=yes\nSetEnvIfNoCase Referer elegante\\-vitrage\\.ru spambot=yes\nSetEnvIfNoCase Referer elektrikovich\\.ru spambot=yes\nSetEnvIfNoCase Referer elektrischezi\\.canalblog\\.com spambot=yes\nSetEnvIfNoCase Referer elektrischeziga\\.livejournal\\.com spambot=yes\nSetEnvIfNoCase Referer elektrischezigarette1\\.blog\\.pl spambot=yes\nSetEnvIfNoCase Referer elektrischezigarette1\\.onsugar\\.com spambot=yes\nSetEnvIfNoCase Referer elektrischezigarette2\\.devhub\\.com spambot=yes\nSetEnvIfNoCase Referer elektrischezigarette2\\.onsugar\\.com spambot=yes\nSetEnvIfNoCase Referer elektrischezigarettekaufen2\\.cowblog\\.fr spambot=yes\nSetEnvIfNoCase Referer elektrischezigaretten1\\.blogse\\.nl spambot=yes\nSetEnvIfNoCase Referer elektrischezigaretten2\\.beeplog\\.com spambot=yes\nSetEnvIfNoCase Referer elektronischezi\\.livejournal\\.com spambot=yes\nSetEnvIfNoCase Referer elektronischezigarette2\\.mex\\.tl spambot=yes\nSetEnvIfNoCase Referer elektronischezigarettekaufen1\\.beeplog\\.com spambot=yes\nSetEnvIfNoCase Referer elektronischezigarettekaufen1\\.myblog\\.de spambot=yes\nSetEnvIfNoCase Referer elektronischezigarettekaufen2\\.tumblr\\.com spambot=yes\nSetEnvIfNoCase Referer elektrozigarette1\\.dreamwidth\\.org spambot=yes\nSetEnvIfNoCase Referer elektrozigarette2\\.webs\\.com spambot=yes\nSetEnvIfNoCase Referer elektrozigarette2\\.wordpressy\\.pl spambot=yes\nSetEnvIfNoCase Referer elektrozigarettekaufen1\\.devhub\\.com spambot=yes\nSetEnvIfNoCase Referer elektrozigarettekaufen2\\.blogse\\.nl spambot=yes\nSetEnvIfNoCase Referer elektrozigaretten1\\.postbit\\.com spambot=yes\nSetEnvIfNoCase Referer elektrozigaretten1\\.tumblr\\.com spambot=yes\nSetEnvIfNoCase Referer elektrozigaretten1\\.webs\\.com spambot=yes\nSetEnvIfNoCase Referer elektrozigaretten2\\.yn\\.lt spambot=yes\nSetEnvIfNoCase Referer elementspluss\\.ru spambot=yes\nSetEnvIfNoCase Referer elenatkachenko\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer elentur\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer elidelcream\\.weebly\\.com spambot=yes\nSetEnvIfNoCase Referer elitesportsadvisor\\.com spambot=yes\nSetEnvIfNoCase Referer elizabethbruno\\.top spambot=yes\nSetEnvIfNoCase Referer elkacentr\\.ru spambot=yes\nSetEnvIfNoCase Referer ellemarket\\.com spambot=yes\nSetEnvIfNoCase Referer elmifarhangi\\.com spambot=yes\nSetEnvIfNoCase Referer eloconcream\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer eloxal\\.ru spambot=yes\nSetEnvIfNoCase Referer elvel\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer embedle\\.com spambot=yes\nSetEnvIfNoCase Referer emctestlab\\.ru spambot=yes\nSetEnvIfNoCase Referer emerson\\-rus\\.ru spambot=yes\nSetEnvIfNoCase Referer emicef\\.com spambot=yes\nSetEnvIfNoCase Referer empire\\-market\\.org spambot=yes\nSetEnvIfNoCase Referer empire\\-market\\.xyz spambot=yes\nSetEnvIfNoCase Referer empiremarket\\-link\\.org spambot=yes\nSetEnvIfNoCase Referer empiremarketlink24\\.com spambot=yes\nSetEnvIfNoCase Referer empirestuff\\.org spambot=yes\nSetEnvIfNoCase Referer empis\\.magix\\.net spambot=yes\nSetEnvIfNoCase Referer encmbtia\\.online spambot=yes\nSetEnvIfNoCase Referer energomash\\.net spambot=yes\nSetEnvIfNoCase Referer energy\\-ua\\.com spambot=yes\nSetEnvIfNoCase Referer energydiet\\-info\\.ru spambot=yes\nSetEnvIfNoCase Referer energydiet24\\.ru spambot=yes\nSetEnvIfNoCase Referer energysexy\\.com spambot=yes\nSetEnvIfNoCase Referer enginebay\\.ru spambot=yes\nSetEnvIfNoCase Referer englishdictionaryfree\\.com spambot=yes\nSetEnvIfNoCase Referer englishtopic\\.ru spambot=yes\nSetEnvIfNoCase Referer enter\\-unicredit\\.ru spambot=yes\nSetEnvIfNoCase Referer entgetadsincome\\.info spambot=yes\nSetEnvIfNoCase Referer envistore\\.xyz spambot=yes\nSetEnvIfNoCase Referer eonpal\\.com spambot=yes\nSetEnvIfNoCase Referer epcpolo\\.com spambot=yes\nSetEnvIfNoCase Referer epicdiving\\.com spambot=yes\nSetEnvIfNoCase Referer eraglass\\.com spambot=yes\nSetEnvIfNoCase Referer erank\\.eu spambot=yes\nSetEnvIfNoCase Referer eredijovon\\.com spambot=yes\nSetEnvIfNoCase Referer ereko\\.ru spambot=yes\nSetEnvIfNoCase Referer erias\\.xyz spambot=yes\nSetEnvIfNoCase Referer eric\\-artem\\.com spambot=yes\nSetEnvIfNoCase Referer ericshome\\.store spambot=yes\nSetEnvIfNoCase Referer erinhome\\.xyz spambot=yes\nSetEnvIfNoCase Referer ero\\-video\\-chat\\.org spambot=yes\nSetEnvIfNoCase Referer erofus\\.online spambot=yes\nSetEnvIfNoCase Referer eropho\\.com spambot=yes\nSetEnvIfNoCase Referer eropho\\.net spambot=yes\nSetEnvIfNoCase Referer erot\\.co spambot=yes\nSetEnvIfNoCase Referer erotag\\.com spambot=yes\nSetEnvIfNoCase Referer eroticheskij\\-video\\-chat\\.ru spambot=yes\nSetEnvIfNoCase Referer erotikstories\\.ru spambot=yes\nSetEnvIfNoCase Referer es\\-pfrf\\.ru spambot=yes\nSetEnvIfNoCase Referer es5\\.com spambot=yes\nSetEnvIfNoCase Referer escort\\-russian\\.com spambot=yes\nSetEnvIfNoCase Referer escortplius\\.com spambot=yes\nSetEnvIfNoCase Referer eshop\\.md spambot=yes\nSetEnvIfNoCase Referer eskei83\\.com spambot=yes\nSetEnvIfNoCase Referer esnm\\.ru spambot=yes\nSetEnvIfNoCase Referer esoterikforum\\.at spambot=yes\nSetEnvIfNoCase Referer essaytags\\.com spambot=yes\nSetEnvIfNoCase Referer estdj\\.com spambot=yes\nSetEnvIfNoCase Referer este\\-line\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer etairikavideo\\.gr spambot=yes\nSetEnvIfNoCase Referer etehnika\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer etotupo\\.ru spambot=yes\nSetEnvIfNoCase Referer ets\\-2\\-mod\\.ru spambot=yes\nSetEnvIfNoCase Referer etsfshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer eu\\-cookie\\-law\\-enforcement\\-4\\.xyz spambot=yes\nSetEnvIfNoCase Referer eu\\-cookie\\-law\\-enforcement\\-5\\.xyz spambot=yes\nSetEnvIfNoCase Referer eu\\-cookie\\-law\\-enforcement\\-6\\.xyz spambot=yes\nSetEnvIfNoCase Referer eu\\-cookie\\-law\\-enforcement\\-7\\.xyz spambot=yes\nSetEnvIfNoCase Referer eu\\-cookie\\-law\\-enforcement1\\.xyz spambot=yes\nSetEnvIfNoCase Referer eu\\-cookie\\-law\\-enforcement2\\.xyz spambot=yes\nSetEnvIfNoCase Referer eu\\-cookie\\-law\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer eu\\-cookie\\-law\\.info spambot=yes\nSetEnvIfNoCase Referer eurocredit\\.xyz spambot=yes\nSetEnvIfNoCase Referer euromasterclass\\.ru spambot=yes\nSetEnvIfNoCase Referer euronis\\-free\\.com spambot=yes\nSetEnvIfNoCase Referer europages\\.com\\.ru spambot=yes\nSetEnvIfNoCase Referer europeanwatches\\.ru spambot=yes\nSetEnvIfNoCase Referer eurosamodelki\\.ru spambot=yes\nSetEnvIfNoCase Referer euroskat\\.ru spambot=yes\nSetEnvIfNoCase Referer evaashop\\.ru spambot=yes\nSetEnvIfNoCase Referer event\\-tracking\\.com spambot=yes\nSetEnvIfNoCase Referer eventiyahall\\.ru spambot=yes\nSetEnvIfNoCase Referer evreuxshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer exchangeit\\.gq spambot=yes\nSetEnvIfNoCase Referer exchanges\\-bet\\.com spambot=yes\nSetEnvIfNoCase Referer exclusive\\-profit\\.com spambot=yes\nSetEnvIfNoCase Referer exdocsfiles\\.com spambot=yes\nSetEnvIfNoCase Referer execedmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer executehosting\\.com spambot=yes\nSetEnvIfNoCase Referer exotic\\-video\\-chat\\.ru spambot=yes\nSetEnvIfNoCase Referer expdom\\.com spambot=yes\nSetEnvIfNoCase Referer expediacustomerservicenumber\\.online spambot=yes\nSetEnvIfNoCase Referer expert\\-find\\.ru spambot=yes\nSetEnvIfNoCase Referer expertnaya\\-ocenka\\.ru spambot=yes\nSetEnvIfNoCase Referer explore\\-prior\\-web\\-service\\.review spambot=yes\nSetEnvIfNoCase Referer express\\-vyvoz\\.ru spambot=yes\nSetEnvIfNoCase Referer expresstoplivo\\.ru spambot=yes\nSetEnvIfNoCase Referer extener\\.com spambot=yes\nSetEnvIfNoCase Referer extener\\.org spambot=yes\nSetEnvIfNoCase Referer extrabot\\.com spambot=yes\nSetEnvIfNoCase Referer extremez\\.net spambot=yes\nSetEnvIfNoCase Referer eyes\\-on\\-you\\.ga spambot=yes\nSetEnvIfNoCase Referer eyessurgery\\.ru spambot=yes\nSetEnvIfNoCase Referer ez8motelseaworldsandiego\\.com spambot=yes\nSetEnvIfNoCase Referer ezigarettekaufen\\.myblog\\.de spambot=yes\nSetEnvIfNoCase Referer ezigarettekaufen1\\.hpage\\.com spambot=yes\nSetEnvIfNoCase Referer ezigarettekaufen2\\.blox\\.pl spambot=yes\nSetEnvIfNoCase Referer ezigarettekaufen2\\.mpbloggar\\.se spambot=yes\nSetEnvIfNoCase Referer ezigarettekaufen2\\.yolasite\\.com spambot=yes\nSetEnvIfNoCase Referer ezigarettenkaufen1\\.deviantart\\.com spambot=yes\nSetEnvIfNoCase Referer ezigarettenkaufen1\\.pagina\\.gr spambot=yes\nSetEnvIfNoCase Referer ezigarettenkaufen2\\.dreamwidth\\.org spambot=yes\nSetEnvIfNoCase Referer ezigarettenshop1\\.yolasite\\.com spambot=yes\nSetEnvIfNoCase Referer ezigarettenshop2\\.myblog\\.de spambot=yes\nSetEnvIfNoCase Referer ezigarettenshop2\\.postbit\\.com spambot=yes\nSetEnvIfNoCase Referer ezigaretteshop\\.webs\\.com spambot=yes\nSetEnvIfNoCase Referer ezigaretteshop2\\.mywapblog\\.com spambot=yes\nSetEnvIfNoCase Referer ezigaretteshop2\\.vefblog\\.net spambot=yes\nSetEnvIfNoCase Referer ezofest\\.sk spambot=yes\nSetEnvIfNoCase Referer ezrvrentals\\.com spambot=yes\nSetEnvIfNoCase Referer f\\-loaded\\.de spambot=yes\nSetEnvIfNoCase Referer f\\-online\\.de spambot=yes\nSetEnvIfNoCase Referer f00kclan\\.de spambot=yes\nSetEnvIfNoCase Referer f012\\.de spambot=yes\nSetEnvIfNoCase Referer f07\\.de spambot=yes\nSetEnvIfNoCase Referer f0815\\.de spambot=yes\nSetEnvIfNoCase Referer f1nder\\.org spambot=yes\nSetEnvIfNoCase Referer facebook\\-mobile\\.xyz spambot=yes\nSetEnvIfNoCase Referer fainaidea\\.com spambot=yes\nSetEnvIfNoCase Referer faithe\\.top spambot=yes\nSetEnvIfNoCase Referer falco3d\\.com spambot=yes\nSetEnvIfNoCase Referer falcoware\\.com spambot=yes\nSetEnvIfNoCase Referer family1st\\.ca spambot=yes\nSetEnvIfNoCase Referer familyholiday\\.ml spambot=yes\nSetEnvIfNoCase Referer familyphysician\\.ru spambot=yes\nSetEnvIfNoCase Referer fanoboi\\.com spambot=yes\nSetEnvIfNoCase Referer fartunabest\\.ru spambot=yes\nSetEnvIfNoCase Referer fashion\\-mk\\.net spambot=yes\nSetEnvIfNoCase Referer fashiong\\.ru spambot=yes\nSetEnvIfNoCase Referer fashionindeed\\.ml spambot=yes\nSetEnvIfNoCase Referer fast\\-wordpress\\-start\\.com spambot=yes\nSetEnvIfNoCase Referer fastgg\\.net spambot=yes\nSetEnvIfNoCase Referer fatrizscae\\.online spambot=yes\nSetEnvIfNoCase Referer favorcosmetics\\.com spambot=yes\nSetEnvIfNoCase Referer favoritemoney\\.ru spambot=yes\nSetEnvIfNoCase Referer favoritki\\-msk\\.ru spambot=yes\nSetEnvIfNoCase Referer favornews\\.com spambot=yes\nSetEnvIfNoCase Referer fazika\\.ru spambot=yes\nSetEnvIfNoCase Referer fba\\-mexico\\.com spambot=yes\nSetEnvIfNoCase Referer fbdownloader\\.com spambot=yes\nSetEnvIfNoCase Referer fbfreegifts\\.com spambot=yes\nSetEnvIfNoCase Referer fc\\-007\\.com spambot=yes\nSetEnvIfNoCase Referer fealq\\.com spambot=yes\nSetEnvIfNoCase Referer feargames\\.ru spambot=yes\nSetEnvIfNoCase Referer feedback\\.sharemyfile\\.ru spambot=yes\nSetEnvIfNoCase Referer feedouble\\.com spambot=yes\nSetEnvIfNoCase Referer feedouble\\.net spambot=yes\nSetEnvIfNoCase Referer feel\\-planet\\.com spambot=yes\nSetEnvIfNoCase Referer feeriaclub\\.ru spambot=yes\nSetEnvIfNoCase Referer feiacmr\\.shop spambot=yes\nSetEnvIfNoCase Referer feminist\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer femmesdenudees\\.com spambot=yes\nSetEnvIfNoCase Referer fenoyl\\.batcave\\.net spambot=yes\nSetEnvIfNoCase Referer ferieboligkbh\\.dk spambot=yes\nSetEnvIfNoCase Referer fermersovet\\.ru spambot=yes\nSetEnvIfNoCase Referer fetishinside\\.com spambot=yes\nSetEnvIfNoCase Referer fialka\\.tomsk\\.ru spambot=yes\nSetEnvIfNoCase Referer fidalsa\\.de spambot=yes\nSetEnvIfNoCase Referer fierrohack\\.ru spambot=yes\nSetEnvIfNoCase Referer figensahin\\.com spambot=yes\nSetEnvIfNoCase Referer filesclub\\.net spambot=yes\nSetEnvIfNoCase Referer filesdatabase\\.net spambot=yes\nSetEnvIfNoCase Referer filesvine\\.com spambot=yes\nSetEnvIfNoCase Referer film\\-one\\.ru spambot=yes\nSetEnvIfNoCase Referer filmetricsasia\\.com spambot=yes\nSetEnvIfNoCase Referer filmgo\\.ru spambot=yes\nSetEnvIfNoCase Referer filmidivx\\.com spambot=yes\nSetEnvIfNoCase Referer films2018\\.com spambot=yes\nSetEnvIfNoCase Referer filter\\-ot\\-zheleza\\.ru spambot=yes\nSetEnvIfNoCase Referer financial\\-simulation\\.com spambot=yes\nSetEnvIfNoCase Referer finansov\\.info spambot=yes\nSetEnvIfNoCase Referer findacheaplawyers\\.com spambot=yes\nSetEnvIfNoCase Referer finder\\.cool spambot=yes\nSetEnvIfNoCase Referer findercarphotos\\.com spambot=yes\nSetEnvIfNoCase Referer fineblog\\.top spambot=yes\nSetEnvIfNoCase Referer finstroy\\.net spambot=yes\nSetEnvIfNoCase Referer finteks\\.ru spambot=yes\nSetEnvIfNoCase Referer firma\\-legion\\.ru spambot=yes\nSetEnvIfNoCase Referer firmgeo\\.xyz spambot=yes\nSetEnvIfNoCase Referer firstblog\\.top spambot=yes\nSetEnvIfNoCase Referer fit\\-discount\\.ru spambot=yes\nSetEnvIfNoCase Referer fitness\\-video\\.net spambot=yes\nSetEnvIfNoCase Referer fitodar\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer fiuagts\\.online spambot=yes\nSetEnvIfNoCase Referer fiuxy\\.com spambot=yes\nSetEnvIfNoCase Referer fiverr\\.com spambot=yes\nSetEnvIfNoCase Referer fix\\-website\\-errors\\.com spambot=yes\nSetEnvIfNoCase Referer fizika\\.tv spambot=yes\nSetEnvIfNoCase Referer flash4fun\\.com spambot=yes\nSetEnvIfNoCase Referer flavors\\.me spambot=yes\nSetEnvIfNoCase Referer flex4launch\\.ru spambot=yes\nSetEnvIfNoCase Referer flexderek\\.com spambot=yes\nSetEnvIfNoCase Referer floating\\-share\\-buttons\\.com spambot=yes\nSetEnvIfNoCase Referer flooringinstallation\\-edmonton\\.com spambot=yes\nSetEnvIfNoCase Referer flowersbazar\\.com spambot=yes\nSetEnvIfNoCase Referer flowertherapy\\.ru spambot=yes\nSetEnvIfNoCase Referer flowwwers\\.com spambot=yes\nSetEnvIfNoCase Referer flprog\\.com spambot=yes\nSetEnvIfNoCase Referer flyblog\\.xyz spambot=yes\nSetEnvIfNoCase Referer flytourisme\\.org spambot=yes\nSetEnvIfNoCase Referer fm\\-upgrade\\.ru spambot=yes\nSetEnvIfNoCase Referer fmgrupe\\.it spambot=yes\nSetEnvIfNoCase Referer foojo\\.net spambot=yes\nSetEnvIfNoCase Referer for\\-marketersy\\.info spambot=yes\nSetEnvIfNoCase Referer for\\-your\\.website spambot=yes\nSetEnvIfNoCase Referer forensicpsychiatry\\.ru spambot=yes\nSetEnvIfNoCase Referer forex\\-indextop20\\.ru spambot=yes\nSetEnvIfNoCase Referer forex\\-procto\\.ru spambot=yes\nSetEnvIfNoCase Referer forex\\.osobye\\.ru spambot=yes\nSetEnvIfNoCase Referer forex21\\.ru spambot=yes\nSetEnvIfNoCase Referer forexgb\\.ru spambot=yes\nSetEnvIfNoCase Referer forexunion\\.net spambot=yes\nSetEnvIfNoCase Referer forminecrafters\\.ru spambot=yes\nSetEnvIfNoCase Referer forms\\-mtm\\.ru spambot=yes\nSetEnvIfNoCase Referer forpostlock\\.ru spambot=yes\nSetEnvIfNoCase Referer forsex\\.info spambot=yes\nSetEnvIfNoCase Referer fortwosmartcar\\.pw spambot=yes\nSetEnvIfNoCase Referer forum\\-engineering\\.ru spambot=yes\nSetEnvIfNoCase Referer forum\\.poker4life\\.ru spambot=yes\nSetEnvIfNoCase Referer forum\\.tvmir\\.org spambot=yes\nSetEnvIfNoCase Referer forum20\\.smailik\\.org spambot=yes\nSetEnvIfNoCase Referer forum69\\.info spambot=yes\nSetEnvIfNoCase Referer forums\\.toucharcade\\.com spambot=yes\nSetEnvIfNoCase Referer fotoxxxru\\.com spambot=yes\nSetEnvIfNoCase Referer foxinsocks\\.ru spambot=yes\nSetEnvIfNoCase Referer foxjuegos\\.com spambot=yes\nSetEnvIfNoCase Referer foxtechfpv\\.com spambot=yes\nSetEnvIfNoCase Referer foxweber\\.com spambot=yes\nSetEnvIfNoCase Referer fpclub\\.ru spambot=yes\nSetEnvIfNoCase Referer fr\\.netlog\\.com spambot=yes\nSetEnvIfNoCase Referer francaise\\-poesie\\.com spambot=yes\nSetEnvIfNoCase Referer frankofficial\\.ru spambot=yes\nSetEnvIfNoCase Referer frauplus\\.ru spambot=yes\nSetEnvIfNoCase Referer free\\-fb\\-traffic\\.com spambot=yes\nSetEnvIfNoCase Referer free\\-fbook\\-traffic\\.com spambot=yes\nSetEnvIfNoCase Referer free\\-floating\\-buttons\\.com spambot=yes\nSetEnvIfNoCase Referer free\\-games\\-download\\.falcoware\\.com spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\-aaa\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\-bbb\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\-ccc\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\-ddd\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\-eee\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\-fff\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\.co spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\.com spambot=yes\nSetEnvIfNoCase Referer free\\-share\\-buttons\\.top spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\-aaa\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\-bbb\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\-ccc\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\-ddd\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\-eee\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\-fff\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\-hhh\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\-iii\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\.com spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\.org spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons1\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons2\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons3\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons4\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons5\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons6\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-social\\-buttons7\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-traffic\\.xyz spambot=yes\nSetEnvIfNoCase Referer free\\-video\\-chat\\.ru spambot=yes\nSetEnvIfNoCase Referer free\\-video\\-tool\\.com spambot=yes\nSetEnvIfNoCase Referer free\\-website\\-traffic\\.com spambot=yes\nSetEnvIfNoCase Referer freeasecret\\.com spambot=yes\nSetEnvIfNoCase Referer freenode\\.info spambot=yes\nSetEnvIfNoCase Referer freeseedsonline\\.com spambot=yes\nSetEnvIfNoCase Referer freetangodownload\\.com spambot=yes\nSetEnvIfNoCase Referer freewebs\\.com spambot=yes\nSetEnvIfNoCase Referer freewhatsappload\\.com spambot=yes\nSetEnvIfNoCase Referer freewlan\\.info spambot=yes\nSetEnvIfNoCase Referer freshberry\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer freshnails\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer front\\.ru spambot=yes\nSetEnvIfNoCase Referer front\\.to spambot=yes\nSetEnvIfNoCase Referer fsalas\\.com spambot=yes\nSetEnvIfNoCase Referer fsin\\-pokypka\\.ru spambot=yes\nSetEnvIfNoCase Referer ftns\\.ru spambot=yes\nSetEnvIfNoCase Referer fuck\\-paid\\-share\\-buttons\\.xyz spambot=yes\nSetEnvIfNoCase Referer fuel\\-gas\\.com spambot=yes\nSetEnvIfNoCase Referer fullzdumps\\.cc spambot=yes\nSetEnvIfNoCase Referer fungirlsgames\\.net spambot=yes\nSetEnvIfNoCase Referer funnypica\\.com spambot=yes\nSetEnvIfNoCase Referer furniture\\-ukraine\\.com spambot=yes\nSetEnvIfNoCase Referer furniturehomewares\\.com spambot=yes\nSetEnvIfNoCase Referer futbolkisales\\.ru spambot=yes\nSetEnvIfNoCase Referer fvetgoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer fxtips\\.ru spambot=yes\nSetEnvIfNoCase Referer g7m\\.pl spambot=yes\nSetEnvIfNoCase Referer gabeshop\\.ru spambot=yes\nSetEnvIfNoCase Referer gabysuniqueboutique\\.com spambot=yes\nSetEnvIfNoCase Referer gael\\-s\\.ru spambot=yes\nSetEnvIfNoCase Referer gagrasector\\.ru spambot=yes\nSetEnvIfNoCase Referer galaxy\\-family\\.ru spambot=yes\nSetEnvIfNoCase Referer galaxyflowers\\.ru spambot=yes\nSetEnvIfNoCase Referer galblog\\.top spambot=yes\nSetEnvIfNoCase Referer galeon\\.com spambot=yes\nSetEnvIfNoCase Referer gamblingpp\\.ru spambot=yes\nSetEnvIfNoCase Referer game\\-mmorpg\\.net spambot=yes\nSetEnvIfNoCase Referer game\\-top\\.su spambot=yes\nSetEnvIfNoCase Referer game300\\.ru spambot=yes\nSetEnvIfNoCase Referer games\\.kolossale\\.ru spambot=yes\nSetEnvIfNoCase Referer gammatraffic\\.com spambot=yes\nSetEnvIfNoCase Referer gandikapper\\.ru spambot=yes\nSetEnvIfNoCase Referer gaokr\\.xyz spambot=yes\nSetEnvIfNoCase Referer gap\\-search\\.com spambot=yes\nSetEnvIfNoCase Referer garantprava\\.com spambot=yes\nSetEnvIfNoCase Referer gardene\\.ru spambot=yes\nSetEnvIfNoCase Referer gasvleningrade\\.ru spambot=yes\nSetEnvIfNoCase Referer gatwick\\.ru spambot=yes\nSetEnvIfNoCase Referer gays\\-video\\-chat\\.ru spambot=yes\nSetEnvIfNoCase Referer gaz\\-voshod\\.ru spambot=yes\nSetEnvIfNoCase Referer gazel\\-72\\.ru spambot=yes\nSetEnvIfNoCase Referer gazobeton\\-p\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer gazoblok\\.net\\.ua spambot=yes\nSetEnvIfNoCase Referer gbh\\-invest\\.ru spambot=yes\nSetEnvIfNoCase Referer gcmx\\.net spambot=yes\nSetEnvIfNoCase Referer gcup\\.ru spambot=yes\nSetEnvIfNoCase Referer gdcentre\\.ru spambot=yes\nSetEnvIfNoCase Referer gearcraft\\.us spambot=yes\nSetEnvIfNoCase Referer gearsadspromo\\.club spambot=yes\nSetEnvIfNoCase Referer gelezki\\.com spambot=yes\nSetEnvIfNoCase Referer geliyballon\\.ru spambot=yes\nSetEnvIfNoCase Referer gelstate\\.ru spambot=yes\nSetEnvIfNoCase Referer generalporn\\.org spambot=yes\nSetEnvIfNoCase Referer genericlowlatencyasiodriverhq\\.aircus\\.com spambot=yes\nSetEnvIfNoCase Referer geniusfood\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer gentamicineyedrops\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer georgeblog\\.online spambot=yes\nSetEnvIfNoCase Referer gepatit\\-info\\.top spambot=yes\nSetEnvIfNoCase Referer germes\\-trans\\.com spambot=yes\nSetEnvIfNoCase Referer get\\-best\\-copywriting\\-service\\.stream spambot=yes\nSetEnvIfNoCase Referer get\\-clickir\\.info spambot=yes\nSetEnvIfNoCase Referer get\\-clickize\\.info spambot=yes\nSetEnvIfNoCase Referer get\\-free\\-social\\-traffic\\.com spambot=yes\nSetEnvIfNoCase Referer get\\-free\\-traffic\\-now\\.com spambot=yes\nSetEnvIfNoCase Referer get\\-more\\-freeen\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer get\\-more\\-freeer\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer get\\-more\\-freeish\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer get\\-more\\-freeize\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer get\\-more\\-freele\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer get\\-morebit\\-free\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer get\\-prime\\-seo\\-services\\.review spambot=yes\nSetEnvIfNoCase Referer get\\-seo\\-help\\.com spambot=yes\nSetEnvIfNoCase Referer get\\-your\\-social\\-buttons\\.info spambot=yes\nSetEnvIfNoCase Referer getaadsincome\\.info spambot=yes\nSetEnvIfNoCase Referer getadsincomeian\\.info spambot=yes\nSetEnvIfNoCase Referer getadsincomely\\.info spambot=yes\nSetEnvIfNoCase Referer getadsincomeof\\.info spambot=yes\nSetEnvIfNoCase Referer getbottraffic4free\\.club spambot=yes\nSetEnvIfNoCase Referer getbottraffic4free\\.host spambot=yes\nSetEnvIfNoCase Referer getbottraffic4free\\.xyz spambot=yes\nSetEnvIfNoCase Referer getbytadsincome\\.info spambot=yes\nSetEnvIfNoCase Referer getfy\\-click\\.info spambot=yes\nSetEnvIfNoCase Referer getism\\-more\\-free\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer getity\\-more\\-free\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer getityadsincome\\.info spambot=yes\nSetEnvIfNoCase Referer getive\\-more\\-free\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer getlamborghini\\.ga spambot=yes\nSetEnvIfNoCase Referer getoutofdebtfree\\.org spambot=yes\nSetEnvIfNoCase Referer getprismatic\\.com spambot=yes\nSetEnvIfNoCase Referer getpy\\-click\\.info spambot=yes\nSetEnvIfNoCase Referer getpy\\-more\\-free\\-visitors\\.info spambot=yes\nSetEnvIfNoCase Referer getrichquick\\.ml spambot=yes\nSetEnvIfNoCase Referer getrichquickly\\.info spambot=yes\nSetEnvIfNoCase Referer getyourprofit\\.net spambot=yes\nSetEnvIfNoCase Referer gevciamst\\.online spambot=yes\nSetEnvIfNoCase Referer gezlev\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer gfaq\\.ru spambot=yes\nSetEnvIfNoCase Referer ghazel\\.ru spambot=yes\nSetEnvIfNoCase Referer ghernnqr\\.skyrock\\.com spambot=yes\nSetEnvIfNoCase Referer gheus\\.altervista\\.org spambot=yes\nSetEnvIfNoCase Referer ghostvisitor\\.com spambot=yes\nSetEnvIfNoCase Referer gidonline\\.one spambot=yes\nSetEnvIfNoCase Referer gidro\\-partner\\.ru spambot=yes\nSetEnvIfNoCase Referer giftbig\\.ru spambot=yes\nSetEnvIfNoCase Referer girlporn\\.ru spambot=yes\nSetEnvIfNoCase Referer girls\\-ufa\\.ru spambot=yes\nSetEnvIfNoCase Referer girlsatgames\\.ru spambot=yes\nSetEnvIfNoCase Referer gk\\-atlant\\.info spambot=yes\nSetEnvIfNoCase Referer gk\\-casino\\.fun spambot=yes\nSetEnvIfNoCase Referer gk\\-casino\\.online spambot=yes\nSetEnvIfNoCase Referer gk\\-casino\\.ru spambot=yes\nSetEnvIfNoCase Referer gk\\-casino\\.site spambot=yes\nSetEnvIfNoCase Referer gk\\-casino\\.space spambot=yes\nSetEnvIfNoCase Referer gk\\-casino\\.website spambot=yes\nSetEnvIfNoCase Referer gkvector\\.ru spambot=yes\nSetEnvIfNoCase Referer glall\\.ru spambot=yes\nSetEnvIfNoCase Referer glass\\-msk\\.ru spambot=yes\nSetEnvIfNoCase Referer glavprofit\\.ru spambot=yes\nSetEnvIfNoCase Referer glcomputers\\.ru spambot=yes\nSetEnvIfNoCase Referer glktfw\\.net spambot=yes\nSetEnvIfNoCase Referer global\\-smm\\.ru spambot=yes\nSetEnvIfNoCase Referer globalscam\\.ga spambot=yes\nSetEnvIfNoCase Referer globatur\\.ru spambot=yes\nSetEnvIfNoCase Referer globetrotting\\-culture\\.ru spambot=yes\nSetEnvIfNoCase Referer glogow\\.pl spambot=yes\nSetEnvIfNoCase Referer glopages\\.ru spambot=yes\nSetEnvIfNoCase Referer go2album\\.com spambot=yes\nSetEnvIfNoCase Referer gobongo\\.info spambot=yes\nSetEnvIfNoCase Referer goforexvps\\.com spambot=yes\nSetEnvIfNoCase Referer gogps\\.me spambot=yes\nSetEnvIfNoCase Referer gojiberriess\\.apishops\\.ru spambot=yes\nSetEnvIfNoCase Referer gok\\-kasten\\.net spambot=yes\nSetEnvIfNoCase Referer goldandcard\\.ru spambot=yes\nSetEnvIfNoCase Referer golden\\-catalog\\.pro spambot=yes\nSetEnvIfNoCase Referer golden\\-praga\\.ru spambot=yes\nSetEnvIfNoCase Referer goldenggames\\.com spambot=yes\nSetEnvIfNoCase Referer goldvaultmetals\\.com spambot=yes\nSetEnvIfNoCase Referer golmau\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer golyedevushki\\.com spambot=yes\nSetEnvIfNoCase Referer gonextmedia\\.com spambot=yes\nSetEnvIfNoCase Referer good\\-potolok\\.ru spambot=yes\nSetEnvIfNoCase Referer goodbyecellulite\\.ru spambot=yes\nSetEnvIfNoCase Referer goodcoffeepremium\\.com spambot=yes\nSetEnvIfNoCase Referer goodhumor24\\.com spambot=yes\nSetEnvIfNoCase Referer goodnightjournal\\.com spambot=yes\nSetEnvIfNoCase Referer goodprotein\\.ru spambot=yes\nSetEnvIfNoCase Referer google\\-liar\\.ru spambot=yes\nSetEnvIfNoCase Referer googlefeud\\.com spambot=yes\nSetEnvIfNoCase Referer googlemare\\.com spambot=yes\nSetEnvIfNoCase Referer googlsucks\\.com spambot=yes\nSetEnvIfNoCase Referer gorabagrata\\.ru spambot=yes\nSetEnvIfNoCase Referer gorgaz\\.info spambot=yes\nSetEnvIfNoCase Referer goroda\\-vsego\\-mira\\.ru spambot=yes\nSetEnvIfNoCase Referer gorodservis\\.ru spambot=yes\nSetEnvIfNoCase Referer gosreg\\.amchs\\.ru spambot=yes\nSetEnvIfNoCase Referer gototal\\.co\\.nz spambot=yes\nSetEnvIfNoCase Referer gourcy\\.altervista\\.org spambot=yes\nSetEnvIfNoCase Referer goyua\\.xyz spambot=yes\nSetEnvIfNoCase Referer gq\\-catalog\\.gq spambot=yes\nSetEnvIfNoCase Referer graceonline\\.shop spambot=yes\nSetEnvIfNoCase Referer grafaman\\.ru spambot=yes\nSetEnvIfNoCase Referer grand\\-chlen\\.ru spambot=yes\nSetEnvIfNoCase Referer graphid\\.com spambot=yes\nSetEnvIfNoCase Referer gratuitbaise\\.com spambot=yes\nSetEnvIfNoCase Referer greatblog\\.top spambot=yes\nSetEnvIfNoCase Referer greatgrace\\.ru spambot=yes\nSetEnvIfNoCase Referer greentechsy\\.com spambot=yes\nSetEnvIfNoCase Referer grizzlysgrill\\.com spambot=yes\nSetEnvIfNoCase Referer groshi\\-kredut\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer groupmoney\\.ru spambot=yes\nSetEnvIfNoCase Referer growmyfunds\\.ca spambot=yes\nSetEnvIfNoCase Referer growshop\\.es spambot=yes\nSetEnvIfNoCase Referer growth\\-hackingan\\.info spambot=yes\nSetEnvIfNoCase Referer growth\\-hackingead\\.info spambot=yes\nSetEnvIfNoCase Referer growth\\-hackingeads\\.info spambot=yes\nSetEnvIfNoCase Referer growth\\-hackingor\\.info spambot=yes\nSetEnvIfNoCase Referer growth\\-hackingy\\.info spambot=yes\nSetEnvIfNoCase Referer grupografico\\-pilar\\.com\\.ar spambot=yes\nSetEnvIfNoCase Referer gruzchiki24\\.ru spambot=yes\nSetEnvIfNoCase Referer gsbs\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer gsmlab\\.pl spambot=yes\nSetEnvIfNoCase Referer gsmtlf\\.ru spambot=yes\nSetEnvIfNoCase Referer gta\\-club\\.ru spambot=yes\nSetEnvIfNoCase Referer gta\\-top\\.ru spambot=yes\nSetEnvIfNoCase Referer gttpsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer guardlink\\.com spambot=yes\nSetEnvIfNoCase Referer guardlink\\.org spambot=yes\nSetEnvIfNoCase Referer guge\\.io spambot=yes\nSetEnvIfNoCase Referer guidetopetersburg\\.com spambot=yes\nSetEnvIfNoCase Referer gungamesz\\.com spambot=yes\nSetEnvIfNoCase Referer guruofcasino\\.com spambot=yes\nSetEnvIfNoCase Referer gwhwpxbw\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer gxcb\\.net spambot=yes\nSetEnvIfNoCase Referer h2monline\\.com spambot=yes\nSetEnvIfNoCase Referer hacktougroup\\.ru spambot=yes\nSetEnvIfNoCase Referer hagirkblog\\.space spambot=yes\nSetEnvIfNoCase Referer hahashka\\.ru spambot=yes\nSetEnvIfNoCase Referer haikuware\\.com spambot=yes\nSetEnvIfNoCase Referer halat\\.xyz spambot=yes\nSetEnvIfNoCase Referer halefa\\.com spambot=yes\nSetEnvIfNoCase Referer hamyshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer handicapvansarea\\.com spambot=yes\nSetEnvIfNoCase Referer handicapvantoday\\.com spambot=yes\nSetEnvIfNoCase Referer handsandlegs\\.ru spambot=yes\nSetEnvIfNoCase Referer hanink\\.biz\\.ly spambot=yes\nSetEnvIfNoCase Referer hankspring\\.xyz spambot=yes\nSetEnvIfNoCase Referer happysong\\.ru spambot=yes\nSetEnvIfNoCase Referer hard\\-porn\\.mobi spambot=yes\nSetEnvIfNoCase Referer hardcore\\.anzwers\\.net spambot=yes\nSetEnvIfNoCase Referer hardosale\\.xyz spambot=yes\nSetEnvIfNoCase Referer harpro\\.net spambot=yes\nSetEnvIfNoCase Referer havepussy\\.com spambot=yes\nSetEnvIfNoCase Referer hawaiisurf\\.com spambot=yes\nSetEnvIfNoCase Referer hazardky\\.net spambot=yes\nSetEnvIfNoCase Referer hd1080film\\.ru spambot=yes\nSetEnvIfNoCase Referer hd720kino\\.ru spambot=yes\nSetEnvIfNoCase Referer hdfreeporno\\.net spambot=yes\nSetEnvIfNoCase Referer hdhc\\.site spambot=yes\nSetEnvIfNoCase Referer hdmoviecamera\\.net spambot=yes\nSetEnvIfNoCase Referer hdmoviecams\\.com spambot=yes\nSetEnvIfNoCase Referer hdmoviecams\\.net spambot=yes\nSetEnvIfNoCase Referer hdsmartvideoreg\\.ru spambot=yes\nSetEnvIfNoCase Referer headpharmacy\\.com spambot=yes\nSetEnvIfNoCase Referer healbio\\.ru spambot=yes\nSetEnvIfNoCase Referer healgastro\\.com spambot=yes\nSetEnvIfNoCase Referer healing\\-dysplasia\\.ru spambot=yes\nSetEnvIfNoCase Referer healmytrauma\\.info spambot=yes\nSetEnvIfNoCase Referer healthhacks\\.ru spambot=yes\nSetEnvIfNoCase Referer heeha\\.net spambot=yes\nSetEnvIfNoCase Referer hem\\.passagen\\.se spambot=yes\nSetEnvIfNoCase Referer hentai\\-manga\\.porn spambot=yes\nSetEnvIfNoCase Referer heroero\\.com spambot=yes\nSetEnvIfNoCase Referer hexometer\\.com spambot=yes\nSetEnvIfNoCase Referer hifidesign\\.ru spambot=yes\nSetEnvIfNoCase Referer hilaryblog\\.top spambot=yes\nSetEnvIfNoCase Referer hill\\-accent\\-withdraw\\-sentiment\\.info spambot=yes\nSetEnvIfNoCase Referer himandmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer hit\\-kino\\.ru spambot=yes\nSetEnvIfNoCase Referer hitree\\.shop spambot=yes\nSetEnvIfNoCase Referer hitsbox\\.info spambot=yes\nSetEnvIfNoCase Referer hiwibyh\\.bugs3\\.com spambot=yes\nSetEnvIfNoCase Referer hiwpro\\.xyz spambot=yes\nSetEnvIfNoCase Referer hkdiiohi\\.skyrock\\.com spambot=yes\nSetEnvIfNoCase Referer hkjrsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer hmmm\\.cz spambot=yes\nSetEnvIfNoCase Referer hmywwogw\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer hobild\\.net spambot=yes\nSetEnvIfNoCase Referer hol\\.es spambot=yes\nSetEnvIfNoCase Referer holiday\\-shop\\.ru spambot=yes\nSetEnvIfNoCase Referer holidaypics\\.org spambot=yes\nSetEnvIfNoCase Referer holistickenko\\.com spambot=yes\nSetEnvIfNoCase Referer holodkovich\\.com spambot=yes\nSetEnvIfNoCase Referer home\\.myplaycity\\.com spambot=yes\nSetEnvIfNoCase Referer homeafrikalike\\.tk spambot=yes\nSetEnvIfNoCase Referer homedo\\.fabpage\\.com spambot=yes\nSetEnvIfNoCase Referer homeinns\\.com spambot=yes\nSetEnvIfNoCase Referer homelygarden\\.com spambot=yes\nSetEnvIfNoCase Referer homemade\\.gq spambot=yes\nSetEnvIfNoCase Referer homemypicture\\.tk spambot=yes\nSetEnvIfNoCase Referer honesty\\-homemade\\-grizzly\\-humanlike\\.com spambot=yes\nSetEnvIfNoCase Referer hongfanji\\.com spambot=yes\nSetEnvIfNoCase Referer hoporno\\.com spambot=yes\nSetEnvIfNoCase Referer horoshieokna\\.com spambot=yes\nSetEnvIfNoCase Referer host\\-protection\\.com spambot=yes\nSetEnvIfNoCase Referer hostcritique\\.com spambot=yes\nSetEnvIfNoCase Referer hoste\\.octopis\\.com spambot=yes\nSetEnvIfNoCase Referer hostiman\\.ru spambot=yes\nSetEnvIfNoCase Referer hosting\\-tracker\\.com spambot=yes\nSetEnvIfNoCase Referer hostingclub\\.lk spambot=yes\nSetEnvIfNoCase Referer hostsshop\\.ru spambot=yes\nSetEnvIfNoCase Referer hotblognetwork\\.com spambot=yes\nSetEnvIfNoCase Referer hotdl\\.in spambot=yes\nSetEnvIfNoCase Referer hotspot\\.ipb\\.co\\.id spambot=yes\nSetEnvIfNoCase Referer hottour\\.com spambot=yes\nSetEnvIfNoCase Referer hotwatersdamps\\.com spambot=yes\nSetEnvIfNoCase Referer houdom\\.net spambot=yes\nSetEnvIfNoCase Referer housedesigning\\.ru spambot=yes\nSetEnvIfNoCase Referer housediz\\.com spambot=yes\nSetEnvIfNoCase Referer housekuba\\.org spambot=yes\nSetEnvIfNoCase Referer housemilan\\.ru spambot=yes\nSetEnvIfNoCase Referer houseofgaga\\.ru spambot=yes\nSetEnvIfNoCase Referer houseofrose\\.com spambot=yes\nSetEnvIfNoCase Referer houston\\-vikings\\.com spambot=yes\nSetEnvIfNoCase Referer how\\-i\\-build\\-website\\.review spambot=yes\nSetEnvIfNoCase Referer how\\-i\\-promote\\-website\\.review spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-buy\\-bitcoin\\.club spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-buy\\-bitcoin\\.stream spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-buy\\-bitcoins\\-cheap\\.party spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-buy\\-bitcoins\\-cheap\\.review spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-buy\\-bitcoins\\-cheap\\.stream spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-buy\\-bitcoins\\-cheap\\.trade spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-buy\\-bitcoins\\.stream spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-buy\\-bitcoins\\.trade spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-earn\\-quick\\-money\\.com spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-promote\\-website\\.faith spambot=yes\nSetEnvIfNoCase Referer how\\-to\\-promote\\-website\\.review spambot=yes\nSetEnvIfNoCase Referer howlongdoestizanidinestayinyoursystem\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer howmuchdoestizanidinecost\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer howopen\\.ru spambot=yes\nSetEnvIfNoCase Referer howtostopreferralspam\\.com spambot=yes\nSetEnvIfNoCase Referer howtostopreferralspam\\.eu spambot=yes\nSetEnvIfNoCase Referer hoztorg\\-opt\\.ru spambot=yes\nSetEnvIfNoCase Referer hplaserjetpdriver8y\\.pen\\.io spambot=yes\nSetEnvIfNoCase Referer hptwaakw\\.blog\\.fc2\\.com spambot=yes\nSetEnvIfNoCase Referer hrtonline\\.xyz spambot=yes\nSetEnvIfNoCase Referer hscsscotland\\.com spambot=yes\nSetEnvIfNoCase Referer hseipaa\\.kz spambot=yes\nSetEnvIfNoCase Referer hsoutdoor\\.com spambot=yes\nSetEnvIfNoCase Referer hspline\\.com spambot=yes\nSetEnvIfNoCase Referer https\\-legalrc\\.biz spambot=yes\nSetEnvIfNoCase Referer hugblog\\.xyz spambot=yes\nSetEnvIfNoCase Referer huhn\\.altervista\\.org spambot=yes\nSetEnvIfNoCase Referer hulfingtonpost\\.com spambot=yes\nSetEnvIfNoCase Referer hully\\.altervista\\.org spambot=yes\nSetEnvIfNoCase Referer humanorightswatch\\.org spambot=yes\nSetEnvIfNoCase Referer hundejo\\.com spambot=yes\nSetEnvIfNoCase Referer huntdown\\.info spambot=yes\nSetEnvIfNoCase Referer husky\\-shop\\.cz spambot=yes\nSetEnvIfNoCase Referer hustoon\\.over\\-blog\\.com spambot=yes\nSetEnvIfNoCase Referer hvd\\-store\\.com spambot=yes\nSetEnvIfNoCase Referer hydra\\-2019\\.ru spambot=yes\nSetEnvIfNoCase Referer hydra\\-2020\\.online spambot=yes\nSetEnvIfNoCase Referer hydra\\-2020\\.ru spambot=yes\nSetEnvIfNoCase Referer hydra\\-centr\\.fun spambot=yes\nSetEnvIfNoCase Referer hydra\\-dealer\\.com spambot=yes\nSetEnvIfNoCase Referer hydra\\-guide\\.org spambot=yes\nSetEnvIfNoCase Referer hydra\\-new\\.online spambot=yes\nSetEnvIfNoCase Referer hydra\\-onion\\-faq\\.com spambot=yes\nSetEnvIfNoCase Referer hydra\\-pc\\.com spambot=yes\nSetEnvIfNoCase Referer hydra\\-shop\\.org spambot=yes\nSetEnvIfNoCase Referer hydra\\-site\\.ru spambot=yes\nSetEnvIfNoCase Referer hydra\\-slon\\.net spambot=yes\nSetEnvIfNoCase Referer hydra\\-vhod2020\\.com spambot=yes\nSetEnvIfNoCase Referer hydra\\-zerkalo20\\.com spambot=yes\nSetEnvIfNoCase Referer hydra\\.online spambot=yes\nSetEnvIfNoCase Referer hydra1717\\.com spambot=yes\nSetEnvIfNoCase Referer hydra2\\.market spambot=yes\nSetEnvIfNoCase Referer hydra2020\\.top spambot=yes\nSetEnvIfNoCase Referer hydra2020gate\\.com spambot=yes\nSetEnvIfNoCase Referer hydra2020market\\.com spambot=yes\nSetEnvIfNoCase Referer hydra2020onion\\.com spambot=yes\nSetEnvIfNoCase Referer hydra2020ru\\.com spambot=yes\nSetEnvIfNoCase Referer hydra2020zerkala\\.com spambot=yes\nSetEnvIfNoCase Referer hydra2020zerkalo\\.com spambot=yes\nSetEnvIfNoCase Referer hydra20onion\\.com spambot=yes\nSetEnvIfNoCase Referer hydra20online\\.com spambot=yes\nSetEnvIfNoCase Referer hydra20original\\.com spambot=yes\nSetEnvIfNoCase Referer hydra2use\\.com spambot=yes\nSetEnvIfNoCase Referer hydra2zahod\\.com spambot=yes\nSetEnvIfNoCase Referer hydraena\\.com spambot=yes\nSetEnvIfNoCase Referer hydrahow\\.com spambot=yes\nSetEnvIfNoCase Referer hydrahudra\\.com spambot=yes\nSetEnvIfNoCase Referer hydraland\\.net spambot=yes\nSetEnvIfNoCase Referer hydramarket2020\\.com spambot=yes\nSetEnvIfNoCase Referer hydramirror2020\\.com spambot=yes\nSetEnvIfNoCase Referer hydranten\\.net spambot=yes\nSetEnvIfNoCase Referer hydraonion2019\\.net spambot=yes\nSetEnvIfNoCase Referer hydrarusmarket\\.com spambot=yes\nSetEnvIfNoCase Referer hydraruz\\-2020\\.com spambot=yes\nSetEnvIfNoCase Referer hydraruzonion2020\\.com spambot=yes\nSetEnvIfNoCase Referer hydraruzonionx\\.ru spambot=yes\nSetEnvIfNoCase Referer hydraruzxpnew4af\\.com\\.co spambot=yes\nSetEnvIfNoCase Referer hydraruzxpnew4af\\.ink spambot=yes\nSetEnvIfNoCase Referer hydraruzxpnew4aff\\.ru spambot=yes\nSetEnvIfNoCase Referer hydraruzxpwnew4afonion\\.com spambot=yes\nSetEnvIfNoCase Referer hydraulicoilcooler\\.net spambot=yes\nSetEnvIfNoCase Referer hydrauliczny\\.com spambot=yes\nSetEnvIfNoCase Referer hydravizoficial\\.info spambot=yes\nSetEnvIfNoCase Referer hydrazerkalo2019\\.net spambot=yes\nSetEnvIfNoCase Referer hydrazerkalo2020\\.com spambot=yes\nSetEnvIfNoCase Referer hydropump\\.su spambot=yes\nSetEnvIfNoCase Referer hyip\\-zanoza\\.me spambot=yes\nSetEnvIfNoCase Referer hyipmanager\\.in spambot=yes\nSetEnvIfNoCase Referer i\\-spare\\.ru spambot=yes\nSetEnvIfNoCase Referer ialgramer\\.shop spambot=yes\nSetEnvIfNoCase Referer iamsport\\.org spambot=yes\nSetEnvIfNoCase Referer ib\\-homecredit\\.ru spambot=yes\nSetEnvIfNoCase Referer ib\\-rencredit\\.ru spambot=yes\nSetEnvIfNoCase Referer iblogpress\\.xyz spambot=yes\nSetEnvIfNoCase Referer iceton\\.net spambot=yes\nSetEnvIfNoCase Referer ico\\.re spambot=yes\nSetEnvIfNoCase Referer ictizanidinehcl4mg\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer idc\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer idealtits\\.net spambot=yes\nSetEnvIfNoCase Referer ideayz\\.com spambot=yes\nSetEnvIfNoCase Referer idegenvezeto\\.eu spambot=yes\nSetEnvIfNoCase Referer ideibiznesa2015\\.ru spambot=yes\nSetEnvIfNoCase Referer ieeeoutlet\\.xyz spambot=yes\nSetEnvIfNoCase Referer ifirestarter\\.ru spambot=yes\nSetEnvIfNoCase Referer ifmo\\.ru spambot=yes\nSetEnvIfNoCase Referer igadgetsworld\\.com spambot=yes\nSetEnvIfNoCase Referer igamingtop\\.com spambot=yes\nSetEnvIfNoCase Referer igru\\-xbox\\.net spambot=yes\nSetEnvIfNoCase Referer ilikevitaly\\.com spambot=yes\nSetEnvIfNoCase Referer illagedusexe\\.com spambot=yes\nSetEnvIfNoCase Referer ilmen\\.net spambot=yes\nSetEnvIfNoCase Referer iloveitaly\\.ro spambot=yes\nSetEnvIfNoCase Referer iloveitaly\\.ru spambot=yes\nSetEnvIfNoCase Referer ilovevitaly\\.co spambot=yes\nSetEnvIfNoCase Referer ilovevitaly\\.com spambot=yes\nSetEnvIfNoCase Referer ilovevitaly\\.info spambot=yes\nSetEnvIfNoCase Referer ilovevitaly\\.org spambot=yes\nSetEnvIfNoCase Referer ilovevitaly\\.ro spambot=yes\nSetEnvIfNoCase Referer ilovevitaly\\.ru spambot=yes\nSetEnvIfNoCase Referer ilovevitaly\\.xyz spambot=yes\nSetEnvIfNoCase Referer imediadesk\\.com spambot=yes\nSetEnvIfNoCase Referer iminent\\.com spambot=yes\nSetEnvIfNoCase Referer immigrational\\.info spambot=yes\nSetEnvIfNoCase Referer immobiliaremassaro\\.com spambot=yes\nSetEnvIfNoCase Referer immobilieralgerie\\.net spambot=yes\nSetEnvIfNoCase Referer imperia31\\.ru spambot=yes\nSetEnvIfNoCase Referer imperiafilm\\.ru spambot=yes\nSetEnvIfNoCase Referer impotentik\\.com spambot=yes\nSetEnvIfNoCase Referer impresagaia\\.it spambot=yes\nSetEnvIfNoCase Referer in\\-mostbet\\.ru spambot=yes\nSetEnvIfNoCase Referer in\\-sto\\.ru spambot=yes\nSetEnvIfNoCase Referer inbabes\\.sexushost\\.com spambot=yes\nSetEnvIfNoCase Referer inboxdollars\\.com spambot=yes\nSetEnvIfNoCase Referer incanto\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer incitystroy\\.ru spambot=yes\nSetEnvIfNoCase Referer incomekey\\.net spambot=yes\nSetEnvIfNoCase Referer incoonline\\.xyz spambot=yes\nSetEnvIfNoCase Referer increasewwwtraffic\\.info spambot=yes\nSetEnvIfNoCase Referer indetiske\\.ya\\.ru spambot=yes\nSetEnvIfNoCase Referer indo\\-export\\.ru spambot=yes\nSetEnvIfNoCase Referer inet\\-shop\\.su spambot=yes\nSetEnvIfNoCase Referer infazavr\\.ru spambot=yes\nSetEnvIfNoCase Referer infektsii\\.com spambot=yes\nSetEnvIfNoCase Referer infobabki\\.ru spambot=yes\nSetEnvIfNoCase Referer infodocsportal\\.com spambot=yes\nSetEnvIfNoCase Referer infogame\\.name spambot=yes\nSetEnvIfNoCase Referer infokonkurs\\.ru spambot=yes\nSetEnvIfNoCase Referer inform\\-ua\\.info spambot=yes\nSetEnvIfNoCase Referer ingramreed\\.xyz spambot=yes\nSetEnvIfNoCase Referer inmoll\\.com spambot=yes\nSetEnvIfNoCase Referer innodgfdriverhm\\.aircus\\.com spambot=yes\nSetEnvIfNoCase Referer insider\\.pro spambot=yes\nSetEnvIfNoCase Referer installspartners\\.com spambot=yes\nSetEnvIfNoCase Referer instasexyblog\\.com spambot=yes\nSetEnvIfNoCase Referer insultu\\-net\\.ru spambot=yes\nSetEnvIfNoCase Referer intelhdgraphicsgtdrive6w\\.metroblog\\.com spambot=yes\nSetEnvIfNoCase Referer interferencer\\.ru spambot=yes\nSetEnvIfNoCase Referer interfucks\\.net spambot=yes\nSetEnvIfNoCase Referer intermesh\\.net spambot=yes\nSetEnvIfNoCase Referer internet\\-apteka\\.ru spambot=yes\nSetEnvIfNoCase Referer intex\\-air\\.ru spambot=yes\nSetEnvIfNoCase Referer intimchats\\.ru spambot=yes\nSetEnvIfNoCase Referer intimver\\.3dgayxxx\\.com spambot=yes\nSetEnvIfNoCase Referer invest\\-pamm\\.ru spambot=yes\nSetEnvIfNoCase Referer investingclub\\.ru spambot=yes\nSetEnvIfNoCase Referer investpamm\\.ru spambot=yes\nSetEnvIfNoCase Referer investsuccess\\.org spambot=yes\nSetEnvIfNoCase Referer invivo\\.hu spambot=yes\nSetEnvIfNoCase Referer inzn\\.ru spambot=yes\nSetEnvIfNoCase Referer io9\\.com spambot=yes\nSetEnvIfNoCase Referer ipod\\-app\\-reviews\\.com spambot=yes\nSetEnvIfNoCase Referer ipostroika\\.ru spambot=yes\nSetEnvIfNoCase Referer iqoption\\-bin\\.com spambot=yes\nSetEnvIfNoCase Referer iqoption\\.com spambot=yes\nSetEnvIfNoCase Referer iqoption\\.pro spambot=yes\nSetEnvIfNoCase Referer iradiology\\.ru spambot=yes\nSetEnvIfNoCase Referer iridsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer ishgetadsincome\\.info spambot=yes\nSetEnvIfNoCase Referer isistaylorporn\\.info spambot=yes\nSetEnvIfNoCase Referer iskalko\\.ru spambot=yes\nSetEnvIfNoCase Referer iskussnica\\.ru spambot=yes\nSetEnvIfNoCase Referer isotoner\\.com spambot=yes\nSetEnvIfNoCase Referer ispaniya\\-costa\\-blanca\\.ru spambot=yes\nSetEnvIfNoCase Referer istanbulit\\.com spambot=yes\nSetEnvIfNoCase Referer istizanidineacontrolledsubstance\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer istizanidineanarcoticdrug\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer istizanidineanopiate\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer istizanidinelikexanax\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer istock\\-mebel\\.ru spambot=yes\nSetEnvIfNoCase Referer it\\-max\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer it\\-worlds\\.com spambot=yes\nSetEnvIfNoCase Referer itbc\\.kiev\\.ua spambot=yes\nSetEnvIfNoCase Referer itrevolution\\.cf spambot=yes\nSetEnvIfNoCase Referer itronics\\.ca spambot=yes\nSetEnvIfNoCase Referer itsdp3\\.com spambot=yes\nSetEnvIfNoCase Referer ivegetadsincome\\.info spambot=yes\nSetEnvIfNoCase Referer iyfsearch\\.com spambot=yes\nSetEnvIfNoCase Referer izamorfix\\.ru spambot=yes\nSetEnvIfNoCase Referer izhevsk\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer izhevskjob\\.xyz spambot=yes\nSetEnvIfNoCase Referer izhstrelok\\.ru spambot=yes\nSetEnvIfNoCase Referer izi24\\.ru spambot=yes\nSetEnvIfNoCase Referer j\\-times\\.ru spambot=yes\nSetEnvIfNoCase Referer jabug\\.xyz spambot=yes\nSetEnvIfNoCase Referer jacblog\\.xyz spambot=yes\nSetEnvIfNoCase Referer jackonline\\.store spambot=yes\nSetEnvIfNoCase Referer janemill\\.xyz spambot=yes\nSetEnvIfNoCase Referer janettabridal\\.com spambot=yes\nSetEnvIfNoCase Referer japfm\\.com spambot=yes\nSetEnvIfNoCase Referer jasonpartington\\.com spambot=yes\nSetEnvIfNoCase Referer jav\\-fetish\\.com spambot=yes\nSetEnvIfNoCase Referer jav\\-fetish\\.site spambot=yes\nSetEnvIfNoCase Referer jav\\-idol\\.com spambot=yes\nSetEnvIfNoCase Referer javatex\\.co\\.id spambot=yes\nSetEnvIfNoCase Referer javcoast\\.com spambot=yes\nSetEnvIfNoCase Referer javlibrary\\.cc spambot=yes\nSetEnvIfNoCase Referer jaxcube\\.info spambot=yes\nSetEnvIfNoCase Referer jazzstyle4us\\.com spambot=yes\nSetEnvIfNoCase Referer jeffbullas\\.xyz spambot=yes\nSetEnvIfNoCase Referer jennyfire\\.ru spambot=yes\nSetEnvIfNoCase Referer jikem\\.com spambot=yes\nSetEnvIfNoCase Referer jintub\\.com spambot=yes\nSetEnvIfNoCase Referer jjbabskoe\\.ru spambot=yes\nSetEnvIfNoCase Referer job\\-opros\\.ru spambot=yes\nSetEnvIfNoCase Referer job\\-prosto\\.ru spambot=yes\nSetEnvIfNoCase Referer jobfree24\\.pl spambot=yes\nSetEnvIfNoCase Referer jobgirl24\\.ru spambot=yes\nSetEnvIfNoCase Referer jobius\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer johnnyhaley\\.top spambot=yes\nSetEnvIfNoCase Referer joinandplay\\.me spambot=yes\nSetEnvIfNoCase Referer joingames\\.org spambot=yes\nSetEnvIfNoCase Referer josephineblog\\.top spambot=yes\nSetEnvIfNoCase Referer journalhome\\.com spambot=yes\nSetEnvIfNoCase Referer joyceblog\\.top spambot=yes\nSetEnvIfNoCase Referer joycee\\.xyz spambot=yes\nSetEnvIfNoCase Referer judyandsimon\\.com spambot=yes\nSetEnvIfNoCase Referer juliadiets\\.com spambot=yes\nSetEnvIfNoCase Referer juliaworld\\.net spambot=yes\nSetEnvIfNoCase Referer jumkite\\.com spambot=yes\nSetEnvIfNoCase Referer justkillingti\\.me spambot=yes\nSetEnvIfNoCase Referer justprofit\\.xyz spambot=yes\nSetEnvIfNoCase Referer jweber\\.ru spambot=yes\nSetEnvIfNoCase Referer jwss\\.cc spambot=yes\nSetEnvIfNoCase Referer jyrxd\\.com spambot=yes\nSetEnvIfNoCase Referer kaac\\.ru spambot=yes\nSetEnvIfNoCase Referer kabbalah\\-red\\-bracelets\\.com spambot=yes\nSetEnvIfNoCase Referer kabinet\\-5ka\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-alfaclick\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-binbank\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-card\\-5ka\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-click\\-alfabank\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-esia\\-gosuslugi\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-faberlic\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-gosuslugi\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-ipoteka\\-domclick\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-karta\\-5ka\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-lk\\-megafon\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-lk\\-rt\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-login\\-mts\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-mil\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-mos\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-my\\-beeline\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-my\\-pochtabank\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-nalog\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-online\\-bm\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-online\\-open\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-online\\-rsb\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-online\\-rshb\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-online\\-sberbank\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-online\\-sovcombank\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-online\\-vtb\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-pfr\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-pfrf\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-platon\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-qiwi\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-tele2\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-tinkoff\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-tricolor\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-ttk\\.ru spambot=yes\nSetEnvIfNoCase Referer kabinet\\-vtb24\\.ru spambot=yes\nSetEnvIfNoCase Referer kaircm\\.shop spambot=yes\nSetEnvIfNoCase Referer kakablog\\.net spambot=yes\nSetEnvIfNoCase Referer kakadu\\-interior\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer kakworldoftanks\\.ru spambot=yes\nSetEnvIfNoCase Referer kalb\\.ru spambot=yes\nSetEnvIfNoCase Referer kambasoft\\.com spambot=yes\nSetEnvIfNoCase Referer kamin\\-sam\\.ru spambot=yes\nSetEnvIfNoCase Referer kamorel\\.com spambot=yes\nSetEnvIfNoCase Referer kanakox\\.com spambot=yes\nSetEnvIfNoCase Referer karachev\\-city\\.ru spambot=yes\nSetEnvIfNoCase Referer karadene\\.com spambot=yes\nSetEnvIfNoCase Referer karapuz\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer karusel\\-market\\.ru spambot=yes\nSetEnvIfNoCase Referer katjimej\\.blog\\.fc2\\.com spambot=yes\nSetEnvIfNoCase Referer katrd\\.xyz spambot=yes\nSetEnvIfNoCase Referer katushka\\.net spambot=yes\nSetEnvIfNoCase Referer kaz\\.kz spambot=yes\nSetEnvIfNoCase Referer kazan\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer kazka\\.ru spambot=yes\nSetEnvIfNoCase Referer kazlenta\\.kz spambot=yes\nSetEnvIfNoCase Referer kazrent\\.com spambot=yes\nSetEnvIfNoCase Referer kellyonline\\.xyz spambot=yes\nSetEnvIfNoCase Referer kendrablog\\.online spambot=yes\nSetEnvIfNoCase Referer kenyagoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer kerch\\.site spambot=yes\nSetEnvIfNoCase Referer ketrzyn\\.pl spambot=yes\nSetEnvIfNoCase Referer kevblog\\.top spambot=yes\nSetEnvIfNoCase Referer kevinsnow\\.online spambot=yes\nSetEnvIfNoCase Referer kexihao\\.xyz spambot=yes\nSetEnvIfNoCase Referer keywords\\-monitoring\\-success\\.com spambot=yes\nSetEnvIfNoCase Referer keywords\\-monitoring\\-your\\-success\\.com spambot=yes\nSetEnvIfNoCase Referer kharkov\\.ua spambot=yes\nSetEnvIfNoCase Referer kharlov\\.ua spambot=yes\nSetEnvIfNoCase Referer kidd\\.reunionwatch\\.com spambot=yes\nSetEnvIfNoCase Referer kierowca\\-praca\\.pl spambot=yes\nSetEnvIfNoCase Referer kiev\\.ua spambot=yes\nSetEnvIfNoCase Referer kimblog\\.top spambot=yes\nSetEnvIfNoCase Referer kinnarimasajes\\.com spambot=yes\nSetEnvIfNoCase Referer kino\\-filmi\\.com spambot=yes\nSetEnvIfNoCase Referer kino\\-fun\\.ru spambot=yes\nSetEnvIfNoCase Referer kino\\-key\\.info spambot=yes\nSetEnvIfNoCase Referer kino2018\\.cc spambot=yes\nSetEnvIfNoCase Referer kinobaks\\.com spambot=yes\nSetEnvIfNoCase Referer kinobum\\.org spambot=yes\nSetEnvIfNoCase Referer kinoflux\\.net spambot=yes\nSetEnvIfNoCase Referer kinohit1\\.ru spambot=yes\nSetEnvIfNoCase Referer kinopolet\\.net spambot=yes\nSetEnvIfNoCase Referer kinosed\\.net spambot=yes\nSetEnvIfNoCase Referer kinostar\\.online spambot=yes\nSetEnvIfNoCase Referer kinotorka\\.ru spambot=yes\nSetEnvIfNoCase Referer kiprinform\\.com spambot=yes\nSetEnvIfNoCase Referer kiwe\\-analytics\\.com spambot=yes\nSetEnvIfNoCase Referer kiwi237au\\.tk spambot=yes\nSetEnvIfNoCase Referer kiyany\\-za\\-spravedluvist\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer kletkimehan\\.ru spambot=yes\nSetEnvIfNoCase Referer klfd\\.net spambot=yes\nSetEnvIfNoCase Referer kndxbkdx\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer knigonosha\\.net spambot=yes\nSetEnvIfNoCase Referer kochanelli\\.com spambot=yes\nSetEnvIfNoCase Referer kolcasale\\.xyz spambot=yes\nSetEnvIfNoCase Referer koleso24\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer kollekcioner\\.ru spambot=yes\nSetEnvIfNoCase Referer kolotiloff\\.ru spambot=yes\nSetEnvIfNoCase Referer komp\\-pomosch\\.ru spambot=yes\nSetEnvIfNoCase Referer komputernaya\\-pomosh\\-moscow\\.ru spambot=yes\nSetEnvIfNoCase Referer komputers\\-best\\.ru spambot=yes\nSetEnvIfNoCase Referer komukc\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer kongoultry\\.net spambot=yes\nSetEnvIfNoCase Referer konkursov\\.net spambot=yes\nSetEnvIfNoCase Referer koopilka\\.com spambot=yes\nSetEnvIfNoCase Referer koptims\\.tiu\\.ru spambot=yes\nSetEnvIfNoCase Referer koronirealestate\\.gr spambot=yes\nSetEnvIfNoCase Referer kosova\\.de spambot=yes\nSetEnvIfNoCase Referer kosunnyclub\\.com spambot=yes\nSetEnvIfNoCase Referer kotaku\\.com spambot=yes\nSetEnvIfNoCase Referer kozhakoshek\\.com spambot=yes\nSetEnvIfNoCase Referer kozhasobak\\.com spambot=yes\nSetEnvIfNoCase Referer kozhniebolezni\\.com spambot=yes\nSetEnvIfNoCase Referer kpcconline\\.xyz spambot=yes\nSetEnvIfNoCase Referer krafte\\.ru spambot=yes\nSetEnvIfNoCase Referer krasivoe\\-hd\\.com spambot=yes\nSetEnvIfNoCase Referer krasivoe\\-hd\\.net spambot=yes\nSetEnvIfNoCase Referer krasnodar\\-avtolombard\\.ru spambot=yes\nSetEnvIfNoCase Referer krasnodar\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer krasota\\-zdorovie\\.pw spambot=yes\nSetEnvIfNoCase Referer krasota\\.ru spambot=yes\nSetEnvIfNoCase Referer kredutu\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer kredytbank\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer kruiz\\-sochi\\.ru spambot=yes\nSetEnvIfNoCase Referer krumble\\-adsde\\.info spambot=yes\nSetEnvIfNoCase Referer krumble\\-adsen\\.info spambot=yes\nSetEnvIfNoCase Referer krumble\\-adsic\\.info spambot=yes\nSetEnvIfNoCase Referer krumbleent\\-ads\\.info spambot=yes\nSetEnvIfNoCase Referer krynica\\.info spambot=yes\nSetEnvIfNoCase Referer ktotut\\.net spambot=yes\nSetEnvIfNoCase Referer kumuk\\.info spambot=yes\nSetEnvIfNoCase Referer kupit\\-adenu\\.ru spambot=yes\nSetEnvIfNoCase Referer kursy\\-ege\\.ru spambot=yes\nSetEnvIfNoCase Referer kustanay\\.kz spambot=yes\nSetEnvIfNoCase Referer kvartir\\-remont\\.biz spambot=yes\nSetEnvIfNoCase Referer kvartira\\-sutochno\\.com spambot=yes\nSetEnvIfNoCase Referer kvartiry\\-remont\\.ucoz\\.ru spambot=yes\nSetEnvIfNoCase Referer kw21\\.org spambot=yes\nSetEnvIfNoCase Referer l2soft\\.eu spambot=yes\nSetEnvIfNoCase Referer la\\-fa\\.ru spambot=yes\nSetEnvIfNoCase Referer labguamec\\.online spambot=yes\nSetEnvIfNoCase Referer labplus\\.ru spambot=yes\nSetEnvIfNoCase Referer labvis\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer ladov\\.ru spambot=yes\nSetEnvIfNoCase Referer lafppshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer laitrcus\\.online spambot=yes\nSetEnvIfNoCase Referer lakiikraski\\.ru spambot=yes\nSetEnvIfNoCase Referer lalalove\\.ru spambot=yes\nSetEnvIfNoCase Referer lambreshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer laminat\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer lampokrat\\.ws spambot=yes\nSetEnvIfNoCase Referer lanasshop\\.ru spambot=yes\nSetEnvIfNoCase Referer landliver\\.org spambot=yes\nSetEnvIfNoCase Referer landoftracking\\.com spambot=yes\nSetEnvIfNoCase Referer languagecode\\.com spambot=yes\nSetEnvIfNoCase Referer lankarns\\.com spambot=yes\nSetEnvIfNoCase Referer laparfumotec\\.com spambot=yes\nSetEnvIfNoCase Referer lapitec\\.eu spambot=yes\nSetEnvIfNoCase Referer laptop\\-4\\-less\\.com spambot=yes\nSetEnvIfNoCase Referer laptoper\\.net spambot=yes\nSetEnvIfNoCase Referer larchik\\.net spambot=yes\nSetEnvIfNoCase Referer larutti\\.ru spambot=yes\nSetEnvIfNoCase Referer laudit\\.ru spambot=yes\nSetEnvIfNoCase Referer law\\-check\\-eight\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-check\\-nine\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-check\\-seven\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-check\\-two\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-aa\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-bb\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-bot\\-aa\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-bot\\-bb\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-bot\\-cc\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-bot\\-dd\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-bot\\-ee\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-bot\\-ff\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-bot\\-hh\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-bot\\-ii\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-cc\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-check\\-eight\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-check\\-five\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-check\\-four\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-check\\-nine\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-check\\-one\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-check\\-six\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-check\\-three\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-check\\-two\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-dd\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-ee\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-eight\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-ff\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-five\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-four\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-gg\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-hh\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-one\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-seven\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-three\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-enforcement\\-two\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-five\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-four\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-one\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-six\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-three\\.xyz spambot=yes\nSetEnvIfNoCase Referer law\\-two\\.xyz spambot=yes\nSetEnvIfNoCase Referer lawrenceblog\\.online spambot=yes\nSetEnvIfNoCase Referer laxdrills\\.com spambot=yes\nSetEnvIfNoCase Referer layola\\.biz\\.tc spambot=yes\nSetEnvIfNoCase Referer lazy\\-z\\.com spambot=yes\nSetEnvIfNoCase Referer lcecshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer leadwayau\\.com spambot=yes\nSetEnvIfNoCase Referer leboard\\.ru spambot=yes\nSetEnvIfNoCase Referer lebowmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer ledalfa\\.by spambot=yes\nSetEnvIfNoCase Referer leddjc\\.net spambot=yes\nSetEnvIfNoCase Referer ledis\\.top spambot=yes\nSetEnvIfNoCase Referer ledpolice\\.ru spambot=yes\nSetEnvIfNoCase Referer ledx\\.by spambot=yes\nSetEnvIfNoCase Referer leeboyrussia\\.com spambot=yes\nSetEnvIfNoCase Referer legalrc\\.biz spambot=yes\nSetEnvIfNoCase Referer lego4x4\\.ru spambot=yes\nSetEnvIfNoCase Referer lenvred\\.org spambot=yes\nSetEnvIfNoCase Referer leon\\-official\\.site spambot=yes\nSetEnvIfNoCase Referer lernur\\.net spambot=yes\nSetEnvIfNoCase Referer lerporn\\.info spambot=yes\nSetEnvIfNoCase Referer leto\\-dacha\\.ru spambot=yes\nSetEnvIfNoCase Referer letolove\\.ru spambot=yes\nSetEnvIfNoCase Referer letsgotofriday\\.com spambot=yes\nSetEnvIfNoCase Referer levaquin750mg\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer lezbiyanki\\.net spambot=yes\nSetEnvIfNoCase Referer lflash\\.ru spambot=yes\nSetEnvIfNoCase Referer li\\-er\\.ru spambot=yes\nSetEnvIfNoCase Referer lida\\-ru\\.com spambot=yes\nSetEnvIfNoCase Referer lider82\\.ru spambot=yes\nSetEnvIfNoCase Referer life\\.biz\\.ua spambot=yes\nSetEnvIfNoCase Referer lifebyleese\\.com spambot=yes\nSetEnvIfNoCase Referer lifespeaker\\.ru spambot=yes\nSetEnvIfNoCase Referer ligastavok\\-in\\.ru spambot=yes\nSetEnvIfNoCase Referer light\\.ifmo\\.ru spambot=yes\nSetEnvIfNoCase Referer lighthearteds\\.shop spambot=yes\nSetEnvIfNoCase Referer likesdesign\\.com spambot=yes\nSetEnvIfNoCase Referer lilishopstogether\\.com spambot=yes\nSetEnvIfNoCase Referer lindsayblog\\.online spambot=yes\nSetEnvIfNoCase Referer linerdrilling\\.com spambot=yes\nSetEnvIfNoCase Referer link\\.web\\-list\\.xyz spambot=yes\nSetEnvIfNoCase Referer lipidofobia\\.com\\.br spambot=yes\nSetEnvIfNoCase Referer liquimondo\\.com spambot=yes\nSetEnvIfNoCase Referer lirunet\\.ru spambot=yes\nSetEnvIfNoCase Referer lisque\\.batcave\\.net spambot=yes\nSetEnvIfNoCase Referer littleberry\\.ru spambot=yes\nSetEnvIfNoCase Referer live\\-sexchat\\.ru spambot=yes\nSetEnvIfNoCase Referer live\\-xbet\\.com spambot=yes\nSetEnvIfNoCase Referer livefixer\\.com spambot=yes\nSetEnvIfNoCase Referer liveinternet\\.ro spambot=yes\nSetEnvIfNoCase Referer liveinternet\\.ru spambot=yes\nSetEnvIfNoCase Referer livejournal\\.top spambot=yes\nSetEnvIfNoCase Referer livia\\-pache\\.ru spambot=yes\nSetEnvIfNoCase Referer livingroomdecoratingideas\\.website spambot=yes\nSetEnvIfNoCase Referer livingsimply\\.com spambot=yes\nSetEnvIfNoCase Referer lk\\-gosuslugi\\.ru spambot=yes\nSetEnvIfNoCase Referer lk\\-lk\\-rt\\.ru spambot=yes\nSetEnvIfNoCase Referer llastbuy\\.ru spambot=yes\nSetEnvIfNoCase Referer lmrauction\\.com spambot=yes\nSetEnvIfNoCase Referer loadopia\\.com spambot=yes\nSetEnvIfNoCase Referer local\\-seo\\-for\\-multiple\\-locations\\.com spambot=yes\nSetEnvIfNoCase Referer login\\-tinkoff\\.ru spambot=yes\nSetEnvIfNoCase Referer loginduepunti\\.it spambot=yes\nSetEnvIfNoCase Referer logo\\-all\\.ru spambot=yes\nSetEnvIfNoCase Referer lol\\-smurfs\\.com spambot=yes\nSetEnvIfNoCase Referer lolz\\.guru spambot=yes\nSetEnvIfNoCase Referer lolzteam\\.online spambot=yes\nSetEnvIfNoCase Referer lolzteam\\.org spambot=yes\nSetEnvIfNoCase Referer lomb\\.co spambot=yes\nSetEnvIfNoCase Referer lombardfinder\\.ru spambot=yes\nSetEnvIfNoCase Referer lombia\\.co spambot=yes\nSetEnvIfNoCase Referer lombia\\.com spambot=yes\nSetEnvIfNoCase Referer lomza\\.info spambot=yes\nSetEnvIfNoCase Referer londonstratford\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer lookover\\.ru spambot=yes\nSetEnvIfNoCase Referer lost\\-alpha\\.ru spambot=yes\nSetEnvIfNoCase Referer lotoflotto\\.ru spambot=yes\nSetEnvIfNoCase Referer loveorganic\\.ch spambot=yes\nSetEnvIfNoCase Referer low\\-format\\.ru spambot=yes\nSetEnvIfNoCase Referer lowpricesiterx\\.com spambot=yes\nSetEnvIfNoCase Referer lsex\\.xyz spambot=yes\nSetEnvIfNoCase Referer lsitenonrepeat\\.com spambot=yes\nSetEnvIfNoCase Referer luckybull\\.io spambot=yes\nSetEnvIfNoCase Referer luckyshop\\.net\\.ua spambot=yes\nSetEnvIfNoCase Referer lukoilcard\\.ru spambot=yes\nSetEnvIfNoCase Referer lumb\\.co spambot=yes\nSetEnvIfNoCase Referer lutherstable\\.org spambot=yes\nSetEnvIfNoCase Referer luton\\-invest\\.ru spambot=yes\nSetEnvIfNoCase Referer luxmagazine\\.cf spambot=yes\nSetEnvIfNoCase Referer luxup\\.ru spambot=yes\nSetEnvIfNoCase Referer luxurybet\\.ru spambot=yes\nSetEnvIfNoCase Referer m\\-google\\.xyz spambot=yes\nSetEnvIfNoCase Referer m\\.ok\\.ru spambot=yes\nSetEnvIfNoCase Referer m1media\\.net spambot=yes\nSetEnvIfNoCase Referer macresource\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer madisonclothingny\\.com spambot=yes\nSetEnvIfNoCase Referer madjonline\\.xyz spambot=yes\nSetEnvIfNoCase Referer madot\\.onlinewebshop\\.net spambot=yes\nSetEnvIfNoCase Referer mafcards\\.ru spambot=yes\nSetEnvIfNoCase Referer magazintiande\\.ru spambot=yes\nSetEnvIfNoCase Referer magda\\-gadalka\\.ru spambot=yes\nSetEnvIfNoCase Referer magento\\-crew\\.net spambot=yes\nSetEnvIfNoCase Referer magicart\\.store spambot=yes\nSetEnvIfNoCase Referer magicdiet\\.gq spambot=yes\nSetEnvIfNoCase Referer magnetic\\-bracelets\\.ru spambot=yes\nSetEnvIfNoCase Referer maigralr\\.site spambot=yes\nSetEnvIfNoCase Referer mail\\.allnews24\\.in spambot=yes\nSetEnvIfNoCase Referer mainhunter\\.com spambot=yes\nSetEnvIfNoCase Referer mainlinehobby\\.net spambot=yes\nSetEnvIfNoCase Referer make\\-money\\-online\\.com spambot=yes\nSetEnvIfNoCase Referer makedo\\.ru spambot=yes\nSetEnvIfNoCase Referer makemoneyonline\\.com spambot=yes\nSetEnvIfNoCase Referer makeprogress\\.ga spambot=yes\nSetEnvIfNoCase Referer makler\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer maladot\\.com spambot=yes\nSetEnvIfNoCase Referer malbgoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer malls\\.com spambot=yes\nSetEnvIfNoCase Referer maltadailypost\\.com spambot=yes\nSetEnvIfNoCase Referer mamidushop\\.xyz spambot=yes\nSetEnvIfNoCase Referer mamylik\\.ru spambot=yes\nSetEnvIfNoCase Referer manimpotence\\.com spambot=yes\nSetEnvIfNoCase Referer manipulyator\\-peterburg\\.ru spambot=yes\nSetEnvIfNoCase Referer manonstore\\.xyz spambot=yes\nSetEnvIfNoCase Referer manualterap\\.roleforum\\.ru spambot=yes\nSetEnvIfNoCase Referer manwang\\.net spambot=yes\nSetEnvIfNoCase Referer maofengjx\\.com spambot=yes\nSetEnvIfNoCase Referer marathonbet\\-in\\.ru spambot=yes\nSetEnvIfNoCase Referer marblestyle\\.ru spambot=yes\nSetEnvIfNoCase Referer marcogrup\\.com spambot=yes\nSetEnvIfNoCase Referer maridan\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer maridan\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer marihome\\.online spambot=yes\nSetEnvIfNoCase Referer marinetraffic\\.com spambot=yes\nSetEnvIfNoCase Referer marjorieblog\\.online spambot=yes\nSetEnvIfNoCase Referer marketland\\.ml spambot=yes\nSetEnvIfNoCase Referer marktforschung\\-stuttgart\\.com spambot=yes\nSetEnvIfNoCase Referer marmitaco\\.cat spambot=yes\nSetEnvIfNoCase Referer martinahome\\.xyz spambot=yes\nSetEnvIfNoCase Referer martlinker\\.com spambot=yes\nSetEnvIfNoCase Referer massage\\-info\\.nl spambot=yes\nSetEnvIfNoCase Referer masserect\\.com spambot=yes\nSetEnvIfNoCase Referer master\\-muznachas\\.ru spambot=yes\nSetEnvIfNoCase Referer masterseek\\.com spambot=yes\nSetEnvIfNoCase Referer mastershef\\.club spambot=yes\nSetEnvIfNoCase Referer masturbate\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer mathoutlet\\.xyz spambot=yes\nSetEnvIfNoCase Referer matomete\\.net spambot=yes\nSetEnvIfNoCase Referer matras\\.space spambot=yes\nSetEnvIfNoCase Referer mattgibson\\.us spambot=yes\nSetEnvIfNoCase Referer mature\\.free\\-websites\\.com spambot=yes\nSetEnvIfNoCase Referer max\\-apprais\\.com spambot=yes\nSetEnvIfNoCase Referer maximilitary\\.ru spambot=yes\nSetEnvIfNoCase Referer maxinesamson\\.top spambot=yes\nSetEnvIfNoCase Referer maxthon\\.com spambot=yes\nSetEnvIfNoCase Referer maxxximoda\\.ru spambot=yes\nSetEnvIfNoCase Referer mazda\\-roadsters\\.com spambot=yes\nSetEnvIfNoCase Referer mbiologi\\.ru spambot=yes\nSetEnvIfNoCase Referer mebel\\-alait\\.ru spambot=yes\nSetEnvIfNoCase Referer mebel\\-arts\\.com spambot=yes\nSetEnvIfNoCase Referer mebel\\-ekb\\.com spambot=yes\nSetEnvIfNoCase Referer mebel\\-iz\\-dereva\\.kiev\\.ua spambot=yes\nSetEnvIfNoCase Referer mebelcomplekt\\.ru spambot=yes\nSetEnvIfNoCase Referer mebeldekor\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer mebeldekor\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer meblieco\\.com spambot=yes\nSetEnvIfNoCase Referer med\\-dopomoga\\.com spambot=yes\nSetEnvIfNoCase Referer med\\-recept\\.ru spambot=yes\nSetEnvIfNoCase Referer med\\-zdorovie\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer med\\-zdorovie\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer medanestesia\\.ru spambot=yes\nSetEnvIfNoCase Referer medbrowse\\.info spambot=yes\nSetEnvIfNoCase Referer medcor\\-list\\.ru spambot=yes\nSetEnvIfNoCase Referer medi\\-fitt\\.hu spambot=yes\nSetEnvIfNoCase Referer medic\\-al\\.ru spambot=yes\nSetEnvIfNoCase Referer medicaltranslate\\.ru spambot=yes\nSetEnvIfNoCase Referer medicinacom\\.ru spambot=yes\nSetEnvIfNoCase Referer medicineseasybuy\\.com spambot=yes\nSetEnvIfNoCase Referer medicovi\\.com spambot=yes\nSetEnvIfNoCase Referer medictube\\.ru spambot=yes\nSetEnvIfNoCase Referer medispainstitute\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer medkletki\\.ru spambot=yes\nSetEnvIfNoCase Referer medkritika\\.ru spambot=yes\nSetEnvIfNoCase Referer medmajor\\.ru spambot=yes\nSetEnvIfNoCase Referer medosmotr\\-ufa\\.ru spambot=yes\nSetEnvIfNoCase Referer meds\\-online24\\.com spambot=yes\nSetEnvIfNoCase Referer medtherapy\\.ru spambot=yes\nSetEnvIfNoCase Referer meduza\\-consult\\.ru spambot=yes\nSetEnvIfNoCase Referer meendo\\-free\\-traffic\\.ga spambot=yes\nSetEnvIfNoCase Referer megaapteka\\.ru spambot=yes\nSetEnvIfNoCase Referer megakino\\.net spambot=yes\nSetEnvIfNoCase Referer megalit\\-d\\.ru spambot=yes\nSetEnvIfNoCase Referer megapolis\\-96\\.ru spambot=yes\nSetEnvIfNoCase Referer megatkani\\.ru spambot=yes\nSetEnvIfNoCase Referer megavolt\\.net\\.ua spambot=yes\nSetEnvIfNoCase Referer melbet\\-in\\.ru spambot=yes\nSetEnvIfNoCase Referer melissahome\\.top spambot=yes\nSetEnvIfNoCase Referer members\\.ghanaweb\\.com spambot=yes\nSetEnvIfNoCase Referer memovn\\.com spambot=yes\nSetEnvIfNoCase Referer menhealed\\.net spambot=yes\nSetEnvIfNoCase Referer mercanmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer mere\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer mericanmopedstore\\.com spambot=yes\nSetEnvIfNoCase Referer meriton\\.ru spambot=yes\nSetEnvIfNoCase Referer meroyharte\\.top spambot=yes\nSetEnvIfNoCase Referer mesto\\-x\\.com spambot=yes\nSetEnvIfNoCase Referer metallo\\-konstruktsii\\.ru spambot=yes\nSetEnvIfNoCase Referer metallosajding\\.ru spambot=yes\nSetEnvIfNoCase Referer metarip\\.ru spambot=yes\nSetEnvIfNoCase Referer metaxalonevstizanidine\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer meteocast\\.net spambot=yes\nSetEnvIfNoCase Referer meuikcr\\.online spambot=yes\nSetEnvIfNoCase Referer mex\\-annushka\\.ru spambot=yes\nSetEnvIfNoCase Referer mhp\\.su spambot=yes\nSetEnvIfNoCase Referer mhrdmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer miaxxx\\.com spambot=yes\nSetEnvIfNoCase Referer micasainvest\\.com spambot=yes\nSetEnvIfNoCase Referer michellblog\\.online spambot=yes\nSetEnvIfNoCase Referer microsearch\\.ru spambot=yes\nSetEnvIfNoCase Referer microsoftportal\\.net spambot=yes\nSetEnvIfNoCase Referer midnight\\.im spambot=yes\nSetEnvIfNoCase Referer mielec\\.pl spambot=yes\nSetEnvIfNoCase Referer mifepriston\\.net spambot=yes\nSetEnvIfNoCase Referer migente\\.com spambot=yes\nSetEnvIfNoCase Referer migera\\.net spambot=yes\nSetEnvIfNoCase Referer migronis\\.com spambot=yes\nSetEnvIfNoCase Referer mikozstop\\.com spambot=yes\nSetEnvIfNoCase Referer mikrobiologies\\.ru spambot=yes\nSetEnvIfNoCase Referer mikrocement\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer mikrozaim\\.site spambot=yes\nSetEnvIfNoCase Referer mikrozaym2you\\.ru spambot=yes\nSetEnvIfNoCase Referer minecraft\\-neo\\.ru spambot=yes\nSetEnvIfNoCase Referer minecraft\\-rus\\.org spambot=yes\nSetEnvIfNoCase Referer minegam\\.com spambot=yes\nSetEnvIfNoCase Referer minghaimuyuan\\.net spambot=yes\nSetEnvIfNoCase Referer mini\\.7zap\\.com spambot=yes\nSetEnvIfNoCase Referer miningblack\\.net spambot=yes\nSetEnvIfNoCase Referer minyetki\\.ru spambot=yes\nSetEnvIfNoCase Referer mir\\-betting\\.ru spambot=yes\nSetEnvIfNoCase Referer mir\\-business\\-24\\.ru spambot=yes\nSetEnvIfNoCase Referer mir\\-limuzinov\\.ru spambot=yes\nSetEnvIfNoCase Referer mirfairytale\\.ru spambot=yes\nSetEnvIfNoCase Referer mirmedinfo\\.ru spambot=yes\nSetEnvIfNoCase Referer mirobuvi\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer mirobuvi\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer mirtorrent\\.net spambot=yes\nSetEnvIfNoCase Referer mirzonru\\.net spambot=yes\nSetEnvIfNoCase Referer misselle\\.ru spambot=yes\nSetEnvIfNoCase Referer mister\\-shop\\.com spambot=yes\nSetEnvIfNoCase Referer mitrasound\\.ru spambot=yes\nSetEnvIfNoCase Referer mixed\\-wrestling\\.ru spambot=yes\nSetEnvIfNoCase Referer mksoap\\.ru spambot=yes\nSetEnvIfNoCase Referer mksport\\.ru spambot=yes\nSetEnvIfNoCase Referer mmdoors\\.ru spambot=yes\nSetEnvIfNoCase Referer mmm\\.lc spambot=yes\nSetEnvIfNoCase Referer mmm\\.sb spambot=yes\nSetEnvIfNoCase Referer mmog\\-play\\.ru spambot=yes\nSetEnvIfNoCase Referer mmoguider\\.ru spambot=yes\nSetEnvIfNoCase Referer mnogabukaff\\.net spambot=yes\nSetEnvIfNoCase Referer mobicover\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer mobile\\.ok\\.ru spambot=yes\nSetEnvIfNoCase Referer mobilemedia\\.md spambot=yes\nSetEnvIfNoCase Referer mobisport\\.ru spambot=yes\nSetEnvIfNoCase Referer mobot\\.site spambot=yes\nSetEnvIfNoCase Referer mobplayer\\.net spambot=yes\nSetEnvIfNoCase Referer mobplayer\\.ru spambot=yes\nSetEnvIfNoCase Referer mockupui\\.com spambot=yes\nSetEnvIfNoCase Referer modabutik\\.ru spambot=yes\nSetEnvIfNoCase Referer modforwot\\.ru spambot=yes\nSetEnvIfNoCase Referer modnie\\-futbolki\\.net spambot=yes\nSetEnvIfNoCase Referer moe1\\.ru spambot=yes\nSetEnvIfNoCase Referer moesonce\\.com spambot=yes\nSetEnvIfNoCase Referer moi\\-glazki\\.ru spambot=yes\nSetEnvIfNoCase Referer moinozhki\\.com spambot=yes\nSetEnvIfNoCase Referer moiragracie\\.top spambot=yes\nSetEnvIfNoCase Referer moisadogorod\\.ru spambot=yes\nSetEnvIfNoCase Referer mokrayakiska\\.com spambot=yes\nSetEnvIfNoCase Referer mole\\.pluto\\.ro spambot=yes\nSetEnvIfNoCase Referer monarhs\\.info spambot=yes\nSetEnvIfNoCase Referer monetizationking\\.net spambot=yes\nSetEnvIfNoCase Referer money\\-every\\-day\\.com spambot=yes\nSetEnvIfNoCase Referer money\\-for\\-placing\\-articles\\.com spambot=yes\nSetEnvIfNoCase Referer money7777\\.info spambot=yes\nSetEnvIfNoCase Referer moneymaster\\.ru spambot=yes\nSetEnvIfNoCase Referer moneytop\\.ru spambot=yes\nSetEnvIfNoCase Referer moneyzzz\\.ru spambot=yes\nSetEnvIfNoCase Referer monicablog\\.xyz spambot=yes\nSetEnvIfNoCase Referer monitorwebsitespeed\\.com spambot=yes\nSetEnvIfNoCase Referer moomi\\-daeri\\.com spambot=yes\nSetEnvIfNoCase Referer moon\\.market spambot=yes\nSetEnvIfNoCase Referer moonci\\.ru spambot=yes\nSetEnvIfNoCase Referer more\\-letom\\.ru spambot=yes\nSetEnvIfNoCase Referer morf\\.snn\\.gr spambot=yes\nSetEnvIfNoCase Referer morlat\\.altervista\\.org spambot=yes\nSetEnvIfNoCase Referer moroccosurfadventures\\.com spambot=yes\nSetEnvIfNoCase Referer moscow\\-clining\\.ru spambot=yes\nSetEnvIfNoCase Referer moscow\\-region\\.ru spambot=yes\nSetEnvIfNoCase Referer moscow\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer mosdverka\\.ru spambot=yes\nSetEnvIfNoCase Referer mosputana\\.info spambot=yes\nSetEnvIfNoCase Referer mosputana\\.top spambot=yes\nSetEnvIfNoCase Referer mosrif\\.ru spambot=yes\nSetEnvIfNoCase Referer mossiemckenzie\\.shop spambot=yes\nSetEnvIfNoCase Referer mossmesi\\.com spambot=yes\nSetEnvIfNoCase Referer most\\-kerch\\.org spambot=yes\nSetEnvIfNoCase Referer most\\.gov\\.iq spambot=yes\nSetEnvIfNoCase Referer mostantikor\\.ru spambot=yes\nSetEnvIfNoCase Referer mostbet\\-285\\.com spambot=yes\nSetEnvIfNoCase Referer mostbet\\-original\\.ru spambot=yes\nSetEnvIfNoCase Referer mostcool\\.top spambot=yes\nSetEnvIfNoCase Referer mostorgnerud\\.ru spambot=yes\nSetEnvIfNoCase Referer motion\\-interactive\\.com spambot=yes\nSetEnvIfNoCase Referer mototsikl\\.org spambot=yes\nSetEnvIfNoCase Referer mountainstream\\.ms spambot=yes\nSetEnvIfNoCase Referer moy\\-dokument\\.com spambot=yes\nSetEnvIfNoCase Referer moy\\-evroopt\\.ru spambot=yes\nSetEnvIfNoCase Referer moyakuhnia\\.ru spambot=yes\nSetEnvIfNoCase Referer moyaskidka\\.ru spambot=yes\nSetEnvIfNoCase Referer moyaterapiya\\.ru spambot=yes\nSetEnvIfNoCase Referer moygorod\\-online\\.ru spambot=yes\nSetEnvIfNoCase Referer moyparnik\\.com spambot=yes\nSetEnvIfNoCase Referer mp3films\\.ru spambot=yes\nSetEnvIfNoCase Referer mpftpupload\\.com spambot=yes\nSetEnvIfNoCase Referer mrbojikobi4\\.biz spambot=yes\nSetEnvIfNoCase Referer mrcsa\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer mriyadh\\.com spambot=yes\nSetEnvIfNoCase Referer mrmoneymustache\\.com spambot=yes\nSetEnvIfNoCase Referer mrt\\-info\\.ru spambot=yes\nSetEnvIfNoCase Referer mrwhite\\.biz spambot=yes\nSetEnvIfNoCase Referer msk\\-diplomat\\.com spambot=yes\nSetEnvIfNoCase Referer msk\\-sprawka\\.com spambot=yes\nSetEnvIfNoCase Referer mtras\\.xyz spambot=yes\nSetEnvIfNoCase Referer mtsguru\\.ru spambot=yes\nSetEnvIfNoCase Referer mug\\-na\\-chas\\-moscow\\.ru spambot=yes\nSetEnvIfNoCase Referer muizre\\.ru spambot=yes\nSetEnvIfNoCase Referer mukis\\.ru spambot=yes\nSetEnvIfNoCase Referer mundoaberrante\\.com spambot=yes\nSetEnvIfNoCase Referer muscle\\-factory\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer muscle\\-factory\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer music\\.utrolive\\.ru spambot=yes\nSetEnvIfNoCase Referer musicas\\.baixar\\-musicas\\-gratis\\.com spambot=yes\nSetEnvIfNoCase Referer musichallaudio\\.ru spambot=yes\nSetEnvIfNoCase Referer musicprojectfoundation\\.com spambot=yes\nSetEnvIfNoCase Referer musicstock\\.me spambot=yes\nSetEnvIfNoCase Referer musicvidz\\.ru spambot=yes\nSetEnvIfNoCase Referer muz\\-baza\\.net spambot=yes\nSetEnvIfNoCase Referer muz\\-shoes\\.ru spambot=yes\nSetEnvIfNoCase Referer muznachas\\-service\\.ru spambot=yes\nSetEnvIfNoCase Referer muztops\\.ru spambot=yes\nSetEnvIfNoCase Referer mvmagoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer mwductwork\\.com spambot=yes\nSetEnvIfNoCase Referer my\\-bc\\.ru spambot=yes\nSetEnvIfNoCase Referer my\\.opera\\.com spambot=yes\nSetEnvIfNoCase Referer mybestoffers\\.club spambot=yes\nSetEnvIfNoCase Referer myborder\\.ru spambot=yes\nSetEnvIfNoCase Referer mybuh\\.kz spambot=yes\nSetEnvIfNoCase Referer mycaf\\.it spambot=yes\nSetEnvIfNoCase Referer mycheaptraffic\\.com spambot=yes\nSetEnvIfNoCase Referer mycollegereview\\.com spambot=yes\nSetEnvIfNoCase Referer mydirtystuff\\.com spambot=yes\nSetEnvIfNoCase Referer mydoctorok\\.ru spambot=yes\nSetEnvIfNoCase Referer mydownloadengine\\.com spambot=yes\nSetEnvIfNoCase Referer mydownlodablefiles\\.com spambot=yes\nSetEnvIfNoCase Referer myecomir\\.com spambot=yes\nSetEnvIfNoCase Referer myfreemp3\\.eu spambot=yes\nSetEnvIfNoCase Referer myftpupload\\.com spambot=yes\nSetEnvIfNoCase Referer myindospace\\.com spambot=yes\nSetEnvIfNoCase Referer mylida\\.org spambot=yes\nSetEnvIfNoCase Referer myliveblog\\.ru spambot=yes\nSetEnvIfNoCase Referer mypets\\.by spambot=yes\nSetEnvIfNoCase Referer myplaycity\\.com spambot=yes\nSetEnvIfNoCase Referer myprintscreen\\.com spambot=yes\nSetEnvIfNoCase Referer mysexpics\\.ru spambot=yes\nSetEnvIfNoCase Referer mytherealshop\\.com spambot=yes\nSetEnvIfNoCase Referer mytraffic\\.shop spambot=yes\nSetEnvIfNoCase Referer na\\-telefon\\.biz spambot=yes\nSetEnvIfNoCase Referer na15\\.ru spambot=yes\nSetEnvIfNoCase Referer nacap\\.ru spambot=yes\nSetEnvIfNoCase Referer nachalka21\\.ru spambot=yes\nSetEnvIfNoCase Referer nagdak\\.ru spambot=yes\nSetEnvIfNoCase Referer nakozhe\\.com spambot=yes\nSetEnvIfNoCase Referer nalogovyy\\-kodeks\\.ru spambot=yes\nSetEnvIfNoCase Referer nancyblog\\.top spambot=yes\nSetEnvIfNoCase Referer nanochskazki\\.ru spambot=yes\nSetEnvIfNoCase Referer nanwar\\.xyz spambot=yes\nSetEnvIfNoCase Referer naobumium\\.info spambot=yes\nSetEnvIfNoCase Referer naphi\\.xyz spambot=yes\nSetEnvIfNoCase Referer naphukete\\.ru spambot=yes\nSetEnvIfNoCase Referer nardulan\\.com spambot=yes\nSetEnvIfNoCase Referer narkologiya\\-belgorod\\.ru spambot=yes\nSetEnvIfNoCase Referer narkologiya\\-orel\\.ru spambot=yes\nSetEnvIfNoCase Referer narkologiya\\-penza\\.ru spambot=yes\nSetEnvIfNoCase Referer narkologiya\\-peterburg\\.ru spambot=yes\nSetEnvIfNoCase Referer narkologiya\\-voronezh\\.ru spambot=yes\nSetEnvIfNoCase Referer narkomaniya\\-stop\\.ru spambot=yes\nSetEnvIfNoCase Referer narosty\\.com spambot=yes\nSetEnvIfNoCase Referer narutonaruto\\.ru spambot=yes\nSetEnvIfNoCase Referer nastroyke\\.net spambot=yes\nSetEnvIfNoCase Referer natali\\-forex\\.com spambot=yes\nSetEnvIfNoCase Referer nate\\.com spambot=yes\nSetEnvIfNoCase Referer natprof\\.ru spambot=yes\nSetEnvIfNoCase Referer naturalpharm\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer naval\\.jislaaik\\.com spambot=yes\nSetEnvIfNoCase Referer navek\\.by spambot=yes\nSetEnvIfNoCase Referer nbok\\.net spambot=yes\nSetEnvIfNoCase Referer nbsproject\\.ru spambot=yes\nSetEnvIfNoCase Referer nebbiasale\\.xyz spambot=yes\nSetEnvIfNoCase Referer needtosellmyhousefast\\.com spambot=yes\nSetEnvIfNoCase Referer negral\\.pluto\\.ro spambot=yes\nSetEnvIfNoCase Referer net\\-profits\\.xyz spambot=yes\nSetEnvIfNoCase Referer netallergy\\.ru spambot=yes\nSetEnvIfNoCase Referer nethouse\\.ru spambot=yes\nSetEnvIfNoCase Referer netlify\\.com spambot=yes\nSetEnvIfNoCase Referer netpics\\.org spambot=yes\nSetEnvIfNoCase Referer nevansk\\.ru spambot=yes\nSetEnvIfNoCase Referer nevapotolok\\.ru spambot=yes\nSetEnvIfNoCase Referer new\\-apps\\.ru spambot=yes\nSetEnvIfNoCase Referer newagebev\\.com spambot=yes\nSetEnvIfNoCase Referer newbieseoblog\\.online spambot=yes\nSetEnvIfNoCase Referer newsfj\\.net spambot=yes\nSetEnvIfNoCase Referer newsrosprom\\.ru spambot=yes\nSetEnvIfNoCase Referer newstaffadsshop\\.club spambot=yes\nSetEnvIfNoCase Referer newstraveller\\.ru spambot=yes\nSetEnvIfNoCase Referer newstudio\\.tv spambot=yes\nSetEnvIfNoCase Referer nextconseil\\.com spambot=yes\nSetEnvIfNoCase Referer nfocusdriver\\.com spambot=yes\nSetEnvIfNoCase Referer ngps1\\.ru spambot=yes\nSetEnvIfNoCase Referer nhmrcsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer nhsports\\.cl spambot=yes\nSetEnvIfNoCase Referer nicola\\.top spambot=yes\nSetEnvIfNoCase Referer nicolaonline\\.top spambot=yes\nSetEnvIfNoCase Referer niki\\-mlt\\.ru spambot=yes\nSetEnvIfNoCase Referer nikitsyringedrivelg\\.pen\\.io spambot=yes\nSetEnvIfNoCase Referer ninacecillia\\.top spambot=yes\nSetEnvIfNoCase Referer niuting\\.org spambot=yes\nSetEnvIfNoCase Referer nizniynovgorod\\.dienai\\.ru spambot=yes\nSetEnvIfNoCase Referer nl\\.netlog\\.com spambot=yes\nSetEnvIfNoCase Referer no\\-rx\\.info spambot=yes\nSetEnvIfNoCase Referer noclegonline\\.info spambot=yes\nSetEnvIfNoCase Referer nomerounddec\\.cf spambot=yes\nSetEnvIfNoCase Referer nonews\\.co spambot=yes\nSetEnvIfNoCase Referer nordstar\\.pro spambot=yes\nSetEnvIfNoCase Referer notaria\\-desalas\\.com spambot=yes\nSetEnvIfNoCase Referer notebook\\-pro\\.ru spambot=yes\nSetEnvIfNoCase Referer notfastfood\\.ru spambot=yes\nSetEnvIfNoCase Referer noumeda\\.com spambot=yes\nSetEnvIfNoCase Referer novalskincare\\.net spambot=yes\nSetEnvIfNoCase Referer novgorod\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer novosibirsk\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer novosti\\-avto\\.ru spambot=yes\nSetEnvIfNoCase Referer novosti\\-hi\\-tech\\.ru spambot=yes\nSetEnvIfNoCase Referer novostic\\.ru spambot=yes\nSetEnvIfNoCase Referer now\\-hydra2020\\.com spambot=yes\nSetEnvIfNoCase Referer npoet\\.ru spambot=yes\nSetEnvIfNoCase Referer ntdtv\\.ru spambot=yes\nSetEnvIfNoCase Referer nubuilderian\\.info spambot=yes\nSetEnvIfNoCase Referer nucia\\.biz\\.ly spambot=yes\nSetEnvIfNoCase Referer nudepatch\\.net spambot=yes\nSetEnvIfNoCase Referer nudo\\.ca spambot=yes\nSetEnvIfNoCase Referer nufaq\\.com spambot=yes\nSetEnvIfNoCase Referer nullrefer\\.com spambot=yes\nSetEnvIfNoCase Referer nutriwestncahi\\.com spambot=yes\nSetEnvIfNoCase Referer nuup\\.info spambot=yes\nSetEnvIfNoCase Referer nvformula\\.ru spambot=yes\nSetEnvIfNoCase Referer nvkzsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer nwrcz\\.com spambot=yes\nSetEnvIfNoCase Referer nyfinance\\.ml spambot=yes\nSetEnvIfNoCase Referer nyinfo\\.org spambot=yes\nSetEnvIfNoCase Referer o\\-o\\-11\\-o\\-o\\.com spambot=yes\nSetEnvIfNoCase Referer o\\-o\\-6\\-o\\-o\\.com spambot=yes\nSetEnvIfNoCase Referer o\\-o\\-6\\-o\\-o\\.ru spambot=yes\nSetEnvIfNoCase Referer o\\-o\\-8\\-o\\-o\\.com spambot=yes\nSetEnvIfNoCase Referer o\\-o\\-8\\-o\\-o\\.ru spambot=yes\nSetEnvIfNoCase Referer o\\-promyshlennosti\\.ru spambot=yes\nSetEnvIfNoCase Referer o00\\.in spambot=yes\nSetEnvIfNoCase Referer oblismall\\.xyz spambot=yes\nSetEnvIfNoCase Referer obnal\\.org spambot=yes\nSetEnvIfNoCase Referer obnallpro\\.cc spambot=yes\nSetEnvIfNoCase Referer obsessionphrases\\.com spambot=yes\nSetEnvIfNoCase Referer obuv\\-kupit\\.ru spambot=yes\nSetEnvIfNoCase Referer obyavka\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer obzor\\-casino\\-x\\.online spambot=yes\nSetEnvIfNoCase Referer obzor\\-casino\\-x\\.ru spambot=yes\nSetEnvIfNoCase Referer ochistka\\-stokov\\.ru spambot=yes\nSetEnvIfNoCase Referer odesproperty\\.com spambot=yes\nSetEnvIfNoCase Referer odiabetikah\\.com spambot=yes\nSetEnvIfNoCase Referer odsadsmobile\\.biz spambot=yes\nSetEnvIfNoCase Referer odywpjtw\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer ofermerah\\.com spambot=yes\nSetEnvIfNoCase Referer offers\\.bycontext\\.com spambot=yes\nSetEnvIfNoCase Referer office\\-windows\\.ru spambot=yes\nSetEnvIfNoCase Referer office2web\\.com spambot=yes\nSetEnvIfNoCase Referer officedocuments\\.net spambot=yes\nSetEnvIfNoCase Referer offtime\\.ru spambot=yes\nSetEnvIfNoCase Referer ogorodnic\\.com spambot=yes\nSetEnvIfNoCase Referer ok\\.ru spambot=yes\nSetEnvIfNoCase Referer oklogistic\\.ru spambot=yes\nSetEnvIfNoCase Referer okna\\-systems\\.pro spambot=yes\nSetEnvIfNoCase Referer okno\\.ooo spambot=yes\nSetEnvIfNoCase Referer okoshkah\\.com spambot=yes\nSetEnvIfNoCase Referer okroshki\\.ru spambot=yes\nSetEnvIfNoCase Referer oktube\\.ru spambot=yes\nSetEnvIfNoCase Referer oledonline\\.xyz spambot=yes\nSetEnvIfNoCase Referer olovoley\\.ru spambot=yes\nSetEnvIfNoCase Referer olvanto\\.ru spambot=yes\nSetEnvIfNoCase Referer omega\\.best spambot=yes\nSetEnvIfNoCase Referer omsk\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer one\\-a\\-plus\\.xyz spambot=yes\nSetEnvIfNoCase Referer one\\-gear\\.com spambot=yes\nSetEnvIfNoCase Referer onefilms\\.net spambot=yes\nSetEnvIfNoCase Referer onenews24\\.ru spambot=yes\nSetEnvIfNoCase Referer onion20hydra\\.ru spambot=yes\nSetEnvIfNoCase Referer onionhydra\\.net spambot=yes\nSetEnvIfNoCase Referer onionshydra\\.com spambot=yes\nSetEnvIfNoCase Referer online\\-akbars\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-binbank\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-hit\\.info spambot=yes\nSetEnvIfNoCase Referer online\\-intim\\.com spambot=yes\nSetEnvIfNoCase Referer online\\-mkb\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-pharma\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-pochtabank\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-raiffeisen\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-sbank\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-templatestore\\.com spambot=yes\nSetEnvIfNoCase Referer online\\-video\\-chat\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-vostbank\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-vtb\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\-x\\.ru spambot=yes\nSetEnvIfNoCase Referer online\\.ktc45\\.ru spambot=yes\nSetEnvIfNoCase Referer onlinebay\\.ru spambot=yes\nSetEnvIfNoCase Referer onlinedic\\.net spambot=yes\nSetEnvIfNoCase Referer onlinedomains\\.ru spambot=yes\nSetEnvIfNoCase Referer onlinefilmz\\.net spambot=yes\nSetEnvIfNoCase Referer onlineserialy\\.ru spambot=yes\nSetEnvIfNoCase Referer onlinetvseries\\.me spambot=yes\nSetEnvIfNoCase Referer onlinewot\\.ru spambot=yes\nSetEnvIfNoCase Referer onlinewritingjobs17\\.blogspot\\.ru spambot=yes\nSetEnvIfNoCase Referer onload\\.pw spambot=yes\nSetEnvIfNoCase Referer onlyforemont\\.ru spambot=yes\nSetEnvIfNoCase Referer onlythegames\\.com spambot=yes\nSetEnvIfNoCase Referer onlywoman\\.org spambot=yes\nSetEnvIfNoCase Referer oohlivecams\\.com spambot=yes\nSetEnvIfNoCase Referer ooo\\-gotovie\\.ru spambot=yes\nSetEnvIfNoCase Referer ooo\\-olni\\.ru spambot=yes\nSetEnvIfNoCase Referer oooh\\.pro spambot=yes\nSetEnvIfNoCase Referer openfrost\\.com spambot=yes\nSetEnvIfNoCase Referer openfrost\\.net spambot=yes\nSetEnvIfNoCase Referer openlibrary\\.org spambot=yes\nSetEnvIfNoCase Referer openmediasoft\\.com spambot=yes\nSetEnvIfNoCase Referer ops\\.picscout\\.com spambot=yes\nSetEnvIfNoCase Referer optitrade24\\.com spambot=yes\nSetEnvIfNoCase Referer optsol\\.ru spambot=yes\nSetEnvIfNoCase Referer oqex\\.io spambot=yes\nSetEnvIfNoCase Referer oracle\\-patches\\.ru spambot=yes\nSetEnvIfNoCase Referer orakul\\.spb\\.ru spambot=yes\nSetEnvIfNoCase Referer oranga\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer order\\-prime\\-smm\\-service\\.party spambot=yes\nSetEnvIfNoCase Referer ordernorxx\\.com spambot=yes\nSetEnvIfNoCase Referer orel\\-reshka\\.net spambot=yes\nSetEnvIfNoCase Referer oren\\-cats\\.ru spambot=yes\nSetEnvIfNoCase Referer origin\\-my\\.ru spambot=yes\nSetEnvIfNoCase Referer ororodnik\\.goodbb\\.ru spambot=yes\nSetEnvIfNoCase Referer osb\\.se11\\.ru spambot=yes\nSetEnvIfNoCase Referer osoznanie\\-narkotikam\\.net spambot=yes\nSetEnvIfNoCase Referer osteochondrosis\\.ru spambot=yes\nSetEnvIfNoCase Referer ostroike\\.org spambot=yes\nSetEnvIfNoCase Referer ostrovtaxi\\.ru spambot=yes\nSetEnvIfNoCase Referer otbelivanie\\-zubov\\.com spambot=yes\nSetEnvIfNoCase Referer otdbiaxaem\\-vmeste\\.ru spambot=yes\nSetEnvIfNoCase Referer otdyx\\-s\\-komfortom\\.ru spambot=yes\nSetEnvIfNoCase Referer oudallas\\.net spambot=yes\nSetEnvIfNoCase Referer ourtherapy\\.ru spambot=yes\nSetEnvIfNoCase Referer outshop\\.ru spambot=yes\nSetEnvIfNoCase Referer ovirus\\.ru spambot=yes\nSetEnvIfNoCase Referer own\\-ahrefs\\.com spambot=yes\nSetEnvIfNoCase Referer ownshop\\.cf spambot=yes\nSetEnvIfNoCase Referer owohho\\.com spambot=yes\nSetEnvIfNoCase Referer ozas\\.net spambot=yes\nSetEnvIfNoCase Referer p\\-business\\.ru spambot=yes\nSetEnvIfNoCase Referer paceform\\.com spambot=yes\nSetEnvIfNoCase Referer pacobarrero\\.com spambot=yes\nSetEnvIfNoCase Referer pageinsider\\.org spambot=yes\nSetEnvIfNoCase Referer paidonlinesites\\.com spambot=yes\nSetEnvIfNoCase Referer painting\\-planet\\.com spambot=yes\nSetEnvIfNoCase Referer palma\\-de\\-sochi\\.ru spambot=yes\nSetEnvIfNoCase Referer palvira\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer palvira\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer pamjatnik\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer pammik\\.ru spambot=yes\nSetEnvIfNoCase Referer pamyatnik\\-spb\\.ru spambot=yes\nSetEnvIfNoCase Referer pamyatnik\\-tsena\\.ru spambot=yes\nSetEnvIfNoCase Referer pandoshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer paparazzistudios\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer paperwritingservice17\\.blogspot\\.ru spambot=yes\nSetEnvIfNoCase Referer paradontozanet\\.ru spambot=yes\nSetEnvIfNoCase Referer parcsmalls\\.xyz spambot=yes\nSetEnvIfNoCase Referer paretto\\.ru spambot=yes\nSetEnvIfNoCase Referer parking\\-invest\\.ru spambot=yes\nSetEnvIfNoCase Referer partizan19\\.ru spambot=yes\nSetEnvIfNoCase Referer partnerskie\\-programmy\\.net spambot=yes\nSetEnvIfNoCase Referer patonsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer paulinho\\.ru spambot=yes\nSetEnvIfNoCase Referer pay\\.ru spambot=yes\nSetEnvIfNoCase Referer paydayonlinecom\\.com spambot=yes\nSetEnvIfNoCase Referer pc\\-services\\.ru spambot=yes\nSetEnvIfNoCase Referer pechikamini\\.ru spambot=yes\nSetEnvIfNoCase Referer pecmastore\\.xyz spambot=yes\nSetEnvIfNoCase Referer pensplan\\.com spambot=yes\nSetEnvIfNoCase Referer pensplan4u\\.com spambot=yes\nSetEnvIfNoCase Referer penzu\\.xyz spambot=yes\nSetEnvIfNoCase Referer percin\\.biz\\.ly spambot=yes\nSetEnvIfNoCase Referer perfection\\-pleasure\\.ru spambot=yes\nSetEnvIfNoCase Referer perform\\-like\\-alibabaity\\.info spambot=yes\nSetEnvIfNoCase Referer perform\\-likeism\\-alibaba\\.info spambot=yes\nSetEnvIfNoCase Referer perimetor\\.ru spambot=yes\nSetEnvIfNoCase Referer perm\\.dienai\\.ru spambot=yes\nSetEnvIfNoCase Referer perm\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer perper\\.ru spambot=yes\nSetEnvIfNoCase Referer perso\\.wanadoo\\.es spambot=yes\nSetEnvIfNoCase Referer personalhoro\\.ru spambot=yes\nSetEnvIfNoCase Referer petedrummond\\.com spambot=yes\nSetEnvIfNoCase Referer petroleumgeo\\.com spambot=yes\nSetEnvIfNoCase Referer petrovka\\-online\\.com spambot=yes\nSetEnvIfNoCase Referer petrushka\\-restoran\\.ru spambot=yes\nSetEnvIfNoCase Referer petscar\\.ru spambot=yes\nSetEnvIfNoCase Referer pfrf\\-kabinet\\.ru spambot=yes\nSetEnvIfNoCase Referer pharm\\-\\-shop\\.ru spambot=yes\nSetEnvIfNoCase Referer phimarshcer\\.online spambot=yes\nSetEnvIfNoCase Referer phimmakinhdi\\.com spambot=yes\nSetEnvIfNoCase Referer phobia\\.us spambot=yes\nSetEnvIfNoCase Referer photo\\-clip\\.ru spambot=yes\nSetEnvIfNoCase Referer photo\\.houseofgaga\\.ru spambot=yes\nSetEnvIfNoCase Referer photochki\\.com spambot=yes\nSetEnvIfNoCase Referer photokitchendesign\\.com spambot=yes\nSetEnvIfNoCase Referer photorepair\\.ru spambot=yes\nSetEnvIfNoCase Referer php\\-market\\.ru spambot=yes\nSetEnvIfNoCase Referer physfunc\\.ru spambot=yes\nSetEnvIfNoCase Referer picscout\\.com spambot=yes\nSetEnvIfNoCase Referer picturesmania\\.com spambot=yes\nSetEnvIfNoCase Referer pills24h\\.com spambot=yes\nSetEnvIfNoCase Referer piluli\\.info spambot=yes\nSetEnvIfNoCase Referer pinkduck\\.ga spambot=yes\nSetEnvIfNoCase Referer pinupcasinos\\.ru spambot=yes\nSetEnvIfNoCase Referer pinupcasinos1\\.ru spambot=yes\nSetEnvIfNoCase Referer pinupp1\\.com spambot=yes\nSetEnvIfNoCase Referer pipki\\.pp\\.ua spambot=yes\nSetEnvIfNoCase Referer piratbike\\.ru spambot=yes\nSetEnvIfNoCase Referer pirateday\\.ru spambot=yes\nSetEnvIfNoCase Referer pirelli\\-matador\\.ru spambot=yes\nSetEnvIfNoCase Referer pisze\\.pisz\\.pl spambot=yes\nSetEnvIfNoCase Referer piter\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer piulatte\\.cz spambot=yes\nSetEnvIfNoCase Referer pizdeishn\\.com spambot=yes\nSetEnvIfNoCase Referer pizdeishn\\.net spambot=yes\nSetEnvIfNoCase Referer pizza\\-imperia\\.com spambot=yes\nSetEnvIfNoCase Referer pizza\\-tycoon\\.com spambot=yes\nSetEnvIfNoCase Referer pk\\-pomosch\\.ru spambot=yes\nSetEnvIfNoCase Referer pk\\-services\\.ru spambot=yes\nSetEnvIfNoCase Referer pkr1hand\\.com spambot=yes\nSetEnvIfNoCase Referer plagscan\\.com spambot=yes\nSetEnvIfNoCase Referer plastweb\\.ru spambot=yes\nSetEnvIfNoCase Referer platesauto\\.com spambot=yes\nSetEnvIfNoCase Referer platinumdeals\\.gr spambot=yes\nSetEnvIfNoCase Referer plohaya\\-kreditnaya\\-istoriya\\.ru spambot=yes\nSetEnvIfNoCase Referer plusnetwork\\.com spambot=yes\nSetEnvIfNoCase Referer pochemychka\\.net spambot=yes\nSetEnvIfNoCase Referer podarkilove\\.ru spambot=yes\nSetEnvIfNoCase Referer poddon\\-moskva\\.ru spambot=yes\nSetEnvIfNoCase Referer podemnik\\.pro spambot=yes\nSetEnvIfNoCase Referer podseka1\\.ru spambot=yes\nSetEnvIfNoCase Referer pogodnyyeavarii\\.gq spambot=yes\nSetEnvIfNoCase Referer pogosh\\.com spambot=yes\nSetEnvIfNoCase Referer pogruztehnik\\.ru spambot=yes\nSetEnvIfNoCase Referer poisk\\-zakona\\.ru spambot=yes\nSetEnvIfNoCase Referer poiskzakona\\.ru spambot=yes\nSetEnvIfNoCase Referer pokemongooo\\.ml spambot=yes\nSetEnvIfNoCase Referer poker\\-royal777\\.com spambot=yes\nSetEnvIfNoCase Referer pokupaylegko\\.ru spambot=yes\nSetEnvIfNoCase Referer polcin\\.de spambot=yes\nSetEnvIfNoCase Referer polemikon\\.ru spambot=yes\nSetEnvIfNoCase Referer politika\\.bg spambot=yes\nSetEnvIfNoCase Referer polyana\\-skazok\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer pomoc\\-drogowa\\.cba\\.pl spambot=yes\nSetEnvIfNoCase Referer pony\\-business\\.com spambot=yes\nSetEnvIfNoCase Referer popads\\.net spambot=yes\nSetEnvIfNoCase Referer popelina\\.com spambot=yes\nSetEnvIfNoCase Referer pops\\.foundation spambot=yes\nSetEnvIfNoCase Referer popugauka\\.ru spambot=yes\nSetEnvIfNoCase Referer popugaychiki\\.com spambot=yes\nSetEnvIfNoCase Referer popular\\-church\\-arrow\\-voucher\\.info spambot=yes\nSetEnvIfNoCase Referer popup\\-fdm\\.xyz spambot=yes\nSetEnvIfNoCase Referer popup\\-hgd\\.xyz spambot=yes\nSetEnvIfNoCase Referer popup\\-jdh\\.xyz spambot=yes\nSetEnvIfNoCase Referer porn\\-video\\-chat\\.ru spambot=yes\nSetEnvIfNoCase Referer porn\\-w\\.org spambot=yes\nSetEnvIfNoCase Referer porndl\\.org spambot=yes\nSetEnvIfNoCase Referer pornhive\\.org spambot=yes\nSetEnvIfNoCase Referer pornhub\\-forum\\.ga spambot=yes\nSetEnvIfNoCase Referer pornhub\\-forum\\.uni\\.me spambot=yes\nSetEnvIfNoCase Referer pornhub\\-ru\\.com spambot=yes\nSetEnvIfNoCase Referer pornhubforum\\.tk spambot=yes\nSetEnvIfNoCase Referer porno\\-asia\\.com spambot=yes\nSetEnvIfNoCase Referer porno\\-chaman\\.info spambot=yes\nSetEnvIfNoCase Referer porno\\-dojki\\.net spambot=yes\nSetEnvIfNoCase Referer porno\\-gallery\\.ru spambot=yes\nSetEnvIfNoCase Referer porno\\-play\\.net spambot=yes\nSetEnvIfNoCase Referer porno\\-raskazy\\.ru spambot=yes\nSetEnvIfNoCase Referer porno\\-transsexuals\\.ru spambot=yes\nSetEnvIfNoCase Referer porno\\-video\\-chati\\.ru spambot=yes\nSetEnvIfNoCase Referer porno2xl\\.net spambot=yes\nSetEnvIfNoCase Referer pornobest\\.su spambot=yes\nSetEnvIfNoCase Referer pornoblood\\.com spambot=yes\nSetEnvIfNoCase Referer pornobrazzers\\.biz spambot=yes\nSetEnvIfNoCase Referer pornodojd\\.ru spambot=yes\nSetEnvIfNoCase Referer pornoelita\\.info spambot=yes\nSetEnvIfNoCase Referer pornofiljmi\\.com spambot=yes\nSetEnvIfNoCase Referer pornoforadult\\.com spambot=yes\nSetEnvIfNoCase Referer pornofoto\\.org spambot=yes\nSetEnvIfNoCase Referer pornogig\\.com spambot=yes\nSetEnvIfNoCase Referer pornohd1080\\.online spambot=yes\nSetEnvIfNoCase Referer pornokajf\\.com spambot=yes\nSetEnvIfNoCase Referer pornoklad\\.net spambot=yes\nSetEnvIfNoCase Referer pornoklad\\.ru spambot=yes\nSetEnvIfNoCase Referer pornokorol\\.com spambot=yes\nSetEnvIfNoCase Referer pornonik\\.com spambot=yes\nSetEnvIfNoCase Referer pornophoto\\.xyz spambot=yes\nSetEnvIfNoCase Referer pornoplen\\.com spambot=yes\nSetEnvIfNoCase Referer pornorasskazy\\.net spambot=yes\nSetEnvIfNoCase Referer pornosemki\\.info spambot=yes\nSetEnvIfNoCase Referer pornoslave\\.net spambot=yes\nSetEnvIfNoCase Referer pornotubexxx\\.name spambot=yes\nSetEnvIfNoCase Referer porodasobak\\.net spambot=yes\nSetEnvIfNoCase Referer portal\\-eu\\.ru spambot=yes\nSetEnvIfNoCase Referer portnoff\\.od\\.au spambot=yes\nSetEnvIfNoCase Referer portnoff\\.od\\.ua spambot=yes\nSetEnvIfNoCase Referer poshiv\\-chehol\\.ru spambot=yes\nSetEnvIfNoCase Referer positive2b\\.ru spambot=yes\nSetEnvIfNoCase Referer pospektr\\.ru spambot=yes\nSetEnvIfNoCase Referer postclass\\.com spambot=yes\nSetEnvIfNoCase Referer posteezy\\.xyz spambot=yes\nSetEnvIfNoCase Referer potolokelekor\\.ru spambot=yes\nSetEnvIfNoCase Referer povodok\\-shop\\.ru spambot=yes\nSetEnvIfNoCase Referer powitania\\.pl spambot=yes\nSetEnvIfNoCase Referer pozdravleniya\\-c\\.ru spambot=yes\nSetEnvIfNoCase Referer pozdrawleniya\\.com spambot=yes\nSetEnvIfNoCase Referer pozdrawleniya\\.ru spambot=yes\nSetEnvIfNoCase Referer pozvonim\\.com spambot=yes\nSetEnvIfNoCase Referer pp\\-budpostach\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer pravoholding\\.ru spambot=yes\nSetEnvIfNoCase Referer predmety\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer prezidentshop\\.ru spambot=yes\nSetEnvIfNoCase Referer priceg\\.com spambot=yes\nSetEnvIfNoCase Referer pricheskaonline\\.ru spambot=yes\nSetEnvIfNoCase Referer pricheski\\-video\\.com spambot=yes\nSetEnvIfNoCase Referer primfootball\\.com spambot=yes\nSetEnvIfNoCase Referer primoblog\\.xyz spambot=yes\nSetEnvIfNoCase Referer princeadvantagesales\\.com spambot=yes\nSetEnvIfNoCase Referer print\\-technology\\.ru spambot=yes\nSetEnvIfNoCase Referer printie\\.com spambot=yes\nSetEnvIfNoCase Referer printingpeach\\.com spambot=yes\nSetEnvIfNoCase Referer priora\\-2\\.com spambot=yes\nSetEnvIfNoCase Referer privatbank46\\.ru spambot=yes\nSetEnvIfNoCase Referer private\\-service\\.best spambot=yes\nSetEnvIfNoCase Referer privatov\\-zapisi\\.ru spambot=yes\nSetEnvIfNoCase Referer privhosting\\.com spambot=yes\nSetEnvIfNoCase Referer prizesk\\.com spambot=yes\nSetEnvIfNoCase Referer prizrn\\.site spambot=yes\nSetEnvIfNoCase Referer prlog\\.ru spambot=yes\nSetEnvIfNoCase Referer pro\\-okis\\.ru spambot=yes\nSetEnvIfNoCase Referer probenzo\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer procrafts\\.ru spambot=yes\nSetEnvIfNoCase Referer prodaemdveri\\.com spambot=yes\nSetEnvIfNoCase Referer producm\\.ru spambot=yes\nSetEnvIfNoCase Referer prodvigator\\.au spambot=yes\nSetEnvIfNoCase Referer prodvigator\\.ua spambot=yes\nSetEnvIfNoCase Referer proekt\\-gaz\\.ru spambot=yes\nSetEnvIfNoCase Referer proekt\\-mos\\.ru spambot=yes\nSetEnvIfNoCase Referer professionalsolutions\\.eu spambot=yes\nSetEnvIfNoCase Referer professionalwritingservices15\\.blogspot\\.ru spambot=yes\nSetEnvIfNoCase Referer profnastil\\-moscow\\.ru spambot=yes\nSetEnvIfNoCase Referer proftests\\.net spambot=yes\nSetEnvIfNoCase Referer progressive\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer prohoster\\.info spambot=yes\nSetEnvIfNoCase Referer prointer\\.net\\.au spambot=yes\nSetEnvIfNoCase Referer prointer\\.net\\.ua spambot=yes\nSetEnvIfNoCase Referer projectforte\\.ru spambot=yes\nSetEnvIfNoCase Referer projefrio\\.com\\.br spambot=yes\nSetEnvIfNoCase Referer prokotov\\.com spambot=yes\nSetEnvIfNoCase Referer prom23\\.ru spambot=yes\nSetEnvIfNoCase Referer prombudpostach\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer promodj\\.com spambot=yes\nSetEnvIfNoCase Referer promoforum\\.ru spambot=yes\nSetEnvIfNoCase Referer promoteapps\\.online spambot=yes\nSetEnvIfNoCase Referer promotion\\-for99\\.com spambot=yes\nSetEnvIfNoCase Referer pron\\.pro spambot=yes\nSetEnvIfNoCase Referer pronekut\\.com spambot=yes\nSetEnvIfNoCase Referer proposal\\-engine\\.com spambot=yes\nSetEnvIfNoCase Referer propranolol40mg\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer proquoshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer prosmibank\\.ru spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-almata\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-astana\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-belgoroda\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-kharkova\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-kiev\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-novgoroda\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-odessa\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-rostova\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-rostova\\.ru\\.com spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-tolyatti\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-tyumeni\\.org spambot=yes\nSetEnvIfNoCase Referer prostitutki\\-yaroslavlya\\.org spambot=yes\nSetEnvIfNoCase Referer prostoacc\\.com spambot=yes\nSetEnvIfNoCase Referer psa48\\.ru spambot=yes\nSetEnvIfNoCase Referer psiosale\\.xyz spambot=yes\nSetEnvIfNoCase Referer pskcijdc\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer psn\\-card\\.ru spambot=yes\nSetEnvIfNoCase Referer psvita\\.ru spambot=yes\nSetEnvIfNoCase Referer psychocryonics\\.net spambot=yes\nSetEnvIfNoCase Referer ptashkatextil\\.ua spambot=yes\nSetEnvIfNoCase Referer ptfic\\.org spambot=yes\nSetEnvIfNoCase Referer punch\\.media spambot=yes\nSetEnvIfNoCase Referer purchasepillsnorx\\.com spambot=yes\nSetEnvIfNoCase Referer puteshestvennik\\.com spambot=yes\nSetEnvIfNoCase Referer putevka24\\.ru spambot=yes\nSetEnvIfNoCase Referer putitin\\.me spambot=yes\nSetEnvIfNoCase Referer puzo2arbuza\\.ru spambot=yes\nSetEnvIfNoCase Referer puzzleweb\\.ru spambot=yes\nSetEnvIfNoCase Referer pyrodesigns\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer q\\-moto\\.ru spambot=yes\nSetEnvIfNoCase Referer qcstrtvt\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer qexyfu\\.bugs3\\.com spambot=yes\nSetEnvIfNoCase Referer qitt\\.ru spambot=yes\nSetEnvIfNoCase Referer qoinex\\.top spambot=yes\nSetEnvIfNoCase Referer qtrstar\\.xyz spambot=yes\nSetEnvIfNoCase Referer qualitymarketzone\\.com spambot=yes\nSetEnvIfNoCase Referer quick\\-seeker\\.com spambot=yes\nSetEnvIfNoCase Referer quickchange\\.cc spambot=yes\nSetEnvIfNoCase Referer quit\\-smoking\\.ga spambot=yes\nSetEnvIfNoCase Referer qwarckoine\\.com spambot=yes\nSetEnvIfNoCase Referer qwesa\\.ru spambot=yes\nSetEnvIfNoCase Referer qxnr\\.net spambot=yes\nSetEnvIfNoCase Referer r\\-control\\.ru spambot=yes\nSetEnvIfNoCase Referer rabot\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer rabotaetvse\\.ru spambot=yes\nSetEnvIfNoCase Referer rachelblog\\.online spambot=yes\nSetEnvIfNoCase Referer radiogambling\\.com spambot=yes\nSetEnvIfNoCase Referer rainbirds\\.ru spambot=yes\nSetEnvIfNoCase Referer ranedaly\\.net spambot=yes\nSetEnvIfNoCase Referer rangapoker\\.com spambot=yes\nSetEnvIfNoCase Referer rangjued\\.com spambot=yes\nSetEnvIfNoCase Referer rank\\-checker\\.online spambot=yes\nSetEnvIfNoCase Referer rankchecker\\.online spambot=yes\nSetEnvIfNoCase Referer ranking2017\\.ga spambot=yes\nSetEnvIfNoCase Referer rankings\\-analytics\\.com spambot=yes\nSetEnvIfNoCase Referer ranksays\\.com spambot=yes\nSetEnvIfNoCase Referer rankscanner\\.com spambot=yes\nSetEnvIfNoCase Referer ranksignals\\.com spambot=yes\nSetEnvIfNoCase Referer ranksonic\\.com spambot=yes\nSetEnvIfNoCase Referer ranksonic\\.info spambot=yes\nSetEnvIfNoCase Referer ranksonic\\.net spambot=yes\nSetEnvIfNoCase Referer ranksonic\\.org spambot=yes\nSetEnvIfNoCase Referer rapevideosmovies\\.com spambot=yes\nSetEnvIfNoCase Referer rapidgator\\-porn\\.ga spambot=yes\nSetEnvIfNoCase Referer rapidhits\\.net spambot=yes\nSetEnvIfNoCase Referer rapidsites\\.pro spambot=yes\nSetEnvIfNoCase Referer raschtextil\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer rasteniya\\-vs\\-zombi\\.ru spambot=yes\nSetEnvIfNoCase Referer ratraiser\\.online spambot=yes\nSetEnvIfNoCase Referer rattan\\.co\\.ua spambot=yes\nSetEnvIfNoCase Referer raymondblog\\.top spambot=yes\nSetEnvIfNoCase Referer razamicroelectronics\\.com spambot=yes\nSetEnvIfNoCase Referer razborka\\-skoda\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer rb\\-str\\.ru spambot=yes\nSetEnvIfNoCase Referer rcb101\\.ru spambot=yes\nSetEnvIfNoCase Referer rczhan\\.com spambot=yes\nSetEnvIfNoCase Referer real\\-time\\-analytics\\.com spambot=yes\nSetEnvIfNoCase Referer realnye\\-otzyvy\\.info spambot=yes\nSetEnvIfNoCase Referer realresultslist\\.com spambot=yes\nSetEnvIfNoCase Referer realting\\-moscow\\.ru spambot=yes\nSetEnvIfNoCase Referer recinziireale\\.com spambot=yes\nSetEnvIfNoCase Referer recipedays\\.com spambot=yes\nSetEnvIfNoCase Referer recipedays\\.ru spambot=yes\nSetEnvIfNoCase Referer rednise\\.com spambot=yes\nSetEnvIfNoCase Referer redraincine\\.com spambot=yes\nSetEnvIfNoCase Referer refererx\\.com spambot=yes\nSetEnvIfNoCase Referer refpawro\\.xyz spambot=yes\nSetEnvIfNoCase Referer refudiatethissarah\\.info spambot=yes\nSetEnvIfNoCase Referer reginablog\\.top spambot=yes\nSetEnvIfNoCase Referer reginanahum\\.top spambot=yes\nSetEnvIfNoCase Referer regionshop\\.biz spambot=yes\nSetEnvIfNoCase Referer registratciya\\-v\\-moskve\\.ru spambot=yes\nSetEnvIfNoCase Referer reklama\\-i\\-rabota\\.ru spambot=yes\nSetEnvIfNoCase Referer reklama1\\.ru spambot=yes\nSetEnvIfNoCase Referer reklamnoe\\.agency spambot=yes\nSetEnvIfNoCase Referer reklamuss\\.ru spambot=yes\nSetEnvIfNoCase Referer releshop\\.ru spambot=yes\nSetEnvIfNoCase Referer rembash\\.ru spambot=yes\nSetEnvIfNoCase Referer remedyotc\\.com spambot=yes\nSetEnvIfNoCase Referer remkompov\\.ru spambot=yes\nSetEnvIfNoCase Referer remmling\\.de spambot=yes\nSetEnvIfNoCase Referer remont\\-comp\\-pomosh\\.ru spambot=yes\nSetEnvIfNoCase Referer remont\\-fridge\\-tv\\.ru spambot=yes\nSetEnvIfNoCase Referer remont\\-komputerov\\-notebook\\.ru spambot=yes\nSetEnvIfNoCase Referer remont\\-kvartirspb\\.com spambot=yes\nSetEnvIfNoCase Referer remont\\-mobile\\-phones\\.ru spambot=yes\nSetEnvIfNoCase Referer remont\\-ustanovka\\-tehniki\\.ru spambot=yes\nSetEnvIfNoCase Referer remontgruzovik\\.ru spambot=yes\nSetEnvIfNoCase Referer remontvau\\.ru spambot=yes\nSetEnvIfNoCase Referer remote\\-dba\\.de spambot=yes\nSetEnvIfNoCase Referer remotecomputingservices\\.net spambot=yes\nSetEnvIfNoCase Referer rent2spb\\.ru spambot=yes\nSetEnvIfNoCase Referer rentalmaty\\.kz spambot=yes\nSetEnvIfNoCase Referer replica\\-watch\\.ru spambot=yes\nSetEnvIfNoCase Referer replicaclub\\.ru spambot=yes\nSetEnvIfNoCase Referer research\\.ifmo\\.ru spambot=yes\nSetEnvIfNoCase Referer resell\\-seo\\-services\\.com spambot=yes\nSetEnvIfNoCase Referer resellerclub\\.com spambot=yes\nSetEnvIfNoCase Referer residualforlife\\.com spambot=yes\nSetEnvIfNoCase Referer responsive\\-test\\.net spambot=yes\nSetEnvIfNoCase Referer respublica\\-otel\\.ru spambot=yes\nSetEnvIfNoCase Referer resurs\\-2012\\.ru spambot=yes\nSetEnvIfNoCase Referer retreatia\\.com spambot=yes\nSetEnvIfNoCase Referer reversing\\.cc spambot=yes\nSetEnvIfNoCase Referer revolgc\\.pro spambot=yes\nSetEnvIfNoCase Referer reyel1985\\.webnode\\.fr spambot=yes\nSetEnvIfNoCase Referer rezeptiblud\\.ru spambot=yes\nSetEnvIfNoCase Referer rfavon\\.ru spambot=yes\nSetEnvIfNoCase Referer rfd\\-split\\.hr spambot=yes\nSetEnvIfNoCase Referer rfesc\\.net spambot=yes\nSetEnvIfNoCase Referer rialp\\.getenjoyment\\.net spambot=yes\nSetEnvIfNoCase Referer richinvestmonitor\\.com spambot=yes\nSetEnvIfNoCase Referer rida\\.tokyo spambot=yes\nSetEnvIfNoCase Referer riedismall\\.xyz spambot=yes\nSetEnvIfNoCase Referer rietisvi\\.co spambot=yes\nSetEnvIfNoCase Referer rightenergysolutions\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer ring4rhino\\.com spambot=yes\nSetEnvIfNoCase Referer ringporno\\.com spambot=yes\nSetEnvIfNoCase Referer rique\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer risparmiocasa\\.bz\\.it spambot=yes\nSetEnvIfNoCase Referer rkmbonline\\.xyz spambot=yes\nSetEnvIfNoCase Referer robocheck\\.info spambot=yes\nSetEnvIfNoCase Referer robot\\-forex\\.biz spambot=yes\nSetEnvIfNoCase Referer roleforum\\.ru spambot=yes\nSetEnvIfNoCase Referer roma\\-kukareku\\.livejournal\\.com spambot=yes\nSetEnvIfNoCase Referer roof\\-city\\.ru spambot=yes\nSetEnvIfNoCase Referer room\\-mebel\\.ru spambot=yes\nSetEnvIfNoCase Referer ros\\-ctm\\.ru spambot=yes\nSetEnvIfNoCase Referer rospromtest\\.ru spambot=yes\nSetEnvIfNoCase Referer rossanasaavedra\\.net spambot=yes\nSetEnvIfNoCase Referer rossmark\\.ru spambot=yes\nSetEnvIfNoCase Referer rostov\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer royal\\-betting\\.net spambot=yes\nSetEnvIfNoCase Referer royal\\-casino\\.online spambot=yes\nSetEnvIfNoCase Referer royal\\-casino\\.ru spambot=yes\nSetEnvIfNoCase Referer royal\\-casinos\\.online spambot=yes\nSetEnvIfNoCase Referer royal\\-casinos\\.ru spambot=yes\nSetEnvIfNoCase Referer royal\\-cazino\\.online spambot=yes\nSetEnvIfNoCase Referer royal\\-cazino\\.ru spambot=yes\nSetEnvIfNoCase Referer royal\\-investments\\.net spambot=yes\nSetEnvIfNoCase Referer rozalli\\.com spambot=yes\nSetEnvIfNoCase Referer roznica\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer rp9\\.ru spambot=yes\nSetEnvIfNoCase Referer rrutw\\.com spambot=yes\nSetEnvIfNoCase Referer rspectr\\.com spambot=yes\nSetEnvIfNoCase Referer ru\\-lk\\-rt\\.ru spambot=yes\nSetEnvIfNoCase Referer ru\\-onion\\.com spambot=yes\nSetEnvIfNoCase Referer ru\\-online\\-sberbank\\.ru spambot=yes\nSetEnvIfNoCase Referer ruex\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer rufreechats\\.com spambot=yes\nSetEnvIfNoCase Referer ruhydraru\\.ru spambot=yes\nSetEnvIfNoCase Referer ruinfocomp\\.ru spambot=yes\nSetEnvIfNoCase Referer rulate\\.ru spambot=yes\nSetEnvIfNoCase Referer rumamba\\.com spambot=yes\nSetEnvIfNoCase Referer runetki\\-online\\.net spambot=yes\nSetEnvIfNoCase Referer runovschool\\.ua spambot=yes\nSetEnvIfNoCase Referer runstocks\\.com spambot=yes\nSetEnvIfNoCase Referer rupolitshow\\.ru spambot=yes\nSetEnvIfNoCase Referer rus\\-lit\\.com spambot=yes\nSetEnvIfNoCase Referer rus\\-teh\\.narod\\.ru spambot=yes\nSetEnvIfNoCase Referer ruscams\\-com\\.ru spambot=yes\nSetEnvIfNoCase Referer ruscopybook\\.com spambot=yes\nSetEnvIfNoCase Referer rusenvironmental\\.net spambot=yes\nSetEnvIfNoCase Referer rusexy\\.xyz spambot=yes\nSetEnvIfNoCase Referer rusoft\\-zone\\.ru spambot=yes\nSetEnvIfNoCase Referer ruspoety\\.ru spambot=yes\nSetEnvIfNoCase Referer russia\\-tao\\.ru spambot=yes\nSetEnvIfNoCase Referer russia\\-today\\-video\\.ru spambot=yes\nSetEnvIfNoCase Referer russian\\-postindex\\.ru spambot=yes\nSetEnvIfNoCase Referer russian\\-translator\\.com spambot=yes\nSetEnvIfNoCase Referer russian\\-videochats\\.ru spambot=yes\nSetEnvIfNoCase Referer russintv\\.fr spambot=yes\nSetEnvIfNoCase Referer russkie\\-sochineniya\\.ru spambot=yes\nSetEnvIfNoCase Referer russkoe\\-zdorovie\\.ru spambot=yes\nSetEnvIfNoCase Referer rustag\\.ru spambot=yes\nSetEnvIfNoCase Referer rutor\\.group spambot=yes\nSetEnvIfNoCase Referer rvtv\\.ru spambot=yes\nSetEnvIfNoCase Referer rxshop\\.md spambot=yes\nSetEnvIfNoCase Referer rybalka\\-opt\\.ru spambot=yes\nSetEnvIfNoCase Referer s\\-forum\\.biz spambot=yes\nSetEnvIfNoCase Referer s\\-luna\\.me spambot=yes\nSetEnvIfNoCase Referer sabaapress\\.com spambot=yes\nSetEnvIfNoCase Referer sabinablog\\.xyz spambot=yes\nSetEnvIfNoCase Referer sack\\.net spambot=yes\nSetEnvIfNoCase Referer sad\\-torg\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer sady\\-urala\\.ru spambot=yes\nSetEnvIfNoCase Referer sahohev\\.000host\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer saitevpatorii\\.com spambot=yes\nSetEnvIfNoCase Referer sakhboard\\.ru spambot=yes\nSetEnvIfNoCase Referer sale\\-japan\\.com spambot=yes\nSetEnvIfNoCase Referer saletool\\.ru spambot=yes\nSetEnvIfNoCase Referer saltspray\\.ru spambot=yes\nSetEnvIfNoCase Referer salutmontreal\\.com spambot=yes\nSetEnvIfNoCase Referer samanthablog\\.online spambot=yes\nSetEnvIfNoCase Referer samara\\-airport\\.com spambot=yes\nSetEnvIfNoCase Referer samara\\-comfort\\.ru spambot=yes\nSetEnvIfNoCase Referer samchist\\.ru spambot=yes\nSetEnvIfNoCase Referer samlaurabrown\\.top spambot=yes\nSetEnvIfNoCase Referer samo\\-soznanie\\.ru spambot=yes\nSetEnvIfNoCase Referer samogonius\\.ru spambot=yes\nSetEnvIfNoCase Referer sanatorrii\\.ru spambot=yes\nSetEnvIfNoCase Referer sanjosestartups\\.com spambot=yes\nSetEnvIfNoCase Referer santaren\\.by spambot=yes\nSetEnvIfNoCase Referer santasgift\\.ml spambot=yes\nSetEnvIfNoCase Referer santechnik\\.jimdo\\.com spambot=yes\nSetEnvIfNoCase Referer santehnovich\\.ru spambot=yes\nSetEnvIfNoCase Referer sapaship\\.ru spambot=yes\nSetEnvIfNoCase Referer sarafangel\\.ru spambot=yes\nSetEnvIfNoCase Referer sarahmilne\\.top spambot=yes\nSetEnvIfNoCase Referer saratov\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer sarf3omlat\\.com spambot=yes\nSetEnvIfNoCase Referer sashagreyblog\\.ga spambot=yes\nSetEnvIfNoCase Referer saudegoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer sauna\\-v\\-ufe\\.ru spambot=yes\nSetEnvIfNoCase Referer sauni\\-lipetsk\\.ru spambot=yes\nSetEnvIfNoCase Referer sauni\\-moskva\\.ru spambot=yes\nSetEnvIfNoCase Referer savetubevideo\\.com spambot=yes\nSetEnvIfNoCase Referer savetubevideo\\.info spambot=yes\nSetEnvIfNoCase Referer savne\\.org spambot=yes\nSetEnvIfNoCase Referer sax\\-sex\\.com spambot=yes\nSetEnvIfNoCase Referer sbdl\\.no spambot=yes\nSetEnvIfNoCase Referer sbornik\\-zakonov\\.ru spambot=yes\nSetEnvIfNoCase Referer sc\\-specialhost\\.com spambot=yes\nSetEnvIfNoCase Referer scanner\\-alex\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-alexa\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-andrew\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-barak\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-brian\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-don\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-donald\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-elena\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-fred\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-george\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-irvin\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-ivan\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-jack\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-jane\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-jess\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-jessica\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-john\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-josh\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-julia\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-julianna\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-margo\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-mark\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-marwin\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-mary\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-nelson\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-olga\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-viktor\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-walt\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-walter\\.top spambot=yes\nSetEnvIfNoCase Referer scanner\\-willy\\.top spambot=yes\nSetEnvIfNoCase Referer scansafe\\.net spambot=yes\nSetEnvIfNoCase Referer scat\\.porn spambot=yes\nSetEnvIfNoCase Referer scenarii\\-1\\-sentyabrya\\.uroki\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer school\\-diplomat\\.ru spambot=yes\nSetEnvIfNoCase Referer sciedsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer score\\-prime\\-web\\-service\\.stream spambot=yes\nSetEnvIfNoCase Referer screen\\-led\\.ru spambot=yes\nSetEnvIfNoCase Referer screentoolkit\\.com spambot=yes\nSetEnvIfNoCase Referer scripted\\.com spambot=yes\nSetEnvIfNoCase Referer sdelai\\-prosto\\.ru spambot=yes\nSetEnvIfNoCase Referer sdelatmebel\\.ru spambot=yes\nSetEnvIfNoCase Referer sdi\\-pme\\.com spambot=yes\nSetEnvIfNoCase Referer search\\-error\\.com spambot=yes\nSetEnvIfNoCase Referer search\\-helper\\.ru spambot=yes\nSetEnvIfNoCase Referer searchencrypt\\.com spambot=yes\nSetEnvIfNoCase Referer searchlock\\.com spambot=yes\nSetEnvIfNoCase Referer seccioncontrabajo\\.com spambot=yes\nSetEnvIfNoCase Referer secret\\.xn\\-\\-oogle\\-wmc\\.com spambot=yes\nSetEnvIfNoCase Referer secretscook\\.ru spambot=yes\nSetEnvIfNoCase Referer security\\-corporation\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer securityallianceservices\\.com spambot=yes\nSetEnvIfNoCase Referer see\\-your\\-website\\-here\\.com spambot=yes\nSetEnvIfNoCase Referer seekanvdoo22\\.live spambot=yes\nSetEnvIfNoCase Referer seisasale\\.xyz spambot=yes\nSetEnvIfNoCase Referer seksotur\\.ru spambot=yes\nSetEnvIfNoCase Referer sel\\-hoz\\.com spambot=yes\nSetEnvIfNoCase Referer selfhotdog\\.com spambot=yes\nSetEnvIfNoCase Referer sell\\-fb\\-group\\-here\\.com spambot=yes\nSetEnvIfNoCase Referer semalt\\.com spambot=yes\nSetEnvIfNoCase Referer semalt\\.net spambot=yes\nSetEnvIfNoCase Referer semalt\\.semalt\\.com spambot=yes\nSetEnvIfNoCase Referer semaltmedia\\.com spambot=yes\nSetEnvIfNoCase Referer semxiu\\.com spambot=yes\nSetEnvIfNoCase Referer senacertificados\\.co spambot=yes\nSetEnvIfNoCase Referer senger\\.atspace\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer seo\\-2\\-0\\.com spambot=yes\nSetEnvIfNoCase Referer seo\\-b2b\\.com spambot=yes\nSetEnvIfNoCase Referer seo\\-platform\\.com spambot=yes\nSetEnvIfNoCase Referer seo\\-services\\-b2b\\.com spambot=yes\nSetEnvIfNoCase Referer seo\\-services\\-wordpress\\.com spambot=yes\nSetEnvIfNoCase Referer seo\\-smm\\.kz spambot=yes\nSetEnvIfNoCase Referer seo\\-tips\\.top spambot=yes\nSetEnvIfNoCase Referer seo\\-traffic\\.xyz spambot=yes\nSetEnvIfNoCase Referer seoanalyses\\.com spambot=yes\nSetEnvIfNoCase Referer seobook\\.top spambot=yes\nSetEnvIfNoCase Referer seocheckupx\\.com spambot=yes\nSetEnvIfNoCase Referer seocheckupx\\.net spambot=yes\nSetEnvIfNoCase Referer seoexperimenty\\.ru spambot=yes\nSetEnvIfNoCase Referer seojokes\\.net spambot=yes\nSetEnvIfNoCase Referer seokicks\\.de spambot=yes\nSetEnvIfNoCase Referer seopub\\.net spambot=yes\nSetEnvIfNoCase Referer seoriseome\\.netlify\\.app spambot=yes\nSetEnvIfNoCase Referer seoservices2018\\.com spambot=yes\nSetEnvIfNoCase Referer serenamall\\.xyz spambot=yes\nSetEnvIfNoCase Referer serialsway\\.ucoz\\.ru spambot=yes\nSetEnvIfNoCase Referer serialsx\\.ru spambot=yes\nSetEnvIfNoCase Referer servemlixo\\.xyz spambot=yes\nSetEnvIfNoCase Referer servisural\\.ru spambot=yes\nSetEnvIfNoCase Referer serw\\.clicksor\\.com spambot=yes\nSetEnvIfNoCase Referer seryeznie\\-znakomstva\\.ru spambot=yes\nSetEnvIfNoCase Referer setioweb\\.com spambot=yes\nSetEnvIfNoCase Referer sex\\-dating\\.co spambot=yes\nSetEnvIfNoCase Referer sex\\-porno\\.site spambot=yes\nSetEnvIfNoCase Referer sex\\-spying\\.ru spambot=yes\nSetEnvIfNoCase Referer sex\\-videochats\\.ru spambot=yes\nSetEnvIfNoCase Referer sexkrasivo\\.net spambot=yes\nSetEnvIfNoCase Referer sexpornotales\\.net spambot=yes\nSetEnvIfNoCase Referer sexreliz\\.com spambot=yes\nSetEnvIfNoCase Referer sexreliz\\.net spambot=yes\nSetEnvIfNoCase Referer sexsaoy\\.com spambot=yes\nSetEnvIfNoCase Referer sexuria\\.net spambot=yes\nSetEnvIfNoCase Referer sexvideo\\-sex\\.com spambot=yes\nSetEnvIfNoCase Referer sexvporno\\.ru spambot=yes\nSetEnvIfNoCase Referer sexwife\\.net spambot=yes\nSetEnvIfNoCase Referer sexy\\-girl\\-chat\\.ru spambot=yes\nSetEnvIfNoCase Referer sexyali\\.com spambot=yes\nSetEnvIfNoCase Referer sexyteens\\.hol\\.es spambot=yes\nSetEnvIfNoCase Referer sexytrend\\.ru spambot=yes\nSetEnvIfNoCase Referer sfd\\-chess\\.ru spambot=yes\nSetEnvIfNoCase Referer shagtomsk\\.ru spambot=yes\nSetEnvIfNoCase Referer shakhtar\\-doneck\\.ru spambot=yes\nSetEnvIfNoCase Referer shamcisale\\.xyz spambot=yes\nSetEnvIfNoCase Referer shanscasino1\\.ru spambot=yes\nSetEnvIfNoCase Referer share\\-button\\.xyz spambot=yes\nSetEnvIfNoCase Referer share\\-buttons\\-for\\-free\\.com spambot=yes\nSetEnvIfNoCase Referer share\\-buttons\\.xyz spambot=yes\nSetEnvIfNoCase Referer sharebutton\\.io spambot=yes\nSetEnvIfNoCase Referer sharebutton\\.net spambot=yes\nSetEnvIfNoCase Referer sharebutton\\.org spambot=yes\nSetEnvIfNoCase Referer sharebutton\\.to spambot=yes\nSetEnvIfNoCase Referer sharemyfile\\.ru spambot=yes\nSetEnvIfNoCase Referer shariki\\-zuma\\-lines\\.ru spambot=yes\nSetEnvIfNoCase Referer shcrose\\.com spambot=yes\nSetEnvIfNoCase Referer sheki\\-spb\\.ru spambot=yes\nSetEnvIfNoCase Referer shemy\\-vishivki\\.com spambot=yes\nSetEnvIfNoCase Referer shiksabd\\.com spambot=yes\nSetEnvIfNoCase Referer shinikiev\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer ship\\-marvel\\.co\\.ua spambot=yes\nSetEnvIfNoCase Referer shisenshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer shisha\\-swag\\.de spambot=yes\nSetEnvIfNoCase Referer shlyahten\\.ru spambot=yes\nSetEnvIfNoCase Referer shnyagi\\.net spambot=yes\nSetEnvIfNoCase Referer shodanhq\\.com spambot=yes\nSetEnvIfNoCase Referer shop\\-electron\\.ru spambot=yes\nSetEnvIfNoCase Referer shop\\-garena\\.ru spambot=yes\nSetEnvIfNoCase Referer shop\\.garena\\.ru\\.com spambot=yes\nSetEnvIfNoCase Referer shop\\.xz618\\.com spambot=yes\nSetEnvIfNoCase Referer shop2hydra\\.com spambot=yes\nSetEnvIfNoCase Referer shop4fit\\.ru spambot=yes\nSetEnvIfNoCase Referer shopfishing\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer shoppinglocation\\.com spambot=yes\nSetEnvIfNoCase Referer shoppingmiracles\\.co\\.uk spambot=yes\nSetEnvIfNoCase Referer shoprybalka\\.ru spambot=yes\nSetEnvIfNoCase Referer shops\\-ru\\.ru spambot=yes\nSetEnvIfNoCase Referer shopsellcardsdumps\\.com spambot=yes\nSetEnvIfNoCase Referer shopvilleroyboch\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer shopwme\\.ru spambot=yes\nSetEnvIfNoCase Referer shtaketniki\\.ru spambot=yes\nSetEnvIfNoCase Referer shtormmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer shulepov\\.ru spambot=yes\nSetEnvIfNoCase Referer sib\\-kukla\\.ru spambot=yes\nSetEnvIfNoCase Referer sibecoprom\\.ru spambot=yes\nSetEnvIfNoCase Referer sibkukla\\.ru spambot=yes\nSetEnvIfNoCase Referer sideeffectsoftizanidine\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer sign\\-service\\.ru spambot=yes\nSetEnvIfNoCase Referer signx\\.info spambot=yes\nSetEnvIfNoCase Referer sihugoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer silverage\\.ru spambot=yes\nSetEnvIfNoCase Referer silvergull\\.ru spambot=yes\nSetEnvIfNoCase Referer silvermature\\.net spambot=yes\nSetEnvIfNoCase Referer sim\\-dealer\\.ru spambot=yes\nSetEnvIfNoCase Referer sim\\-service\\.net spambot=yes\nSetEnvIfNoCase Referer similarmoviesdb\\.com spambot=yes\nSetEnvIfNoCase Referer simoncinicancertherapy\\.com spambot=yes\nSetEnvIfNoCase Referer simple\\-share\\-buttons\\.com spambot=yes\nSetEnvIfNoCase Referer simplepooltips\\.com spambot=yes\nSetEnvIfNoCase Referer sims\\-sims\\.ru spambot=yes\nSetEnvIfNoCase Referer sinel\\.info spambot=yes\nSetEnvIfNoCase Referer sinestesia\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer singularwebs\\.net spambot=yes\nSetEnvIfNoCase Referer sinhronperevod\\.ru spambot=yes\nSetEnvIfNoCase Referer siongetadsincome\\.info spambot=yes\nSetEnvIfNoCase Referer sirhoutlet\\.xyz spambot=yes\nSetEnvIfNoCase Referer siritshop\\.xyz spambot=yes\nSetEnvIfNoCase Referer sisiynas\\.ru spambot=yes\nSetEnvIfNoCase Referer site\\-auditor\\.online spambot=yes\nSetEnvIfNoCase Referer site\\-speed\\-check\\.site spambot=yes\nSetEnvIfNoCase Referer site\\-speed\\-checker\\.site spambot=yes\nSetEnvIfNoCase Referer site3\\.free\\-share\\-buttons\\.com spambot=yes\nSetEnvIfNoCase Referer site5\\.com spambot=yes\nSetEnvIfNoCase Referer siteexpress\\.co\\.il spambot=yes\nSetEnvIfNoCase Referer siteripz\\.net spambot=yes\nSetEnvIfNoCase Referer sitesadd\\.com spambot=yes\nSetEnvIfNoCase Referer sitevaluation\\.com spambot=yes\nSetEnvIfNoCase Referer sitevaluation\\.org spambot=yes\nSetEnvIfNoCase Referer sivs\\.ru spambot=yes\nSetEnvIfNoCase Referer sjmsw\\.net spambot=yes\nSetEnvIfNoCase Referer sk\\.golden\\-praga\\.ru spambot=yes\nSetEnvIfNoCase Referer ski\\-centers\\.com spambot=yes\nSetEnvIfNoCase Referer skidku\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer skinali\\.com spambot=yes\nSetEnvIfNoCase Referer skinali\\.photo\\-clip\\.ru spambot=yes\nSetEnvIfNoCase Referer sklad\\-24\\.ru spambot=yes\nSetEnvIfNoCase Referer skladvaz\\.ru spambot=yes\nSetEnvIfNoCase Referer sky\\-mine\\.ru spambot=yes\nSetEnvIfNoCase Referer skylta\\.com spambot=yes\nSetEnvIfNoCase Referer sladkoevideo\\.com spambot=yes\nSetEnvIfNoCase Referer slashpet\\.com spambot=yes\nSetEnvIfNoCase Referer slavic\\-magic\\.ru spambot=yes\nSetEnvIfNoCase Referer slavkokacunko\\.de spambot=yes\nSetEnvIfNoCase Referer sledstvie\\-veli\\.net spambot=yes\nSetEnvIfNoCase Referer slftsdybbg\\.ru spambot=yes\nSetEnvIfNoCase Referer slkrm\\.ru spambot=yes\nSetEnvIfNoCase Referer slomm\\.ru spambot=yes\nSetEnvIfNoCase Referer slonechka\\.ru spambot=yes\nSetEnvIfNoCase Referer sloopyjoes\\.com\\.top spambot=yes\nSetEnvIfNoCase Referer slotron\\.com spambot=yes\nSetEnvIfNoCase Referer slow\\-website\\.xyz spambot=yes\nSetEnvIfNoCase Referer slujbauborki\\.ru spambot=yes\nSetEnvIfNoCase Referer smailik\\.org spambot=yes\nSetEnvIfNoCase Referer small\\-game\\.com spambot=yes\nSetEnvIfNoCase Referer small\\-games\\.biz spambot=yes\nSetEnvIfNoCase Referer smartpet\\.ru spambot=yes\nSetEnvIfNoCase Referer smartphonediscount\\.info spambot=yes\nSetEnvIfNoCase Referer sms2x2\\.ru spambot=yes\nSetEnvIfNoCase Referer smstraf\\.ru spambot=yes\nSetEnvIfNoCase Referer smt4\\.ru spambot=yes\nSetEnvIfNoCase Referer smzt\\.shop spambot=yes\nSetEnvIfNoCase Referer snabs\\.kz spambot=yes\nSetEnvIfNoCase Referer snaiper\\-bg\\.net spambot=yes\nSetEnvIfNoCase Referer sneakerfreaker\\.com spambot=yes\nSetEnvIfNoCase Referer snegozaderzhatel\\.ru spambot=yes\nSetEnvIfNoCase Referer snip\\.to spambot=yes\nSetEnvIfNoCase Referer snip\\.tw spambot=yes\nSetEnvIfNoCase Referer snjatie\\-geroinovoy\\-lomki\\.ru spambot=yes\nSetEnvIfNoCase Referer snomer1\\.ru spambot=yes\nSetEnvIfNoCase Referer snyatie\\-lomki\\-v\\-stacionare\\.ru spambot=yes\nSetEnvIfNoCase Referer soaksoak\\.ru spambot=yes\nSetEnvIfNoCase Referer soblaznu\\.net spambot=yes\nSetEnvIfNoCase Referer soc\\-econom\\-problems\\.ru spambot=yes\nSetEnvIfNoCase Referer soc\\-proof\\.su spambot=yes\nSetEnvIfNoCase Referer socas\\.pluto\\.ro spambot=yes\nSetEnvIfNoCase Referer sochi\\-3d\\.ru spambot=yes\nSetEnvIfNoCase Referer social\\-button\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-aa\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-aaa\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-bb\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-bbb\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-cc\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-ccc\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-dd\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-ddd\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-ee\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-eee\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-ff\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-fff\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-gg\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-ggg\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-hh\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-ii\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\-iii\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\.com spambot=yes\nSetEnvIfNoCase Referer social\\-buttons\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-fun\\.ru spambot=yes\nSetEnvIfNoCase Referer social\\-s\\-ggg\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-s\\-hhh\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-s\\-iii\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-search\\.me spambot=yes\nSetEnvIfNoCase Referer social\\-traffic\\-1\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-traffic\\-2\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-traffic\\-3\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-traffic\\-4\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-traffic\\-5\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-traffic\\-6\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-traffic\\-7\\.xyz spambot=yes\nSetEnvIfNoCase Referer social\\-vestnik\\.ru spambot=yes\nSetEnvIfNoCase Referer social\\-widget\\.xyz spambot=yes\nSetEnvIfNoCase Referer socialbookmarksubmission\\.org spambot=yes\nSetEnvIfNoCase Referer socialbutton\\.xyz spambot=yes\nSetEnvIfNoCase Referer socialbuttons\\.xyz spambot=yes\nSetEnvIfNoCase Referer socialine\\.net spambot=yes\nSetEnvIfNoCase Referer socialseet\\.ru spambot=yes\nSetEnvIfNoCase Referer socialtrade\\.biz spambot=yes\nSetEnvIfNoCase Referer sofit\\-dmd\\.ru spambot=yes\nSetEnvIfNoCase Referer soft\\-program\\.com spambot=yes\nSetEnvIfNoCase Referer softomix\\.com spambot=yes\nSetEnvIfNoCase Referer softomix\\.net spambot=yes\nSetEnvIfNoCase Referer softomix\\.org spambot=yes\nSetEnvIfNoCase Referer softomix\\.ru spambot=yes\nSetEnvIfNoCase Referer softtor\\.com spambot=yes\nSetEnvIfNoCase Referer softxaker\\.ru spambot=yes\nSetEnvIfNoCase Referer sohoindia\\.net spambot=yes\nSetEnvIfNoCase Referer soki\\.tv spambot=yes\nSetEnvIfNoCase Referer solartek\\.ru spambot=yes\nSetEnvIfNoCase Referer solitaire\\-game\\.ru spambot=yes\nSetEnvIfNoCase Referer solnplast\\.ru spambot=yes\nSetEnvIfNoCase Referer sonata\\-arctica\\.wz\\.cz spambot=yes\nSetEnvIfNoCase Referer songoo\\.wz\\.cz spambot=yes\nSetEnvIfNoCase Referer sonnikforme\\.ru spambot=yes\nSetEnvIfNoCase Referer sonyelektronik\\.com spambot=yes\nSetEnvIfNoCase Referer sosdepotdebilan\\.com spambot=yes\nSetEnvIfNoCase Referer sotkal\\.lark\\.ru spambot=yes\nSetEnvIfNoCase Referer soundfrost\\.org spambot=yes\nSetEnvIfNoCase Referer soup\\.io spambot=yes\nSetEnvIfNoCase Referer souvenirua\\.com spambot=yes\nSetEnvIfNoCase Referer sovetogorod\\.ru spambot=yes\nSetEnvIfNoCase Referer sovetskie\\-plakaty\\.ru spambot=yes\nSetEnvIfNoCase Referer soviet\\-portal\\.do\\.am spambot=yes\nSetEnvIfNoCase Referer sowhoz\\.ru spambot=yes\nSetEnvIfNoCase Referer soyuzexpedition\\.ru spambot=yes\nSetEnvIfNoCase Referer sp\\-laptop\\.ru spambot=yes\nSetEnvIfNoCase Referer sp\\-zakupki\\.ru spambot=yes\nSetEnvIfNoCase Referer space2019\\.top spambot=yes\nSetEnvIfNoCase Referer spacebarnot\\.work spambot=yes\nSetEnvIfNoCase Referer spain\\-poetry\\.com spambot=yes\nSetEnvIfNoCase Referer spartania\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer spb\\-plitka\\.ru spambot=yes\nSetEnvIfNoCase Referer spb\\-scenar\\.ru spambot=yes\nSetEnvIfNoCase Referer spb\\.ru spambot=yes\nSetEnvIfNoCase Referer spbchampionat\\.ru spambot=yes\nSetEnvIfNoCase Referer special\\-porn\\.com spambot=yes\nSetEnvIfNoCase Referer specstroy36\\.ru spambot=yes\nSetEnvIfNoCase Referer speedup\\-my\\.site spambot=yes\nSetEnvIfNoCase Referer spin2016\\.cf spambot=yes\nSetEnvIfNoCase Referer sport\\-video\\-obzor\\.ru spambot=yes\nSetEnvIfNoCase Referer sportbetfair\\.com spambot=yes\nSetEnvIfNoCase Referer sportobzori\\.ru spambot=yes\nSetEnvIfNoCase Referer sportwizard\\.ru spambot=yes\nSetEnvIfNoCase Referer spravka130\\.ru spambot=yes\nSetEnvIfNoCase Referer spravkavspb\\.net spambot=yes\nSetEnvIfNoCase Referer spravkavspb\\.work spambot=yes\nSetEnvIfNoCase Referer sprawka\\-help\\.com spambot=yes\nSetEnvIfNoCase Referer spscmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer spuemonti\\.net spambot=yes\nSetEnvIfNoCase Referer spy\\-app\\.info spambot=yes\nSetEnvIfNoCase Referer spy\\-sts\\.com spambot=yes\nSetEnvIfNoCase Referer sqadia\\.com spambot=yes\nSetEnvIfNoCase Referer squarespace\\.top spambot=yes\nSetEnvIfNoCase Referer squidoo\\.com spambot=yes\nSetEnvIfNoCase Referer srecorder\\.com spambot=yes\nSetEnvIfNoCase Referer sribno\\.net spambot=yes\nSetEnvIfNoCase Referer ssn\\.is spambot=yes\nSetEnvIfNoCase Referer sssexxx\\.net spambot=yes\nSetEnvIfNoCase Referer ssve\\.ru spambot=yes\nSetEnvIfNoCase Referer st\\-komf\\.ru spambot=yes\nSetEnvIfNoCase Referer sta\\-grand\\.ru spambot=yes\nSetEnvIfNoCase Referer stairliftstrue\\.com spambot=yes\nSetEnvIfNoCase Referer star61\\.de spambot=yes\nSetEnvIfNoCase Referer stardevine\\.com spambot=yes\nSetEnvIfNoCase Referer stariy\\-baku\\.com spambot=yes\nSetEnvIfNoCase Referer start\\.myplaycity\\.com spambot=yes\nSetEnvIfNoCase Referer startraffic\\.online spambot=yes\nSetEnvIfNoCase Referer startufa\\.ru spambot=yes\nSetEnvIfNoCase Referer startwp\\.org spambot=yes\nSetEnvIfNoCase Referer stat\\.lviv\\.ua spambot=yes\nSetEnvIfNoCase Referer statashop\\.xyz spambot=yes\nSetEnvIfNoCase Referer static\\.seders\\.website spambot=yes\nSetEnvIfNoCase Referer statustroll\\.com spambot=yes\nSetEnvIfNoCase Referer stauga\\.altervista\\.org spambot=yes\nSetEnvIfNoCase Referer stavimdveri\\.ru spambot=yes\nSetEnvIfNoCase Referer steame\\.ru spambot=yes\nSetEnvIfNoCase Referer steelmaster\\.lv spambot=yes\nSetEnvIfNoCase Referer stiralkovich\\.ru spambot=yes\nSetEnvIfNoCase Referer stocktwists\\.com spambot=yes\nSetEnvIfNoCase Referer stoki\\.ru spambot=yes\nSetEnvIfNoCase Referer stoletie\\.ru spambot=yes\nSetEnvIfNoCase Referer stoliar\\.org spambot=yes\nSetEnvIfNoCase Referer stomatologi\\.moscow spambot=yes\nSetEnvIfNoCase Referer stop\\-nark\\.ru spambot=yes\nSetEnvIfNoCase Referer stop\\-zavisimost\\.com spambot=yes\nSetEnvIfNoCase Referer store\\-rx\\.com spambot=yes\nSetEnvIfNoCase Referer strady\\.org\\.ua spambot=yes\nSetEnvIfNoCase Referer strana\\-krasoty\\.ru spambot=yes\nSetEnvIfNoCase Referer strana\\-solnca\\.ru spambot=yes\nSetEnvIfNoCase Referer stream\\-tds\\.com spambot=yes\nSetEnvIfNoCase Referer streetfire\\.net spambot=yes\nSetEnvIfNoCase Referer streetfooduncovered\\.com spambot=yes\nSetEnvIfNoCase Referer streha\\-metalko\\.si spambot=yes\nSetEnvIfNoCase Referer strigkaomsk\\.ru spambot=yes\nSetEnvIfNoCase Referer stroi\\-24\\.ru spambot=yes\nSetEnvIfNoCase Referer stroicol\\.net spambot=yes\nSetEnvIfNoCase Referer stroimajor\\.ru spambot=yes\nSetEnvIfNoCase Referer stroiminsk\\.com spambot=yes\nSetEnvIfNoCase Referer stroiminsk\\.org spambot=yes\nSetEnvIfNoCase Referer stromerrealty\\.com spambot=yes\nSetEnvIfNoCase Referer strongholdsb\\.ru spambot=yes\nSetEnvIfNoCase Referer strongtools\\.ga spambot=yes\nSetEnvIfNoCase Referer stroy\\-matrix\\.ru spambot=yes\nSetEnvIfNoCase Referer stroyalp\\.ru spambot=yes\nSetEnvIfNoCase Referer stroydetali\\.ru spambot=yes\nSetEnvIfNoCase Referer stroyka\\-gid\\.ru spambot=yes\nSetEnvIfNoCase Referer stroyka47\\.ru spambot=yes\nSetEnvIfNoCase Referer stroymonolit\\.su spambot=yes\nSetEnvIfNoCase Referer studentguide\\.ru spambot=yes\nSetEnvIfNoCase Referer studiofaca\\.com spambot=yes\nSetEnvIfNoCase Referer stuff\\-about\\-money\\.com spambot=yes\nSetEnvIfNoCase Referer stuffhydra\\.com spambot=yes\nSetEnvIfNoCase Referer stylecaster\\.top spambot=yes\nSetEnvIfNoCase Referer styro\\.ru spambot=yes\nSetEnvIfNoCase Referer su1ufa\\.ru spambot=yes\nSetEnvIfNoCase Referer success\\-seo\\.com spambot=yes\nSetEnvIfNoCase Referer suckoutlet\\.xyz spambot=yes\nSetEnvIfNoCase Referer sudachitravel\\.com spambot=yes\nSetEnvIfNoCase Referer sugarkun\\.com spambot=yes\nSetEnvIfNoCase Referer sugvant\\.ru spambot=yes\nSetEnvIfNoCase Referer sundrugstore\\.com spambot=yes\nSetEnvIfNoCase Referer super\\-seo\\-guru\\.com spambot=yes\nSetEnvIfNoCase Referer superiends\\.org spambot=yes\nSetEnvIfNoCase Referer supermama\\.top spambot=yes\nSetEnvIfNoCase Referer supermesta\\.ru spambot=yes\nSetEnvIfNoCase Referer supermodni\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer supernew\\.org spambot=yes\nSetEnvIfNoCase Referer superoboi\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer superpages\\.com spambot=yes\nSetEnvIfNoCase Referer superslots\\-casino\\.online spambot=yes\nSetEnvIfNoCase Referer superslots\\-casino\\.site spambot=yes\nSetEnvIfNoCase Referer superslots\\-cazino\\.online spambot=yes\nSetEnvIfNoCase Referer superslots\\-cazino\\.site spambot=yes\nSetEnvIfNoCase Referer superslotz\\-casino\\.site spambot=yes\nSetEnvIfNoCase Referer superslotz\\-cazino\\.site spambot=yes\nSetEnvIfNoCase Referer supertraffic\\.xyz spambot=yes\nSetEnvIfNoCase Referer supervesti\\.ru spambot=yes\nSetEnvIfNoCase Referer surflinksmedical\\.com spambot=yes\nSetEnvIfNoCase Referer susanholtphotography\\.com spambot=yes\nSetEnvIfNoCase Referer suzanneboswell\\.top spambot=yes\nSetEnvIfNoCase Referer svadba\\-teplohod\\.ru spambot=yes\nSetEnvIfNoCase Referer svarbit\\.com spambot=yes\nSetEnvIfNoCase Referer svarog\\-jez\\.com spambot=yes\nSetEnvIfNoCase Referer svensk\\-poesi\\.com spambot=yes\nSetEnvIfNoCase Referer svet\\-depo\\.ru spambot=yes\nSetEnvIfNoCase Referer svetka\\.info spambot=yes\nSetEnvIfNoCase Referer svetlotorg\\.ru spambot=yes\nSetEnvIfNoCase Referer svetoch\\.moscow spambot=yes\nSetEnvIfNoCase Referer svetodiodoff\\.ru spambot=yes\nSetEnvIfNoCase Referer svoimi\\-rukamy\\.com spambot=yes\nSetEnvIfNoCase Referer svs\\-avto\\.com spambot=yes\nSetEnvIfNoCase Referer swagbucks\\.com spambot=yes\nSetEnvIfNoCase Referer swaplab\\.io spambot=yes\nSetEnvIfNoCase Referer sweet\\.tv spambot=yes\nSetEnvIfNoCase Referer sygraem\\.com spambot=yes\nSetEnvIfNoCase Referer szansadlarolnikow\\.com\\.pl spambot=yes\nSetEnvIfNoCase Referer t\\-machinery\\.ru spambot=yes\nSetEnvIfNoCase Referer t\\-rec\\.su spambot=yes\nSetEnvIfNoCase Referer t3chtonic\\.com spambot=yes\nSetEnvIfNoCase Referer taartstore\\.xyz spambot=yes\nSetEnvIfNoCase Referer tagmeanvice\\.live spambot=yes\nSetEnvIfNoCase Referer taihouse\\.ru spambot=yes\nSetEnvIfNoCase Referer tam\\-gde\\-more\\.ru spambot=yes\nSetEnvIfNoCase Referer tamada69\\.com spambot=yes\nSetEnvIfNoCase Referer tammyblog\\.online spambot=yes\nSetEnvIfNoCase Referer targetpay\\.nl spambot=yes\nSetEnvIfNoCase Referer tasteidea\\.com spambot=yes\nSetEnvIfNoCase Referer tastyfoodideas\\.com spambot=yes\nSetEnvIfNoCase Referer tattoo\\-stickers\\.ru spambot=yes\nSetEnvIfNoCase Referer tattoo33\\.ru spambot=yes\nSetEnvIfNoCase Referer tattooha\\.com spambot=yes\nSetEnvIfNoCase Referer taximytishi\\.ru spambot=yes\nSetEnvIfNoCase Referer tccp\\.xyz spambot=yes\nSetEnvIfNoCase Referer tcenavoprosa\\.ru spambot=yes\nSetEnvIfNoCase Referer tcsinksale\\.xyz spambot=yes\nSetEnvIfNoCase Referer tcyh\\.net spambot=yes\nSetEnvIfNoCase Referer td\\-33\\.ru spambot=yes\nSetEnvIfNoCase Referer td\\-abs\\.ru spambot=yes\nSetEnvIfNoCase Referer td\\-l\\-market\\.ru spambot=yes\nSetEnvIfNoCase Referer td\\-perimetr\\.ru spambot=yes\nSetEnvIfNoCase Referer tdbatik\\.com spambot=yes\nSetEnvIfNoCase Referer tds\\-west\\.ru spambot=yes\nSetEnvIfNoCase Referer teastory\\.co spambot=yes\nSetEnvIfNoCase Referer techart24\\.com spambot=yes\nSetEnvIfNoCase Referer technika\\-remont\\.ru spambot=yes\nSetEnvIfNoCase Referer technopellet\\.gr spambot=yes\nSetEnvIfNoCase Referer tecspb\\.ru spambot=yes\nSetEnvIfNoCase Referer tedxrj\\.com spambot=yes\nSetEnvIfNoCase Referer tedy\\.su spambot=yes\nSetEnvIfNoCase Referer teedle\\.co spambot=yes\nSetEnvIfNoCase Referer tehngr\\.ru spambot=yes\nSetEnvIfNoCase Referer telegramdownload10\\.com spambot=yes\nSetEnvIfNoCase Referer telesvoboda\\.ru spambot=yes\nSetEnvIfNoCase Referer telfer\\.ru spambot=yes\nSetEnvIfNoCase Referer teman\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer tennis\\-bet\\.ru spambot=yes\nSetEnvIfNoCase Referer tentcomplekt\\.ru spambot=yes\nSetEnvIfNoCase Referer teplohod\\-gnezdo\\.ru spambot=yes\nSetEnvIfNoCase Referer teplokomplex\\.ru spambot=yes\nSetEnvIfNoCase Referer teplolidoma\\.ru spambot=yes\nSetEnvIfNoCase Referer terapist\\.xyz spambot=yes\nSetEnvIfNoCase Referer teresablog\\.top spambot=yes\nSetEnvIfNoCase Referer tesla\\-audit\\.ru spambot=yes\nSetEnvIfNoCase Referer teslathemes\\.com spambot=yes\nSetEnvIfNoCase Referer test\\-extra\\-full\\-stack\\-services\\.stream spambot=yes\nSetEnvIfNoCase Referer test\\-prime\\-smm\\-service\\.review spambot=yes\nSetEnvIfNoCase Referer test\\.xyz spambot=yes\nSetEnvIfNoCase Referer texbaza\\.by spambot=yes\nSetEnvIfNoCase Referer texnika\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer tgsubs\\.com spambot=yes\nSetEnvIfNoCase Referer tgtclick\\.com spambot=yes\nSetEnvIfNoCase Referer thaimassage\\-slon\\.ru spambot=yes\nSetEnvIfNoCase Referer thaoduoctoc\\.com spambot=yes\nSetEnvIfNoCase Referer the\\-torrent\\-tracker\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer the\\-usa\\-games\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer the\\-world\\.ru spambot=yes\nSetEnvIfNoCase Referer theautoprofit\\.ml spambot=yes\nSetEnvIfNoCase Referer thebluenoodle\\.com spambot=yes\nSetEnvIfNoCase Referer thecoral\\.com\\.br spambot=yes\nSetEnvIfNoCase Referer thedownloadfreeonlinegames\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer thedownloadfromwarez\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer thefds\\.net spambot=yes\nSetEnvIfNoCase Referer thegreensociety\\.net spambot=yes\nSetEnvIfNoCase Referer theguardlan\\.com spambot=yes\nSetEnvIfNoCase Referer theheroes\\.ru spambot=yes\nSetEnvIfNoCase Referer thejournal\\.ru spambot=yes\nSetEnvIfNoCase Referer thelotter\\.su spambot=yes\nSetEnvIfNoCase Referer thepokertimer\\.com spambot=yes\nSetEnvIfNoCase Referer therealshop\\.exaccess\\.com spambot=yes\nSetEnvIfNoCase Referer thesensehousehotel\\.com spambot=yes\nSetEnvIfNoCase Referer thesmartsearch\\.net spambot=yes\nSetEnvIfNoCase Referer thewomenlife\\.com spambot=yes\nSetEnvIfNoCase Referer thiegs\\.reco\\.ws spambot=yes\nSetEnvIfNoCase Referer thin\\.me\\.pn spambot=yes\nSetEnvIfNoCase Referer tiandeural\\.ru spambot=yes\nSetEnvIfNoCase Referer tiens2010\\.ru spambot=yes\nSetEnvIfNoCase Referer timeallnews\\.ru spambot=yes\nSetEnvIfNoCase Referer timer4web\\.com spambot=yes\nSetEnvIfNoCase Referer timetorelax\\.biz spambot=yes\nSetEnvIfNoCase Referer timmy\\.by spambot=yes\nSetEnvIfNoCase Referer tip8\\.co spambot=yes\nSetEnvIfNoCase Referer tizanidine4mg\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidine4mgprice\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidine4mgstreetprice\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidine4mgstreetvalue\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidine4mgtablets\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidine4mguses\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidine6mg\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineandcipro\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineandgabapentin\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineandhydrocodone\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinecapsules\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinecost\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinedosage\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinedosageforsleep\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinedruginteractions\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinedrugtest\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineduringpregnancy\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinefibromyalgia\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineformigraines\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineforopiatewithdrawal\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehcl2mg\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehcl2mgsideeffects\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehcl2mgtablet\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehcl4mgisitanarcotic\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehcl4mgtab\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehcl4mgtabinfo\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehcl4mgtablet\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehclsideeffects\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehydrochloride2mg\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineinfo\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineingredients\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineinteractions\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinemusclerelaxant\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinenarcotic\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineonline\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineoral\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineorflexeril\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinepain\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinepills\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinerecreationaluse\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinerestlesslegsyndrome\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineshowupondrugtest\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinesideeffects\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinesideeffectsweightloss\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinesleepaid\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinestreetprice\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinestreetvalue\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidineusedfor\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinevscyclobenzaprine\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinevssoma\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinevsvalium\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinewithdrawal\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinewithdrawalsymptoms\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tizanidinezanaflex\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer tkanorganizma\\.ru spambot=yes\nSetEnvIfNoCase Referer tksn\\.ru spambot=yes\nSetEnvIfNoCase Referer tocan\\.biz spambot=yes\nSetEnvIfNoCase Referer tocan\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer tokshow\\.online spambot=yes\nSetEnvIfNoCase Referer toloka\\.hurtom\\.com spambot=yes\nSetEnvIfNoCase Referer tomatis\\.gospartner\\.com spambot=yes\nSetEnvIfNoCase Referer tomck\\.com spambot=yes\nSetEnvIfNoCase Referer tommysautomotivecare\\.com spambot=yes\nSetEnvIfNoCase Referer top\\-gan\\.ru spambot=yes\nSetEnvIfNoCase Referer top\\-instagram\\.info spambot=yes\nSetEnvIfNoCase Referer top\\-kasyna\\.com spambot=yes\nSetEnvIfNoCase Referer top\\-l2\\.com spambot=yes\nSetEnvIfNoCase Referer top1\\-seo\\-service\\.com spambot=yes\nSetEnvIfNoCase Referer top10\\-online\\-games\\.com spambot=yes\nSetEnvIfNoCase Referer top10\\-way\\.com spambot=yes\nSetEnvIfNoCase Referer top250movies\\.ru spambot=yes\nSetEnvIfNoCase Referer top8\\.co spambot=yes\nSetEnvIfNoCase Referer topgurudeals\\.com spambot=yes\nSetEnvIfNoCase Referer topmebeltorg\\.ru spambot=yes\nSetEnvIfNoCase Referer topmira\\.com spambot=yes\nSetEnvIfNoCase Referer toposvita\\.com spambot=yes\nSetEnvIfNoCase Referer topquality\\.cf spambot=yes\nSetEnvIfNoCase Referer topseoservices\\.co spambot=yes\nSetEnvIfNoCase Referer topshef\\.ru spambot=yes\nSetEnvIfNoCase Referer topvidos\\.ru spambot=yes\nSetEnvIfNoCase Referer tor\\.vc spambot=yes\nSetEnvIfNoCase Referer torobrand\\.com spambot=yes\nSetEnvIfNoCase Referer torontoplumbinggroup\\.com spambot=yes\nSetEnvIfNoCase Referer torospa\\.ru spambot=yes\nSetEnvIfNoCase Referer torrentgamer\\.net spambot=yes\nSetEnvIfNoCase Referer torrentred\\.games spambot=yes\nSetEnvIfNoCase Referer torrents\\-tracker\\.com spambot=yes\nSetEnvIfNoCase Referer torrnada\\.ru spambot=yes\nSetEnvIfNoCase Referer torture\\.ml spambot=yes\nSetEnvIfNoCase Referer totppgoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer touchmods\\.fr spambot=yes\nSetEnvIfNoCase Referer tourburlington\\.com spambot=yes\nSetEnvIfNoCase Referer tovaroboom\\.vast\\.ru spambot=yes\nSetEnvIfNoCase Referer tpu\\.ru spambot=yes\nSetEnvIfNoCase Referer track\\-rankings\\.online spambot=yes\nSetEnvIfNoCase Referer tracker24\\-gps\\.ru spambot=yes\nSetEnvIfNoCase Referer trade365\\.org spambot=yes\nSetEnvIfNoCase Referer traderzplanet\\.co\\.in spambot=yes\nSetEnvIfNoCase Referer trafaret74\\.ru spambot=yes\nSetEnvIfNoCase Referer trafers\\.com spambot=yes\nSetEnvIfNoCase Referer traffic\\-cash\\.xyz spambot=yes\nSetEnvIfNoCase Referer traffic\\-paradise\\.org spambot=yes\nSetEnvIfNoCase Referer traffic2cash\\.net spambot=yes\nSetEnvIfNoCase Referer traffic2cash\\.org spambot=yes\nSetEnvIfNoCase Referer traffic2cash\\.xyz spambot=yes\nSetEnvIfNoCase Referer traffic2money\\.com spambot=yes\nSetEnvIfNoCase Referer trafficbot\\.life spambot=yes\nSetEnvIfNoCase Referer trafficbot4free\\.xyz spambot=yes\nSetEnvIfNoCase Referer trafficdrive\\.club spambot=yes\nSetEnvIfNoCase Referer trafficgenius\\.xyz spambot=yes\nSetEnvIfNoCase Referer trafficmonetize\\.org spambot=yes\nSetEnvIfNoCase Referer trafficmonetizer\\.org spambot=yes\nSetEnvIfNoCase Referer trafficstudio\\.club spambot=yes\nSetEnvIfNoCase Referer traffictomoney\\.com spambot=yes\nSetEnvIfNoCase Referer trahvid\\.com spambot=yes\nSetEnvIfNoCase Referer tramadolandtizanidine\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer transit\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer transsex\\-videochat\\.ru spambot=yes\nSetEnvIfNoCase Referer traphouselatino\\.net spambot=yes\nSetEnvIfNoCase Referer travel\\-semantics\\.com spambot=yes\nSetEnvIfNoCase Referer travgoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer traxdom\\.ru spambot=yes\nSetEnvIfNoCase Referer trex\\-casino\\.com spambot=yes\nSetEnvIfNoCase Referer trex\\.casino spambot=yes\nSetEnvIfNoCase Referer tri\\-slona\\.org spambot=yes\nSetEnvIfNoCase Referer trick\\-negotiation\\-cup\\-wonder\\.com spambot=yes\nSetEnvIfNoCase Referer tricolortv\\-online\\.com spambot=yes\nSetEnvIfNoCase Referer trieste\\.io spambot=yes\nSetEnvIfNoCase Referer trion\\.od\\.au spambot=yes\nSetEnvIfNoCase Referer trion\\.od\\.ua spambot=yes\nSetEnvIfNoCase Referer triumf\\-realty\\.ru spambot=yes\nSetEnvIfNoCase Referer trk\\-4\\.net spambot=yes\nSetEnvIfNoCase Referer trubywriting\\.com spambot=yes\nSetEnvIfNoCase Referer truck\\-spite\\-lawyer\\-activity\\.top spambot=yes\nSetEnvIfNoCase Referer truebeauty\\.cc spambot=yes\nSetEnvIfNoCase Referer tsatu\\.edu\\.ua spambot=yes\nSetEnvIfNoCase Referer tsc\\-koleso\\.ru spambot=yes\nSetEnvIfNoCase Referer tsstcorpcddvdwshbbdriverfb\\.aircus\\.com spambot=yes\nSetEnvIfNoCase Referer ttechno\\.net spambot=yes\nSetEnvIfNoCase Referer tuberkulezanet\\.ru spambot=yes\nSetEnvIfNoCase Referer tuberkuleznik\\.ru spambot=yes\nSetEnvIfNoCase Referer tudusale\\.xyz spambot=yes\nSetEnvIfNoCase Referer tula\\.mdverey\\.ru spambot=yes\nSetEnvIfNoCase Referer tuningdom\\.ru spambot=yes\nSetEnvIfNoCase Referer tupper\\-posuda\\.ru spambot=yes\nSetEnvIfNoCase Referer tupper\\-shop\\.ru spambot=yes\nSetEnvIfNoCase Referer turbo\\-suslik\\.org spambot=yes\nSetEnvIfNoCase Referer turist\\-strani\\.ru spambot=yes\nSetEnvIfNoCase Referer turkeyreport\\.tk spambot=yes\nSetEnvIfNoCase Referer turvgori\\.ru spambot=yes\nSetEnvIfNoCase Referer tvand\\.ru spambot=yes\nSetEnvIfNoCase Referer tvfru\\.org spambot=yes\nSetEnvIfNoCase Referer tvgoals\\.tv spambot=yes\nSetEnvIfNoCase Referer tvoystartup\\.ru spambot=yes\nSetEnvIfNoCase Referer twincitiescarservice\\.com spambot=yes\nSetEnvIfNoCase Referer twojebook\\.pl spambot=yes\nSetEnvIfNoCase Referer twsufa\\.ru spambot=yes\nSetEnvIfNoCase Referer twu\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer tytoona\\.com spambot=yes\nSetEnvIfNoCase Referer tyumen\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer u\\-cheats\\.ru spambot=yes\nSetEnvIfNoCase Referer u17795\\.netangels\\.ru spambot=yes\nSetEnvIfNoCase Referer ua\\-company\\.ru spambot=yes\nSetEnvIfNoCase Referer ua\\.tc spambot=yes\nSetEnvIfNoCase Referer uaecdsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer uasb\\.ru spambot=yes\nSetEnvIfNoCase Referer ublaze\\.ru spambot=yes\nSetEnvIfNoCase Referer ucanfly\\.ru spambot=yes\nSetEnvIfNoCase Referer ucban\\.xyz spambot=yes\nSetEnvIfNoCase Referer uchebavchehii\\.ru spambot=yes\nSetEnvIfNoCase Referer uchil\\.net spambot=yes\nSetEnvIfNoCase Referer ucoz\\.ru spambot=yes\nSetEnvIfNoCase Referer ucsfstore\\.xyz spambot=yes\nSetEnvIfNoCase Referer ucsol\\.ru spambot=yes\nSetEnvIfNoCase Referer uctraffic\\.com spambot=yes\nSetEnvIfNoCase Referer udav\\.net spambot=yes\nSetEnvIfNoCase Referer ufa\\.dienai\\.ru spambot=yes\nSetEnvIfNoCase Referer ufa\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer ufolabs\\.net spambot=yes\nSetEnvIfNoCase Referer uginekologa\\.com spambot=yes\nSetEnvIfNoCase Referer ukrainian\\-poetry\\.com spambot=yes\nSetEnvIfNoCase Referer ukrcargo\\.com spambot=yes\nSetEnvIfNoCase Referer ukrtvory\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer ukstmalls\\.xyz spambot=yes\nSetEnvIfNoCase Referer ul\\-potolki\\.ru spambot=yes\nSetEnvIfNoCase Referer ultimateuninstall\\.com spambot=yes\nSetEnvIfNoCase Referer um\\-razum\\.ru spambot=yes\nSetEnvIfNoCase Referer umg\\-stroy\\.ru spambot=yes\nSetEnvIfNoCase Referer umityangin\\.net spambot=yes\nSetEnvIfNoCase Referer undergroundcityphoto\\.com spambot=yes\nSetEnvIfNoCase Referer uni\\.me spambot=yes\nSetEnvIfNoCase Referer unibus\\.su spambot=yes\nSetEnvIfNoCase Referer unimodemhalfduplefw\\.pen\\.io spambot=yes\nSetEnvIfNoCase Referer uniqgen\\.net spambot=yes\nSetEnvIfNoCase Referer unitygame3d\\.com spambot=yes\nSetEnvIfNoCase Referer univerfiles\\.com spambot=yes\nSetEnvIfNoCase Referer unlimitdocs\\.net spambot=yes\nSetEnvIfNoCase Referer unmaroll\\.ya\\.ru spambot=yes\nSetEnvIfNoCase Referer unpredictable\\.ga spambot=yes\nSetEnvIfNoCase Referer upcronline\\.xyz spambot=yes\nSetEnvIfNoCase Referer uptime\\-alpha\\.net spambot=yes\nSetEnvIfNoCase Referer uptime\\-as\\.net spambot=yes\nSetEnvIfNoCase Referer uptime\\-beta\\.net spambot=yes\nSetEnvIfNoCase Referer uptime\\-delta\\.net spambot=yes\nSetEnvIfNoCase Referer uptime\\-eu\\.net spambot=yes\nSetEnvIfNoCase Referer uptime\\-gamma\\.net spambot=yes\nSetEnvIfNoCase Referer uptime\\-us\\.net spambot=yes\nSetEnvIfNoCase Referer uptime\\.com spambot=yes\nSetEnvIfNoCase Referer uptimebot\\.net spambot=yes\nSetEnvIfNoCase Referer uptimechecker\\.com spambot=yes\nSetEnvIfNoCase Referer ural\\-buldozer\\.ru spambot=yes\nSetEnvIfNoCase Referer urbanblog\\.shop spambot=yes\nSetEnvIfNoCase Referer urbanchr\\.online spambot=yes\nSetEnvIfNoCase Referer urblog\\.xyz spambot=yes\nSetEnvIfNoCase Referer urccvfmc\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer urlopener\\.blogspot\\.com\\.au spambot=yes\nSetEnvIfNoCase Referer urlopener\\.com spambot=yes\nSetEnvIfNoCase Referer urlumbrella\\.com spambot=yes\nSetEnvIfNoCase Referer uruto\\.ru spambot=yes\nSetEnvIfNoCase Referer us\\-america\\.ru spambot=yes\nSetEnvIfNoCase Referer usadacha\\.net spambot=yes\nSetEnvIfNoCase Referer userequip\\.com spambot=yes\nSetEnvIfNoCase Referer uslugi\\-tatarstan\\.ru spambot=yes\nSetEnvIfNoCase Referer ussearche\\.cf spambot=yes\nSetEnvIfNoCase Referer ustion\\.ru spambot=yes\nSetEnvIfNoCase Referer uterkysale\\.xyz spambot=yes\nSetEnvIfNoCase Referer utrolive\\.ru spambot=yes\nSetEnvIfNoCase Referer uusmsale\\.xyz spambot=yes\nSetEnvIfNoCase Referer uyut\\-dom\\.pro spambot=yes\nSetEnvIfNoCase Referer uyutmaster73\\.ru spambot=yes\nSetEnvIfNoCase Referer uzpaket\\.com spambot=yes\nSetEnvIfNoCase Referer uzungil\\.com spambot=yes\nSetEnvIfNoCase Referer v\\-casino\\.fun spambot=yes\nSetEnvIfNoCase Referer v\\-casino\\.host spambot=yes\nSetEnvIfNoCase Referer v\\-casino\\.ru spambot=yes\nSetEnvIfNoCase Referer v\\-casino\\.site spambot=yes\nSetEnvIfNoCase Referer v\\-casino\\.website spambot=yes\nSetEnvIfNoCase Referer v\\-casino\\.xyz spambot=yes\nSetEnvIfNoCase Referer v\\-cazino\\.online spambot=yes\nSetEnvIfNoCase Referer v\\-cazino\\.ru spambot=yes\nSetEnvIfNoCase Referer vabasa\\.inwtrade\\.com spambot=yes\nSetEnvIfNoCase Referer vaderenergy\\.ru spambot=yes\nSetEnvIfNoCase Referer vadimkravtcov\\.ru spambot=yes\nSetEnvIfNoCase Referer valid\\-cc\\.com spambot=yes\nSetEnvIfNoCase Referer validccseller\\.com spambot=yes\nSetEnvIfNoCase Referer validus\\.pro spambot=yes\nSetEnvIfNoCase Referer valkiria\\-tk\\.ru spambot=yes\nSetEnvIfNoCase Referer vanessablog\\.online spambot=yes\nSetEnvIfNoCase Referer vape\\-x\\.ru spambot=yes\nSetEnvIfNoCase Referer vapmedia\\.org spambot=yes\nSetEnvIfNoCase Referer vapsy\\.com spambot=yes\nSetEnvIfNoCase Referer vardenafil20\\.com spambot=yes\nSetEnvIfNoCase Referer varikozdok\\.ru spambot=yes\nSetEnvIfNoCase Referer vashsvet\\.com spambot=yes\nSetEnvIfNoCase Referer vavada\\-casino\\.host spambot=yes\nSetEnvIfNoCase Referer vavada\\-casino\\.top spambot=yes\nSetEnvIfNoCase Referer vavada\\-cazino\\.host spambot=yes\nSetEnvIfNoCase Referer vavada\\-cazino\\.site spambot=yes\nSetEnvIfNoCase Referer vavilone\\.com spambot=yes\nSetEnvIfNoCase Referer vbabule\\.net spambot=yes\nSetEnvIfNoCase Referer vbikse\\.com spambot=yes\nSetEnvIfNoCase Referer vc\\.ru spambot=yes\nSetEnvIfNoCase Referer vchulkah\\.net spambot=yes\nSetEnvIfNoCase Referer vduplo\\.ru spambot=yes\nSetEnvIfNoCase Referer veerotech\\.com spambot=yes\nSetEnvIfNoCase Referer vegascosmetics\\.ru spambot=yes\nSetEnvIfNoCase Referer vekzdorov\\.ru spambot=yes\nSetEnvIfNoCase Referer veles\\.shop spambot=yes\nSetEnvIfNoCase Referer velobikestock\\.com spambot=yes\nSetEnvIfNoCase Referer veloland\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer venta\\-prom\\.ru spambot=yes\nSetEnvIfNoCase Referer ventelnos\\.com spambot=yes\nSetEnvIfNoCase Referer ventopt\\.by spambot=yes\nSetEnvIfNoCase Referer veronicablog\\.top spambot=yes\nSetEnvIfNoCase Referer vescenter\\.ru spambot=yes\nSetEnvIfNoCase Referer veselokloun\\.ru spambot=yes\nSetEnvIfNoCase Referer vesnatehno\\.com spambot=yes\nSetEnvIfNoCase Referer vesnatehno\\.ru spambot=yes\nSetEnvIfNoCase Referer vesta\\-lada\\.net spambot=yes\nSetEnvIfNoCase Referer vetbvc\\.ru spambot=yes\nSetEnvIfNoCase Referer vezdevoz\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer vezuviy\\.su spambot=yes\nSetEnvIfNoCase Referer vgoloveboli\\.net spambot=yes\nSetEnvIfNoCase Referer via\\-gra\\.webstarts\\.com spambot=yes\nSetEnvIfNoCase Referer viagra\\-soft\\.ru spambot=yes\nSetEnvIfNoCase Referer viagra\\.pp\\.ua spambot=yes\nSetEnvIfNoCase Referer viagroid\\.ru spambot=yes\nSetEnvIfNoCase Referer viandpet\\.com spambot=yes\nSetEnvIfNoCase Referer viberdownload10\\.com spambot=yes\nSetEnvIfNoCase Referer video\\-\\-production\\.com spambot=yes\nSetEnvIfNoCase Referer video\\-chat\\.in spambot=yes\nSetEnvIfNoCase Referer video\\-girl\\-online\\.ru spambot=yes\nSetEnvIfNoCase Referer video\\-hollywood\\.ru spambot=yes\nSetEnvIfNoCase Referer video\\-woman\\.com spambot=yes\nSetEnvIfNoCase Referer videochat\\-dating\\.ru spambot=yes\nSetEnvIfNoCase Referer videochat\\.guru spambot=yes\nSetEnvIfNoCase Referer videochat\\.mx spambot=yes\nSetEnvIfNoCase Referer videochat\\.tv\\.br spambot=yes\nSetEnvIfNoCase Referer videochat\\.world spambot=yes\nSetEnvIfNoCase Referer videochaty\\.ru spambot=yes\nSetEnvIfNoCase Referer videofrost\\.com spambot=yes\nSetEnvIfNoCase Referer videofrost\\.net spambot=yes\nSetEnvIfNoCase Referer videokrik\\.net spambot=yes\nSetEnvIfNoCase Referer videos\\-for\\-your\\-business\\.com spambot=yes\nSetEnvIfNoCase Referer videosbox\\.ru spambot=yes\nSetEnvIfNoCase Referer videotop\\.biz spambot=yes\nSetEnvIfNoCase Referer videotuber\\.ru spambot=yes\nSetEnvIfNoCase Referer vidzwap\\.xyz spambot=yes\nSetEnvIfNoCase Referer viel\\.su spambot=yes\nSetEnvIfNoCase Referer vigrx\\-original\\.ru spambot=yes\nSetEnvIfNoCase Referer viktoria\\-center\\.ru spambot=yes\nSetEnvIfNoCase Referer vilingstore\\.net spambot=yes\nSetEnvIfNoCase Referer vinsit\\.ru spambot=yes\nSetEnvIfNoCase Referer vip\\-dom\\.in spambot=yes\nSetEnvIfNoCase Referer vip\\-parfumeria\\.ru spambot=yes\nSetEnvIfNoCase Referer vipsiterip\\.org spambot=yes\nSetEnvIfNoCase Referer virtchats\\.ru spambot=yes\nSetEnvIfNoCase Referer virtual\\-love\\-video\\.ru spambot=yes\nSetEnvIfNoCase Referer virtual\\-sex\\-chat\\.ru spambot=yes\nSetEnvIfNoCase Referer virtual\\-sex\\-time\\.ru spambot=yes\nSetEnvIfNoCase Referer virtual\\-sex\\-videochat\\.ru spambot=yes\nSetEnvIfNoCase Referer virtual\\-zaim\\.ru spambot=yes\nSetEnvIfNoCase Referer virtualbb\\.com spambot=yes\nSetEnvIfNoCase Referer virus\\-schutzmasken\\.de spambot=yes\nSetEnvIfNoCase Referer visa\\-china\\.ru spambot=yes\nSetEnvIfNoCase Referer visa\\-pasport\\.ru spambot=yes\nSetEnvIfNoCase Referer vita\\.com\\.hr spambot=yes\nSetEnvIfNoCase Referer vitanail\\.ru spambot=yes\nSetEnvIfNoCase Referer viven\\.host\\.sk spambot=yes\nSetEnvIfNoCase Referer vizag\\.kharkov\\.ua spambot=yes\nSetEnvIfNoCase Referer vk\\-mus\\.ru spambot=yes\nSetEnvIfNoCase Referer vk\\.com spambot=yes\nSetEnvIfNoCase Referer vkak\\.ru spambot=yes\nSetEnvIfNoCase Referer vkonche\\.com spambot=yes\nSetEnvIfNoCase Referer vkontaktemusic\\.ru spambot=yes\nSetEnvIfNoCase Referer vkontarkte\\.com spambot=yes\nSetEnvIfNoCase Referer vksaver\\-all\\.ru spambot=yes\nSetEnvIfNoCase Referer vksex\\.ru spambot=yes\nSetEnvIfNoCase Referer vladhistory\\.com spambot=yes\nSetEnvIfNoCase Referer vladtime\\.ru spambot=yes\nSetEnvIfNoCase Referer vltai\\.com spambot=yes\nSetEnvIfNoCase Referer vmnmvzsmn\\.over\\-blog\\.com spambot=yes\nSetEnvIfNoCase Referer vod\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer vodabur\\.by spambot=yes\nSetEnvIfNoCase Referer vodaodessa\\.com spambot=yes\nSetEnvIfNoCase Referer voditeltrezviy\\.ru spambot=yes\nSetEnvIfNoCase Referer vodkoved\\.ru spambot=yes\nSetEnvIfNoCase Referer volgograd\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer volond\\.com spambot=yes\nSetEnvIfNoCase Referer voloomoney\\.com spambot=yes\nSetEnvIfNoCase Referer volume\\-pills\\.biz spambot=yes\nSetEnvIfNoCase Referer voprosotvet24\\.ru spambot=yes\nSetEnvIfNoCase Referer voronezh\\.xrus\\.org spambot=yes\nSetEnvIfNoCase Referer vostgard\\.com spambot=yes\nSetEnvIfNoCase Referer vostoktrade\\.info spambot=yes\nSetEnvIfNoCase Referer vote\\-up\\.ru spambot=yes\nSetEnvIfNoCase Referer vozbujdenie\\.com spambot=yes\nSetEnvIfNoCase Referer vpdr\\.pl spambot=yes\nSetEnvIfNoCase Referer vpnhowto\\.info spambot=yes\nSetEnvIfNoCase Referer vrazbor59\\.ru spambot=yes\nSetEnvIfNoCase Referer vriel\\.batcave\\.net spambot=yes\nSetEnvIfNoCase Referer vrnelectro\\.ru spambot=yes\nSetEnvIfNoCase Referer vrnhnmall\\.xyz spambot=yes\nSetEnvIfNoCase Referer vrotike\\.ru spambot=yes\nSetEnvIfNoCase Referer vsdelke\\.ru spambot=yes\nSetEnvIfNoCase Referer vseigru\\.one spambot=yes\nSetEnvIfNoCase Referer vseigry\\.fun spambot=yes\nSetEnvIfNoCase Referer vseprobrak\\.ru spambot=yes\nSetEnvIfNoCase Referer vsesubwaysurfers\\.com spambot=yes\nSetEnvIfNoCase Referer vseuznaem\\.com spambot=yes\nSetEnvIfNoCase Referer vucms\\.com spambot=yes\nSetEnvIfNoCase Referer vulkan\\-nadengi\\.ru spambot=yes\nSetEnvIfNoCase Referer vulkan\\-oficial\\.com spambot=yes\nSetEnvIfNoCase Referer vulkanrussia1\\.ru spambot=yes\nSetEnvIfNoCase Referer vykup\\-avto\\-krasnodar\\.ru spambot=yes\nSetEnvIfNoCase Referer vykupavto\\-krasnodar\\.ru spambot=yes\nSetEnvIfNoCase Referer vzheludke\\.com spambot=yes\nSetEnvIfNoCase Referer vzlom\\-na\\-zakaz\\.com spambot=yes\nSetEnvIfNoCase Referer vzubah\\.com spambot=yes\nSetEnvIfNoCase Referer vzube\\.com spambot=yes\nSetEnvIfNoCase Referer vzubkah\\.com spambot=yes\nSetEnvIfNoCase Referer w2mobile\\-za\\.com spambot=yes\nSetEnvIfNoCase Referer w3javascript\\.com spambot=yes\nSetEnvIfNoCase Referer w7s\\.ru spambot=yes\nSetEnvIfNoCase Referer wakeupseoconsultant\\.com spambot=yes\nSetEnvIfNoCase Referer wallabag\\.malooma\\.bzh spambot=yes\nSetEnvIfNoCase Referer wallet\\-prlzn\\.space spambot=yes\nSetEnvIfNoCase Referer wallinside\\.top spambot=yes\nSetEnvIfNoCase Referer wallpaperdesk\\.info spambot=yes\nSetEnvIfNoCase Referer wallpapers\\-all\\.com spambot=yes\nSetEnvIfNoCase Referer wallpapers\\-best\\.com spambot=yes\nSetEnvIfNoCase Referer wallpapersdesk\\.info spambot=yes\nSetEnvIfNoCase Referer wallstore\\.xyz spambot=yes\nSetEnvIfNoCase Referer wandamary\\.online spambot=yes\nSetEnvIfNoCase Referer wapsite\\.me spambot=yes\nSetEnvIfNoCase Referer warmex\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer warningwar\\.ru spambot=yes\nSetEnvIfNoCase Referer wasabisale\\.xyz spambot=yes\nSetEnvIfNoCase Referer watch\\-movies\\.ru spambot=yes\nSetEnvIfNoCase Referer wave\\-games\\.ru spambot=yes\nSetEnvIfNoCase Referer wayfcoin\\.space spambot=yes\nSetEnvIfNoCase Referer wbjm\\.net spambot=yes\nSetEnvIfNoCase Referer wcb\\.su spambot=yes\nSetEnvIfNoCase Referer wdfdocando\\.com spambot=yes\nSetEnvIfNoCase Referer wdss\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer we\\-ping\\-for\\-youian\\.info spambot=yes\nSetEnvIfNoCase Referer we\\-ping\\-for\\-youic\\.info spambot=yes\nSetEnvIfNoCase Referer web\\-analytics\\.date spambot=yes\nSetEnvIfNoCase Referer web\\-betting\\.ru spambot=yes\nSetEnvIfNoCase Referer web\\-lazy\\-services\\.review spambot=yes\nSetEnvIfNoCase Referer web\\-list\\.xyz spambot=yes\nSetEnvIfNoCase Referer web\\-revenue\\.xyz spambot=yes\nSetEnvIfNoCase Referer web\\.cvut\\.cz spambot=yes\nSetEnvIfNoCase Referer webalex\\.pro spambot=yes\nSetEnvIfNoCase Referer webinstantservice\\.com spambot=yes\nSetEnvIfNoCase Referer webix\\.me spambot=yes\nSetEnvIfNoCase Referer webjam\\.com spambot=yes\nSetEnvIfNoCase Referer weblibrary\\.win spambot=yes\nSetEnvIfNoCase Referer webmaster\\-traffic\\.com spambot=yes\nSetEnvIfNoCase Referer webmonetizer\\.net spambot=yes\nSetEnvIfNoCase Referer webradiology\\.ru spambot=yes\nSetEnvIfNoCase Referer webs\\.com spambot=yes\nSetEnvIfNoCase Referer website\\-analytics\\.online spambot=yes\nSetEnvIfNoCase Referer website\\-analyzer\\.info spambot=yes\nSetEnvIfNoCase Referer website\\-errors\\-scanner\\.com spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-promotion\\.bid spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-promotion\\.review spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-promotion\\.stream spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-promotion\\.win spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-seo\\.bid spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-seo\\.stream spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-seo\\.win spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-smm\\.bid spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-smm\\.review spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-smm\\.stream spambot=yes\nSetEnvIfNoCase Referer website\\-services\\-smm\\.win spambot=yes\nSetEnvIfNoCase Referer website\\-services\\.review spambot=yes\nSetEnvIfNoCase Referer website\\-services\\.stream spambot=yes\nSetEnvIfNoCase Referer website\\-services\\.win spambot=yes\nSetEnvIfNoCase Referer website\\-speed\\-check\\.site spambot=yes\nSetEnvIfNoCase Referer website\\-speed\\-checker\\.site spambot=yes\nSetEnvIfNoCase Referer website\\-speed\\-up\\.site spambot=yes\nSetEnvIfNoCase Referer website\\-speed\\-up\\.top spambot=yes\nSetEnvIfNoCase Referer website\\-stealer\\-warning\\-alert\\.hdmoviecams\\.com spambot=yes\nSetEnvIfNoCase Referer websitebottraffic\\.club spambot=yes\nSetEnvIfNoCase Referer websitebottraffic\\.host spambot=yes\nSetEnvIfNoCase Referer websites\\-reviews\\.com spambot=yes\nSetEnvIfNoCase Referer websocial\\.me spambot=yes\nSetEnvIfNoCase Referer webtherapy\\.ru spambot=yes\nSetEnvIfNoCase Referer weburlopener\\.com spambot=yes\nSetEnvIfNoCase Referer wedding\\-salon\\.net spambot=yes\nSetEnvIfNoCase Referer weebly\\.com spambot=yes\nSetEnvIfNoCase Referer weekes\\.biz\\.tc spambot=yes\nSetEnvIfNoCase Referer weightatraining\\.com spambot=yes\nSetEnvIfNoCase Referer weightbelts\\.ru spambot=yes\nSetEnvIfNoCase Referer welck\\.octopis\\.com spambot=yes\nSetEnvIfNoCase Referer welcomeauto\\.ru spambot=yes\nSetEnvIfNoCase Referer weprik\\.ru spambot=yes\nSetEnvIfNoCase Referer wetgames\\.ru spambot=yes\nSetEnvIfNoCase Referer wfdesigngroup\\.com spambot=yes\nSetEnvIfNoCase Referer whatistizanidine2mg\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer whatistizanidinehclusedfor\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer whatsappdownload10\\.com spambot=yes\nSetEnvIfNoCase Referer whereiskentoday\\.com spambot=yes\nSetEnvIfNoCase Referer wicivow\\.007h\\.ml spambot=yes\nSetEnvIfNoCase Referer wikes\\.20fr\\.com spambot=yes\nSetEnvIfNoCase Referer williamrobsonproperty\\.com spambot=yes\nSetEnvIfNoCase Referer winx\\-play\\.ru spambot=yes\nSetEnvIfNoCase Referer witherrom55\\.eklablog\\.fr spambot=yes\nSetEnvIfNoCase Referer wjxmenye\\.com spambot=yes\nSetEnvIfNoCase Referer wmasterlead\\.com spambot=yes\nSetEnvIfNoCase Referer wnoz\\.de spambot=yes\nSetEnvIfNoCase Referer woman\\-h\\.ru spambot=yes\nSetEnvIfNoCase Referer woman\\-orgasm\\.ru spambot=yes\nSetEnvIfNoCase Referer woman\\-tampon\\.ru spambot=yes\nSetEnvIfNoCase Referer womens\\-journal\\.net spambot=yes\nSetEnvIfNoCase Referer womensplay\\.net spambot=yes\nSetEnvIfNoCase Referer womensterritory\\.ru spambot=yes\nSetEnvIfNoCase Referer wordpress\\-crew\\.net spambot=yes\nSetEnvIfNoCase Referer wordpresscore\\.com spambot=yes\nSetEnvIfNoCase Referer work\\-from\\-home\\-earn\\-money\\-online\\.com spambot=yes\nSetEnvIfNoCase Referer workius\\.ru spambot=yes\nSetEnvIfNoCase Referer workona\\.com spambot=yes\nSetEnvIfNoCase Referer works\\.if\\.ua spambot=yes\nSetEnvIfNoCase Referer world\\-mmo\\.com spambot=yes\nSetEnvIfNoCase Referer worldgamenews\\.com spambot=yes\nSetEnvIfNoCase Referer worldhistory\\.biz spambot=yes\nSetEnvIfNoCase Referer worldis\\.me spambot=yes\nSetEnvIfNoCase Referer worldlovers\\.ru spambot=yes\nSetEnvIfNoCase Referer worldmed\\.info spambot=yes\nSetEnvIfNoCase Referer worldofbtc\\.com spambot=yes\nSetEnvIfNoCase Referer wormix\\-cheats\\.ru spambot=yes\nSetEnvIfNoCase Referer wowas31\\.ucoz\\.ru spambot=yes\nSetEnvIfNoCase Referer woweb\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer wpnull\\.org spambot=yes\nSetEnvIfNoCase Referer wptraffic\\.xyz spambot=yes\nSetEnvIfNoCase Referer wrazilwispolecznie\\.pl spambot=yes\nSetEnvIfNoCase Referer wrc\\-info\\.ru spambot=yes\nSetEnvIfNoCase Referer writingservices17\\.blogspot\\.ru spambot=yes\nSetEnvIfNoCase Referer wrona\\.it spambot=yes\nSetEnvIfNoCase Referer wstroika\\.ru spambot=yes\nSetEnvIfNoCase Referer wufak\\.com spambot=yes\nSetEnvIfNoCase Referer wurr\\.voila\\.net spambot=yes\nSetEnvIfNoCase Referer ww1943\\.ru spambot=yes\nSetEnvIfNoCase Referer ww2awards\\.info spambot=yes\nSetEnvIfNoCase Referer www\\-lk\\-rt\\.ru spambot=yes\nSetEnvIfNoCase Referer www\\.gelendzhic\\.ru spambot=yes\nSetEnvIfNoCase Referer www1\\.free\\-share\\-buttons\\.top spambot=yes\nSetEnvIfNoCase Referer wzgyyq\\.com spambot=yes\nSetEnvIfNoCase Referer x\\-lime\\.com spambot=yes\nSetEnvIfNoCase Referer x\\-lime\\.net spambot=yes\nSetEnvIfNoCase Referer x\\-musics\\.com spambot=yes\nSetEnvIfNoCase Referer x\\-stars\\.ru spambot=yes\nSetEnvIfNoCase Referer x5market\\.ru spambot=yes\nSetEnvIfNoCase Referer xaker26\\.net spambot=yes\nSetEnvIfNoCase Referer xbaboon\\.com spambot=yes\nSetEnvIfNoCase Referer xboxster\\.ru spambot=yes\nSetEnvIfNoCase Referer xexe\\.club spambot=yes\nSetEnvIfNoCase Referer xfire\\.com spambot=yes\nSetEnvIfNoCase Referer xgftnlrt\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer xion\\.cash spambot=yes\nSetEnvIfNoCase Referer xjrul\\.com spambot=yes\nSetEnvIfNoCase Referer xkaz\\.org spambot=yes\nSetEnvIfNoCase Referer xlolitka\\.com spambot=yes\nSetEnvIfNoCase Referer xmnb\\.net spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-\\-\\-\\-53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-\\-\\-6cdbciescapvf0a8bibwx0a1bu\\.xn\\-\\-90ais spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-\\-6kcaacnblni5c5bicdpcmficy\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-\\-6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-\\-6kcamwewcd9bayelq\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-\\-7kcaaxchbbmgncr7chzy0k0hk\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-\\-7kceclhb4abre1b4a0ccl2fxch1a\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-\\-8kcatubaocd1bneepefojs1h2e\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-\\-clckdac3bsfgdft3aebjp5etek\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-7sbabb9a1b7bddgm6a1i\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-7sbabhjc3ccc5aggbzfmfi\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-7sbabhv4abd8aih6bb7k\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-7sbabm1ahc4b2aqff\\.su spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-7sbabn5abjehfwi8bj\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-7sbaphztdjeboffeiof6c\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-7sbbpe3afguye\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-7sbho2agebbhlivy\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-8sbaki4azawu5b\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-8sbarihbihxpxqgaf0g1e\\.xn\\-\\-80adxhks spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-8sbbjimdeyfsi\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-8sbdbjgb1ap7a9c4czbh\\.xn\\-\\-p1acf spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-8sbhefaln6acifdaon5c6f4axh\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-8sblgmbj1a1bk8l\\.xn\\-\\-\\-\\-161\\-4vemb6cjl7anbaea3afninj\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-8sbowe2akbcd4h\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-8sbpmgeilbd8achi0c\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-btbdvdh4aafrfciljm6k\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-ctbbcjd3dbsehgi\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-ctbfcdjl8baejhfb1oh\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-ctbigni3aj4h\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-dtbffp5aagjgfm\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-ftbeoaiyg1ak1cb7d\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-gtbdb0beu1bb8gj\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-itbbudqejbfpg3l\\.com spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-\\-\\-jtbjfcbdfr0afji4m\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-78\\-6kc6akkhn3a3k\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-78\\-6kcmzqfpcb1amd1q\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80aaafbn2bc2ahdfrfkln6l\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80aaajbdbddwj2alwjieei2afr3v\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80aaajkrncdlqdh6ane8t\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80aaaks3bbhabgbigamdr2h\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80aabcsc3bqirlt\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80aanaardaperhcem4a6i\\.com spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80ab4aa2g\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80adaggc5bdhlfamsfdij4p7b\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80adgcaax6acohn6r\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80aeahghtf8ac5i\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80aeb6argv\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80aebzmbfeebe\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80ahdheogk5l\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80ahvj9e\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80ajbshivpvn2i\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-80ajjbdhgmudixfjc8c5a9df8b\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-90acenikpebbdd4f6d\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-90acjmaltae3acm\\.xn\\-\\-p1acf spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-90adhhccf5aeewt7j\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-b1adccayqiirhu\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-b1ag5cfn\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-b1agm2d\\.net spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-c1acygb\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-d1abj0abs9d\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-d1aifoe0a9a\\.top spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-e1aaajzchnkg\\.ru\\.com spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-e1aahcgdjkg4aeje6j\\.kz spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-e1agf4c\\.xn\\-\\-80adxhks spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-e1aggki3c\\.xn\\-\\-80adxhks spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-h1ahbi\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-hxazdsfy\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-l1aengat\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-mhg\\.com spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-oogle\\-wmc\\.com spambot=yes\nSetEnvIfNoCase Referer xn\\-\\-q1a\\.xn\\-\\-b1aube0e\\.xn\\-\\-c1acygb\\.xn\\-\\-p1ai spambot=yes\nSetEnvIfNoCase Referer xnxx\\-n\\.com spambot=yes\nSetEnvIfNoCase Referer xolodremont\\.ru spambot=yes\nSetEnvIfNoCase Referer xpert\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer xportvusbdriver8i\\.snack\\.ws spambot=yes\nSetEnvIfNoCase Referer xpresscare\\.ru spambot=yes\nSetEnvIfNoCase Referer xrp\\-ripple\\.info spambot=yes\nSetEnvIfNoCase Referer xrus\\.org spambot=yes\nSetEnvIfNoCase Referer xsion\\.net spambot=yes\nSetEnvIfNoCase Referer xtraffic\\.plus spambot=yes\nSetEnvIfNoCase Referer xtrafficplus\\.com spambot=yes\nSetEnvIfNoCase Referer xtrafficplus\\.online spambot=yes\nSetEnvIfNoCase Referer xtrafficplus\\.shop spambot=yes\nSetEnvIfNoCase Referer xtrafficplus\\.xyz spambot=yes\nSetEnvIfNoCase Referer xtubeporno\\.net spambot=yes\nSetEnvIfNoCase Referer xvideosbay\\.com spambot=yes\nSetEnvIfNoCase Referer xxart\\.ru spambot=yes\nSetEnvIfNoCase Referer xxx\\-treker\\.ru spambot=yes\nSetEnvIfNoCase Referer xxxhamster\\.me spambot=yes\nSetEnvIfNoCase Referer xxxtube69\\.com spambot=yes\nSetEnvIfNoCase Referer xxxvideochat\\.ru spambot=yes\nSetEnvIfNoCase Referer xz618\\.com spambot=yes\nSetEnvIfNoCase Referer xzlive\\.com spambot=yes\nSetEnvIfNoCase Referer yaderenergy\\.ru spambot=yes\nSetEnvIfNoCase Referer yaminecraft\\.ru spambot=yes\nSetEnvIfNoCase Referer yeartwit\\.com spambot=yes\nSetEnvIfNoCase Referer yellowstonevisitortours\\.com spambot=yes\nSetEnvIfNoCase Referer yes\\-com\\.com spambot=yes\nSetEnvIfNoCase Referer yes\\-do\\-now\\.com spambot=yes\nSetEnvIfNoCase Referer yhirurga\\.ru spambot=yes\nSetEnvIfNoCase Referer ykecwqlixx\\.ru spambot=yes\nSetEnvIfNoCase Referer ynymnwbm\\.bloger\\.index\\.hr spambot=yes\nSetEnvIfNoCase Referer yodse\\.io spambot=yes\nSetEnvIfNoCase Referer yoga4\\.ru spambot=yes\nSetEnvIfNoCase Referer youandcredit\\.ru spambot=yes\nSetEnvIfNoCase Referer youbloodyripper\\.com spambot=yes\nSetEnvIfNoCase Referer youdesigner\\.kz spambot=yes\nSetEnvIfNoCase Referer yougame\\.biz spambot=yes\nSetEnvIfNoCase Referer yougetsignal\\.com spambot=yes\nSetEnvIfNoCase Referer youghbould\\.wordpress\\.com spambot=yes\nSetEnvIfNoCase Referer youhack\\.info spambot=yes\nSetEnvIfNoCase Referer youjizz\\.vc spambot=yes\nSetEnvIfNoCase Referer youporn\\-forum\\.ga spambot=yes\nSetEnvIfNoCase Referer youporn\\-forum\\.uni\\.me spambot=yes\nSetEnvIfNoCase Referer youporn\\-ru\\.com spambot=yes\nSetEnvIfNoCase Referer your\\-good\\-links\\.com spambot=yes\nSetEnvIfNoCase Referer your\\-tales\\.ru spambot=yes\nSetEnvIfNoCase Referer yourdesires\\.ru spambot=yes\nSetEnvIfNoCase Referer youresponsive\\.com spambot=yes\nSetEnvIfNoCase Referer yourothersite\\.com spambot=yes\nSetEnvIfNoCase Referer yoursearch\\.me spambot=yes\nSetEnvIfNoCase Referer yourserverisdown\\.com spambot=yes\nSetEnvIfNoCase Referer yoursite\\.com spambot=yes\nSetEnvIfNoCase Referer yourtraffic\\.club spambot=yes\nSetEnvIfNoCase Referer youtoner\\.it spambot=yes\nSetEnvIfNoCase Referer youtubedownload\\.org spambot=yes\nSetEnvIfNoCase Referer yqpc\\.net spambot=yes\nSetEnvIfNoCase Referer yuarra\\.pluto\\.ro spambot=yes\nSetEnvIfNoCase Referer yubikk\\.info spambot=yes\nSetEnvIfNoCase Referer yugk\\.net spambot=yes\nSetEnvIfNoCase Referer yugo\\-star\\.ru spambot=yes\nSetEnvIfNoCase Referer yunque\\.pluto\\.ro spambot=yes\nSetEnvIfNoCase Referer yur\\-p\\.ru spambot=yes\nSetEnvIfNoCase Referer yurcons\\.pro spambot=yes\nSetEnvIfNoCase Referer yurgorod\\.ru spambot=yes\nSetEnvIfNoCase Referer yuristproffi\\.ru spambot=yes\nSetEnvIfNoCase Referer zagadki\\.in\\.ua spambot=yes\nSetEnvIfNoCase Referer zahodi2hydra\\.net spambot=yes\nSetEnvIfNoCase Referer zahvat\\.ru spambot=yes\nSetEnvIfNoCase Referer zaidia\\.xhost\\.ro spambot=yes\nSetEnvIfNoCase Referer zaim\\-pod\\-zalog\\-krasnodar\\.ru spambot=yes\nSetEnvIfNoCase Referer zaimhelp\\.ru spambot=yes\nSetEnvIfNoCase Referer zajm\\-pod\\-zalog\\-nedvizhimosti\\.ru spambot=yes\nSetEnvIfNoCase Referer zakazfutbolki\\.com spambot=yes\nSetEnvIfNoCase Referer zakaznoy\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer zakazvzloma\\.com spambot=yes\nSetEnvIfNoCase Referer zakis\\-azota24\\.ru spambot=yes\nSetEnvIfNoCase Referer zakisazota\\-official\\.com spambot=yes\nSetEnvIfNoCase Referer zakon\\-ob\\-obrazovanii\\.ru spambot=yes\nSetEnvIfNoCase Referer zaloadi\\.ru spambot=yes\nSetEnvIfNoCase Referer zamolotkom\\.ru spambot=yes\nSetEnvIfNoCase Referer zapnado\\.ru spambot=yes\nSetEnvIfNoCase Referer zarabotat\\-na\\-sajte\\.ru spambot=yes\nSetEnvIfNoCase Referer zarabotat\\-v\\-internete\\.biz spambot=yes\nSetEnvIfNoCase Referer zarenica\\.net spambot=yes\nSetEnvIfNoCase Referer zastenchivosti\\.net spambot=yes\nSetEnvIfNoCase Referer zastroyka\\.org spambot=yes\nSetEnvIfNoCase Referer zavod\\-gm\\.ru spambot=yes\nSetEnvIfNoCase Referer zazagames\\.org spambot=yes\nSetEnvIfNoCase Referer zdesformula\\.ru spambot=yes\nSetEnvIfNoCase Referer zdesoboi\\.com spambot=yes\nSetEnvIfNoCase Referer zdm\\-auto\\.com spambot=yes\nSetEnvIfNoCase Referer zdm\\-auto\\.ru spambot=yes\nSetEnvIfNoCase Referer zdorovie\\-nogi\\.info spambot=yes\nSetEnvIfNoCase Referer zebradudka\\.com spambot=yes\nSetEnvIfNoCase Referer zelena\\-mriya\\.com\\.ua spambot=yes\nSetEnvIfNoCase Referer zeleznobeton\\.ru spambot=yes\nSetEnvIfNoCase Referer zerocash\\.msk\\.ru spambot=yes\nSetEnvIfNoCase Referer zexhgoods\\.xyz spambot=yes\nSetEnvIfNoCase Referer zhcsapp\\.net spambot=yes\nSetEnvIfNoCase Referer zhoobintravel\\.com spambot=yes\nSetEnvIfNoCase Referer zhorapankratov7\\.blogspot\\.com spambot=yes\nSetEnvIfNoCase Referer zigarettenonl\\.canalblog\\.com spambot=yes\nSetEnvIfNoCase Referer zigarettenonlinekaufen\\.tumblr\\.com spambot=yes\nSetEnvIfNoCase Referer zigarettenonlinekaufen1\\.bloog\\.pl spambot=yes\nSetEnvIfNoCase Referer zigarettenonlinekaufen1\\.blox\\.pl spambot=yes\nSetEnvIfNoCase Referer zigarettenonlinekaufen2\\.bloog\\.pl spambot=yes\nSetEnvIfNoCase Referer zigarettenonlinekaufen2\\.drupalgardens\\.com spambot=yes\nSetEnvIfNoCase Referer zigzog\\.ru spambot=yes\nSetEnvIfNoCase Referer zlatnajesen\\.com spambot=yes\nSetEnvIfNoCase Referer zmoda\\.hostreo\\.com spambot=yes\nSetEnvIfNoCase Referer znakomstva\\-moskva77\\.ru spambot=yes\nSetEnvIfNoCase Referer znakomstva\\-piter78\\.ru spambot=yes\nSetEnvIfNoCase Referer znakomstvaonlain\\.ru spambot=yes\nSetEnvIfNoCase Referer znaniyapolza\\.ru spambot=yes\nSetEnvIfNoCase Referer zojirushi\\-products\\.ru spambot=yes\nSetEnvIfNoCase Referer zolotoy\\-lis\\.ru spambot=yes\nSetEnvIfNoCase Referer zonefiles\\.bid spambot=yes\nSetEnvIfNoCase Referer zoominfo\\.com spambot=yes\nSetEnvIfNoCase Referer zot\\.moscow spambot=yes\nSetEnvIfNoCase Referer zt\\-m\\.ru spambot=yes\nSetEnvIfNoCase Referer zuchn\\.com spambot=yes\nSetEnvIfNoCase Referer zverokruh\\-shop\\.cz spambot=yes\nSetEnvIfNoCase Referer zvetki\\.ru spambot=yes\nSetEnvIfNoCase Referer zvooq\\.eu spambot=yes\nSetEnvIfNoCase Referer zvuker\\.net spambot=yes\nSetEnvIfNoCase Referer zyzzcentral\\.ru spambot=yes\n\n</IfModule>\n\n# Apache 2.2\n<IfModule !mod_authz_core.c>\n\t<IfModule mod_authz_host.c>\n\t\tOrder allow,deny\n\t\tAllow from all\n\t\tDeny from env=spambot\n\t</IfModule>\n</IfModule>\n# Apache 2.4\n<IfModule mod_authz_core.c>\n\t<RequireAll>\n\t\tRequire all granted\n\t\tRequire not env spambot\n\t</RequireAll>\n</IfModule>"
  },
  {
    "path": ".php-cs-fixer.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\n$finder = PhpCsFixer\\Finder::create()\n    ->in([\n        __DIR__ . '/src',\n        __DIR__ . '/tests',\n    ])\n    ->exclude('vendor');\n\nreturn (new PhpCsFixer\\Config())\n    ->setRules([\n        '@PSR12' => true,\n        'array_syntax' => ['syntax' => 'short'],\n        'binary_operator_spaces' => true,\n        'blank_line_after_opening_tag' => true,\n        'blank_line_before_statement' => [\n            'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'],\n        ],\n        'cast_spaces' => true,\n        'class_attributes_separation' => [\n            'elements' => [\n                'method' => 'one',\n                'property' => 'one',\n            ],\n        ],\n        'concat_space' => ['spacing' => 'one'],\n        'declare_equal_normalize' => true,\n        'function_typehint_space' => true,\n        'include' => true,\n        'lowercase_cast' => true,\n        'method_argument_space' => [\n            'on_multiline' => 'ensure_fully_multiline',\n            'keep_multiple_spaces_after_comma' => true,\n        ],\n        'native_function_casing' => true,\n        'native_function_type_declaration_casing' => true,\n        'new_with_braces' => true,\n        'no_blank_lines_after_class_opening' => true,\n        'no_blank_lines_after_phpdoc' => true,\n        'no_empty_statement' => true,\n        'no_extra_blank_lines' => true,\n        'no_leading_import_slash' => true,\n        'no_leading_namespace_whitespace' => true,\n        'no_trailing_comma_in_singleline' => true,\n        'no_unused_imports' => true,\n        'no_whitespace_in_blank_line' => true,\n        'object_operator_without_whitespace' => true,\n        'phpdoc_indent' => true,\n        'phpdoc_no_access' => true,\n        'phpdoc_no_package' => true,\n        'phpdoc_scalar' => true,\n        'phpdoc_single_line_var_spacing' => true,\n        'phpdoc_trim' => true,\n        'phpdoc_var_without_name' => true,\n\n        'single_quote' => true,\n        'standardize_not_equals' => true,\n        'ternary_operator_spaces' => true,\n        'trailing_comma_in_multiline' => true,\n        'trim_array_spaces' => true,\n        'unary_operator_spaces' => true,\n        'whitespace_after_comma_in_array' => true,\n    ])\n    ->setFinder($finder);\n"
  },
  {
    "path": "AGENTS.md",
    "content": "# Agent Guide: Referrer Spam Blocker\n\n## Project Overview\n\nThis is the **Referrer Spam Blocker** project - a PHP library that generates configuration files for various web servers (Apache, Nginx, IIS, uWSGI, Caddy, Varnish, HAProxy, Lighttpd) and Google Analytics segments to block referrer spam traffic. OpenLiteSpeed users should use the Apache .htaccess file as OpenLiteSpeed is Apache-compatible.\n\n### Key Details\n\n- **Language**: PHP 8.3+\n- **Namespace**: `StevieRay\\`\n- **Main Purpose**: Generate blacklist configuration files from a domain list to prevent referrer spam\n- **Output**: Configuration files for multiple web servers and Google Analytics exclusion lists\n\n## Development Environment: Docker Compose\n\nThis project uses **Docker Compose** for local development with a PHP 8.3 CLI container.\n\n### Docker Configuration\n\n- **PHP Version**: 8.3-cli\n- **Container Name**: `referrer-spam-blocker-php`\n- **Database**: Not used\n- **Composer**: Included in custom Dockerfile\n\n### Quick Start\n\n```bash\n# Build and start containers\ndocker compose build\ndocker compose up -d\n\n# Install dependencies\ndocker compose exec php composer install\n\n# Generate config files\ndocker compose exec php composer generate\n```\n\n### Common Commands\n\n```bash\n# Start containers\ndocker compose up -d\n\n# Stop containers\ndocker compose down\n\n# Install dependencies\ndocker compose exec php composer install\n\n# Update dependencies\ndocker compose exec php composer update\n\n# Generate config files\ndocker compose exec php composer generate\n\n# Run tests\ndocker compose exec php composer test\n\n# Run all quality checks (PHPStan, PHPCS, Psalm, Tests)\ndocker compose exec php composer quality\n\n# Access the container shell\ndocker compose exec php sh\n\n# Rebuild containers (after Dockerfile changes)\ndocker compose build\n```\n\n## Project Structure\n\n```\nreferrer-spam-blocker/\n├── src/\n│   ├── CLI/              # Command-line interface\n│   ├── Config/           # Config generators for different server types\n│   ├── Domain/           # Domain processing logic\n│   ├── Service/          # File writing services\n│   └── domains.txt       # Source domain list (9118+ domains)\n├── tests/\n│   ├── Unit/             # Unit tests\n│   └── Integration/      # Integration tests\n├── Dockerfile            # Custom PHP 8.3 + Composer image\n├── docker-compose.yml    # Docker Compose configuration\n├── composer.json         # PHP dependencies\n├── phpcs.xml            # PHP CodeSniffer rules (PSR-12)\n├── phpunit.xml          # PHPUnit configuration\n├── run.php              # CLI entry point\n└── Generated files:     # Output files (git-tracked)\n    ├── .htaccess\n    ├── referral-spam.conf\n    ├── referral-spam.vcl\n    ├── web.config\n    └── google-exclude-*.txt\n```\n\n## Key Components\n\n### Generator (`src/Generator.php`)\nMain class that orchestrates config file generation for all server types.\n\n### Config Generators (`src/Config/`)\nEach server type has its own generator class:\n- `ApacheConfigGenerator` → `.htaccess`\n- `NginxConfigGenerator` → `referral-spam.conf`\n- `VarnishConfigGenerator` → `referral-spam.vcl`\n- `IISConfigGenerator` → `web.config`\n- `CaddyConfigGenerator` / `CaddyV2ConfigGenerator` → Caddy configs\n- `UwsgiConfigGenerator` → `referral_spam.res`\n- `HAProxyConfigGenerator` → `referral-spam.haproxy`\n- `LighttpdConfigGenerator` → `referral-spam.lighttpd.conf`\n- `GoogleAnalyticsConfigGenerator` → `google-exclude-*.txt` (split files)\n\n**Note:** OpenLiteSpeed users should use the Apache `.htaccess` file as OpenLiteSpeed is Apache-compatible.\n\n### Domain Processor (`src/Domain/DomainProcessor.php`)\nHandles reading and processing the domain list from `src/domains.txt`.\n\n## Development Workflow\n\n1. **Start Docker**: `docker compose up -d`\n2. **Install dependencies**: `docker compose exec php composer install`\n3. **Make changes** to source code\n4. **Run tests**: `docker compose exec php composer test`\n5. **Check code quality**: `docker compose exec php composer quality`\n6. **Generate configs**: `docker compose exec php composer generate`\n7. **Commit changes** including generated config files\n\n## Testing\n\nThe project uses:\n- **PHPUnit 12.4** for unit tests\n- **PHPStan** (Level 8) for static analysis\n- **PHP CodeSniffer 4.0** (PSR-12 standard) for code style\n- **Psalm** for additional static analysis\n\nRun all quality checks via Composer script:\n```bash\ndocker compose exec php composer quality\n```\n\nThis runs in sequence: PHPStan → PHPCS → Psalm → Tests\n\n## Code Style\n\n- **PSR-12** coding standard (enforced by PHP CodeSniffer)\n- **PHP-CS-Fixer** available for additional code formatting\n- PHP 8.3+ features (typed properties, enums, etc.)\n- Strict types: `declare(strict_types=1);` in all files\n\nAvailable code style tools:\n```bash\n# Check code style (PHPCS - primary tool)\ndocker compose exec php composer phpcs\n\n# Auto-fix code style (PHPCS)\ndocker compose exec php composer phpcbf\n\n# Check with PHP-CS-Fixer (optional)\ndocker compose exec php composer php-cs-fixer\n\n# Auto-fix with PHP-CS-Fixer\ndocker compose exec php composer php-cs-fixer:fix\n```\n\n## Important Notes for Agents\n\n1. **Always use `docker compose` commands** - PHP/Composer are containerized\n2. **Use Composer scripts** - Prefer `composer generate`, `composer test`, `composer quality` over direct PHP/vendor commands\n3. **Generated files are tracked** - Config files in the root are committed to git\n4. **Domain list is large** - `src/domains.txt` has 9000+ domains\n5. **No database** - This is a pure PHP library, no DB needed\n6. **PHP 8.3+ only** - Uses modern PHP features\n7. **Shell is `sh`** - Container doesn't have bash, use `docker compose exec php sh`\n\n## Common Tasks\n\n### Adding a new config generator type\n1. Create new class in `src/Config/` extending `AbstractConfigGenerator`\n2. Implement required methods\n3. Register in `src/Generator.php`\n4. Add tests in `tests/Unit/Config/`\n\n### Updating the domain list\n1. Edit `src/domains.txt`\n2. Run `docker compose exec php composer generate` to regenerate all configs\n3. Commit both the domain list and generated configs\n\n### Running specific tests\n```bash\ndocker compose exec php vendor/bin/phpunit tests/Unit/GeneratorTest.php\n```\n\n### Running individual quality checks\n```bash\ndocker compose exec php composer phpstan  # Static analysis\ndocker compose exec php composer phpcs    # Code style check\ndocker compose exec php composer phpcbf   # Auto-fix code style\ndocker compose exec php composer psalm    # Additional static analysis\n```\n\n"
  },
  {
    "path": "Dockerfile",
    "content": "FROM php:8.3-cli\n\nRUN apt-get update && apt-get install -y \\\n    git \\\n    unzip \\\n  && rm -rf /var/lib/apt/lists/*\n\nCOPY --from=composer:2 /usr/bin/composer /usr/bin/composer\n\nWORKDIR /app\n\nCMD [\"php\", \"-a\"]"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2016 Stevie-Ray\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "README.md",
    "content": "<h1 align=\"center\">Referrer Spam Blocker :robot:</h1>\n\n<p align=\"center\">Apache, Nginx, IIS, uWSGI, Caddy, Varnish, HAProxy & Lighttpd blacklist + Google Analytics segments to prevent referrer spam traffic</p>\n\n<br />\n\n[![Latest Stable Version](https://img.shields.io/packagist/v/stevie-ray/referrer-spam-blocker)](https://packagist.org/packages/Stevie-Ray/referrer-spam-blocker)\n[![Build Status](https://travis-ci.org/Stevie-Ray/referrer-spam-blocker.svg)](https://travis-ci.org/Stevie-Ray/referrer-spam-blocker)\n[![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/github/stevie-ray/referrer-spam-blocker)](https://libraries.io/github/Stevie-Ray/referrer-spam-blocker)\n[![Code Quality](https://img.shields.io/scrutinizer/g/Stevie-Ray/referrer-spam-blocker)](https://scrutinizer-ci.com/g/Stevie-Ray/referrer-spam-blocker/?branch=master)\n[![Packagist](https://img.shields.io/packagist/dt/Stevie-Ray/referrer-spam-blocker)](https://packagist.org/packages/stevie-ray/referrer-spam-blocker/stats)\n[![License](https://img.shields.io/packagist/l/stevie-ray/referrer-spam-blocker)](https://packagist.org/packages/Stevie-Ray/referrer-spam-blocker)\n- - - -\n\n## Apache: .htaccess\n\n.htaccess is a configuration file for use on web servers running Apache. This file is usually found in the root “public_html” folder of your website. The .htaccess file uses two modules to prevent referral spam, mod_rewrite and mod_setenvif. Decide which method is most suitable with your Apache server configuration. This file is **Apache 2.4** ready, where mod_authz_host got deprecated.\n\n\n## Nginx: referral-spam.conf\n\n**IMPORTANT:** You must increase the map hash bucket size to support the large domain list. With `referral-spam.conf` in `/etc/nginx`, include it globally from within `/etc/nginx/nginx.conf`:\n\n```conf\nhttp {\n\tmap_hash_bucket_size 128;\n\tinclude referral-spam.conf;\n}\n```\n\nAdd the following to each `/etc/nginx/site-available/your-site.conf` that needs protection:\n\n```conf\nserver {\n\tif ($bad_referer) {\n\t\treturn 444;\n\t}\n}\n```\n\n**Performance Note:** This configuration uses a performance-optimized approach with hostname matching instead of thousands of regex patterns. Only one regex is evaluated per request to extract the domain from the Referer header, significantly improving NGINX performance compared to traditional regex-based blocking methods.\n\n## Varnish: .refferal-spam.vcl\n\nAdd `referral-spam.vcl` to **Varnish 4** default file: `default.vcl` by adding the following code right underneath your default backend definitions\n\n```conf\ninclude \"referral-spam.vcl\";\nsub vcl_recv { call block_referral_spam; }\n```\n\n\n## IIS (Internet Information Services): web.config\n\nThe web.config file is located in the root directory of your Windows Server web application.\n\n\n## Caddy (HTTP/2 Web Server with Automatic HTTPS): referral-spam.caddy and referral-spam.caddy2\n\nMove this file next to your Caddy config file, and include it by doing:\n\n    # For Caddy 1:\n     include ./referral-spam.caddy;\n    # For Caddy 2:\n     import ./referral-spam.caddy2\n\nThen start your caddy server. All the referrers will now be redirected to a 444 HTTP answer\n\n\n## uWSGI: referral_spam.res\n\nInclude the file `referral_spam.res` into your vassal .ini configuration file:\n\n```\nini = referral_spam.res:blacklist_spam\n```\n\n## HAProxy: referral-spam.haproxy\n\nUse it in your HAProxy config by adding all domains.txt items, in any frontend, listen or backend block:\n\n```\nacl spam_referer hdr_sub(referer) -i -f /etc/haproxy/referral-spam.haproxy\nhttp-request deny if spam_referer\n```\n\n## Lighttpd: referral-spam.lighttpd.conf\n\nInclude this file in your main `lighttpd.conf`:\n\n```conf\ninclude \"referral-spam.lighttpd.conf\"\n```\n\nMake sure `mod_rewrite` is enabled in your `server.modules`:\n\n```conf\nserver.modules = (\"mod_rewrite\", ...)\n```\n\nThe configuration blocks referrer spam by redirecting requests with spam referrers. For better performance with large domain lists, consider using `mod_magnet`.\n\n## OpenLiteSpeed: .htaccess\n\nOpenLiteSpeed is Apache-compatible and supports `.htaccess` files. Simply use the Apache `.htaccess` file (see Apache section above).\n\nMake sure `mod_rewrite` is enabled in your OpenLiteSpeed configuration:\n- Admin Panel > Server > Modules > mod_rewrite (enable)\n\n## Options for Google Analytics 'ghost' spam\n\nThe above methods don't stop the Google Analytics **ghost** referral spam (because they are hitting Analytics directly and don't touching your website). You should use filters in Analytics to prevent **ghost** referral spam and hide spam form the **past**. \nBecause Google Analytics segments are limited to *30.000* characters the exclude list is separated into multiple parts. \n\nNavigate to your Google Analytics Admin panel and add these Segments:\n\nFilter | Session | **Include**\n------------ | ------------- | -------------\nHostname | matches regex | ```your-website\\.com|www\\.your-website\\.com```\n\nFilter | Session | **Exclude**\n------------ | ------------- | -------------\nSource | matches regex |Copy all the domains from [google-exclude-1.txt](https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/google-exclude-1.txt) to this field\n\nDo the same for [google-exclude-2.txt](https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/google-exclude-2.txt). Please note there may be more files in the future. \n\nYou can also prevent **ghost** referral spam by:\n\n  * [Adding a filter](https://support.google.com/analytics/answer/1033162)\n  * [Enabeling bot and Spider Filtering](https://plus.google.com/+GoogleAnalytics/posts/2tJ79CkfnZk)\n\n## Command Line Interface\n\n```bash\n# Basic usage\nphp run.php\nphp run.php --types apache,nginx\nphp run.php --dry-run\nphp run.php --output /path/to/configs\n\n# Options: -h (help), -v (version), --dry-run, -o (output), -t (types)\n# Supported types: apache, nginx, varnish, iis, uwsgi, caddy, caddy2, haproxy, lighttpd, google\n```\n\n## Testing\n\nThe project includes comprehensive testing and code quality tools:\n\n```bash\n# Run tests\ncomposer test\ncomposer test-coverage\n\n# Code quality\ncomposer phpstan\ncomposer phpcs\ncomposer phpcbf\ncomposer quality\n```\n\nTests cover unit testing, configuration generation, domain processing, and file operations. Quality tools include PHPStan (Level 8), PHP CodeSniffer (PSR-12), and Psalm for static analysis.\n\n## Programmatic Usage\n\n```php\nuse StevieRay\\Generator;\n\n$generator = new Generator('/path/to/output');\n$generator->generateFiles();\n$generator->generateSpecificConfigs(['apache', 'nginx']);\n$stats = $generator->getStatistics();\n```\n\n## Intregrate in a Dockerfile\n\nYou can also integrate these configuration file in your Docker repo, so you will get always the most updated version when you build your image.\nFor `Apache, Nginx, Varnish 4` or `IIS` add the following line to your `Dockerfile`\n\n```conf\n# Apache: Download .htaccess to /usr/local/apache2/htdocs/\nADD https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/.htaccess /usr/local/apache2/htdocs/\n\n# Nginx: Download referral-spam.conf to /etc/nginx/\nADD https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/referral-spam.conf /etc/nginx/\n\n# Varnish 4: Download referral-spam.vcl to /etc/varnish/\nADD https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/referral-spam.vcl /etc/varnish/\n\n# IIS: Download web.config to /sitepath/ (change sitepath accordingly)\nADD https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/web.config /sitepath/\n\n# Caddy: Download referral-spam.caddy to /sitepath/ (next to your Caddy config file given through -conf)\nADD https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/referral-spam.caddy /sitepath/\n\n# uWSGI: Download referral_spam.res to /sitepath/ (change sitepath accordingly)\nADD https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/referral_spam.res /sitepath/\n\n# HAProxy: Download referral-spam.haproxy to /etc/haproxy/\nADD https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/referral-spam.haproxy /etc/haproxy/\n\n# Lighttpd: Download referral-spam.lighttpd.conf to /etc/lighttpd/\nADD https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/referral-spam.lighttpd.conf /etc/lighttpd/\n\n# OpenLiteSpeed: Use the Apache .htaccess file (OpenLiteSpeed is Apache-compatible)\nADD https://raw.githubusercontent.com/Stevie-Ray/referrer-spam-blocker/master/.htaccess /sitepath/\n```\n\n## Like it?\n\n- [Buy me a beer](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4XC7KX75K6636) 🍺\n"
  },
  {
    "path": "composer.json",
    "content": "{\n  \"name\": \"stevie-ray/referrer-spam-blocker\",\n  \"description\": \"Apache, Nginx, IIS, uWSGI, Varnish, HAProxy & Lighttpd blacklist plus Google Analytics segment to prevent referrer spam traffic\",\n  \"keywords\": [\n    \"spam\",\n    \"blacklist\",\n    \"blocker\",\n    \"referrer\",\n    \"analytics\",\n    \"apache\",\n    \"nginx\",\n    \"varnish\",\n    \"iis\",\n    \"uwsgi\",\n    \"haproxy\",\n    \"lighttpd\"\n  ],\n  \"license\": \"MIT\",\n  \"authors\": [\n    {\n      \"name\": \"Stevie-Ray Hartog\",\n      \"email\": \"mail@stevie-ray.nl\",\n      \"homepage\": \"https://stevie-ray.nl\"\n    }\n  ],\n  \"require\": {\n    \"php\": \">=8.3\",\n    \"algo26-matthias/idna-convert\": \"^4.2.1\"\n  },\n  \"require-dev\": {\n    \"phpunit/phpunit\": \"^12.5\",\n    \"phpstan/phpstan\": \"^2.1\",\n    \"squizlabs/php_codesniffer\": \"^4.0\",\n    \"php-coveralls/php-coveralls\": \"^2.9\",\n    \"vimeo/psalm\": \"^6.15\",\n    \"friendsofphp/php-cs-fixer\": \"^3.94\"\n  },\n  \"suggest\":  {\n    \"ext-mbstring\": \"Install ext/mbstring for using input / output other than UTF-8 or ISO-8859-1\",\n    \"ext-iconv\": \"Install ext/iconv for using input / output other than UTF-8 or ISO-8859-1\"\n  },\n  \"autoload\": {\n    \"psr-4\": {\n      \"StevieRay\\\\\": \"src/\"\n    }\n  },\n  \"autoload-dev\": {\n    \"psr-4\": {\n      \"StevieRay\\\\Tests\\\\\": \"tests/\"\n    }\n  },\n  \"scripts\": {\n    \"test\": \"phpunit\",\n    \"test-coverage\": \"phpunit --coverage-html coverage\",\n    \"phpstan\": \"phpstan analyse\",\n    \"phpcs\": \"phpcs src/ tests/\",\n    \"phpcbf\": \"phpcbf src/ tests/\",\n    \"psalm\": \"psalm\",\n    \"php-cs-fixer\": \"php-cs-fixer fix --dry-run --diff\",\n    \"php-cs-fixer:fix\": \"php-cs-fixer fix\",\n    \"quality\": [\n      \"@phpstan\",\n      \"@phpcs\",\n      \"@psalm\",\n      \"@test\"\n    ],\n    \"generate\": \"php run.php\"\n  },\n  \"config\": {\n    \"sort-packages\": true,\n    \"optimize-autoloader\": true\n  }\n}\n"
  },
  {
    "path": "docker-compose.yml",
    "content": "services:\n  php:\n    build:\n      context: .\n      dockerfile: Dockerfile\n    container_name: referrer-spam-blocker-php\n    working_dir: /app\n    volumes:\n      - .:/app\n    environment:\n      COMPOSER_ALLOW_SUPERUSER: \"1\"\n    tty: true\n    stdin_open: true"
  },
  {
    "path": "google-exclude-1.txt",
    "content": "0\\-0\\.fr|000free\\.us|007agent\\-i\\.fr|00author\\.com|00go\\.com|00it\\.com|01casino\\-x\\.ru|033nachtvandeliteratuur\\.nl|03e\\.info|03p\\.info|0n\\-line\\.tv|1\\-88\\.vip|1\\-99seo\\.com|1\\-best\\-seo\\.com|1\\-free\\-share\\-buttons\\.com|100\\-reasons\\-for\\-seo\\.com|100dollars\\-seo\\.com|100searchengines\\.com|101flag\\.ru|11235813\\.webzdarma\\.cz|12\\-reasons\\-for\\-seo\\.net|12masterov\\.com|12u\\.info|15\\-reasons\\-for\\-seo\\.com|16lv\\.com|1hwy\\.com|1kinobig\\.ru|1kreditzaim\\.ru|1pamm\\.ru|1st\\-urist\\.ru|1webmaster\\.ml|1wek\\.top|1winru\\.ru|1x\\-slot\\.site|1x\\-slots\\.site|1xbet\\-entry\\.ru|1xbetcc\\.com|1xbetonlines1\\.ru|1xbetportugal\\.com|1xbetts\\.ru|1xslot\\-casino\\.online|1xslot\\-casino\\.ru|1xslot\\-casino\\.site|1xslot\\.site|1xslots\\-africa\\.site|1xslots\\-brasil\\.site|1xslots\\-casino\\.site|1xslots\\.africa|1xslots\\.site|2\\-best\\-seo\\.com|2\\-easy\\.xyz|2\\-go\\-now\\.xyz|2015god\\.org|24chasa\\.bg|24h\\.doctor|24videos\\.tv|24x7\\-server\\-support\\.site|256bit\\.by|273\\-fz\\.ru|2ads\\.co\\.uk|2itech\\.ru|2kata\\.ru|2nt\\.ru|2your\\.site|3\\-best\\-seo\\.com|3\\-letter\\-domains\\.net|3dgame3d\\.com|3dracergames\\.com|3waynetworks\\.com|4\\-best\\-seo\\.com|40momporntube\\.com|45en\\.ru|45tahunkhongguan\\.com|4inn\\.ru|4ip\\.su|4istoshop\\.com|4webmasters\\.com|4webmasters\\.org|4xcasino\\.ru|5\\-best\\-seo\\.com|5\\-steps\\-to\\-start\\-business\\.com|5elementov\\.ru|5forex\\.ru|6\\-best\\-seo\\.com|69\\-13\\-59\\.ru|6hopping\\.com|7\\-best\\-seo\\.com|70casino\\.online|76brighton\\.co\\.uk|76brighton\\.com|7kop\\.ru|7makemoneyonline\\.com|7milliondollars\\.com|7ooo\\.ru|7zap\\.com|8\\-best\\-seo\\.com|84lv\\.com|8xv8\\.com|9\\-best\\-seo\\.com|99\\-reasons\\-for\\-seo\\.com|QIWI\\.xyz|a\\-elita\\.in\\.ua|a\\-hau\\.mk|a14download\\.com|abacoasale\\.xyz|abaiak\\.com|abbanreddy\\.com|abc\\.xyz|abcdefh\\.xyz|abcdeg\\.xyz|abclauncher\\.com|abiente\\.ru|abovetherivernc\\.com|abtasty\\.com|abuser\\.shop|academia\\-nsk\\.org|acads\\.net|acarreo\\.ru|account\\-my1\\.xyz|accs\\-store\\.ru|actata\\.co|actualremont\\.ru|acunetix\\-referrer\\.com|adanih\\.com|adcash\\.com|addblueoff\\.com\\.ua|adelachrist\\.top|adelly\\.bg|adf\\.ly|adpostmalta\\.com|adrenalinebot\\.net|adrenalinebot\\.ru|adspart\\.com|adtiger\\.tk|adult\\-video\\-chat\\.ru|adultfullhd\\.com|adventureparkcostarica\\.com|advertisefree\\.co\\.uk|adviceforum\\.info|advocatemsk\\.ru|advokateg\\.co|advokateg\\.com|advokateg\\.ru|advokateg\\.xyz|aerodizain\\.com|aerogo\\.com|aerotour\\.ru|affiliate\\-programs\\.biz|affordablewebsitesandmobileapps\\.com|afora\\.ru|afshan\\.shop|agreda\\.pluto\\.ro|agro\\-gid\\.com|agtl\\.com\\.ua|ahecmarket\\.xyz|ahhjf\\.com|ahrefs\\.com|ai\\-seo\\-services\\.com|aibolita\\.com|aidarmebel\\.kz|aimeesblog\\.xyz|aimiot\\.net|aitiman\\.ae|akama\\.com|akmussale\\.xyz|akuhni\\.by|akusherok\\.ru|akvamaster\\.dp\\.ua|alborzan\\.com|albuteroli\\.com|alcobutik24\\.com|alert\\-fdm\\.xyz|alert\\-fjg\\.xyz|alert\\-hgd\\.xyz|alert\\-jdh\\.xyz|alertomall\\.xyz|alessandraleone\\.com|alexsander\\.ch|alfa\\-medosmotr\\.ru|alfa9\\.com|alfabot\\.xyz|alfapro\\.ru|alguiblog\\.online|alibestsale\\.com|aliexpress\\.com|aliexsale\\.ru|alif\\-ba\\-ta\\.com|alinabaniecka\\.pl|alive\\-ua\\.com|aliviahome\\.online|alkanfarma\\.org|all\\-news\\.kz|all4bath\\.ru|all4invest\\.ru|allcredits\\.su|allcryptonews\\.com|alldownload\\.pw|allergick\\.com|allergija\\.com|allfan\\.ru|allforminecraft\\.ru|allknow\\.info|allkrim\\.com|allmarketsnewdayli\\.gdn|allnews\\.md|allnews24\\.in|allpdfmags\\.net|allproblog\\.com|allsilver925\\.co\\.il|alltheviews\\.com|allvacancy\\.ru|allwomen\\.info|allwrighter\\.ru|alma\\-mramor\\.com\\.ua|alot\\.com|alp\\-rk\\.ru|alphaforum\\.ru|alphaopt24\\.ru|alpharma\\.net|alpinaskate\\.com|altermix\\.ua|alveris\\.ru|am\\-se\\.com|amanda\\-porn\\.ga|amatocanizalez\\.net|amazon\\-seo\\-service\\.com|amoi\\.tn|amoremio\\.by|amos\\-kids\\.ru|amospalla\\.es|amp\\-project\\.pro|amt\\-k\\.ru|amtel\\-vredestein\\.com|amylynnandrews\\.xyz|anabolics\\.shop|anal\\-acrobats\\.hol\\.es|analytics\\-ads\\.xyz|analyze\\-best\\-copywriting\\-services\\.party|analyze\\-extra\\-analytic\\-service\\.stream|ananumous\\.ru|anapa\\-inns\\.ru|andrewancheta\\.com|android\\-style\\.com|android\\-systems\\.ru|android\\-vsem\\.org|android4fun\\.org|androids\\-store\\.com|animalphotos\\.xyz|animebox\\.com\\.ua|animenime\\.ru|annaeydlish\\.top|anrtmall\\.xyz|anti\\-crisis\\-seo\\.com|anticrawler\\.org|antiguabarbuda\\.ru|antonovich\\-design\\.com\\.ua|anydesk\\.site|aosheng\\-tech\\.com|aoul\\.top|apartmentbay\\.ru|apartmentratings\\.com|apilian\\.xyz|apishops\\.ru|apollon\\-market\\-url\\.org|applepharma\\.ru|apteka\\-doc\\.ru|apteka\\-pharm\\.ru|apteka\\.info|apxeo\\.info|arabic\\-poetry\\.com|aramaicmedia\\.org|arate\\.ru|arcadepages\\.com|arcarticle\\.online|architecturebest\\.com|arendadogovor\\.ru|arendakvartir\\.kz|arendas\\.net|arendovalka\\.xyz|argo\\-visa\\.ru|arkansale\\.xyz|arkartex\\.ru|arkkivoltti\\.net|arpe\\.top|arraty\\.altervista\\.org|artblog\\.top|artclipart\\.ru|artdeko\\.info|artefakct\\.com|artpaint\\-market\\.ru|artparquet\\.ru|artpress\\.top|artsmarket\\.xyz|arturs\\.moscow|aruplighting\\.com|asacopaco\\.tk|ascotgoods\\.xyz|asia\\-forum\\.ru|ask\\-yug\\.com|asmxsatadriverin\\.aircus\\.com|astimvnc\\.online|asupro\\.com|asynt\\.net|aszokshop\\.xyz|atlant\\-auto\\.info|atlasvkusov\\.ru|atleticpharm\\.org|atley\\.eu\\.pn|atmagroup\\.ru|atoblog\\.online|atyks\\.ru|aucoinhomes\\.com|audiobangout\\.com|ausergrubhof\\.info|australia\\-opening\\-times\\.com|auto\\-b2b\\-seo\\-service\\.com|auto\\-complex\\.by|auto\\-kia\\-fulldrive\\.ru|auto\\-moto\\-elektronika\\.cz|auto\\-news\\-digest\\.ru|auto\\-seo\\-service\\.com|auto\\-seo\\-service\\.org|auto\\-zapchasti\\.org|auto\\.rusvile\\.lt|auto4style\\.ru|autoblog\\.org\\.ua|autobrennero\\.it|autobudpostach\\.club|autofuct\\.ru|autoloans\\.com|autolombard\\-krasnodar\\.ru|automate\\-amazon\\-affiliation\\.com|automobile\\-spec\\.com|autonew\\.biz|autoseo\\-service\\.org|autoseo\\-traffic\\.com|autoseo\\-trial\\-for\\-1\\.com|autoseoservice\\.org|autoseotips\\.com|autoservic\\.by|autotop\\.com\\.ua|autovideobroadcast\\.com|autowebmarket\\.com\\.ua|avcoast\\.com|avek\\.ru|aviapanda\\.ru|aviaseller\\.su|aviav\\.ru\\.com|avitocars\\.ru|aviva\\-limoux\\.com|avkzarabotok\\.com|avkzarabotok\\.info|avon\\-severozapad\\.ru|avtoarenda\\.by|avtocredit\\-legko\\.ru|avtointeres\\.ru|avtorskoe\\-vino\\.ru|avtovolop\\.ru|avtovykup\\.kz|awency\\.com|aworlds\\.com|axcus\\.top|ayerbo\\.xhost\\.ro|ayongoods\\.xyz|azadnegar\\.com|azartclub\\.org|azartniy\\-bonus\\.com|azazu\\.ru|azbuka\\-mo\\.ru|azbukadiets\\.ru|azbukafree\\.com|azlex\\.uz|b\\-buyeasy\\.com|b2b\\-lounge\\.com|bablonow\\.ru|baciakte\\.online|backgroundpictures\\.net|backlinks\\-fast\\-top\\.com|bag77\\.ru|bahisgunceladresi\\.com|baixar\\-musicas\\-gratis\\.com|bala\\.getenjoyment\\.net|baladur\\.ru|balakhna\\.online|balayazh\\.com|balitouroffice\\.com|balkanfarma\\.org|balkanfarma\\.ru|balois\\.worldbreak\\.com|bambi\\.ck\\.ua|banan\\.tv|bankcrediti\\.ru|bankhummer\\.co|bankiem\\.pl|barbarahome\\.top|bard\\-real\\.com\\.ua|bashtime\\.ru|basisches\\-wasser\\.net|batietiket\\.com|batut\\-fun\\.ru|bausparen\\.bz\\.it|bavariagid\\.de|bavsac\\.com|bazaronline24\\.ru|bbtec\\.net|bdf\\-tracker\\.top|beachtoday\\.ru|beamfall\\.info|beauby\\.ru|beauty\\-clinic\\.ru|beauty\\-lesson\\.com|beclean\\-nn\\.ru|bedroomlighting\\.us|begalka\\.xyz|belinvestdom\\.by|belreferatov\\.net|berdasovivan\\.ru|beremenyashka\\.com|berglion\\.com|berkinan\\.xyz|berlininsl\\.com|berrymall\\.ru|best\\-deal\\-hdd\\.pro|best\\-mam\\.ru|best\\-offer\\-hdd\\-1\\.info|best\\-offer\\-hdd\\-1\\.space|best\\-offer\\-hdd\\-1\\.top|best\\-offer\\-hdd\\.pro|best\\-offer\\-hdd\\.xyz|best\\-ping\\-service\\-usa\\-1\\.info|best\\-ping\\-service\\-usa\\-1\\.space|best\\-ping\\-service\\-usa\\-1\\.top|best\\-ping\\-service\\-usa\\.blue|best\\-ping\\-service\\-usa\\.me|best\\-ping\\-service\\-usa\\.space|best\\-ping\\-service\\-usa\\.top|best\\-ping\\-service\\-usa\\.xyz|best\\-printmsk\\.ru|best\\-seo\\-offer\\.com|best\\-seo\\-service\\.tk|best\\-seo\\-software\\.xyz|best\\-seo\\-solution\\.com|bestbookclub\\.ru|bestchoice\\.cf|bestempresas\\.es|bestfortraders\\.com|besthatcheries\\.com|bestleofferhdd\\.info|bestmobilityscooterstoday\\.com|bestofferfyhdd\\.info|bestofferhddacy\\.info|bestofferhddbyt\\.info|bestofferhddeed\\.info|bestofferhddity\\.info|bestofferifyhdd\\.info|bestofferswalkmydogouteveryday\\.gq|bestorofferhdd\\.info|bestplacetobuyeriacta\\.jw\\.lt|bestvpnrating\\.com|bestwebsiteawards\\.com|bestwebsitesawards\\.com|bet\\-prognoz\\.com|bet\\-winner1\\.ru|bet2much\\.ru|betonka\\.pro|betslive\\.ru|betterhealthbeauty\\.com|bettorschool\\.ru|betune\\.onlinewebshop\\.net|betwinservice\\.com|beyan\\.host\\.sk|bez\\-zabora\\.ru|bezcmexa\\.ru|bezlimitko\\.xyz|bezprostatita\\.com|bezsporno\\.ru|beztuberkuleza\\.ru|bhf\\.vc|bibprsale\\.xyz|bif\\-ru\\.info|bigcities\\.org|biglistofwebsites\\.com|biketank\\.ga|billiard\\-classic\\.com\\.ua|billigerstrom\\.co|billyblog\\.online|bimatoprost\\-careprost\\.com|bimatoprost\\-careprost\\.com\\.ua|bin\\-brokers\\.com|binokna\\.ru|binomo\\.kz|bio\\-japan\\.net|bio\\-market\\.kz|bio\\.trade\\-jp\\.net|bioca\\.org|biplanecentre\\.ru|bird1\\.ru|birzha\\-truda\\.eu|bisign\\.info|bitcoin\\-ua\\.top|bitcoins\\-forum\\.club|bitcoins\\-forum\\.info|bitcoins\\-forum\\.online|bitcoins\\-forum\\.pro|bitcoins\\-live\\.ru|biteg\\.xyz|bitniex\\.com|biz\\-law\\.ru|biznesluxe\\.ru|biznesrealnost\\.ru|biznesschat\\.net|bizru\\.info|bki24\\.info|bkns\\.vn|black\\-friday\\.ga|black\\-tip\\.top|blackhatworth\\.com|blackle\\.com|blackplanet\\.com|blackwitchcraft\\.ru|blancablog\\.online|blavia\\.00author\\.com|bleacherreport\\.com|blockchaintop\\.nl|blockworld\\.ru|blog\\.f00kclan\\.de|blog\\.koorg\\.ru|blog\\.latuti\\.net|blog\\.remote\\-computer\\.de|blog\\.xsk\\.in|blog\\.yam\\.com|blog100\\.org|blog2019\\.top|blog2019\\.xyz|blog4u\\.top|blogarun\\.co|bloggen\\.be|bloggers\\.nl|blogig\\.org|blogking\\.top|bloglag\\.com|blognet\\.top|blogorganictraffic\\.shop|blogos\\.kz|blogping\\.xyz|blogs\\.rediff\\.com|blogseo\\.xyz|blogstar\\.fun|blogster\\.com|blogtotal\\.de|blogtraffic\\.shop|blogua\\.org|blue\\-square\\.biz|bluerobot\\.info|bmusshop\\.xyz|bo\\-vtb24\\.ru|board\\.f00d\\.de|bobba\\.dzaba\\.com|bodybuilding\\-shop\\.biz|boleznikogi\\.com|bolezniorganov\\.ru|boltalko\\.xyz|boltushkiclub\\.ru|bombla\\.org|bonkers\\.name|bonniesblog\\.online|bonus\\-betting\\.ru|bonus\\-spasibo\\-sberbank\\.ru|bonus\\-vtb\\.ru|bonux\\.nextview\\.ru|bookmaker\\-bet\\.com|bookmark4you\\.biz|bookmark4you\\.com|bookmark4you\\.com\\.biz|books\\-top\\.com|boole\\.onlinewebshop\\.net|boost\\-my\\-site\\.com|boost24\\.biz|boostmyppc\\.com|bosefux\\.esy\\.es|bosman\\.pluto\\.ro|bostonline\\.xyz|bot\\-traffic\\.icu|bot\\-traffic\\.xyz|botamycos\\.fr|bottraffic\\.live|bottraffic143\\.xyz|bottraffic329\\.xyz|bottraffic4free\\.club|bottraffic4free\\.host|bottraffic999\\.xyz|bouda\\.kvalitne\\.cz|bowigosale\\.xyz|bpro1\\.top|bradleylive\\.xyz|brains2\\.biz|brakehawk\\.com|brandnewtube\\.com|brandov\\.ru|brateg\\.xyz|brauni\\.com\\.ua|bravica\\.biz|bravica\\.com|bravica\\.me|bravica\\.net|bravica\\.news|bravica\\.online|bravica\\.pro|bravica\\.ru|bravica\\.su|break\\-the\\-chains\\.com|breget74\\.ru|brendbutik\\.ru|briankatrine\\.top|brickmaster\\.pro|brillianty\\.info|bristolhostel\\.com|bristolhotel\\.com|bristolhotel\\.com\\.ua|britneyblog\\.online|brk\\-rti\\.ru|brokergid\\.ru|brooklyn\\-ads\\.com|brooklynsays\\.com|brothers\\-smaller\\.ru|brus\\-vsem\\.ru|brus\\.city|brusilov\\.ru|bsell\\.ru|btcnix\\.com|btt\\-club\\.pro|budilneg\\.xyz|budmavtomatika\\.com\\.ua|budpost\\.com\\.ua|bufetout\\.ru|bugof\\.gq|buhproffi\\.ru|buigas\\.00it\\.com|buildnw\\.ru|buildwithwendy\\.com|buketeg\\.xyz|bukleteg\\.xyz|bulgaria\\-web\\-developers\\.com|buqayy0\\.livejournal\\.com|bur\\-rk\\.ru|burger\\-imperia\\.com|burn\\-fat\\.ga|business\\-online\\-sberbank\\.ru|buttons\\-for\\-website\\.com|buttons\\-for\\-your\\-website\\.com|buy\\-cheap\\-online\\.info|buy\\-cheap\\-pills\\-order\\-online\\.com|buy\\-forum\\.ru|buy\\-meds24\\.com|buyantiviralwp\\.com|buyessay3\\.blogspot\\.ru|buyessaynow\\.biz|buyessayonline19\\.blogspot\\.ru|buyfriend\\.ru|buyk\\.host\\.sk|buynorxx\\.com|buypharmacydrug\\.com|buypillsonline24h\\.com|buypillsorderonline\\.com|buypuppies\\.ca|buyscabiescream\\.com|buytizanidineonline\\.blogspot\\.com|buytizanidineonlinenoprescription\\.blogspot\\.com|buyviagraa\\.blogspot\\.com|bvps8\\.com|bycontext\\.com|byme\\.se|bytimedance\\.ru|c\\-english\\.ru|c2bit\\.hk|californianews\\.cf|call\\-of\\-duty\\.info|callejondelpozo\\.es|calvet\\.altervista\\.org|cancerfungus\\.com|candida\\-international\\.blogspot\\.com|candida\\-society\\.org\\.uk|cannazon\\-market\\.org|canoncdriverq3\\.pen\\.io|canyougethighofftizanidine\\.blogspot\\.com|canzoni\\.ru|carabela\\.com\\.do|carbon\\-linger\\-hierarchy\\-suntan\\.top|carder\\.me|carder\\.tv|carders\\.ug|cardiosport\\.com\\.ua|cardsdumps\\.com|cardsharp1\\.ru|cardul\\.ru|carezi\\.com|carfax\\.com\\.ua|carivka\\.com\\.ua|carloans\\.com|carscrim\\.com|carsdined\\.org|carsnumber\\.com|carson\\.getenjoyment\\.net|carsoncitypizza\\.com|cartechnic\\.ru|casablancamanor\\.co\\.za|cashforum\\.cc|casino\\-top3\\.fun|casino\\-top3\\.online|casino\\-top3\\.ru|casino\\-top3\\.site|casino\\-top3\\.space|casino\\-top3\\.website|casino\\-v\\.site|casino\\-vulkane\\.com|casino\\-x\\-now\\.ru|casino\\-x\\.host|casinosbewertung\\.de|casinox\\-jp\\.com|castingbank\\.ru|catalogs\\-parts\\.com|catherinemill\\.xyz|catterybengal\\.com|cattyhealth\\.com|cauxmall\\.xyz|cayado\\.snn\\.gr|cazino\\-v\\.online|cazino\\-v\\.ru|cbcseward\\.com|cbox\\.ws|ccfullzshop\\.com|celestepage\\.xyz|celldog\\.ru|cenokos\\.ru|cenoval\\.ru|centre\\-indigo\\.org\\.ua|centrumcoachingu\\.com|cercacamion\\.it|certifywebsite\\.win|cezartabac\\.ro|cfsrating\\.sonicwall\\.com|cgi2\\.nintendo\\.co\\.jp|chainii\\.ru|channel\\-badge\\-betray\\-volcanic\\.com|chastnoeporno\\.com|chat\\.ru|chatmall\\.xyz|chatrazvrat\\.ru|chatroulette\\.life|chcu\\.net|cheap\\-trusted\\-backlinks\\.com|cheapkeys\\.ovh|cheappills24h\\.com|chee\\-by\\.biz|chelyabinsk\\.dienai\\.ru|chelyabinsk\\.xrus\\.org|cherrypointplace\\.ca|cherubinimobili\\.it|chimiver\\.info|chinese\\-amezon\\.com|chip35\\.ru|chipmp3\\.ru|chizhik\\-2\\.ru|chomexun\\.com|choosecuisine\\.com|ci\\.ua|ciarustde\\.online|cigarpass\\.com|cilolamall\\.xyz|cinemaenergy\\-hd\\.ru|ciproandtizanidine\\.blogspot\\.com|citizenclsdriveri7\\.pen\\.io|cityadspix\\.com|citybur\\.ru|cityreys\\.ru|civilwartheater\\.com|clarithromycin500mg\\.com|clash\\-clans\\.ru|classicakuhni\\.ru|cleandom\\.in\\.ua|cleaningservices\\.kiev\\.ua|clicksor\\.com|climate\\.by|clmforexeu\\.com|clothing\\-deal\\.club|cloudsendchef\\.com|club\\-lukojl\\.ru|club\\-musics\\.ru|club\\-samodelkin\\.ru|cmd\\.kz|cmrrsale\\.xyz|cmseshop\\.xyz|cobaltpro\\.ru|cocyq\\.inwtrade\\.com|coderstate\\.com|codq\\.info|codysbbq\\.com|coeus\\-solutions\\.de|coffeemashiny\\.ru|coinswitch\\.cash|coldfilm\\.ru|coleso\\.md|collectinviolity\\.com|collegeessay19\\.blogspot\\.ru|columb\\.net\\.ua|cometorussia\\.net|comissionka\\.net|commentag\\.com|commerage\\.ru|comp\\-pomosch\\.ru|compliance\\-alex\\.top|compliance\\-alex\\.xyz|compliance\\-alexa\\.top|compliance\\-alexa\\.xyz|compliance\\-andrew\\.top|compliance\\-andrew\\.xyz|compliance\\-barak\\.top|compliance\\-barak\\.xyz|compliance\\-brian\\.top|compliance\\-brian\\.xyz|compliance\\-checker\\-7\\.info|compliance\\-don\\.top|compliance\\-don\\.xyz|compliance\\-donald\\.xyz|compliance\\-elena\\.top|compliance\\-elena\\.xyz|compliance\\-fred\\.top|compliance\\-fred\\.xyz|compliance\\-george\\.top|compliance\\-george\\.xyz|compliance\\-irvin\\.top|compliance\\-irvin\\.xyz|compliance\\-ivan\\.top|compliance\\-ivan\\.xyz|compliance\\-jack\\.top|compliance\\-jane\\.top|compliance\\-jess\\.top|compliance\\-jessica\\.top|compliance\\-john\\.top|compliance\\-josh\\.top|compliance\\-julia\\.top|compliance\\-julianna\\.top|compliance\\-margo\\.top|compliance\\-mark\\.top|compliance\\-mary\\.top|compliance\\-nelson\\.top|compliance\\-olga\\.top|compliance\\-viktor\\.top|compliance\\-walt\\.top|compliance\\-walter\\.top|compliance\\-willy\\.top|computer\\-remont\\.ru|comuneshop\\.xyz|conciergegroup\\.org|concretepol\\.com|connectikastudio\\.com|constanceonline\\.top|constantaservice\\.net|construmac\\.com\\.mx|contextualyield\\.com|cookie\\-law\\-enforcement\\-aa\\.xyz|cookie\\-law\\-enforcement\\-bb\\.xyz|cookie\\-law\\-enforcement\\-cc\\.xyz|cookie\\-law\\-enforcement\\-dd\\.xyz|cookie\\-law\\-enforcement\\-ee\\.xyz|cookie\\-law\\-enforcement\\-ff\\.xyz|cookie\\-law\\-enforcement\\-gg\\.xyz|cookie\\-law\\-enforcement\\-hh\\.xyz|cookie\\-law\\-enforcement\\-ii\\.xyz|cookie\\-law\\-enforcement\\-jj\\.xyz|cookie\\-law\\-enforcement\\-kk\\.xyz|cookie\\-law\\-enforcement\\-ll\\.xyz|cookie\\-law\\-enforcement\\-mm\\.xyz|cookie\\-law\\-enforcement\\-nn\\.xyz|cookie\\-law\\-enforcement\\-oo\\.xyz|cookie\\-law\\-enforcement\\-pp\\.xyz|cookie\\-law\\-enforcement\\-qq\\.xyz|cookie\\-law\\-enforcement\\-rr\\.xyz|cookie\\-law\\-enforcement\\-ss\\.xyz|cookie\\-law\\-enforcement\\-tt\\.xyz|cookie\\-law\\-enforcement\\-uu\\.xyz|cookie\\-law\\-enforcement\\-vv\\.xyz|cookie\\-law\\-enforcement\\-ww\\.xyz|cookie\\-law\\-enforcement\\-xx\\.xyz|cookie\\-law\\-enforcement\\-yy\\.xyz|cookie\\-law\\-enforcement\\-zz\\.xyz|cookielawblog\\.wordpress\\.com|cookingmeat\\.ru|cool\\-mining\\.com|cool\\-wedding\\.net|coop\\-gamers\\.ru|copblock\\.org|copyrightclaims\\.org|copyrightinstitute\\.org|coral\\-info\\.com|cosmediqueresults\\.com|countravel\\.net|covadhosting\\.biz|covblog\\.top|coverage\\-my\\.com|covetnica\\.com|covid\\-schutzmasken\\.de|cowblog\\.fr|cp24\\.com\\.ua|cpnbshop\\.xyz|cranly\\.net|crazy\\-mining\\.org|crd\\.clan\\.su|creams\\.makeforum\\.eu|credit\\-card\\-tinkoff\\.ru|credit\\-cards\\-online24\\.ru|credit\\.co\\.ua|creditmoney\\.com\\.ua|crest\\-poloski\\.ru|crest3d\\.ru|crirussian\\.ru|cruiseraf\\.net|crypto\\-bear\\.com|crypto\\-bears\\.com|crypto\\-mining\\.club|crypto\\-wallets\\.org|crypto1x1\\.com|crystalslot\\.com|cubook\\.supernew\\.org|curenaturalicancro\\.com|curenaturalicancro\\.nl|customsua\\.com\\.ua|cutalltheshit\\.com|cvety24\\.by|cvta\\.xyz|cxpromote\\.com|cyber\\-monday\\.ga|cyclobenzaprinevstizanidine\\.blogspot\\.com|cymbaltaandtizanidine\\.blogspot\\.com|cyprusbuyproperties\\.com|czcedu\\.com|dacha\\-svoimi\\-rukami\\.com|dailyblog\\.xyz|dailyrank\\.net|dailyseo\\.xyz|dailystorm\\.ru|dailystrength\\.org|dailytraffic\\.shop|dame\\-ns\\.kz|damedingel\\.ya\\.ru|damianis\\.ru|danashop\\.ru|danceuniverse\\.ru|danhale\\.xyz|dantk\\.kz|daptravel\\.com|darcysassoon\\.top|darkbooks\\.org|darknet\\-hydra\\-onion\\.biz|darknet\\.sb|darknetsitesguide\\.com|darleneblog\\.online|darodar\\.com|datsun\\-do\\.com|dav\\.kz|davilaonline\\.shop|dawlenie\\.com|dbmkfhqk\\.bloger\\.index\\.hr|dbutton\\.net|dcdcapital\\.com|ddlmega\\.net|ddpills\\.com|de\\.zapmeta\\.com|dear\\-diary\\.ru|deart\\-13\\.ru|deda\\-moroza\\-zakaz\\.ru|deirdre\\.top|dekorkeramik\\.ru|delayreferat\\.ru|delfin\\-aqua\\.com\\.ua|delo\\.fund|deluxewatch\\.su|demenageur\\.com|den\\-noch24\\.ru|dengi\\-v\\-kredit\\.in\\.ua|denisecarey\\.top|deniseconnie\\.top|deniven\\.1bb\\.ru|dent\\-home\\.ru|dentuled\\.net|depositfiles\\-porn\\.com|depositfiles\\-porn\\.ga|dermatovenerologiya\\.com|deryie\\.com|descargar\\-musica\\-gratis\\.net|descargar\\-musicas\\-gratis\\.com|design\\-lands\\.ru|designdevise\\.com|detailedvideos\\.com|detalizaciya\\-tut\\.biz|detective01\\.ru|detki\\-opt\\.ru|detoolzon\\.xyz|detskie\\-konstruktory\\.ru|detskie\\-zabavi\\.ru|deutsche\\-poesie\\.com|dev\\-seo\\.blog|devochki\\-video\\.ru|dezeypmall\\.xyz|dgdsoutlet\\.xyz|diarioaconcagua\\.com|diatelier\\.ru|dicru\\.info|diebesten\\.co|dienai\\.ru|dienmaytot\\.xyz|diesel\\-parts28\\.ru|digest\\-project\\.ru|digilander\\.libero\\.it|digital\\-video\\-processing\\.com|digitalfaq\\.com|dimkino\\.ru|dinkolove\\.ya\\.ru|diplom\\-nk\\.com|diplomas\\-ru\\.com|dipstar\\.org|directrev\\.com|discounttaxi\\.kz|discover\\-prior\\-full\\-stack\\-services\\.party|discover\\-prior\\-ppc\\-service\\.party|discover\\-top\\-seo\\-service\\.review|distonija\\.com|divan\\-dekor\\.com\\.ua|dividendo\\.ru|diy\\-handmade\\-ideas\\.com|djekxa\\.ru|djonwatch\\.ru|djstools\\.com|dktr\\.ru|dldsshop\\.xyz|dlya\\-android\\.org|dms\\-sw\\.ru|dna\\-sklad\\.ru|dnepr\\-avtospar\\.com\\.ua|dneprsvet\\.com\\.ua|dnmetall\\.ru|docs4all\\.com|docsarchive\\.net|docsportal\\.net|docstoc\\.com|doctmalls\\.xyz|doctornadezhda\\.ru|documentbase\\.net|documentserver\\.net|documentsite\\.net|dodge\\-forum\\.eu|doeco\\.ru|doggyhealthy\\.com|dogovorpodryada\\.ru|dogshowsonice\\.com|dogsrun\\.net|dojki\\-devki\\.ru|dojki\\-hd\\.com|doktoronline\\.no|dokumentalkino\\.net|dom\\-international\\.ru|domain\\-tracker\\.com|domashneeruporno\\.com|domashniy\\-hotel\\.ru|domashniy\\-recepti\\.ru|dombestofferhdd\\.info|domcran\\.net|domik\\-derevne\\.ru|dominateforex\\.ml|domination\\.ml|dominterior\\.org|dommdom\\.com|domovozik\\.ru|domoysshop\\.ru|dompechey\\.by|domsadiogorod\\.ru|donvito\\.unas\\.cz|doreenblog\\.online|doska\\-vsem\\.ru|dostavka\\-v\\-krym\\.com|dostavka\\-v\\-ukrainu\\.ru|dosug\\-lux\\.ru|dosugrostov\\.site|download\\-of\\-the\\-warez\\.blogspot\\.com|downloadkakaotalk\\.com|downloadmefiranaratb1972\\.xpg\\.com\\.br|doxyporno\\.com|doxysexy\\.com|doyouknowtheword\\-flummox\\.ml|dprkboards\\.com|draniki\\.org|dreamland\\-bg\\.com|dreams\\-works\\.net|drev\\.biz|driving\\.kiev\\.ua|drugs\\-no\\-rx\\.info|drugspowerstore\\.com|drugstoreforyou\\.com|drupa\\.com|druzhbany\\.ru|druzhininevgeniy63\\.blogspot\\.com|dspautomations\\.com|dstroy\\.su|duitbux\\.info|dumpsccshop\\.com|dvd\\-famille\\.com|dvk\\-stroi\\.ru|dvr\\.biz\\.ua|dzinerstudio\\.com|e\\-avon\\.ru|e\\-buyeasy\\.com|e\\-collantes\\.com|e\\-commerce\\-seo\\.com|e\\-commerce\\-seo1\\.com|e\\-kwiaciarz\\.pl|e\\-stroymart\\.kz|e2click\\.com|eandsgallery\\.com|eaptekaplus\\.ru|earn\\-from\\-articles\\.com|earnian\\-money\\.info|earnity\\-money\\.info|easycommerce\\.cf|easync\\.io|easytuningshop\\.ru|eavuinsr\\.online|ecblog\\.xyz|ecommerce\\-seo\\.com|ecommerce\\-seo\\.org|ecomp3\\.ru|econom\\.co|ecookna\\.com\\.ua|edakgfvwql\\.ru|edelstahlschornstein\\-123\\.de|editmedios\\.com|edmed\\-sonline\\.com|ednetstore\\.xyz|edshopping\\.net|eduardoluis\\.com|education\\-cz\\.ru|educhess\\.ru|edudocs\\.net|eduinfosite\\.com|eduserver\\.net|eecz\\.org|eets\\.net|ege\\-essay\\.ru|ege\\-krasnoyarsk\\.ru|egovaleo\\.it|egvar\\.net|ek\\-invest\\.ru|ekatalog\\.xyz|ekaterinburg\\.xrus\\.org|ekbspravka\\.ru|eko\\-gazon\\.ru|ekobata\\.ru|ekoproekt\\-kr\\.ru|ekspertmed\\.com|ekto\\.ee|el\\-nation\\.com|elainasblog\\.xyz|eldoradorent\\.az|election\\.interferencer\\.ru|electric\\-blue\\-industries\\.com|electricwheelchairsarea\\.com|electro\\-prom\\.com|elegante\\-vitrage\\.ru|elektrikovich\\.ru|elektrischezi\\.canalblog\\.com|elektrischeziga\\.livejournal\\.com|elektrischezigarette1\\.blog\\.pl|elektrischezigarette1\\.onsugar\\.com|elektrischezigarette2\\.devhub\\.com|elektrischezigarette2\\.onsugar\\.com|elektrischezigarettekaufen2\\.cowblog\\.fr|elektrischezigaretten1\\.blogse\\.nl|elektrischezigaretten2\\.beeplog\\.com|elektronischezi\\.livejournal\\.com|elektronischezigarette2\\.mex\\.tl|elektronischezigarettekaufen1\\.beeplog\\.com|elektronischezigarettekaufen1\\.myblog\\.de|elektronischezigarettekaufen2\\.tumblr\\.com|elektrozigarette1\\.dreamwidth\\.org|elektrozigarette2\\.webs\\.com|elektrozigarette2\\.wordpressy\\.pl|elektrozigarettekaufen1\\.devhub\\.com|elektrozigarettekaufen2\\.blogse\\.nl|elektrozigaretten1\\.postbit\\.com|elektrozigaretten1\\.tumblr\\.com|elektrozigaretten1\\.webs\\.com|elektrozigaretten2\\.yn\\.lt|elementspluss\\.ru|elenatkachenko\\.com\\.ua|elentur\\.com\\.ua|elidelcream\\.weebly\\.com|elitesportsadvisor\\.com|elizabethbruno\\.top|elkacentr\\.ru|ellemarket\\.com|elmifarhangi\\.com|eloconcream\\.blogspot\\.com|eloxal\\.ru|elvel\\.com\\.ua|embedle\\.com|emctestlab\\.ru|emerson\\-rus\\.ru|emicef\\.com|empire\\-market\\.org|empire\\-market\\.xyz|empiremarket\\-link\\.org|empiremarketlink24\\.com|empirestuff\\.org|empis\\.magix\\.net|encmbtia\\.online|energomash\\.net|energy\\-ua\\.com|energydiet\\-info\\.ru|energydiet24\\.ru|energysexy\\.com|enginebay\\.ru|englishdictionaryfree\\.com|englishtopic\\.ru|enter\\-unicredit\\.ru|entgetadsincome\\.info|envistore\\.xyz|eonpal\\.com|epcpolo\\.com|epicdiving\\.com|eraglass\\.com|erank\\.eu|eredijovon\\.com|ereko\\.ru|erias\\.xyz|eric\\-artem\\.com|ericshome\\.store|erinhome\\.xyz|ero\\-video\\-chat\\.org|erofus\\.online|eropho\\.com|eropho\\.net|erot\\.co|erotag\\.com|eroticheskij\\-video\\-chat\\.ru|erotikstories\\.ru|es\\-pfrf\\.ru|es5\\.com|escort\\-russian\\.com|escortplius\\.com|eshop\\.md|eskei83\\.com|esnm\\.ru|esoterikforum\\.at|essaytags\\.com|estdj\\.com|este\\-line\\.com\\.ua|etairikavideo\\.gr|etehnika\\.com\\.ua|etotupo\\.ru|ets\\-2\\-mod\\.ru|etsfshop\\.xyz|eu\\-cookie\\-law\\-enforcement\\-4\\.xyz|eu\\-cookie\\-law\\-enforcement\\-5\\.xyz|eu\\-cookie\\-law\\-enforcement\\-6\\.xyz|eu\\-cookie\\-law\\-enforcement\\-7\\.xyz|eu\\-cookie\\-law\\-enforcement1\\.xyz|eu\\-cookie\\-law\\-enforcement2\\.xyz|eu\\-cookie\\-law\\.blogspot\\.com|eu\\-cookie\\-law\\.info|eurocredit\\.xyz|euromasterclass\\.ru|euronis\\-free\\.com|europages\\.com\\.ru|europeanwatches\\.ru|eurosamodelki\\.ru|euroskat\\.ru|evaashop\\.ru|event\\-tracking\\.com|eventiyahall\\.ru|evreuxshop\\.xyz|exchangeit\\.gq|exchanges\\-bet\\.com|exclusive\\-profit\\.com|exdocsfiles\\.com|execedmall\\.xyz|executehosting\\.com|exotic\\-video\\-chat\\.ru|expdom\\.com|expediacustomerservicenumber\\.online|expert\\-find\\.ru|expertnaya\\-ocenka\\.ru|explore\\-prior\\-web\\-service\\.review|express\\-vyvoz\\.ru|expresstoplivo\\.ru|extener\\.com|extener\\.org|extrabot\\.com|extremez\\.net|eyes\\-on\\-you\\.ga|eyessurgery\\.ru|ez8motelseaworldsandiego\\.com|ezigarettekaufen\\.myblog\\.de|ezigarettekaufen1\\.hpage\\.com|ezigarettekaufen2\\.blox\\.pl|ezigarettekaufen2\\.mpbloggar\\.se|ezigarettekaufen2\\.yolasite\\.com|ezigarettenkaufen1\\.deviantart\\.com|ezigarettenkaufen1\\.pagina\\.gr|ezigarettenkaufen2\\.dreamwidth\\.org|ezigarettenshop1\\.yolasite\\.com|ezigarettenshop2\\.myblog\\.de|ezigarettenshop2\\.postbit\\.com|ezigaretteshop\\.webs\\.com|ezigaretteshop2\\.mywapblog\\.com|ezigaretteshop2\\.vefblog\\.net|ezofest\\.sk|ezrvrentals\\.com|f\\-loaded\\.de|f\\-online\\.de|f00kclan\\.de|f012\\.de|f07\\.de|f0815\\.de|f1nder\\.org|facebook\\-mobile\\.xyz|fainaidea\\.com|faithe\\.top|falco3d\\.com|falcoware\\.com|family1st\\.ca|familyholiday\\.ml|familyphysician\\.ru|fanoboi\\.com|fartunabest\\.ru|fashion\\-mk\\.net|fashiong\\.ru|fashionindeed\\.ml|fast\\-wordpress\\-start\\.com|fastgg\\.net|fatrizscae\\.online|favorcosmetics\\.com|favoritemoney\\.ru|favoritki\\-msk\\.ru|favornews\\.com|fazika\\.ru|fba\\-mexico\\.com|fbdownloader\\.com|fbfreegifts\\.com|fc\\-007\\.com|fealq\\.com|feargames\\.ru|feedback\\.sharemyfile\\.ru|feedouble\\.com|feedouble\\.net|feel\\-planet\\.com|feeriaclub\\.ru|feiacmr\\.shop|feminist\\.org\\.ua|femmesdenudees\\.com|fenoyl\\.batcave\\.net|ferieboligkbh\\.dk|fermersovet\\.ru|fetishinside\\.com|fialka\\.tomsk\\.ru|fidalsa\\.de|fierrohack\\.ru|figensahin\\.com|filesclub\\.net|filesdatabase\\.net|filesvine\\.com|film\\-one\\.ru|filmetricsasia\\.com|filmgo\\.ru|filmidivx\\.com|films2018\\.com|filter\\-ot\\-zheleza\\.ru|financial\\-simulation\\.com|finansov\\.info|findacheaplawyers\\.com|finder\\.cool|findercarphotos\\.com|fineblog\\.top|finstroy\\.net|finteks\\.ru|firma\\-legion\\.ru|firmgeo\\.xyz|firstblog\\.top|fit\\-discount\\.ru|fitness\\-video\\.net|fitodar\\.com\\.ua|fiuagts\\.online|fiuxy\\.com|fiverr\\.com|fix\\-website\\-errors\\.com|fizika\\.tv|flash4fun\\.com|flavors\\.me|flex4launch\\.ru|flexderek\\.com|floating\\-share\\-buttons\\.com|flooringinstallation\\-edmonton\\.com|flowersbazar\\.com|flowertherapy\\.ru|flowwwers\\.com|flprog\\.com|flyblog\\.xyz|flytourisme\\.org|fm\\-upgrade\\.ru|fmgrupe\\.it|foojo\\.net|for\\-marketersy\\.info|for\\-your\\.website|forensicpsychiatry\\.ru|forex\\-indextop20\\.ru|forex\\-procto\\.ru|forex\\.osobye\\.ru|forex21\\.ru|forexgb\\.ru|forexunion\\.net|forminecrafters\\.ru|forms\\-mtm\\.ru|forpostlock\\.ru|forsex\\.info|fortwosmartcar\\.pw|forum\\-engineering\\.ru|forum\\.poker4life\\.ru|forum\\.tvmir\\.org|forum20\\.smailik\\.org|forum69\\.info|forums\\.toucharcade\\.com|fotoxxxru\\.com|foxinsocks\\.ru|foxjuegos\\.com|foxtechfpv\\.com|foxweber\\.com|fpclub\\.ru|fr\\.netlog\\.com|francaise\\-poesie\\.com|frankofficial\\.ru|frauplus\\.ru|free\\-fb\\-traffic\\.com|free\\-fbook\\-traffic\\.com|free\\-floating\\-buttons\\.com|free\\-games\\-download\\.falcoware\\.com|free\\-share\\-buttons\\-aaa\\.xyz|free\\-share\\-buttons\\-bbb\\.xyz|free\\-share\\-buttons\\-ccc\\.xyz|free\\-share\\-buttons\\-ddd\\.xyz|free\\-share\\-buttons\\-eee\\.xyz|free\\-share\\-buttons\\-fff\\.xyz|free\\-share\\-buttons\\.blogspot\\.com|free\\-share\\-buttons\\.co|free\\-share\\-buttons\\.com|free\\-share\\-buttons\\.top|free\\-social\\-buttons\\-aaa\\.xyz|free\\-social\\-buttons\\-bbb\\.xyz|free\\-social\\-buttons\\-ccc\\.xyz|free\\-social\\-buttons\\-ddd\\.xyz|free\\-social\\-buttons\\-eee\\.xyz|free\\-social\\-buttons\\-fff\\.xyz|free\\-social\\-buttons\\-hhh\\.xyz|free\\-social\\-buttons\\-iii\\.xyz|free\\-social\\-buttons\\.com|free\\-social\\-buttons\\.org|free\\-social\\-buttons\\.xyz|free\\-social\\-buttons1\\.xyz|free\\-social\\-buttons2\\.xyz|free\\-social\\-buttons3\\.xyz|free\\-social\\-buttons4\\.xyz|free\\-social\\-buttons5\\.xyz|free\\-social\\-buttons6\\.xyz|free\\-social\\-buttons7\\.xyz|free\\-traffic\\.xyz|free\\-video\\-chat\\.ru|free\\-video\\-tool\\.com|free\\-website\\-traffic\\.com|freeasecret\\.com|freenode\\.info|freeseedsonline\\.com|freetangodownload\\.com|freewebs\\.com|freewhatsappload\\.com|freewlan\\.info|freshberry\\.com\\.ua|freshnails\\.com\\.ua|front\\.ru|front\\.to|fsalas\\.com|fsin\\-pokypka\\.ru|ftns\\.ru|fuck\\-paid\\-share\\-buttons\\.xyz|fuel\\-gas\\.com|fullzdumps\\.cc|fungirlsgames\\.net|funnypica\\.com|furniture\\-ukraine\\.com|furniturehomewares\\.com|futbolkisales\\.ru|fvetgoods\\.xyz|fxtips\\.ru|g7m\\.pl|gabeshop\\.ru|gabysuniqueboutique\\.com|gael\\-s\\.ru|gagrasector\\.ru|galaxy\\-family\\.ru|galaxyflowers\\.ru|galblog\\.top|galeon\\.com|gamblingpp\\.ru|game\\-mmorpg\\.net|game\\-top\\.su|game300\\.ru|games\\.kolossale\\.ru|gammatraffic\\.com|gandikapper\\.ru|gaokr\\.xyz|gap\\-search\\.com|garantprava\\.com|gardene\\.ru|gasvleningrade\\.ru|gatwick\\.ru|gays\\-video\\-chat\\.ru|gaz\\-voshod\\.ru|gazel\\-72\\.ru|gazobeton\\-p\\.com\\.ua|gazoblok\\.net\\.ua|gbh\\-invest\\.ru|gcmx\\.net|gcup\\.ru|gdcentre\\.ru|gearcraft\\.us|gearsadspromo\\.club|gelezki\\.com|geliyballon\\.ru|gelstate\\.ru|generalporn\\.org|genericlowlatencyasiodriverhq\\.aircus\\.com|geniusfood\\.co\\.uk|gentamicineyedrops\\.blogspot\\.com|georgeblog\\.online|gepatit\\-info\\.top|germes\\-trans\\.com|get\\-best\\-copywriting\\-service\\.stream|get\\-clickir\\.info|get\\-clickize\\.info|get\\-free\\-social\\-traffic\\.com|get\\-free\\-traffic\\-now\\.com|get\\-more\\-freeen\\-visitors\\.info|get\\-more\\-freeer\\-visitors\\.info|get\\-more\\-freeish\\-visitors\\.info|get\\-more\\-freeize\\-visitors\\.info|get\\-more\\-freele\\-visitors\\.info|get\\-morebit\\-free\\-visitors\\.info|get\\-prime\\-seo\\-services\\.review|get\\-seo\\-help\\.com|get\\-your\\-social\\-buttons\\.info|getaadsincome\\.info|getadsincomeian\\.info|getadsincomely\\.info|getadsincomeof\\.info|getbottraffic4free\\.club|getbottraffic4free\\.host|getbottraffic4free\\.xyz|getbytadsincome\\.info|getfy\\-click\\.info|getism\\-more\\-free\\-visitors\\.info|getity\\-more\\-free\\-visitors\\.info|getityadsincome\\.info|getive\\-more\\-free\\-visitors\\.info|getlamborghini\\.ga|getoutofdebtfree\\.org|getprismatic\\.com|getpy\\-click\\.info|getpy\\-more\\-free\\-visitors\\.info|getrichquick\\.ml|getrichquickly\\.info|getyourprofit\\.net|gevciamst\\.online|gezlev\\.com\\.ua|gfaq\\.ru|ghazel\\.ru|ghernnqr\\.skyrock\\.com|gheus\\.altervista\\.org|ghostvisitor\\.com|gidonline\\.one|gidro\\-partner\\.ru|giftbig\\.ru|girlporn\\.ru|girls\\-ufa\\.ru|girlsatgames\\.ru|gk\\-atlant\\.info|gk\\-casino\\.fun|gk\\-casino\\.online|gk\\-casino\\.ru|gk\\-casino\\.site|gk\\-casino\\.space|gk\\-casino\\.website|gkvector\\.ru|glall\\.ru|glass\\-msk\\.ru"
  },
  {
    "path": "google-exclude-2.txt",
    "content": "glavprofit\\.ru|glcomputers\\.ru|glktfw\\.net|global\\-smm\\.ru|globalscam\\.ga|globatur\\.ru|globetrotting\\-culture\\.ru|glogow\\.pl|glopages\\.ru|go2album\\.com|gobongo\\.info|goforexvps\\.com|gogps\\.me|gojiberriess\\.apishops\\.ru|gok\\-kasten\\.net|goldandcard\\.ru|golden\\-catalog\\.pro|golden\\-praga\\.ru|goldenggames\\.com|goldvaultmetals\\.com|golmau\\.host\\.sk|golyedevushki\\.com|gonextmedia\\.com|good\\-potolok\\.ru|goodbyecellulite\\.ru|goodcoffeepremium\\.com|goodhumor24\\.com|goodnightjournal\\.com|goodprotein\\.ru|google\\-liar\\.ru|googlefeud\\.com|googlemare\\.com|googlsucks\\.com|gorabagrata\\.ru|gorgaz\\.info|goroda\\-vsego\\-mira\\.ru|gorodservis\\.ru|gosreg\\.amchs\\.ru|gototal\\.co\\.nz|gourcy\\.altervista\\.org|goyua\\.xyz|gq\\-catalog\\.gq|graceonline\\.shop|grafaman\\.ru|grand\\-chlen\\.ru|graphid\\.com|gratuitbaise\\.com|greatblog\\.top|greatgrace\\.ru|greentechsy\\.com|grizzlysgrill\\.com|groshi\\-kredut\\.com\\.ua|groupmoney\\.ru|growmyfunds\\.ca|growshop\\.es|growth\\-hackingan\\.info|growth\\-hackingead\\.info|growth\\-hackingeads\\.info|growth\\-hackingor\\.info|growth\\-hackingy\\.info|grupografico\\-pilar\\.com\\.ar|gruzchiki24\\.ru|gsbs\\.com\\.ua|gsmlab\\.pl|gsmtlf\\.ru|gta\\-club\\.ru|gta\\-top\\.ru|gttpsale\\.xyz|guardlink\\.com|guardlink\\.org|guge\\.io|guidetopetersburg\\.com|gungamesz\\.com|guruofcasino\\.com|gwhwpxbw\\.bloger\\.index\\.hr|gxcb\\.net|h2monline\\.com|hacktougroup\\.ru|hagirkblog\\.space|hahashka\\.ru|haikuware\\.com|halat\\.xyz|halefa\\.com|hamyshop\\.xyz|handicapvansarea\\.com|handicapvantoday\\.com|handsandlegs\\.ru|hanink\\.biz\\.ly|hankspring\\.xyz|happysong\\.ru|hard\\-porn\\.mobi|hardcore\\.anzwers\\.net|hardosale\\.xyz|harpro\\.net|havepussy\\.com|hawaiisurf\\.com|hazardky\\.net|hd1080film\\.ru|hd720kino\\.ru|hdfreeporno\\.net|hdhc\\.site|hdmoviecamera\\.net|hdmoviecams\\.com|hdmoviecams\\.net|hdsmartvideoreg\\.ru|headpharmacy\\.com|healbio\\.ru|healgastro\\.com|healing\\-dysplasia\\.ru|healmytrauma\\.info|healthhacks\\.ru|heeha\\.net|hem\\.passagen\\.se|hentai\\-manga\\.porn|heroero\\.com|hexometer\\.com|hifidesign\\.ru|hilaryblog\\.top|hill\\-accent\\-withdraw\\-sentiment\\.info|himandmall\\.xyz|hit\\-kino\\.ru|hitree\\.shop|hitsbox\\.info|hiwibyh\\.bugs3\\.com|hiwpro\\.xyz|hkdiiohi\\.skyrock\\.com|hkjrsale\\.xyz|hmmm\\.cz|hmywwogw\\.bloger\\.index\\.hr|hobild\\.net|hol\\.es|holiday\\-shop\\.ru|holidaypics\\.org|holistickenko\\.com|holodkovich\\.com|home\\.myplaycity\\.com|homeafrikalike\\.tk|homedo\\.fabpage\\.com|homeinns\\.com|homelygarden\\.com|homemade\\.gq|homemypicture\\.tk|honesty\\-homemade\\-grizzly\\-humanlike\\.com|hongfanji\\.com|hoporno\\.com|horoshieokna\\.com|host\\-protection\\.com|hostcritique\\.com|hoste\\.octopis\\.com|hostiman\\.ru|hosting\\-tracker\\.com|hostingclub\\.lk|hostsshop\\.ru|hotblognetwork\\.com|hotdl\\.in|hotspot\\.ipb\\.co\\.id|hottour\\.com|hotwatersdamps\\.com|houdom\\.net|housedesigning\\.ru|housediz\\.com|housekuba\\.org|housemilan\\.ru|houseofgaga\\.ru|houseofrose\\.com|houston\\-vikings\\.com|how\\-i\\-build\\-website\\.review|how\\-i\\-promote\\-website\\.review|how\\-to\\-buy\\-bitcoin\\.club|how\\-to\\-buy\\-bitcoin\\.stream|how\\-to\\-buy\\-bitcoins\\-cheap\\.party|how\\-to\\-buy\\-bitcoins\\-cheap\\.review|how\\-to\\-buy\\-bitcoins\\-cheap\\.stream|how\\-to\\-buy\\-bitcoins\\-cheap\\.trade|how\\-to\\-buy\\-bitcoins\\.stream|how\\-to\\-buy\\-bitcoins\\.trade|how\\-to\\-earn\\-quick\\-money\\.com|how\\-to\\-promote\\-website\\.faith|how\\-to\\-promote\\-website\\.review|howlongdoestizanidinestayinyoursystem\\.blogspot\\.com|howmuchdoestizanidinecost\\.blogspot\\.com|howopen\\.ru|howtostopreferralspam\\.com|howtostopreferralspam\\.eu|hoztorg\\-opt\\.ru|hplaserjetpdriver8y\\.pen\\.io|hptwaakw\\.blog\\.fc2\\.com|hrtonline\\.xyz|hscsscotland\\.com|hseipaa\\.kz|hsoutdoor\\.com|hspline\\.com|https\\-legalrc\\.biz|hugblog\\.xyz|huhn\\.altervista\\.org|hulfingtonpost\\.com|hully\\.altervista\\.org|humanorightswatch\\.org|hundejo\\.com|huntdown\\.info|husky\\-shop\\.cz|hustoon\\.over\\-blog\\.com|hvd\\-store\\.com|hydra\\-2019\\.ru|hydra\\-2020\\.online|hydra\\-2020\\.ru|hydra\\-centr\\.fun|hydra\\-dealer\\.com|hydra\\-guide\\.org|hydra\\-new\\.online|hydra\\-onion\\-faq\\.com|hydra\\-pc\\.com|hydra\\-shop\\.org|hydra\\-site\\.ru|hydra\\-slon\\.net|hydra\\-vhod2020\\.com|hydra\\-zerkalo20\\.com|hydra\\.online|hydra1717\\.com|hydra2\\.market|hydra2020\\.top|hydra2020gate\\.com|hydra2020market\\.com|hydra2020onion\\.com|hydra2020ru\\.com|hydra2020zerkala\\.com|hydra2020zerkalo\\.com|hydra20onion\\.com|hydra20online\\.com|hydra20original\\.com|hydra2use\\.com|hydra2zahod\\.com|hydraena\\.com|hydrahow\\.com|hydrahudra\\.com|hydraland\\.net|hydramarket2020\\.com|hydramirror2020\\.com|hydranten\\.net|hydraonion2019\\.net|hydrarusmarket\\.com|hydraruz\\-2020\\.com|hydraruzonion2020\\.com|hydraruzonionx\\.ru|hydraruzxpnew4af\\.com\\.co|hydraruzxpnew4af\\.ink|hydraruzxpnew4aff\\.ru|hydraruzxpwnew4afonion\\.com|hydraulicoilcooler\\.net|hydrauliczny\\.com|hydravizoficial\\.info|hydrazerkalo2019\\.net|hydrazerkalo2020\\.com|hydropump\\.su|hyip\\-zanoza\\.me|hyipmanager\\.in|i\\-spare\\.ru|ialgramer\\.shop|iamsport\\.org|ib\\-homecredit\\.ru|ib\\-rencredit\\.ru|iblogpress\\.xyz|iceton\\.net|ico\\.re|ictizanidinehcl4mg\\.blogspot\\.com|idc\\.com\\.ua|idealtits\\.net|ideayz\\.com|idegenvezeto\\.eu|ideibiznesa2015\\.ru|ieeeoutlet\\.xyz|ifirestarter\\.ru|ifmo\\.ru|igadgetsworld\\.com|igamingtop\\.com|igru\\-xbox\\.net|ilikevitaly\\.com|illagedusexe\\.com|ilmen\\.net|iloveitaly\\.ro|iloveitaly\\.ru|ilovevitaly\\.co|ilovevitaly\\.com|ilovevitaly\\.info|ilovevitaly\\.org|ilovevitaly\\.ro|ilovevitaly\\.ru|ilovevitaly\\.xyz|imediadesk\\.com|iminent\\.com|immigrational\\.info|immobiliaremassaro\\.com|immobilieralgerie\\.net|imperia31\\.ru|imperiafilm\\.ru|impotentik\\.com|impresagaia\\.it|in\\-mostbet\\.ru|in\\-sto\\.ru|inbabes\\.sexushost\\.com|inboxdollars\\.com|incanto\\.in\\.ua|incitystroy\\.ru|incomekey\\.net|incoonline\\.xyz|increasewwwtraffic\\.info|indetiske\\.ya\\.ru|indo\\-export\\.ru|inet\\-shop\\.su|infazavr\\.ru|infektsii\\.com|infobabki\\.ru|infodocsportal\\.com|infogame\\.name|infokonkurs\\.ru|inform\\-ua\\.info|ingramreed\\.xyz|inmoll\\.com|innodgfdriverhm\\.aircus\\.com|insider\\.pro|installspartners\\.com|instasexyblog\\.com|insultu\\-net\\.ru|intelhdgraphicsgtdrive6w\\.metroblog\\.com|interferencer\\.ru|interfucks\\.net|intermesh\\.net|internet\\-apteka\\.ru|intex\\-air\\.ru|intimchats\\.ru|intimver\\.3dgayxxx\\.com|invest\\-pamm\\.ru|investingclub\\.ru|investpamm\\.ru|investsuccess\\.org|invivo\\.hu|inzn\\.ru|io9\\.com|ipod\\-app\\-reviews\\.com|ipostroika\\.ru|iqoption\\-bin\\.com|iqoption\\.com|iqoption\\.pro|iradiology\\.ru|iridsale\\.xyz|ishgetadsincome\\.info|isistaylorporn\\.info|iskalko\\.ru|iskussnica\\.ru|isotoner\\.com|ispaniya\\-costa\\-blanca\\.ru|istanbulit\\.com|istizanidineacontrolledsubstance\\.blogspot\\.com|istizanidineanarcoticdrug\\.blogspot\\.com|istizanidineanopiate\\.blogspot\\.com|istizanidinelikexanax\\.blogspot\\.com|istock\\-mebel\\.ru|it\\-max\\.com\\.ua|it\\-worlds\\.com|itbc\\.kiev\\.ua|itrevolution\\.cf|itronics\\.ca|itsdp3\\.com|ivegetadsincome\\.info|iyfsearch\\.com|izamorfix\\.ru|izhevsk\\.xrus\\.org|izhevskjob\\.xyz|izhstrelok\\.ru|izi24\\.ru|j\\-times\\.ru|jabug\\.xyz|jacblog\\.xyz|jackonline\\.store|janemill\\.xyz|janettabridal\\.com|japfm\\.com|jasonpartington\\.com|jav\\-fetish\\.com|jav\\-fetish\\.site|jav\\-idol\\.com|javatex\\.co\\.id|javcoast\\.com|javlibrary\\.cc|jaxcube\\.info|jazzstyle4us\\.com|jeffbullas\\.xyz|jennyfire\\.ru|jikem\\.com|jintub\\.com|jjbabskoe\\.ru|job\\-opros\\.ru|job\\-prosto\\.ru|jobfree24\\.pl|jobgirl24\\.ru|jobius\\.com\\.ua|johnnyhaley\\.top|joinandplay\\.me|joingames\\.org|josephineblog\\.top|journalhome\\.com|joyceblog\\.top|joycee\\.xyz|judyandsimon\\.com|juliadiets\\.com|juliaworld\\.net|jumkite\\.com|justkillingti\\.me|justprofit\\.xyz|jweber\\.ru|jwss\\.cc|jyrxd\\.com|kaac\\.ru|kabbalah\\-red\\-bracelets\\.com|kabinet\\-5ka\\.ru|kabinet\\-alfaclick\\.ru|kabinet\\-binbank\\.ru|kabinet\\-card\\-5ka\\.ru|kabinet\\-click\\-alfabank\\.ru|kabinet\\-esia\\-gosuslugi\\.ru|kabinet\\-faberlic\\.ru|kabinet\\-gosuslugi\\.ru|kabinet\\-ipoteka\\-domclick\\.ru|kabinet\\-karta\\-5ka\\.ru|kabinet\\-lk\\-megafon\\.ru|kabinet\\-lk\\-rt\\.ru|kabinet\\-login\\-mts\\.ru|kabinet\\-mil\\.ru|kabinet\\-mos\\.ru|kabinet\\-my\\-beeline\\.ru|kabinet\\-my\\-pochtabank\\.ru|kabinet\\-nalog\\.ru|kabinet\\-online\\-bm\\.ru|kabinet\\-online\\-open\\.ru|kabinet\\-online\\-rsb\\.ru|kabinet\\-online\\-rshb\\.ru|kabinet\\-online\\-sberbank\\.ru|kabinet\\-online\\-sovcombank\\.ru|kabinet\\-online\\-vtb\\.ru|kabinet\\-pfr\\.ru|kabinet\\-pfrf\\.ru|kabinet\\-platon\\.ru|kabinet\\-qiwi\\.ru|kabinet\\-tele2\\.ru|kabinet\\-tinkoff\\.ru|kabinet\\-tricolor\\.ru|kabinet\\-ttk\\.ru|kabinet\\-vtb24\\.ru|kaircm\\.shop|kakablog\\.net|kakadu\\-interior\\.com\\.ua|kakworldoftanks\\.ru|kalb\\.ru|kambasoft\\.com|kamin\\-sam\\.ru|kamorel\\.com|kanakox\\.com|karachev\\-city\\.ru|karadene\\.com|karapuz\\.org\\.ua|karusel\\-market\\.ru|katjimej\\.blog\\.fc2\\.com|katrd\\.xyz|katushka\\.net|kaz\\.kz|kazan\\.xrus\\.org|kazka\\.ru|kazlenta\\.kz|kazrent\\.com|kellyonline\\.xyz|kendrablog\\.online|kenyagoods\\.xyz|kerch\\.site|ketrzyn\\.pl|kevblog\\.top|kevinsnow\\.online|kexihao\\.xyz|keywords\\-monitoring\\-success\\.com|keywords\\-monitoring\\-your\\-success\\.com|kharkov\\.ua|kharlov\\.ua|kidd\\.reunionwatch\\.com|kierowca\\-praca\\.pl|kiev\\.ua|kimblog\\.top|kinnarimasajes\\.com|kino\\-filmi\\.com|kino\\-fun\\.ru|kino\\-key\\.info|kino2018\\.cc|kinobaks\\.com|kinobum\\.org|kinoflux\\.net|kinohit1\\.ru|kinopolet\\.net|kinosed\\.net|kinostar\\.online|kinotorka\\.ru|kiprinform\\.com|kiwe\\-analytics\\.com|kiwi237au\\.tk|kiyany\\-za\\-spravedluvist\\.com\\.ua|kletkimehan\\.ru|klfd\\.net|kndxbkdx\\.bloger\\.index\\.hr|knigonosha\\.net|kochanelli\\.com|kolcasale\\.xyz|koleso24\\.com\\.ua|kollekcioner\\.ru|kolotiloff\\.ru|komp\\-pomosch\\.ru|komputernaya\\-pomosh\\-moscow\\.ru|komputers\\-best\\.ru|komukc\\.com\\.ua|kongoultry\\.net|konkursov\\.net|koopilka\\.com|koptims\\.tiu\\.ru|koronirealestate\\.gr|kosova\\.de|kosunnyclub\\.com|kotaku\\.com|kozhakoshek\\.com|kozhasobak\\.com|kozhniebolezni\\.com|kpcconline\\.xyz|krafte\\.ru|krasivoe\\-hd\\.com|krasivoe\\-hd\\.net|krasnodar\\-avtolombard\\.ru|krasnodar\\.xrus\\.org|krasota\\-zdorovie\\.pw|krasota\\.ru|kredutu\\.com\\.ua|kredytbank\\.com\\.ua|kruiz\\-sochi\\.ru|krumble\\-adsde\\.info|krumble\\-adsen\\.info|krumble\\-adsic\\.info|krumbleent\\-ads\\.info|krynica\\.info|ktotut\\.net|kumuk\\.info|kupit\\-adenu\\.ru|kursy\\-ege\\.ru|kustanay\\.kz|kvartir\\-remont\\.biz|kvartira\\-sutochno\\.com|kvartiry\\-remont\\.ucoz\\.ru|kw21\\.org|l2soft\\.eu|la\\-fa\\.ru|labguamec\\.online|labplus\\.ru|labvis\\.host\\.sk|ladov\\.ru|lafppshop\\.xyz|laitrcus\\.online|lakiikraski\\.ru|lalalove\\.ru|lambreshop\\.xyz|laminat\\.com\\.ua|lampokrat\\.ws|lanasshop\\.ru|landliver\\.org|landoftracking\\.com|languagecode\\.com|lankarns\\.com|laparfumotec\\.com|lapitec\\.eu|laptop\\-4\\-less\\.com|laptoper\\.net|larchik\\.net|larutti\\.ru|laudit\\.ru|law\\-check\\-eight\\.xyz|law\\-check\\-nine\\.xyz|law\\-check\\-seven\\.xyz|law\\-check\\-two\\.xyz|law\\-enforcement\\-aa\\.xyz|law\\-enforcement\\-bb\\.xyz|law\\-enforcement\\-bot\\-aa\\.xyz|law\\-enforcement\\-bot\\-bb\\.xyz|law\\-enforcement\\-bot\\-cc\\.xyz|law\\-enforcement\\-bot\\-dd\\.xyz|law\\-enforcement\\-bot\\-ee\\.xyz|law\\-enforcement\\-bot\\-ff\\.xyz|law\\-enforcement\\-bot\\-hh\\.xyz|law\\-enforcement\\-bot\\-ii\\.xyz|law\\-enforcement\\-cc\\.xyz|law\\-enforcement\\-check\\-eight\\.xyz|law\\-enforcement\\-check\\-five\\.xyz|law\\-enforcement\\-check\\-four\\.xyz|law\\-enforcement\\-check\\-nine\\.xyz|law\\-enforcement\\-check\\-one\\.xyz|law\\-enforcement\\-check\\-six\\.xyz|law\\-enforcement\\-check\\-three\\.xyz|law\\-enforcement\\-check\\-two\\.xyz|law\\-enforcement\\-dd\\.xyz|law\\-enforcement\\-ee\\.xyz|law\\-enforcement\\-eight\\.xyz|law\\-enforcement\\-ff\\.xyz|law\\-enforcement\\-five\\.xyz|law\\-enforcement\\-four\\.xyz|law\\-enforcement\\-gg\\.xyz|law\\-enforcement\\-hh\\.xyz|law\\-enforcement\\-one\\.xyz|law\\-enforcement\\-seven\\.xyz|law\\-enforcement\\-three\\.xyz|law\\-enforcement\\-two\\.xyz|law\\-five\\.xyz|law\\-four\\.xyz|law\\-one\\.xyz|law\\-six\\.xyz|law\\-three\\.xyz|law\\-two\\.xyz|lawrenceblog\\.online|laxdrills\\.com|layola\\.biz\\.tc|lazy\\-z\\.com|lcecshop\\.xyz|leadwayau\\.com|leboard\\.ru|lebowmall\\.xyz|ledalfa\\.by|leddjc\\.net|ledis\\.top|ledpolice\\.ru|ledx\\.by|leeboyrussia\\.com|legalrc\\.biz|lego4x4\\.ru|lenvred\\.org|leon\\-official\\.site|lernur\\.net|lerporn\\.info|leto\\-dacha\\.ru|letolove\\.ru|letsgotofriday\\.com|levaquin750mg\\.blogspot\\.com|lezbiyanki\\.net|lflash\\.ru|li\\-er\\.ru|lida\\-ru\\.com|lider82\\.ru|life\\.biz\\.ua|lifebyleese\\.com|lifespeaker\\.ru|ligastavok\\-in\\.ru|light\\.ifmo\\.ru|lighthearteds\\.shop|likesdesign\\.com|lilishopstogether\\.com|lindsayblog\\.online|linerdrilling\\.com|link\\.web\\-list\\.xyz|lipidofobia\\.com\\.br|liquimondo\\.com|lirunet\\.ru|lisque\\.batcave\\.net|littleberry\\.ru|live\\-sexchat\\.ru|live\\-xbet\\.com|livefixer\\.com|liveinternet\\.ro|liveinternet\\.ru|livejournal\\.top|livia\\-pache\\.ru|livingroomdecoratingideas\\.website|livingsimply\\.com|lk\\-gosuslugi\\.ru|lk\\-lk\\-rt\\.ru|llastbuy\\.ru|lmrauction\\.com|loadopia\\.com|local\\-seo\\-for\\-multiple\\-locations\\.com|login\\-tinkoff\\.ru|loginduepunti\\.it|logo\\-all\\.ru|lol\\-smurfs\\.com|lolz\\.guru|lolzteam\\.online|lolzteam\\.org|lomb\\.co|lombardfinder\\.ru|lombia\\.co|lombia\\.com|lomza\\.info|londonstratford\\.co\\.uk|lookover\\.ru|lost\\-alpha\\.ru|lotoflotto\\.ru|loveorganic\\.ch|low\\-format\\.ru|lowpricesiterx\\.com|lsex\\.xyz|lsitenonrepeat\\.com|luckybull\\.io|luckyshop\\.net\\.ua|lukoilcard\\.ru|lumb\\.co|lutherstable\\.org|luton\\-invest\\.ru|luxmagazine\\.cf|luxup\\.ru|luxurybet\\.ru|m\\-google\\.xyz|m\\.ok\\.ru|m1media\\.net|macresource\\.co\\.uk|madisonclothingny\\.com|madjonline\\.xyz|madot\\.onlinewebshop\\.net|mafcards\\.ru|magazintiande\\.ru|magda\\-gadalka\\.ru|magento\\-crew\\.net|magicart\\.store|magicdiet\\.gq|magnetic\\-bracelets\\.ru|maigralr\\.site|mail\\.allnews24\\.in|mainhunter\\.com|mainlinehobby\\.net|make\\-money\\-online\\.com|makedo\\.ru|makemoneyonline\\.com|makeprogress\\.ga|makler\\.org\\.ua|maladot\\.com|malbgoods\\.xyz|malls\\.com|maltadailypost\\.com|mamidushop\\.xyz|mamylik\\.ru|manimpotence\\.com|manipulyator\\-peterburg\\.ru|manonstore\\.xyz|manualterap\\.roleforum\\.ru|manwang\\.net|maofengjx\\.com|marathonbet\\-in\\.ru|marblestyle\\.ru|marcogrup\\.com|maridan\\.com\\.au|maridan\\.com\\.ua|marihome\\.online|marinetraffic\\.com|marjorieblog\\.online|marketland\\.ml|marktforschung\\-stuttgart\\.com|marmitaco\\.cat|martinahome\\.xyz|martlinker\\.com|massage\\-info\\.nl|masserect\\.com|master\\-muznachas\\.ru|masterseek\\.com|mastershef\\.club|masturbate\\.co\\.uk|mathoutlet\\.xyz|matomete\\.net|matras\\.space|mattgibson\\.us|mature\\.free\\-websites\\.com|max\\-apprais\\.com|maximilitary\\.ru|maxinesamson\\.top|maxthon\\.com|maxxximoda\\.ru|mazda\\-roadsters\\.com|mbiologi\\.ru|mebel\\-alait\\.ru|mebel\\-arts\\.com|mebel\\-ekb\\.com|mebel\\-iz\\-dereva\\.kiev\\.ua|mebelcomplekt\\.ru|mebeldekor\\.com\\.au|mebeldekor\\.com\\.ua|meblieco\\.com|med\\-dopomoga\\.com|med\\-recept\\.ru|med\\-zdorovie\\.com\\.au|med\\-zdorovie\\.com\\.ua|medanestesia\\.ru|medbrowse\\.info|medcor\\-list\\.ru|medi\\-fitt\\.hu|medic\\-al\\.ru|medicaltranslate\\.ru|medicinacom\\.ru|medicineseasybuy\\.com|medicovi\\.com|medictube\\.ru|medispainstitute\\.com\\.au|medkletki\\.ru|medkritika\\.ru|medmajor\\.ru|medosmotr\\-ufa\\.ru|meds\\-online24\\.com|medtherapy\\.ru|meduza\\-consult\\.ru|meendo\\-free\\-traffic\\.ga|megaapteka\\.ru|megakino\\.net|megalit\\-d\\.ru|megapolis\\-96\\.ru|megatkani\\.ru|megavolt\\.net\\.ua|melbet\\-in\\.ru|melissahome\\.top|members\\.ghanaweb\\.com|memovn\\.com|menhealed\\.net|mercanmall\\.xyz|mere\\.host\\.sk|mericanmopedstore\\.com|meriton\\.ru|meroyharte\\.top|mesto\\-x\\.com|metallo\\-konstruktsii\\.ru|metallosajding\\.ru|metarip\\.ru|metaxalonevstizanidine\\.blogspot\\.com|meteocast\\.net|meuikcr\\.online|mex\\-annushka\\.ru|mhp\\.su|mhrdmall\\.xyz|miaxxx\\.com|micasainvest\\.com|michellblog\\.online|microsearch\\.ru|microsoftportal\\.net|midnight\\.im|mielec\\.pl|mifepriston\\.net|migente\\.com|migera\\.net|migronis\\.com|mikozstop\\.com|mikrobiologies\\.ru|mikrocement\\.com\\.ua|mikrozaim\\.site|mikrozaym2you\\.ru|minecraft\\-neo\\.ru|minecraft\\-rus\\.org|minegam\\.com|minghaimuyuan\\.net|mini\\.7zap\\.com|miningblack\\.net|minyetki\\.ru|mir\\-betting\\.ru|mir\\-business\\-24\\.ru|mir\\-limuzinov\\.ru|mirfairytale\\.ru|mirmedinfo\\.ru|mirobuvi\\.com\\.au|mirobuvi\\.com\\.ua|mirtorrent\\.net|mirzonru\\.net|misselle\\.ru|mister\\-shop\\.com|mitrasound\\.ru|mixed\\-wrestling\\.ru|mksoap\\.ru|mksport\\.ru|mmdoors\\.ru|mmm\\.lc|mmm\\.sb|mmog\\-play\\.ru|mmoguider\\.ru|mnogabukaff\\.net|mobicover\\.com\\.ua|mobile\\.ok\\.ru|mobilemedia\\.md|mobisport\\.ru|mobot\\.site|mobplayer\\.net|mobplayer\\.ru|mockupui\\.com|modabutik\\.ru|modforwot\\.ru|modnie\\-futbolki\\.net|moe1\\.ru|moesonce\\.com|moi\\-glazki\\.ru|moinozhki\\.com|moiragracie\\.top|moisadogorod\\.ru|mokrayakiska\\.com|mole\\.pluto\\.ro|monarhs\\.info|monetizationking\\.net|money\\-every\\-day\\.com|money\\-for\\-placing\\-articles\\.com|money7777\\.info|moneymaster\\.ru|moneytop\\.ru|moneyzzz\\.ru|monicablog\\.xyz|monitorwebsitespeed\\.com|moomi\\-daeri\\.com|moon\\.market|moonci\\.ru|more\\-letom\\.ru|morf\\.snn\\.gr|morlat\\.altervista\\.org|moroccosurfadventures\\.com|moscow\\-clining\\.ru|moscow\\-region\\.ru|moscow\\.xrus\\.org|mosdverka\\.ru|mosputana\\.info|mosputana\\.top|mosrif\\.ru|mossiemckenzie\\.shop|mossmesi\\.com|most\\-kerch\\.org|most\\.gov\\.iq|mostantikor\\.ru|mostbet\\-285\\.com|mostbet\\-original\\.ru|mostcool\\.top|mostorgnerud\\.ru|motion\\-interactive\\.com|mototsikl\\.org|mountainstream\\.ms|moy\\-dokument\\.com|moy\\-evroopt\\.ru|moyakuhnia\\.ru|moyaskidka\\.ru|moyaterapiya\\.ru|moygorod\\-online\\.ru|moyparnik\\.com|mp3films\\.ru|mpftpupload\\.com|mrbojikobi4\\.biz|mrcsa\\.com\\.au|mriyadh\\.com|mrmoneymustache\\.com|mrt\\-info\\.ru|mrwhite\\.biz|msk\\-diplomat\\.com|msk\\-sprawka\\.com|mtras\\.xyz|mtsguru\\.ru|mug\\-na\\-chas\\-moscow\\.ru|muizre\\.ru|mukis\\.ru|mundoaberrante\\.com|muscle\\-factory\\.com\\.au|muscle\\-factory\\.com\\.ua|music\\.utrolive\\.ru|musicas\\.baixar\\-musicas\\-gratis\\.com|musichallaudio\\.ru|musicprojectfoundation\\.com|musicstock\\.me|musicvidz\\.ru|muz\\-baza\\.net|muz\\-shoes\\.ru|muznachas\\-service\\.ru|muztops\\.ru|mvmagoods\\.xyz|mwductwork\\.com|my\\-bc\\.ru|my\\.opera\\.com|mybestoffers\\.club|myborder\\.ru|mybuh\\.kz|mycaf\\.it|mycheaptraffic\\.com|mycollegereview\\.com|mydirtystuff\\.com|mydoctorok\\.ru|mydownloadengine\\.com|mydownlodablefiles\\.com|myecomir\\.com|myfreemp3\\.eu|myftpupload\\.com|myindospace\\.com|mylida\\.org|myliveblog\\.ru|mypets\\.by|myplaycity\\.com|myprintscreen\\.com|mysexpics\\.ru|mytherealshop\\.com|mytraffic\\.shop|na\\-telefon\\.biz|na15\\.ru|nacap\\.ru|nachalka21\\.ru|nagdak\\.ru|nakozhe\\.com|nalogovyy\\-kodeks\\.ru|nancyblog\\.top|nanochskazki\\.ru|nanwar\\.xyz|naobumium\\.info|naphi\\.xyz|naphukete\\.ru|nardulan\\.com|narkologiya\\-belgorod\\.ru|narkologiya\\-orel\\.ru|narkologiya\\-penza\\.ru|narkologiya\\-peterburg\\.ru|narkologiya\\-voronezh\\.ru|narkomaniya\\-stop\\.ru|narosty\\.com|narutonaruto\\.ru|nastroyke\\.net|natali\\-forex\\.com|nate\\.com|natprof\\.ru|naturalpharm\\.com\\.ua|naval\\.jislaaik\\.com|navek\\.by|nbok\\.net|nbsproject\\.ru|nebbiasale\\.xyz|needtosellmyhousefast\\.com|negral\\.pluto\\.ro|net\\-profits\\.xyz|netallergy\\.ru|nethouse\\.ru|netlify\\.com|netpics\\.org|nevansk\\.ru|nevapotolok\\.ru|new\\-apps\\.ru|newagebev\\.com|newbieseoblog\\.online|newsfj\\.net|newsrosprom\\.ru|newstaffadsshop\\.club|newstraveller\\.ru|newstudio\\.tv|nextconseil\\.com|nfocusdriver\\.com|ngps1\\.ru|nhmrcsale\\.xyz|nhsports\\.cl|nicola\\.top|nicolaonline\\.top|niki\\-mlt\\.ru|nikitsyringedrivelg\\.pen\\.io|ninacecillia\\.top|niuting\\.org|nizniynovgorod\\.dienai\\.ru|nl\\.netlog\\.com|no\\-rx\\.info|noclegonline\\.info|nomerounddec\\.cf|nonews\\.co|nordstar\\.pro|notaria\\-desalas\\.com|notebook\\-pro\\.ru|notfastfood\\.ru|noumeda\\.com|novalskincare\\.net|novgorod\\.xrus\\.org|novosibirsk\\.xrus\\.org|novosti\\-avto\\.ru|novosti\\-hi\\-tech\\.ru|novostic\\.ru|now\\-hydra2020\\.com|npoet\\.ru|ntdtv\\.ru|nubuilderian\\.info|nucia\\.biz\\.ly|nudepatch\\.net|nudo\\.ca|nufaq\\.com|nullrefer\\.com|nutriwestncahi\\.com|nuup\\.info|nvformula\\.ru|nvkzsale\\.xyz|nwrcz\\.com|nyfinance\\.ml|nyinfo\\.org|o\\-o\\-11\\-o\\-o\\.com|o\\-o\\-6\\-o\\-o\\.com|o\\-o\\-6\\-o\\-o\\.ru|o\\-o\\-8\\-o\\-o\\.com|o\\-o\\-8\\-o\\-o\\.ru|o\\-promyshlennosti\\.ru|o00\\.in|oblismall\\.xyz|obnal\\.org|obnallpro\\.cc|obsessionphrases\\.com|obuv\\-kupit\\.ru|obyavka\\.org\\.ua|obzor\\-casino\\-x\\.online|obzor\\-casino\\-x\\.ru|ochistka\\-stokov\\.ru|odesproperty\\.com|odiabetikah\\.com|odsadsmobile\\.biz|odywpjtw\\.bloger\\.index\\.hr|ofermerah\\.com|offers\\.bycontext\\.com|office\\-windows\\.ru|office2web\\.com|officedocuments\\.net|offtime\\.ru|ogorodnic\\.com|ok\\.ru|oklogistic\\.ru|okna\\-systems\\.pro|okno\\.ooo|okoshkah\\.com|okroshki\\.ru|oktube\\.ru|oledonline\\.xyz|olovoley\\.ru|olvanto\\.ru|omega\\.best|omsk\\.xrus\\.org|one\\-a\\-plus\\.xyz|one\\-gear\\.com|onefilms\\.net|onenews24\\.ru|onion20hydra\\.ru|onionhydra\\.net|onionshydra\\.com|online\\-akbars\\.ru|online\\-binbank\\.ru|online\\-hit\\.info|online\\-intim\\.com|online\\-mkb\\.ru|online\\-pharma\\.ru|online\\-pochtabank\\.ru|online\\-raiffeisen\\.ru|online\\-sbank\\.ru|online\\-templatestore\\.com|online\\-video\\-chat\\.ru|online\\-vostbank\\.ru|online\\-vtb\\.ru|online\\-x\\.ru|online\\.ktc45\\.ru|onlinebay\\.ru|onlinedic\\.net|onlinedomains\\.ru|onlinefilmz\\.net|onlineserialy\\.ru|onlinetvseries\\.me|onlinewot\\.ru|onlinewritingjobs17\\.blogspot\\.ru|onload\\.pw|onlyforemont\\.ru|onlythegames\\.com|onlywoman\\.org|oohlivecams\\.com|ooo\\-gotovie\\.ru|ooo\\-olni\\.ru|oooh\\.pro|openfrost\\.com|openfrost\\.net|openlibrary\\.org|openmediasoft\\.com|ops\\.picscout\\.com|optitrade24\\.com|optsol\\.ru|oqex\\.io|oracle\\-patches\\.ru|orakul\\.spb\\.ru|oranga\\.host\\.sk|order\\-prime\\-smm\\-service\\.party|ordernorxx\\.com|orel\\-reshka\\.net|oren\\-cats\\.ru|origin\\-my\\.ru|ororodnik\\.goodbb\\.ru|osb\\.se11\\.ru|osoznanie\\-narkotikam\\.net|osteochondrosis\\.ru|ostroike\\.org|ostrovtaxi\\.ru|otbelivanie\\-zubov\\.com|otdbiaxaem\\-vmeste\\.ru|otdyx\\-s\\-komfortom\\.ru|oudallas\\.net|ourtherapy\\.ru|outshop\\.ru|ovirus\\.ru|own\\-ahrefs\\.com|ownshop\\.cf|owohho\\.com|ozas\\.net|p\\-business\\.ru|paceform\\.com|pacobarrero\\.com|pageinsider\\.org|paidonlinesites\\.com|painting\\-planet\\.com|palma\\-de\\-sochi\\.ru|palvira\\.com\\.au|palvira\\.com\\.ua|pamjatnik\\.com\\.ua|pammik\\.ru|pamyatnik\\-spb\\.ru|pamyatnik\\-tsena\\.ru|pandoshop\\.xyz|paparazzistudios\\.com\\.au|paperwritingservice17\\.blogspot\\.ru|paradontozanet\\.ru|parcsmalls\\.xyz|paretto\\.ru|parking\\-invest\\.ru|partizan19\\.ru|partnerskie\\-programmy\\.net|patonsale\\.xyz|paulinho\\.ru|pay\\.ru|paydayonlinecom\\.com|pc\\-services\\.ru|pechikamini\\.ru|pecmastore\\.xyz|pensplan\\.com|pensplan4u\\.com|penzu\\.xyz|percin\\.biz\\.ly|perfection\\-pleasure\\.ru|perform\\-like\\-alibabaity\\.info|perform\\-likeism\\-alibaba\\.info|perimetor\\.ru|perm\\.dienai\\.ru|perm\\.xrus\\.org|perper\\.ru|perso\\.wanadoo\\.es|personalhoro\\.ru|petedrummond\\.com|petroleumgeo\\.com|petrovka\\-online\\.com|petrushka\\-restoran\\.ru|petscar\\.ru|pfrf\\-kabinet\\.ru|pharm\\-\\-shop\\.ru|phimarshcer\\.online|phimmakinhdi\\.com|phobia\\.us|photo\\-clip\\.ru|photo\\.houseofgaga\\.ru|photochki\\.com|photokitchendesign\\.com|photorepair\\.ru|php\\-market\\.ru|physfunc\\.ru|picscout\\.com|picturesmania\\.com|pills24h\\.com|piluli\\.info|pinkduck\\.ga|pinupcasinos\\.ru|pinupcasinos1\\.ru|pinupp1\\.com|pipki\\.pp\\.ua|piratbike\\.ru|pirateday\\.ru|pirelli\\-matador\\.ru|pisze\\.pisz\\.pl|piter\\.xrus\\.org|piulatte\\.cz|pizdeishn\\.com|pizdeishn\\.net|pizza\\-imperia\\.com|pizza\\-tycoon\\.com|pk\\-pomosch\\.ru|pk\\-services\\.ru|pkr1hand\\.com|plagscan\\.com|plastweb\\.ru|platesauto\\.com|platinumdeals\\.gr|plohaya\\-kreditnaya\\-istoriya\\.ru|plusnetwork\\.com|pochemychka\\.net|podarkilove\\.ru|poddon\\-moskva\\.ru|podemnik\\.pro|podseka1\\.ru|pogodnyyeavarii\\.gq|pogosh\\.com|pogruztehnik\\.ru|poisk\\-zakona\\.ru|poiskzakona\\.ru|pokemongooo\\.ml|poker\\-royal777\\.com|pokupaylegko\\.ru|polcin\\.de|polemikon\\.ru|politika\\.bg|polyana\\-skazok\\.org\\.ua|pomoc\\-drogowa\\.cba\\.pl|pony\\-business\\.com|popads\\.net|popelina\\.com|pops\\.foundation|popugauka\\.ru|popugaychiki\\.com|popular\\-church\\-arrow\\-voucher\\.info|popup\\-fdm\\.xyz|popup\\-hgd\\.xyz|popup\\-jdh\\.xyz|porn\\-video\\-chat\\.ru|porn\\-w\\.org|porndl\\.org|pornhive\\.org|pornhub\\-forum\\.ga|pornhub\\-forum\\.uni\\.me|pornhub\\-ru\\.com|pornhubforum\\.tk|porno\\-asia\\.com|porno\\-chaman\\.info|porno\\-dojki\\.net|porno\\-gallery\\.ru|porno\\-play\\.net|porno\\-raskazy\\.ru|porno\\-transsexuals\\.ru|porno\\-video\\-chati\\.ru|porno2xl\\.net|pornobest\\.su|pornoblood\\.com|pornobrazzers\\.biz|pornodojd\\.ru|pornoelita\\.info|pornofiljmi\\.com|pornoforadult\\.com|pornofoto\\.org|pornogig\\.com|pornohd1080\\.online|pornokajf\\.com|pornoklad\\.net|pornoklad\\.ru|pornokorol\\.com|pornonik\\.com|pornophoto\\.xyz|pornoplen\\.com|pornorasskazy\\.net|pornosemki\\.info|pornoslave\\.net|pornotubexxx\\.name|porodasobak\\.net|portal\\-eu\\.ru|portnoff\\.od\\.au|portnoff\\.od\\.ua|poshiv\\-chehol\\.ru|positive2b\\.ru|pospektr\\.ru|postclass\\.com|posteezy\\.xyz|potolokelekor\\.ru|povodok\\-shop\\.ru|powitania\\.pl|pozdravleniya\\-c\\.ru|pozdrawleniya\\.com|pozdrawleniya\\.ru|pozvonim\\.com|pp\\-budpostach\\.com\\.ua|pravoholding\\.ru|predmety\\.in\\.ua|prezidentshop\\.ru|priceg\\.com|pricheskaonline\\.ru|pricheski\\-video\\.com|primfootball\\.com|primoblog\\.xyz|princeadvantagesales\\.com|print\\-technology\\.ru|printie\\.com|printingpeach\\.com|priora\\-2\\.com|privatbank46\\.ru|private\\-service\\.best|privatov\\-zapisi\\.ru|privhosting\\.com|prizesk\\.com|prizrn\\.site|prlog\\.ru|pro\\-okis\\.ru|probenzo\\.com\\.ua|procrafts\\.ru|prodaemdveri\\.com|producm\\.ru|prodvigator\\.au|prodvigator\\.ua|proekt\\-gaz\\.ru|proekt\\-mos\\.ru|professionalsolutions\\.eu|professionalwritingservices15\\.blogspot\\.ru|profnastil\\-moscow\\.ru|proftests\\.net|progressive\\-seo\\.com|prohoster\\.info|prointer\\.net\\.au|prointer\\.net\\.ua|projectforte\\.ru|projefrio\\.com\\.br|prokotov\\.com|prom23\\.ru|prombudpostach\\.com\\.ua|promodj\\.com|promoforum\\.ru|promoteapps\\.online|promotion\\-for99\\.com|pron\\.pro|pronekut\\.com|proposal\\-engine\\.com|propranolol40mg\\.blogspot\\.com|proquoshop\\.xyz|prosmibank\\.ru|prostitutki\\-almata\\.org|prostitutki\\-astana\\.org|prostitutki\\-belgoroda\\.org|prostitutki\\-kharkova\\.org|prostitutki\\-kiev\\.org|prostitutki\\-novgoroda\\.org|prostitutki\\-odessa\\.org|prostitutki\\-rostova\\.org|prostitutki\\-rostova\\.ru\\.com|prostitutki\\-tolyatti\\.org|prostitutki\\-tyumeni\\.org|prostitutki\\-yaroslavlya\\.org|prostoacc\\.com|psa48\\.ru|psiosale\\.xyz|pskcijdc\\.bloger\\.index\\.hr|psn\\-card\\.ru|psvita\\.ru|psychocryonics\\.net|ptashkatextil\\.ua|ptfic\\.org|punch\\.media|purchasepillsnorx\\.com|puteshestvennik\\.com|putevka24\\.ru|putitin\\.me|puzo2arbuza\\.ru|puzzleweb\\.ru|pyrodesigns\\.com\\.au|q\\-moto\\.ru|qcstrtvt\\.bloger\\.index\\.hr|qexyfu\\.bugs3\\.com|qitt\\.ru|qoinex\\.top|qtrstar\\.xyz|qualitymarketzone\\.com|quick\\-seeker\\.com|quickchange\\.cc|quit\\-smoking\\.ga|qwarckoine\\.com|qwesa\\.ru|qxnr\\.net|r\\-control\\.ru|rabot\\.host\\.sk|rabotaetvse\\.ru|rachelblog\\.online|radiogambling\\.com|rainbirds\\.ru|ranedaly\\.net|rangapoker\\.com|rangjued\\.com|rank\\-checker\\.online|rankchecker\\.online|ranking2017\\.ga|rankings\\-analytics\\.com|ranksays\\.com|rankscanner\\.com|ranksignals\\.com|ranksonic\\.com|ranksonic\\.info|ranksonic\\.net|ranksonic\\.org|rapevideosmovies\\.com|rapidgator\\-porn\\.ga|rapidhits\\.net|rapidsites\\.pro|raschtextil\\.com\\.ua|rasteniya\\-vs\\-zombi\\.ru|ratraiser\\.online|rattan\\.co\\.ua|raymondblog\\.top|razamicroelectronics\\.com|razborka\\-skoda\\.org\\.ua|rb\\-str\\.ru|rcb101\\.ru|rczhan\\.com|real\\-time\\-analytics\\.com|realnye\\-otzyvy\\.info|realresultslist\\.com|realting\\-moscow\\.ru|recinziireale\\.com|recipedays\\.com|recipedays\\.ru|rednise\\.com|redraincine\\.com|refererx\\.com|refpawro\\.xyz|refudiatethissarah\\.info|reginablog\\.top|reginanahum\\.top|regionshop\\.biz|registratciya\\-v\\-moskve\\.ru|reklama\\-i\\-rabota\\.ru|reklama1\\.ru|reklamnoe\\.agency|reklamuss\\.ru|releshop\\.ru|rembash\\.ru|remedyotc\\.com|remkompov\\.ru|remmling\\.de|remont\\-comp\\-pomosh\\.ru|remont\\-fridge\\-tv\\.ru|remont\\-komputerov\\-notebook\\.ru|remont\\-kvartirspb\\.com|remont\\-mobile\\-phones\\.ru|remont\\-ustanovka\\-tehniki\\.ru|remontgruzovik\\.ru|remontvau\\.ru|remote\\-dba\\.de|remotecomputingservices\\.net|rent2spb\\.ru|rentalmaty\\.kz|replica\\-watch\\.ru|replicaclub\\.ru|research\\.ifmo\\.ru|resell\\-seo\\-services\\.com|resellerclub\\.com|residualforlife\\.com|responsive\\-test\\.net|respublica\\-otel\\.ru|resurs\\-2012\\.ru|retreatia\\.com|reversing\\.cc|revolgc\\.pro|reyel1985\\.webnode\\.fr|rezeptiblud\\.ru|rfavon\\.ru|rfd\\-split\\.hr|rfesc\\.net|rialp\\.getenjoyment\\.net|richinvestmonitor\\.com|rida\\.tokyo|riedismall\\.xyz|rietisvi\\.co|rightenergysolutions\\.com\\.au|ring4rhino\\.com|ringporno\\.com|rique\\.host\\.sk|risparmiocasa\\.bz\\.it|rkmbonline\\.xyz|robocheck\\.info|robot\\-forex\\.biz|roleforum\\.ru|roma\\-kukareku\\.livejournal\\.com|roof\\-city\\.ru|room\\-mebel\\.ru|ros\\-ctm\\.ru|rospromtest\\.ru|rossanasaavedra\\.net|rossmark\\.ru|rostov\\.xrus\\.org|royal\\-betting\\.net|royal\\-casino\\.online|royal\\-casino\\.ru|royal\\-casinos\\.online|royal\\-casinos\\.ru|royal\\-cazino\\.online|royal\\-cazino\\.ru|royal\\-investments\\.net|rozalli\\.com|roznica\\.com\\.ua|rp9\\.ru|rrutw\\.com|rspectr\\.com|ru\\-lk\\-rt\\.ru|ru\\-onion\\.com|ru\\-online\\-sberbank\\.ru|ruex\\.org\\.ua|rufreechats\\.com|ruhydraru\\.ru|ruinfocomp\\.ru|rulate\\.ru|rumamba\\.com|runetki\\-online\\.net|runovschool\\.ua|runstocks\\.com|rupolitshow\\.ru|rus\\-lit\\.com|rus\\-teh\\.narod\\.ru|ruscams\\-com\\.ru|ruscopybook\\.com|rusenvironmental\\.net|rusexy\\.xyz|rusoft\\-zone\\.ru|ruspoety\\.ru|russia\\-tao\\.ru|russia\\-today\\-video\\.ru|russian\\-postindex\\.ru|russian\\-translator\\.com|russian\\-videochats\\.ru|russintv\\.fr|russkie\\-sochineniya\\.ru|russkoe\\-zdorovie\\.ru|rustag\\.ru|rutor\\.group|rvtv\\.ru|rxshop\\.md|rybalka\\-opt\\.ru|s\\-forum\\.biz|s\\-luna\\.me|sabaapress\\.com|sabinablog\\.xyz|sack\\.net|sad\\-torg\\.com\\.ua|sady\\-urala\\.ru|sahohev\\.000host\\.co\\.uk|saitevpatorii\\.com|sakhboard\\.ru|sale\\-japan\\.com|saletool\\.ru|saltspray\\.ru|salutmontreal\\.com|samanthablog\\.online|samara\\-airport\\.com|samara\\-comfort\\.ru|samchist\\.ru|samlaurabrown\\.top|samo\\-soznanie\\.ru|samogonius\\.ru|sanatorrii\\.ru|sanjosestartups\\.com|santaren\\.by|santasgift\\.ml|santechnik\\.jimdo\\.com|santehnovich\\.ru|sapaship\\.ru|sarafangel\\.ru|sarahmilne\\.top|saratov\\.xrus\\.org|sarf3omlat\\.com|sashagreyblog\\.ga|saudegoods\\.xyz|sauna\\-v\\-ufe\\.ru|sauni\\-lipetsk\\.ru|sauni\\-moskva\\.ru|savetubevideo\\.com|savetubevideo\\.info|savne\\.org|sax\\-sex\\.com|sbdl\\.no|sbornik\\-zakonov\\.ru|sc\\-specialhost\\.com|scanner\\-alex\\.top|scanner\\-alexa\\.top|scanner\\-andrew\\.top|scanner\\-barak\\.top|scanner\\-brian\\.top|scanner\\-don\\.top|scanner\\-donald\\.top|scanner\\-elena\\.top|scanner\\-fred\\.top|scanner\\-george\\.top|scanner\\-irvin\\.top|scanner\\-ivan\\.top|scanner\\-jack\\.top|scanner\\-jane\\.top|scanner\\-jess\\.top|scanner\\-jessica\\.top|scanner\\-john\\.top|scanner\\-josh\\.top|scanner\\-julia\\.top|scanner\\-julianna\\.top|scanner\\-margo\\.top|scanner\\-mark\\.top|scanner\\-marwin\\.top|scanner\\-mary\\.top|scanner\\-nelson\\.top|scanner\\-olga\\.top|scanner\\-viktor\\.top|scanner\\-walt\\.top|scanner\\-walter\\.top|scanner\\-willy\\.top|scansafe\\.net|scat\\.porn|scenarii\\-1\\-sentyabrya\\.uroki\\.org\\.ua|school\\-diplomat\\.ru"
  },
  {
    "path": "google-exclude-3.txt",
    "content": "sciedsale\\.xyz|score\\-prime\\-web\\-service\\.stream|screen\\-led\\.ru|screentoolkit\\.com|scripted\\.com|sdelai\\-prosto\\.ru|sdelatmebel\\.ru|sdi\\-pme\\.com|search\\-error\\.com|search\\-helper\\.ru|searchencrypt\\.com|searchlock\\.com|seccioncontrabajo\\.com|secret\\.xn\\-\\-oogle\\-wmc\\.com|secretscook\\.ru|security\\-corporation\\.com\\.ua|securityallianceservices\\.com|see\\-your\\-website\\-here\\.com|seekanvdoo22\\.live|seisasale\\.xyz|seksotur\\.ru|sel\\-hoz\\.com|selfhotdog\\.com|sell\\-fb\\-group\\-here\\.com|semalt\\.com|semalt\\.net|semalt\\.semalt\\.com|semaltmedia\\.com|semxiu\\.com|senacertificados\\.co|senger\\.atspace\\.co\\.uk|seo\\-2\\-0\\.com|seo\\-b2b\\.com|seo\\-platform\\.com|seo\\-services\\-b2b\\.com|seo\\-services\\-wordpress\\.com|seo\\-smm\\.kz|seo\\-tips\\.top|seo\\-traffic\\.xyz|seoanalyses\\.com|seobook\\.top|seocheckupx\\.com|seocheckupx\\.net|seoexperimenty\\.ru|seojokes\\.net|seokicks\\.de|seopub\\.net|seoriseome\\.netlify\\.app|seoservices2018\\.com|serenamall\\.xyz|serialsway\\.ucoz\\.ru|serialsx\\.ru|servemlixo\\.xyz|servisural\\.ru|serw\\.clicksor\\.com|seryeznie\\-znakomstva\\.ru|setioweb\\.com|sex\\-dating\\.co|sex\\-porno\\.site|sex\\-spying\\.ru|sex\\-videochats\\.ru|sexkrasivo\\.net|sexpornotales\\.net|sexreliz\\.com|sexreliz\\.net|sexsaoy\\.com|sexuria\\.net|sexvideo\\-sex\\.com|sexvporno\\.ru|sexwife\\.net|sexy\\-girl\\-chat\\.ru|sexyali\\.com|sexyteens\\.hol\\.es|sexytrend\\.ru|sfd\\-chess\\.ru|shagtomsk\\.ru|shakhtar\\-doneck\\.ru|shamcisale\\.xyz|shanscasino1\\.ru|share\\-button\\.xyz|share\\-buttons\\-for\\-free\\.com|share\\-buttons\\.xyz|sharebutton\\.io|sharebutton\\.net|sharebutton\\.org|sharebutton\\.to|sharemyfile\\.ru|shariki\\-zuma\\-lines\\.ru|shcrose\\.com|sheki\\-spb\\.ru|shemy\\-vishivki\\.com|shiksabd\\.com|shinikiev\\.com\\.ua|ship\\-marvel\\.co\\.ua|shisenshop\\.xyz|shisha\\-swag\\.de|shlyahten\\.ru|shnyagi\\.net|shodanhq\\.com|shop\\-electron\\.ru|shop\\-garena\\.ru|shop\\.garena\\.ru\\.com|shop\\.xz618\\.com|shop2hydra\\.com|shop4fit\\.ru|shopfishing\\.com\\.ua|shoppinglocation\\.com|shoppingmiracles\\.co\\.uk|shoprybalka\\.ru|shops\\-ru\\.ru|shopsellcardsdumps\\.com|shopvilleroyboch\\.com\\.ua|shopwme\\.ru|shtaketniki\\.ru|shtormmall\\.xyz|shulepov\\.ru|sib\\-kukla\\.ru|sibecoprom\\.ru|sibkukla\\.ru|sideeffectsoftizanidine\\.blogspot\\.com|sign\\-service\\.ru|signx\\.info|sihugoods\\.xyz|silverage\\.ru|silvergull\\.ru|silvermature\\.net|sim\\-dealer\\.ru|sim\\-service\\.net|similarmoviesdb\\.com|simoncinicancertherapy\\.com|simple\\-share\\-buttons\\.com|simplepooltips\\.com|sims\\-sims\\.ru|sinel\\.info|sinestesia\\.host\\.sk|singularwebs\\.net|sinhronperevod\\.ru|siongetadsincome\\.info|sirhoutlet\\.xyz|siritshop\\.xyz|sisiynas\\.ru|site\\-auditor\\.online|site\\-speed\\-check\\.site|site\\-speed\\-checker\\.site|site3\\.free\\-share\\-buttons\\.com|site5\\.com|siteexpress\\.co\\.il|siteripz\\.net|sitesadd\\.com|sitevaluation\\.com|sitevaluation\\.org|sivs\\.ru|sjmsw\\.net|sk\\.golden\\-praga\\.ru|ski\\-centers\\.com|skidku\\.org\\.ua|skinali\\.com|skinali\\.photo\\-clip\\.ru|sklad\\-24\\.ru|skladvaz\\.ru|sky\\-mine\\.ru|skylta\\.com|sladkoevideo\\.com|slashpet\\.com|slavic\\-magic\\.ru|slavkokacunko\\.de|sledstvie\\-veli\\.net|slftsdybbg\\.ru|slkrm\\.ru|slomm\\.ru|slonechka\\.ru|sloopyjoes\\.com\\.top|slotron\\.com|slow\\-website\\.xyz|slujbauborki\\.ru|smailik\\.org|small\\-game\\.com|small\\-games\\.biz|smartpet\\.ru|smartphonediscount\\.info|sms2x2\\.ru|smstraf\\.ru|smt4\\.ru|smzt\\.shop|snabs\\.kz|snaiper\\-bg\\.net|sneakerfreaker\\.com|snegozaderzhatel\\.ru|snip\\.to|snip\\.tw|snjatie\\-geroinovoy\\-lomki\\.ru|snomer1\\.ru|snyatie\\-lomki\\-v\\-stacionare\\.ru|soaksoak\\.ru|soblaznu\\.net|soc\\-econom\\-problems\\.ru|soc\\-proof\\.su|socas\\.pluto\\.ro|sochi\\-3d\\.ru|social\\-button\\.xyz|social\\-buttons\\-aa\\.xyz|social\\-buttons\\-aaa\\.xyz|social\\-buttons\\-bb\\.xyz|social\\-buttons\\-bbb\\.xyz|social\\-buttons\\-cc\\.xyz|social\\-buttons\\-ccc\\.xyz|social\\-buttons\\-dd\\.xyz|social\\-buttons\\-ddd\\.xyz|social\\-buttons\\-ee\\.xyz|social\\-buttons\\-eee\\.xyz|social\\-buttons\\-ff\\.xyz|social\\-buttons\\-fff\\.xyz|social\\-buttons\\-gg\\.xyz|social\\-buttons\\-ggg\\.xyz|social\\-buttons\\-hh\\.xyz|social\\-buttons\\-ii\\.xyz|social\\-buttons\\-iii\\.xyz|social\\-buttons\\.com|social\\-buttons\\.xyz|social\\-fun\\.ru|social\\-s\\-ggg\\.xyz|social\\-s\\-hhh\\.xyz|social\\-s\\-iii\\.xyz|social\\-search\\.me|social\\-traffic\\-1\\.xyz|social\\-traffic\\-2\\.xyz|social\\-traffic\\-3\\.xyz|social\\-traffic\\-4\\.xyz|social\\-traffic\\-5\\.xyz|social\\-traffic\\-6\\.xyz|social\\-traffic\\-7\\.xyz|social\\-vestnik\\.ru|social\\-widget\\.xyz|socialbookmarksubmission\\.org|socialbutton\\.xyz|socialbuttons\\.xyz|socialine\\.net|socialseet\\.ru|socialtrade\\.biz|sofit\\-dmd\\.ru|soft\\-program\\.com|softomix\\.com|softomix\\.net|softomix\\.org|softomix\\.ru|softtor\\.com|softxaker\\.ru|sohoindia\\.net|soki\\.tv|solartek\\.ru|solitaire\\-game\\.ru|solnplast\\.ru|sonata\\-arctica\\.wz\\.cz|songoo\\.wz\\.cz|sonnikforme\\.ru|sonyelektronik\\.com|sosdepotdebilan\\.com|sotkal\\.lark\\.ru|soundfrost\\.org|soup\\.io|souvenirua\\.com|sovetogorod\\.ru|sovetskie\\-plakaty\\.ru|soviet\\-portal\\.do\\.am|sowhoz\\.ru|soyuzexpedition\\.ru|sp\\-laptop\\.ru|sp\\-zakupki\\.ru|space2019\\.top|spacebarnot\\.work|spain\\-poetry\\.com|spartania\\.com\\.ua|spb\\-plitka\\.ru|spb\\-scenar\\.ru|spb\\.ru|spbchampionat\\.ru|special\\-porn\\.com|specstroy36\\.ru|speedup\\-my\\.site|spin2016\\.cf|sport\\-video\\-obzor\\.ru|sportbetfair\\.com|sportobzori\\.ru|sportwizard\\.ru|spravka130\\.ru|spravkavspb\\.net|spravkavspb\\.work|sprawka\\-help\\.com|spscmall\\.xyz|spuemonti\\.net|spy\\-app\\.info|spy\\-sts\\.com|sqadia\\.com|squarespace\\.top|squidoo\\.com|srecorder\\.com|sribno\\.net|ssn\\.is|sssexxx\\.net|ssve\\.ru|st\\-komf\\.ru|sta\\-grand\\.ru|stairliftstrue\\.com|star61\\.de|stardevine\\.com|stariy\\-baku\\.com|start\\.myplaycity\\.com|startraffic\\.online|startufa\\.ru|startwp\\.org|stat\\.lviv\\.ua|statashop\\.xyz|static\\.seders\\.website|statustroll\\.com|stauga\\.altervista\\.org|stavimdveri\\.ru|steame\\.ru|steelmaster\\.lv|stiralkovich\\.ru|stocktwists\\.com|stoki\\.ru|stoletie\\.ru|stoliar\\.org|stomatologi\\.moscow|stop\\-nark\\.ru|stop\\-zavisimost\\.com|store\\-rx\\.com|strady\\.org\\.ua|strana\\-krasoty\\.ru|strana\\-solnca\\.ru|stream\\-tds\\.com|streetfire\\.net|streetfooduncovered\\.com|streha\\-metalko\\.si|strigkaomsk\\.ru|stroi\\-24\\.ru|stroicol\\.net|stroimajor\\.ru|stroiminsk\\.com|stroiminsk\\.org|stromerrealty\\.com|strongholdsb\\.ru|strongtools\\.ga|stroy\\-matrix\\.ru|stroyalp\\.ru|stroydetali\\.ru|stroyka\\-gid\\.ru|stroyka47\\.ru|stroymonolit\\.su|studentguide\\.ru|studiofaca\\.com|stuff\\-about\\-money\\.com|stuffhydra\\.com|stylecaster\\.top|styro\\.ru|su1ufa\\.ru|success\\-seo\\.com|suckoutlet\\.xyz|sudachitravel\\.com|sugarkun\\.com|sugvant\\.ru|sundrugstore\\.com|super\\-seo\\-guru\\.com|superiends\\.org|supermama\\.top|supermesta\\.ru|supermodni\\.com\\.ua|supernew\\.org|superoboi\\.com\\.ua|superpages\\.com|superslots\\-casino\\.online|superslots\\-casino\\.site|superslots\\-cazino\\.online|superslots\\-cazino\\.site|superslotz\\-casino\\.site|superslotz\\-cazino\\.site|supertraffic\\.xyz|supervesti\\.ru|surflinksmedical\\.com|susanholtphotography\\.com|suzanneboswell\\.top|svadba\\-teplohod\\.ru|svarbit\\.com|svarog\\-jez\\.com|svensk\\-poesi\\.com|svet\\-depo\\.ru|svetka\\.info|svetlotorg\\.ru|svetoch\\.moscow|svetodiodoff\\.ru|svoimi\\-rukamy\\.com|svs\\-avto\\.com|swagbucks\\.com|swaplab\\.io|sweet\\.tv|sygraem\\.com|szansadlarolnikow\\.com\\.pl|t\\-machinery\\.ru|t\\-rec\\.su|t3chtonic\\.com|taartstore\\.xyz|tagmeanvice\\.live|taihouse\\.ru|tam\\-gde\\-more\\.ru|tamada69\\.com|tammyblog\\.online|targetpay\\.nl|tasteidea\\.com|tastyfoodideas\\.com|tattoo\\-stickers\\.ru|tattoo33\\.ru|tattooha\\.com|taximytishi\\.ru|tccp\\.xyz|tcenavoprosa\\.ru|tcsinksale\\.xyz|tcyh\\.net|td\\-33\\.ru|td\\-abs\\.ru|td\\-l\\-market\\.ru|td\\-perimetr\\.ru|tdbatik\\.com|tds\\-west\\.ru|teastory\\.co|techart24\\.com|technika\\-remont\\.ru|technopellet\\.gr|tecspb\\.ru|tedxrj\\.com|tedy\\.su|teedle\\.co|tehngr\\.ru|telegramdownload10\\.com|telesvoboda\\.ru|telfer\\.ru|teman\\.com\\.ua|tennis\\-bet\\.ru|tentcomplekt\\.ru|teplohod\\-gnezdo\\.ru|teplokomplex\\.ru|teplolidoma\\.ru|terapist\\.xyz|teresablog\\.top|tesla\\-audit\\.ru|teslathemes\\.com|test\\-extra\\-full\\-stack\\-services\\.stream|test\\-prime\\-smm\\-service\\.review|test\\.xyz|texbaza\\.by|texnika\\.com\\.ua|tgsubs\\.com|tgtclick\\.com|thaimassage\\-slon\\.ru|thaoduoctoc\\.com|the\\-torrent\\-tracker\\.blogspot\\.com|the\\-usa\\-games\\.blogspot\\.com|the\\-world\\.ru|theautoprofit\\.ml|thebluenoodle\\.com|thecoral\\.com\\.br|thedownloadfreeonlinegames\\.blogspot\\.com|thedownloadfromwarez\\.blogspot\\.com|thefds\\.net|thegreensociety\\.net|theguardlan\\.com|theheroes\\.ru|thejournal\\.ru|thelotter\\.su|thepokertimer\\.com|therealshop\\.exaccess\\.com|thesensehousehotel\\.com|thesmartsearch\\.net|thewomenlife\\.com|thiegs\\.reco\\.ws|thin\\.me\\.pn|tiandeural\\.ru|tiens2010\\.ru|timeallnews\\.ru|timer4web\\.com|timetorelax\\.biz|timmy\\.by|tip8\\.co|tizanidine4mg\\.blogspot\\.com|tizanidine4mgprice\\.blogspot\\.com|tizanidine4mgstreetprice\\.blogspot\\.com|tizanidine4mgstreetvalue\\.blogspot\\.com|tizanidine4mgtablets\\.blogspot\\.com|tizanidine4mguses\\.blogspot\\.com|tizanidine6mg\\.blogspot\\.com|tizanidineandcipro\\.blogspot\\.com|tizanidineandgabapentin\\.blogspot\\.com|tizanidineandhydrocodone\\.blogspot\\.com|tizanidinecapsules\\.blogspot\\.com|tizanidinecost\\.blogspot\\.com|tizanidinedosage\\.blogspot\\.com|tizanidinedosageforsleep\\.blogspot\\.com|tizanidinedruginteractions\\.blogspot\\.com|tizanidinedrugtest\\.blogspot\\.com|tizanidineduringpregnancy\\.blogspot\\.com|tizanidinefibromyalgia\\.blogspot\\.com|tizanidineformigraines\\.blogspot\\.com|tizanidineforopiatewithdrawal\\.blogspot\\.com|tizanidinehcl2mg\\.blogspot\\.com|tizanidinehcl2mgsideeffects\\.blogspot\\.com|tizanidinehcl2mgtablet\\.blogspot\\.com|tizanidinehcl4mgisitanarcotic\\.blogspot\\.com|tizanidinehcl4mgtab\\.blogspot\\.com|tizanidinehcl4mgtabinfo\\.blogspot\\.com|tizanidinehcl4mgtablet\\.blogspot\\.com|tizanidinehclsideeffects\\.blogspot\\.com|tizanidinehydrochloride2mg\\.blogspot\\.com|tizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com|tizanidineinfo\\.blogspot\\.com|tizanidineingredients\\.blogspot\\.com|tizanidineinteractions\\.blogspot\\.com|tizanidinemusclerelaxant\\.blogspot\\.com|tizanidinenarcotic\\.blogspot\\.com|tizanidineonline\\.blogspot\\.com|tizanidineoral\\.blogspot\\.com|tizanidineorflexeril\\.blogspot\\.com|tizanidinepain\\.blogspot\\.com|tizanidinepills\\.blogspot\\.com|tizanidinerecreationaluse\\.blogspot\\.com|tizanidinerestlesslegsyndrome\\.blogspot\\.com|tizanidineshowupondrugtest\\.blogspot\\.com|tizanidinesideeffects\\.blogspot\\.com|tizanidinesideeffectsweightloss\\.blogspot\\.com|tizanidinesleepaid\\.blogspot\\.com|tizanidinestreetprice\\.blogspot\\.com|tizanidinestreetvalue\\.blogspot\\.com|tizanidineusedfor\\.blogspot\\.com|tizanidinevscyclobenzaprine\\.blogspot\\.com|tizanidinevssoma\\.blogspot\\.com|tizanidinevsvalium\\.blogspot\\.com|tizanidinewithdrawal\\.blogspot\\.com|tizanidinewithdrawalsymptoms\\.blogspot\\.com|tizanidinezanaflex\\.blogspot\\.com|tkanorganizma\\.ru|tksn\\.ru|tocan\\.biz|tocan\\.com\\.ua|tokshow\\.online|toloka\\.hurtom\\.com|tomatis\\.gospartner\\.com|tomck\\.com|tommysautomotivecare\\.com|top\\-gan\\.ru|top\\-instagram\\.info|top\\-kasyna\\.com|top\\-l2\\.com|top1\\-seo\\-service\\.com|top10\\-online\\-games\\.com|top10\\-way\\.com|top250movies\\.ru|top8\\.co|topgurudeals\\.com|topmebeltorg\\.ru|topmira\\.com|toposvita\\.com|topquality\\.cf|topseoservices\\.co|topshef\\.ru|topvidos\\.ru|tor\\.vc|torobrand\\.com|torontoplumbinggroup\\.com|torospa\\.ru|torrentgamer\\.net|torrentred\\.games|torrents\\-tracker\\.com|torrnada\\.ru|torture\\.ml|totppgoods\\.xyz|touchmods\\.fr|tourburlington\\.com|tovaroboom\\.vast\\.ru|tpu\\.ru|track\\-rankings\\.online|tracker24\\-gps\\.ru|trade365\\.org|traderzplanet\\.co\\.in|trafaret74\\.ru|trafers\\.com|traffic\\-cash\\.xyz|traffic\\-paradise\\.org|traffic2cash\\.net|traffic2cash\\.org|traffic2cash\\.xyz|traffic2money\\.com|trafficbot\\.life|trafficbot4free\\.xyz|trafficdrive\\.club|trafficgenius\\.xyz|trafficmonetize\\.org|trafficmonetizer\\.org|trafficstudio\\.club|traffictomoney\\.com|trahvid\\.com|tramadolandtizanidine\\.blogspot\\.com|transit\\.in\\.ua|transsex\\-videochat\\.ru|traphouselatino\\.net|travel\\-semantics\\.com|travgoods\\.xyz|traxdom\\.ru|trex\\-casino\\.com|trex\\.casino|tri\\-slona\\.org|trick\\-negotiation\\-cup\\-wonder\\.com|tricolortv\\-online\\.com|trieste\\.io|trion\\.od\\.au|trion\\.od\\.ua|triumf\\-realty\\.ru|trk\\-4\\.net|trubywriting\\.com|truck\\-spite\\-lawyer\\-activity\\.top|truebeauty\\.cc|tsatu\\.edu\\.ua|tsc\\-koleso\\.ru|tsstcorpcddvdwshbbdriverfb\\.aircus\\.com|ttechno\\.net|tuberkulezanet\\.ru|tuberkuleznik\\.ru|tudusale\\.xyz|tula\\.mdverey\\.ru|tuningdom\\.ru|tupper\\-posuda\\.ru|tupper\\-shop\\.ru|turbo\\-suslik\\.org|turist\\-strani\\.ru|turkeyreport\\.tk|turvgori\\.ru|tvand\\.ru|tvfru\\.org|tvgoals\\.tv|tvoystartup\\.ru|twincitiescarservice\\.com|twojebook\\.pl|twsufa\\.ru|twu\\.com\\.ua|tytoona\\.com|tyumen\\.xrus\\.org|u\\-cheats\\.ru|u17795\\.netangels\\.ru|ua\\-company\\.ru|ua\\.tc|uaecdsale\\.xyz|uasb\\.ru|ublaze\\.ru|ucanfly\\.ru|ucban\\.xyz|uchebavchehii\\.ru|uchil\\.net|ucoz\\.ru|ucsfstore\\.xyz|ucsol\\.ru|uctraffic\\.com|udav\\.net|ufa\\.dienai\\.ru|ufa\\.xrus\\.org|ufolabs\\.net|uginekologa\\.com|ukrainian\\-poetry\\.com|ukrcargo\\.com|ukrtvory\\.in\\.ua|ukstmalls\\.xyz|ul\\-potolki\\.ru|ultimateuninstall\\.com|um\\-razum\\.ru|umg\\-stroy\\.ru|umityangin\\.net|undergroundcityphoto\\.com|uni\\.me|unibus\\.su|unimodemhalfduplefw\\.pen\\.io|uniqgen\\.net|unitygame3d\\.com|univerfiles\\.com|unlimitdocs\\.net|unmaroll\\.ya\\.ru|unpredictable\\.ga|upcronline\\.xyz|uptime\\-alpha\\.net|uptime\\-as\\.net|uptime\\-beta\\.net|uptime\\-delta\\.net|uptime\\-eu\\.net|uptime\\-gamma\\.net|uptime\\-us\\.net|uptime\\.com|uptimebot\\.net|uptimechecker\\.com|ural\\-buldozer\\.ru|urbanblog\\.shop|urbanchr\\.online|urblog\\.xyz|urccvfmc\\.bloger\\.index\\.hr|urlopener\\.blogspot\\.com\\.au|urlopener\\.com|urlumbrella\\.com|uruto\\.ru|us\\-america\\.ru|usadacha\\.net|userequip\\.com|uslugi\\-tatarstan\\.ru|ussearche\\.cf|ustion\\.ru|uterkysale\\.xyz|utrolive\\.ru|uusmsale\\.xyz|uyut\\-dom\\.pro|uyutmaster73\\.ru|uzpaket\\.com|uzungil\\.com|v\\-casino\\.fun|v\\-casino\\.host|v\\-casino\\.ru|v\\-casino\\.site|v\\-casino\\.website|v\\-casino\\.xyz|v\\-cazino\\.online|v\\-cazino\\.ru|vabasa\\.inwtrade\\.com|vaderenergy\\.ru|vadimkravtcov\\.ru|valid\\-cc\\.com|validccseller\\.com|validus\\.pro|valkiria\\-tk\\.ru|vanessablog\\.online|vape\\-x\\.ru|vapmedia\\.org|vapsy\\.com|vardenafil20\\.com|varikozdok\\.ru|vashsvet\\.com|vavada\\-casino\\.host|vavada\\-casino\\.top|vavada\\-cazino\\.host|vavada\\-cazino\\.site|vavilone\\.com|vbabule\\.net|vbikse\\.com|vc\\.ru|vchulkah\\.net|vduplo\\.ru|veerotech\\.com|vegascosmetics\\.ru|vekzdorov\\.ru|veles\\.shop|velobikestock\\.com|veloland\\.in\\.ua|venta\\-prom\\.ru|ventelnos\\.com|ventopt\\.by|veronicablog\\.top|vescenter\\.ru|veselokloun\\.ru|vesnatehno\\.com|vesnatehno\\.ru|vesta\\-lada\\.net|vetbvc\\.ru|vezdevoz\\.com\\.ua|vezuviy\\.su|vgoloveboli\\.net|via\\-gra\\.webstarts\\.com|viagra\\-soft\\.ru|viagra\\.pp\\.ua|viagroid\\.ru|viandpet\\.com|viberdownload10\\.com|video\\-\\-production\\.com|video\\-chat\\.in|video\\-girl\\-online\\.ru|video\\-hollywood\\.ru|video\\-woman\\.com|videochat\\-dating\\.ru|videochat\\.guru|videochat\\.mx|videochat\\.tv\\.br|videochat\\.world|videochaty\\.ru|videofrost\\.com|videofrost\\.net|videokrik\\.net|videos\\-for\\-your\\-business\\.com|videosbox\\.ru|videotop\\.biz|videotuber\\.ru|vidzwap\\.xyz|viel\\.su|vigrx\\-original\\.ru|viktoria\\-center\\.ru|vilingstore\\.net|vinsit\\.ru|vip\\-dom\\.in|vip\\-parfumeria\\.ru|vipsiterip\\.org|virtchats\\.ru|virtual\\-love\\-video\\.ru|virtual\\-sex\\-chat\\.ru|virtual\\-sex\\-time\\.ru|virtual\\-sex\\-videochat\\.ru|virtual\\-zaim\\.ru|virtualbb\\.com|virus\\-schutzmasken\\.de|visa\\-china\\.ru|visa\\-pasport\\.ru|vita\\.com\\.hr|vitanail\\.ru|viven\\.host\\.sk|vizag\\.kharkov\\.ua|vk\\-mus\\.ru|vk\\.com|vkak\\.ru|vkonche\\.com|vkontaktemusic\\.ru|vkontarkte\\.com|vksaver\\-all\\.ru|vksex\\.ru|vladhistory\\.com|vladtime\\.ru|vltai\\.com|vmnmvzsmn\\.over\\-blog\\.com|vod\\.com\\.ua|vodabur\\.by|vodaodessa\\.com|voditeltrezviy\\.ru|vodkoved\\.ru|volgograd\\.xrus\\.org|volond\\.com|voloomoney\\.com|volume\\-pills\\.biz|voprosotvet24\\.ru|voronezh\\.xrus\\.org|vostgard\\.com|vostoktrade\\.info|vote\\-up\\.ru|vozbujdenie\\.com|vpdr\\.pl|vpnhowto\\.info|vrazbor59\\.ru|vriel\\.batcave\\.net|vrnelectro\\.ru|vrnhnmall\\.xyz|vrotike\\.ru|vsdelke\\.ru|vseigru\\.one|vseigry\\.fun|vseprobrak\\.ru|vsesubwaysurfers\\.com|vseuznaem\\.com|vucms\\.com|vulkan\\-nadengi\\.ru|vulkan\\-oficial\\.com|vulkanrussia1\\.ru|vykup\\-avto\\-krasnodar\\.ru|vykupavto\\-krasnodar\\.ru|vzheludke\\.com|vzlom\\-na\\-zakaz\\.com|vzubah\\.com|vzube\\.com|vzubkah\\.com|w2mobile\\-za\\.com|w3javascript\\.com|w7s\\.ru|wakeupseoconsultant\\.com|wallabag\\.malooma\\.bzh|wallet\\-prlzn\\.space|wallinside\\.top|wallpaperdesk\\.info|wallpapers\\-all\\.com|wallpapers\\-best\\.com|wallpapersdesk\\.info|wallstore\\.xyz|wandamary\\.online|wapsite\\.me|warmex\\.com\\.ua|warningwar\\.ru|wasabisale\\.xyz|watch\\-movies\\.ru|wave\\-games\\.ru|wayfcoin\\.space|wbjm\\.net|wcb\\.su|wdfdocando\\.com|wdss\\.com\\.ua|we\\-ping\\-for\\-youian\\.info|we\\-ping\\-for\\-youic\\.info|web\\-analytics\\.date|web\\-betting\\.ru|web\\-lazy\\-services\\.review|web\\-list\\.xyz|web\\-revenue\\.xyz|web\\.cvut\\.cz|webalex\\.pro|webinstantservice\\.com|webix\\.me|webjam\\.com|weblibrary\\.win|webmaster\\-traffic\\.com|webmonetizer\\.net|webradiology\\.ru|webs\\.com|website\\-analytics\\.online|website\\-analyzer\\.info|website\\-errors\\-scanner\\.com|website\\-services\\-promotion\\.bid|website\\-services\\-promotion\\.review|website\\-services\\-promotion\\.stream|website\\-services\\-promotion\\.win|website\\-services\\-seo\\.bid|website\\-services\\-seo\\.stream|website\\-services\\-seo\\.win|website\\-services\\-smm\\.bid|website\\-services\\-smm\\.review|website\\-services\\-smm\\.stream|website\\-services\\-smm\\.win|website\\-services\\.review|website\\-services\\.stream|website\\-services\\.win|website\\-speed\\-check\\.site|website\\-speed\\-checker\\.site|website\\-speed\\-up\\.site|website\\-speed\\-up\\.top|website\\-stealer\\-warning\\-alert\\.hdmoviecams\\.com|websitebottraffic\\.club|websitebottraffic\\.host|websites\\-reviews\\.com|websocial\\.me|webtherapy\\.ru|weburlopener\\.com|wedding\\-salon\\.net|weebly\\.com|weekes\\.biz\\.tc|weightatraining\\.com|weightbelts\\.ru|welck\\.octopis\\.com|welcomeauto\\.ru|weprik\\.ru|wetgames\\.ru|wfdesigngroup\\.com|whatistizanidine2mg\\.blogspot\\.com|whatistizanidinehclusedfor\\.blogspot\\.com|whatsappdownload10\\.com|whereiskentoday\\.com|wicivow\\.007h\\.ml|wikes\\.20fr\\.com|williamrobsonproperty\\.com|winx\\-play\\.ru|witherrom55\\.eklablog\\.fr|wjxmenye\\.com|wmasterlead\\.com|wnoz\\.de|woman\\-h\\.ru|woman\\-orgasm\\.ru|woman\\-tampon\\.ru|womens\\-journal\\.net|womensplay\\.net|womensterritory\\.ru|wordpress\\-crew\\.net|wordpresscore\\.com|work\\-from\\-home\\-earn\\-money\\-online\\.com|workius\\.ru|workona\\.com|works\\.if\\.ua|world\\-mmo\\.com|worldgamenews\\.com|worldhistory\\.biz|worldis\\.me|worldlovers\\.ru|worldmed\\.info|worldofbtc\\.com|wormix\\-cheats\\.ru|wowas31\\.ucoz\\.ru|woweb\\.com\\.ua|wpnull\\.org|wptraffic\\.xyz|wrazilwispolecznie\\.pl|wrc\\-info\\.ru|writingservices17\\.blogspot\\.ru|wrona\\.it|wstroika\\.ru|wufak\\.com|wurr\\.voila\\.net|ww1943\\.ru|ww2awards\\.info|www\\-lk\\-rt\\.ru|www\\.gelendzhic\\.ru|www1\\.free\\-share\\-buttons\\.top|wzgyyq\\.com|x\\-lime\\.com|x\\-lime\\.net|x\\-musics\\.com|x\\-stars\\.ru|x5market\\.ru|xaker26\\.net|xbaboon\\.com|xboxster\\.ru|xexe\\.club|xfire\\.com|xgftnlrt\\.bloger\\.index\\.hr|xion\\.cash|xjrul\\.com|xkaz\\.org|xlolitka\\.com|xmnb\\.net|xn\\-\\-\\-\\-\\-\\-\\-53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-\\-6cdbciescapvf0a8bibwx0a1bu\\.xn\\-\\-90ais|xn\\-\\-\\-\\-\\-6kcaacnblni5c5bicdpcmficy\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-6kcamwewcd9bayelq\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-7kcaaxchbbmgncr7chzy0k0hk\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-7kceclhb4abre1b4a0ccl2fxch1a\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-8kcatubaocd1bneepefojs1h2e\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-clckdac3bsfgdft3aebjp5etek\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabb9a1b7bddgm6a1i\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabhjc3ccc5aggbzfmfi\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabhv4abd8aih6bb7k\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabm1ahc4b2aqff\\.su|xn\\-\\-\\-\\-7sbabn5abjehfwi8bj\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbaphztdjeboffeiof6c\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbbpe3afguye\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbho2agebbhlivy\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbaki4azawu5b\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbarihbihxpxqgaf0g1e\\.xn\\-\\-80adxhks|xn\\-\\-\\-\\-8sbbjimdeyfsi\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbdbjgb1ap7a9c4czbh\\.xn\\-\\-p1acf|xn\\-\\-\\-\\-8sbhefaln6acifdaon5c6f4axh\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sblgmbj1a1bk8l\\.xn\\-\\-\\-\\-161\\-4vemb6cjl7anbaea3afninj\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbowe2akbcd4h\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbpmgeilbd8achi0c\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-btbdvdh4aafrfciljm6k\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ctbbcjd3dbsehgi\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ctbfcdjl8baejhfb1oh\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ctbigni3aj4h\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-dtbffp5aagjgfm\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ftbeoaiyg1ak1cb7d\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-gtbdb0beu1bb8gj\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-itbbudqejbfpg3l\\.com|xn\\-\\-\\-\\-jtbjfcbdfr0afji4m\\.xn\\-\\-p1ai|xn\\-\\-78\\-6kc6akkhn3a3k\\.xn\\-\\-p1ai|xn\\-\\-78\\-6kcmzqfpcb1amd1q\\.xn\\-\\-p1ai|xn\\-\\-80aaafbn2bc2ahdfrfkln6l\\.xn\\-\\-p1ai|xn\\-\\-80aaajbdbddwj2alwjieei2afr3v\\.xn\\-\\-p1ai|xn\\-\\-80aaajkrncdlqdh6ane8t\\.xn\\-\\-p1ai|xn\\-\\-80aaaks3bbhabgbigamdr2h\\.xn\\-\\-p1ai|xn\\-\\-80aabcsc3bqirlt\\.xn\\-\\-p1ai|xn\\-\\-80aanaardaperhcem4a6i\\.com|xn\\-\\-80ab4aa2g\\.xn\\-\\-p1ai|xn\\-\\-80adaggc5bdhlfamsfdij4p7b\\.xn\\-\\-p1ai|xn\\-\\-80adgcaax6acohn6r\\.xn\\-\\-p1ai|xn\\-\\-80aeahghtf8ac5i\\.xn\\-\\-p1ai|xn\\-\\-80aeb6argv\\.xn\\-\\-p1ai|xn\\-\\-80aebzmbfeebe\\.xn\\-\\-p1ai|xn\\-\\-80ahdheogk5l\\.xn\\-\\-p1ai|xn\\-\\-80ahvj9e\\.xn\\-\\-p1ai|xn\\-\\-80ajbshivpvn2i\\.xn\\-\\-p1ai|xn\\-\\-80ajjbdhgmudixfjc8c5a9df8b\\.xn\\-\\-p1ai|xn\\-\\-90acenikpebbdd4f6d\\.xn\\-\\-p1ai|xn\\-\\-90acjmaltae3acm\\.xn\\-\\-p1acf|xn\\-\\-90adhhccf5aeewt7j\\.xn\\-\\-p1ai|xn\\-\\-b1adccayqiirhu\\.xn\\-\\-p1ai|xn\\-\\-b1ag5cfn\\.xn\\-\\-p1ai|xn\\-\\-b1agm2d\\.net|xn\\-\\-c1acygb\\.xn\\-\\-p1ai|xn\\-\\-d1abj0abs9d\\.in\\.ua|xn\\-\\-d1aifoe0a9a\\.top|xn\\-\\-e1aaajzchnkg\\.ru\\.com|xn\\-\\-e1aahcgdjkg4aeje6j\\.kz|xn\\-\\-e1agf4c\\.xn\\-\\-80adxhks|xn\\-\\-e1aggki3c\\.xn\\-\\-80adxhks|xn\\-\\-h1ahbi\\.com\\.ua|xn\\-\\-hxazdsfy\\.blogspot\\.com|xn\\-\\-l1aengat\\.xn\\-\\-p1ai|xn\\-\\-mhg\\.com|xn\\-\\-oogle\\-wmc\\.com|xn\\-\\-q1a\\.xn\\-\\-b1aube0e\\.xn\\-\\-c1acygb\\.xn\\-\\-p1ai|xnxx\\-n\\.com|xolodremont\\.ru|xpert\\.com\\.ua|xportvusbdriver8i\\.snack\\.ws|xpresscare\\.ru|xrp\\-ripple\\.info|xrus\\.org|xsion\\.net|xtraffic\\.plus|xtrafficplus\\.com|xtrafficplus\\.online|xtrafficplus\\.shop|xtrafficplus\\.xyz|xtubeporno\\.net|xvideosbay\\.com|xxart\\.ru|xxx\\-treker\\.ru|xxxhamster\\.me|xxxtube69\\.com|xxxvideochat\\.ru|xz618\\.com|xzlive\\.com|yaderenergy\\.ru|yaminecraft\\.ru|yeartwit\\.com|yellowstonevisitortours\\.com|yes\\-com\\.com|yes\\-do\\-now\\.com|yhirurga\\.ru|ykecwqlixx\\.ru|ynymnwbm\\.bloger\\.index\\.hr|yodse\\.io|yoga4\\.ru|youandcredit\\.ru|youbloodyripper\\.com|youdesigner\\.kz|yougame\\.biz|yougetsignal\\.com|youghbould\\.wordpress\\.com|youhack\\.info|youjizz\\.vc|youporn\\-forum\\.ga|youporn\\-forum\\.uni\\.me|youporn\\-ru\\.com|your\\-good\\-links\\.com|your\\-tales\\.ru|yourdesires\\.ru|youresponsive\\.com|yourothersite\\.com|yoursearch\\.me|yourserverisdown\\.com|yoursite\\.com|yourtraffic\\.club|youtoner\\.it|youtubedownload\\.org|yqpc\\.net|yuarra\\.pluto\\.ro|yubikk\\.info|yugk\\.net|yugo\\-star\\.ru|yunque\\.pluto\\.ro|yur\\-p\\.ru|yurcons\\.pro|yurgorod\\.ru|yuristproffi\\.ru|zagadki\\.in\\.ua|zahodi2hydra\\.net|zahvat\\.ru|zaidia\\.xhost\\.ro|zaim\\-pod\\-zalog\\-krasnodar\\.ru|zaimhelp\\.ru|zajm\\-pod\\-zalog\\-nedvizhimosti\\.ru|zakazfutbolki\\.com|zakaznoy\\.com\\.ua|zakazvzloma\\.com|zakis\\-azota24\\.ru|zakisazota\\-official\\.com|zakon\\-ob\\-obrazovanii\\.ru|zaloadi\\.ru|zamolotkom\\.ru|zapnado\\.ru|zarabotat\\-na\\-sajte\\.ru|zarabotat\\-v\\-internete\\.biz|zarenica\\.net|zastenchivosti\\.net|zastroyka\\.org|zavod\\-gm\\.ru|zazagames\\.org|zdesformula\\.ru|zdesoboi\\.com|zdm\\-auto\\.com|zdm\\-auto\\.ru|zdorovie\\-nogi\\.info|zebradudka\\.com|zelena\\-mriya\\.com\\.ua|zeleznobeton\\.ru|zerocash\\.msk\\.ru|zexhgoods\\.xyz|zhcsapp\\.net|zhoobintravel\\.com|zhorapankratov7\\.blogspot\\.com|zigarettenonl\\.canalblog\\.com|zigarettenonlinekaufen\\.tumblr\\.com|zigarettenonlinekaufen1\\.bloog\\.pl|zigarettenonlinekaufen1\\.blox\\.pl|zigarettenonlinekaufen2\\.bloog\\.pl|zigarettenonlinekaufen2\\.drupalgardens\\.com|zigzog\\.ru|zlatnajesen\\.com|zmoda\\.hostreo\\.com|znakomstva\\-moskva77\\.ru|znakomstva\\-piter78\\.ru|znakomstvaonlain\\.ru|znaniyapolza\\.ru|zojirushi\\-products\\.ru|zolotoy\\-lis\\.ru|zonefiles\\.bid|zoominfo\\.com|zot\\.moscow|zt\\-m\\.ru|zuchn\\.com|zverokruh\\-shop\\.cz|zvetki\\.ru|zvooq\\.eu|zvuker\\.net|zyzzcentral\\.ru"
  },
  {
    "path": "google-exclude-4.txt",
    "content": "obnallpro\\.cc|obsessionphrases\\.com|obuv\\-kupit\\.ru|obyavka\\.org\\.ua|obzor\\-casino\\-x\\.online|obzor\\-casino\\-x\\.ru|ochistka\\-stokov\\.ru|odesproperty\\.com|odiabetikah\\.com|odsadsmobile\\.biz|odywpjtw\\.bloger\\.index\\.hr|ofermerah\\.com|offers\\.bycontext\\.com|office\\-windows\\.ru|office2web\\.com|officedocuments\\.net|offtime\\.ru|ogorodnic\\.com|ok\\.ru|oklogistic\\.ru|okna\\-systems\\.pro|okno\\.ooo|okoshkah\\.com|okout\\.ru/a00af605|okroshki\\.ru|oktube\\.ru|oledonline\\.xyz|olovoley\\.ru|olvanto\\.ru|omega\\.best|omsk\\.xrus\\.org|one\\-a\\-plus\\.xyz|one\\-gear\\.com|onefilms\\.net|onenews24\\.ru|onion20hydra\\.ru|onionhydra\\.net|onionshydra\\.com|online\\-akbars\\.ru|online\\-binbank\\.ru|online\\-hit\\.info|online\\-intim\\.com|online\\-mkb\\.ru|online\\-pharma\\.ru|online\\-pochtabank\\.ru|online\\-raiffeisen\\.ru|online\\-sbank\\.ru|online\\-templatestore\\.com|online\\-video\\-chat\\.ru|online\\-vostbank\\.ru|online\\-vtb\\.ru|online\\-x\\.ru|online\\.ktc45\\.ru|onlinebay\\.ru|onlinedic\\.net|onlinedomains\\.ru|onlinefilmz\\.net|onlineserialy\\.ru|onlinetvseries\\.me|onlinewot\\.ru|onlinewritingjobs17\\.blogspot\\.ru|onload\\.pw|onlyforemont\\.ru|onlythegames\\.com|onlywoman\\.org|oohlivecams\\.com|ooo\\-gotovie\\.ru|ooo\\-olni\\.ru|oooh\\.pro|openfrost\\.com|openfrost\\.net|openlibrary\\.org|openmediasoft\\.com|ops\\.picscout\\.com|optitrade24\\.com|optsol\\.ru|oqex\\.io|oracle\\-patches\\.ru|orakul\\.spb\\.ru|oranga\\.host\\.sk|order\\-prime\\-smm\\-service\\.party|ordernorxx\\.com|orel\\-reshka\\.net|oren\\-cats\\.ru|origin\\-my\\.ru|ororodnik\\.goodbb\\.ru|osb\\.se11\\.ru|osoznanie\\-narkotikam\\.net|osteochondrosis\\.ru|ostroike\\.org|ostrovtaxi\\.ru|otbelivanie\\-zubov\\.com|otdbiaxaem\\-vmeste\\.ru|otdyx\\-s\\-komfortom\\.ru|oudallas\\.net|ourtherapy\\.ru|outshop\\.ru|ovirus\\.ru|own\\-ahrefs\\.com|ownshop\\.cf|owohho\\.com|ozas\\.net|p\\-business\\.ru|paceform\\.com|pacobarrero\\.com|pageinsider\\.org|paidonlinesites\\.com|painting\\-planet\\.com|palma\\-de\\-sochi\\.ru|palvira\\.com\\.au|palvira\\.com\\.ua|pamjatnik\\.com\\.ua|pammik\\.ru|pamyatnik\\-spb\\.ru|pamyatnik\\-tsena\\.ru|pandoshop\\.xyz|paparazzistudios\\.com\\.au|paperwritingservice17\\.blogspot\\.ru|paradontozanet\\.ru|parcsmalls\\.xyz|paretto\\.ru|parking\\-invest\\.ru|partizan19\\.ru|partnerskie\\-programmy\\.net|patonsale\\.xyz|paulinho\\.ru|pay\\.ru|paydayonlinecom\\.com|pc\\-services\\.ru|pechikamini\\.ru|pecmastore\\.xyz|pensplan\\.com|pensplan4u\\.com|penzu\\.xyz|percin\\.biz\\.ly|perfection\\-pleasure\\.ru|perform\\-like\\-alibabaity\\.info|perform\\-likeism\\-alibaba\\.info|perimetor\\.ru|perm\\.dienai\\.ru|perm\\.xrus\\.org|perper\\.ru|perso\\.wanadoo\\.es|personalhoro\\.ru|petedrummond\\.com|petroleumgeo\\.com|petrovka\\-online\\.com|petrushka\\-restoran\\.ru|petscar\\.ru|pfrf\\-kabinet\\.ru|pharm\\-\\-shop\\.ru|phimmakinhdi\\.com|phobia\\.us|photo\\-clip\\.ru|photo\\.houseofgaga\\.ru|photochki\\.com|photokitchendesign\\.com|photorepair\\.ru|php\\-market\\.ru|physfunc\\.ru|picscout\\.com|picturesmania\\.com|pills24h\\.com|piluli\\.info|pinkduck\\.ga|pinupcasinos\\.ru|pinupcasinos1\\.ru|pinupp1\\.com|pipki\\.pp\\.ua|piratbike\\.ru|pirateday\\.ru|pirelli\\-matador\\.ru|pisze\\.pisz\\.pl|piter\\.xrus\\.org|piulatte\\.cz|pizdeishn\\.com|pizdeishn\\.net|pizza\\-imperia\\.com|pizza\\-tycoon\\.com|pk\\-pomosch\\.ru|pk\\-services\\.ru|pkr1hand\\.com|plagscan\\.com|plastweb\\.ru|platesauto\\.com|platinumdeals\\.gr|plohaya\\-kreditnaya\\-istoriya\\.ru|plusnetwork\\.com|pochemychka\\.net|podarkilove\\.ru|poddon\\-moskva\\.ru|podemnik\\.pro|podseka1\\.ru|pogodnyyeavarii\\.gq|pogosh\\.com|pogruztehnik\\.ru|poisk\\-zakona\\.ru|poiskzakona\\.ru|pokemongooo\\.ml|poker\\-royal777\\.com|pokupaylegko\\.ru|polcin\\.de|polemikon\\.ru|politika\\.bg|polyana\\-skazok\\.org\\.ua|pomoc\\-drogowa\\.cba\\.pl|pony\\-business\\.com|popads\\.net|popelina\\.com|pops\\.foundation|popugauka\\.ru|popugaychiki\\.com|popular\\-church\\-arrow\\-voucher\\.info|popup\\-fdm\\.xyz|popup\\-hgd\\.xyz|popup\\-jdh\\.xyz|porn\\-video\\-chat\\.ru|porn\\-w\\.org|porndl\\.org|pornhive\\.org|pornhub\\-forum\\.ga|pornhub\\-forum\\.uni\\.me|pornhub\\-ru\\.com|pornhubforum\\.tk|porno\\-asia\\.com|porno\\-chaman\\.info|porno\\-dojki\\.net|porno\\-gallery\\.ru|porno\\-play\\.net|porno\\-raskazy\\.ru|porno\\-transsexuals\\.ru|porno\\-video\\-chati\\.ru|porno2xl\\.net|pornobest\\.su|pornoblood\\.com|pornobrazzers\\.biz|pornodojd\\.ru|pornoelita\\.info|pornofiljmi\\.com|pornoforadult\\.com|pornofoto\\.org|pornogig\\.com|pornohd1080\\.online|pornokajf\\.com|pornoklad\\.net|pornoklad\\.ru|pornokorol\\.com|pornonik\\.com|pornophoto\\.xyz|pornoplen\\.com|pornorasskazy\\.net|pornosemki\\.info|pornoslave\\.net|pornotubexxx\\.name|porodasobak\\.net|portal\\-eu\\.ru|portnoff\\.od\\.au|portnoff\\.od\\.ua|poshiv\\-chehol\\.ru|positive2b\\.ru|pospektr\\.ru|postclass\\.com|posteezy\\.xyz|potolokelekor\\.ru|povodok\\-shop\\.ru|powitania\\.pl|pozdravleniya\\-c\\.ru|pozdrawleniya\\.com|pozdrawleniya\\.ru|pozvonim\\.com|pp\\-budpostach\\.com\\.ua|pravoholding\\.ru|predmety\\.in\\.ua|prezidentshop\\.ru|priceg\\.com|pricheskaonline\\.ru|pricheski\\-video\\.com|primfootball\\.com|primoblog\\.xyz|princeadvantagesales\\.com|print\\-technology\\.ru|printie\\.com|printingpeach\\.com|priora\\-2\\.com|privatbank46\\.ru|private\\-service\\.best|privatov\\-zapisi\\.ru|privhosting\\.com|prizesk\\.com|prizrn\\.site|prlog\\.ru|pro\\-okis\\.ru|probenzo\\.com\\.ua|procrafts\\.ru|prodaemdveri\\.com|producm\\.ru|prodvigator\\.au|prodvigator\\.ua|proekt\\-gaz\\.ru|proekt\\-mos\\.ru|professionalsolutions\\.eu|professionalwritingservices15\\.blogspot\\.ru|profnastil\\-moscow\\.ru|proftests\\.net|progressive\\-seo\\.com|prohoster\\.info|prointer\\.net\\.au|prointer\\.net\\.ua|projectforte\\.ru|projefrio\\.com\\.br|prokotov\\.com|prom23\\.ru|prombudpostach\\.com\\.ua|promodj\\.com|promoforum\\.ru|promoteapps\\.online|promotion\\-for99\\.com|pron\\.pro|pronekut\\.com|proposal\\-engine\\.com|propranolol40mg\\.blogspot\\.com|proquoshop\\.xyz|prosmibank\\.ru|prostitutki\\-almata\\.org|prostitutki\\-astana\\.org|prostitutki\\-belgoroda\\.org|prostitutki\\-kharkova\\.org|prostitutki\\-kiev\\.org|prostitutki\\-novgoroda\\.org|prostitutki\\-odessa\\.org|prostitutki\\-rostova\\.org|prostitutki\\-rostova\\.ru\\.com|prostitutki\\-tolyatti\\.org|prostitutki\\-tyumeni\\.org|prostitutki\\-yaroslavlya\\.org|prostoacc\\.com|psa48\\.ru|psiosale\\.xyz|pskcijdc\\.bloger\\.index\\.hr|psn\\-card\\.ru|psvita\\.ru|psychocryonics\\.net|ptashkatextil\\.ua|ptfic\\.org|punch\\.media|purchasepillsnorx\\.com|puteshestvennik\\.com|putevka24\\.ru|putitin\\.me|puzo2arbuza\\.ru|puzzleweb\\.ru|pyrodesigns\\.com\\.au|q\\-moto\\.ru|qcstrtvt\\.bloger\\.index\\.hr|qexyfu\\.bugs3\\.com|qitt\\.ru|qoinex\\.top|qtrstar\\.xyz|qualitymarketzone\\.com|quick\\-seeker\\.com|quickchange\\.cc|quit\\-smoking\\.ga|qwarckoine\\.com|qwesa\\.ru|qxnr\\.net|r\\-control\\.ru|rabot\\.host\\.sk|rabotaetvse\\.ru|rachelblog\\.online|radiogambling\\.com|rainbirds\\.ru|ranedaly\\.net|rangapoker\\.com|rangjued\\.com|rank\\-checker\\.online|rankchecker\\.online|ranking2017\\.ga|rankings\\-analytics\\.com|ranksays\\.com|rankscanner\\.com|ranksignals\\.com|ranksonic\\.com|ranksonic\\.info|ranksonic\\.net|ranksonic\\.org|rapevideosmovies\\.com|rapidgator\\-porn\\.ga|rapidsites\\.pro|raschtextil\\.com\\.ua|rasteniya\\-vs\\-zombi\\.ru|rattan\\.co\\.ua|raymondblog\\.top|razamicroelectronics\\.com|razborka\\-skoda\\.org\\.ua|rb\\-str\\.ru|rcb101\\.ru|rczhan\\.com|real\\-time\\-analytics\\.com|realnye\\-otzyvy\\.info|realresultslist\\.com|realting\\-moscow\\.ru|recinziireale\\.com|recipedays\\.com|recipedays\\.ru|rednise\\.com|redraincine\\.com|refererx\\.com|refpawro\\.xyz|refudiatethissarah\\.info|reginablog\\.top|reginanahum\\.top|regionshop\\.biz|registratciya\\-v\\-moskve\\.ru|reklama\\-i\\-rabota\\.ru|reklama1\\.ru|reklamnoe\\.agency|reklamuss\\.ru|releshop\\.ru|rembash\\.ru|remedyotc\\.com|remkompov\\.ru|remmling\\.de|remont\\-comp\\-pomosh\\.ru|remont\\-fridge\\-tv\\.ru|remont\\-komputerov\\-notebook\\.ru|remont\\-kvartirspb\\.com|remont\\-mobile\\-phones\\.ru|remont\\-ustanovka\\-tehniki\\.ru|remontgruzovik\\.ru|remontvau\\.ru|remote\\-dba\\.de|remotecomputingservices\\.net|rent2spb\\.ru|rentalmaty\\.kz|replica\\-watch\\.ru|replicaclub\\.ru|research\\.ifmo\\.ru|resell\\-seo\\-services\\.com|resellerclub\\.com|residualforlife\\.com|responsive\\-test\\.net|respublica\\-otel\\.ru|resurs\\-2012\\.ru|retreatia\\.com|reversing\\.cc|revolgc\\.pro|reyel1985\\.webnode\\.fr|rezeptiblud\\.ru|rfavon\\.ru|rfd\\-split\\.hr|rfesc\\.net|rialp\\.getenjoyment\\.net|richinvestmonitor\\.com|riedismall\\.xyz|rietisvi\\.co|rightenergysolutions\\.com\\.au|ring4rhino\\.com|ringporno\\.com|rique\\.host\\.sk|risparmiocasa\\.bz\\.it|rkmbonline\\.xyz|robocheck\\.info|robot\\-forex\\.biz|roleforum\\.ru|roma\\-kukareku\\.livejournal\\.com|roof\\-city\\.ru|room\\-mebel\\.ru|ros\\-ctm\\.ru|rospromtest\\.ru|rossanasaavedra\\.net|rossmark\\.ru|rostov\\.xrus\\.org|royal\\-betting\\.net|royal\\-casino\\.online|royal\\-casino\\.ru|royal\\-casinos\\.online|royal\\-casinos\\.ru|royal\\-cazino\\.online|royal\\-cazino\\.ru|royal\\-investments\\.net|rozalli\\.com|roznica\\.com\\.ua|rp9\\.ru|rrutw\\.com|rspectr\\.com|ru\\-lk\\-rt\\.ru|ru\\-onion\\.com|ru\\-online\\-sberbank\\.ru|ruex\\.org\\.ua|rufreechats\\.com|ruhydraru\\.ru|ruinfocomp\\.ru|rulate\\.ru|rumamba\\.com|runetki\\-online\\.net|runovschool\\.ua|runstocks\\.com|rupolitshow\\.ru|rus\\-lit\\.com|rus\\-teh\\.narod\\.ru|ruscams\\-com\\.ru|ruscopybook\\.com|rusenvironmental\\.net|rusexy\\.xyz|rusoft\\-zone\\.ru|ruspoety\\.ru|russia\\-tao\\.ru|russia\\-today\\-video\\.ru|russian\\-postindex\\.ru|russian\\-translator\\.com|russian\\-videochats\\.ru|russintv\\.fr|russkie\\-sochineniya\\.ru|russkoe\\-zdorovie\\.ru|rustag\\.ru|rutor\\.group|rvtv\\.ru|rxshop\\.md|rybalka\\-opt\\.ru|s\\-forum\\.biz|s\\-luna\\.me|sabaapress\\.com|sabinablog\\.xyz|sack\\.net|sad\\-torg\\.com\\.ua|sady\\-urala\\.ru|sahohev\\.000host\\.co\\.uk|saitevpatorii\\.com|sakhboard\\.ru|sale\\-japan\\.com|saletool\\.ru|saltspray\\.ru|salutmontreal\\.com|samanthablog\\.online|samara\\-airport\\.com|samara\\-comfort\\.ru|samchist\\.ru|samlaurabrown\\.top|samo\\-soznanie\\.ru|samogonius\\.ru|sanatorrii\\.ru|sanjosestartups\\.com|santaren\\.by|santasgift\\.ml|santechnik\\.jimdo\\.com|santehnovich\\.ru|sapaship\\.ru|sarafangel\\.ru|sarahmilne\\.top|saratov\\.xrus\\.org|sarf3omlat\\.com|sashagreyblog\\.ga|saudegoods\\.xyz|sauna\\-v\\-ufe\\.ru|sauni\\-lipetsk\\.ru|sauni\\-moskva\\.ru|savetubevideo\\.com|savetubevideo\\.info|savne\\.org|sax\\-sex\\.com|sbdl\\.no|sbornik\\-zakonov\\.ru|sc\\-specialhost\\.com|scanner\\-alex\\.top|scanner\\-alexa\\.top|scanner\\-andrew\\.top|scanner\\-barak\\.top|scanner\\-brian\\.top|scanner\\-don\\.top|scanner\\-donald\\.top|scanner\\-elena\\.top|scanner\\-fred\\.top|scanner\\-george\\.top|scanner\\-irvin\\.top|scanner\\-ivan\\.top|scanner\\-jack\\.top|scanner\\-jane\\.top|scanner\\-jess\\.top|scanner\\-jessica\\.top|scanner\\-john\\.top|scanner\\-josh\\.top|scanner\\-julia\\.top|scanner\\-julianna\\.top|scanner\\-margo\\.top|scanner\\-mark\\.top|scanner\\-marwin\\.top|scanner\\-mary\\.top|scanner\\-nelson\\.top|scanner\\-olga\\.top|scanner\\-viktor\\.top|scanner\\-walt\\.top|scanner\\-walter\\.top|scanner\\-willy\\.top|scansafe\\.net|scat\\.porn|scenarii\\-1\\-sentyabrya\\.uroki\\.org\\.ua|school\\-diplomat\\.ru|sciedsale\\.xyz|score\\-prime\\-web\\-service\\.stream|screen\\-led\\.ru|screentoolkit\\.com|scripted\\.com|sdelai\\-prosto\\.ru|sdelatmebel\\.ru|sdi\\-pme\\.com|search\\-error\\.com|search\\-helper\\.ru|searchencrypt\\.com|searchlock\\.com|seccioncontrabajo\\.com|secret\\.xn\\-\\-oogle\\-wmc\\.com|secretscook\\.ru|security\\-corporation\\.com\\.ua|securityallianceservices\\.com|see\\-your\\-website\\-here\\.com|seekanvdoo22\\.live|seisasale\\.xyz|seksotur\\.ru|sel\\-hoz\\.com|selfhotdog\\.com|sell\\-fb\\-group\\-here\\.com|semalt\\.com|semalt\\.net|semalt\\.semalt\\.com|semaltmedia\\.com|semxiu\\.com|senacertificados\\.co|senger\\.atspace\\.co\\.uk|seo\\-2\\-0\\.com|seo\\-b2b\\.com|seo\\-platform\\.com|seo\\-services\\-b2b\\.com|seo\\-services\\-wordpress\\.com|seo\\-smm\\.kz|seo\\-tips\\.top|seo\\-traffic\\.xyz|seoanalyses\\.com|seobook\\.top|seocheckupx\\.com|seocheckupx\\.net|seoexperimenty\\.ru|seojokes\\.net|seokicks\\.de|seopub\\.net|seoriseome\\.netlify\\.app|seoservices2018\\.com|serenamall\\.xyz|serialsway\\.ucoz\\.ru|serialsx\\.ru|servemlixo\\.xyz|servisural\\.ru|serw\\.clicksor\\.com|seryeznie\\-znakomstva\\.ru|setioweb\\.com|sex\\-dating\\.co|sex\\-porno\\.site|sex\\-spying\\.ru|sex\\-videochats\\.ru|sexkrasivo\\.net|sexpornotales\\.net|sexreliz\\.com|sexreliz\\.net|sexsaoy\\.com|sexuria\\.net|sexvideo\\-sex\\.com|sexvporno\\.ru|sexwife\\.net|sexy\\-girl\\-chat\\.ru|sexyali\\.com|sexyteens\\.hol\\.es|sexytrend\\.ru|sfd\\-chess\\.ru|shagtomsk\\.ru|shakhtar\\-doneck\\.ru|shamcisale\\.xyz|shanscasino1\\.ru|share\\-button\\.xyz|share\\-buttons\\-for\\-free\\.com|share\\-buttons\\.xyz|sharebutton\\.io|sharebutton\\.net|sharebutton\\.org|sharebutton\\.to|sharemyfile\\.ru|shariki\\-zuma\\-lines\\.ru|shcrose\\.com|sheki\\-spb\\.ru|shemy\\-vishivki\\.com|shiksabd\\.com|shinikiev\\.com\\.ua|ship\\-marvel\\.co\\.ua|shisenshop\\.xyz|shisha\\-swag\\.de|shlyahten\\.ru|shnyagi\\.net|shodanhq\\.com|shop\\-electron\\.ru|shop\\-garena\\.ru|shop\\.garena\\.ru\\.com|shop\\.xz618\\.com|shop2hydra\\.com|shop4fit\\.ru|shopfishing\\.com\\.ua|shoppinglocation\\.com|shoppingmiracles\\.co\\.uk|shoprybalka\\.ru|shops\\-ru\\.ru|shopsellcardsdumps\\.com|shopvilleroyboch\\.com\\.ua|shopwme\\.ru|shtaketniki\\.ru|shtormmall\\.xyz|shulepov\\.ru|sib\\-kukla\\.ru|sibecoprom\\.ru|sibkukla\\.ru|sideeffectsoftizanidine\\.blogspot\\.com|sign\\-service\\.ru|signx\\.info|sihugoods\\.xyz|silverage\\.ru|silvergull\\.ru|silvermature\\.net|sim\\-dealer\\.ru|sim\\-service\\.net|similarmoviesdb\\.com|simoncinicancertherapy\\.com|simple\\-share\\-buttons\\.com|simplepooltips\\.com|sims\\-sims\\.ru|sinel\\.info|sinestesia\\.host\\.sk|singularwebs\\.net|sinhronperevod\\.ru|siongetadsincome\\.info|sirhoutlet\\.xyz|siritshop\\.xyz|sisiynas\\.ru|site\\-auditor\\.online|site\\-speed\\-check\\.site|site\\-speed\\-checker\\.site|site3\\.free\\-share\\-buttons\\.com|site5\\.com|siteexpress\\.co\\.il|siteripz\\.net|sitesadd\\.com|sitevaluation\\.com|sitevaluation\\.org|sivs\\.ru|sjmsw\\.net|sk\\.golden\\-praga\\.ru|ski\\-centers\\.com|skidku\\.org\\.ua|skinali\\.com|skinali\\.photo\\-clip\\.ru|sklad\\-24\\.ru|skladvaz\\.ru|sky\\-mine\\.ru|skylta\\.com|sladkoevideo\\.com|slavic\\-magic\\.ru|slavkokacunko\\.de|sledstvie\\-veli\\.net|slftsdybbg\\.ru|slkrm\\.ru|slomm\\.ru|slonechka\\.ru|sloopyjoes\\.com\\.top|slotron\\.com|slow\\-website\\.xyz|slujbauborki\\.ru|smailik\\.org|small\\-game\\.com|small\\-games\\.biz|smartpet\\.ru|smartphonediscount\\.info|sms2x2\\.ru|smstraf\\.ru|smt4\\.ru|smzt\\.shop|snabs\\.kz|snaiper\\-bg\\.net|sneakerfreaker\\.com|snegozaderzhatel\\.ru|snip\\.to|snip\\.tw|snjatie\\-geroinovoy\\-lomki\\.ru|snomer1\\.ru|snyatie\\-lomki\\-v\\-stacionare\\.ru|soaksoak\\.ru|soblaznu\\.net|soc\\-econom\\-problems\\.ru|soc\\-proof\\.su|socas\\.pluto\\.ro|sochi\\-3d\\.ru|social\\-button\\.xyz|social\\-buttons\\-aa\\.xyz|social\\-buttons\\-aaa\\.xyz|social\\-buttons\\-bb\\.xyz|social\\-buttons\\-bbb\\.xyz|social\\-buttons\\-cc\\.xyz|social\\-buttons\\-ccc\\.xyz|social\\-buttons\\-dd\\.xyz|social\\-buttons\\-ddd\\.xyz|social\\-buttons\\-ee\\.xyz|social\\-buttons\\-eee\\.xyz|social\\-buttons\\-ff\\.xyz|social\\-buttons\\-fff\\.xyz|social\\-buttons\\-gg\\.xyz|social\\-buttons\\-ggg\\.xyz|social\\-buttons\\-hh\\.xyz|social\\-buttons\\-ii\\.xyz|social\\-buttons\\-iii\\.xyz|social\\-buttons\\.com|social\\-buttons\\.xyz|social\\-fun\\.ru|social\\-s\\-ggg\\.xyz|social\\-s\\-hhh\\.xyz|social\\-s\\-iii\\.xyz|social\\-search\\.me|social\\-traffic\\-1\\.xyz|social\\-traffic\\-2\\.xyz|social\\-traffic\\-3\\.xyz|social\\-traffic\\-4\\.xyz|social\\-traffic\\-5\\.xyz|social\\-traffic\\-6\\.xyz|social\\-traffic\\-7\\.xyz|social\\-vestnik\\.ru|social\\-widget\\.xyz|socialbookmarksubmission\\.org|socialbutton\\.xyz|socialbuttons\\.xyz|socialine\\.net|socialseet\\.ru|socialtrade\\.biz|sofit\\-dmd\\.ru|soft\\-program\\.com|softomix\\.com|softomix\\.net|softomix\\.org|softomix\\.ru|softtor\\.com|softxaker\\.ru|sohoindia\\.net|soki\\.tv|solartek\\.ru|solitaire\\-game\\.ru|solnplast\\.ru|sonata\\-arctica\\.wz\\.cz|songoo\\.wz\\.cz|sonnikforme\\.ru|sonyelektronik\\.com|sosdepotdebilan\\.com|sotkal\\.lark\\.ru|soundfrost\\.org|soup\\.io|souvenirua\\.com|sovetogorod\\.ru|sovetskie\\-plakaty\\.ru|soviet\\-portal\\.do\\.am|sowhoz\\.ru|soyuzexpedition\\.ru|sp\\-laptop\\.ru|sp\\-zakupki\\.ru|space2019\\.top|spacebarnot\\.work|spain\\-poetry\\.com|spartania\\.com\\.ua|spb\\-plitka\\.ru|spb\\-scenar\\.ru|spb\\.ru|spbchampionat\\.ru|special\\-porn\\.com|specstroy36\\.ru|speedup\\-my\\.site|spin2016\\.cf|sport\\-video\\-obzor\\.ru|sportbetfair\\.com|sportobzori\\.ru|sportwizard\\.ru|spravka130\\.ru|spravkavspb\\.net|spravkavspb\\.work|sprawka\\-help\\.com|spscmall\\.xyz|spuemonti\\.net|spy\\-app\\.info|spy\\-sts\\.com|sqadia\\.com|squarespace\\.top|squidoo\\.com|srecorder\\.com|sribno\\.net|ssn\\.is|sssexxx\\.net|ssve\\.ru|st\\-komf\\.ru|sta\\-grand\\.ru|stairliftstrue\\.com|star61\\.de|stardevine\\.com|stariy\\-baku\\.com|start\\.myplaycity\\.com|startraffic\\.online|startufa\\.ru|startwp\\.org|stat\\.lviv\\.ua|statashop\\.xyz|statustroll\\.com|stauga\\.altervista\\.org|stavimdveri\\.ru|steame\\.ru|steelmaster\\.lv|stiralkovich\\.ru|stocktwists\\.com|stoki\\.ru|stoletie\\.ru|stoliar\\.org|stomatologi\\.moscow|stop\\-nark\\.ru|stop\\-zavisimost\\.com|store\\-rx\\.com|strady\\.org\\.ua|strana\\-krasoty\\.ru|strana\\-solnca\\.ru|stream\\-tds\\.com|streetfire\\.net|streetfooduncovered\\.com|streha\\-metalko\\.si|strigkaomsk\\.ru|stroi\\-24\\.ru|stroicol\\.net|stroimajor\\.ru|stroiminsk\\.com|stroiminsk\\.org|stromerrealty\\.com|strongholdsb\\.ru|strongtools\\.ga|stroy\\-matrix\\.ru|stroyalp\\.ru|stroydetali\\.ru|stroyka\\-gid\\.ru|stroyka47\\.ru|stroymonolit\\.su|studentguide\\.ru|studiofaca\\.com|stuff\\-about\\-money\\.com|stuffhydra\\.com|stylecaster\\.top|styro\\.ru|su1ufa\\.ru|success\\-seo\\.com|suckoutlet\\.xyz|sudachitravel\\.com|sugarkun\\.com|sugvant\\.ru|sundrugstore\\.com|super\\-seo\\-guru\\.com|superiends\\.org|supermama\\.top|supermesta\\.ru|supermodni\\.com\\.ua|supernew\\.org|superoboi\\.com\\.ua|superpages\\.com|superslots\\-casino\\.online|superslots\\-casino\\.site|superslots\\-cazino\\.online|superslots\\-cazino\\.site|superslotz\\-casino\\.site|superslotz\\-cazino\\.site|supertraffic\\.xyz|supervesti\\.ru|surflinksmedical\\.com|susanholtphotography\\.com|suzanneboswell\\.top|svadba\\-teplohod\\.ru|svarbit\\.com|svarog\\-jez\\.com|svensk\\-poesi\\.com|svet\\-depo\\.ru|svetka\\.info|svetlotorg\\.ru|svetoch\\.moscow|svetodiodoff\\.ru|svoimi\\-rukamy\\.com|svs\\-avto\\.com|swagbucks\\.com|swaplab\\.io|sweet\\.tv|sygraem\\.com|szansadlarolnikow\\.com\\.pl|t\\-machinery\\.ru|t\\-rec\\.su|t3chtonic\\.com|taartstore\\.xyz|tagmeanvice\\.live|taihouse\\.ru|tam\\-gde\\-more\\.ru|tamada69\\.com|tammyblog\\.online|targetpay\\.nl|tasteidea\\.com|tastyfoodideas\\.com|tattoo\\-stickers\\.ru|tattoo33\\.ru|tattooha\\.com|taximytishi\\.ru|tccp\\.xyz|tcenavoprosa\\.ru|tcsinksale\\.xyz|tcyh\\.net|td\\-33\\.ru|td\\-abs\\.ru|td\\-l\\-market\\.ru|td\\-perimetr\\.ru|tdbatik\\.com|tds\\-west\\.ru|teastory\\.co|techart24\\.com|technika\\-remont\\.ru|technopellet\\.gr|tecspb\\.ru|tedxrj\\.com|tedy\\.su|teedle\\.co|tehngr\\.ru|telegramdownload10\\.com|telesvoboda\\.ru|telfer\\.ru|teman\\.com\\.ua|tennis\\-bet\\.ru|tentcomplekt\\.ru|teplohod\\-gnezdo\\.ru|teplokomplex\\.ru|teplolidoma\\.ru|terapist\\.xyz|teresablog\\.top|tesla\\-audit\\.ru|teslathemes\\.com|test\\-extra\\-full\\-stack\\-services\\.stream|test\\-prime\\-smm\\-service\\.review|test\\.xyz|texbaza\\.by|texnika\\.com\\.ua|tgsubs\\.com|tgtclick\\.com|thaimassage\\-slon\\.ru|thaoduoctoc\\.com|the\\-torrent\\-tracker\\.blogspot\\.com|the\\-usa\\-games\\.blogspot\\.com|the\\-world\\.ru|theautoprofit\\.ml|thebluenoodle\\.com|thecoral\\.com\\.br|thedownloadfreeonlinegames\\.blogspot\\.com|thedownloadfromwarez\\.blogspot\\.com|thefds\\.net|thegreensociety\\.net|theguardlan\\.com|theheroes\\.ru|thejournal\\.ru|thelotter\\.su|thepokertimer\\.com|therealshop\\.exaccess\\.com|thesensehousehotel\\.com|thesmartsearch\\.net|thewomenlife\\.com|thiegs\\.reco\\.ws|thin\\.me\\.pn|tiandeural\\.ru|tiens2010\\.ru|timeallnews\\.ru|timer4web\\.com|timetorelax\\.biz|timmy\\.by|tip8\\.co|tizanidine4mg\\.blogspot\\.com|tizanidine4mgprice\\.blogspot\\.com|tizanidine4mgstreetprice\\.blogspot\\.com|tizanidine4mgstreetvalue\\.blogspot\\.com|tizanidine4mgtablets\\.blogspot\\.com|tizanidine4mguses\\.blogspot\\.com|tizanidine6mg\\.blogspot\\.com|tizanidineandcipro\\.blogspot\\.com|tizanidineandgabapentin\\.blogspot\\.com|tizanidineandhydrocodone\\.blogspot\\.com|tizanidinecapsules\\.blogspot\\.com|tizanidinecost\\.blogspot\\.com|tizanidinedosage\\.blogspot\\.com|tizanidinedosageforsleep\\.blogspot\\.com|tizanidinedruginteractions\\.blogspot\\.com|tizanidinedrugtest\\.blogspot\\.com|tizanidineduringpregnancy\\.blogspot\\.com|tizanidinefibromyalgia\\.blogspot\\.com|tizanidineformigraines\\.blogspot\\.com|tizanidineforopiatewithdrawal\\.blogspot\\.com|tizanidinehcl2mg\\.blogspot\\.com|tizanidinehcl2mgsideeffects\\.blogspot\\.com|tizanidinehcl2mgtablet\\.blogspot\\.com|tizanidinehcl4mgisitanarcotic\\.blogspot\\.com|tizanidinehcl4mgtab\\.blogspot\\.com|tizanidinehcl4mgtabinfo\\.blogspot\\.com|tizanidinehcl4mgtablet\\.blogspot\\.com|tizanidinehclsideeffects\\.blogspot\\.com|tizanidinehydrochloride2mg\\.blogspot\\.com|tizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com|tizanidineinfo\\.blogspot\\.com|tizanidineingredients\\.blogspot\\.com|tizanidineinteractions\\.blogspot\\.com|tizanidinemusclerelaxant\\.blogspot\\.com|tizanidinenarcotic\\.blogspot\\.com|tizanidineonline\\.blogspot\\.com|tizanidineoral\\.blogspot\\.com|tizanidineorflexeril\\.blogspot\\.com|tizanidinepain\\.blogspot\\.com|tizanidinepills\\.blogspot\\.com|tizanidinerecreationaluse\\.blogspot\\.com|tizanidinerestlesslegsyndrome\\.blogspot\\.com|tizanidineshowupondrugtest\\.blogspot\\.com|tizanidinesideeffects\\.blogspot\\.com|tizanidinesideeffectsweightloss\\.blogspot\\.com|tizanidinesleepaid\\.blogspot\\.com|tizanidinestreetprice\\.blogspot\\.com|tizanidinestreetvalue\\.blogspot\\.com|tizanidineusedfor\\.blogspot\\.com|tizanidinevscyclobenzaprine\\.blogspot\\.com|tizanidinevssoma\\.blogspot\\.com|tizanidinevsvalium\\.blogspot\\.com|tizanidinewithdrawal\\.blogspot\\.com|tizanidinewithdrawalsymptoms\\.blogspot\\.com|tizanidinezanaflex\\.blogspot\\.com|tkanorganizma\\.ru|tksn\\.ru|tocan\\.biz|tocan\\.com\\.ua|tokshow\\.online|toloka\\.hurtom\\.com|tomatis\\.gospartner\\.com|tomck\\.com|tommysautomotivecare\\.com|top\\-gan\\.ru|top\\-instagram\\.info|top\\-kasyna\\.com|top\\-l2\\.com|top1\\-seo\\-service\\.com|top10\\-online\\-games\\.com|top10\\-way\\.com|top250movies\\.ru|top8\\.co|topgurudeals\\.com|topmebeltorg\\.ru|topmira\\.com|toposvita\\.com|topquality\\.cf|topseoservices\\.co|topshef\\.ru|topvidos\\.ru|tor\\.vc|torobrand\\.com|torontoplumbinggroup\\.com|torospa\\.ru|torrentgamer\\.net|torrentred\\.games|torrents\\-tracker\\.com|torrnada\\.ru|torture\\.ml|totppgoods\\.xyz|touchmods\\.fr|tourburlington\\.com|tovaroboom\\.vast\\.ru|tpu\\.ru|track\\-rankings\\.online|tracker24\\-gps\\.ru|trade365\\.org|trafaret74\\.ru|trafers\\.com|traffic\\-cash\\.xyz|traffic\\-paradise\\.org|traffic2cash\\.net|traffic2cash\\.org|traffic2cash\\.xyz|traffic2money\\.com|trafficbot\\.life|trafficbot4free\\.xyz|trafficdrive\\.club|trafficgenius\\.xyz|trafficmonetize\\.org|trafficmonetizer\\.org|trafficstudio\\.club|traffictomoney\\.com|trahvid\\.com|tramadolandtizanidine\\.blogspot\\.com|transit\\.in\\.ua|transsex\\-videochat\\.ru|traphouselatino\\.net|travel\\-semantics\\.com|travgoods\\.xyz|traxdom\\.ru|trex\\-casino\\.com|trex\\.casino|tri\\-slona\\.org|trick\\-negotiation\\-cup\\-wonder\\.com|tricolortv\\-online\\.com|trieste\\.io|trion\\.od\\.au|trion\\.od\\.ua|triumf\\-realty\\.ru|trk\\-4\\.net|trubywriting\\.com|truck\\-spite\\-lawyer\\-activity\\.top|truebeauty\\.cc|tsatu\\.edu\\.ua|tsc\\-koleso\\.ru|tsstcorpcddvdwshbbdriverfb\\.aircus\\.com|ttechno\\.net|tuberkulezanet\\.ru|tuberkuleznik\\.ru|tudusale\\.xyz|tula\\.mdverey\\.ru|tuningdom\\.ru|tupper\\-posuda\\.ru|tupper\\-shop\\.ru|turbo\\-suslik\\.org|turist\\-strani\\.ru|turkeyreport\\.tk|turvgori\\.ru|tvand\\.ru|tvfru\\.org|tvgoals\\.tv|tvoystartup\\.ru|twincitiescarservice\\.com|twojebook\\.pl|twsufa\\.ru|twu\\.com\\.ua|tytoona\\.com|tyumen\\.xrus\\.org|u\\-cheats\\.ru|u17795\\.netangels\\.ru|ua\\-company\\.ru|ua\\.tc|uaecdsale\\.xyz|uasb\\.ru|ublaze\\.ru|ucanfly\\.ru|ucban\\.xyz|uchebavchehii\\.ru|uchil\\.net|ucoz\\.ru|ucsfstore\\.xyz|ucsol\\.ru|uctraffic\\.com|udav\\.net|ufa\\.dienai\\.ru|ufa\\.xrus\\.org|ufolabs\\.net|uginekologa\\.com|ukrainian\\-poetry\\.com|ukrcargo\\.com|ukrtvory\\.in\\.ua|ukstmalls\\.xyz|ul\\-potolki\\.ru|ultimateuninstall\\.com|um\\-razum\\.ru|umg\\-stroy\\.ru|umityangin\\.net|undergroundcityphoto\\.com|uni\\.me|unibus\\.su|unimodemhalfduplefw\\.pen\\.io|uniqgen\\.net|unitygame3d\\.com|univerfiles\\.com|unlimitdocs\\.net|unmaroll\\.ya\\.ru|unpredictable\\.ga|upcronline\\.xyz|uptime\\-alpha\\.net|uptime\\-as\\.net|uptime\\-beta\\.net|uptime\\-delta\\.net|uptime\\-eu\\.net|uptime\\-gamma\\.net|uptime\\-us\\.net|uptime\\.com|uptimebot\\.net|uptimechecker\\.com|ural\\-buldozer\\.ru|urbanblog\\.shop|urbanchr\\.online|urblog\\.xyz|urccvfmc\\.bloger\\.index\\.hr|urlopener\\.blogspot\\.com\\.au|urlopener\\.com|urlumbrella\\.com|uruto\\.ru|us\\-america\\.ru|usadacha\\.net|userequip\\.com|uslugi\\-tatarstan\\.ru|ussearche\\.cf|ustion\\.ru|uterkysale\\.xyz|utrolive\\.ru|uusmsale\\.xyz|uyut\\-dom\\.pro|uyutmaster73\\.ru|uzpaket\\.com|uzungil\\.com|v\\-casino\\.fun|v\\-casino\\.host|v\\-casino\\.ru|v\\-casino\\.site|v\\-casino\\.website|v\\-casino\\.xyz|v\\-cazino\\.online|v\\-cazino\\.ru|vabasa\\.inwtrade\\.com|vaderenergy\\.ru|vadimkravtcov\\.ru|valid\\-cc\\.com|validccseller\\.com|validus\\.pro|valkiria\\-tk\\.ru|vanessablog\\.online|vape\\-x\\.ru|vapmedia\\.org|vapsy\\.com|vardenafil20\\.com|varikozdok\\.ru|vashsvet\\.com|vavada\\-casino\\.host|vavada\\-casino\\.top|vavada\\-cazino\\.host|vavada\\-cazino\\.site|vavilone\\.com|vbabule\\.net|vbikse\\.com|vc\\.ru|vchulkah\\.net|vduplo\\.ru|veerotech\\.com|vegascosmetics\\.ru|vekzdorov\\.ru|veles\\.shop|velobikestock\\.com|veloland\\.in\\.ua|venta\\-prom\\.ru|ventelnos\\.com|ventopt\\.by|veronicablog\\.top|vescenter\\.ru|veselokloun\\.ru|vesnatehno\\.com|vesnatehno\\.ru|vesta\\-lada\\.net|vetbvc\\.ru|vezdevoz\\.com\\.ua|vezuviy\\.su|vgoloveboli\\.net|via\\-gra\\.webstarts\\.com|viagra\\-soft\\.ru|viagra\\.pp\\.ua|viagroid\\.ru|viandpet\\.com|viberdownload10\\.com|video\\-\\-production\\.com|video\\-chat\\.in|video\\-girl\\-online\\.ru|video\\-hollywood\\.ru|video\\-woman\\.com|videochat\\-dating\\.ru|videochat\\.guru|videochat\\.mx|videochat\\.tv\\.br|videochat\\.world|videochaty\\.ru|videofrost\\.com|videofrost\\.net|videokrik\\.net|videos\\-for\\-your\\-business\\.com|videosbox\\.ru|videotop\\.biz|videotuber\\.ru|vidzwap\\.xyz|viel\\.su|vigrx\\-original\\.ru|viktoria\\-center\\.ru|vilingstore\\.net|vinsit\\.ru|vip\\-dom\\.in|vip\\-parfumeria\\.ru|vipsiterip\\.org|virtchats\\.ru|virtual\\-love\\-video\\.ru|virtual\\-sex\\-chat\\.ru|virtual\\-sex\\-time\\.ru|virtual\\-sex\\-videochat\\.ru|virtual\\-zaim\\.ru|virtualbb\\.com|virus\\-schutzmasken\\.de|visa\\-china\\.ru|visa\\-pasport\\.ru|vita\\.com\\.hr|vitanail\\.ru|viven\\.host\\.sk|vizag\\.kharkov\\.ua|vk\\-mus\\.ru|vk\\.com|vkak\\.ru|vkonche\\.com|vkontaktemusic\\.ru|vkontarkte\\.com|vksaver\\-all\\.ru|vksex\\.ru|vladhistory\\.com|vladtime\\.ru|vltai\\.com|vmnmvzsmn\\.over\\-blog\\.com|vod\\.com\\.ua|vodabur\\.by|vodaodessa\\.com|voditeltrezviy\\.ru|vodkoved\\.ru|volgograd\\.xrus\\.org|volond\\.com|voloomoney\\.com|volume\\-pills\\.biz|voprosotvet24\\.ru|voronezh\\.xrus\\.org|vostgard\\.com|vostoktrade\\.info|vote\\-up\\.ru|vozbujdenie\\.com|vpdr\\.pl|vpnhowto\\.info|vrazbor59\\.ru|vriel\\.batcave\\.net|vrnelectro\\.ru|vrnhnmall\\.xyz|vrotike\\.ru|vsdelke\\.ru|vseigru\\.one|vseigry\\.fun|vseprobrak\\.ru|vsesubwaysurfers\\.com|vseuznaem\\.com|vucms\\.com|vulkan\\-nadengi\\.ru|vulkan\\-oficial\\.com|vulkanrussia1\\.ru|vykup\\-avto\\-krasnodar\\.ru|vykupavto\\-krasnodar\\.ru|vzheludke\\.com|vzlom\\-na\\-zakaz\\.com|vzubah\\.com|vzube\\.com|vzubkah\\.com|w2mobile\\-za\\.com|w3javascript\\.com|w7s\\.ru|wakeupseoconsultant\\.com|wallabag\\.malooma\\.bzh|wallet\\-prlzn\\.space|wallinside\\.top|wallpaperdesk\\.info|wallpapers\\-all\\.com|wallpapers\\-best\\.com|wallpapersdesk\\.info|wallstore\\.xyz|wandamary\\.online|wapsite\\.me|warmex\\.com\\.ua|warningwar\\.ru|wasabisale\\.xyz|watch\\-movies\\.ru|wave\\-games\\.ru|wayfcoin\\.space|wbjm\\.net|wcb\\.su|wdfdocando\\.com|wdss\\.com\\.ua|we\\-ping\\-for\\-youian\\.info|we\\-ping\\-for\\-youic\\.info|web\\-analytics\\.date|web\\-betting\\.ru|web\\-lazy\\-services\\.review|web\\-list\\.xyz|web\\-revenue\\.xyz|web\\.cvut\\.cz|webalex\\.pro|webinstantservice\\.com|webix\\.me|webjam\\.com|weblibrary\\.win|webmaster\\-traffic\\.com|webmonetizer\\.net|webradiology\\.ru|webs\\.com|website\\-analytics\\.online|website\\-analyzer\\.info|website\\-errors\\-scanner\\.com|website\\-services\\-promotion\\.bid|website\\-services\\-promotion\\.review|website\\-services\\-promotion\\.stream|website\\-services\\-promotion\\.win|website\\-services\\-seo\\.bid|website\\-services\\-seo\\.stream|website\\-services\\-seo\\.win|website\\-services\\-smm\\.bid|website\\-services\\-smm\\.review|website\\-services\\-smm\\.stream|website\\-services\\-smm\\.win|website\\-services\\.review|website\\-services\\.stream|website\\-services\\.win|website\\-speed\\-check\\.site|website\\-speed\\-checker\\.site|website\\-speed\\-up\\.site|website\\-speed\\-up\\.top|website\\-stealer\\-warning\\-alert\\.hdmoviecams\\.com|websitebottraffic\\.club|websitebottraffic\\.host|websites\\-reviews\\.com|websocial\\.me|webtherapy\\.ru|weburlopener\\.com|wedding\\-salon\\.net|weebly\\.com|weekes\\.biz\\.tc|weightatraining\\.com|weightbelts\\.ru|welck\\.octopis\\.com|welcomeauto\\.ru|weprik\\.ru|wetgames\\.ru|wfdesigngroup\\.com|whatistizanidine2mg\\.blogspot\\.com|whatistizanidinehclusedfor\\.blogspot\\.com|whatsappdownload10\\.com|whereiskentoday\\.com|wicivow\\.007h\\.ml|wikes\\.20fr\\.com|williamrobsonproperty\\.com|winx\\-play\\.ru|witherrom55\\.eklablog\\.fr|wjxmenye\\.com|wmasterlead\\.com|wnoz\\.de|woman\\-h\\.ru|woman\\-orgasm\\.ru|woman\\-tampon\\.ru|womens\\-journal\\.net|womensplay\\.net|womensterritory\\.ru|wordpress\\-crew\\.net|wordpresscore\\.com|work\\-from\\-home\\-earn\\-money\\-online\\.com|workius\\.ru|workona\\.com|works\\.if\\.ua|world\\-mmo\\.com|worldgamenews\\.com|worldhistory\\.biz|worldis\\.me|worldlovers\\.ru|worldmed\\.info|worldofbtc\\.com|wormix\\-cheats\\.ru|wowas31\\.ucoz\\.ru|woweb\\.com\\.ua|wpnull\\.org|wptraffic\\.xyz|wrazilwispolecznie\\.pl|wrc\\-info\\.ru|writingservices17\\.blogspot\\.ru|wrona\\.it|wstroika\\.ru|wufak\\.com|wurr\\.voila\\.net|ww1943\\.ru|ww2awards\\.info|www\\-lk\\-rt\\.ru|www\\.gelendzhic\\.ru|www1\\.free\\-share\\-buttons\\.top|wzgyyq\\.com|x\\-lime\\.com|x\\-lime\\.net|x\\-musics\\.com|x\\-stars\\.ru|x5market\\.ru|xaker26\\.net|xbaboon\\.com|xboxster\\.ru|xexe\\.club|xfire\\.com|xgftnlrt\\.bloger\\.index\\.hr|xion\\.cash|xjrul\\.com|xkaz\\.org|xlolitka\\.com|xmnb\\.net|xn\\-\\-\\-\\-\\-\\-\\-53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-\\-6cdbciescapvf0a8bibwx0a1bu\\.xn\\-\\-90ais|xn\\-\\-\\-\\-\\-6kcaacnblni5c5bicdpcmficy\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-6kcamwewcd9bayelq\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-7kcaaxchbbmgncr7chzy0k0hk\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-7kceclhb4abre1b4a0ccl2fxch1a\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-8kcatubaocd1bneepefojs1h2e\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-clckdac3bsfgdft3aebjp5etek\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabb9a1b7bddgm6a1i\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabhjc3ccc5aggbzfmfi\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabhv4abd8aih6bb7k\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabm1ahc4b2aqff\\.su|xn\\-\\-\\-\\-7sbabn5abjehfwi8bj\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbaphztdjeboffeiof6c\\.xn\\-\\-p1ai"
  },
  {
    "path": "google-exclude-5.txt",
    "content": "xn\\-\\-\\-\\-7sbbpe3afguye\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbho2agebbhlivy\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbaki4azawu5b\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbarihbihxpxqgaf0g1e\\.xn\\-\\-80adxhks|xn\\-\\-\\-\\-8sbbjimdeyfsi\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbdbjgb1ap7a9c4czbh\\.xn\\-\\-p1acf|xn\\-\\-\\-\\-8sbhefaln6acifdaon5c6f4axh\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sblgmbj1a1bk8l\\.xn\\-\\-\\-\\-161\\-4vemb6cjl7anbaea3afninj\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbowe2akbcd4h\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbpmgeilbd8achi0c\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-btbdvdh4aafrfciljm6k\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ctbbcjd3dbsehgi\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ctbfcdjl8baejhfb1oh\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ctbigni3aj4h\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-dtbffp5aagjgfm\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ftbeoaiyg1ak1cb7d\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-gtbdb0beu1bb8gj\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-itbbudqejbfpg3l\\.com|xn\\-\\-\\-\\-jtbjfcbdfr0afji4m\\.xn\\-\\-p1ai|xn\\-\\-78\\-6kc6akkhn3a3k\\.xn\\-\\-p1ai|xn\\-\\-78\\-6kcmzqfpcb1amd1q\\.xn\\-\\-p1ai|xn\\-\\-80aaafbn2bc2ahdfrfkln6l\\.xn\\-\\-p1ai|xn\\-\\-80aaajbdbddwj2alwjieei2afr3v\\.xn\\-\\-p1ai|xn\\-\\-80aaajkrncdlqdh6ane8t\\.xn\\-\\-p1ai|xn\\-\\-80aaaks3bbhabgbigamdr2h\\.xn\\-\\-p1ai|xn\\-\\-80aabcsc3bqirlt\\.xn\\-\\-p1ai|xn\\-\\-80aanaardaperhcem4a6i\\.com|xn\\-\\-80ab4aa2g\\.xn\\-\\-p1ai|xn\\-\\-80adaggc5bdhlfamsfdij4p7b\\.xn\\-\\-p1ai|xn\\-\\-80adgcaax6acohn6r\\.xn\\-\\-p1ai|xn\\-\\-80aeahghtf8ac5i\\.xn\\-\\-p1ai|xn\\-\\-80aeb6argv\\.xn\\-\\-p1ai|xn\\-\\-80aebzmbfeebe\\.xn\\-\\-p1ai|xn\\-\\-80ahdheogk5l\\.xn\\-\\-p1ai|xn\\-\\-80ahvj9e\\.xn\\-\\-p1ai|xn\\-\\-80ajbshivpvn2i\\.xn\\-\\-p1ai|xn\\-\\-80ajjbdhgmudixfjc8c5a9df8b\\.xn\\-\\-p1ai|xn\\-\\-90acenikpebbdd4f6d\\.xn\\-\\-p1ai|xn\\-\\-90acjmaltae3acm\\.xn\\-\\-p1acf|xn\\-\\-90adhhccf5aeewt7j\\.xn\\-\\-p1ai|xn\\-\\-b1adccayqiirhu\\.xn\\-\\-p1ai|xn\\-\\-b1ag5cfn\\.xn\\-\\-p1ai|xn\\-\\-b1agm2d\\.net|xn\\-\\-c1acygb\\.xn\\-\\-p1ai|xn\\-\\-d1abj0abs9d\\.in\\.ua|xn\\-\\-d1aifoe0a9a\\.top|xn\\-\\-e1aaajzchnkg\\.ru\\.com|xn\\-\\-e1aahcgdjkg4aeje6j\\.kz|xn\\-\\-e1agf4c\\.xn\\-\\-80adxhks|xn\\-\\-e1aggki3c\\.xn\\-\\-80adxhks|xn\\-\\-h1ahbi\\.com\\.ua|xn\\-\\-hxazdsfy\\.blogspot\\.com|xn\\-\\-l1aengat\\.xn\\-\\-p1ai|xn\\-\\-mhg\\.com|xn\\-\\-oogle\\-wmc\\.com|xn\\-\\-q1a\\.xn\\-\\-b1aube0e\\.xn\\-\\-c1acygb\\.xn\\-\\-p1ai|xnxx\\-n\\.com|xolodremont\\.ru|xpert\\.com\\.ua|xportvusbdriver8i\\.snack\\.ws|xpresscare\\.ru|xrp\\-ripple\\.info|xrus\\.org|xsion\\.net|xtraffic\\.plus|xtrafficplus\\.com|xtrafficplus\\.online|xtrafficplus\\.shop|xtrafficplus\\.xyz|xtubeporno\\.net|xvideosbay\\.com|xxart\\.ru|xxx\\-treker\\.ru|xxxhamster\\.me|xxxtube69\\.com|xxxvideochat\\.ru|xz618\\.com|xzlive\\.com|yaderenergy\\.ru|yaminecraft\\.ru|yeartwit\\.com|yellowstonevisitortours\\.com|yes\\-com\\.com|yes\\-do\\-now\\.com|yhirurga\\.ru|ykecwqlixx\\.ru|ynymnwbm\\.bloger\\.index\\.hr|yodse\\.io|yoga4\\.ru|youandcredit\\.ru|youbloodyripper\\.com|youdesigner\\.kz|yougame\\.biz|yougetsignal\\.com|youghbould\\.wordpress\\.com|youhack\\.info|youjizz\\.vc|youporn\\-forum\\.ga|youporn\\-forum\\.uni\\.me|youporn\\-ru\\.com|your\\-good\\-links\\.com|your\\-tales\\.ru|yourdesires\\.ru|youresponsive\\.com|yourothersite\\.com|yoursearch\\.me|yourserverisdown\\.com|yoursite\\.com|yourtraffic\\.club|youtoner\\.it|youtubedownload\\.org|yqpc\\.net|yuarra\\.pluto\\.ro|yubikk\\.info|yugk\\.net|yugo\\-star\\.ru|yunque\\.pluto\\.ro|yur\\-p\\.ru|yurcons\\.pro|yurgorod\\.ru|yuristproffi\\.ru|zagadki\\.in\\.ua|zahodi2hydra\\.net|zahvat\\.ru|zaidia\\.xhost\\.ro|zaim\\-pod\\-zalog\\-krasnodar\\.ru|zaimhelp\\.ru|zajm\\-pod\\-zalog\\-nedvizhimosti\\.ru|zakazfutbolki\\.com|zakaznoy\\.com\\.ua|zakazvzloma\\.com|zakis\\-azota24\\.ru|zakisazota\\-official\\.com|zakon\\-ob\\-obrazovanii\\.ru|zaloadi\\.ru|zamolotkom\\.ru|zapnado\\.ru|zarabotat\\-na\\-sajte\\.ru|zarabotat\\-v\\-internete\\.biz|zarenica\\.net|zastenchivosti\\.net|zastroyka\\.org|zavod\\-gm\\.ru|zazagames\\.org|zdesformula\\.ru|zdesoboi\\.com|zdm\\-auto\\.com|zdm\\-auto\\.ru|zdorovie\\-nogi\\.info|zebradudka\\.com|zelena\\-mriya\\.com\\.ua|zeleznobeton\\.ru|zerocash\\.msk\\.ru|zexhgoods\\.xyz|zhcsapp\\.net|zhoobintravel\\.com|zhorapankratov7\\.blogspot\\.com|zigarettenonl\\.canalblog\\.com|zigarettenonlinekaufen\\.tumblr\\.com|zigarettenonlinekaufen1\\.bloog\\.pl|zigarettenonlinekaufen1\\.blox\\.pl|zigarettenonlinekaufen2\\.bloog\\.pl|zigarettenonlinekaufen2\\.drupalgardens\\.com|zigzog\\.ru|zlatnajesen\\.com|zmoda\\.hostreo\\.com|znakomstva\\-moskva77\\.ru|znakomstva\\-piter78\\.ru|znakomstvaonlain\\.ru|znaniyapolza\\.ru|zojirushi\\-products\\.ru|zolotoy\\-lis\\.ru|zonefiles\\.bid|zoominfo\\.com|zot\\.moscow|zt\\-m\\.ru|zuchn\\.com|zverokruh\\-shop\\.cz|zvetki\\.ru|zvooq\\.eu|zvuker\\.net|zyzzcentral\\.ru"
  },
  {
    "path": "phpcs.xml",
    "content": "<?xml version=\"1.0\"?>\n<ruleset name=\"Referrer Spam Blocker\">\n    <description>PHP CodeSniffer rules for Referrer Spam Blocker project</description>\n\n    <file>src</file>\n    <file>tests</file>\n\n    <exclude-pattern>vendor</exclude-pattern>\n\n    <rule ref=\"PSR12\">\n        <exclude name=\"PSR12.Classes.OpeningBraceSpace\"/>\n        <exclude name=\"PSR12.Functions.ReturnTypeDeclaration\"/>\n    </rule>\n\n    <rule ref=\"Generic.Files.LineLength\">\n        <properties>\n            <property name=\"lineLimit\" value=\"120\"/>\n            <property name=\"absoluteLineLimit\" value=\"150\"/>\n        </properties>\n    </rule>\n\n    <rule ref=\"Generic.Files.LineEndings\">\n        <properties>\n            <property name=\"eolChar\" value=\"\\n\"/>\n        </properties>\n    </rule>\n\n    <rule ref=\"Squiz.WhiteSpace.SuperfluousWhitespace\">\n        <properties>\n            <property name=\"ignoreBlankLines\" value=\"false\"/>\n        </properties>\n    </rule>\n\n    <rule ref=\"Squiz.WhiteSpace.FunctionSpacing\">\n        <properties>\n            <property name=\"spacing\" value=\"1\"/>\n            <property name=\"spacingBeforeFirst\" value=\"0\"/>\n            <property name=\"spacingAfterLast\" value=\"0\"/>\n        </properties>\n    </rule>\n</ruleset>\n"
  },
  {
    "path": "phpstan.neon",
    "content": "parameters:\n    level: 8\n    paths:\n        - src\n        - tests\n    excludePaths:\n        - vendor\n    treatPhpDocTypesAsCertain: false\n"
  },
  {
    "path": "phpunit.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<phpunit xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"vendor/phpunit/phpunit/phpunit.xsd\" bootstrap=\"vendor/autoload.php\" colors=\"true\" processIsolation=\"false\" stopOnFailure=\"false\" cacheDirectory=\".phpunit.cache\">\n  <testsuites>\n    <testsuite name=\"Unit\">\n      <directory>tests/Unit</directory>\n    </testsuite>\n    <testsuite name=\"Integration\">\n      <directory>tests/Integration</directory>\n    </testsuite>\n  </testsuites>\n  <php>\n    <env name=\"APP_ENV\" value=\"testing\"/>\n  </php>\n  <source>\n    <include>\n      <directory suffix=\".php\">src</directory>\n    </include>\n    <exclude>\n      <directory>vendor</directory>\n      <directory>tests</directory>\n    </exclude>\n  </source>\n</phpunit>\n"
  },
  {
    "path": "psalm.xml",
    "content": "<?xml version=\"1.0\"?>\n<psalm\n    errorLevel=\"1\"\n    resolveFromConfigFile=\"true\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xmlns=\"https://getpsalm.org/schema/config\"\n    xsi:schemaLocation=\"https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd\"\n    findUnusedBaselineEntry=\"true\"\n    findUnusedCode=\"true\"\n    checkForThrowsDocblock=\"true\"\n    checkMissingReturnType=\"true\"\n    strictBinaryOperands=\"true\"\n    strictEquality=\"true\"\n    strictInference=\"true\"\n    strictLiteralTypes=\"true\"\n    strictMixedTypes=\"true\"\n    strictNullTypes=\"true\"\n    strictObjectTypes=\"true\"\n    strictOperators=\"true\"\n    strictParamTypes=\"true\"\n    strictPropertyTypes=\"true\"\n    strictReturnTypes=\"true\"\n    strictScalarTypes=\"true\"\n    strictStringTypes=\"true\"\n    strictUnionTypes=\"true\"\n    strictVariableTypes=\"true\"\n>\n    <projectFiles>\n        <directory name=\"src\"/>\n        <ignoreFiles>\n            <directory name=\"vendor\"/>\n            <directory name=\"tests\"/>\n        </ignoreFiles>\n    </projectFiles>\n\n    <issueHandlers>\n        <MissingReturnType errorLevel=\"info\"/>\n        <MissingParamType errorLevel=\"info\"/>\n        <MissingPropertyType errorLevel=\"info\"/>\n        <ClassMustBeFinal errorLevel=\"suppress\"/>\n        <UnusedClass errorLevel=\"suppress\"/>\n        <MissingThrowsDocblock errorLevel=\"suppress\"/>\n        <RedundantCast errorLevel=\"suppress\"/>\n        <InvalidOperand errorLevel=\"suppress\"/>\n        <MixedArgument errorLevel=\"info\"/>\n        <MixedAssignment errorLevel=\"info\"/>\n    </issueHandlers>\n</psalm>\n"
  },
  {
    "path": "referral-spam.caddy",
    "content": "# https://github.com/Stevie-Ray/referrer-spam-blocker\n# Updated 2026-03-04 18:14:04\n\n#\n# Move this file next to your Caddy config file given through -conf, and include it by doing:\n#\n#     include ./referral-spam.caddy;\n#\n# Then start your caddy server. All the referrers will now be redirected to a 444 HTTP answer\n#\n\nredir 444 {\n\tif_op or\n\tif {>Referer} is 0-0.fr\n\tif {>Referer} is 000free.us\n\tif {>Referer} is 007agent-i.fr\n\tif {>Referer} is 00author.com\n\tif {>Referer} is 00go.com\n\tif {>Referer} is 00it.com\n\tif {>Referer} is 01casino-x.ru\n\tif {>Referer} is 033nachtvandeliteratuur.nl\n\tif {>Referer} is 03e.info\n\tif {>Referer} is 03p.info\n\tif {>Referer} is 0n-line.tv\n\tif {>Referer} is 1-88.vip\n\tif {>Referer} is 1-99seo.com\n\tif {>Referer} is 1-best-seo.com\n\tif {>Referer} is 1-free-share-buttons.com\n\tif {>Referer} is 100-reasons-for-seo.com\n\tif {>Referer} is 100dollars-seo.com\n\tif {>Referer} is 100searchengines.com\n\tif {>Referer} is 101flag.ru\n\tif {>Referer} is 11235813.webzdarma.cz\n\tif {>Referer} is 12-reasons-for-seo.net\n\tif {>Referer} is 12masterov.com\n\tif {>Referer} is 12u.info\n\tif {>Referer} is 15-reasons-for-seo.com\n\tif {>Referer} is 16lv.com\n\tif {>Referer} is 1hwy.com\n\tif {>Referer} is 1kinobig.ru\n\tif {>Referer} is 1kreditzaim.ru\n\tif {>Referer} is 1pamm.ru\n\tif {>Referer} is 1st-urist.ru\n\tif {>Referer} is 1webmaster.ml\n\tif {>Referer} is 1wek.top\n\tif {>Referer} is 1winru.ru\n\tif {>Referer} is 1x-slot.site\n\tif {>Referer} is 1x-slots.site\n\tif {>Referer} is 1xbet-entry.ru\n\tif {>Referer} is 1xbetcc.com\n\tif {>Referer} is 1xbetonlines1.ru\n\tif {>Referer} is 1xbetportugal.com\n\tif {>Referer} is 1xbetts.ru\n\tif {>Referer} is 1xslot-casino.online\n\tif {>Referer} is 1xslot-casino.ru\n\tif {>Referer} is 1xslot-casino.site\n\tif {>Referer} is 1xslot.site\n\tif {>Referer} is 1xslots-africa.site\n\tif {>Referer} is 1xslots-brasil.site\n\tif {>Referer} is 1xslots-casino.site\n\tif {>Referer} is 1xslots.africa\n\tif {>Referer} is 1xslots.site\n\tif {>Referer} is 2-best-seo.com\n\tif {>Referer} is 2-easy.xyz\n\tif {>Referer} is 2-go-now.xyz\n\tif {>Referer} is 2015god.org\n\tif {>Referer} is 24chasa.bg\n\tif {>Referer} is 24h.doctor\n\tif {>Referer} is 24videos.tv\n\tif {>Referer} is 24x7-server-support.site\n\tif {>Referer} is 256bit.by\n\tif {>Referer} is 273-fz.ru\n\tif {>Referer} is 2ads.co.uk\n\tif {>Referer} is 2itech.ru\n\tif {>Referer} is 2kata.ru\n\tif {>Referer} is 2nt.ru\n\tif {>Referer} is 2your.site\n\tif {>Referer} is 3-best-seo.com\n\tif {>Referer} is 3-letter-domains.net\n\tif {>Referer} is 3dgame3d.com\n\tif {>Referer} is 3dracergames.com\n\tif {>Referer} is 3waynetworks.com\n\tif {>Referer} is 4-best-seo.com\n\tif {>Referer} is 40momporntube.com\n\tif {>Referer} is 45en.ru\n\tif {>Referer} is 45tahunkhongguan.com\n\tif {>Referer} is 4inn.ru\n\tif {>Referer} is 4ip.su\n\tif {>Referer} is 4istoshop.com\n\tif {>Referer} is 4webmasters.com\n\tif {>Referer} is 4webmasters.org\n\tif {>Referer} is 4xcasino.ru\n\tif {>Referer} is 5-best-seo.com\n\tif {>Referer} is 5-steps-to-start-business.com\n\tif {>Referer} is 5elementov.ru\n\tif {>Referer} is 5forex.ru\n\tif {>Referer} is 6-best-seo.com\n\tif {>Referer} is 69-13-59.ru\n\tif {>Referer} is 6hopping.com\n\tif {>Referer} is 7-best-seo.com\n\tif {>Referer} is 70casino.online\n\tif {>Referer} is 76brighton.co.uk\n\tif {>Referer} is 76brighton.com\n\tif {>Referer} is 7kop.ru\n\tif {>Referer} is 7makemoneyonline.com\n\tif {>Referer} is 7milliondollars.com\n\tif {>Referer} is 7ooo.ru\n\tif {>Referer} is 7zap.com\n\tif {>Referer} is 8-best-seo.com\n\tif {>Referer} is 84lv.com\n\tif {>Referer} is 8xv8.com\n\tif {>Referer} is 9-best-seo.com\n\tif {>Referer} is 99-reasons-for-seo.com\n\tif {>Referer} is QIWI.xyz\n\tif {>Referer} is a-elita.in.ua\n\tif {>Referer} is a-hau.mk\n\tif {>Referer} is a14download.com\n\tif {>Referer} is abacoasale.xyz\n\tif {>Referer} is abaiak.com\n\tif {>Referer} is abbanreddy.com\n\tif {>Referer} is abc.xyz\n\tif {>Referer} is abcdefh.xyz\n\tif {>Referer} is abcdeg.xyz\n\tif {>Referer} is abclauncher.com\n\tif {>Referer} is abiente.ru\n\tif {>Referer} is abovetherivernc.com\n\tif {>Referer} is abtasty.com\n\tif {>Referer} is abuser.shop\n\tif {>Referer} is academia-nsk.org\n\tif {>Referer} is acads.net\n\tif {>Referer} is acarreo.ru\n\tif {>Referer} is account-my1.xyz\n\tif {>Referer} is accs-store.ru\n\tif {>Referer} is actata.co\n\tif {>Referer} is actualremont.ru\n\tif {>Referer} is acunetix-referrer.com\n\tif {>Referer} is adanih.com\n\tif {>Referer} is adcash.com\n\tif {>Referer} is addblueoff.com.ua\n\tif {>Referer} is adelachrist.top\n\tif {>Referer} is adelly.bg\n\tif {>Referer} is adf.ly\n\tif {>Referer} is adpostmalta.com\n\tif {>Referer} is adrenalinebot.net\n\tif {>Referer} is adrenalinebot.ru\n\tif {>Referer} is adspart.com\n\tif {>Referer} is adtiger.tk\n\tif {>Referer} is adult-video-chat.ru\n\tif {>Referer} is adultfullhd.com\n\tif {>Referer} is adventureparkcostarica.com\n\tif {>Referer} is advertisefree.co.uk\n\tif {>Referer} is adviceforum.info\n\tif {>Referer} is advocatemsk.ru\n\tif {>Referer} is advokateg.co\n\tif {>Referer} is advokateg.com\n\tif {>Referer} is advokateg.ru\n\tif {>Referer} is advokateg.xyz\n\tif {>Referer} is aerodizain.com\n\tif {>Referer} is aerogo.com\n\tif {>Referer} is aerotour.ru\n\tif {>Referer} is affiliate-programs.biz\n\tif {>Referer} is affordablewebsitesandmobileapps.com\n\tif {>Referer} is afora.ru\n\tif {>Referer} is afshan.shop\n\tif {>Referer} is agreda.pluto.ro\n\tif {>Referer} is agro-gid.com\n\tif {>Referer} is agtl.com.ua\n\tif {>Referer} is ahecmarket.xyz\n\tif {>Referer} is ahhjf.com\n\tif {>Referer} is ahrefs.com\n\tif {>Referer} is ai-seo-services.com\n\tif {>Referer} is aibolita.com\n\tif {>Referer} is aidarmebel.kz\n\tif {>Referer} is aimeesblog.xyz\n\tif {>Referer} is aimiot.net\n\tif {>Referer} is aitiman.ae\n\tif {>Referer} is akama.com\n\tif {>Referer} is akmussale.xyz\n\tif {>Referer} is akuhni.by\n\tif {>Referer} is akusherok.ru\n\tif {>Referer} is akvamaster.dp.ua\n\tif {>Referer} is alborzan.com\n\tif {>Referer} is albuteroli.com\n\tif {>Referer} is alcobutik24.com\n\tif {>Referer} is alert-fdm.xyz\n\tif {>Referer} is alert-fjg.xyz\n\tif {>Referer} is alert-hgd.xyz\n\tif {>Referer} is alert-jdh.xyz\n\tif {>Referer} is alertomall.xyz\n\tif {>Referer} is alessandraleone.com\n\tif {>Referer} is alexsander.ch\n\tif {>Referer} is alfa-medosmotr.ru\n\tif {>Referer} is alfa9.com\n\tif {>Referer} is alfabot.xyz\n\tif {>Referer} is alfapro.ru\n\tif {>Referer} is alguiblog.online\n\tif {>Referer} is alibestsale.com\n\tif {>Referer} is aliexpress.com\n\tif {>Referer} is aliexsale.ru\n\tif {>Referer} is alif-ba-ta.com\n\tif {>Referer} is alinabaniecka.pl\n\tif {>Referer} is alive-ua.com\n\tif {>Referer} is aliviahome.online\n\tif {>Referer} is alkanfarma.org\n\tif {>Referer} is all-news.kz\n\tif {>Referer} is all4bath.ru\n\tif {>Referer} is all4invest.ru\n\tif {>Referer} is allcredits.su\n\tif {>Referer} is allcryptonews.com\n\tif {>Referer} is alldownload.pw\n\tif {>Referer} is allergick.com\n\tif {>Referer} is allergija.com\n\tif {>Referer} is allfan.ru\n\tif {>Referer} is allforminecraft.ru\n\tif {>Referer} is allknow.info\n\tif {>Referer} is allkrim.com\n\tif {>Referer} is allmarketsnewdayli.gdn\n\tif {>Referer} is allnews.md\n\tif {>Referer} is allnews24.in\n\tif {>Referer} is allpdfmags.net\n\tif {>Referer} is allproblog.com\n\tif {>Referer} is allsilver925.co.il\n\tif {>Referer} is alltheviews.com\n\tif {>Referer} is allvacancy.ru\n\tif {>Referer} is allwomen.info\n\tif {>Referer} is allwrighter.ru\n\tif {>Referer} is alma-mramor.com.ua\n\tif {>Referer} is alot.com\n\tif {>Referer} is alp-rk.ru\n\tif {>Referer} is alphaforum.ru\n\tif {>Referer} is alphaopt24.ru\n\tif {>Referer} is alpharma.net\n\tif {>Referer} is alpinaskate.com\n\tif {>Referer} is altermix.ua\n\tif {>Referer} is alveris.ru\n\tif {>Referer} is am-se.com\n\tif {>Referer} is amanda-porn.ga\n\tif {>Referer} is amatocanizalez.net\n\tif {>Referer} is amazon-seo-service.com\n\tif {>Referer} is amoi.tn\n\tif {>Referer} is amoremio.by\n\tif {>Referer} is amos-kids.ru\n\tif {>Referer} is amospalla.es\n\tif {>Referer} is amp-project.pro\n\tif {>Referer} is amt-k.ru\n\tif {>Referer} is amtel-vredestein.com\n\tif {>Referer} is amylynnandrews.xyz\n\tif {>Referer} is anabolics.shop\n\tif {>Referer} is anal-acrobats.hol.es\n\tif {>Referer} is analytics-ads.xyz\n\tif {>Referer} is analyze-best-copywriting-services.party\n\tif {>Referer} is analyze-extra-analytic-service.stream\n\tif {>Referer} is ananumous.ru\n\tif {>Referer} is anapa-inns.ru\n\tif {>Referer} is andrewancheta.com\n\tif {>Referer} is android-style.com\n\tif {>Referer} is android-systems.ru\n\tif {>Referer} is android-vsem.org\n\tif {>Referer} is android4fun.org\n\tif {>Referer} is androids-store.com\n\tif {>Referer} is animalphotos.xyz\n\tif {>Referer} is animebox.com.ua\n\tif {>Referer} is animenime.ru\n\tif {>Referer} is annaeydlish.top\n\tif {>Referer} is anrtmall.xyz\n\tif {>Referer} is anti-crisis-seo.com\n\tif {>Referer} is anticrawler.org\n\tif {>Referer} is antiguabarbuda.ru\n\tif {>Referer} is antonovich-design.com.ua\n\tif {>Referer} is anydesk.site\n\tif {>Referer} is aosheng-tech.com\n\tif {>Referer} is aoul.top\n\tif {>Referer} is apartmentbay.ru\n\tif {>Referer} is apartmentratings.com\n\tif {>Referer} is apilian.xyz\n\tif {>Referer} is apishops.ru\n\tif {>Referer} is apollon-market-url.org\n\tif {>Referer} is applepharma.ru\n\tif {>Referer} is apteka-doc.ru\n\tif {>Referer} is apteka-pharm.ru\n\tif {>Referer} is apteka.info\n\tif {>Referer} is apxeo.info\n\tif {>Referer} is arabic-poetry.com\n\tif {>Referer} is aramaicmedia.org\n\tif {>Referer} is arate.ru\n\tif {>Referer} is arcadepages.com\n\tif {>Referer} is arcarticle.online\n\tif {>Referer} is architecturebest.com\n\tif {>Referer} is arendadogovor.ru\n\tif {>Referer} is arendakvartir.kz\n\tif {>Referer} is arendas.net\n\tif {>Referer} is arendovalka.xyz\n\tif {>Referer} is argo-visa.ru\n\tif {>Referer} is arkansale.xyz\n\tif {>Referer} is arkartex.ru\n\tif {>Referer} is arkkivoltti.net\n\tif {>Referer} is arpe.top\n\tif {>Referer} is arraty.altervista.org\n\tif {>Referer} is artblog.top\n\tif {>Referer} is artclipart.ru\n\tif {>Referer} is artdeko.info\n\tif {>Referer} is artefakct.com\n\tif {>Referer} is artpaint-market.ru\n\tif {>Referer} is artparquet.ru\n\tif {>Referer} is artpress.top\n\tif {>Referer} is artsmarket.xyz\n\tif {>Referer} is arturs.moscow\n\tif {>Referer} is aruplighting.com\n\tif {>Referer} is asacopaco.tk\n\tif {>Referer} is ascotgoods.xyz\n\tif {>Referer} is asia-forum.ru\n\tif {>Referer} is ask-yug.com\n\tif {>Referer} is asmxsatadriverin.aircus.com\n\tif {>Referer} is astimvnc.online\n\tif {>Referer} is asupro.com\n\tif {>Referer} is asynt.net\n\tif {>Referer} is aszokshop.xyz\n\tif {>Referer} is atlant-auto.info\n\tif {>Referer} is atlasvkusov.ru\n\tif {>Referer} is atleticpharm.org\n\tif {>Referer} is atley.eu.pn\n\tif {>Referer} is atmagroup.ru\n\tif {>Referer} is atoblog.online\n\tif {>Referer} is atyks.ru\n\tif {>Referer} is aucoinhomes.com\n\tif {>Referer} is audiobangout.com\n\tif {>Referer} is ausergrubhof.info\n\tif {>Referer} is australia-opening-times.com\n\tif {>Referer} is auto-b2b-seo-service.com\n\tif {>Referer} is auto-complex.by\n\tif {>Referer} is auto-kia-fulldrive.ru\n\tif {>Referer} is auto-moto-elektronika.cz\n\tif {>Referer} is auto-news-digest.ru\n\tif {>Referer} is auto-seo-service.com\n\tif {>Referer} is auto-seo-service.org\n\tif {>Referer} is auto-zapchasti.org\n\tif {>Referer} is auto.rusvile.lt\n\tif {>Referer} is auto4style.ru\n\tif {>Referer} is autoblog.org.ua\n\tif {>Referer} is autobrennero.it\n\tif {>Referer} is autobudpostach.club\n\tif {>Referer} is autofuct.ru\n\tif {>Referer} is autoloans.com\n\tif {>Referer} is autolombard-krasnodar.ru\n\tif {>Referer} is automate-amazon-affiliation.com\n\tif {>Referer} is automobile-spec.com\n\tif {>Referer} is autonew.biz\n\tif {>Referer} is autoseo-service.org\n\tif {>Referer} is autoseo-traffic.com\n\tif {>Referer} is autoseo-trial-for-1.com\n\tif {>Referer} is autoseoservice.org\n\tif {>Referer} is autoseotips.com\n\tif {>Referer} is autoservic.by\n\tif {>Referer} is autotop.com.ua\n\tif {>Referer} is autovideobroadcast.com\n\tif {>Referer} is autowebmarket.com.ua\n\tif {>Referer} is avcoast.com\n\tif {>Referer} is avek.ru\n\tif {>Referer} is aviapanda.ru\n\tif {>Referer} is aviaseller.su\n\tif {>Referer} is aviav.ru.com\n\tif {>Referer} is avitocars.ru\n\tif {>Referer} is aviva-limoux.com\n\tif {>Referer} is avkzarabotok.com\n\tif {>Referer} is avkzarabotok.info\n\tif {>Referer} is avon-severozapad.ru\n\tif {>Referer} is avtoarenda.by\n\tif {>Referer} is avtocredit-legko.ru\n\tif {>Referer} is avtointeres.ru\n\tif {>Referer} is avtorskoe-vino.ru\n\tif {>Referer} is avtovolop.ru\n\tif {>Referer} is avtovykup.kz\n\tif {>Referer} is awency.com\n\tif {>Referer} is aworlds.com\n\tif {>Referer} is axcus.top\n\tif {>Referer} is ayerbo.xhost.ro\n\tif {>Referer} is ayongoods.xyz\n\tif {>Referer} is azadnegar.com\n\tif {>Referer} is azartclub.org\n\tif {>Referer} is azartniy-bonus.com\n\tif {>Referer} is azazu.ru\n\tif {>Referer} is azbuka-mo.ru\n\tif {>Referer} is azbukadiets.ru\n\tif {>Referer} is azbukafree.com\n\tif {>Referer} is azlex.uz\n\tif {>Referer} is b-buyeasy.com\n\tif {>Referer} is b2b-lounge.com\n\tif {>Referer} is bablonow.ru\n\tif {>Referer} is baciakte.online\n\tif {>Referer} is backgroundpictures.net\n\tif {>Referer} is backlinks-fast-top.com\n\tif {>Referer} is bag77.ru\n\tif {>Referer} is bahisgunceladresi.com\n\tif {>Referer} is baixar-musicas-gratis.com\n\tif {>Referer} is bala.getenjoyment.net\n\tif {>Referer} is baladur.ru\n\tif {>Referer} is balakhna.online\n\tif {>Referer} is balayazh.com\n\tif {>Referer} is balitouroffice.com\n\tif {>Referer} is balkanfarma.org\n\tif {>Referer} is balkanfarma.ru\n\tif {>Referer} is balois.worldbreak.com\n\tif {>Referer} is bambi.ck.ua\n\tif {>Referer} is banan.tv\n\tif {>Referer} is bankcrediti.ru\n\tif {>Referer} is bankhummer.co\n\tif {>Referer} is bankiem.pl\n\tif {>Referer} is barbarahome.top\n\tif {>Referer} is bard-real.com.ua\n\tif {>Referer} is bashtime.ru\n\tif {>Referer} is basisches-wasser.net\n\tif {>Referer} is batietiket.com\n\tif {>Referer} is batut-fun.ru\n\tif {>Referer} is bausparen.bz.it\n\tif {>Referer} is bavariagid.de\n\tif {>Referer} is bavsac.com\n\tif {>Referer} is bazaronline24.ru\n\tif {>Referer} is bbtec.net\n\tif {>Referer} is bdf-tracker.top\n\tif {>Referer} is beachtoday.ru\n\tif {>Referer} is beamfall.info\n\tif {>Referer} is beauby.ru\n\tif {>Referer} is beauty-clinic.ru\n\tif {>Referer} is beauty-lesson.com\n\tif {>Referer} is beclean-nn.ru\n\tif {>Referer} is bedroomlighting.us\n\tif {>Referer} is begalka.xyz\n\tif {>Referer} is belinvestdom.by\n\tif {>Referer} is belreferatov.net\n\tif {>Referer} is berdasovivan.ru\n\tif {>Referer} is beremenyashka.com\n\tif {>Referer} is berglion.com\n\tif {>Referer} is berkinan.xyz\n\tif {>Referer} is berlininsl.com\n\tif {>Referer} is berrymall.ru\n\tif {>Referer} is best-deal-hdd.pro\n\tif {>Referer} is best-mam.ru\n\tif {>Referer} is best-offer-hdd-1.info\n\tif {>Referer} is best-offer-hdd-1.space\n\tif {>Referer} is best-offer-hdd-1.top\n\tif {>Referer} is best-offer-hdd.pro\n\tif {>Referer} is best-offer-hdd.xyz\n\tif {>Referer} is best-ping-service-usa-1.info\n\tif {>Referer} is best-ping-service-usa-1.space\n\tif {>Referer} is best-ping-service-usa-1.top\n\tif {>Referer} is best-ping-service-usa.blue\n\tif {>Referer} is best-ping-service-usa.me\n\tif {>Referer} is best-ping-service-usa.space\n\tif {>Referer} is best-ping-service-usa.top\n\tif {>Referer} is best-ping-service-usa.xyz\n\tif {>Referer} is best-printmsk.ru\n\tif {>Referer} is best-seo-offer.com\n\tif {>Referer} is best-seo-service.tk\n\tif {>Referer} is best-seo-software.xyz\n\tif {>Referer} is best-seo-solution.com\n\tif {>Referer} is bestbookclub.ru\n\tif {>Referer} is bestchoice.cf\n\tif {>Referer} is bestempresas.es\n\tif {>Referer} is bestfortraders.com\n\tif {>Referer} is besthatcheries.com\n\tif {>Referer} is bestleofferhdd.info\n\tif {>Referer} is bestmobilityscooterstoday.com\n\tif {>Referer} is bestofferfyhdd.info\n\tif {>Referer} is bestofferhddacy.info\n\tif {>Referer} is bestofferhddbyt.info\n\tif {>Referer} is bestofferhddeed.info\n\tif {>Referer} is bestofferhddity.info\n\tif {>Referer} is bestofferifyhdd.info\n\tif {>Referer} is bestofferswalkmydogouteveryday.gq\n\tif {>Referer} is bestorofferhdd.info\n\tif {>Referer} is bestplacetobuyeriacta.jw.lt\n\tif {>Referer} is bestvpnrating.com\n\tif {>Referer} is bestwebsiteawards.com\n\tif {>Referer} is bestwebsitesawards.com\n\tif {>Referer} is bet-prognoz.com\n\tif {>Referer} is bet-winner1.ru\n\tif {>Referer} is bet2much.ru\n\tif {>Referer} is betonka.pro\n\tif {>Referer} is betslive.ru\n\tif {>Referer} is betterhealthbeauty.com\n\tif {>Referer} is bettorschool.ru\n\tif {>Referer} is betune.onlinewebshop.net\n\tif {>Referer} is betwinservice.com\n\tif {>Referer} is beyan.host.sk\n\tif {>Referer} is bez-zabora.ru\n\tif {>Referer} is bezcmexa.ru\n\tif {>Referer} is bezlimitko.xyz\n\tif {>Referer} is bezprostatita.com\n\tif {>Referer} is bezsporno.ru\n\tif {>Referer} is beztuberkuleza.ru\n\tif {>Referer} is bhf.vc\n\tif {>Referer} is bibprsale.xyz\n\tif {>Referer} is bif-ru.info\n\tif {>Referer} is bigcities.org\n\tif {>Referer} is biglistofwebsites.com\n\tif {>Referer} is biketank.ga\n\tif {>Referer} is billiard-classic.com.ua\n\tif {>Referer} is billigerstrom.co\n\tif {>Referer} is billyblog.online\n\tif {>Referer} is bimatoprost-careprost.com\n\tif {>Referer} is bimatoprost-careprost.com.ua\n\tif {>Referer} is bin-brokers.com\n\tif {>Referer} is binokna.ru\n\tif {>Referer} is binomo.kz\n\tif {>Referer} is bio-japan.net\n\tif {>Referer} is bio-market.kz\n\tif {>Referer} is bio.trade-jp.net\n\tif {>Referer} is bioca.org\n\tif {>Referer} is biplanecentre.ru\n\tif {>Referer} is bird1.ru\n\tif {>Referer} is birzha-truda.eu\n\tif {>Referer} is bisign.info\n\tif {>Referer} is bitcoin-ua.top\n\tif {>Referer} is bitcoins-forum.club\n\tif {>Referer} is bitcoins-forum.info\n\tif {>Referer} is bitcoins-forum.online\n\tif {>Referer} is bitcoins-forum.pro\n\tif {>Referer} is bitcoins-live.ru\n\tif {>Referer} is biteg.xyz\n\tif {>Referer} is bitniex.com\n\tif {>Referer} is biz-law.ru\n\tif {>Referer} is biznesluxe.ru\n\tif {>Referer} is biznesrealnost.ru\n\tif {>Referer} is biznesschat.net\n\tif {>Referer} is bizru.info\n\tif {>Referer} is bki24.info\n\tif {>Referer} is bkns.vn\n\tif {>Referer} is black-friday.ga\n\tif {>Referer} is black-tip.top\n\tif {>Referer} is blackhatworth.com\n\tif {>Referer} is blackle.com\n\tif {>Referer} is blackplanet.com\n\tif {>Referer} is blackwitchcraft.ru\n\tif {>Referer} is blancablog.online\n\tif {>Referer} is blavia.00author.com\n\tif {>Referer} is bleacherreport.com\n\tif {>Referer} is blockchaintop.nl\n\tif {>Referer} is blockworld.ru\n\tif {>Referer} is blog.f00kclan.de\n\tif {>Referer} is blog.koorg.ru\n\tif {>Referer} is blog.latuti.net\n\tif {>Referer} is blog.remote-computer.de\n\tif {>Referer} is blog.xsk.in\n\tif {>Referer} is blog.yam.com\n\tif {>Referer} is blog100.org\n\tif {>Referer} is blog2019.top\n\tif {>Referer} is blog2019.xyz\n\tif {>Referer} is blog4u.top\n\tif {>Referer} is blogarun.co\n\tif {>Referer} is bloggen.be\n\tif {>Referer} is bloggers.nl\n\tif {>Referer} is blogig.org\n\tif {>Referer} is blogking.top\n\tif {>Referer} is bloglag.com\n\tif {>Referer} is blognet.top\n\tif {>Referer} is blogorganictraffic.shop\n\tif {>Referer} is blogos.kz\n\tif {>Referer} is blogping.xyz\n\tif {>Referer} is blogs.rediff.com\n\tif {>Referer} is blogseo.xyz\n\tif {>Referer} is blogstar.fun\n\tif {>Referer} is blogster.com\n\tif {>Referer} is blogtotal.de\n\tif {>Referer} is blogtraffic.shop\n\tif {>Referer} is blogua.org\n\tif {>Referer} is blue-square.biz\n\tif {>Referer} is bluerobot.info\n\tif {>Referer} is bmusshop.xyz\n\tif {>Referer} is bo-vtb24.ru\n\tif {>Referer} is board.f00d.de\n\tif {>Referer} is bobba.dzaba.com\n\tif {>Referer} is bodybuilding-shop.biz\n\tif {>Referer} is boleznikogi.com\n\tif {>Referer} is bolezniorganov.ru\n\tif {>Referer} is boltalko.xyz\n\tif {>Referer} is boltushkiclub.ru\n\tif {>Referer} is bombla.org\n\tif {>Referer} is bonkers.name\n\tif {>Referer} is bonniesblog.online\n\tif {>Referer} is bonus-betting.ru\n\tif {>Referer} is bonus-spasibo-sberbank.ru\n\tif {>Referer} is bonus-vtb.ru\n\tif {>Referer} is bonux.nextview.ru\n\tif {>Referer} is bookmaker-bet.com\n\tif {>Referer} is bookmark4you.biz\n\tif {>Referer} is bookmark4you.com\n\tif {>Referer} is bookmark4you.com.biz\n\tif {>Referer} is books-top.com\n\tif {>Referer} is boole.onlinewebshop.net\n\tif {>Referer} is boost-my-site.com\n\tif {>Referer} is boost24.biz\n\tif {>Referer} is boostmyppc.com\n\tif {>Referer} is bosefux.esy.es\n\tif {>Referer} is bosman.pluto.ro\n\tif {>Referer} is bostonline.xyz\n\tif {>Referer} is bot-traffic.icu\n\tif {>Referer} is bot-traffic.xyz\n\tif {>Referer} is botamycos.fr\n\tif {>Referer} is bottraffic.live\n\tif {>Referer} is bottraffic143.xyz\n\tif {>Referer} is bottraffic329.xyz\n\tif {>Referer} is bottraffic4free.club\n\tif {>Referer} is bottraffic4free.host\n\tif {>Referer} is bottraffic999.xyz\n\tif {>Referer} is bouda.kvalitne.cz\n\tif {>Referer} is bowigosale.xyz\n\tif {>Referer} is bpro1.top\n\tif {>Referer} is bradleylive.xyz\n\tif {>Referer} is brains2.biz\n\tif {>Referer} is brakehawk.com\n\tif {>Referer} is brandnewtube.com\n\tif {>Referer} is brandov.ru\n\tif {>Referer} is brateg.xyz\n\tif {>Referer} is brauni.com.ua\n\tif {>Referer} is bravica.biz\n\tif {>Referer} is bravica.com\n\tif {>Referer} is bravica.me\n\tif {>Referer} is bravica.net\n\tif {>Referer} is bravica.news\n\tif {>Referer} is bravica.online\n\tif {>Referer} is bravica.pro\n\tif {>Referer} is bravica.ru\n\tif {>Referer} is bravica.su\n\tif {>Referer} is break-the-chains.com\n\tif {>Referer} is breget74.ru\n\tif {>Referer} is brendbutik.ru\n\tif {>Referer} is briankatrine.top\n\tif {>Referer} is brickmaster.pro\n\tif {>Referer} is brillianty.info\n\tif {>Referer} is bristolhostel.com\n\tif {>Referer} is bristolhotel.com\n\tif {>Referer} is bristolhotel.com.ua\n\tif {>Referer} is britneyblog.online\n\tif {>Referer} is brk-rti.ru\n\tif {>Referer} is brokergid.ru\n\tif {>Referer} is brooklyn-ads.com\n\tif {>Referer} is brooklynsays.com\n\tif {>Referer} is brothers-smaller.ru\n\tif {>Referer} is brus-vsem.ru\n\tif {>Referer} is brus.city\n\tif {>Referer} is brusilov.ru\n\tif {>Referer} is bsell.ru\n\tif {>Referer} is btcnix.com\n\tif {>Referer} is btt-club.pro\n\tif {>Referer} is budilneg.xyz\n\tif {>Referer} is budmavtomatika.com.ua\n\tif {>Referer} is budpost.com.ua\n\tif {>Referer} is bufetout.ru\n\tif {>Referer} is bugof.gq\n\tif {>Referer} is buhproffi.ru\n\tif {>Referer} is buigas.00it.com\n\tif {>Referer} is buildnw.ru\n\tif {>Referer} is buildwithwendy.com\n\tif {>Referer} is buketeg.xyz\n\tif {>Referer} is bukleteg.xyz\n\tif {>Referer} is bulgaria-web-developers.com\n\tif {>Referer} is buqayy0.livejournal.com\n\tif {>Referer} is bur-rk.ru\n\tif {>Referer} is burger-imperia.com\n\tif {>Referer} is burn-fat.ga\n\tif {>Referer} is business-online-sberbank.ru\n\tif {>Referer} is buttons-for-website.com\n\tif {>Referer} is buttons-for-your-website.com\n\tif {>Referer} is buy-cheap-online.info\n\tif {>Referer} is buy-cheap-pills-order-online.com\n\tif {>Referer} is buy-forum.ru\n\tif {>Referer} is buy-meds24.com\n\tif {>Referer} is buyantiviralwp.com\n\tif {>Referer} is buyessay3.blogspot.ru\n\tif {>Referer} is buyessaynow.biz\n\tif {>Referer} is buyessayonline19.blogspot.ru\n\tif {>Referer} is buyfriend.ru\n\tif {>Referer} is buyk.host.sk\n\tif {>Referer} is buynorxx.com\n\tif {>Referer} is buypharmacydrug.com\n\tif {>Referer} is buypillsonline24h.com\n\tif {>Referer} is buypillsorderonline.com\n\tif {>Referer} is buypuppies.ca\n\tif {>Referer} is buyscabiescream.com\n\tif {>Referer} is buytizanidineonline.blogspot.com\n\tif {>Referer} is buytizanidineonlinenoprescription.blogspot.com\n\tif {>Referer} is buyviagraa.blogspot.com\n\tif {>Referer} is bvps8.com\n\tif {>Referer} is bycontext.com\n\tif {>Referer} is byme.se\n\tif {>Referer} is bytimedance.ru\n\tif {>Referer} is c-english.ru\n\tif {>Referer} is c2bit.hk\n\tif {>Referer} is californianews.cf\n\tif {>Referer} is call-of-duty.info\n\tif {>Referer} is callejondelpozo.es\n\tif {>Referer} is calvet.altervista.org\n\tif {>Referer} is cancerfungus.com\n\tif {>Referer} is candida-international.blogspot.com\n\tif {>Referer} is candida-society.org.uk\n\tif {>Referer} is cannazon-market.org\n\tif {>Referer} is canoncdriverq3.pen.io\n\tif {>Referer} is canyougethighofftizanidine.blogspot.com\n\tif {>Referer} is canzoni.ru\n\tif {>Referer} is carabela.com.do\n\tif {>Referer} is carbon-linger-hierarchy-suntan.top\n\tif {>Referer} is carder.me\n\tif {>Referer} is carder.tv\n\tif {>Referer} is carders.ug\n\tif {>Referer} is cardiosport.com.ua\n\tif {>Referer} is cardsdumps.com\n\tif {>Referer} is cardsharp1.ru\n\tif {>Referer} is cardul.ru\n\tif {>Referer} is carezi.com\n\tif {>Referer} is carfax.com.ua\n\tif {>Referer} is carivka.com.ua\n\tif {>Referer} is carloans.com\n\tif {>Referer} is carscrim.com\n\tif {>Referer} is carsdined.org\n\tif {>Referer} is carsnumber.com\n\tif {>Referer} is carson.getenjoyment.net\n\tif {>Referer} is carsoncitypizza.com\n\tif {>Referer} is cartechnic.ru\n\tif {>Referer} is casablancamanor.co.za\n\tif {>Referer} is cashforum.cc\n\tif {>Referer} is casino-top3.fun\n\tif {>Referer} is casino-top3.online\n\tif {>Referer} is casino-top3.ru\n\tif {>Referer} is casino-top3.site\n\tif {>Referer} is casino-top3.space\n\tif {>Referer} is casino-top3.website\n\tif {>Referer} is casino-v.site\n\tif {>Referer} is casino-vulkane.com\n\tif {>Referer} is casino-x-now.ru\n\tif {>Referer} is casino-x.host\n\tif {>Referer} is casinosbewertung.de\n\tif {>Referer} is casinox-jp.com\n\tif {>Referer} is castingbank.ru\n\tif {>Referer} is catalogs-parts.com\n\tif {>Referer} is catherinemill.xyz\n\tif {>Referer} is catterybengal.com\n\tif {>Referer} is cattyhealth.com\n\tif {>Referer} is cauxmall.xyz\n\tif {>Referer} is cayado.snn.gr\n\tif {>Referer} is cazino-v.online\n\tif {>Referer} is cazino-v.ru\n\tif {>Referer} is cbcseward.com\n\tif {>Referer} is cbox.ws\n\tif {>Referer} is ccfullzshop.com\n\tif {>Referer} is celestepage.xyz\n\tif {>Referer} is celldog.ru\n\tif {>Referer} is cenokos.ru\n\tif {>Referer} is cenoval.ru\n\tif {>Referer} is centre-indigo.org.ua\n\tif {>Referer} is centrumcoachingu.com\n\tif {>Referer} is cercacamion.it\n\tif {>Referer} is certifywebsite.win\n\tif {>Referer} is cezartabac.ro\n\tif {>Referer} is cfsrating.sonicwall.com\n\tif {>Referer} is cgi2.nintendo.co.jp\n\tif {>Referer} is chainii.ru\n\tif {>Referer} is channel-badge-betray-volcanic.com\n\tif {>Referer} is chastnoeporno.com\n\tif {>Referer} is chat.ru\n\tif {>Referer} is chatmall.xyz\n\tif {>Referer} is chatrazvrat.ru\n\tif {>Referer} is chatroulette.life\n\tif {>Referer} is chcu.net\n\tif {>Referer} is cheap-trusted-backlinks.com\n\tif {>Referer} is cheapkeys.ovh\n\tif {>Referer} is cheappills24h.com\n\tif {>Referer} is chee-by.biz\n\tif {>Referer} is chelyabinsk.dienai.ru\n\tif {>Referer} is chelyabinsk.xrus.org\n\tif {>Referer} is cherrypointplace.ca\n\tif {>Referer} is cherubinimobili.it\n\tif {>Referer} is chimiver.info\n\tif {>Referer} is chinese-amezon.com\n\tif {>Referer} is chip35.ru\n\tif {>Referer} is chipmp3.ru\n\tif {>Referer} is chizhik-2.ru\n\tif {>Referer} is chomexun.com\n\tif {>Referer} is choosecuisine.com\n\tif {>Referer} is ci.ua\n\tif {>Referer} is ciarustde.online\n\tif {>Referer} is cigarpass.com\n\tif {>Referer} is cilolamall.xyz\n\tif {>Referer} is cinemaenergy-hd.ru\n\tif {>Referer} is ciproandtizanidine.blogspot.com\n\tif {>Referer} is citizenclsdriveri7.pen.io\n\tif {>Referer} is cityadspix.com\n\tif {>Referer} is citybur.ru\n\tif {>Referer} is cityreys.ru\n\tif {>Referer} is civilwartheater.com\n\tif {>Referer} is clarithromycin500mg.com\n\tif {>Referer} is clash-clans.ru\n\tif {>Referer} is classicakuhni.ru\n\tif {>Referer} is cleandom.in.ua\n\tif {>Referer} is cleaningservices.kiev.ua\n\tif {>Referer} is clicksor.com\n\tif {>Referer} is climate.by\n\tif {>Referer} is clmforexeu.com\n\tif {>Referer} is clothing-deal.club\n\tif {>Referer} is cloudsendchef.com\n\tif {>Referer} is club-lukojl.ru\n\tif {>Referer} is club-musics.ru\n\tif {>Referer} is club-samodelkin.ru\n\tif {>Referer} is cmd.kz\n\tif {>Referer} is cmrrsale.xyz\n\tif {>Referer} is cmseshop.xyz\n\tif {>Referer} is cobaltpro.ru\n\tif {>Referer} is cocyq.inwtrade.com\n\tif {>Referer} is coderstate.com\n\tif {>Referer} is codq.info\n\tif {>Referer} is codysbbq.com\n\tif {>Referer} is coeus-solutions.de\n\tif {>Referer} is coffeemashiny.ru\n\tif {>Referer} is coinswitch.cash\n\tif {>Referer} is coldfilm.ru\n\tif {>Referer} is coleso.md\n\tif {>Referer} is collectinviolity.com\n\tif {>Referer} is collegeessay19.blogspot.ru\n\tif {>Referer} is columb.net.ua\n\tif {>Referer} is cometorussia.net\n\tif {>Referer} is comissionka.net\n\tif {>Referer} is commentag.com\n\tif {>Referer} is commerage.ru\n\tif {>Referer} is comp-pomosch.ru\n\tif {>Referer} is compliance-alex.top\n\tif {>Referer} is compliance-alex.xyz\n\tif {>Referer} is compliance-alexa.top\n\tif {>Referer} is compliance-alexa.xyz\n\tif {>Referer} is compliance-andrew.top\n\tif {>Referer} is compliance-andrew.xyz\n\tif {>Referer} is compliance-barak.top\n\tif {>Referer} is compliance-barak.xyz\n\tif {>Referer} is compliance-brian.top\n\tif {>Referer} is compliance-brian.xyz\n\tif {>Referer} is compliance-checker-7.info\n\tif {>Referer} is compliance-don.top\n\tif {>Referer} is compliance-don.xyz\n\tif {>Referer} is compliance-donald.xyz\n\tif {>Referer} is compliance-elena.top\n\tif {>Referer} is compliance-elena.xyz\n\tif {>Referer} is compliance-fred.top\n\tif {>Referer} is compliance-fred.xyz\n\tif {>Referer} is compliance-george.top\n\tif {>Referer} is compliance-george.xyz\n\tif {>Referer} is compliance-irvin.top\n\tif {>Referer} is compliance-irvin.xyz\n\tif {>Referer} is compliance-ivan.top\n\tif {>Referer} is compliance-ivan.xyz\n\tif {>Referer} is compliance-jack.top\n\tif {>Referer} is compliance-jane.top\n\tif {>Referer} is compliance-jess.top\n\tif {>Referer} is compliance-jessica.top\n\tif {>Referer} is compliance-john.top\n\tif {>Referer} is compliance-josh.top\n\tif {>Referer} is compliance-julia.top\n\tif {>Referer} is compliance-julianna.top\n\tif {>Referer} is compliance-margo.top\n\tif {>Referer} is compliance-mark.top\n\tif {>Referer} is compliance-mary.top\n\tif {>Referer} is compliance-nelson.top\n\tif {>Referer} is compliance-olga.top\n\tif {>Referer} is compliance-viktor.top\n\tif {>Referer} is compliance-walt.top\n\tif {>Referer} is compliance-walter.top\n\tif {>Referer} is compliance-willy.top\n\tif {>Referer} is computer-remont.ru\n\tif {>Referer} is comuneshop.xyz\n\tif {>Referer} is conciergegroup.org\n\tif {>Referer} is concretepol.com\n\tif {>Referer} is connectikastudio.com\n\tif {>Referer} is constanceonline.top\n\tif {>Referer} is constantaservice.net\n\tif {>Referer} is construmac.com.mx\n\tif {>Referer} is contextualyield.com\n\tif {>Referer} is cookie-law-enforcement-aa.xyz\n\tif {>Referer} is cookie-law-enforcement-bb.xyz\n\tif {>Referer} is cookie-law-enforcement-cc.xyz\n\tif {>Referer} is cookie-law-enforcement-dd.xyz\n\tif {>Referer} is cookie-law-enforcement-ee.xyz\n\tif {>Referer} is cookie-law-enforcement-ff.xyz\n\tif {>Referer} is cookie-law-enforcement-gg.xyz\n\tif {>Referer} is cookie-law-enforcement-hh.xyz\n\tif {>Referer} is cookie-law-enforcement-ii.xyz\n\tif {>Referer} is cookie-law-enforcement-jj.xyz\n\tif {>Referer} is cookie-law-enforcement-kk.xyz\n\tif {>Referer} is cookie-law-enforcement-ll.xyz\n\tif {>Referer} is cookie-law-enforcement-mm.xyz\n\tif {>Referer} is cookie-law-enforcement-nn.xyz\n\tif {>Referer} is cookie-law-enforcement-oo.xyz\n\tif {>Referer} is cookie-law-enforcement-pp.xyz\n\tif {>Referer} is cookie-law-enforcement-qq.xyz\n\tif {>Referer} is cookie-law-enforcement-rr.xyz\n\tif {>Referer} is cookie-law-enforcement-ss.xyz\n\tif {>Referer} is cookie-law-enforcement-tt.xyz\n\tif {>Referer} is cookie-law-enforcement-uu.xyz\n\tif {>Referer} is cookie-law-enforcement-vv.xyz\n\tif {>Referer} is cookie-law-enforcement-ww.xyz\n\tif {>Referer} is cookie-law-enforcement-xx.xyz\n\tif {>Referer} is cookie-law-enforcement-yy.xyz\n\tif {>Referer} is cookie-law-enforcement-zz.xyz\n\tif {>Referer} is cookielawblog.wordpress.com\n\tif {>Referer} is cookingmeat.ru\n\tif {>Referer} is cool-mining.com\n\tif {>Referer} is cool-wedding.net\n\tif {>Referer} is coop-gamers.ru\n\tif {>Referer} is copblock.org\n\tif {>Referer} is copyrightclaims.org\n\tif {>Referer} is copyrightinstitute.org\n\tif {>Referer} is coral-info.com\n\tif {>Referer} is cosmediqueresults.com\n\tif {>Referer} is countravel.net\n\tif {>Referer} is covadhosting.biz\n\tif {>Referer} is covblog.top\n\tif {>Referer} is coverage-my.com\n\tif {>Referer} is covetnica.com\n\tif {>Referer} is covid-schutzmasken.de\n\tif {>Referer} is cowblog.fr\n\tif {>Referer} is cp24.com.ua\n\tif {>Referer} is cpnbshop.xyz\n\tif {>Referer} is cranly.net\n\tif {>Referer} is crazy-mining.org\n\tif {>Referer} is crd.clan.su\n\tif {>Referer} is creams.makeforum.eu\n\tif {>Referer} is credit-card-tinkoff.ru\n\tif {>Referer} is credit-cards-online24.ru\n\tif {>Referer} is credit.co.ua\n\tif {>Referer} is creditmoney.com.ua\n\tif {>Referer} is crest-poloski.ru\n\tif {>Referer} is crest3d.ru\n\tif {>Referer} is crirussian.ru\n\tif {>Referer} is cruiseraf.net\n\tif {>Referer} is crypto-bear.com\n\tif {>Referer} is crypto-bears.com\n\tif {>Referer} is crypto-mining.club\n\tif {>Referer} is crypto-wallets.org\n\tif {>Referer} is crypto1x1.com\n\tif {>Referer} is crystalslot.com\n\tif {>Referer} is cubook.supernew.org\n\tif {>Referer} is curenaturalicancro.com\n\tif {>Referer} is curenaturalicancro.nl\n\tif {>Referer} is customsua.com.ua\n\tif {>Referer} is cutalltheshit.com\n\tif {>Referer} is cvety24.by\n\tif {>Referer} is cvta.xyz\n\tif {>Referer} is cxpromote.com\n\tif {>Referer} is cyber-monday.ga\n\tif {>Referer} is cyclobenzaprinevstizanidine.blogspot.com\n\tif {>Referer} is cymbaltaandtizanidine.blogspot.com\n\tif {>Referer} is cyprusbuyproperties.com\n\tif {>Referer} is czcedu.com\n\tif {>Referer} is dacha-svoimi-rukami.com\n\tif {>Referer} is dailyblog.xyz\n\tif {>Referer} is dailyrank.net\n\tif {>Referer} is dailyseo.xyz\n\tif {>Referer} is dailystorm.ru\n\tif {>Referer} is dailystrength.org\n\tif {>Referer} is dailytraffic.shop\n\tif {>Referer} is dame-ns.kz\n\tif {>Referer} is damedingel.ya.ru\n\tif {>Referer} is damianis.ru\n\tif {>Referer} is danashop.ru\n\tif {>Referer} is danceuniverse.ru\n\tif {>Referer} is danhale.xyz\n\tif {>Referer} is dantk.kz\n\tif {>Referer} is daptravel.com\n\tif {>Referer} is darcysassoon.top\n\tif {>Referer} is darkbooks.org\n\tif {>Referer} is darknet-hydra-onion.biz\n\tif {>Referer} is darknet.sb\n\tif {>Referer} is darknetsitesguide.com\n\tif {>Referer} is darleneblog.online\n\tif {>Referer} is darodar.com\n\tif {>Referer} is datsun-do.com\n\tif {>Referer} is dav.kz\n\tif {>Referer} is davilaonline.shop\n\tif {>Referer} is dawlenie.com\n\tif {>Referer} is dbmkfhqk.bloger.index.hr\n\tif {>Referer} is dbutton.net\n\tif {>Referer} is dcdcapital.com\n\tif {>Referer} is ddlmega.net\n\tif {>Referer} is ddpills.com\n\tif {>Referer} is de.zapmeta.com\n\tif {>Referer} is dear-diary.ru\n\tif {>Referer} is deart-13.ru\n\tif {>Referer} is deda-moroza-zakaz.ru\n\tif {>Referer} is deirdre.top\n\tif {>Referer} is dekorkeramik.ru\n\tif {>Referer} is delayreferat.ru\n\tif {>Referer} is delfin-aqua.com.ua\n\tif {>Referer} is delo.fund\n\tif {>Referer} is deluxewatch.su\n\tif {>Referer} is demenageur.com\n\tif {>Referer} is den-noch24.ru\n\tif {>Referer} is dengi-v-kredit.in.ua\n\tif {>Referer} is denisecarey.top\n\tif {>Referer} is deniseconnie.top\n\tif {>Referer} is deniven.1bb.ru\n\tif {>Referer} is dent-home.ru\n\tif {>Referer} is dentuled.net\n\tif {>Referer} is depositfiles-porn.com\n\tif {>Referer} is depositfiles-porn.ga\n\tif {>Referer} is dermatovenerologiya.com\n\tif {>Referer} is deryie.com\n\tif {>Referer} is descargar-musica-gratis.net\n\tif {>Referer} is descargar-musicas-gratis.com\n\tif {>Referer} is design-lands.ru\n\tif {>Referer} is designdevise.com\n\tif {>Referer} is detailedvideos.com\n\tif {>Referer} is detalizaciya-tut.biz\n\tif {>Referer} is detective01.ru\n\tif {>Referer} is detki-opt.ru\n\tif {>Referer} is detoolzon.xyz\n\tif {>Referer} is detskie-konstruktory.ru\n\tif {>Referer} is detskie-zabavi.ru\n\tif {>Referer} is deutsche-poesie.com\n\tif {>Referer} is dev-seo.blog\n\tif {>Referer} is devochki-video.ru\n\tif {>Referer} is dezeypmall.xyz\n\tif {>Referer} is dgdsoutlet.xyz\n\tif {>Referer} is diarioaconcagua.com\n\tif {>Referer} is diatelier.ru\n\tif {>Referer} is dicru.info\n\tif {>Referer} is diebesten.co\n\tif {>Referer} is dienai.ru\n\tif {>Referer} is dienmaytot.xyz\n\tif {>Referer} is diesel-parts28.ru\n\tif {>Referer} is digest-project.ru\n\tif {>Referer} is digilander.libero.it\n\tif {>Referer} is digital-video-processing.com\n\tif {>Referer} is digitalfaq.com\n\tif {>Referer} is dimkino.ru\n\tif {>Referer} is dinkolove.ya.ru\n\tif {>Referer} is diplom-nk.com\n\tif {>Referer} is diplomas-ru.com\n\tif {>Referer} is dipstar.org\n\tif {>Referer} is directrev.com\n\tif {>Referer} is discounttaxi.kz\n\tif {>Referer} is discover-prior-full-stack-services.party\n\tif {>Referer} is discover-prior-ppc-service.party\n\tif {>Referer} is discover-top-seo-service.review\n\tif {>Referer} is distonija.com\n\tif {>Referer} is divan-dekor.com.ua\n\tif {>Referer} is dividendo.ru\n\tif {>Referer} is diy-handmade-ideas.com\n\tif {>Referer} is djekxa.ru\n\tif {>Referer} is djonwatch.ru\n\tif {>Referer} is djstools.com\n\tif {>Referer} is dktr.ru\n\tif {>Referer} is dldsshop.xyz\n\tif {>Referer} is dlya-android.org\n\tif {>Referer} is dms-sw.ru\n\tif {>Referer} is dna-sklad.ru\n\tif {>Referer} is dnepr-avtospar.com.ua\n\tif {>Referer} is dneprsvet.com.ua\n\tif {>Referer} is dnmetall.ru\n\tif {>Referer} is docs4all.com\n\tif {>Referer} is docsarchive.net\n\tif {>Referer} is docsportal.net\n\tif {>Referer} is docstoc.com\n\tif {>Referer} is doctmalls.xyz\n\tif {>Referer} is doctornadezhda.ru\n\tif {>Referer} is documentbase.net\n\tif {>Referer} is documentserver.net\n\tif {>Referer} is documentsite.net\n\tif {>Referer} is dodge-forum.eu\n\tif {>Referer} is doeco.ru\n\tif {>Referer} is doggyhealthy.com\n\tif {>Referer} is dogovorpodryada.ru\n\tif {>Referer} is dogshowsonice.com\n\tif {>Referer} is dogsrun.net\n\tif {>Referer} is dojki-devki.ru\n\tif {>Referer} is dojki-hd.com\n\tif {>Referer} is doktoronline.no\n\tif {>Referer} is dokumentalkino.net\n\tif {>Referer} is dom-international.ru\n\tif {>Referer} is domain-tracker.com\n\tif {>Referer} is domashneeruporno.com\n\tif {>Referer} is domashniy-hotel.ru\n\tif {>Referer} is domashniy-recepti.ru\n\tif {>Referer} is dombestofferhdd.info\n\tif {>Referer} is domcran.net\n\tif {>Referer} is domik-derevne.ru\n\tif {>Referer} is dominateforex.ml\n\tif {>Referer} is domination.ml\n\tif {>Referer} is dominterior.org\n\tif {>Referer} is dommdom.com\n\tif {>Referer} is domovozik.ru\n\tif {>Referer} is domoysshop.ru\n\tif {>Referer} is dompechey.by\n\tif {>Referer} is domsadiogorod.ru\n\tif {>Referer} is donvito.unas.cz\n\tif {>Referer} is doreenblog.online\n\tif {>Referer} is doska-vsem.ru\n\tif {>Referer} is dostavka-v-krym.com\n\tif {>Referer} is dostavka-v-ukrainu.ru\n\tif {>Referer} is dosug-lux.ru\n\tif {>Referer} is dosugrostov.site\n\tif {>Referer} is download-of-the-warez.blogspot.com\n\tif {>Referer} is downloadkakaotalk.com\n\tif {>Referer} is downloadmefiranaratb1972.xpg.com.br\n\tif {>Referer} is doxyporno.com\n\tif {>Referer} is doxysexy.com\n\tif {>Referer} is doyouknowtheword-flummox.ml\n\tif {>Referer} is dprkboards.com\n\tif {>Referer} is draniki.org\n\tif {>Referer} is dreamland-bg.com\n\tif {>Referer} is dreams-works.net\n\tif {>Referer} is drev.biz\n\tif {>Referer} is driving.kiev.ua\n\tif {>Referer} is drugs-no-rx.info\n\tif {>Referer} is drugspowerstore.com\n\tif {>Referer} is drugstoreforyou.com\n\tif {>Referer} is drupa.com\n\tif {>Referer} is druzhbany.ru\n\tif {>Referer} is druzhininevgeniy63.blogspot.com\n\tif {>Referer} is dspautomations.com\n\tif {>Referer} is dstroy.su\n\tif {>Referer} is duitbux.info\n\tif {>Referer} is dumpsccshop.com\n\tif {>Referer} is dvd-famille.com\n\tif {>Referer} is dvk-stroi.ru\n\tif {>Referer} is dvr.biz.ua\n\tif {>Referer} is dzinerstudio.com\n\tif {>Referer} is e-avon.ru\n\tif {>Referer} is e-buyeasy.com\n\tif {>Referer} is e-collantes.com\n\tif {>Referer} is e-commerce-seo.com\n\tif {>Referer} is e-commerce-seo1.com\n\tif {>Referer} is e-kwiaciarz.pl\n\tif {>Referer} is e-stroymart.kz\n\tif {>Referer} is e2click.com\n\tif {>Referer} is eandsgallery.com\n\tif {>Referer} is eaptekaplus.ru\n\tif {>Referer} is earn-from-articles.com\n\tif {>Referer} is earnian-money.info\n\tif {>Referer} is earnity-money.info\n\tif {>Referer} is easycommerce.cf\n\tif {>Referer} is easync.io\n\tif {>Referer} is easytuningshop.ru\n\tif {>Referer} is eavuinsr.online\n\tif {>Referer} is ecblog.xyz\n\tif {>Referer} is ecommerce-seo.com\n\tif {>Referer} is ecommerce-seo.org\n\tif {>Referer} is ecomp3.ru\n\tif {>Referer} is econom.co\n\tif {>Referer} is ecookna.com.ua\n\tif {>Referer} is edakgfvwql.ru\n\tif {>Referer} is edelstahlschornstein-123.de\n\tif {>Referer} is editmedios.com\n\tif {>Referer} is edmed-sonline.com\n\tif {>Referer} is ednetstore.xyz\n\tif {>Referer} is edshopping.net\n\tif {>Referer} is eduardoluis.com\n\tif {>Referer} is education-cz.ru\n\tif {>Referer} is educhess.ru\n\tif {>Referer} is edudocs.net\n\tif {>Referer} is eduinfosite.com\n\tif {>Referer} is eduserver.net\n\tif {>Referer} is eecz.org\n\tif {>Referer} is eets.net\n\tif {>Referer} is ege-essay.ru\n\tif {>Referer} is ege-krasnoyarsk.ru\n\tif {>Referer} is egovaleo.it\n\tif {>Referer} is egvar.net\n\tif {>Referer} is ek-invest.ru\n\tif {>Referer} is ekatalog.xyz\n\tif {>Referer} is ekaterinburg.xrus.org\n\tif {>Referer} is ekbspravka.ru\n\tif {>Referer} is eko-gazon.ru\n\tif {>Referer} is ekobata.ru\n\tif {>Referer} is ekoproekt-kr.ru\n\tif {>Referer} is ekspertmed.com\n\tif {>Referer} is ekto.ee\n\tif {>Referer} is el-nation.com\n\tif {>Referer} is elainasblog.xyz\n\tif {>Referer} is eldoradorent.az\n\tif {>Referer} is election.interferencer.ru\n\tif {>Referer} is electric-blue-industries.com\n\tif {>Referer} is electricwheelchairsarea.com\n\tif {>Referer} is electro-prom.com\n\tif {>Referer} is elegante-vitrage.ru\n\tif {>Referer} is elektrikovich.ru\n\tif {>Referer} is elektrischezi.canalblog.com\n\tif {>Referer} is elektrischeziga.livejournal.com\n\tif {>Referer} is elektrischezigarette1.blog.pl\n\tif {>Referer} is elektrischezigarette1.onsugar.com\n\tif {>Referer} is elektrischezigarette2.devhub.com\n\tif {>Referer} is elektrischezigarette2.onsugar.com\n\tif {>Referer} is elektrischezigarettekaufen2.cowblog.fr\n\tif {>Referer} is elektrischezigaretten1.blogse.nl\n\tif {>Referer} is elektrischezigaretten2.beeplog.com\n\tif {>Referer} is elektronischezi.livejournal.com\n\tif {>Referer} is elektronischezigarette2.mex.tl\n\tif {>Referer} is elektronischezigarettekaufen1.beeplog.com\n\tif {>Referer} is elektronischezigarettekaufen1.myblog.de\n\tif {>Referer} is elektronischezigarettekaufen2.tumblr.com\n\tif {>Referer} is elektrozigarette1.dreamwidth.org\n\tif {>Referer} is elektrozigarette2.webs.com\n\tif {>Referer} is elektrozigarette2.wordpressy.pl\n\tif {>Referer} is elektrozigarettekaufen1.devhub.com\n\tif {>Referer} is elektrozigarettekaufen2.blogse.nl\n\tif {>Referer} is elektrozigaretten1.postbit.com\n\tif {>Referer} is elektrozigaretten1.tumblr.com\n\tif {>Referer} is elektrozigaretten1.webs.com\n\tif {>Referer} is elektrozigaretten2.yn.lt\n\tif {>Referer} is elementspluss.ru\n\tif {>Referer} is elenatkachenko.com.ua\n\tif {>Referer} is elentur.com.ua\n\tif {>Referer} is elidelcream.weebly.com\n\tif {>Referer} is elitesportsadvisor.com\n\tif {>Referer} is elizabethbruno.top\n\tif {>Referer} is elkacentr.ru\n\tif {>Referer} is ellemarket.com\n\tif {>Referer} is elmifarhangi.com\n\tif {>Referer} is eloconcream.blogspot.com\n\tif {>Referer} is eloxal.ru\n\tif {>Referer} is elvel.com.ua\n\tif {>Referer} is embedle.com\n\tif {>Referer} is emctestlab.ru\n\tif {>Referer} is emerson-rus.ru\n\tif {>Referer} is emicef.com\n\tif {>Referer} is empire-market.org\n\tif {>Referer} is empire-market.xyz\n\tif {>Referer} is empiremarket-link.org\n\tif {>Referer} is empiremarketlink24.com\n\tif {>Referer} is empirestuff.org\n\tif {>Referer} is empis.magix.net\n\tif {>Referer} is encmbtia.online\n\tif {>Referer} is energomash.net\n\tif {>Referer} is energy-ua.com\n\tif {>Referer} is energydiet-info.ru\n\tif {>Referer} is energydiet24.ru\n\tif {>Referer} is energysexy.com\n\tif {>Referer} is enginebay.ru\n\tif {>Referer} is englishdictionaryfree.com\n\tif {>Referer} is englishtopic.ru\n\tif {>Referer} is enter-unicredit.ru\n\tif {>Referer} is entgetadsincome.info\n\tif {>Referer} is envistore.xyz\n\tif {>Referer} is eonpal.com\n\tif {>Referer} is epcpolo.com\n\tif {>Referer} is epicdiving.com\n\tif {>Referer} is eraglass.com\n\tif {>Referer} is erank.eu\n\tif {>Referer} is eredijovon.com\n\tif {>Referer} is ereko.ru\n\tif {>Referer} is erias.xyz\n\tif {>Referer} is eric-artem.com\n\tif {>Referer} is ericshome.store\n\tif {>Referer} is erinhome.xyz\n\tif {>Referer} is ero-video-chat.org\n\tif {>Referer} is erofus.online\n\tif {>Referer} is eropho.com\n\tif {>Referer} is eropho.net\n\tif {>Referer} is erot.co\n\tif {>Referer} is erotag.com\n\tif {>Referer} is eroticheskij-video-chat.ru\n\tif {>Referer} is erotikstories.ru\n\tif {>Referer} is es-pfrf.ru\n\tif {>Referer} is es5.com\n\tif {>Referer} is escort-russian.com\n\tif {>Referer} is escortplius.com\n\tif {>Referer} is eshop.md\n\tif {>Referer} is eskei83.com\n\tif {>Referer} is esnm.ru\n\tif {>Referer} is esoterikforum.at\n\tif {>Referer} is essaytags.com\n\tif {>Referer} is estdj.com\n\tif {>Referer} is este-line.com.ua\n\tif {>Referer} is etairikavideo.gr\n\tif {>Referer} is etehnika.com.ua\n\tif {>Referer} is etotupo.ru\n\tif {>Referer} is ets-2-mod.ru\n\tif {>Referer} is etsfshop.xyz\n\tif {>Referer} is eu-cookie-law-enforcement-4.xyz\n\tif {>Referer} is eu-cookie-law-enforcement-5.xyz\n\tif {>Referer} is eu-cookie-law-enforcement-6.xyz\n\tif {>Referer} is eu-cookie-law-enforcement-7.xyz\n\tif {>Referer} is eu-cookie-law-enforcement1.xyz\n\tif {>Referer} is eu-cookie-law-enforcement2.xyz\n\tif {>Referer} is eu-cookie-law.blogspot.com\n\tif {>Referer} is eu-cookie-law.info\n\tif {>Referer} is eurocredit.xyz\n\tif {>Referer} is euromasterclass.ru\n\tif {>Referer} is euronis-free.com\n\tif {>Referer} is europages.com.ru\n\tif {>Referer} is europeanwatches.ru\n\tif {>Referer} is eurosamodelki.ru\n\tif {>Referer} is euroskat.ru\n\tif {>Referer} is evaashop.ru\n\tif {>Referer} is event-tracking.com\n\tif {>Referer} is eventiyahall.ru\n\tif {>Referer} is evreuxshop.xyz\n\tif {>Referer} is exchangeit.gq\n\tif {>Referer} is exchanges-bet.com\n\tif {>Referer} is exclusive-profit.com\n\tif {>Referer} is exdocsfiles.com\n\tif {>Referer} is execedmall.xyz\n\tif {>Referer} is executehosting.com\n\tif {>Referer} is exotic-video-chat.ru\n\tif {>Referer} is expdom.com\n\tif {>Referer} is expediacustomerservicenumber.online\n\tif {>Referer} is expert-find.ru\n\tif {>Referer} is expertnaya-ocenka.ru\n\tif {>Referer} is explore-prior-web-service.review\n\tif {>Referer} is express-vyvoz.ru\n\tif {>Referer} is expresstoplivo.ru\n\tif {>Referer} is extener.com\n\tif {>Referer} is extener.org\n\tif {>Referer} is extrabot.com\n\tif {>Referer} is extremez.net\n\tif {>Referer} is eyes-on-you.ga\n\tif {>Referer} is eyessurgery.ru\n\tif {>Referer} is ez8motelseaworldsandiego.com\n\tif {>Referer} is ezigarettekaufen.myblog.de\n\tif {>Referer} is ezigarettekaufen1.hpage.com\n\tif {>Referer} is ezigarettekaufen2.blox.pl\n\tif {>Referer} is ezigarettekaufen2.mpbloggar.se\n\tif {>Referer} is ezigarettekaufen2.yolasite.com\n\tif {>Referer} is ezigarettenkaufen1.deviantart.com\n\tif {>Referer} is ezigarettenkaufen1.pagina.gr\n\tif {>Referer} is ezigarettenkaufen2.dreamwidth.org\n\tif {>Referer} is ezigarettenshop1.yolasite.com\n\tif {>Referer} is ezigarettenshop2.myblog.de\n\tif {>Referer} is ezigarettenshop2.postbit.com\n\tif {>Referer} is ezigaretteshop.webs.com\n\tif {>Referer} is ezigaretteshop2.mywapblog.com\n\tif {>Referer} is ezigaretteshop2.vefblog.net\n\tif {>Referer} is ezofest.sk\n\tif {>Referer} is ezrvrentals.com\n\tif {>Referer} is f-loaded.de\n\tif {>Referer} is f-online.de\n\tif {>Referer} is f00kclan.de\n\tif {>Referer} is f012.de\n\tif {>Referer} is f07.de\n\tif {>Referer} is f0815.de\n\tif {>Referer} is f1nder.org\n\tif {>Referer} is facebook-mobile.xyz\n\tif {>Referer} is fainaidea.com\n\tif {>Referer} is faithe.top\n\tif {>Referer} is falco3d.com\n\tif {>Referer} is falcoware.com\n\tif {>Referer} is family1st.ca\n\tif {>Referer} is familyholiday.ml\n\tif {>Referer} is familyphysician.ru\n\tif {>Referer} is fanoboi.com\n\tif {>Referer} is fartunabest.ru\n\tif {>Referer} is fashion-mk.net\n\tif {>Referer} is fashiong.ru\n\tif {>Referer} is fashionindeed.ml\n\tif {>Referer} is fast-wordpress-start.com\n\tif {>Referer} is fastgg.net\n\tif {>Referer} is fatrizscae.online\n\tif {>Referer} is favorcosmetics.com\n\tif {>Referer} is favoritemoney.ru\n\tif {>Referer} is favoritki-msk.ru\n\tif {>Referer} is favornews.com\n\tif {>Referer} is fazika.ru\n\tif {>Referer} is fba-mexico.com\n\tif {>Referer} is fbdownloader.com\n\tif {>Referer} is fbfreegifts.com\n\tif {>Referer} is fc-007.com\n\tif {>Referer} is fealq.com\n\tif {>Referer} is feargames.ru\n\tif {>Referer} is feedback.sharemyfile.ru\n\tif {>Referer} is feedouble.com\n\tif {>Referer} is feedouble.net\n\tif {>Referer} is feel-planet.com\n\tif {>Referer} is feeriaclub.ru\n\tif {>Referer} is feiacmr.shop\n\tif {>Referer} is feminist.org.ua\n\tif {>Referer} is femmesdenudees.com\n\tif {>Referer} is fenoyl.batcave.net\n\tif {>Referer} is ferieboligkbh.dk\n\tif {>Referer} is fermersovet.ru\n\tif {>Referer} is fetishinside.com\n\tif {>Referer} is fialka.tomsk.ru\n\tif {>Referer} is fidalsa.de\n\tif {>Referer} is fierrohack.ru\n\tif {>Referer} is figensahin.com\n\tif {>Referer} is filesclub.net\n\tif {>Referer} is filesdatabase.net\n\tif {>Referer} is filesvine.com\n\tif {>Referer} is film-one.ru\n\tif {>Referer} is filmetricsasia.com\n\tif {>Referer} is filmgo.ru\n\tif {>Referer} is filmidivx.com\n\tif {>Referer} is films2018.com\n\tif {>Referer} is filter-ot-zheleza.ru\n\tif {>Referer} is financial-simulation.com\n\tif {>Referer} is finansov.info\n\tif {>Referer} is findacheaplawyers.com\n\tif {>Referer} is finder.cool\n\tif {>Referer} is findercarphotos.com\n\tif {>Referer} is fineblog.top\n\tif {>Referer} is finstroy.net\n\tif {>Referer} is finteks.ru\n\tif {>Referer} is firma-legion.ru\n\tif {>Referer} is firmgeo.xyz\n\tif {>Referer} is firstblog.top\n\tif {>Referer} is fit-discount.ru\n\tif {>Referer} is fitness-video.net\n\tif {>Referer} is fitodar.com.ua\n\tif {>Referer} is fiuagts.online\n\tif {>Referer} is fiuxy.com\n\tif {>Referer} is fiverr.com\n\tif {>Referer} is fix-website-errors.com\n\tif {>Referer} is fizika.tv\n\tif {>Referer} is flash4fun.com\n\tif {>Referer} is flavors.me\n\tif {>Referer} is flex4launch.ru\n\tif {>Referer} is flexderek.com\n\tif {>Referer} is floating-share-buttons.com\n\tif {>Referer} is flooringinstallation-edmonton.com\n\tif {>Referer} is flowersbazar.com\n\tif {>Referer} is flowertherapy.ru\n\tif {>Referer} is flowwwers.com\n\tif {>Referer} is flprog.com\n\tif {>Referer} is flyblog.xyz\n\tif {>Referer} is flytourisme.org\n\tif {>Referer} is fm-upgrade.ru\n\tif {>Referer} is fmgrupe.it\n\tif {>Referer} is foojo.net\n\tif {>Referer} is for-marketersy.info\n\tif {>Referer} is for-your.website\n\tif {>Referer} is forensicpsychiatry.ru\n\tif {>Referer} is forex-indextop20.ru\n\tif {>Referer} is forex-procto.ru\n\tif {>Referer} is forex.osobye.ru\n\tif {>Referer} is forex21.ru\n\tif {>Referer} is forexgb.ru\n\tif {>Referer} is forexunion.net\n\tif {>Referer} is forminecrafters.ru\n\tif {>Referer} is forms-mtm.ru\n\tif {>Referer} is forpostlock.ru\n\tif {>Referer} is forsex.info\n\tif {>Referer} is fortwosmartcar.pw\n\tif {>Referer} is forum-engineering.ru\n\tif {>Referer} is forum.poker4life.ru\n\tif {>Referer} is forum.tvmir.org\n\tif {>Referer} is forum20.smailik.org\n\tif {>Referer} is forum69.info\n\tif {>Referer} is forums.toucharcade.com\n\tif {>Referer} is fotoxxxru.com\n\tif {>Referer} is foxinsocks.ru\n\tif {>Referer} is foxjuegos.com\n\tif {>Referer} is foxtechfpv.com\n\tif {>Referer} is foxweber.com\n\tif {>Referer} is fpclub.ru\n\tif {>Referer} is fr.netlog.com\n\tif {>Referer} is francaise-poesie.com\n\tif {>Referer} is frankofficial.ru\n\tif {>Referer} is frauplus.ru\n\tif {>Referer} is free-fb-traffic.com\n\tif {>Referer} is free-fbook-traffic.com\n\tif {>Referer} is free-floating-buttons.com\n\tif {>Referer} is free-games-download.falcoware.com\n\tif {>Referer} is free-share-buttons-aaa.xyz\n\tif {>Referer} is free-share-buttons-bbb.xyz\n\tif {>Referer} is free-share-buttons-ccc.xyz\n\tif {>Referer} is free-share-buttons-ddd.xyz\n\tif {>Referer} is free-share-buttons-eee.xyz\n\tif {>Referer} is free-share-buttons-fff.xyz\n\tif {>Referer} is free-share-buttons.blogspot.com\n\tif {>Referer} is free-share-buttons.co\n\tif {>Referer} is free-share-buttons.com\n\tif {>Referer} is free-share-buttons.top\n\tif {>Referer} is free-social-buttons-aaa.xyz\n\tif {>Referer} is free-social-buttons-bbb.xyz\n\tif {>Referer} is free-social-buttons-ccc.xyz\n\tif {>Referer} is free-social-buttons-ddd.xyz\n\tif {>Referer} is free-social-buttons-eee.xyz\n\tif {>Referer} is free-social-buttons-fff.xyz\n\tif {>Referer} is free-social-buttons-hhh.xyz\n\tif {>Referer} is free-social-buttons-iii.xyz\n\tif {>Referer} is free-social-buttons.com\n\tif {>Referer} is free-social-buttons.org\n\tif {>Referer} is free-social-buttons.xyz\n\tif {>Referer} is free-social-buttons1.xyz\n\tif {>Referer} is free-social-buttons2.xyz\n\tif {>Referer} is free-social-buttons3.xyz\n\tif {>Referer} is free-social-buttons4.xyz\n\tif {>Referer} is free-social-buttons5.xyz\n\tif {>Referer} is free-social-buttons6.xyz\n\tif {>Referer} is free-social-buttons7.xyz\n\tif {>Referer} is free-traffic.xyz\n\tif {>Referer} is free-video-chat.ru\n\tif {>Referer} is free-video-tool.com\n\tif {>Referer} is free-website-traffic.com\n\tif {>Referer} is freeasecret.com\n\tif {>Referer} is freenode.info\n\tif {>Referer} is freeseedsonline.com\n\tif {>Referer} is freetangodownload.com\n\tif {>Referer} is freewebs.com\n\tif {>Referer} is freewhatsappload.com\n\tif {>Referer} is freewlan.info\n\tif {>Referer} is freshberry.com.ua\n\tif {>Referer} is freshnails.com.ua\n\tif {>Referer} is front.ru\n\tif {>Referer} is front.to\n\tif {>Referer} is fsalas.com\n\tif {>Referer} is fsin-pokypka.ru\n\tif {>Referer} is ftns.ru\n\tif {>Referer} is fuck-paid-share-buttons.xyz\n\tif {>Referer} is fuel-gas.com\n\tif {>Referer} is fullzdumps.cc\n\tif {>Referer} is fungirlsgames.net\n\tif {>Referer} is funnypica.com\n\tif {>Referer} is furniture-ukraine.com\n\tif {>Referer} is furniturehomewares.com\n\tif {>Referer} is futbolkisales.ru\n\tif {>Referer} is fvetgoods.xyz\n\tif {>Referer} is fxtips.ru\n\tif {>Referer} is g7m.pl\n\tif {>Referer} is gabeshop.ru\n\tif {>Referer} is gabysuniqueboutique.com\n\tif {>Referer} is gael-s.ru\n\tif {>Referer} is gagrasector.ru\n\tif {>Referer} is galaxy-family.ru\n\tif {>Referer} is galaxyflowers.ru\n\tif {>Referer} is galblog.top\n\tif {>Referer} is galeon.com\n\tif {>Referer} is gamblingpp.ru\n\tif {>Referer} is game-mmorpg.net\n\tif {>Referer} is game-top.su\n\tif {>Referer} is game300.ru\n\tif {>Referer} is games.kolossale.ru\n\tif {>Referer} is gammatraffic.com\n\tif {>Referer} is gandikapper.ru\n\tif {>Referer} is gaokr.xyz\n\tif {>Referer} is gap-search.com\n\tif {>Referer} is garantprava.com\n\tif {>Referer} is gardene.ru\n\tif {>Referer} is gasvleningrade.ru\n\tif {>Referer} is gatwick.ru\n\tif {>Referer} is gays-video-chat.ru\n\tif {>Referer} is gaz-voshod.ru\n\tif {>Referer} is gazel-72.ru\n\tif {>Referer} is gazobeton-p.com.ua\n\tif {>Referer} is gazoblok.net.ua\n\tif {>Referer} is gbh-invest.ru\n\tif {>Referer} is gcmx.net\n\tif {>Referer} is gcup.ru\n\tif {>Referer} is gdcentre.ru\n\tif {>Referer} is gearcraft.us\n\tif {>Referer} is gearsadspromo.club\n\tif {>Referer} is gelezki.com\n\tif {>Referer} is geliyballon.ru\n\tif {>Referer} is gelstate.ru\n\tif {>Referer} is generalporn.org\n\tif {>Referer} is genericlowlatencyasiodriverhq.aircus.com\n\tif {>Referer} is geniusfood.co.uk\n\tif {>Referer} is gentamicineyedrops.blogspot.com\n\tif {>Referer} is georgeblog.online\n\tif {>Referer} is gepatit-info.top\n\tif {>Referer} is germes-trans.com\n\tif {>Referer} is get-best-copywriting-service.stream\n\tif {>Referer} is get-clickir.info\n\tif {>Referer} is get-clickize.info\n\tif {>Referer} is get-free-social-traffic.com\n\tif {>Referer} is get-free-traffic-now.com\n\tif {>Referer} is get-more-freeen-visitors.info\n\tif {>Referer} is get-more-freeer-visitors.info\n\tif {>Referer} is get-more-freeish-visitors.info\n\tif {>Referer} is get-more-freeize-visitors.info\n\tif {>Referer} is get-more-freele-visitors.info\n\tif {>Referer} is get-morebit-free-visitors.info\n\tif {>Referer} is get-prime-seo-services.review\n\tif {>Referer} is get-seo-help.com\n\tif {>Referer} is get-your-social-buttons.info\n\tif {>Referer} is getaadsincome.info\n\tif {>Referer} is getadsincomeian.info\n\tif {>Referer} is getadsincomely.info\n\tif {>Referer} is getadsincomeof.info\n\tif {>Referer} is getbottraffic4free.club\n\tif {>Referer} is getbottraffic4free.host\n\tif {>Referer} is getbottraffic4free.xyz\n\tif {>Referer} is getbytadsincome.info\n\tif {>Referer} is getfy-click.info\n\tif {>Referer} is getism-more-free-visitors.info\n\tif {>Referer} is getity-more-free-visitors.info\n\tif {>Referer} is getityadsincome.info\n\tif {>Referer} is getive-more-free-visitors.info\n\tif {>Referer} is getlamborghini.ga\n\tif {>Referer} is getoutofdebtfree.org\n\tif {>Referer} is getprismatic.com\n\tif {>Referer} is getpy-click.info\n\tif {>Referer} is getpy-more-free-visitors.info\n\tif {>Referer} is getrichquick.ml\n\tif {>Referer} is getrichquickly.info\n\tif {>Referer} is getyourprofit.net\n\tif {>Referer} is gevciamst.online\n\tif {>Referer} is gezlev.com.ua\n\tif {>Referer} is gfaq.ru\n\tif {>Referer} is ghazel.ru\n\tif {>Referer} is ghernnqr.skyrock.com\n\tif {>Referer} is gheus.altervista.org\n\tif {>Referer} is ghostvisitor.com\n\tif {>Referer} is gidonline.one\n\tif {>Referer} is gidro-partner.ru\n\tif {>Referer} is giftbig.ru\n\tif {>Referer} is girlporn.ru\n\tif {>Referer} is girls-ufa.ru\n\tif {>Referer} is girlsatgames.ru\n\tif {>Referer} is gk-atlant.info\n\tif {>Referer} is gk-casino.fun\n\tif {>Referer} is gk-casino.online\n\tif {>Referer} is gk-casino.ru\n\tif {>Referer} is gk-casino.site\n\tif {>Referer} is gk-casino.space\n\tif {>Referer} is gk-casino.website\n\tif {>Referer} is gkvector.ru\n\tif {>Referer} is glall.ru\n\tif {>Referer} is glass-msk.ru\n\tif {>Referer} is glavprofit.ru\n\tif {>Referer} is glcomputers.ru\n\tif {>Referer} is glktfw.net\n\tif {>Referer} is global-smm.ru\n\tif {>Referer} is globalscam.ga\n\tif {>Referer} is globatur.ru\n\tif {>Referer} is globetrotting-culture.ru\n\tif {>Referer} is glogow.pl\n\tif {>Referer} is glopages.ru\n\tif {>Referer} is go2album.com\n\tif {>Referer} is gobongo.info\n\tif {>Referer} is goforexvps.com\n\tif {>Referer} is gogps.me\n\tif {>Referer} is gojiberriess.apishops.ru\n\tif {>Referer} is gok-kasten.net\n\tif {>Referer} is goldandcard.ru\n\tif {>Referer} is golden-catalog.pro\n\tif {>Referer} is golden-praga.ru\n\tif {>Referer} is goldenggames.com\n\tif {>Referer} is goldvaultmetals.com\n\tif {>Referer} is golmau.host.sk\n\tif {>Referer} is golyedevushki.com\n\tif {>Referer} is gonextmedia.com\n\tif {>Referer} is good-potolok.ru\n\tif {>Referer} is goodbyecellulite.ru\n\tif {>Referer} is goodcoffeepremium.com\n\tif {>Referer} is goodhumor24.com\n\tif {>Referer} is goodnightjournal.com\n\tif {>Referer} is goodprotein.ru\n\tif {>Referer} is google-liar.ru\n\tif {>Referer} is googlefeud.com\n\tif {>Referer} is googlemare.com\n\tif {>Referer} is googlsucks.com\n\tif {>Referer} is gorabagrata.ru\n\tif {>Referer} is gorgaz.info\n\tif {>Referer} is goroda-vsego-mira.ru\n\tif {>Referer} is gorodservis.ru\n\tif {>Referer} is gosreg.amchs.ru\n\tif {>Referer} is gototal.co.nz\n\tif {>Referer} is gourcy.altervista.org\n\tif {>Referer} is goyua.xyz\n\tif {>Referer} is gq-catalog.gq\n\tif {>Referer} is graceonline.shop\n\tif {>Referer} is grafaman.ru\n\tif {>Referer} is grand-chlen.ru\n\tif {>Referer} is graphid.com\n\tif {>Referer} is gratuitbaise.com\n\tif {>Referer} is greatblog.top\n\tif {>Referer} is greatgrace.ru\n\tif {>Referer} is greentechsy.com\n\tif {>Referer} is grizzlysgrill.com\n\tif {>Referer} is groshi-kredut.com.ua\n\tif {>Referer} is groupmoney.ru\n\tif {>Referer} is growmyfunds.ca\n\tif {>Referer} is growshop.es\n\tif {>Referer} is growth-hackingan.info\n\tif {>Referer} is growth-hackingead.info\n\tif {>Referer} is growth-hackingeads.info\n\tif {>Referer} is growth-hackingor.info\n\tif {>Referer} is growth-hackingy.info\n\tif {>Referer} is grupografico-pilar.com.ar\n\tif {>Referer} is gruzchiki24.ru\n\tif {>Referer} is gsbs.com.ua\n\tif {>Referer} is gsmlab.pl\n\tif {>Referer} is gsmtlf.ru\n\tif {>Referer} is gta-club.ru\n\tif {>Referer} is gta-top.ru\n\tif {>Referer} is gttpsale.xyz\n\tif {>Referer} is guardlink.com\n\tif {>Referer} is guardlink.org\n\tif {>Referer} is guge.io\n\tif {>Referer} is guidetopetersburg.com\n\tif {>Referer} is gungamesz.com\n\tif {>Referer} is guruofcasino.com\n\tif {>Referer} is gwhwpxbw.bloger.index.hr\n\tif {>Referer} is gxcb.net\n\tif {>Referer} is h2monline.com\n\tif {>Referer} is hacktougroup.ru\n\tif {>Referer} is hagirkblog.space\n\tif {>Referer} is hahashka.ru\n\tif {>Referer} is haikuware.com\n\tif {>Referer} is halat.xyz\n\tif {>Referer} is halefa.com\n\tif {>Referer} is hamyshop.xyz\n\tif {>Referer} is handicapvansarea.com\n\tif {>Referer} is handicapvantoday.com\n\tif {>Referer} is handsandlegs.ru\n\tif {>Referer} is hanink.biz.ly\n\tif {>Referer} is hankspring.xyz\n\tif {>Referer} is happysong.ru\n\tif {>Referer} is hard-porn.mobi\n\tif {>Referer} is hardcore.anzwers.net\n\tif {>Referer} is hardosale.xyz\n\tif {>Referer} is harpro.net\n\tif {>Referer} is havepussy.com\n\tif {>Referer} is hawaiisurf.com\n\tif {>Referer} is hazardky.net\n\tif {>Referer} is hd1080film.ru\n\tif {>Referer} is hd720kino.ru\n\tif {>Referer} is hdfreeporno.net\n\tif {>Referer} is hdhc.site\n\tif {>Referer} is hdmoviecamera.net\n\tif {>Referer} is hdmoviecams.com\n\tif {>Referer} is hdmoviecams.net\n\tif {>Referer} is hdsmartvideoreg.ru\n\tif {>Referer} is headpharmacy.com\n\tif {>Referer} is healbio.ru\n\tif {>Referer} is healgastro.com\n\tif {>Referer} is healing-dysplasia.ru\n\tif {>Referer} is healmytrauma.info\n\tif {>Referer} is healthhacks.ru\n\tif {>Referer} is heeha.net\n\tif {>Referer} is hem.passagen.se\n\tif {>Referer} is hentai-manga.porn\n\tif {>Referer} is heroero.com\n\tif {>Referer} is hexometer.com\n\tif {>Referer} is hifidesign.ru\n\tif {>Referer} is hilaryblog.top\n\tif {>Referer} is hill-accent-withdraw-sentiment.info\n\tif {>Referer} is himandmall.xyz\n\tif {>Referer} is hit-kino.ru\n\tif {>Referer} is hitree.shop\n\tif {>Referer} is hitsbox.info\n\tif {>Referer} is hiwibyh.bugs3.com\n\tif {>Referer} is hiwpro.xyz\n\tif {>Referer} is hkdiiohi.skyrock.com\n\tif {>Referer} is hkjrsale.xyz\n\tif {>Referer} is hmmm.cz\n\tif {>Referer} is hmywwogw.bloger.index.hr\n\tif {>Referer} is hobild.net\n\tif {>Referer} is hol.es\n\tif {>Referer} is holiday-shop.ru\n\tif {>Referer} is holidaypics.org\n\tif {>Referer} is holistickenko.com\n\tif {>Referer} is holodkovich.com\n\tif {>Referer} is home.myplaycity.com\n\tif {>Referer} is homeafrikalike.tk\n\tif {>Referer} is homedo.fabpage.com\n\tif {>Referer} is homeinns.com\n\tif {>Referer} is homelygarden.com\n\tif {>Referer} is homemade.gq\n\tif {>Referer} is homemypicture.tk\n\tif {>Referer} is honesty-homemade-grizzly-humanlike.com\n\tif {>Referer} is hongfanji.com\n\tif {>Referer} is hoporno.com\n\tif {>Referer} is horoshieokna.com\n\tif {>Referer} is host-protection.com\n\tif {>Referer} is hostcritique.com\n\tif {>Referer} is hoste.octopis.com\n\tif {>Referer} is hostiman.ru\n\tif {>Referer} is hosting-tracker.com\n\tif {>Referer} is hostingclub.lk\n\tif {>Referer} is hostsshop.ru\n\tif {>Referer} is hotblognetwork.com\n\tif {>Referer} is hotdl.in\n\tif {>Referer} is hotspot.ipb.co.id\n\tif {>Referer} is hottour.com\n\tif {>Referer} is hotwatersdamps.com\n\tif {>Referer} is houdom.net\n\tif {>Referer} is housedesigning.ru\n\tif {>Referer} is housediz.com\n\tif {>Referer} is housekuba.org\n\tif {>Referer} is housemilan.ru\n\tif {>Referer} is houseofgaga.ru\n\tif {>Referer} is houseofrose.com\n\tif {>Referer} is houston-vikings.com\n\tif {>Referer} is how-i-build-website.review\n\tif {>Referer} is how-i-promote-website.review\n\tif {>Referer} is how-to-buy-bitcoin.club\n\tif {>Referer} is how-to-buy-bitcoin.stream\n\tif {>Referer} is how-to-buy-bitcoins-cheap.party\n\tif {>Referer} is how-to-buy-bitcoins-cheap.review\n\tif {>Referer} is how-to-buy-bitcoins-cheap.stream\n\tif {>Referer} is how-to-buy-bitcoins-cheap.trade\n\tif {>Referer} is how-to-buy-bitcoins.stream\n\tif {>Referer} is how-to-buy-bitcoins.trade\n\tif {>Referer} is how-to-earn-quick-money.com\n\tif {>Referer} is how-to-promote-website.faith\n\tif {>Referer} is how-to-promote-website.review\n\tif {>Referer} is howlongdoestizanidinestayinyoursystem.blogspot.com\n\tif {>Referer} is howmuchdoestizanidinecost.blogspot.com\n\tif {>Referer} is howopen.ru\n\tif {>Referer} is howtostopreferralspam.com\n\tif {>Referer} is howtostopreferralspam.eu\n\tif {>Referer} is hoztorg-opt.ru\n\tif {>Referer} is hplaserjetpdriver8y.pen.io\n\tif {>Referer} is hptwaakw.blog.fc2.com\n\tif {>Referer} is hrtonline.xyz\n\tif {>Referer} is hscsscotland.com\n\tif {>Referer} is hseipaa.kz\n\tif {>Referer} is hsoutdoor.com\n\tif {>Referer} is hspline.com\n\tif {>Referer} is https-legalrc.biz\n\tif {>Referer} is hugblog.xyz\n\tif {>Referer} is huhn.altervista.org\n\tif {>Referer} is hulfingtonpost.com\n\tif {>Referer} is hully.altervista.org\n\tif {>Referer} is humanorightswatch.org\n\tif {>Referer} is hundejo.com\n\tif {>Referer} is huntdown.info\n\tif {>Referer} is husky-shop.cz\n\tif {>Referer} is hustoon.over-blog.com\n\tif {>Referer} is hvd-store.com\n\tif {>Referer} is hydra-2019.ru\n\tif {>Referer} is hydra-2020.online\n\tif {>Referer} is hydra-2020.ru\n\tif {>Referer} is hydra-centr.fun\n\tif {>Referer} is hydra-dealer.com\n\tif {>Referer} is hydra-guide.org\n\tif {>Referer} is hydra-new.online\n\tif {>Referer} is hydra-onion-faq.com\n\tif {>Referer} is hydra-pc.com\n\tif {>Referer} is hydra-shop.org\n\tif {>Referer} is hydra-site.ru\n\tif {>Referer} is hydra-slon.net\n\tif {>Referer} is hydra-vhod2020.com\n\tif {>Referer} is hydra-zerkalo20.com\n\tif {>Referer} is hydra.online\n\tif {>Referer} is hydra1717.com\n\tif {>Referer} is hydra2.market\n\tif {>Referer} is hydra2020.top\n\tif {>Referer} is hydra2020gate.com\n\tif {>Referer} is hydra2020market.com\n\tif {>Referer} is hydra2020onion.com\n\tif {>Referer} is hydra2020ru.com\n\tif {>Referer} is hydra2020zerkala.com\n\tif {>Referer} is hydra2020zerkalo.com\n\tif {>Referer} is hydra20onion.com\n\tif {>Referer} is hydra20online.com\n\tif {>Referer} is hydra20original.com\n\tif {>Referer} is hydra2use.com\n\tif {>Referer} is hydra2zahod.com\n\tif {>Referer} is hydraena.com\n\tif {>Referer} is hydrahow.com\n\tif {>Referer} is hydrahudra.com\n\tif {>Referer} is hydraland.net\n\tif {>Referer} is hydramarket2020.com\n\tif {>Referer} is hydramirror2020.com\n\tif {>Referer} is hydranten.net\n\tif {>Referer} is hydraonion2019.net\n\tif {>Referer} is hydrarusmarket.com\n\tif {>Referer} is hydraruz-2020.com\n\tif {>Referer} is hydraruzonion2020.com\n\tif {>Referer} is hydraruzonionx.ru\n\tif {>Referer} is hydraruzxpnew4af.com.co\n\tif {>Referer} is hydraruzxpnew4af.ink\n\tif {>Referer} is hydraruzxpnew4aff.ru\n\tif {>Referer} is hydraruzxpwnew4afonion.com\n\tif {>Referer} is hydraulicoilcooler.net\n\tif {>Referer} is hydrauliczny.com\n\tif {>Referer} is hydravizoficial.info\n\tif {>Referer} is hydrazerkalo2019.net\n\tif {>Referer} is hydrazerkalo2020.com\n\tif {>Referer} is hydropump.su\n\tif {>Referer} is hyip-zanoza.me\n\tif {>Referer} is hyipmanager.in\n\tif {>Referer} is i-spare.ru\n\tif {>Referer} is ialgramer.shop\n\tif {>Referer} is iamsport.org\n\tif {>Referer} is ib-homecredit.ru\n\tif {>Referer} is ib-rencredit.ru\n\tif {>Referer} is iblogpress.xyz\n\tif {>Referer} is iceton.net\n\tif {>Referer} is ico.re\n\tif {>Referer} is ictizanidinehcl4mg.blogspot.com\n\tif {>Referer} is idc.com.ua\n\tif {>Referer} is idealtits.net\n\tif {>Referer} is ideayz.com\n\tif {>Referer} is idegenvezeto.eu\n\tif {>Referer} is ideibiznesa2015.ru\n\tif {>Referer} is ieeeoutlet.xyz\n\tif {>Referer} is ifirestarter.ru\n\tif {>Referer} is ifmo.ru\n\tif {>Referer} is igadgetsworld.com\n\tif {>Referer} is igamingtop.com\n\tif {>Referer} is igru-xbox.net\n\tif {>Referer} is ilikevitaly.com\n\tif {>Referer} is illagedusexe.com\n\tif {>Referer} is ilmen.net\n\tif {>Referer} is iloveitaly.ro\n\tif {>Referer} is iloveitaly.ru\n\tif {>Referer} is ilovevitaly.co\n\tif {>Referer} is ilovevitaly.com\n\tif {>Referer} is ilovevitaly.info\n\tif {>Referer} is ilovevitaly.org\n\tif {>Referer} is ilovevitaly.ro\n\tif {>Referer} is ilovevitaly.ru\n\tif {>Referer} is ilovevitaly.xyz\n\tif {>Referer} is imediadesk.com\n\tif {>Referer} is iminent.com\n\tif {>Referer} is immigrational.info\n\tif {>Referer} is immobiliaremassaro.com\n\tif {>Referer} is immobilieralgerie.net\n\tif {>Referer} is imperia31.ru\n\tif {>Referer} is imperiafilm.ru\n\tif {>Referer} is impotentik.com\n\tif {>Referer} is impresagaia.it\n\tif {>Referer} is in-mostbet.ru\n\tif {>Referer} is in-sto.ru\n\tif {>Referer} is inbabes.sexushost.com\n\tif {>Referer} is inboxdollars.com\n\tif {>Referer} is incanto.in.ua\n\tif {>Referer} is incitystroy.ru\n\tif {>Referer} is incomekey.net\n\tif {>Referer} is incoonline.xyz\n\tif {>Referer} is increasewwwtraffic.info\n\tif {>Referer} is indetiske.ya.ru\n\tif {>Referer} is indo-export.ru\n\tif {>Referer} is inet-shop.su\n\tif {>Referer} is infazavr.ru\n\tif {>Referer} is infektsii.com\n\tif {>Referer} is infobabki.ru\n\tif {>Referer} is infodocsportal.com\n\tif {>Referer} is infogame.name\n\tif {>Referer} is infokonkurs.ru\n\tif {>Referer} is inform-ua.info\n\tif {>Referer} is ingramreed.xyz\n\tif {>Referer} is inmoll.com\n\tif {>Referer} is innodgfdriverhm.aircus.com\n\tif {>Referer} is insider.pro\n\tif {>Referer} is installspartners.com\n\tif {>Referer} is instasexyblog.com\n\tif {>Referer} is insultu-net.ru\n\tif {>Referer} is intelhdgraphicsgtdrive6w.metroblog.com\n\tif {>Referer} is interferencer.ru\n\tif {>Referer} is interfucks.net\n\tif {>Referer} is intermesh.net\n\tif {>Referer} is internet-apteka.ru\n\tif {>Referer} is intex-air.ru\n\tif {>Referer} is intimchats.ru\n\tif {>Referer} is intimver.3dgayxxx.com\n\tif {>Referer} is invest-pamm.ru\n\tif {>Referer} is investingclub.ru\n\tif {>Referer} is investpamm.ru\n\tif {>Referer} is investsuccess.org\n\tif {>Referer} is invivo.hu\n\tif {>Referer} is inzn.ru\n\tif {>Referer} is io9.com\n\tif {>Referer} is ipod-app-reviews.com\n\tif {>Referer} is ipostroika.ru\n\tif {>Referer} is iqoption-bin.com\n\tif {>Referer} is iqoption.com\n\tif {>Referer} is iqoption.pro\n\tif {>Referer} is iradiology.ru\n\tif {>Referer} is iridsale.xyz\n\tif {>Referer} is ishgetadsincome.info\n\tif {>Referer} is isistaylorporn.info\n\tif {>Referer} is iskalko.ru\n\tif {>Referer} is iskussnica.ru\n\tif {>Referer} is isotoner.com\n\tif {>Referer} is ispaniya-costa-blanca.ru\n\tif {>Referer} is istanbulit.com\n\tif {>Referer} is istizanidineacontrolledsubstance.blogspot.com\n\tif {>Referer} is istizanidineanarcoticdrug.blogspot.com\n\tif {>Referer} is istizanidineanopiate.blogspot.com\n\tif {>Referer} is istizanidinelikexanax.blogspot.com\n\tif {>Referer} is istock-mebel.ru\n\tif {>Referer} is it-max.com.ua\n\tif {>Referer} is it-worlds.com\n\tif {>Referer} is itbc.kiev.ua\n\tif {>Referer} is itrevolution.cf\n\tif {>Referer} is itronics.ca\n\tif {>Referer} is itsdp3.com\n\tif {>Referer} is ivegetadsincome.info\n\tif {>Referer} is iyfsearch.com\n\tif {>Referer} is izamorfix.ru\n\tif {>Referer} is izhevsk.xrus.org\n\tif {>Referer} is izhevskjob.xyz\n\tif {>Referer} is izhstrelok.ru\n\tif {>Referer} is izi24.ru\n\tif {>Referer} is j-times.ru\n\tif {>Referer} is jabug.xyz\n\tif {>Referer} is jacblog.xyz\n\tif {>Referer} is jackonline.store\n\tif {>Referer} is janemill.xyz\n\tif {>Referer} is janettabridal.com\n\tif {>Referer} is japfm.com\n\tif {>Referer} is jasonpartington.com\n\tif {>Referer} is jav-fetish.com\n\tif {>Referer} is jav-fetish.site\n\tif {>Referer} is jav-idol.com\n\tif {>Referer} is javatex.co.id\n\tif {>Referer} is javcoast.com\n\tif {>Referer} is javlibrary.cc\n\tif {>Referer} is jaxcube.info\n\tif {>Referer} is jazzstyle4us.com\n\tif {>Referer} is jeffbullas.xyz\n\tif {>Referer} is jennyfire.ru\n\tif {>Referer} is jikem.com\n\tif {>Referer} is jintub.com\n\tif {>Referer} is jjbabskoe.ru\n\tif {>Referer} is job-opros.ru\n\tif {>Referer} is job-prosto.ru\n\tif {>Referer} is jobfree24.pl\n\tif {>Referer} is jobgirl24.ru\n\tif {>Referer} is jobius.com.ua\n\tif {>Referer} is johnnyhaley.top\n\tif {>Referer} is joinandplay.me\n\tif {>Referer} is joingames.org\n\tif {>Referer} is josephineblog.top\n\tif {>Referer} is journalhome.com\n\tif {>Referer} is joyceblog.top\n\tif {>Referer} is joycee.xyz\n\tif {>Referer} is judyandsimon.com\n\tif {>Referer} is juliadiets.com\n\tif {>Referer} is juliaworld.net\n\tif {>Referer} is jumkite.com\n\tif {>Referer} is justkillingti.me\n\tif {>Referer} is justprofit.xyz\n\tif {>Referer} is jweber.ru\n\tif {>Referer} is jwss.cc\n\tif {>Referer} is jyrxd.com\n\tif {>Referer} is kaac.ru\n\tif {>Referer} is kabbalah-red-bracelets.com\n\tif {>Referer} is kabinet-5ka.ru\n\tif {>Referer} is kabinet-alfaclick.ru\n\tif {>Referer} is kabinet-binbank.ru\n\tif {>Referer} is kabinet-card-5ka.ru\n\tif {>Referer} is kabinet-click-alfabank.ru\n\tif {>Referer} is kabinet-esia-gosuslugi.ru\n\tif {>Referer} is kabinet-faberlic.ru\n\tif {>Referer} is kabinet-gosuslugi.ru\n\tif {>Referer} is kabinet-ipoteka-domclick.ru\n\tif {>Referer} is kabinet-karta-5ka.ru\n\tif {>Referer} is kabinet-lk-megafon.ru\n\tif {>Referer} is kabinet-lk-rt.ru\n\tif {>Referer} is kabinet-login-mts.ru\n\tif {>Referer} is kabinet-mil.ru\n\tif {>Referer} is kabinet-mos.ru\n\tif {>Referer} is kabinet-my-beeline.ru\n\tif {>Referer} is kabinet-my-pochtabank.ru\n\tif {>Referer} is kabinet-nalog.ru\n\tif {>Referer} is kabinet-online-bm.ru\n\tif {>Referer} is kabinet-online-open.ru\n\tif {>Referer} is kabinet-online-rsb.ru\n\tif {>Referer} is kabinet-online-rshb.ru\n\tif {>Referer} is kabinet-online-sberbank.ru\n\tif {>Referer} is kabinet-online-sovcombank.ru\n\tif {>Referer} is kabinet-online-vtb.ru\n\tif {>Referer} is kabinet-pfr.ru\n\tif {>Referer} is kabinet-pfrf.ru\n\tif {>Referer} is kabinet-platon.ru\n\tif {>Referer} is kabinet-qiwi.ru\n\tif {>Referer} is kabinet-tele2.ru\n\tif {>Referer} is kabinet-tinkoff.ru\n\tif {>Referer} is kabinet-tricolor.ru\n\tif {>Referer} is kabinet-ttk.ru\n\tif {>Referer} is kabinet-vtb24.ru\n\tif {>Referer} is kaircm.shop\n\tif {>Referer} is kakablog.net\n\tif {>Referer} is kakadu-interior.com.ua\n\tif {>Referer} is kakworldoftanks.ru\n\tif {>Referer} is kalb.ru\n\tif {>Referer} is kambasoft.com\n\tif {>Referer} is kamin-sam.ru\n\tif {>Referer} is kamorel.com\n\tif {>Referer} is kanakox.com\n\tif {>Referer} is karachev-city.ru\n\tif {>Referer} is karadene.com\n\tif {>Referer} is karapuz.org.ua\n\tif {>Referer} is karusel-market.ru\n\tif {>Referer} is katjimej.blog.fc2.com\n\tif {>Referer} is katrd.xyz\n\tif {>Referer} is katushka.net\n\tif {>Referer} is kaz.kz\n\tif {>Referer} is kazan.xrus.org\n\tif {>Referer} is kazka.ru\n\tif {>Referer} is kazlenta.kz\n\tif {>Referer} is kazrent.com\n\tif {>Referer} is kellyonline.xyz\n\tif {>Referer} is kendrablog.online\n\tif {>Referer} is kenyagoods.xyz\n\tif {>Referer} is kerch.site\n\tif {>Referer} is ketrzyn.pl\n\tif {>Referer} is kevblog.top\n\tif {>Referer} is kevinsnow.online\n\tif {>Referer} is kexihao.xyz\n\tif {>Referer} is keywords-monitoring-success.com\n\tif {>Referer} is keywords-monitoring-your-success.com\n\tif {>Referer} is kharkov.ua\n\tif {>Referer} is kharlov.ua\n\tif {>Referer} is kidd.reunionwatch.com\n\tif {>Referer} is kierowca-praca.pl\n\tif {>Referer} is kiev.ua\n\tif {>Referer} is kimblog.top\n\tif {>Referer} is kinnarimasajes.com\n\tif {>Referer} is kino-filmi.com\n\tif {>Referer} is kino-fun.ru\n\tif {>Referer} is kino-key.info\n\tif {>Referer} is kino2018.cc\n\tif {>Referer} is kinobaks.com\n\tif {>Referer} is kinobum.org\n\tif {>Referer} is kinoflux.net\n\tif {>Referer} is kinohit1.ru\n\tif {>Referer} is kinopolet.net\n\tif {>Referer} is kinosed.net\n\tif {>Referer} is kinostar.online\n\tif {>Referer} is kinotorka.ru\n\tif {>Referer} is kiprinform.com\n\tif {>Referer} is kiwe-analytics.com\n\tif {>Referer} is kiwi237au.tk\n\tif {>Referer} is kiyany-za-spravedluvist.com.ua\n\tif {>Referer} is kletkimehan.ru\n\tif {>Referer} is klfd.net\n\tif {>Referer} is kndxbkdx.bloger.index.hr\n\tif {>Referer} is knigonosha.net\n\tif {>Referer} is kochanelli.com\n\tif {>Referer} is kolcasale.xyz\n\tif {>Referer} is koleso24.com.ua\n\tif {>Referer} is kollekcioner.ru\n\tif {>Referer} is kolotiloff.ru\n\tif {>Referer} is komp-pomosch.ru\n\tif {>Referer} is komputernaya-pomosh-moscow.ru\n\tif {>Referer} is komputers-best.ru\n\tif {>Referer} is komukc.com.ua\n\tif {>Referer} is kongoultry.net\n\tif {>Referer} is konkursov.net\n\tif {>Referer} is koopilka.com\n\tif {>Referer} is koptims.tiu.ru\n\tif {>Referer} is koronirealestate.gr\n\tif {>Referer} is kosova.de\n\tif {>Referer} is kosunnyclub.com\n\tif {>Referer} is kotaku.com\n\tif {>Referer} is kozhakoshek.com\n\tif {>Referer} is kozhasobak.com\n\tif {>Referer} is kozhniebolezni.com\n\tif {>Referer} is kpcconline.xyz\n\tif {>Referer} is krafte.ru\n\tif {>Referer} is krasivoe-hd.com\n\tif {>Referer} is krasivoe-hd.net\n\tif {>Referer} is krasnodar-avtolombard.ru\n\tif {>Referer} is krasnodar.xrus.org\n\tif {>Referer} is krasota-zdorovie.pw\n\tif {>Referer} is krasota.ru\n\tif {>Referer} is kredutu.com.ua\n\tif {>Referer} is kredytbank.com.ua\n\tif {>Referer} is kruiz-sochi.ru\n\tif {>Referer} is krumble-adsde.info\n\tif {>Referer} is krumble-adsen.info\n\tif {>Referer} is krumble-adsic.info\n\tif {>Referer} is krumbleent-ads.info\n\tif {>Referer} is krynica.info\n\tif {>Referer} is ktotut.net\n\tif {>Referer} is kumuk.info\n\tif {>Referer} is kupit-adenu.ru\n\tif {>Referer} is kursy-ege.ru\n\tif {>Referer} is kustanay.kz\n\tif {>Referer} is kvartir-remont.biz\n\tif {>Referer} is kvartira-sutochno.com\n\tif {>Referer} is kvartiry-remont.ucoz.ru\n\tif {>Referer} is kw21.org\n\tif {>Referer} is l2soft.eu\n\tif {>Referer} is la-fa.ru\n\tif {>Referer} is labguamec.online\n\tif {>Referer} is labplus.ru\n\tif {>Referer} is labvis.host.sk\n\tif {>Referer} is ladov.ru\n\tif {>Referer} is lafppshop.xyz\n\tif {>Referer} is laitrcus.online\n\tif {>Referer} is lakiikraski.ru\n\tif {>Referer} is lalalove.ru\n\tif {>Referer} is lambreshop.xyz\n\tif {>Referer} is laminat.com.ua\n\tif {>Referer} is lampokrat.ws\n\tif {>Referer} is lanasshop.ru\n\tif {>Referer} is landliver.org\n\tif {>Referer} is landoftracking.com\n\tif {>Referer} is languagecode.com\n\tif {>Referer} is lankarns.com\n\tif {>Referer} is laparfumotec.com\n\tif {>Referer} is lapitec.eu\n\tif {>Referer} is laptop-4-less.com\n\tif {>Referer} is laptoper.net\n\tif {>Referer} is larchik.net\n\tif {>Referer} is larutti.ru\n\tif {>Referer} is laudit.ru\n\tif {>Referer} is law-check-eight.xyz\n\tif {>Referer} is law-check-nine.xyz\n\tif {>Referer} is law-check-seven.xyz\n\tif {>Referer} is law-check-two.xyz\n\tif {>Referer} is law-enforcement-aa.xyz\n\tif {>Referer} is law-enforcement-bb.xyz\n\tif {>Referer} is law-enforcement-bot-aa.xyz\n\tif {>Referer} is law-enforcement-bot-bb.xyz\n\tif {>Referer} is law-enforcement-bot-cc.xyz\n\tif {>Referer} is law-enforcement-bot-dd.xyz\n\tif {>Referer} is law-enforcement-bot-ee.xyz\n\tif {>Referer} is law-enforcement-bot-ff.xyz\n\tif {>Referer} is law-enforcement-bot-hh.xyz\n\tif {>Referer} is law-enforcement-bot-ii.xyz\n\tif {>Referer} is law-enforcement-cc.xyz\n\tif {>Referer} is law-enforcement-check-eight.xyz\n\tif {>Referer} is law-enforcement-check-five.xyz\n\tif {>Referer} is law-enforcement-check-four.xyz\n\tif {>Referer} is law-enforcement-check-nine.xyz\n\tif {>Referer} is law-enforcement-check-one.xyz\n\tif {>Referer} is law-enforcement-check-six.xyz\n\tif {>Referer} is law-enforcement-check-three.xyz\n\tif {>Referer} is law-enforcement-check-two.xyz\n\tif {>Referer} is law-enforcement-dd.xyz\n\tif {>Referer} is law-enforcement-ee.xyz\n\tif {>Referer} is law-enforcement-eight.xyz\n\tif {>Referer} is law-enforcement-ff.xyz\n\tif {>Referer} is law-enforcement-five.xyz\n\tif {>Referer} is law-enforcement-four.xyz\n\tif {>Referer} is law-enforcement-gg.xyz\n\tif {>Referer} is law-enforcement-hh.xyz\n\tif {>Referer} is law-enforcement-one.xyz\n\tif {>Referer} is law-enforcement-seven.xyz\n\tif {>Referer} is law-enforcement-three.xyz\n\tif {>Referer} is law-enforcement-two.xyz\n\tif {>Referer} is law-five.xyz\n\tif {>Referer} is law-four.xyz\n\tif {>Referer} is law-one.xyz\n\tif {>Referer} is law-six.xyz\n\tif {>Referer} is law-three.xyz\n\tif {>Referer} is law-two.xyz\n\tif {>Referer} is lawrenceblog.online\n\tif {>Referer} is laxdrills.com\n\tif {>Referer} is layola.biz.tc\n\tif {>Referer} is lazy-z.com\n\tif {>Referer} is lcecshop.xyz\n\tif {>Referer} is leadwayau.com\n\tif {>Referer} is leboard.ru\n\tif {>Referer} is lebowmall.xyz\n\tif {>Referer} is ledalfa.by\n\tif {>Referer} is leddjc.net\n\tif {>Referer} is ledis.top\n\tif {>Referer} is ledpolice.ru\n\tif {>Referer} is ledx.by\n\tif {>Referer} is leeboyrussia.com\n\tif {>Referer} is legalrc.biz\n\tif {>Referer} is lego4x4.ru\n\tif {>Referer} is lenvred.org\n\tif {>Referer} is leon-official.site\n\tif {>Referer} is lernur.net\n\tif {>Referer} is lerporn.info\n\tif {>Referer} is leto-dacha.ru\n\tif {>Referer} is letolove.ru\n\tif {>Referer} is letsgotofriday.com\n\tif {>Referer} is levaquin750mg.blogspot.com\n\tif {>Referer} is lezbiyanki.net\n\tif {>Referer} is lflash.ru\n\tif {>Referer} is li-er.ru\n\tif {>Referer} is lida-ru.com\n\tif {>Referer} is lider82.ru\n\tif {>Referer} is life.biz.ua\n\tif {>Referer} is lifebyleese.com\n\tif {>Referer} is lifespeaker.ru\n\tif {>Referer} is ligastavok-in.ru\n\tif {>Referer} is light.ifmo.ru\n\tif {>Referer} is lighthearteds.shop\n\tif {>Referer} is likesdesign.com\n\tif {>Referer} is lilishopstogether.com\n\tif {>Referer} is lindsayblog.online\n\tif {>Referer} is linerdrilling.com\n\tif {>Referer} is link.web-list.xyz\n\tif {>Referer} is lipidofobia.com.br\n\tif {>Referer} is liquimondo.com\n\tif {>Referer} is lirunet.ru\n\tif {>Referer} is lisque.batcave.net\n\tif {>Referer} is littleberry.ru\n\tif {>Referer} is live-sexchat.ru\n\tif {>Referer} is live-xbet.com\n\tif {>Referer} is livefixer.com\n\tif {>Referer} is liveinternet.ro\n\tif {>Referer} is liveinternet.ru\n\tif {>Referer} is livejournal.top\n\tif {>Referer} is livia-pache.ru\n\tif {>Referer} is livingroomdecoratingideas.website\n\tif {>Referer} is livingsimply.com\n\tif {>Referer} is lk-gosuslugi.ru\n\tif {>Referer} is lk-lk-rt.ru\n\tif {>Referer} is llastbuy.ru\n\tif {>Referer} is lmrauction.com\n\tif {>Referer} is loadopia.com\n\tif {>Referer} is local-seo-for-multiple-locations.com\n\tif {>Referer} is login-tinkoff.ru\n\tif {>Referer} is loginduepunti.it\n\tif {>Referer} is logo-all.ru\n\tif {>Referer} is lol-smurfs.com\n\tif {>Referer} is lolz.guru\n\tif {>Referer} is lolzteam.online\n\tif {>Referer} is lolzteam.org\n\tif {>Referer} is lomb.co\n\tif {>Referer} is lombardfinder.ru\n\tif {>Referer} is lombia.co\n\tif {>Referer} is lombia.com\n\tif {>Referer} is lomza.info\n\tif {>Referer} is londonstratford.co.uk\n\tif {>Referer} is lookover.ru\n\tif {>Referer} is lost-alpha.ru\n\tif {>Referer} is lotoflotto.ru\n\tif {>Referer} is loveorganic.ch\n\tif {>Referer} is low-format.ru\n\tif {>Referer} is lowpricesiterx.com\n\tif {>Referer} is lsex.xyz\n\tif {>Referer} is lsitenonrepeat.com\n\tif {>Referer} is luckybull.io\n\tif {>Referer} is luckyshop.net.ua\n\tif {>Referer} is lukoilcard.ru\n\tif {>Referer} is lumb.co\n\tif {>Referer} is lutherstable.org\n\tif {>Referer} is luton-invest.ru\n\tif {>Referer} is luxmagazine.cf\n\tif {>Referer} is luxup.ru\n\tif {>Referer} is luxurybet.ru\n\tif {>Referer} is m-google.xyz\n\tif {>Referer} is m.ok.ru\n\tif {>Referer} is m1media.net\n\tif {>Referer} is macresource.co.uk\n\tif {>Referer} is madisonclothingny.com\n\tif {>Referer} is madjonline.xyz\n\tif {>Referer} is madot.onlinewebshop.net\n\tif {>Referer} is mafcards.ru\n\tif {>Referer} is magazintiande.ru\n\tif {>Referer} is magda-gadalka.ru\n\tif {>Referer} is magento-crew.net\n\tif {>Referer} is magicart.store\n\tif {>Referer} is magicdiet.gq\n\tif {>Referer} is magnetic-bracelets.ru\n\tif {>Referer} is maigralr.site\n\tif {>Referer} is mail.allnews24.in\n\tif {>Referer} is mainhunter.com\n\tif {>Referer} is mainlinehobby.net\n\tif {>Referer} is make-money-online.com\n\tif {>Referer} is makedo.ru\n\tif {>Referer} is makemoneyonline.com\n\tif {>Referer} is makeprogress.ga\n\tif {>Referer} is makler.org.ua\n\tif {>Referer} is maladot.com\n\tif {>Referer} is malbgoods.xyz\n\tif {>Referer} is malls.com\n\tif {>Referer} is maltadailypost.com\n\tif {>Referer} is mamidushop.xyz\n\tif {>Referer} is mamylik.ru\n\tif {>Referer} is manimpotence.com\n\tif {>Referer} is manipulyator-peterburg.ru\n\tif {>Referer} is manonstore.xyz\n\tif {>Referer} is manualterap.roleforum.ru\n\tif {>Referer} is manwang.net\n\tif {>Referer} is maofengjx.com\n\tif {>Referer} is marathonbet-in.ru\n\tif {>Referer} is marblestyle.ru\n\tif {>Referer} is marcogrup.com\n\tif {>Referer} is maridan.com.au\n\tif {>Referer} is maridan.com.ua\n\tif {>Referer} is marihome.online\n\tif {>Referer} is marinetraffic.com\n\tif {>Referer} is marjorieblog.online\n\tif {>Referer} is marketland.ml\n\tif {>Referer} is marktforschung-stuttgart.com\n\tif {>Referer} is marmitaco.cat\n\tif {>Referer} is martinahome.xyz\n\tif {>Referer} is martlinker.com\n\tif {>Referer} is massage-info.nl\n\tif {>Referer} is masserect.com\n\tif {>Referer} is master-muznachas.ru\n\tif {>Referer} is masterseek.com\n\tif {>Referer} is mastershef.club\n\tif {>Referer} is masturbate.co.uk\n\tif {>Referer} is mathoutlet.xyz\n\tif {>Referer} is matomete.net\n\tif {>Referer} is matras.space\n\tif {>Referer} is mattgibson.us\n\tif {>Referer} is mature.free-websites.com\n\tif {>Referer} is max-apprais.com\n\tif {>Referer} is maximilitary.ru\n\tif {>Referer} is maxinesamson.top\n\tif {>Referer} is maxthon.com\n\tif {>Referer} is maxxximoda.ru\n\tif {>Referer} is mazda-roadsters.com\n\tif {>Referer} is mbiologi.ru\n\tif {>Referer} is mebel-alait.ru\n\tif {>Referer} is mebel-arts.com\n\tif {>Referer} is mebel-ekb.com\n\tif {>Referer} is mebel-iz-dereva.kiev.ua\n\tif {>Referer} is mebelcomplekt.ru\n\tif {>Referer} is mebeldekor.com.au\n\tif {>Referer} is mebeldekor.com.ua\n\tif {>Referer} is meblieco.com\n\tif {>Referer} is med-dopomoga.com\n\tif {>Referer} is med-recept.ru\n\tif {>Referer} is med-zdorovie.com.au\n\tif {>Referer} is med-zdorovie.com.ua\n\tif {>Referer} is medanestesia.ru\n\tif {>Referer} is medbrowse.info\n\tif {>Referer} is medcor-list.ru\n\tif {>Referer} is medi-fitt.hu\n\tif {>Referer} is medic-al.ru\n\tif {>Referer} is medicaltranslate.ru\n\tif {>Referer} is medicinacom.ru\n\tif {>Referer} is medicineseasybuy.com\n\tif {>Referer} is medicovi.com\n\tif {>Referer} is medictube.ru\n\tif {>Referer} is medispainstitute.com.au\n\tif {>Referer} is medkletki.ru\n\tif {>Referer} is medkritika.ru\n\tif {>Referer} is medmajor.ru\n\tif {>Referer} is medosmotr-ufa.ru\n\tif {>Referer} is meds-online24.com\n\tif {>Referer} is medtherapy.ru\n\tif {>Referer} is meduza-consult.ru\n\tif {>Referer} is meendo-free-traffic.ga\n\tif {>Referer} is megaapteka.ru\n\tif {>Referer} is megakino.net\n\tif {>Referer} is megalit-d.ru\n\tif {>Referer} is megapolis-96.ru\n\tif {>Referer} is megatkani.ru\n\tif {>Referer} is megavolt.net.ua\n\tif {>Referer} is melbet-in.ru\n\tif {>Referer} is melissahome.top\n\tif {>Referer} is members.ghanaweb.com\n\tif {>Referer} is memovn.com\n\tif {>Referer} is menhealed.net\n\tif {>Referer} is mercanmall.xyz\n\tif {>Referer} is mere.host.sk\n\tif {>Referer} is mericanmopedstore.com\n\tif {>Referer} is meriton.ru\n\tif {>Referer} is meroyharte.top\n\tif {>Referer} is mesto-x.com\n\tif {>Referer} is metallo-konstruktsii.ru\n\tif {>Referer} is metallosajding.ru\n\tif {>Referer} is metarip.ru\n\tif {>Referer} is metaxalonevstizanidine.blogspot.com\n\tif {>Referer} is meteocast.net\n\tif {>Referer} is meuikcr.online\n\tif {>Referer} is mex-annushka.ru\n\tif {>Referer} is mhp.su\n\tif {>Referer} is mhrdmall.xyz\n\tif {>Referer} is miaxxx.com\n\tif {>Referer} is micasainvest.com\n\tif {>Referer} is michellblog.online\n\tif {>Referer} is microsearch.ru\n\tif {>Referer} is microsoftportal.net\n\tif {>Referer} is midnight.im\n\tif {>Referer} is mielec.pl\n\tif {>Referer} is mifepriston.net\n\tif {>Referer} is migente.com\n\tif {>Referer} is migera.net\n\tif {>Referer} is migronis.com\n\tif {>Referer} is mikozstop.com\n\tif {>Referer} is mikrobiologies.ru\n\tif {>Referer} is mikrocement.com.ua\n\tif {>Referer} is mikrozaim.site\n\tif {>Referer} is mikrozaym2you.ru\n\tif {>Referer} is minecraft-neo.ru\n\tif {>Referer} is minecraft-rus.org\n\tif {>Referer} is minegam.com\n\tif {>Referer} is minghaimuyuan.net\n\tif {>Referer} is mini.7zap.com\n\tif {>Referer} is miningblack.net\n\tif {>Referer} is minyetki.ru\n\tif {>Referer} is mir-betting.ru\n\tif {>Referer} is mir-business-24.ru\n\tif {>Referer} is mir-limuzinov.ru\n\tif {>Referer} is mirfairytale.ru\n\tif {>Referer} is mirmedinfo.ru\n\tif {>Referer} is mirobuvi.com.au\n\tif {>Referer} is mirobuvi.com.ua\n\tif {>Referer} is mirtorrent.net\n\tif {>Referer} is mirzonru.net\n\tif {>Referer} is misselle.ru\n\tif {>Referer} is mister-shop.com\n\tif {>Referer} is mitrasound.ru\n\tif {>Referer} is mixed-wrestling.ru\n\tif {>Referer} is mksoap.ru\n\tif {>Referer} is mksport.ru\n\tif {>Referer} is mmdoors.ru\n\tif {>Referer} is mmm.lc\n\tif {>Referer} is mmm.sb\n\tif {>Referer} is mmog-play.ru\n\tif {>Referer} is mmoguider.ru\n\tif {>Referer} is mnogabukaff.net\n\tif {>Referer} is mobicover.com.ua\n\tif {>Referer} is mobile.ok.ru\n\tif {>Referer} is mobilemedia.md\n\tif {>Referer} is mobisport.ru\n\tif {>Referer} is mobot.site\n\tif {>Referer} is mobplayer.net\n\tif {>Referer} is mobplayer.ru\n\tif {>Referer} is mockupui.com\n\tif {>Referer} is modabutik.ru\n\tif {>Referer} is modforwot.ru\n\tif {>Referer} is modnie-futbolki.net\n\tif {>Referer} is moe1.ru\n\tif {>Referer} is moesonce.com\n\tif {>Referer} is moi-glazki.ru\n\tif {>Referer} is moinozhki.com\n\tif {>Referer} is moiragracie.top\n\tif {>Referer} is moisadogorod.ru\n\tif {>Referer} is mokrayakiska.com\n\tif {>Referer} is mole.pluto.ro\n\tif {>Referer} is monarhs.info\n\tif {>Referer} is monetizationking.net\n\tif {>Referer} is money-every-day.com\n\tif {>Referer} is money-for-placing-articles.com\n\tif {>Referer} is money7777.info\n\tif {>Referer} is moneymaster.ru\n\tif {>Referer} is moneytop.ru\n\tif {>Referer} is moneyzzz.ru\n\tif {>Referer} is monicablog.xyz\n\tif {>Referer} is monitorwebsitespeed.com\n\tif {>Referer} is moomi-daeri.com\n\tif {>Referer} is moon.market\n\tif {>Referer} is moonci.ru\n\tif {>Referer} is more-letom.ru\n\tif {>Referer} is morf.snn.gr\n\tif {>Referer} is morlat.altervista.org\n\tif {>Referer} is moroccosurfadventures.com\n\tif {>Referer} is moscow-clining.ru\n\tif {>Referer} is moscow-region.ru\n\tif {>Referer} is moscow.xrus.org\n\tif {>Referer} is mosdverka.ru\n\tif {>Referer} is mosputana.info\n\tif {>Referer} is mosputana.top\n\tif {>Referer} is mosrif.ru\n\tif {>Referer} is mossiemckenzie.shop\n\tif {>Referer} is mossmesi.com\n\tif {>Referer} is most-kerch.org\n\tif {>Referer} is most.gov.iq\n\tif {>Referer} is mostantikor.ru\n\tif {>Referer} is mostbet-285.com\n\tif {>Referer} is mostbet-original.ru\n\tif {>Referer} is mostcool.top\n\tif {>Referer} is mostorgnerud.ru\n\tif {>Referer} is motion-interactive.com\n\tif {>Referer} is mototsikl.org\n\tif {>Referer} is mountainstream.ms\n\tif {>Referer} is moy-dokument.com\n\tif {>Referer} is moy-evroopt.ru\n\tif {>Referer} is moyakuhnia.ru\n\tif {>Referer} is moyaskidka.ru\n\tif {>Referer} is moyaterapiya.ru\n\tif {>Referer} is moygorod-online.ru\n\tif {>Referer} is moyparnik.com\n\tif {>Referer} is mp3films.ru\n\tif {>Referer} is mpftpupload.com\n\tif {>Referer} is mrbojikobi4.biz\n\tif {>Referer} is mrcsa.com.au\n\tif {>Referer} is mriyadh.com\n\tif {>Referer} is mrmoneymustache.com\n\tif {>Referer} is mrt-info.ru\n\tif {>Referer} is mrwhite.biz\n\tif {>Referer} is msk-diplomat.com\n\tif {>Referer} is msk-sprawka.com\n\tif {>Referer} is mtras.xyz\n\tif {>Referer} is mtsguru.ru\n\tif {>Referer} is mug-na-chas-moscow.ru\n\tif {>Referer} is muizre.ru\n\tif {>Referer} is mukis.ru\n\tif {>Referer} is mundoaberrante.com\n\tif {>Referer} is muscle-factory.com.au\n\tif {>Referer} is muscle-factory.com.ua\n\tif {>Referer} is music.utrolive.ru\n\tif {>Referer} is musicas.baixar-musicas-gratis.com\n\tif {>Referer} is musichallaudio.ru\n\tif {>Referer} is musicprojectfoundation.com\n\tif {>Referer} is musicstock.me\n\tif {>Referer} is musicvidz.ru\n\tif {>Referer} is muz-baza.net\n\tif {>Referer} is muz-shoes.ru\n\tif {>Referer} is muznachas-service.ru\n\tif {>Referer} is muztops.ru\n\tif {>Referer} is mvmagoods.xyz\n\tif {>Referer} is mwductwork.com\n\tif {>Referer} is my-bc.ru\n\tif {>Referer} is my.opera.com\n\tif {>Referer} is mybestoffers.club\n\tif {>Referer} is myborder.ru\n\tif {>Referer} is mybuh.kz\n\tif {>Referer} is mycaf.it\n\tif {>Referer} is mycheaptraffic.com\n\tif {>Referer} is mycollegereview.com\n\tif {>Referer} is mydirtystuff.com\n\tif {>Referer} is mydoctorok.ru\n\tif {>Referer} is mydownloadengine.com\n\tif {>Referer} is mydownlodablefiles.com\n\tif {>Referer} is myecomir.com\n\tif {>Referer} is myfreemp3.eu\n\tif {>Referer} is myftpupload.com\n\tif {>Referer} is myindospace.com\n\tif {>Referer} is mylida.org\n\tif {>Referer} is myliveblog.ru\n\tif {>Referer} is mypets.by\n\tif {>Referer} is myplaycity.com\n\tif {>Referer} is myprintscreen.com\n\tif {>Referer} is mysexpics.ru\n\tif {>Referer} is mytherealshop.com\n\tif {>Referer} is mytraffic.shop\n\tif {>Referer} is na-telefon.biz\n\tif {>Referer} is na15.ru\n\tif {>Referer} is nacap.ru\n\tif {>Referer} is nachalka21.ru\n\tif {>Referer} is nagdak.ru\n\tif {>Referer} is nakozhe.com\n\tif {>Referer} is nalogovyy-kodeks.ru\n\tif {>Referer} is nancyblog.top\n\tif {>Referer} is nanochskazki.ru\n\tif {>Referer} is nanwar.xyz\n\tif {>Referer} is naobumium.info\n\tif {>Referer} is naphi.xyz\n\tif {>Referer} is naphukete.ru\n\tif {>Referer} is nardulan.com\n\tif {>Referer} is narkologiya-belgorod.ru\n\tif {>Referer} is narkologiya-orel.ru\n\tif {>Referer} is narkologiya-penza.ru\n\tif {>Referer} is narkologiya-peterburg.ru\n\tif {>Referer} is narkologiya-voronezh.ru\n\tif {>Referer} is narkomaniya-stop.ru\n\tif {>Referer} is narosty.com\n\tif {>Referer} is narutonaruto.ru\n\tif {>Referer} is nastroyke.net\n\tif {>Referer} is natali-forex.com\n\tif {>Referer} is nate.com\n\tif {>Referer} is natprof.ru\n\tif {>Referer} is naturalpharm.com.ua\n\tif {>Referer} is naval.jislaaik.com\n\tif {>Referer} is navek.by\n\tif {>Referer} is nbok.net\n\tif {>Referer} is nbsproject.ru\n\tif {>Referer} is nebbiasale.xyz\n\tif {>Referer} is needtosellmyhousefast.com\n\tif {>Referer} is negral.pluto.ro\n\tif {>Referer} is net-profits.xyz\n\tif {>Referer} is netallergy.ru\n\tif {>Referer} is nethouse.ru\n\tif {>Referer} is netlify.com\n\tif {>Referer} is netpics.org\n\tif {>Referer} is nevansk.ru\n\tif {>Referer} is nevapotolok.ru\n\tif {>Referer} is new-apps.ru\n\tif {>Referer} is newagebev.com\n\tif {>Referer} is newbieseoblog.online\n\tif {>Referer} is newsfj.net\n\tif {>Referer} is newsrosprom.ru\n\tif {>Referer} is newstaffadsshop.club\n\tif {>Referer} is newstraveller.ru\n\tif {>Referer} is newstudio.tv\n\tif {>Referer} is nextconseil.com\n\tif {>Referer} is nfocusdriver.com\n\tif {>Referer} is ngps1.ru\n\tif {>Referer} is nhmrcsale.xyz\n\tif {>Referer} is nhsports.cl\n\tif {>Referer} is nicola.top\n\tif {>Referer} is nicolaonline.top\n\tif {>Referer} is niki-mlt.ru\n\tif {>Referer} is nikitsyringedrivelg.pen.io\n\tif {>Referer} is ninacecillia.top\n\tif {>Referer} is niuting.org\n\tif {>Referer} is nizniynovgorod.dienai.ru\n\tif {>Referer} is nl.netlog.com\n\tif {>Referer} is no-rx.info\n\tif {>Referer} is noclegonline.info\n\tif {>Referer} is nomerounddec.cf\n\tif {>Referer} is nonews.co\n\tif {>Referer} is nordstar.pro\n\tif {>Referer} is notaria-desalas.com\n\tif {>Referer} is notebook-pro.ru\n\tif {>Referer} is notfastfood.ru\n\tif {>Referer} is noumeda.com\n\tif {>Referer} is novalskincare.net\n\tif {>Referer} is novgorod.xrus.org\n\tif {>Referer} is novosibirsk.xrus.org\n\tif {>Referer} is novosti-avto.ru\n\tif {>Referer} is novosti-hi-tech.ru\n\tif {>Referer} is novostic.ru\n\tif {>Referer} is now-hydra2020.com\n\tif {>Referer} is npoet.ru\n\tif {>Referer} is ntdtv.ru\n\tif {>Referer} is nubuilderian.info\n\tif {>Referer} is nucia.biz.ly\n\tif {>Referer} is nudepatch.net\n\tif {>Referer} is nudo.ca\n\tif {>Referer} is nufaq.com\n\tif {>Referer} is nullrefer.com\n\tif {>Referer} is nutriwestncahi.com\n\tif {>Referer} is nuup.info\n\tif {>Referer} is nvformula.ru\n\tif {>Referer} is nvkzsale.xyz\n\tif {>Referer} is nwrcz.com\n\tif {>Referer} is nyfinance.ml\n\tif {>Referer} is nyinfo.org\n\tif {>Referer} is o-o-11-o-o.com\n\tif {>Referer} is o-o-6-o-o.com\n\tif {>Referer} is o-o-6-o-o.ru\n\tif {>Referer} is o-o-8-o-o.com\n\tif {>Referer} is o-o-8-o-o.ru\n\tif {>Referer} is o-promyshlennosti.ru\n\tif {>Referer} is o00.in\n\tif {>Referer} is oblismall.xyz\n\tif {>Referer} is obnal.org\n\tif {>Referer} is obnallpro.cc\n\tif {>Referer} is obsessionphrases.com\n\tif {>Referer} is obuv-kupit.ru\n\tif {>Referer} is obyavka.org.ua\n\tif {>Referer} is obzor-casino-x.online\n\tif {>Referer} is obzor-casino-x.ru\n\tif {>Referer} is ochistka-stokov.ru\n\tif {>Referer} is odesproperty.com\n\tif {>Referer} is odiabetikah.com\n\tif {>Referer} is odsadsmobile.biz\n\tif {>Referer} is odywpjtw.bloger.index.hr\n\tif {>Referer} is ofermerah.com\n\tif {>Referer} is offers.bycontext.com\n\tif {>Referer} is office-windows.ru\n\tif {>Referer} is office2web.com\n\tif {>Referer} is officedocuments.net\n\tif {>Referer} is offtime.ru\n\tif {>Referer} is ogorodnic.com\n\tif {>Referer} is ok.ru\n\tif {>Referer} is oklogistic.ru\n\tif {>Referer} is okna-systems.pro\n\tif {>Referer} is okno.ooo\n\tif {>Referer} is okoshkah.com\n\tif {>Referer} is okroshki.ru\n\tif {>Referer} is oktube.ru\n\tif {>Referer} is oledonline.xyz\n\tif {>Referer} is olovoley.ru\n\tif {>Referer} is olvanto.ru\n\tif {>Referer} is omega.best\n\tif {>Referer} is omsk.xrus.org\n\tif {>Referer} is one-a-plus.xyz\n\tif {>Referer} is one-gear.com\n\tif {>Referer} is onefilms.net\n\tif {>Referer} is onenews24.ru\n\tif {>Referer} is onion20hydra.ru\n\tif {>Referer} is onionhydra.net\n\tif {>Referer} is onionshydra.com\n\tif {>Referer} is online-akbars.ru\n\tif {>Referer} is online-binbank.ru\n\tif {>Referer} is online-hit.info\n\tif {>Referer} is online-intim.com\n\tif {>Referer} is online-mkb.ru\n\tif {>Referer} is online-pharma.ru\n\tif {>Referer} is online-pochtabank.ru\n\tif {>Referer} is online-raiffeisen.ru\n\tif {>Referer} is online-sbank.ru\n\tif {>Referer} is online-templatestore.com\n\tif {>Referer} is online-video-chat.ru\n\tif {>Referer} is online-vostbank.ru\n\tif {>Referer} is online-vtb.ru\n\tif {>Referer} is online-x.ru\n\tif {>Referer} is online.ktc45.ru\n\tif {>Referer} is onlinebay.ru\n\tif {>Referer} is onlinedic.net\n\tif {>Referer} is onlinedomains.ru\n\tif {>Referer} is onlinefilmz.net\n\tif {>Referer} is onlineserialy.ru\n\tif {>Referer} is onlinetvseries.me\n\tif {>Referer} is onlinewot.ru\n\tif {>Referer} is onlinewritingjobs17.blogspot.ru\n\tif {>Referer} is onload.pw\n\tif {>Referer} is onlyforemont.ru\n\tif {>Referer} is onlythegames.com\n\tif {>Referer} is onlywoman.org\n\tif {>Referer} is oohlivecams.com\n\tif {>Referer} is ooo-gotovie.ru\n\tif {>Referer} is ooo-olni.ru\n\tif {>Referer} is oooh.pro\n\tif {>Referer} is openfrost.com\n\tif {>Referer} is openfrost.net\n\tif {>Referer} is openlibrary.org\n\tif {>Referer} is openmediasoft.com\n\tif {>Referer} is ops.picscout.com\n\tif {>Referer} is optitrade24.com\n\tif {>Referer} is optsol.ru\n\tif {>Referer} is oqex.io\n\tif {>Referer} is oracle-patches.ru\n\tif {>Referer} is orakul.spb.ru\n\tif {>Referer} is oranga.host.sk\n\tif {>Referer} is order-prime-smm-service.party\n\tif {>Referer} is ordernorxx.com\n\tif {>Referer} is orel-reshka.net\n\tif {>Referer} is oren-cats.ru\n\tif {>Referer} is origin-my.ru\n\tif {>Referer} is ororodnik.goodbb.ru\n\tif {>Referer} is osb.se11.ru\n\tif {>Referer} is osoznanie-narkotikam.net\n\tif {>Referer} is osteochondrosis.ru\n\tif {>Referer} is ostroike.org\n\tif {>Referer} is ostrovtaxi.ru\n\tif {>Referer} is otbelivanie-zubov.com\n\tif {>Referer} is otdbiaxaem-vmeste.ru\n\tif {>Referer} is otdyx-s-komfortom.ru\n\tif {>Referer} is oudallas.net\n\tif {>Referer} is ourtherapy.ru\n\tif {>Referer} is outshop.ru\n\tif {>Referer} is ovirus.ru\n\tif {>Referer} is own-ahrefs.com\n\tif {>Referer} is ownshop.cf\n\tif {>Referer} is owohho.com\n\tif {>Referer} is ozas.net\n\tif {>Referer} is p-business.ru\n\tif {>Referer} is paceform.com\n\tif {>Referer} is pacobarrero.com\n\tif {>Referer} is pageinsider.org\n\tif {>Referer} is paidonlinesites.com\n\tif {>Referer} is painting-planet.com\n\tif {>Referer} is palma-de-sochi.ru\n\tif {>Referer} is palvira.com.au\n\tif {>Referer} is palvira.com.ua\n\tif {>Referer} is pamjatnik.com.ua\n\tif {>Referer} is pammik.ru\n\tif {>Referer} is pamyatnik-spb.ru\n\tif {>Referer} is pamyatnik-tsena.ru\n\tif {>Referer} is pandoshop.xyz\n\tif {>Referer} is paparazzistudios.com.au\n\tif {>Referer} is paperwritingservice17.blogspot.ru\n\tif {>Referer} is paradontozanet.ru\n\tif {>Referer} is parcsmalls.xyz\n\tif {>Referer} is paretto.ru\n\tif {>Referer} is parking-invest.ru\n\tif {>Referer} is partizan19.ru\n\tif {>Referer} is partnerskie-programmy.net\n\tif {>Referer} is patonsale.xyz\n\tif {>Referer} is paulinho.ru\n\tif {>Referer} is pay.ru\n\tif {>Referer} is paydayonlinecom.com\n\tif {>Referer} is pc-services.ru\n\tif {>Referer} is pechikamini.ru\n\tif {>Referer} is pecmastore.xyz\n\tif {>Referer} is pensplan.com\n\tif {>Referer} is pensplan4u.com\n\tif {>Referer} is penzu.xyz\n\tif {>Referer} is percin.biz.ly\n\tif {>Referer} is perfection-pleasure.ru\n\tif {>Referer} is perform-like-alibabaity.info\n\tif {>Referer} is perform-likeism-alibaba.info\n\tif {>Referer} is perimetor.ru\n\tif {>Referer} is perm.dienai.ru\n\tif {>Referer} is perm.xrus.org\n\tif {>Referer} is perper.ru\n\tif {>Referer} is perso.wanadoo.es\n\tif {>Referer} is personalhoro.ru\n\tif {>Referer} is petedrummond.com\n\tif {>Referer} is petroleumgeo.com\n\tif {>Referer} is petrovka-online.com\n\tif {>Referer} is petrushka-restoran.ru\n\tif {>Referer} is petscar.ru\n\tif {>Referer} is pfrf-kabinet.ru\n\tif {>Referer} is pharm--shop.ru\n\tif {>Referer} is phimarshcer.online\n\tif {>Referer} is phimmakinhdi.com\n\tif {>Referer} is phobia.us\n\tif {>Referer} is photo-clip.ru\n\tif {>Referer} is photo.houseofgaga.ru\n\tif {>Referer} is photochki.com\n\tif {>Referer} is photokitchendesign.com\n\tif {>Referer} is photorepair.ru\n\tif {>Referer} is php-market.ru\n\tif {>Referer} is physfunc.ru\n\tif {>Referer} is picscout.com\n\tif {>Referer} is picturesmania.com\n\tif {>Referer} is pills24h.com\n\tif {>Referer} is piluli.info\n\tif {>Referer} is pinkduck.ga\n\tif {>Referer} is pinupcasinos.ru\n\tif {>Referer} is pinupcasinos1.ru\n\tif {>Referer} is pinupp1.com\n\tif {>Referer} is pipki.pp.ua\n\tif {>Referer} is piratbike.ru\n\tif {>Referer} is pirateday.ru\n\tif {>Referer} is pirelli-matador.ru\n\tif {>Referer} is pisze.pisz.pl\n\tif {>Referer} is piter.xrus.org\n\tif {>Referer} is piulatte.cz\n\tif {>Referer} is pizdeishn.com\n\tif {>Referer} is pizdeishn.net\n\tif {>Referer} is pizza-imperia.com\n\tif {>Referer} is pizza-tycoon.com\n\tif {>Referer} is pk-pomosch.ru\n\tif {>Referer} is pk-services.ru\n\tif {>Referer} is pkr1hand.com\n\tif {>Referer} is plagscan.com\n\tif {>Referer} is plastweb.ru\n\tif {>Referer} is platesauto.com\n\tif {>Referer} is platinumdeals.gr\n\tif {>Referer} is plohaya-kreditnaya-istoriya.ru\n\tif {>Referer} is plusnetwork.com\n\tif {>Referer} is pochemychka.net\n\tif {>Referer} is podarkilove.ru\n\tif {>Referer} is poddon-moskva.ru\n\tif {>Referer} is podemnik.pro\n\tif {>Referer} is podseka1.ru\n\tif {>Referer} is pogodnyyeavarii.gq\n\tif {>Referer} is pogosh.com\n\tif {>Referer} is pogruztehnik.ru\n\tif {>Referer} is poisk-zakona.ru\n\tif {>Referer} is poiskzakona.ru\n\tif {>Referer} is pokemongooo.ml\n\tif {>Referer} is poker-royal777.com\n\tif {>Referer} is pokupaylegko.ru\n\tif {>Referer} is polcin.de\n\tif {>Referer} is polemikon.ru\n\tif {>Referer} is politika.bg\n\tif {>Referer} is polyana-skazok.org.ua\n\tif {>Referer} is pomoc-drogowa.cba.pl\n\tif {>Referer} is pony-business.com\n\tif {>Referer} is popads.net\n\tif {>Referer} is popelina.com\n\tif {>Referer} is pops.foundation\n\tif {>Referer} is popugauka.ru\n\tif {>Referer} is popugaychiki.com\n\tif {>Referer} is popular-church-arrow-voucher.info\n\tif {>Referer} is popup-fdm.xyz\n\tif {>Referer} is popup-hgd.xyz\n\tif {>Referer} is popup-jdh.xyz\n\tif {>Referer} is porn-video-chat.ru\n\tif {>Referer} is porn-w.org\n\tif {>Referer} is porndl.org\n\tif {>Referer} is pornhive.org\n\tif {>Referer} is pornhub-forum.ga\n\tif {>Referer} is pornhub-forum.uni.me\n\tif {>Referer} is pornhub-ru.com\n\tif {>Referer} is pornhubforum.tk\n\tif {>Referer} is porno-asia.com\n\tif {>Referer} is porno-chaman.info\n\tif {>Referer} is porno-dojki.net\n\tif {>Referer} is porno-gallery.ru\n\tif {>Referer} is porno-play.net\n\tif {>Referer} is porno-raskazy.ru\n\tif {>Referer} is porno-transsexuals.ru\n\tif {>Referer} is porno-video-chati.ru\n\tif {>Referer} is porno2xl.net\n\tif {>Referer} is pornobest.su\n\tif {>Referer} is pornoblood.com\n\tif {>Referer} is pornobrazzers.biz\n\tif {>Referer} is pornodojd.ru\n\tif {>Referer} is pornoelita.info\n\tif {>Referer} is pornofiljmi.com\n\tif {>Referer} is pornoforadult.com\n\tif {>Referer} is pornofoto.org\n\tif {>Referer} is pornogig.com\n\tif {>Referer} is pornohd1080.online\n\tif {>Referer} is pornokajf.com\n\tif {>Referer} is pornoklad.net\n\tif {>Referer} is pornoklad.ru\n\tif {>Referer} is pornokorol.com\n\tif {>Referer} is pornonik.com\n\tif {>Referer} is pornophoto.xyz\n\tif {>Referer} is pornoplen.com\n\tif {>Referer} is pornorasskazy.net\n\tif {>Referer} is pornosemki.info\n\tif {>Referer} is pornoslave.net\n\tif {>Referer} is pornotubexxx.name\n\tif {>Referer} is porodasobak.net\n\tif {>Referer} is portal-eu.ru\n\tif {>Referer} is portnoff.od.au\n\tif {>Referer} is portnoff.od.ua\n\tif {>Referer} is poshiv-chehol.ru\n\tif {>Referer} is positive2b.ru\n\tif {>Referer} is pospektr.ru\n\tif {>Referer} is postclass.com\n\tif {>Referer} is posteezy.xyz\n\tif {>Referer} is potolokelekor.ru\n\tif {>Referer} is povodok-shop.ru\n\tif {>Referer} is powitania.pl\n\tif {>Referer} is pozdravleniya-c.ru\n\tif {>Referer} is pozdrawleniya.com\n\tif {>Referer} is pozdrawleniya.ru\n\tif {>Referer} is pozvonim.com\n\tif {>Referer} is pp-budpostach.com.ua\n\tif {>Referer} is pravoholding.ru\n\tif {>Referer} is predmety.in.ua\n\tif {>Referer} is prezidentshop.ru\n\tif {>Referer} is priceg.com\n\tif {>Referer} is pricheskaonline.ru\n\tif {>Referer} is pricheski-video.com\n\tif {>Referer} is primfootball.com\n\tif {>Referer} is primoblog.xyz\n\tif {>Referer} is princeadvantagesales.com\n\tif {>Referer} is print-technology.ru\n\tif {>Referer} is printie.com\n\tif {>Referer} is printingpeach.com\n\tif {>Referer} is priora-2.com\n\tif {>Referer} is privatbank46.ru\n\tif {>Referer} is private-service.best\n\tif {>Referer} is privatov-zapisi.ru\n\tif {>Referer} is privhosting.com\n\tif {>Referer} is prizesk.com\n\tif {>Referer} is prizrn.site\n\tif {>Referer} is prlog.ru\n\tif {>Referer} is pro-okis.ru\n\tif {>Referer} is probenzo.com.ua\n\tif {>Referer} is procrafts.ru\n\tif {>Referer} is prodaemdveri.com\n\tif {>Referer} is producm.ru\n\tif {>Referer} is prodvigator.au\n\tif {>Referer} is prodvigator.ua\n\tif {>Referer} is proekt-gaz.ru\n\tif {>Referer} is proekt-mos.ru\n\tif {>Referer} is professionalsolutions.eu\n\tif {>Referer} is professionalwritingservices15.blogspot.ru\n\tif {>Referer} is profnastil-moscow.ru\n\tif {>Referer} is proftests.net\n\tif {>Referer} is progressive-seo.com\n\tif {>Referer} is prohoster.info\n\tif {>Referer} is prointer.net.au\n\tif {>Referer} is prointer.net.ua\n\tif {>Referer} is projectforte.ru\n\tif {>Referer} is projefrio.com.br\n\tif {>Referer} is prokotov.com\n\tif {>Referer} is prom23.ru\n\tif {>Referer} is prombudpostach.com.ua\n\tif {>Referer} is promodj.com\n\tif {>Referer} is promoforum.ru\n\tif {>Referer} is promoteapps.online\n\tif {>Referer} is promotion-for99.com\n\tif {>Referer} is pron.pro\n\tif {>Referer} is pronekut.com\n\tif {>Referer} is proposal-engine.com\n\tif {>Referer} is propranolol40mg.blogspot.com\n\tif {>Referer} is proquoshop.xyz\n\tif {>Referer} is prosmibank.ru\n\tif {>Referer} is prostitutki-almata.org\n\tif {>Referer} is prostitutki-astana.org\n\tif {>Referer} is prostitutki-belgoroda.org\n\tif {>Referer} is prostitutki-kharkova.org\n\tif {>Referer} is prostitutki-kiev.org\n\tif {>Referer} is prostitutki-novgoroda.org\n\tif {>Referer} is prostitutki-odessa.org\n\tif {>Referer} is prostitutki-rostova.org\n\tif {>Referer} is prostitutki-rostova.ru.com\n\tif {>Referer} is prostitutki-tolyatti.org\n\tif {>Referer} is prostitutki-tyumeni.org\n\tif {>Referer} is prostitutki-yaroslavlya.org\n\tif {>Referer} is prostoacc.com\n\tif {>Referer} is psa48.ru\n\tif {>Referer} is psiosale.xyz\n\tif {>Referer} is pskcijdc.bloger.index.hr\n\tif {>Referer} is psn-card.ru\n\tif {>Referer} is psvita.ru\n\tif {>Referer} is psychocryonics.net\n\tif {>Referer} is ptashkatextil.ua\n\tif {>Referer} is ptfic.org\n\tif {>Referer} is punch.media\n\tif {>Referer} is purchasepillsnorx.com\n\tif {>Referer} is puteshestvennik.com\n\tif {>Referer} is putevka24.ru\n\tif {>Referer} is putitin.me\n\tif {>Referer} is puzo2arbuza.ru\n\tif {>Referer} is puzzleweb.ru\n\tif {>Referer} is pyrodesigns.com.au\n\tif {>Referer} is q-moto.ru\n\tif {>Referer} is qcstrtvt.bloger.index.hr\n\tif {>Referer} is qexyfu.bugs3.com\n\tif {>Referer} is qitt.ru\n\tif {>Referer} is qoinex.top\n\tif {>Referer} is qtrstar.xyz\n\tif {>Referer} is qualitymarketzone.com\n\tif {>Referer} is quick-seeker.com\n\tif {>Referer} is quickchange.cc\n\tif {>Referer} is quit-smoking.ga\n\tif {>Referer} is qwarckoine.com\n\tif {>Referer} is qwesa.ru\n\tif {>Referer} is qxnr.net\n\tif {>Referer} is r-control.ru\n\tif {>Referer} is rabot.host.sk\n\tif {>Referer} is rabotaetvse.ru\n\tif {>Referer} is rachelblog.online\n\tif {>Referer} is radiogambling.com\n\tif {>Referer} is rainbirds.ru\n\tif {>Referer} is ranedaly.net\n\tif {>Referer} is rangapoker.com\n\tif {>Referer} is rangjued.com\n\tif {>Referer} is rank-checker.online\n\tif {>Referer} is rankchecker.online\n\tif {>Referer} is ranking2017.ga\n\tif {>Referer} is rankings-analytics.com\n\tif {>Referer} is ranksays.com\n\tif {>Referer} is rankscanner.com\n\tif {>Referer} is ranksignals.com\n\tif {>Referer} is ranksonic.com\n\tif {>Referer} is ranksonic.info\n\tif {>Referer} is ranksonic.net\n\tif {>Referer} is ranksonic.org\n\tif {>Referer} is rapevideosmovies.com\n\tif {>Referer} is rapidgator-porn.ga\n\tif {>Referer} is rapidhits.net\n\tif {>Referer} is rapidsites.pro\n\tif {>Referer} is raschtextil.com.ua\n\tif {>Referer} is rasteniya-vs-zombi.ru\n\tif {>Referer} is ratraiser.online\n\tif {>Referer} is rattan.co.ua\n\tif {>Referer} is raymondblog.top\n\tif {>Referer} is razamicroelectronics.com\n\tif {>Referer} is razborka-skoda.org.ua\n\tif {>Referer} is rb-str.ru\n\tif {>Referer} is rcb101.ru\n\tif {>Referer} is rczhan.com\n\tif {>Referer} is real-time-analytics.com\n\tif {>Referer} is realnye-otzyvy.info\n\tif {>Referer} is realresultslist.com\n\tif {>Referer} is realting-moscow.ru\n\tif {>Referer} is recinziireale.com\n\tif {>Referer} is recipedays.com\n\tif {>Referer} is recipedays.ru\n\tif {>Referer} is rednise.com\n\tif {>Referer} is redraincine.com\n\tif {>Referer} is refererx.com\n\tif {>Referer} is refpawro.xyz\n\tif {>Referer} is refudiatethissarah.info\n\tif {>Referer} is reginablog.top\n\tif {>Referer} is reginanahum.top\n\tif {>Referer} is regionshop.biz\n\tif {>Referer} is registratciya-v-moskve.ru\n\tif {>Referer} is reklama-i-rabota.ru\n\tif {>Referer} is reklama1.ru\n\tif {>Referer} is reklamnoe.agency\n\tif {>Referer} is reklamuss.ru\n\tif {>Referer} is releshop.ru\n\tif {>Referer} is rembash.ru\n\tif {>Referer} is remedyotc.com\n\tif {>Referer} is remkompov.ru\n\tif {>Referer} is remmling.de\n\tif {>Referer} is remont-comp-pomosh.ru\n\tif {>Referer} is remont-fridge-tv.ru\n\tif {>Referer} is remont-komputerov-notebook.ru\n\tif {>Referer} is remont-kvartirspb.com\n\tif {>Referer} is remont-mobile-phones.ru\n\tif {>Referer} is remont-ustanovka-tehniki.ru\n\tif {>Referer} is remontgruzovik.ru\n\tif {>Referer} is remontvau.ru\n\tif {>Referer} is remote-dba.de\n\tif {>Referer} is remotecomputingservices.net\n\tif {>Referer} is rent2spb.ru\n\tif {>Referer} is rentalmaty.kz\n\tif {>Referer} is replica-watch.ru\n\tif {>Referer} is replicaclub.ru\n\tif {>Referer} is research.ifmo.ru\n\tif {>Referer} is resell-seo-services.com\n\tif {>Referer} is resellerclub.com\n\tif {>Referer} is residualforlife.com\n\tif {>Referer} is responsive-test.net\n\tif {>Referer} is respublica-otel.ru\n\tif {>Referer} is resurs-2012.ru\n\tif {>Referer} is retreatia.com\n\tif {>Referer} is reversing.cc\n\tif {>Referer} is revolgc.pro\n\tif {>Referer} is reyel1985.webnode.fr\n\tif {>Referer} is rezeptiblud.ru\n\tif {>Referer} is rfavon.ru\n\tif {>Referer} is rfd-split.hr\n\tif {>Referer} is rfesc.net\n\tif {>Referer} is rialp.getenjoyment.net\n\tif {>Referer} is richinvestmonitor.com\n\tif {>Referer} is rida.tokyo\n\tif {>Referer} is riedismall.xyz\n\tif {>Referer} is rietisvi.co\n\tif {>Referer} is rightenergysolutions.com.au\n\tif {>Referer} is ring4rhino.com\n\tif {>Referer} is ringporno.com\n\tif {>Referer} is rique.host.sk\n\tif {>Referer} is risparmiocasa.bz.it\n\tif {>Referer} is rkmbonline.xyz\n\tif {>Referer} is robocheck.info\n\tif {>Referer} is robot-forex.biz\n\tif {>Referer} is roleforum.ru\n\tif {>Referer} is roma-kukareku.livejournal.com\n\tif {>Referer} is roof-city.ru\n\tif {>Referer} is room-mebel.ru\n\tif {>Referer} is ros-ctm.ru\n\tif {>Referer} is rospromtest.ru\n\tif {>Referer} is rossanasaavedra.net\n\tif {>Referer} is rossmark.ru\n\tif {>Referer} is rostov.xrus.org\n\tif {>Referer} is royal-betting.net\n\tif {>Referer} is royal-casino.online\n\tif {>Referer} is royal-casino.ru\n\tif {>Referer} is royal-casinos.online\n\tif {>Referer} is royal-casinos.ru\n\tif {>Referer} is royal-cazino.online\n\tif {>Referer} is royal-cazino.ru\n\tif {>Referer} is royal-investments.net\n\tif {>Referer} is rozalli.com\n\tif {>Referer} is roznica.com.ua\n\tif {>Referer} is rp9.ru\n\tif {>Referer} is rrutw.com\n\tif {>Referer} is rspectr.com\n\tif {>Referer} is ru-lk-rt.ru\n\tif {>Referer} is ru-onion.com\n\tif {>Referer} is ru-online-sberbank.ru\n\tif {>Referer} is ruex.org.ua\n\tif {>Referer} is rufreechats.com\n\tif {>Referer} is ruhydraru.ru\n\tif {>Referer} is ruinfocomp.ru\n\tif {>Referer} is rulate.ru\n\tif {>Referer} is rumamba.com\n\tif {>Referer} is runetki-online.net\n\tif {>Referer} is runovschool.ua\n\tif {>Referer} is runstocks.com\n\tif {>Referer} is rupolitshow.ru\n\tif {>Referer} is rus-lit.com\n\tif {>Referer} is rus-teh.narod.ru\n\tif {>Referer} is ruscams-com.ru\n\tif {>Referer} is ruscopybook.com\n\tif {>Referer} is rusenvironmental.net\n\tif {>Referer} is rusexy.xyz\n\tif {>Referer} is rusoft-zone.ru\n\tif {>Referer} is ruspoety.ru\n\tif {>Referer} is russia-tao.ru\n\tif {>Referer} is russia-today-video.ru\n\tif {>Referer} is russian-postindex.ru\n\tif {>Referer} is russian-translator.com\n\tif {>Referer} is russian-videochats.ru\n\tif {>Referer} is russintv.fr\n\tif {>Referer} is russkie-sochineniya.ru\n\tif {>Referer} is russkoe-zdorovie.ru\n\tif {>Referer} is rustag.ru\n\tif {>Referer} is rutor.group\n\tif {>Referer} is rvtv.ru\n\tif {>Referer} is rxshop.md\n\tif {>Referer} is rybalka-opt.ru\n\tif {>Referer} is s-forum.biz\n\tif {>Referer} is s-luna.me\n\tif {>Referer} is sabaapress.com\n\tif {>Referer} is sabinablog.xyz\n\tif {>Referer} is sack.net\n\tif {>Referer} is sad-torg.com.ua\n\tif {>Referer} is sady-urala.ru\n\tif {>Referer} is sahohev.000host.co.uk\n\tif {>Referer} is saitevpatorii.com\n\tif {>Referer} is sakhboard.ru\n\tif {>Referer} is sale-japan.com\n\tif {>Referer} is saletool.ru\n\tif {>Referer} is saltspray.ru\n\tif {>Referer} is salutmontreal.com\n\tif {>Referer} is samanthablog.online\n\tif {>Referer} is samara-airport.com\n\tif {>Referer} is samara-comfort.ru\n\tif {>Referer} is samchist.ru\n\tif {>Referer} is samlaurabrown.top\n\tif {>Referer} is samo-soznanie.ru\n\tif {>Referer} is samogonius.ru\n\tif {>Referer} is sanatorrii.ru\n\tif {>Referer} is sanjosestartups.com\n\tif {>Referer} is santaren.by\n\tif {>Referer} is santasgift.ml\n\tif {>Referer} is santechnik.jimdo.com\n\tif {>Referer} is santehnovich.ru\n\tif {>Referer} is sapaship.ru\n\tif {>Referer} is sarafangel.ru\n\tif {>Referer} is sarahmilne.top\n\tif {>Referer} is saratov.xrus.org\n\tif {>Referer} is sarf3omlat.com\n\tif {>Referer} is sashagreyblog.ga\n\tif {>Referer} is saudegoods.xyz\n\tif {>Referer} is sauna-v-ufe.ru\n\tif {>Referer} is sauni-lipetsk.ru\n\tif {>Referer} is sauni-moskva.ru\n\tif {>Referer} is savetubevideo.com\n\tif {>Referer} is savetubevideo.info\n\tif {>Referer} is savne.org\n\tif {>Referer} is sax-sex.com\n\tif {>Referer} is sbdl.no\n\tif {>Referer} is sbornik-zakonov.ru\n\tif {>Referer} is sc-specialhost.com\n\tif {>Referer} is scanner-alex.top\n\tif {>Referer} is scanner-alexa.top\n\tif {>Referer} is scanner-andrew.top\n\tif {>Referer} is scanner-barak.top\n\tif {>Referer} is scanner-brian.top\n\tif {>Referer} is scanner-don.top\n\tif {>Referer} is scanner-donald.top\n\tif {>Referer} is scanner-elena.top\n\tif {>Referer} is scanner-fred.top\n\tif {>Referer} is scanner-george.top\n\tif {>Referer} is scanner-irvin.top\n\tif {>Referer} is scanner-ivan.top\n\tif {>Referer} is scanner-jack.top\n\tif {>Referer} is scanner-jane.top\n\tif {>Referer} is scanner-jess.top\n\tif {>Referer} is scanner-jessica.top\n\tif {>Referer} is scanner-john.top\n\tif {>Referer} is scanner-josh.top\n\tif {>Referer} is scanner-julia.top\n\tif {>Referer} is scanner-julianna.top\n\tif {>Referer} is scanner-margo.top\n\tif {>Referer} is scanner-mark.top\n\tif {>Referer} is scanner-marwin.top\n\tif {>Referer} is scanner-mary.top\n\tif {>Referer} is scanner-nelson.top\n\tif {>Referer} is scanner-olga.top\n\tif {>Referer} is scanner-viktor.top\n\tif {>Referer} is scanner-walt.top\n\tif {>Referer} is scanner-walter.top\n\tif {>Referer} is scanner-willy.top\n\tif {>Referer} is scansafe.net\n\tif {>Referer} is scat.porn\n\tif {>Referer} is scenarii-1-sentyabrya.uroki.org.ua\n\tif {>Referer} is school-diplomat.ru\n\tif {>Referer} is sciedsale.xyz\n\tif {>Referer} is score-prime-web-service.stream\n\tif {>Referer} is screen-led.ru\n\tif {>Referer} is screentoolkit.com\n\tif {>Referer} is scripted.com\n\tif {>Referer} is sdelai-prosto.ru\n\tif {>Referer} is sdelatmebel.ru\n\tif {>Referer} is sdi-pme.com\n\tif {>Referer} is search-error.com\n\tif {>Referer} is search-helper.ru\n\tif {>Referer} is searchencrypt.com\n\tif {>Referer} is searchlock.com\n\tif {>Referer} is seccioncontrabajo.com\n\tif {>Referer} is secret.xn--oogle-wmc.com\n\tif {>Referer} is secretscook.ru\n\tif {>Referer} is security-corporation.com.ua\n\tif {>Referer} is securityallianceservices.com\n\tif {>Referer} is see-your-website-here.com\n\tif {>Referer} is seekanvdoo22.live\n\tif {>Referer} is seisasale.xyz\n\tif {>Referer} is seksotur.ru\n\tif {>Referer} is sel-hoz.com\n\tif {>Referer} is selfhotdog.com\n\tif {>Referer} is sell-fb-group-here.com\n\tif {>Referer} is semalt.com\n\tif {>Referer} is semalt.net\n\tif {>Referer} is semalt.semalt.com\n\tif {>Referer} is semaltmedia.com\n\tif {>Referer} is semxiu.com\n\tif {>Referer} is senacertificados.co\n\tif {>Referer} is senger.atspace.co.uk\n\tif {>Referer} is seo-2-0.com\n\tif {>Referer} is seo-b2b.com\n\tif {>Referer} is seo-platform.com\n\tif {>Referer} is seo-services-b2b.com\n\tif {>Referer} is seo-services-wordpress.com\n\tif {>Referer} is seo-smm.kz\n\tif {>Referer} is seo-tips.top\n\tif {>Referer} is seo-traffic.xyz\n\tif {>Referer} is seoanalyses.com\n\tif {>Referer} is seobook.top\n\tif {>Referer} is seocheckupx.com\n\tif {>Referer} is seocheckupx.net\n\tif {>Referer} is seoexperimenty.ru\n\tif {>Referer} is seojokes.net\n\tif {>Referer} is seokicks.de\n\tif {>Referer} is seopub.net\n\tif {>Referer} is seoriseome.netlify.app\n\tif {>Referer} is seoservices2018.com\n\tif {>Referer} is serenamall.xyz\n\tif {>Referer} is serialsway.ucoz.ru\n\tif {>Referer} is serialsx.ru\n\tif {>Referer} is servemlixo.xyz\n\tif {>Referer} is servisural.ru\n\tif {>Referer} is serw.clicksor.com\n\tif {>Referer} is seryeznie-znakomstva.ru\n\tif {>Referer} is setioweb.com\n\tif {>Referer} is sex-dating.co\n\tif {>Referer} is sex-porno.site\n\tif {>Referer} is sex-spying.ru\n\tif {>Referer} is sex-videochats.ru\n\tif {>Referer} is sexkrasivo.net\n\tif {>Referer} is sexpornotales.net\n\tif {>Referer} is sexreliz.com\n\tif {>Referer} is sexreliz.net\n\tif {>Referer} is sexsaoy.com\n\tif {>Referer} is sexuria.net\n\tif {>Referer} is sexvideo-sex.com\n\tif {>Referer} is sexvporno.ru\n\tif {>Referer} is sexwife.net\n\tif {>Referer} is sexy-girl-chat.ru\n\tif {>Referer} is sexyali.com\n\tif {>Referer} is sexyteens.hol.es\n\tif {>Referer} is sexytrend.ru\n\tif {>Referer} is sfd-chess.ru\n\tif {>Referer} is shagtomsk.ru\n\tif {>Referer} is shakhtar-doneck.ru\n\tif {>Referer} is shamcisale.xyz\n\tif {>Referer} is shanscasino1.ru\n\tif {>Referer} is share-button.xyz\n\tif {>Referer} is share-buttons-for-free.com\n\tif {>Referer} is share-buttons.xyz\n\tif {>Referer} is sharebutton.io\n\tif {>Referer} is sharebutton.net\n\tif {>Referer} is sharebutton.org\n\tif {>Referer} is sharebutton.to\n\tif {>Referer} is sharemyfile.ru\n\tif {>Referer} is shariki-zuma-lines.ru\n\tif {>Referer} is shcrose.com\n\tif {>Referer} is sheki-spb.ru\n\tif {>Referer} is shemy-vishivki.com\n\tif {>Referer} is shiksabd.com\n\tif {>Referer} is shinikiev.com.ua\n\tif {>Referer} is ship-marvel.co.ua\n\tif {>Referer} is shisenshop.xyz\n\tif {>Referer} is shisha-swag.de\n\tif {>Referer} is shlyahten.ru\n\tif {>Referer} is shnyagi.net\n\tif {>Referer} is shodanhq.com\n\tif {>Referer} is shop-electron.ru\n\tif {>Referer} is shop-garena.ru\n\tif {>Referer} is shop.garena.ru.com\n\tif {>Referer} is shop.xz618.com\n\tif {>Referer} is shop2hydra.com\n\tif {>Referer} is shop4fit.ru\n\tif {>Referer} is shopfishing.com.ua\n\tif {>Referer} is shoppinglocation.com\n\tif {>Referer} is shoppingmiracles.co.uk\n\tif {>Referer} is shoprybalka.ru\n\tif {>Referer} is shops-ru.ru\n\tif {>Referer} is shopsellcardsdumps.com\n\tif {>Referer} is shopvilleroyboch.com.ua\n\tif {>Referer} is shopwme.ru\n\tif {>Referer} is shtaketniki.ru\n\tif {>Referer} is shtormmall.xyz\n\tif {>Referer} is shulepov.ru\n\tif {>Referer} is sib-kukla.ru\n\tif {>Referer} is sibecoprom.ru\n\tif {>Referer} is sibkukla.ru\n\tif {>Referer} is sideeffectsoftizanidine.blogspot.com\n\tif {>Referer} is sign-service.ru\n\tif {>Referer} is signx.info\n\tif {>Referer} is sihugoods.xyz\n\tif {>Referer} is silverage.ru\n\tif {>Referer} is silvergull.ru\n\tif {>Referer} is silvermature.net\n\tif {>Referer} is sim-dealer.ru\n\tif {>Referer} is sim-service.net\n\tif {>Referer} is similarmoviesdb.com\n\tif {>Referer} is simoncinicancertherapy.com\n\tif {>Referer} is simple-share-buttons.com\n\tif {>Referer} is simplepooltips.com\n\tif {>Referer} is sims-sims.ru\n\tif {>Referer} is sinel.info\n\tif {>Referer} is sinestesia.host.sk\n\tif {>Referer} is singularwebs.net\n\tif {>Referer} is sinhronperevod.ru\n\tif {>Referer} is siongetadsincome.info\n\tif {>Referer} is sirhoutlet.xyz\n\tif {>Referer} is siritshop.xyz\n\tif {>Referer} is sisiynas.ru\n\tif {>Referer} is site-auditor.online\n\tif {>Referer} is site-speed-check.site\n\tif {>Referer} is site-speed-checker.site\n\tif {>Referer} is site3.free-share-buttons.com\n\tif {>Referer} is site5.com\n\tif {>Referer} is siteexpress.co.il\n\tif {>Referer} is siteripz.net\n\tif {>Referer} is sitesadd.com\n\tif {>Referer} is sitevaluation.com\n\tif {>Referer} is sitevaluation.org\n\tif {>Referer} is sivs.ru\n\tif {>Referer} is sjmsw.net\n\tif {>Referer} is sk.golden-praga.ru\n\tif {>Referer} is ski-centers.com\n\tif {>Referer} is skidku.org.ua\n\tif {>Referer} is skinali.com\n\tif {>Referer} is skinali.photo-clip.ru\n\tif {>Referer} is sklad-24.ru\n\tif {>Referer} is skladvaz.ru\n\tif {>Referer} is sky-mine.ru\n\tif {>Referer} is skylta.com\n\tif {>Referer} is sladkoevideo.com\n\tif {>Referer} is slashpet.com\n\tif {>Referer} is slavic-magic.ru\n\tif {>Referer} is slavkokacunko.de\n\tif {>Referer} is sledstvie-veli.net\n\tif {>Referer} is slftsdybbg.ru\n\tif {>Referer} is slkrm.ru\n\tif {>Referer} is slomm.ru\n\tif {>Referer} is slonechka.ru\n\tif {>Referer} is sloopyjoes.com.top\n\tif {>Referer} is slotron.com\n\tif {>Referer} is slow-website.xyz\n\tif {>Referer} is slujbauborki.ru\n\tif {>Referer} is smailik.org\n\tif {>Referer} is small-game.com\n\tif {>Referer} is small-games.biz\n\tif {>Referer} is smartpet.ru\n\tif {>Referer} is smartphonediscount.info\n\tif {>Referer} is sms2x2.ru\n\tif {>Referer} is smstraf.ru\n\tif {>Referer} is smt4.ru\n\tif {>Referer} is smzt.shop\n\tif {>Referer} is snabs.kz\n\tif {>Referer} is snaiper-bg.net\n\tif {>Referer} is sneakerfreaker.com\n\tif {>Referer} is snegozaderzhatel.ru\n\tif {>Referer} is snip.to\n\tif {>Referer} is snip.tw\n\tif {>Referer} is snjatie-geroinovoy-lomki.ru\n\tif {>Referer} is snomer1.ru\n\tif {>Referer} is snyatie-lomki-v-stacionare.ru\n\tif {>Referer} is soaksoak.ru\n\tif {>Referer} is soblaznu.net\n\tif {>Referer} is soc-econom-problems.ru\n\tif {>Referer} is soc-proof.su\n\tif {>Referer} is socas.pluto.ro\n\tif {>Referer} is sochi-3d.ru\n\tif {>Referer} is social-button.xyz\n\tif {>Referer} is social-buttons-aa.xyz\n\tif {>Referer} is social-buttons-aaa.xyz\n\tif {>Referer} is social-buttons-bb.xyz\n\tif {>Referer} is social-buttons-bbb.xyz\n\tif {>Referer} is social-buttons-cc.xyz\n\tif {>Referer} is social-buttons-ccc.xyz\n\tif {>Referer} is social-buttons-dd.xyz\n\tif {>Referer} is social-buttons-ddd.xyz\n\tif {>Referer} is social-buttons-ee.xyz\n\tif {>Referer} is social-buttons-eee.xyz\n\tif {>Referer} is social-buttons-ff.xyz\n\tif {>Referer} is social-buttons-fff.xyz\n\tif {>Referer} is social-buttons-gg.xyz\n\tif {>Referer} is social-buttons-ggg.xyz\n\tif {>Referer} is social-buttons-hh.xyz\n\tif {>Referer} is social-buttons-ii.xyz\n\tif {>Referer} is social-buttons-iii.xyz\n\tif {>Referer} is social-buttons.com\n\tif {>Referer} is social-buttons.xyz\n\tif {>Referer} is social-fun.ru\n\tif {>Referer} is social-s-ggg.xyz\n\tif {>Referer} is social-s-hhh.xyz\n\tif {>Referer} is social-s-iii.xyz\n\tif {>Referer} is social-search.me\n\tif {>Referer} is social-traffic-1.xyz\n\tif {>Referer} is social-traffic-2.xyz\n\tif {>Referer} is social-traffic-3.xyz\n\tif {>Referer} is social-traffic-4.xyz\n\tif {>Referer} is social-traffic-5.xyz\n\tif {>Referer} is social-traffic-6.xyz\n\tif {>Referer} is social-traffic-7.xyz\n\tif {>Referer} is social-vestnik.ru\n\tif {>Referer} is social-widget.xyz\n\tif {>Referer} is socialbookmarksubmission.org\n\tif {>Referer} is socialbutton.xyz\n\tif {>Referer} is socialbuttons.xyz\n\tif {>Referer} is socialine.net\n\tif {>Referer} is socialseet.ru\n\tif {>Referer} is socialtrade.biz\n\tif {>Referer} is sofit-dmd.ru\n\tif {>Referer} is soft-program.com\n\tif {>Referer} is softomix.com\n\tif {>Referer} is softomix.net\n\tif {>Referer} is softomix.org\n\tif {>Referer} is softomix.ru\n\tif {>Referer} is softtor.com\n\tif {>Referer} is softxaker.ru\n\tif {>Referer} is sohoindia.net\n\tif {>Referer} is soki.tv\n\tif {>Referer} is solartek.ru\n\tif {>Referer} is solitaire-game.ru\n\tif {>Referer} is solnplast.ru\n\tif {>Referer} is sonata-arctica.wz.cz\n\tif {>Referer} is songoo.wz.cz\n\tif {>Referer} is sonnikforme.ru\n\tif {>Referer} is sonyelektronik.com\n\tif {>Referer} is sosdepotdebilan.com\n\tif {>Referer} is sotkal.lark.ru\n\tif {>Referer} is soundfrost.org\n\tif {>Referer} is soup.io\n\tif {>Referer} is souvenirua.com\n\tif {>Referer} is sovetogorod.ru\n\tif {>Referer} is sovetskie-plakaty.ru\n\tif {>Referer} is soviet-portal.do.am\n\tif {>Referer} is sowhoz.ru\n\tif {>Referer} is soyuzexpedition.ru\n\tif {>Referer} is sp-laptop.ru\n\tif {>Referer} is sp-zakupki.ru\n\tif {>Referer} is space2019.top\n\tif {>Referer} is spacebarnot.work\n\tif {>Referer} is spain-poetry.com\n\tif {>Referer} is spartania.com.ua\n\tif {>Referer} is spb-plitka.ru\n\tif {>Referer} is spb-scenar.ru\n\tif {>Referer} is spb.ru\n\tif {>Referer} is spbchampionat.ru\n\tif {>Referer} is special-porn.com\n\tif {>Referer} is specstroy36.ru\n\tif {>Referer} is speedup-my.site\n\tif {>Referer} is spin2016.cf\n\tif {>Referer} is sport-video-obzor.ru\n\tif {>Referer} is sportbetfair.com\n\tif {>Referer} is sportobzori.ru\n\tif {>Referer} is sportwizard.ru\n\tif {>Referer} is spravka130.ru\n\tif {>Referer} is spravkavspb.net\n\tif {>Referer} is spravkavspb.work\n\tif {>Referer} is sprawka-help.com\n\tif {>Referer} is spscmall.xyz\n\tif {>Referer} is spuemonti.net\n\tif {>Referer} is spy-app.info\n\tif {>Referer} is spy-sts.com\n\tif {>Referer} is sqadia.com\n\tif {>Referer} is squarespace.top\n\tif {>Referer} is squidoo.com\n\tif {>Referer} is srecorder.com\n\tif {>Referer} is sribno.net\n\tif {>Referer} is ssn.is\n\tif {>Referer} is sssexxx.net\n\tif {>Referer} is ssve.ru\n\tif {>Referer} is st-komf.ru\n\tif {>Referer} is sta-grand.ru\n\tif {>Referer} is stairliftstrue.com\n\tif {>Referer} is star61.de\n\tif {>Referer} is stardevine.com\n\tif {>Referer} is stariy-baku.com\n\tif {>Referer} is start.myplaycity.com\n\tif {>Referer} is startraffic.online\n\tif {>Referer} is startufa.ru\n\tif {>Referer} is startwp.org\n\tif {>Referer} is stat.lviv.ua\n\tif {>Referer} is statashop.xyz\n\tif {>Referer} is static.seders.website\n\tif {>Referer} is statustroll.com\n\tif {>Referer} is stauga.altervista.org\n\tif {>Referer} is stavimdveri.ru\n\tif {>Referer} is steame.ru\n\tif {>Referer} is steelmaster.lv\n\tif {>Referer} is stiralkovich.ru\n\tif {>Referer} is stocktwists.com\n\tif {>Referer} is stoki.ru\n\tif {>Referer} is stoletie.ru\n\tif {>Referer} is stoliar.org\n\tif {>Referer} is stomatologi.moscow\n\tif {>Referer} is stop-nark.ru\n\tif {>Referer} is stop-zavisimost.com\n\tif {>Referer} is store-rx.com\n\tif {>Referer} is strady.org.ua\n\tif {>Referer} is strana-krasoty.ru\n\tif {>Referer} is strana-solnca.ru\n\tif {>Referer} is stream-tds.com\n\tif {>Referer} is streetfire.net\n\tif {>Referer} is streetfooduncovered.com\n\tif {>Referer} is streha-metalko.si\n\tif {>Referer} is strigkaomsk.ru\n\tif {>Referer} is stroi-24.ru\n\tif {>Referer} is stroicol.net\n\tif {>Referer} is stroimajor.ru\n\tif {>Referer} is stroiminsk.com\n\tif {>Referer} is stroiminsk.org\n\tif {>Referer} is stromerrealty.com\n\tif {>Referer} is strongholdsb.ru\n\tif {>Referer} is strongtools.ga\n\tif {>Referer} is stroy-matrix.ru\n\tif {>Referer} is stroyalp.ru\n\tif {>Referer} is stroydetali.ru\n\tif {>Referer} is stroyka-gid.ru\n\tif {>Referer} is stroyka47.ru\n\tif {>Referer} is stroymonolit.su\n\tif {>Referer} is studentguide.ru\n\tif {>Referer} is studiofaca.com\n\tif {>Referer} is stuff-about-money.com\n\tif {>Referer} is stuffhydra.com\n\tif {>Referer} is stylecaster.top\n\tif {>Referer} is styro.ru\n\tif {>Referer} is su1ufa.ru\n\tif {>Referer} is success-seo.com\n\tif {>Referer} is suckoutlet.xyz\n\tif {>Referer} is sudachitravel.com\n\tif {>Referer} is sugarkun.com\n\tif {>Referer} is sugvant.ru\n\tif {>Referer} is sundrugstore.com\n\tif {>Referer} is super-seo-guru.com\n\tif {>Referer} is superiends.org\n\tif {>Referer} is supermama.top\n\tif {>Referer} is supermesta.ru\n\tif {>Referer} is supermodni.com.ua\n\tif {>Referer} is supernew.org\n\tif {>Referer} is superoboi.com.ua\n\tif {>Referer} is superpages.com\n\tif {>Referer} is superslots-casino.online\n\tif {>Referer} is superslots-casino.site\n\tif {>Referer} is superslots-cazino.online\n\tif {>Referer} is superslots-cazino.site\n\tif {>Referer} is superslotz-casino.site\n\tif {>Referer} is superslotz-cazino.site\n\tif {>Referer} is supertraffic.xyz\n\tif {>Referer} is supervesti.ru\n\tif {>Referer} is surflinksmedical.com\n\tif {>Referer} is susanholtphotography.com\n\tif {>Referer} is suzanneboswell.top\n\tif {>Referer} is svadba-teplohod.ru\n\tif {>Referer} is svarbit.com\n\tif {>Referer} is svarog-jez.com\n\tif {>Referer} is svensk-poesi.com\n\tif {>Referer} is svet-depo.ru\n\tif {>Referer} is svetka.info\n\tif {>Referer} is svetlotorg.ru\n\tif {>Referer} is svetoch.moscow\n\tif {>Referer} is svetodiodoff.ru\n\tif {>Referer} is svoimi-rukamy.com\n\tif {>Referer} is svs-avto.com\n\tif {>Referer} is swagbucks.com\n\tif {>Referer} is swaplab.io\n\tif {>Referer} is sweet.tv\n\tif {>Referer} is sygraem.com\n\tif {>Referer} is szansadlarolnikow.com.pl\n\tif {>Referer} is t-machinery.ru\n\tif {>Referer} is t-rec.su\n\tif {>Referer} is t3chtonic.com\n\tif {>Referer} is taartstore.xyz\n\tif {>Referer} is tagmeanvice.live\n\tif {>Referer} is taihouse.ru\n\tif {>Referer} is tam-gde-more.ru\n\tif {>Referer} is tamada69.com\n\tif {>Referer} is tammyblog.online\n\tif {>Referer} is targetpay.nl\n\tif {>Referer} is tasteidea.com\n\tif {>Referer} is tastyfoodideas.com\n\tif {>Referer} is tattoo-stickers.ru\n\tif {>Referer} is tattoo33.ru\n\tif {>Referer} is tattooha.com\n\tif {>Referer} is taximytishi.ru\n\tif {>Referer} is tccp.xyz\n\tif {>Referer} is tcenavoprosa.ru\n\tif {>Referer} is tcsinksale.xyz\n\tif {>Referer} is tcyh.net\n\tif {>Referer} is td-33.ru\n\tif {>Referer} is td-abs.ru\n\tif {>Referer} is td-l-market.ru\n\tif {>Referer} is td-perimetr.ru\n\tif {>Referer} is tdbatik.com\n\tif {>Referer} is tds-west.ru\n\tif {>Referer} is teastory.co\n\tif {>Referer} is techart24.com\n\tif {>Referer} is technika-remont.ru\n\tif {>Referer} is technopellet.gr\n\tif {>Referer} is tecspb.ru\n\tif {>Referer} is tedxrj.com\n\tif {>Referer} is tedy.su\n\tif {>Referer} is teedle.co\n\tif {>Referer} is tehngr.ru\n\tif {>Referer} is telegramdownload10.com\n\tif {>Referer} is telesvoboda.ru\n\tif {>Referer} is telfer.ru\n\tif {>Referer} is teman.com.ua\n\tif {>Referer} is tennis-bet.ru\n\tif {>Referer} is tentcomplekt.ru\n\tif {>Referer} is teplohod-gnezdo.ru\n\tif {>Referer} is teplokomplex.ru\n\tif {>Referer} is teplolidoma.ru\n\tif {>Referer} is terapist.xyz\n\tif {>Referer} is teresablog.top\n\tif {>Referer} is tesla-audit.ru\n\tif {>Referer} is teslathemes.com\n\tif {>Referer} is test-extra-full-stack-services.stream\n\tif {>Referer} is test-prime-smm-service.review\n\tif {>Referer} is test.xyz\n\tif {>Referer} is texbaza.by\n\tif {>Referer} is texnika.com.ua\n\tif {>Referer} is tgsubs.com\n\tif {>Referer} is tgtclick.com\n\tif {>Referer} is thaimassage-slon.ru\n\tif {>Referer} is thaoduoctoc.com\n\tif {>Referer} is the-torrent-tracker.blogspot.com\n\tif {>Referer} is the-usa-games.blogspot.com\n\tif {>Referer} is the-world.ru\n\tif {>Referer} is theautoprofit.ml\n\tif {>Referer} is thebluenoodle.com\n\tif {>Referer} is thecoral.com.br\n\tif {>Referer} is thedownloadfreeonlinegames.blogspot.com\n\tif {>Referer} is thedownloadfromwarez.blogspot.com\n\tif {>Referer} is thefds.net\n\tif {>Referer} is thegreensociety.net\n\tif {>Referer} is theguardlan.com\n\tif {>Referer} is theheroes.ru\n\tif {>Referer} is thejournal.ru\n\tif {>Referer} is thelotter.su\n\tif {>Referer} is thepokertimer.com\n\tif {>Referer} is therealshop.exaccess.com\n\tif {>Referer} is thesensehousehotel.com\n\tif {>Referer} is thesmartsearch.net\n\tif {>Referer} is thewomenlife.com\n\tif {>Referer} is thiegs.reco.ws\n\tif {>Referer} is thin.me.pn\n\tif {>Referer} is tiandeural.ru\n\tif {>Referer} is tiens2010.ru\n\tif {>Referer} is timeallnews.ru\n\tif {>Referer} is timer4web.com\n\tif {>Referer} is timetorelax.biz\n\tif {>Referer} is timmy.by\n\tif {>Referer} is tip8.co\n\tif {>Referer} is tizanidine4mg.blogspot.com\n\tif {>Referer} is tizanidine4mgprice.blogspot.com\n\tif {>Referer} is tizanidine4mgstreetprice.blogspot.com\n\tif {>Referer} is tizanidine4mgstreetvalue.blogspot.com\n\tif {>Referer} is tizanidine4mgtablets.blogspot.com\n\tif {>Referer} is tizanidine4mguses.blogspot.com\n\tif {>Referer} is tizanidine6mg.blogspot.com\n\tif {>Referer} is tizanidineandcipro.blogspot.com\n\tif {>Referer} is tizanidineandgabapentin.blogspot.com\n\tif {>Referer} is tizanidineandhydrocodone.blogspot.com\n\tif {>Referer} is tizanidinecapsules.blogspot.com\n\tif {>Referer} is tizanidinecost.blogspot.com\n\tif {>Referer} is tizanidinedosage.blogspot.com\n\tif {>Referer} is tizanidinedosageforsleep.blogspot.com\n\tif {>Referer} is tizanidinedruginteractions.blogspot.com\n\tif {>Referer} is tizanidinedrugtest.blogspot.com\n\tif {>Referer} is tizanidineduringpregnancy.blogspot.com\n\tif {>Referer} is tizanidinefibromyalgia.blogspot.com\n\tif {>Referer} is tizanidineformigraines.blogspot.com\n\tif {>Referer} is tizanidineforopiatewithdrawal.blogspot.com\n\tif {>Referer} is tizanidinehcl2mg.blogspot.com\n\tif {>Referer} is tizanidinehcl2mgsideeffects.blogspot.com\n\tif {>Referer} is tizanidinehcl2mgtablet.blogspot.com\n\tif {>Referer} is tizanidinehcl4mgisitanarcotic.blogspot.com\n\tif {>Referer} is tizanidinehcl4mgtab.blogspot.com\n\tif {>Referer} is tizanidinehcl4mgtabinfo.blogspot.com\n\tif {>Referer} is tizanidinehcl4mgtablet.blogspot.com\n\tif {>Referer} is tizanidinehclsideeffects.blogspot.com\n\tif {>Referer} is tizanidinehydrochloride2mg.blogspot.com\n\tif {>Referer} is tizanidinehydrochloride4mgstreetvalue.blogspot.com\n\tif {>Referer} is tizanidineinfo.blogspot.com\n\tif {>Referer} is tizanidineingredients.blogspot.com\n\tif {>Referer} is tizanidineinteractions.blogspot.com\n\tif {>Referer} is tizanidinemusclerelaxant.blogspot.com\n\tif {>Referer} is tizanidinenarcotic.blogspot.com\n\tif {>Referer} is tizanidineonline.blogspot.com\n\tif {>Referer} is tizanidineoral.blogspot.com\n\tif {>Referer} is tizanidineorflexeril.blogspot.com\n\tif {>Referer} is tizanidinepain.blogspot.com\n\tif {>Referer} is tizanidinepills.blogspot.com\n\tif {>Referer} is tizanidinerecreationaluse.blogspot.com\n\tif {>Referer} is tizanidinerestlesslegsyndrome.blogspot.com\n\tif {>Referer} is tizanidineshowupondrugtest.blogspot.com\n\tif {>Referer} is tizanidinesideeffects.blogspot.com\n\tif {>Referer} is tizanidinesideeffectsweightloss.blogspot.com\n\tif {>Referer} is tizanidinesleepaid.blogspot.com\n\tif {>Referer} is tizanidinestreetprice.blogspot.com\n\tif {>Referer} is tizanidinestreetvalue.blogspot.com\n\tif {>Referer} is tizanidineusedfor.blogspot.com\n\tif {>Referer} is tizanidinevscyclobenzaprine.blogspot.com\n\tif {>Referer} is tizanidinevssoma.blogspot.com\n\tif {>Referer} is tizanidinevsvalium.blogspot.com\n\tif {>Referer} is tizanidinewithdrawal.blogspot.com\n\tif {>Referer} is tizanidinewithdrawalsymptoms.blogspot.com\n\tif {>Referer} is tizanidinezanaflex.blogspot.com\n\tif {>Referer} is tkanorganizma.ru\n\tif {>Referer} is tksn.ru\n\tif {>Referer} is tocan.biz\n\tif {>Referer} is tocan.com.ua\n\tif {>Referer} is tokshow.online\n\tif {>Referer} is toloka.hurtom.com\n\tif {>Referer} is tomatis.gospartner.com\n\tif {>Referer} is tomck.com\n\tif {>Referer} is tommysautomotivecare.com\n\tif {>Referer} is top-gan.ru\n\tif {>Referer} is top-instagram.info\n\tif {>Referer} is top-kasyna.com\n\tif {>Referer} is top-l2.com\n\tif {>Referer} is top1-seo-service.com\n\tif {>Referer} is top10-online-games.com\n\tif {>Referer} is top10-way.com\n\tif {>Referer} is top250movies.ru\n\tif {>Referer} is top8.co\n\tif {>Referer} is topgurudeals.com\n\tif {>Referer} is topmebeltorg.ru\n\tif {>Referer} is topmira.com\n\tif {>Referer} is toposvita.com\n\tif {>Referer} is topquality.cf\n\tif {>Referer} is topseoservices.co\n\tif {>Referer} is topshef.ru\n\tif {>Referer} is topvidos.ru\n\tif {>Referer} is tor.vc\n\tif {>Referer} is torobrand.com\n\tif {>Referer} is torontoplumbinggroup.com\n\tif {>Referer} is torospa.ru\n\tif {>Referer} is torrentgamer.net\n\tif {>Referer} is torrentred.games\n\tif {>Referer} is torrents-tracker.com\n\tif {>Referer} is torrnada.ru\n\tif {>Referer} is torture.ml\n\tif {>Referer} is totppgoods.xyz\n\tif {>Referer} is touchmods.fr\n\tif {>Referer} is tourburlington.com\n\tif {>Referer} is tovaroboom.vast.ru\n\tif {>Referer} is tpu.ru\n\tif {>Referer} is track-rankings.online\n\tif {>Referer} is tracker24-gps.ru\n\tif {>Referer} is trade365.org\n\tif {>Referer} is traderzplanet.co.in\n\tif {>Referer} is trafaret74.ru\n\tif {>Referer} is trafers.com\n\tif {>Referer} is traffic-cash.xyz\n\tif {>Referer} is traffic-paradise.org\n\tif {>Referer} is traffic2cash.net\n\tif {>Referer} is traffic2cash.org\n\tif {>Referer} is traffic2cash.xyz\n\tif {>Referer} is traffic2money.com\n\tif {>Referer} is trafficbot.life\n\tif {>Referer} is trafficbot4free.xyz\n\tif {>Referer} is trafficdrive.club\n\tif {>Referer} is trafficgenius.xyz\n\tif {>Referer} is trafficmonetize.org\n\tif {>Referer} is trafficmonetizer.org\n\tif {>Referer} is trafficstudio.club\n\tif {>Referer} is traffictomoney.com\n\tif {>Referer} is trahvid.com\n\tif {>Referer} is tramadolandtizanidine.blogspot.com\n\tif {>Referer} is transit.in.ua\n\tif {>Referer} is transsex-videochat.ru\n\tif {>Referer} is traphouselatino.net\n\tif {>Referer} is travel-semantics.com\n\tif {>Referer} is travgoods.xyz\n\tif {>Referer} is traxdom.ru\n\tif {>Referer} is trex-casino.com\n\tif {>Referer} is trex.casino\n\tif {>Referer} is tri-slona.org\n\tif {>Referer} is trick-negotiation-cup-wonder.com\n\tif {>Referer} is tricolortv-online.com\n\tif {>Referer} is trieste.io\n\tif {>Referer} is trion.od.au\n\tif {>Referer} is trion.od.ua\n\tif {>Referer} is triumf-realty.ru\n\tif {>Referer} is trk-4.net\n\tif {>Referer} is trubywriting.com\n\tif {>Referer} is truck-spite-lawyer-activity.top\n\tif {>Referer} is truebeauty.cc\n\tif {>Referer} is tsatu.edu.ua\n\tif {>Referer} is tsc-koleso.ru\n\tif {>Referer} is tsstcorpcddvdwshbbdriverfb.aircus.com\n\tif {>Referer} is ttechno.net\n\tif {>Referer} is tuberkulezanet.ru\n\tif {>Referer} is tuberkuleznik.ru\n\tif {>Referer} is tudusale.xyz\n\tif {>Referer} is tula.mdverey.ru\n\tif {>Referer} is tuningdom.ru\n\tif {>Referer} is tupper-posuda.ru\n\tif {>Referer} is tupper-shop.ru\n\tif {>Referer} is turbo-suslik.org\n\tif {>Referer} is turist-strani.ru\n\tif {>Referer} is turkeyreport.tk\n\tif {>Referer} is turvgori.ru\n\tif {>Referer} is tvand.ru\n\tif {>Referer} is tvfru.org\n\tif {>Referer} is tvgoals.tv\n\tif {>Referer} is tvoystartup.ru\n\tif {>Referer} is twincitiescarservice.com\n\tif {>Referer} is twojebook.pl\n\tif {>Referer} is twsufa.ru\n\tif {>Referer} is twu.com.ua\n\tif {>Referer} is tytoona.com\n\tif {>Referer} is tyumen.xrus.org\n\tif {>Referer} is u-cheats.ru\n\tif {>Referer} is u17795.netangels.ru\n\tif {>Referer} is ua-company.ru\n\tif {>Referer} is ua.tc\n\tif {>Referer} is uaecdsale.xyz\n\tif {>Referer} is uasb.ru\n\tif {>Referer} is ublaze.ru\n\tif {>Referer} is ucanfly.ru\n\tif {>Referer} is ucban.xyz\n\tif {>Referer} is uchebavchehii.ru\n\tif {>Referer} is uchil.net\n\tif {>Referer} is ucoz.ru\n\tif {>Referer} is ucsfstore.xyz\n\tif {>Referer} is ucsol.ru\n\tif {>Referer} is uctraffic.com\n\tif {>Referer} is udav.net\n\tif {>Referer} is ufa.dienai.ru\n\tif {>Referer} is ufa.xrus.org\n\tif {>Referer} is ufolabs.net\n\tif {>Referer} is uginekologa.com\n\tif {>Referer} is ukrainian-poetry.com\n\tif {>Referer} is ukrcargo.com\n\tif {>Referer} is ukrtvory.in.ua\n\tif {>Referer} is ukstmalls.xyz\n\tif {>Referer} is ul-potolki.ru\n\tif {>Referer} is ultimateuninstall.com\n\tif {>Referer} is um-razum.ru\n\tif {>Referer} is umg-stroy.ru\n\tif {>Referer} is umityangin.net\n\tif {>Referer} is undergroundcityphoto.com\n\tif {>Referer} is uni.me\n\tif {>Referer} is unibus.su\n\tif {>Referer} is unimodemhalfduplefw.pen.io\n\tif {>Referer} is uniqgen.net\n\tif {>Referer} is unitygame3d.com\n\tif {>Referer} is univerfiles.com\n\tif {>Referer} is unlimitdocs.net\n\tif {>Referer} is unmaroll.ya.ru\n\tif {>Referer} is unpredictable.ga\n\tif {>Referer} is upcronline.xyz\n\tif {>Referer} is uptime-alpha.net\n\tif {>Referer} is uptime-as.net\n\tif {>Referer} is uptime-beta.net\n\tif {>Referer} is uptime-delta.net\n\tif {>Referer} is uptime-eu.net\n\tif {>Referer} is uptime-gamma.net\n\tif {>Referer} is uptime-us.net\n\tif {>Referer} is uptime.com\n\tif {>Referer} is uptimebot.net\n\tif {>Referer} is uptimechecker.com\n\tif {>Referer} is ural-buldozer.ru\n\tif {>Referer} is urbanblog.shop\n\tif {>Referer} is urbanchr.online\n\tif {>Referer} is urblog.xyz\n\tif {>Referer} is urccvfmc.bloger.index.hr\n\tif {>Referer} is urlopener.blogspot.com.au\n\tif {>Referer} is urlopener.com\n\tif {>Referer} is urlumbrella.com\n\tif {>Referer} is uruto.ru\n\tif {>Referer} is us-america.ru\n\tif {>Referer} is usadacha.net\n\tif {>Referer} is userequip.com\n\tif {>Referer} is uslugi-tatarstan.ru\n\tif {>Referer} is ussearche.cf\n\tif {>Referer} is ustion.ru\n\tif {>Referer} is uterkysale.xyz\n\tif {>Referer} is utrolive.ru\n\tif {>Referer} is uusmsale.xyz\n\tif {>Referer} is uyut-dom.pro\n\tif {>Referer} is uyutmaster73.ru\n\tif {>Referer} is uzpaket.com\n\tif {>Referer} is uzungil.com\n\tif {>Referer} is v-casino.fun\n\tif {>Referer} is v-casino.host\n\tif {>Referer} is v-casino.ru\n\tif {>Referer} is v-casino.site\n\tif {>Referer} is v-casino.website\n\tif {>Referer} is v-casino.xyz\n\tif {>Referer} is v-cazino.online\n\tif {>Referer} is v-cazino.ru\n\tif {>Referer} is vabasa.inwtrade.com\n\tif {>Referer} is vaderenergy.ru\n\tif {>Referer} is vadimkravtcov.ru\n\tif {>Referer} is valid-cc.com\n\tif {>Referer} is validccseller.com\n\tif {>Referer} is validus.pro\n\tif {>Referer} is valkiria-tk.ru\n\tif {>Referer} is vanessablog.online\n\tif {>Referer} is vape-x.ru\n\tif {>Referer} is vapmedia.org\n\tif {>Referer} is vapsy.com\n\tif {>Referer} is vardenafil20.com\n\tif {>Referer} is varikozdok.ru\n\tif {>Referer} is vashsvet.com\n\tif {>Referer} is vavada-casino.host\n\tif {>Referer} is vavada-casino.top\n\tif {>Referer} is vavada-cazino.host\n\tif {>Referer} is vavada-cazino.site\n\tif {>Referer} is vavilone.com\n\tif {>Referer} is vbabule.net\n\tif {>Referer} is vbikse.com\n\tif {>Referer} is vc.ru\n\tif {>Referer} is vchulkah.net\n\tif {>Referer} is vduplo.ru\n\tif {>Referer} is veerotech.com\n\tif {>Referer} is vegascosmetics.ru\n\tif {>Referer} is vekzdorov.ru\n\tif {>Referer} is veles.shop\n\tif {>Referer} is velobikestock.com\n\tif {>Referer} is veloland.in.ua\n\tif {>Referer} is venta-prom.ru\n\tif {>Referer} is ventelnos.com\n\tif {>Referer} is ventopt.by\n\tif {>Referer} is veronicablog.top\n\tif {>Referer} is vescenter.ru\n\tif {>Referer} is veselokloun.ru\n\tif {>Referer} is vesnatehno.com\n\tif {>Referer} is vesnatehno.ru\n\tif {>Referer} is vesta-lada.net\n\tif {>Referer} is vetbvc.ru\n\tif {>Referer} is vezdevoz.com.ua\n\tif {>Referer} is vezuviy.su\n\tif {>Referer} is vgoloveboli.net\n\tif {>Referer} is via-gra.webstarts.com\n\tif {>Referer} is viagra-soft.ru\n\tif {>Referer} is viagra.pp.ua\n\tif {>Referer} is viagroid.ru\n\tif {>Referer} is viandpet.com\n\tif {>Referer} is viberdownload10.com\n\tif {>Referer} is video--production.com\n\tif {>Referer} is video-chat.in\n\tif {>Referer} is video-girl-online.ru\n\tif {>Referer} is video-hollywood.ru\n\tif {>Referer} is video-woman.com\n\tif {>Referer} is videochat-dating.ru\n\tif {>Referer} is videochat.guru\n\tif {>Referer} is videochat.mx\n\tif {>Referer} is videochat.tv.br\n\tif {>Referer} is videochat.world\n\tif {>Referer} is videochaty.ru\n\tif {>Referer} is videofrost.com\n\tif {>Referer} is videofrost.net\n\tif {>Referer} is videokrik.net\n\tif {>Referer} is videos-for-your-business.com\n\tif {>Referer} is videosbox.ru\n\tif {>Referer} is videotop.biz\n\tif {>Referer} is videotuber.ru\n\tif {>Referer} is vidzwap.xyz\n\tif {>Referer} is viel.su\n\tif {>Referer} is vigrx-original.ru\n\tif {>Referer} is viktoria-center.ru\n\tif {>Referer} is vilingstore.net\n\tif {>Referer} is vinsit.ru\n\tif {>Referer} is vip-dom.in\n\tif {>Referer} is vip-parfumeria.ru\n\tif {>Referer} is vipsiterip.org\n\tif {>Referer} is virtchats.ru\n\tif {>Referer} is virtual-love-video.ru\n\tif {>Referer} is virtual-sex-chat.ru\n\tif {>Referer} is virtual-sex-time.ru\n\tif {>Referer} is virtual-sex-videochat.ru\n\tif {>Referer} is virtual-zaim.ru\n\tif {>Referer} is virtualbb.com\n\tif {>Referer} is virus-schutzmasken.de\n\tif {>Referer} is visa-china.ru\n\tif {>Referer} is visa-pasport.ru\n\tif {>Referer} is vita.com.hr\n\tif {>Referer} is vitanail.ru\n\tif {>Referer} is viven.host.sk\n\tif {>Referer} is vizag.kharkov.ua\n\tif {>Referer} is vk-mus.ru\n\tif {>Referer} is vk.com\n\tif {>Referer} is vkak.ru\n\tif {>Referer} is vkonche.com\n\tif {>Referer} is vkontaktemusic.ru\n\tif {>Referer} is vkontarkte.com\n\tif {>Referer} is vksaver-all.ru\n\tif {>Referer} is vksex.ru\n\tif {>Referer} is vladhistory.com\n\tif {>Referer} is vladtime.ru\n\tif {>Referer} is vltai.com\n\tif {>Referer} is vmnmvzsmn.over-blog.com\n\tif {>Referer} is vod.com.ua\n\tif {>Referer} is vodabur.by\n\tif {>Referer} is vodaodessa.com\n\tif {>Referer} is voditeltrezviy.ru\n\tif {>Referer} is vodkoved.ru\n\tif {>Referer} is volgograd.xrus.org\n\tif {>Referer} is volond.com\n\tif {>Referer} is voloomoney.com\n\tif {>Referer} is volume-pills.biz\n\tif {>Referer} is voprosotvet24.ru\n\tif {>Referer} is voronezh.xrus.org\n\tif {>Referer} is vostgard.com\n\tif {>Referer} is vostoktrade.info\n\tif {>Referer} is vote-up.ru\n\tif {>Referer} is vozbujdenie.com\n\tif {>Referer} is vpdr.pl\n\tif {>Referer} is vpnhowto.info\n\tif {>Referer} is vrazbor59.ru\n\tif {>Referer} is vriel.batcave.net\n\tif {>Referer} is vrnelectro.ru\n\tif {>Referer} is vrnhnmall.xyz\n\tif {>Referer} is vrotike.ru\n\tif {>Referer} is vsdelke.ru\n\tif {>Referer} is vseigru.one\n\tif {>Referer} is vseigry.fun\n\tif {>Referer} is vseprobrak.ru\n\tif {>Referer} is vsesubwaysurfers.com\n\tif {>Referer} is vseuznaem.com\n\tif {>Referer} is vucms.com\n\tif {>Referer} is vulkan-nadengi.ru\n\tif {>Referer} is vulkan-oficial.com\n\tif {>Referer} is vulkanrussia1.ru\n\tif {>Referer} is vykup-avto-krasnodar.ru\n\tif {>Referer} is vykupavto-krasnodar.ru\n\tif {>Referer} is vzheludke.com\n\tif {>Referer} is vzlom-na-zakaz.com\n\tif {>Referer} is vzubah.com\n\tif {>Referer} is vzube.com\n\tif {>Referer} is vzubkah.com\n\tif {>Referer} is w2mobile-za.com\n\tif {>Referer} is w3javascript.com\n\tif {>Referer} is w7s.ru\n\tif {>Referer} is wakeupseoconsultant.com\n\tif {>Referer} is wallabag.malooma.bzh\n\tif {>Referer} is wallet-prlzn.space\n\tif {>Referer} is wallinside.top\n\tif {>Referer} is wallpaperdesk.info\n\tif {>Referer} is wallpapers-all.com\n\tif {>Referer} is wallpapers-best.com\n\tif {>Referer} is wallpapersdesk.info\n\tif {>Referer} is wallstore.xyz\n\tif {>Referer} is wandamary.online\n\tif {>Referer} is wapsite.me\n\tif {>Referer} is warmex.com.ua\n\tif {>Referer} is warningwar.ru\n\tif {>Referer} is wasabisale.xyz\n\tif {>Referer} is watch-movies.ru\n\tif {>Referer} is wave-games.ru\n\tif {>Referer} is wayfcoin.space\n\tif {>Referer} is wbjm.net\n\tif {>Referer} is wcb.su\n\tif {>Referer} is wdfdocando.com\n\tif {>Referer} is wdss.com.ua\n\tif {>Referer} is we-ping-for-youian.info\n\tif {>Referer} is we-ping-for-youic.info\n\tif {>Referer} is web-analytics.date\n\tif {>Referer} is web-betting.ru\n\tif {>Referer} is web-lazy-services.review\n\tif {>Referer} is web-list.xyz\n\tif {>Referer} is web-revenue.xyz\n\tif {>Referer} is web.cvut.cz\n\tif {>Referer} is webalex.pro\n\tif {>Referer} is webinstantservice.com\n\tif {>Referer} is webix.me\n\tif {>Referer} is webjam.com\n\tif {>Referer} is weblibrary.win\n\tif {>Referer} is webmaster-traffic.com\n\tif {>Referer} is webmonetizer.net\n\tif {>Referer} is webradiology.ru\n\tif {>Referer} is webs.com\n\tif {>Referer} is website-analytics.online\n\tif {>Referer} is website-analyzer.info\n\tif {>Referer} is website-errors-scanner.com\n\tif {>Referer} is website-services-promotion.bid\n\tif {>Referer} is website-services-promotion.review\n\tif {>Referer} is website-services-promotion.stream\n\tif {>Referer} is website-services-promotion.win\n\tif {>Referer} is website-services-seo.bid\n\tif {>Referer} is website-services-seo.stream\n\tif {>Referer} is website-services-seo.win\n\tif {>Referer} is website-services-smm.bid\n\tif {>Referer} is website-services-smm.review\n\tif {>Referer} is website-services-smm.stream\n\tif {>Referer} is website-services-smm.win\n\tif {>Referer} is website-services.review\n\tif {>Referer} is website-services.stream\n\tif {>Referer} is website-services.win\n\tif {>Referer} is website-speed-check.site\n\tif {>Referer} is website-speed-checker.site\n\tif {>Referer} is website-speed-up.site\n\tif {>Referer} is website-speed-up.top\n\tif {>Referer} is website-stealer-warning-alert.hdmoviecams.com\n\tif {>Referer} is websitebottraffic.club\n\tif {>Referer} is websitebottraffic.host\n\tif {>Referer} is websites-reviews.com\n\tif {>Referer} is websocial.me\n\tif {>Referer} is webtherapy.ru\n\tif {>Referer} is weburlopener.com\n\tif {>Referer} is wedding-salon.net\n\tif {>Referer} is weebly.com\n\tif {>Referer} is weekes.biz.tc\n\tif {>Referer} is weightatraining.com\n\tif {>Referer} is weightbelts.ru\n\tif {>Referer} is welck.octopis.com\n\tif {>Referer} is welcomeauto.ru\n\tif {>Referer} is weprik.ru\n\tif {>Referer} is wetgames.ru\n\tif {>Referer} is wfdesigngroup.com\n\tif {>Referer} is whatistizanidine2mg.blogspot.com\n\tif {>Referer} is whatistizanidinehclusedfor.blogspot.com\n\tif {>Referer} is whatsappdownload10.com\n\tif {>Referer} is whereiskentoday.com\n\tif {>Referer} is wicivow.007h.ml\n\tif {>Referer} is wikes.20fr.com\n\tif {>Referer} is williamrobsonproperty.com\n\tif {>Referer} is winx-play.ru\n\tif {>Referer} is witherrom55.eklablog.fr\n\tif {>Referer} is wjxmenye.com\n\tif {>Referer} is wmasterlead.com\n\tif {>Referer} is wnoz.de\n\tif {>Referer} is woman-h.ru\n\tif {>Referer} is woman-orgasm.ru\n\tif {>Referer} is woman-tampon.ru\n\tif {>Referer} is womens-journal.net\n\tif {>Referer} is womensplay.net\n\tif {>Referer} is womensterritory.ru\n\tif {>Referer} is wordpress-crew.net\n\tif {>Referer} is wordpresscore.com\n\tif {>Referer} is work-from-home-earn-money-online.com\n\tif {>Referer} is workius.ru\n\tif {>Referer} is workona.com\n\tif {>Referer} is works.if.ua\n\tif {>Referer} is world-mmo.com\n\tif {>Referer} is worldgamenews.com\n\tif {>Referer} is worldhistory.biz\n\tif {>Referer} is worldis.me\n\tif {>Referer} is worldlovers.ru\n\tif {>Referer} is worldmed.info\n\tif {>Referer} is worldofbtc.com\n\tif {>Referer} is wormix-cheats.ru\n\tif {>Referer} is wowas31.ucoz.ru\n\tif {>Referer} is woweb.com.ua\n\tif {>Referer} is wpnull.org\n\tif {>Referer} is wptraffic.xyz\n\tif {>Referer} is wrazilwispolecznie.pl\n\tif {>Referer} is wrc-info.ru\n\tif {>Referer} is writingservices17.blogspot.ru\n\tif {>Referer} is wrona.it\n\tif {>Referer} is wstroika.ru\n\tif {>Referer} is wufak.com\n\tif {>Referer} is wurr.voila.net\n\tif {>Referer} is ww1943.ru\n\tif {>Referer} is ww2awards.info\n\tif {>Referer} is www-lk-rt.ru\n\tif {>Referer} is www.gelendzhic.ru\n\tif {>Referer} is www1.free-share-buttons.top\n\tif {>Referer} is wzgyyq.com\n\tif {>Referer} is x-lime.com\n\tif {>Referer} is x-lime.net\n\tif {>Referer} is x-musics.com\n\tif {>Referer} is x-stars.ru\n\tif {>Referer} is x5market.ru\n\tif {>Referer} is xaker26.net\n\tif {>Referer} is xbaboon.com\n\tif {>Referer} is xboxster.ru\n\tif {>Referer} is xexe.club\n\tif {>Referer} is xfire.com\n\tif {>Referer} is xgftnlrt.bloger.index.hr\n\tif {>Referer} is xion.cash\n\tif {>Referer} is xjrul.com\n\tif {>Referer} is xkaz.org\n\tif {>Referer} is xlolitka.com\n\tif {>Referer} is xmnb.net\n\tif {>Referer} is xn-------53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k.xn--p1ai\n\tif {>Referer} is xn------6cdbciescapvf0a8bibwx0a1bu.xn--90ais\n\tif {>Referer} is xn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai\n\tif {>Referer} is xn-----6kcacs9ajdmhcwdcbwwcnbgd13a.xn--p1ai\n\tif {>Referer} is xn-----6kcamwewcd9bayelq.xn--p1ai\n\tif {>Referer} is xn-----7kcaaxchbbmgncr7chzy0k0hk.xn--p1ai\n\tif {>Referer} is xn-----7kceclhb4abre1b4a0ccl2fxch1a.xn--p1ai\n\tif {>Referer} is xn-----8kcatubaocd1bneepefojs1h2e.xn--p1ai\n\tif {>Referer} is xn-----clckdac3bsfgdft3aebjp5etek.xn--p1ai\n\tif {>Referer} is xn----7sbabb9a1b7bddgm6a1i.xn--p1ai\n\tif {>Referer} is xn----7sbabhjc3ccc5aggbzfmfi.xn--p1ai\n\tif {>Referer} is xn----7sbabhv4abd8aih6bb7k.xn--p1ai\n\tif {>Referer} is xn----7sbabm1ahc4b2aqff.su\n\tif {>Referer} is xn----7sbabn5abjehfwi8bj.xn--p1ai\n\tif {>Referer} is xn----7sbaphztdjeboffeiof6c.xn--p1ai\n\tif {>Referer} is xn----7sbbpe3afguye.xn--p1ai\n\tif {>Referer} is xn----7sbho2agebbhlivy.xn--p1ai\n\tif {>Referer} is xn----8sbaki4azawu5b.xn--p1ai\n\tif {>Referer} is xn----8sbarihbihxpxqgaf0g1e.xn--80adxhks\n\tif {>Referer} is xn----8sbbjimdeyfsi.xn--p1ai\n\tif {>Referer} is xn----8sbdbjgb1ap7a9c4czbh.xn--p1acf\n\tif {>Referer} is xn----8sbhefaln6acifdaon5c6f4axh.xn--p1ai\n\tif {>Referer} is xn----8sblgmbj1a1bk8l.xn----161-4vemb6cjl7anbaea3afninj.xn--p1ai\n\tif {>Referer} is xn----8sbowe2akbcd4h.xn--p1ai\n\tif {>Referer} is xn----8sbpmgeilbd8achi0c.xn--p1ai\n\tif {>Referer} is xn----btbdvdh4aafrfciljm6k.xn--p1ai\n\tif {>Referer} is xn----ctbbcjd3dbsehgi.xn--p1ai\n\tif {>Referer} is xn----ctbfcdjl8baejhfb1oh.xn--p1ai\n\tif {>Referer} is xn----ctbigni3aj4h.xn--p1ai\n\tif {>Referer} is xn----dtbffp5aagjgfm.xn--p1ai\n\tif {>Referer} is xn----ftbeoaiyg1ak1cb7d.xn--p1ai\n\tif {>Referer} is xn----gtbdb0beu1bb8gj.xn--p1ai\n\tif {>Referer} is xn----itbbudqejbfpg3l.com\n\tif {>Referer} is xn----jtbjfcbdfr0afji4m.xn--p1ai\n\tif {>Referer} is xn--78-6kc6akkhn3a3k.xn--p1ai\n\tif {>Referer} is xn--78-6kcmzqfpcb1amd1q.xn--p1ai\n\tif {>Referer} is xn--80aaafbn2bc2ahdfrfkln6l.xn--p1ai\n\tif {>Referer} is xn--80aaajbdbddwj2alwjieei2afr3v.xn--p1ai\n\tif {>Referer} is xn--80aaajkrncdlqdh6ane8t.xn--p1ai\n\tif {>Referer} is xn--80aaaks3bbhabgbigamdr2h.xn--p1ai\n\tif {>Referer} is xn--80aabcsc3bqirlt.xn--p1ai\n\tif {>Referer} is xn--80aanaardaperhcem4a6i.com\n\tif {>Referer} is xn--80ab4aa2g.xn--p1ai\n\tif {>Referer} is xn--80adaggc5bdhlfamsfdij4p7b.xn--p1ai\n\tif {>Referer} is xn--80adgcaax6acohn6r.xn--p1ai\n\tif {>Referer} is xn--80aeahghtf8ac5i.xn--p1ai\n\tif {>Referer} is xn--80aeb6argv.xn--p1ai\n\tif {>Referer} is xn--80aebzmbfeebe.xn--p1ai\n\tif {>Referer} is xn--80ahdheogk5l.xn--p1ai\n\tif {>Referer} is xn--80ahvj9e.xn--p1ai\n\tif {>Referer} is xn--80ajbshivpvn2i.xn--p1ai\n\tif {>Referer} is xn--80ajjbdhgmudixfjc8c5a9df8b.xn--p1ai\n\tif {>Referer} is xn--90acenikpebbdd4f6d.xn--p1ai\n\tif {>Referer} is xn--90acjmaltae3acm.xn--p1acf\n\tif {>Referer} is xn--90adhhccf5aeewt7j.xn--p1ai\n\tif {>Referer} is xn--b1adccayqiirhu.xn--p1ai\n\tif {>Referer} is xn--b1ag5cfn.xn--p1ai\n\tif {>Referer} is xn--b1agm2d.net\n\tif {>Referer} is xn--c1acygb.xn--p1ai\n\tif {>Referer} is xn--d1abj0abs9d.in.ua\n\tif {>Referer} is xn--d1aifoe0a9a.top\n\tif {>Referer} is xn--e1aaajzchnkg.ru.com\n\tif {>Referer} is xn--e1aahcgdjkg4aeje6j.kz\n\tif {>Referer} is xn--e1agf4c.xn--80adxhks\n\tif {>Referer} is xn--e1aggki3c.xn--80adxhks\n\tif {>Referer} is xn--h1ahbi.com.ua\n\tif {>Referer} is xn--hxazdsfy.blogspot.com\n\tif {>Referer} is xn--l1aengat.xn--p1ai\n\tif {>Referer} is xn--mhg.com\n\tif {>Referer} is xn--oogle-wmc.com\n\tif {>Referer} is xn--q1a.xn--b1aube0e.xn--c1acygb.xn--p1ai\n\tif {>Referer} is xnxx-n.com\n\tif {>Referer} is xolodremont.ru\n\tif {>Referer} is xpert.com.ua\n\tif {>Referer} is xportvusbdriver8i.snack.ws\n\tif {>Referer} is xpresscare.ru\n\tif {>Referer} is xrp-ripple.info\n\tif {>Referer} is xrus.org\n\tif {>Referer} is xsion.net\n\tif {>Referer} is xtraffic.plus\n\tif {>Referer} is xtrafficplus.com\n\tif {>Referer} is xtrafficplus.online\n\tif {>Referer} is xtrafficplus.shop\n\tif {>Referer} is xtrafficplus.xyz\n\tif {>Referer} is xtubeporno.net\n\tif {>Referer} is xvideosbay.com\n\tif {>Referer} is xxart.ru\n\tif {>Referer} is xxx-treker.ru\n\tif {>Referer} is xxxhamster.me\n\tif {>Referer} is xxxtube69.com\n\tif {>Referer} is xxxvideochat.ru\n\tif {>Referer} is xz618.com\n\tif {>Referer} is xzlive.com\n\tif {>Referer} is yaderenergy.ru\n\tif {>Referer} is yaminecraft.ru\n\tif {>Referer} is yeartwit.com\n\tif {>Referer} is yellowstonevisitortours.com\n\tif {>Referer} is yes-com.com\n\tif {>Referer} is yes-do-now.com\n\tif {>Referer} is yhirurga.ru\n\tif {>Referer} is ykecwqlixx.ru\n\tif {>Referer} is ynymnwbm.bloger.index.hr\n\tif {>Referer} is yodse.io\n\tif {>Referer} is yoga4.ru\n\tif {>Referer} is youandcredit.ru\n\tif {>Referer} is youbloodyripper.com\n\tif {>Referer} is youdesigner.kz\n\tif {>Referer} is yougame.biz\n\tif {>Referer} is yougetsignal.com\n\tif {>Referer} is youghbould.wordpress.com\n\tif {>Referer} is youhack.info\n\tif {>Referer} is youjizz.vc\n\tif {>Referer} is youporn-forum.ga\n\tif {>Referer} is youporn-forum.uni.me\n\tif {>Referer} is youporn-ru.com\n\tif {>Referer} is your-good-links.com\n\tif {>Referer} is your-tales.ru\n\tif {>Referer} is yourdesires.ru\n\tif {>Referer} is youresponsive.com\n\tif {>Referer} is yourothersite.com\n\tif {>Referer} is yoursearch.me\n\tif {>Referer} is yourserverisdown.com\n\tif {>Referer} is yoursite.com\n\tif {>Referer} is yourtraffic.club\n\tif {>Referer} is youtoner.it\n\tif {>Referer} is youtubedownload.org\n\tif {>Referer} is yqpc.net\n\tif {>Referer} is yuarra.pluto.ro\n\tif {>Referer} is yubikk.info\n\tif {>Referer} is yugk.net\n\tif {>Referer} is yugo-star.ru\n\tif {>Referer} is yunque.pluto.ro\n\tif {>Referer} is yur-p.ru\n\tif {>Referer} is yurcons.pro\n\tif {>Referer} is yurgorod.ru\n\tif {>Referer} is yuristproffi.ru\n\tif {>Referer} is zagadki.in.ua\n\tif {>Referer} is zahodi2hydra.net\n\tif {>Referer} is zahvat.ru\n\tif {>Referer} is zaidia.xhost.ro\n\tif {>Referer} is zaim-pod-zalog-krasnodar.ru\n\tif {>Referer} is zaimhelp.ru\n\tif {>Referer} is zajm-pod-zalog-nedvizhimosti.ru\n\tif {>Referer} is zakazfutbolki.com\n\tif {>Referer} is zakaznoy.com.ua\n\tif {>Referer} is zakazvzloma.com\n\tif {>Referer} is zakis-azota24.ru\n\tif {>Referer} is zakisazota-official.com\n\tif {>Referer} is zakon-ob-obrazovanii.ru\n\tif {>Referer} is zaloadi.ru\n\tif {>Referer} is zamolotkom.ru\n\tif {>Referer} is zapnado.ru\n\tif {>Referer} is zarabotat-na-sajte.ru\n\tif {>Referer} is zarabotat-v-internete.biz\n\tif {>Referer} is zarenica.net\n\tif {>Referer} is zastenchivosti.net\n\tif {>Referer} is zastroyka.org\n\tif {>Referer} is zavod-gm.ru\n\tif {>Referer} is zazagames.org\n\tif {>Referer} is zdesformula.ru\n\tif {>Referer} is zdesoboi.com\n\tif {>Referer} is zdm-auto.com\n\tif {>Referer} is zdm-auto.ru\n\tif {>Referer} is zdorovie-nogi.info\n\tif {>Referer} is zebradudka.com\n\tif {>Referer} is zelena-mriya.com.ua\n\tif {>Referer} is zeleznobeton.ru\n\tif {>Referer} is zerocash.msk.ru\n\tif {>Referer} is zexhgoods.xyz\n\tif {>Referer} is zhcsapp.net\n\tif {>Referer} is zhoobintravel.com\n\tif {>Referer} is zhorapankratov7.blogspot.com\n\tif {>Referer} is zigarettenonl.canalblog.com\n\tif {>Referer} is zigarettenonlinekaufen.tumblr.com\n\tif {>Referer} is zigarettenonlinekaufen1.bloog.pl\n\tif {>Referer} is zigarettenonlinekaufen1.blox.pl\n\tif {>Referer} is zigarettenonlinekaufen2.bloog.pl\n\tif {>Referer} is zigarettenonlinekaufen2.drupalgardens.com\n\tif {>Referer} is zigzog.ru\n\tif {>Referer} is zlatnajesen.com\n\tif {>Referer} is zmoda.hostreo.com\n\tif {>Referer} is znakomstva-moskva77.ru\n\tif {>Referer} is znakomstva-piter78.ru\n\tif {>Referer} is znakomstvaonlain.ru\n\tif {>Referer} is znaniyapolza.ru\n\tif {>Referer} is zojirushi-products.ru\n\tif {>Referer} is zolotoy-lis.ru\n\tif {>Referer} is zonefiles.bid\n\tif {>Referer} is zoominfo.com\n\tif {>Referer} is zot.moscow\n\tif {>Referer} is zt-m.ru\n\tif {>Referer} is zuchn.com\n\tif {>Referer} is zverokruh-shop.cz\n\tif {>Referer} is zvetki.ru\n\tif {>Referer} is zvooq.eu\n\tif {>Referer} is zvuker.net\n\tif {>Referer} is zyzzcentral.ru\n}"
  },
  {
    "path": "referral-spam.caddy2",
    "content": "# https://github.com/Stevie-Ray/referrer-spam-blocker\n# Updated 2026-03-04 18:14:04\n\n#\n# Move this file next to your main Caddyfile, and include it by doing:\n#\n#     import ./referral-spam.caddy2\n#\n# Then start your caddy server. All the referrers will now be redirected to a 444 HTTP answer\n#\n\n@blocker {\n    header_regexp Referer \"^0-0\\.fr|000free\\.us|007agent-i\\.fr|00author\\.com|00go\\.com|00it\\.com|01casino-x\\.ru|033nachtvandeliteratuur\\.nl|03e\\.info|03p\\.info|0n-line\\.tv|1-88\\.vip|1-99seo\\.com|1-best-seo\\.com|1-free-share-buttons\\.com|100-reasons-for-seo\\.com|100dollars-seo\\.com|100searchengines\\.com|101flag\\.ru|11235813\\.webzdarma\\.cz|12-reasons-for-seo\\.net|12masterov\\.com|12u\\.info|15-reasons-for-seo\\.com|16lv\\.com|1hwy\\.com|1kinobig\\.ru|1kreditzaim\\.ru|1pamm\\.ru|1st-urist\\.ru|1webmaster\\.ml|1wek\\.top|1winru\\.ru|1x-slot\\.site|1x-slots\\.site|1xbet-entry\\.ru|1xbetcc\\.com|1xbetonlines1\\.ru|1xbetportugal\\.com|1xbetts\\.ru|1xslot-casino\\.online|1xslot-casino\\.ru|1xslot-casino\\.site|1xslot\\.site|1xslots-africa\\.site|1xslots-brasil\\.site|1xslots-casino\\.site|1xslots\\.africa|1xslots\\.site|2-best-seo\\.com|2-easy\\.xyz|2-go-now\\.xyz|2015god\\.org|24chasa\\.bg|24h\\.doctor|24videos\\.tv|24x7-server-support\\.site|256bit\\.by|273-fz\\.ru|2ads\\.co\\.uk|2itech\\.ru|2kata\\.ru|2nt\\.ru|2your\\.site|3-best-seo\\.com|3-letter-domains\\.net|3dgame3d\\.com|3dracergames\\.com|3waynetworks\\.com|4-best-seo\\.com|40momporntube\\.com|45en\\.ru|45tahunkhongguan\\.com|4inn\\.ru|4ip\\.su|4istoshop\\.com|4webmasters\\.com|4webmasters\\.org|4xcasino\\.ru|5-best-seo\\.com|5-steps-to-start-business\\.com|5elementov\\.ru|5forex\\.ru|6-best-seo\\.com|69-13-59\\.ru|6hopping\\.com|7-best-seo\\.com|70casino\\.online|76brighton\\.co\\.uk|76brighton\\.com|7kop\\.ru|7makemoneyonline\\.com|7milliondollars\\.com|7ooo\\.ru|7zap\\.com|8-best-seo\\.com|84lv\\.com|8xv8\\.com|9-best-seo\\.com|99-reasons-for-seo\\.com|QIWI\\.xyz|a-elita\\.in\\.ua|a-hau\\.mk|a14download\\.com|abacoasale\\.xyz|abaiak\\.com|abbanreddy\\.com|abc\\.xyz|abcdefh\\.xyz|abcdeg\\.xyz|abclauncher\\.com|abiente\\.ru|abovetherivernc\\.com|abtasty\\.com|abuser\\.shop|academia-nsk\\.org|acads\\.net|acarreo\\.ru|account-my1\\.xyz|accs-store\\.ru|actata\\.co|actualremont\\.ru|acunetix-referrer\\.com|adanih\\.com|adcash\\.com|addblueoff\\.com\\.ua|adelachrist\\.top|adelly\\.bg|adf\\.ly|adpostmalta\\.com|adrenalinebot\\.net|adrenalinebot\\.ru|adspart\\.com|adtiger\\.tk|adult-video-chat\\.ru|adultfullhd\\.com|adventureparkcostarica\\.com|advertisefree\\.co\\.uk|adviceforum\\.info|advocatemsk\\.ru|advokateg\\.co|advokateg\\.com|advokateg\\.ru|advokateg\\.xyz|aerodizain\\.com|aerogo\\.com|aerotour\\.ru|affiliate-programs\\.biz|affordablewebsitesandmobileapps\\.com|afora\\.ru|afshan\\.shop|agreda\\.pluto\\.ro|agro-gid\\.com|agtl\\.com\\.ua|ahecmarket\\.xyz|ahhjf\\.com|ahrefs\\.com|ai-seo-services\\.com|aibolita\\.com|aidarmebel\\.kz|aimeesblog\\.xyz|aimiot\\.net|aitiman\\.ae|akama\\.com|akmussale\\.xyz|akuhni\\.by|akusherok\\.ru|akvamaster\\.dp\\.ua|alborzan\\.com|albuteroli\\.com|alcobutik24\\.com|alert-fdm\\.xyz|alert-fjg\\.xyz|alert-hgd\\.xyz|alert-jdh\\.xyz|alertomall\\.xyz|alessandraleone\\.com|alexsander\\.ch|alfa-medosmotr\\.ru|alfa9\\.com|alfabot\\.xyz|alfapro\\.ru|alguiblog\\.online|alibestsale\\.com|aliexpress\\.com|aliexsale\\.ru|alif-ba-ta\\.com|alinabaniecka\\.pl|alive-ua\\.com|aliviahome\\.online|alkanfarma\\.org|all-news\\.kz|all4bath\\.ru|all4invest\\.ru|allcredits\\.su|allcryptonews\\.com|alldownload\\.pw|allergick\\.com|allergija\\.com|allfan\\.ru|allforminecraft\\.ru|allknow\\.info|allkrim\\.com|allmarketsnewdayli\\.gdn|allnews\\.md|allnews24\\.in|allpdfmags\\.net|allproblog\\.com|allsilver925\\.co\\.il|alltheviews\\.com|allvacancy\\.ru|allwomen\\.info|allwrighter\\.ru|alma-mramor\\.com\\.ua|alot\\.com|alp-rk\\.ru|alphaforum\\.ru|alphaopt24\\.ru|alpharma\\.net|alpinaskate\\.com|altermix\\.ua|alveris\\.ru|am-se\\.com|amanda-porn\\.ga|amatocanizalez\\.net|amazon-seo-service\\.com|amoi\\.tn|amoremio\\.by|amos-kids\\.ru|amospalla\\.es|amp-project\\.pro|amt-k\\.ru|amtel-vredestein\\.com|amylynnandrews\\.xyz|anabolics\\.shop|anal-acrobats\\.hol\\.es|analytics-ads\\.xyz|analyze-best-copywriting-services\\.party|analyze-extra-analytic-service\\.stream|ananumous\\.ru|anapa-inns\\.ru|andrewancheta\\.com|android-style\\.com|android-systems\\.ru|android-vsem\\.org|android4fun\\.org|androids-store\\.com|animalphotos\\.xyz|animebox\\.com\\.ua|animenime\\.ru|annaeydlish\\.top|anrtmall\\.xyz|anti-crisis-seo\\.com|anticrawler\\.org|antiguabarbuda\\.ru|antonovich-design\\.com\\.ua|anydesk\\.site|aosheng-tech\\.com|aoul\\.top|apartmentbay\\.ru|apartmentratings\\.com|apilian\\.xyz|apishops\\.ru|apollon-market-url\\.org|applepharma\\.ru|apteka-doc\\.ru|apteka-pharm\\.ru|apteka\\.info|apxeo\\.info|arabic-poetry\\.com|aramaicmedia\\.org|arate\\.ru|arcadepages\\.com|arcarticle\\.online|architecturebest\\.com|arendadogovor\\.ru|arendakvartir\\.kz|arendas\\.net|arendovalka\\.xyz|argo-visa\\.ru|arkansale\\.xyz|arkartex\\.ru|arkkivoltti\\.net|arpe\\.top|arraty\\.altervista\\.org|artblog\\.top|artclipart\\.ru|artdeko\\.info|artefakct\\.com|artpaint-market\\.ru|artparquet\\.ru|artpress\\.top|artsmarket\\.xyz|arturs\\.moscow|aruplighting\\.com|asacopaco\\.tk|ascotgoods\\.xyz|asia-forum\\.ru|ask-yug\\.com|asmxsatadriverin\\.aircus\\.com|astimvnc\\.online|asupro\\.com|asynt\\.net|aszokshop\\.xyz|atlant-auto\\.info|atlasvkusov\\.ru|atleticpharm\\.org|atley\\.eu\\.pn|atmagroup\\.ru|atoblog\\.online|atyks\\.ru|aucoinhomes\\.com|audiobangout\\.com|ausergrubhof\\.info|australia-opening-times\\.com|auto-b2b-seo-service\\.com|auto-complex\\.by|auto-kia-fulldrive\\.ru|auto-moto-elektronika\\.cz|auto-news-digest\\.ru|auto-seo-service\\.com|auto-seo-service\\.org|auto-zapchasti\\.org|auto\\.rusvile\\.lt|auto4style\\.ru|autoblog\\.org\\.ua|autobrennero\\.it|autobudpostach\\.club|autofuct\\.ru|autoloans\\.com|autolombard-krasnodar\\.ru|automate-amazon-affiliation\\.com|automobile-spec\\.com|autonew\\.biz|autoseo-service\\.org|autoseo-traffic\\.com|autoseo-trial-for-1\\.com|autoseoservice\\.org|autoseotips\\.com|autoservic\\.by|autotop\\.com\\.ua|autovideobroadcast\\.com|autowebmarket\\.com\\.ua|avcoast\\.com|avek\\.ru|aviapanda\\.ru|aviaseller\\.su|aviav\\.ru\\.com|avitocars\\.ru|aviva-limoux\\.com|avkzarabotok\\.com|avkzarabotok\\.info|avon-severozapad\\.ru|avtoarenda\\.by|avtocredit-legko\\.ru|avtointeres\\.ru|avtorskoe-vino\\.ru|avtovolop\\.ru|avtovykup\\.kz|awency\\.com|aworlds\\.com|axcus\\.top|ayerbo\\.xhost\\.ro|ayongoods\\.xyz|azadnegar\\.com|azartclub\\.org|azartniy-bonus\\.com|azazu\\.ru|azbuka-mo\\.ru|azbukadiets\\.ru|azbukafree\\.com|azlex\\.uz|b-buyeasy\\.com|b2b-lounge\\.com|bablonow\\.ru|baciakte\\.online|backgroundpictures\\.net|backlinks-fast-top\\.com|bag77\\.ru|bahisgunceladresi\\.com|baixar-musicas-gratis\\.com|bala\\.getenjoyment\\.net|baladur\\.ru|balakhna\\.online|balayazh\\.com|balitouroffice\\.com|balkanfarma\\.org|balkanfarma\\.ru|balois\\.worldbreak\\.com|bambi\\.ck\\.ua|banan\\.tv|bankcrediti\\.ru|bankhummer\\.co|bankiem\\.pl|barbarahome\\.top|bard-real\\.com\\.ua|bashtime\\.ru|basisches-wasser\\.net|batietiket\\.com|batut-fun\\.ru|bausparen\\.bz\\.it|bavariagid\\.de|bavsac\\.com|bazaronline24\\.ru|bbtec\\.net|bdf-tracker\\.top|beachtoday\\.ru|beamfall\\.info|beauby\\.ru|beauty-clinic\\.ru|beauty-lesson\\.com|beclean-nn\\.ru|bedroomlighting\\.us|begalka\\.xyz|belinvestdom\\.by|belreferatov\\.net|berdasovivan\\.ru|beremenyashka\\.com|berglion\\.com|berkinan\\.xyz|berlininsl\\.com|berrymall\\.ru|best-deal-hdd\\.pro|best-mam\\.ru|best-offer-hdd-1\\.info|best-offer-hdd-1\\.space|best-offer-hdd-1\\.top|best-offer-hdd\\.pro|best-offer-hdd\\.xyz|best-ping-service-usa-1\\.info|best-ping-service-usa-1\\.space|best-ping-service-usa-1\\.top|best-ping-service-usa\\.blue|best-ping-service-usa\\.me|best-ping-service-usa\\.space|best-ping-service-usa\\.top|best-ping-service-usa\\.xyz|best-printmsk\\.ru|best-seo-offer\\.com|best-seo-service\\.tk|best-seo-software\\.xyz|best-seo-solution\\.com|bestbookclub\\.ru|bestchoice\\.cf|bestempresas\\.es|bestfortraders\\.com|besthatcheries\\.com|bestleofferhdd\\.info|bestmobilityscooterstoday\\.com|bestofferfyhdd\\.info|bestofferhddacy\\.info|bestofferhddbyt\\.info|bestofferhddeed\\.info|bestofferhddity\\.info|bestofferifyhdd\\.info|bestofferswalkmydogouteveryday\\.gq|bestorofferhdd\\.info|bestplacetobuyeriacta\\.jw\\.lt|bestvpnrating\\.com|bestwebsiteawards\\.com|bestwebsitesawards\\.com|bet-prognoz\\.com|bet-winner1\\.ru|bet2much\\.ru|betonka\\.pro|betslive\\.ru|betterhealthbeauty\\.com|bettorschool\\.ru|betune\\.onlinewebshop\\.net|betwinservice\\.com|beyan\\.host\\.sk|bez-zabora\\.ru|bezcmexa\\.ru|bezlimitko\\.xyz|bezprostatita\\.com|bezsporno\\.ru|beztuberkuleza\\.ru|bhf\\.vc|bibprsale\\.xyz|bif-ru\\.info|bigcities\\.org|biglistofwebsites\\.com|biketank\\.ga|billiard-classic\\.com\\.ua|billigerstrom\\.co|billyblog\\.online|bimatoprost-careprost\\.com|bimatoprost-careprost\\.com\\.ua|bin-brokers\\.com|binokna\\.ru|binomo\\.kz|bio-japan\\.net|bio-market\\.kz|bio\\.trade-jp\\.net|bioca\\.org|biplanecentre\\.ru|bird1\\.ru|birzha-truda\\.eu|bisign\\.info|bitcoin-ua\\.top|bitcoins-forum\\.club|bitcoins-forum\\.info|bitcoins-forum\\.online|bitcoins-forum\\.pro|bitcoins-live\\.ru|biteg\\.xyz|bitniex\\.com|biz-law\\.ru|biznesluxe\\.ru|biznesrealnost\\.ru|biznesschat\\.net|bizru\\.info|bki24\\.info|bkns\\.vn|black-friday\\.ga|black-tip\\.top|blackhatworth\\.com|blackle\\.com|blackplanet\\.com|blackwitchcraft\\.ru|blancablog\\.online|blavia\\.00author\\.com|bleacherreport\\.com|blockchaintop\\.nl|blockworld\\.ru|blog\\.f00kclan\\.de|blog\\.koorg\\.ru|blog\\.latuti\\.net|blog\\.remote-computer\\.de|blog\\.xsk\\.in|blog\\.yam\\.com|blog100\\.org|blog2019\\.top|blog2019\\.xyz|blog4u\\.top|blogarun\\.co|bloggen\\.be|bloggers\\.nl|blogig\\.org|blogking\\.top|bloglag\\.com|blognet\\.top|blogorganictraffic\\.shop|blogos\\.kz|blogping\\.xyz|blogs\\.rediff\\.com|blogseo\\.xyz|blogstar\\.fun|blogster\\.com|blogtotal\\.de|blogtraffic\\.shop|blogua\\.org|blue-square\\.biz|bluerobot\\.info|bmusshop\\.xyz|bo-vtb24\\.ru|board\\.f00d\\.de|bobba\\.dzaba\\.com|bodybuilding-shop\\.biz|boleznikogi\\.com|bolezniorganov\\.ru|boltalko\\.xyz|boltushkiclub\\.ru|bombla\\.org|bonkers\\.name|bonniesblog\\.online|bonus-betting\\.ru|bonus-spasibo-sberbank\\.ru|bonus-vtb\\.ru|bonux\\.nextview\\.ru|bookmaker-bet\\.com|bookmark4you\\.biz|bookmark4you\\.com|bookmark4you\\.com\\.biz|books-top\\.com|boole\\.onlinewebshop\\.net|boost-my-site\\.com|boost24\\.biz|boostmyppc\\.com|bosefux\\.esy\\.es|bosman\\.pluto\\.ro|bostonline\\.xyz|bot-traffic\\.icu|bot-traffic\\.xyz|botamycos\\.fr|bottraffic\\.live|bottraffic143\\.xyz|bottraffic329\\.xyz|bottraffic4free\\.club|bottraffic4free\\.host|bottraffic999\\.xyz|bouda\\.kvalitne\\.cz|bowigosale\\.xyz|bpro1\\.top|bradleylive\\.xyz|brains2\\.biz|brakehawk\\.com|brandnewtube\\.com|brandov\\.ru|brateg\\.xyz|brauni\\.com\\.ua|bravica\\.biz|bravica\\.com|bravica\\.me|bravica\\.net|bravica\\.news|bravica\\.online|bravica\\.pro|bravica\\.ru|bravica\\.su|break-the-chains\\.com|breget74\\.ru|brendbutik\\.ru|briankatrine\\.top|brickmaster\\.pro|brillianty\\.info|bristolhostel\\.com|bristolhotel\\.com|bristolhotel\\.com\\.ua|britneyblog\\.online|brk-rti\\.ru|brokergid\\.ru|brooklyn-ads\\.com|brooklynsays\\.com|brothers-smaller\\.ru|brus-vsem\\.ru|brus\\.city|brusilov\\.ru|bsell\\.ru|btcnix\\.com|btt-club\\.pro|budilneg\\.xyz|budmavtomatika\\.com\\.ua|budpost\\.com\\.ua|bufetout\\.ru|bugof\\.gq|buhproffi\\.ru|buigas\\.00it\\.com|buildnw\\.ru|buildwithwendy\\.com|buketeg\\.xyz|bukleteg\\.xyz|bulgaria-web-developers\\.com|buqayy0\\.livejournal\\.com|bur-rk\\.ru|burger-imperia\\.com|burn-fat\\.ga|business-online-sberbank\\.ru|buttons-for-website\\.com|buttons-for-your-website\\.com|buy-cheap-online\\.info|buy-cheap-pills-order-online\\.com|buy-forum\\.ru|buy-meds24\\.com|buyantiviralwp\\.com|buyessay3\\.blogspot\\.ru|buyessaynow\\.biz|buyessayonline19\\.blogspot\\.ru|buyfriend\\.ru|buyk\\.host\\.sk|buynorxx\\.com|buypharmacydrug\\.com|buypillsonline24h\\.com|buypillsorderonline\\.com|buypuppies\\.ca|buyscabiescream\\.com|buytizanidineonline\\.blogspot\\.com|buytizanidineonlinenoprescription\\.blogspot\\.com|buyviagraa\\.blogspot\\.com|bvps8\\.com|bycontext\\.com|byme\\.se|bytimedance\\.ru|c-english\\.ru|c2bit\\.hk|californianews\\.cf|call-of-duty\\.info|callejondelpozo\\.es|calvet\\.altervista\\.org|cancerfungus\\.com|candida-international\\.blogspot\\.com|candida-society\\.org\\.uk|cannazon-market\\.org|canoncdriverq3\\.pen\\.io|canyougethighofftizanidine\\.blogspot\\.com|canzoni\\.ru|carabela\\.com\\.do|carbon-linger-hierarchy-suntan\\.top|carder\\.me|carder\\.tv|carders\\.ug|cardiosport\\.com\\.ua|cardsdumps\\.com|cardsharp1\\.ru|cardul\\.ru|carezi\\.com|carfax\\.com\\.ua|carivka\\.com\\.ua|carloans\\.com|carscrim\\.com|carsdined\\.org|carsnumber\\.com|carson\\.getenjoyment\\.net|carsoncitypizza\\.com|cartechnic\\.ru|casablancamanor\\.co\\.za|cashforum\\.cc|casino-top3\\.fun|casino-top3\\.online|casino-top3\\.ru|casino-top3\\.site|casino-top3\\.space|casino-top3\\.website|casino-v\\.site|casino-vulkane\\.com|casino-x-now\\.ru|casino-x\\.host|casinosbewertung\\.de|casinox-jp\\.com|castingbank\\.ru|catalogs-parts\\.com|catherinemill\\.xyz|catterybengal\\.com|cattyhealth\\.com|cauxmall\\.xyz|cayado\\.snn\\.gr|cazino-v\\.online|cazino-v\\.ru|cbcseward\\.com|cbox\\.ws|ccfullzshop\\.com|celestepage\\.xyz|celldog\\.ru|cenokos\\.ru|cenoval\\.ru|centre-indigo\\.org\\.ua|centrumcoachingu\\.com|cercacamion\\.it|certifywebsite\\.win|cezartabac\\.ro|cfsrating\\.sonicwall\\.com|cgi2\\.nintendo\\.co\\.jp|chainii\\.ru|channel-badge-betray-volcanic\\.com|chastnoeporno\\.com|chat\\.ru|chatmall\\.xyz|chatrazvrat\\.ru|chatroulette\\.life|chcu\\.net|cheap-trusted-backlinks\\.com|cheapkeys\\.ovh|cheappills24h\\.com|chee-by\\.biz|chelyabinsk\\.dienai\\.ru|chelyabinsk\\.xrus\\.org|cherrypointplace\\.ca|cherubinimobili\\.it|chimiver\\.info|chinese-amezon\\.com|chip35\\.ru|chipmp3\\.ru|chizhik-2\\.ru|chomexun\\.com|choosecuisine\\.com|ci\\.ua|ciarustde\\.online|cigarpass\\.com|cilolamall\\.xyz|cinemaenergy-hd\\.ru|ciproandtizanidine\\.blogspot\\.com|citizenclsdriveri7\\.pen\\.io|cityadspix\\.com|citybur\\.ru|cityreys\\.ru|civilwartheater\\.com|clarithromycin500mg\\.com|clash-clans\\.ru|classicakuhni\\.ru|cleandom\\.in\\.ua|cleaningservices\\.kiev\\.ua|clicksor\\.com|climate\\.by|clmforexeu\\.com|clothing-deal\\.club|cloudsendchef\\.com|club-lukojl\\.ru|club-musics\\.ru|club-samodelkin\\.ru|cmd\\.kz|cmrrsale\\.xyz|cmseshop\\.xyz|cobaltpro\\.ru|cocyq\\.inwtrade\\.com|coderstate\\.com|codq\\.info|codysbbq\\.com|coeus-solutions\\.de|coffeemashiny\\.ru|coinswitch\\.cash|coldfilm\\.ru|coleso\\.md|collectinviolity\\.com|collegeessay19\\.blogspot\\.ru|columb\\.net\\.ua|cometorussia\\.net|comissionka\\.net|commentag\\.com|commerage\\.ru|comp-pomosch\\.ru|compliance-alex\\.top|compliance-alex\\.xyz|compliance-alexa\\.top|compliance-alexa\\.xyz|compliance-andrew\\.top|compliance-andrew\\.xyz|compliance-barak\\.top|compliance-barak\\.xyz|compliance-brian\\.top|compliance-brian\\.xyz|compliance-checker-7\\.info|compliance-don\\.top|compliance-don\\.xyz|compliance-donald\\.xyz|compliance-elena\\.top|compliance-elena\\.xyz|compliance-fred\\.top|compliance-fred\\.xyz|compliance-george\\.top|compliance-george\\.xyz|compliance-irvin\\.top|compliance-irvin\\.xyz|compliance-ivan\\.top|compliance-ivan\\.xyz|compliance-jack\\.top|compliance-jane\\.top|compliance-jess\\.top|compliance-jessica\\.top|compliance-john\\.top|compliance-josh\\.top|compliance-julia\\.top|compliance-julianna\\.top|compliance-margo\\.top|compliance-mark\\.top|compliance-mary\\.top|compliance-nelson\\.top|compliance-olga\\.top|compliance-viktor\\.top|compliance-walt\\.top|compliance-walter\\.top|compliance-willy\\.top|computer-remont\\.ru|comuneshop\\.xyz|conciergegroup\\.org|concretepol\\.com|connectikastudio\\.com|constanceonline\\.top|constantaservice\\.net|construmac\\.com\\.mx|contextualyield\\.com|cookie-law-enforcement-aa\\.xyz|cookie-law-enforcement-bb\\.xyz|cookie-law-enforcement-cc\\.xyz|cookie-law-enforcement-dd\\.xyz|cookie-law-enforcement-ee\\.xyz|cookie-law-enforcement-ff\\.xyz|cookie-law-enforcement-gg\\.xyz|cookie-law-enforcement-hh\\.xyz|cookie-law-enforcement-ii\\.xyz|cookie-law-enforcement-jj\\.xyz|cookie-law-enforcement-kk\\.xyz|cookie-law-enforcement-ll\\.xyz|cookie-law-enforcement-mm\\.xyz|cookie-law-enforcement-nn\\.xyz|cookie-law-enforcement-oo\\.xyz|cookie-law-enforcement-pp\\.xyz|cookie-law-enforcement-qq\\.xyz|cookie-law-enforcement-rr\\.xyz|cookie-law-enforcement-ss\\.xyz|cookie-law-enforcement-tt\\.xyz|cookie-law-enforcement-uu\\.xyz|cookie-law-enforcement-vv\\.xyz|cookie-law-enforcement-ww\\.xyz|cookie-law-enforcement-xx\\.xyz|cookie-law-enforcement-yy\\.xyz|cookie-law-enforcement-zz\\.xyz|cookielawblog\\.wordpress\\.com|cookingmeat\\.ru|cool-mining\\.com|cool-wedding\\.net|coop-gamers\\.ru|copblock\\.org|copyrightclaims\\.org|copyrightinstitute\\.org|coral-info\\.com|cosmediqueresults\\.com|countravel\\.net|covadhosting\\.biz|covblog\\.top|coverage-my\\.com|covetnica\\.com|covid-schutzmasken\\.de|cowblog\\.fr|cp24\\.com\\.ua|cpnbshop\\.xyz|cranly\\.net|crazy-mining\\.org|crd\\.clan\\.su|creams\\.makeforum\\.eu|credit-card-tinkoff\\.ru|credit-cards-online24\\.ru|credit\\.co\\.ua|creditmoney\\.com\\.ua|crest-poloski\\.ru|crest3d\\.ru|crirussian\\.ru|cruiseraf\\.net|crypto-bear\\.com|crypto-bears\\.com|crypto-mining\\.club|crypto-wallets\\.org|crypto1x1\\.com|crystalslot\\.com|cubook\\.supernew\\.org|curenaturalicancro\\.com|curenaturalicancro\\.nl|customsua\\.com\\.ua|cutalltheshit\\.com|cvety24\\.by|cvta\\.xyz|cxpromote\\.com|cyber-monday\\.ga|cyclobenzaprinevstizanidine\\.blogspot\\.com|cymbaltaandtizanidine\\.blogspot\\.com|cyprusbuyproperties\\.com|czcedu\\.com|dacha-svoimi-rukami\\.com|dailyblog\\.xyz|dailyrank\\.net|dailyseo\\.xyz|dailystorm\\.ru|dailystrength\\.org|dailytraffic\\.shop|dame-ns\\.kz|damedingel\\.ya\\.ru|damianis\\.ru|danashop\\.ru|danceuniverse\\.ru|danhale\\.xyz|dantk\\.kz|daptravel\\.com|darcysassoon\\.top|darkbooks\\.org|darknet-hydra-onion\\.biz|darknet\\.sb|darknetsitesguide\\.com|darleneblog\\.online|darodar\\.com|datsun-do\\.com|dav\\.kz|davilaonline\\.shop|dawlenie\\.com|dbmkfhqk\\.bloger\\.index\\.hr|dbutton\\.net|dcdcapital\\.com|ddlmega\\.net|ddpills\\.com|de\\.zapmeta\\.com|dear-diary\\.ru|deart-13\\.ru|deda-moroza-zakaz\\.ru|deirdre\\.top|dekorkeramik\\.ru|delayreferat\\.ru|delfin-aqua\\.com\\.ua|delo\\.fund|deluxewatch\\.su|demenageur\\.com|den-noch24\\.ru|dengi-v-kredit\\.in\\.ua|denisecarey\\.top|deniseconnie\\.top|deniven\\.1bb\\.ru|dent-home\\.ru|dentuled\\.net|depositfiles-porn\\.com|depositfiles-porn\\.ga|dermatovenerologiya\\.com|deryie\\.com|descargar-musica-gratis\\.net|descargar-musicas-gratis\\.com|design-lands\\.ru|designdevise\\.com|detailedvideos\\.com|detalizaciya-tut\\.biz|detective01\\.ru|detki-opt\\.ru|detoolzon\\.xyz|detskie-konstruktory\\.ru|detskie-zabavi\\.ru|deutsche-poesie\\.com|dev-seo\\.blog|devochki-video\\.ru|dezeypmall\\.xyz|dgdsoutlet\\.xyz|diarioaconcagua\\.com|diatelier\\.ru|dicru\\.info|diebesten\\.co|dienai\\.ru|dienmaytot\\.xyz|diesel-parts28\\.ru|digest-project\\.ru|digilander\\.libero\\.it|digital-video-processing\\.com|digitalfaq\\.com|dimkino\\.ru|dinkolove\\.ya\\.ru|diplom-nk\\.com|diplomas-ru\\.com|dipstar\\.org|directrev\\.com|discounttaxi\\.kz|discover-prior-full-stack-services\\.party|discover-prior-ppc-service\\.party|discover-top-seo-service\\.review|distonija\\.com|divan-dekor\\.com\\.ua|dividendo\\.ru|diy-handmade-ideas\\.com|djekxa\\.ru|djonwatch\\.ru|djstools\\.com|dktr\\.ru|dldsshop\\.xyz|dlya-android\\.org|dms-sw\\.ru|dna-sklad\\.ru|dnepr-avtospar\\.com\\.ua|dneprsvet\\.com\\.ua|dnmetall\\.ru|docs4all\\.com|docsarchive\\.net|docsportal\\.net|docstoc\\.com|doctmalls\\.xyz|doctornadezhda\\.ru|documentbase\\.net|documentserver\\.net|documentsite\\.net|dodge-forum\\.eu|doeco\\.ru|doggyhealthy\\.com|dogovorpodryada\\.ru|dogshowsonice\\.com|dogsrun\\.net|dojki-devki\\.ru|dojki-hd\\.com|doktoronline\\.no|dokumentalkino\\.net|dom-international\\.ru|domain-tracker\\.com|domashneeruporno\\.com|domashniy-hotel\\.ru|domashniy-recepti\\.ru|dombestofferhdd\\.info|domcran\\.net|domik-derevne\\.ru|dominateforex\\.ml|domination\\.ml|dominterior\\.org|dommdom\\.com|domovozik\\.ru|domoysshop\\.ru|dompechey\\.by|domsadiogorod\\.ru|donvito\\.unas\\.cz|doreenblog\\.online|doska-vsem\\.ru|dostavka-v-krym\\.com|dostavka-v-ukrainu\\.ru|dosug-lux\\.ru|dosugrostov\\.site|download-of-the-warez\\.blogspot\\.com|downloadkakaotalk\\.com|downloadmefiranaratb1972\\.xpg\\.com\\.br|doxyporno\\.com|doxysexy\\.com|doyouknowtheword-flummox\\.ml|dprkboards\\.com|draniki\\.org|dreamland-bg\\.com|dreams-works\\.net|drev\\.biz|driving\\.kiev\\.ua|drugs-no-rx\\.info|drugspowerstore\\.com|drugstoreforyou\\.com|drupa\\.com|druzhbany\\.ru|druzhininevgeniy63\\.blogspot\\.com|dspautomations\\.com|dstroy\\.su|duitbux\\.info|dumpsccshop\\.com|dvd-famille\\.com|dvk-stroi\\.ru|dvr\\.biz\\.ua|dzinerstudio\\.com|e-avon\\.ru|e-buyeasy\\.com|e-collantes\\.com|e-commerce-seo\\.com|e-commerce-seo1\\.com|e-kwiaciarz\\.pl|e-stroymart\\.kz|e2click\\.com|eandsgallery\\.com|eaptekaplus\\.ru|earn-from-articles\\.com|earnian-money\\.info|earnity-money\\.info|easycommerce\\.cf|easync\\.io|easytuningshop\\.ru|eavuinsr\\.online|ecblog\\.xyz|ecommerce-seo\\.com|ecommerce-seo\\.org|ecomp3\\.ru|econom\\.co|ecookna\\.com\\.ua|edakgfvwql\\.ru|edelstahlschornstein-123\\.de|editmedios\\.com|edmed-sonline\\.com|ednetstore\\.xyz|edshopping\\.net|eduardoluis\\.com|education-cz\\.ru|educhess\\.ru|edudocs\\.net|eduinfosite\\.com|eduserver\\.net|eecz\\.org|eets\\.net|ege-essay\\.ru|ege-krasnoyarsk\\.ru|egovaleo\\.it|egvar\\.net|ek-invest\\.ru|ekatalog\\.xyz|ekaterinburg\\.xrus\\.org|ekbspravka\\.ru|eko-gazon\\.ru|ekobata\\.ru|ekoproekt-kr\\.ru|ekspertmed\\.com|ekto\\.ee|el-nation\\.com|elainasblog\\.xyz|eldoradorent\\.az|election\\.interferencer\\.ru|electric-blue-industries\\.com|electricwheelchairsarea\\.com|electro-prom\\.com|elegante-vitrage\\.ru|elektrikovich\\.ru|elektrischezi\\.canalblog\\.com|elektrischeziga\\.livejournal\\.com|elektrischezigarette1\\.blog\\.pl|elektrischezigarette1\\.onsugar\\.com|elektrischezigarette2\\.devhub\\.com|elektrischezigarette2\\.onsugar\\.com|elektrischezigarettekaufen2\\.cowblog\\.fr|elektrischezigaretten1\\.blogse\\.nl|elektrischezigaretten2\\.beeplog\\.com|elektronischezi\\.livejournal\\.com|elektronischezigarette2\\.mex\\.tl|elektronischezigarettekaufen1\\.beeplog\\.com|elektronischezigarettekaufen1\\.myblog\\.de|elektronischezigarettekaufen2\\.tumblr\\.com|elektrozigarette1\\.dreamwidth\\.org|elektrozigarette2\\.webs\\.com|elektrozigarette2\\.wordpressy\\.pl|elektrozigarettekaufen1\\.devhub\\.com|elektrozigarettekaufen2\\.blogse\\.nl|elektrozigaretten1\\.postbit\\.com|elektrozigaretten1\\.tumblr\\.com|elektrozigaretten1\\.webs\\.com|elektrozigaretten2\\.yn\\.lt|elementspluss\\.ru|elenatkachenko\\.com\\.ua|elentur\\.com\\.ua|elidelcream\\.weebly\\.com|elitesportsadvisor\\.com|elizabethbruno\\.top|elkacentr\\.ru|ellemarket\\.com|elmifarhangi\\.com|eloconcream\\.blogspot\\.com|eloxal\\.ru|elvel\\.com\\.ua|embedle\\.com|emctestlab\\.ru|emerson-rus\\.ru|emicef\\.com|empire-market\\.org|empire-market\\.xyz|empiremarket-link\\.org|empiremarketlink24\\.com|empirestuff\\.org|empis\\.magix\\.net|encmbtia\\.online|energomash\\.net|energy-ua\\.com|energydiet-info\\.ru|energydiet24\\.ru|energysexy\\.com|enginebay\\.ru|englishdictionaryfree\\.com|englishtopic\\.ru|enter-unicredit\\.ru|entgetadsincome\\.info|envistore\\.xyz|eonpal\\.com|epcpolo\\.com|epicdiving\\.com|eraglass\\.com|erank\\.eu|eredijovon\\.com|ereko\\.ru|erias\\.xyz|eric-artem\\.com|ericshome\\.store|erinhome\\.xyz|ero-video-chat\\.org|erofus\\.online|eropho\\.com|eropho\\.net|erot\\.co|erotag\\.com|eroticheskij-video-chat\\.ru|erotikstories\\.ru|es-pfrf\\.ru|es5\\.com|escort-russian\\.com|escortplius\\.com|eshop\\.md|eskei83\\.com|esnm\\.ru|esoterikforum\\.at|essaytags\\.com|estdj\\.com|este-line\\.com\\.ua|etairikavideo\\.gr|etehnika\\.com\\.ua|etotupo\\.ru|ets-2-mod\\.ru|etsfshop\\.xyz|eu-cookie-law-enforcement-4\\.xyz|eu-cookie-law-enforcement-5\\.xyz|eu-cookie-law-enforcement-6\\.xyz|eu-cookie-law-enforcement-7\\.xyz|eu-cookie-law-enforcement1\\.xyz|eu-cookie-law-enforcement2\\.xyz|eu-cookie-law\\.blogspot\\.com|eu-cookie-law\\.info|eurocredit\\.xyz|euromasterclass\\.ru|euronis-free\\.com|europages\\.com\\.ru|europeanwatches\\.ru|eurosamodelki\\.ru|euroskat\\.ru|evaashop\\.ru|event-tracking\\.com|eventiyahall\\.ru|evreuxshop\\.xyz|exchangeit\\.gq|exchanges-bet\\.com|exclusive-profit\\.com|exdocsfiles\\.com|execedmall\\.xyz|executehosting\\.com|exotic-video-chat\\.ru|expdom\\.com|expediacustomerservicenumber\\.online|expert-find\\.ru|expertnaya-ocenka\\.ru|explore-prior-web-service\\.review|express-vyvoz\\.ru|expresstoplivo\\.ru|extener\\.com|extener\\.org|extrabot\\.com|extremez\\.net|eyes-on-you\\.ga|eyessurgery\\.ru|ez8motelseaworldsandiego\\.com|ezigarettekaufen\\.myblog\\.de|ezigarettekaufen1\\.hpage\\.com|ezigarettekaufen2\\.blox\\.pl|ezigarettekaufen2\\.mpbloggar\\.se|ezigarettekaufen2\\.yolasite\\.com|ezigarettenkaufen1\\.deviantart\\.com|ezigarettenkaufen1\\.pagina\\.gr|ezigarettenkaufen2\\.dreamwidth\\.org|ezigarettenshop1\\.yolasite\\.com|ezigarettenshop2\\.myblog\\.de|ezigarettenshop2\\.postbit\\.com|ezigaretteshop\\.webs\\.com|ezigaretteshop2\\.mywapblog\\.com|ezigaretteshop2\\.vefblog\\.net|ezofest\\.sk|ezrvrentals\\.com|f-loaded\\.de|f-online\\.de|f00kclan\\.de|f012\\.de|f07\\.de|f0815\\.de|f1nder\\.org|facebook-mobile\\.xyz|fainaidea\\.com|faithe\\.top|falco3d\\.com|falcoware\\.com|family1st\\.ca|familyholiday\\.ml|familyphysician\\.ru|fanoboi\\.com|fartunabest\\.ru|fashion-mk\\.net|fashiong\\.ru|fashionindeed\\.ml|fast-wordpress-start\\.com|fastgg\\.net|fatrizscae\\.online|favorcosmetics\\.com|favoritemoney\\.ru|favoritki-msk\\.ru|favornews\\.com|fazika\\.ru|fba-mexico\\.com|fbdownloader\\.com|fbfreegifts\\.com|fc-007\\.com|fealq\\.com|feargames\\.ru|feedback\\.sharemyfile\\.ru|feedouble\\.com|feedouble\\.net|feel-planet\\.com|feeriaclub\\.ru|feiacmr\\.shop|feminist\\.org\\.ua|femmesdenudees\\.com|fenoyl\\.batcave\\.net|ferieboligkbh\\.dk|fermersovet\\.ru|fetishinside\\.com|fialka\\.tomsk\\.ru|fidalsa\\.de|fierrohack\\.ru|figensahin\\.com|filesclub\\.net|filesdatabase\\.net|filesvine\\.com|film-one\\.ru|filmetricsasia\\.com|filmgo\\.ru|filmidivx\\.com|films2018\\.com|filter-ot-zheleza\\.ru|financial-simulation\\.com|finansov\\.info|findacheaplawyers\\.com|finder\\.cool|findercarphotos\\.com|fineblog\\.top|finstroy\\.net|finteks\\.ru|firma-legion\\.ru|firmgeo\\.xyz|firstblog\\.top|fit-discount\\.ru|fitness-video\\.net|fitodar\\.com\\.ua|fiuagts\\.online|fiuxy\\.com|fiverr\\.com|fix-website-errors\\.com|fizika\\.tv|flash4fun\\.com|flavors\\.me|flex4launch\\.ru|flexderek\\.com|floating-share-buttons\\.com|flooringinstallation-edmonton\\.com|flowersbazar\\.com|flowertherapy\\.ru|flowwwers\\.com|flprog\\.com|flyblog\\.xyz|flytourisme\\.org|fm-upgrade\\.ru|fmgrupe\\.it|foojo\\.net|for-marketersy\\.info|for-your\\.website|forensicpsychiatry\\.ru|forex-indextop20\\.ru|forex-procto\\.ru|forex\\.osobye\\.ru|forex21\\.ru|forexgb\\.ru|forexunion\\.net|forminecrafters\\.ru|forms-mtm\\.ru|forpostlock\\.ru|forsex\\.info|fortwosmartcar\\.pw|forum-engineering\\.ru|forum\\.poker4life\\.ru|forum\\.tvmir\\.org|forum20\\.smailik\\.org|forum69\\.info|forums\\.toucharcade\\.com|fotoxxxru\\.com|foxinsocks\\.ru|foxjuegos\\.com|foxtechfpv\\.com|foxweber\\.com|fpclub\\.ru|fr\\.netlog\\.com|francaise-poesie\\.com|frankofficial\\.ru|frauplus\\.ru|free-fb-traffic\\.com|free-fbook-traffic\\.com|free-floating-buttons\\.com|free-games-download\\.falcoware\\.com|free-share-buttons-aaa\\.xyz|free-share-buttons-bbb\\.xyz|free-share-buttons-ccc\\.xyz|free-share-buttons-ddd\\.xyz|free-share-buttons-eee\\.xyz|free-share-buttons-fff\\.xyz|free-share-buttons\\.blogspot\\.com|free-share-buttons\\.co|free-share-buttons\\.com|free-share-buttons\\.top|free-social-buttons-aaa\\.xyz|free-social-buttons-bbb\\.xyz|free-social-buttons-ccc\\.xyz|free-social-buttons-ddd\\.xyz|free-social-buttons-eee\\.xyz|free-social-buttons-fff\\.xyz|free-social-buttons-hhh\\.xyz|free-social-buttons-iii\\.xyz|free-social-buttons\\.com|free-social-buttons\\.org|free-social-buttons\\.xyz|free-social-buttons1\\.xyz|free-social-buttons2\\.xyz|free-social-buttons3\\.xyz|free-social-buttons4\\.xyz|free-social-buttons5\\.xyz|free-social-buttons6\\.xyz|free-social-buttons7\\.xyz|free-traffic\\.xyz|free-video-chat\\.ru|free-video-tool\\.com|free-website-traffic\\.com|freeasecret\\.com|freenode\\.info|freeseedsonline\\.com|freetangodownload\\.com|freewebs\\.com|freewhatsappload\\.com|freewlan\\.info|freshberry\\.com\\.ua|freshnails\\.com\\.ua|front\\.ru|front\\.to|fsalas\\.com|fsin-pokypka\\.ru|ftns\\.ru|fuck-paid-share-buttons\\.xyz|fuel-gas\\.com|fullzdumps\\.cc|fungirlsgames\\.net|funnypica\\.com|furniture-ukraine\\.com|furniturehomewares\\.com|futbolkisales\\.ru|fvetgoods\\.xyz|fxtips\\.ru|g7m\\.pl|gabeshop\\.ru|gabysuniqueboutique\\.com|gael-s\\.ru|gagrasector\\.ru|galaxy-family\\.ru|galaxyflowers\\.ru|galblog\\.top|galeon\\.com|gamblingpp\\.ru|game-mmorpg\\.net|game-top\\.su|game300\\.ru|games\\.kolossale\\.ru|gammatraffic\\.com|gandikapper\\.ru|gaokr\\.xyz|gap-search\\.com|garantprava\\.com|gardene\\.ru|gasvleningrade\\.ru|gatwick\\.ru|gays-video-chat\\.ru|gaz-voshod\\.ru|gazel-72\\.ru|gazobeton-p\\.com\\.ua|gazoblok\\.net\\.ua|gbh-invest\\.ru|gcmx\\.net|gcup\\.ru|gdcentre\\.ru|gearcraft\\.us|gearsadspromo\\.club|gelezki\\.com|geliyballon\\.ru|gelstate\\.ru|generalporn\\.org|genericlowlatencyasiodriverhq\\.aircus\\.com|geniusfood\\.co\\.uk|gentamicineyedrops\\.blogspot\\.com|georgeblog\\.online|gepatit-info\\.top|germes-trans\\.com|get-best-copywriting-service\\.stream|get-clickir\\.info|get-clickize\\.info|get-free-social-traffic\\.com|get-free-traffic-now\\.com|get-more-freeen-visitors\\.info|get-more-freeer-visitors\\.info|get-more-freeish-visitors\\.info|get-more-freeize-visitors\\.info|get-more-freele-visitors\\.info|get-morebit-free-visitors\\.info|get-prime-seo-services\\.review|get-seo-help\\.com|get-your-social-buttons\\.info|getaadsincome\\.info|getadsincomeian\\.info|getadsincomely\\.info|getadsincomeof\\.info|getbottraffic4free\\.club|getbottraffic4free\\.host|getbottraffic4free\\.xyz|getbytadsincome\\.info|getfy-click\\.info|getism-more-free-visitors\\.info|getity-more-free-visitors\\.info|getityadsincome\\.info|getive-more-free-visitors\\.info|getlamborghini\\.ga|getoutofdebtfree\\.org|getprismatic\\.com|getpy-click\\.info|getpy-more-free-visitors\\.info|getrichquick\\.ml|getrichquickly\\.info|getyourprofit\\.net|gevciamst\\.online|gezlev\\.com\\.ua|gfaq\\.ru|ghazel\\.ru|ghernnqr\\.skyrock\\.com|gheus\\.altervista\\.org|ghostvisitor\\.com|gidonline\\.one|gidro-partner\\.ru|giftbig\\.ru|girlporn\\.ru|girls-ufa\\.ru|girlsatgames\\.ru|gk-atlant\\.info|gk-casino\\.fun|gk-casino\\.online|gk-casino\\.ru|gk-casino\\.site|gk-casino\\.space|gk-casino\\.website|gkvector\\.ru|glall\\.ru|glass-msk\\.ru|glavprofit\\.ru|glcomputers\\.ru|glktfw\\.net|global-smm\\.ru|globalscam\\.ga|globatur\\.ru|globetrotting-culture\\.ru|glogow\\.pl|glopages\\.ru|go2album\\.com|gobongo\\.info|goforexvps\\.com|gogps\\.me|gojiberriess\\.apishops\\.ru|gok-kasten\\.net|goldandcard\\.ru|golden-catalog\\.pro|golden-praga\\.ru|goldenggames\\.com|goldvaultmetals\\.com|golmau\\.host\\.sk|golyedevushki\\.com|gonextmedia\\.com|good-potolok\\.ru|goodbyecellulite\\.ru|goodcoffeepremium\\.com|goodhumor24\\.com|goodnightjournal\\.com|goodprotein\\.ru|google-liar\\.ru|googlefeud\\.com|googlemare\\.com|googlsucks\\.com|gorabagrata\\.ru|gorgaz\\.info|goroda-vsego-mira\\.ru|gorodservis\\.ru|gosreg\\.amchs\\.ru|gototal\\.co\\.nz|gourcy\\.altervista\\.org|goyua\\.xyz|gq-catalog\\.gq|graceonline\\.shop|grafaman\\.ru|grand-chlen\\.ru|graphid\\.com|gratuitbaise\\.com|greatblog\\.top|greatgrace\\.ru|greentechsy\\.com|grizzlysgrill\\.com|groshi-kredut\\.com\\.ua|groupmoney\\.ru|growmyfunds\\.ca|growshop\\.es|growth-hackingan\\.info|growth-hackingead\\.info|growth-hackingeads\\.info|growth-hackingor\\.info|growth-hackingy\\.info|grupografico-pilar\\.com\\.ar|gruzchiki24\\.ru|gsbs\\.com\\.ua|gsmlab\\.pl|gsmtlf\\.ru|gta-club\\.ru|gta-top\\.ru|gttpsale\\.xyz|guardlink\\.com|guardlink\\.org|guge\\.io|guidetopetersburg\\.com|gungamesz\\.com|guruofcasino\\.com|gwhwpxbw\\.bloger\\.index\\.hr|gxcb\\.net|h2monline\\.com|hacktougroup\\.ru|hagirkblog\\.space|hahashka\\.ru|haikuware\\.com|halat\\.xyz|halefa\\.com|hamyshop\\.xyz|handicapvansarea\\.com|handicapvantoday\\.com|handsandlegs\\.ru|hanink\\.biz\\.ly|hankspring\\.xyz|happysong\\.ru|hard-porn\\.mobi|hardcore\\.anzwers\\.net|hardosale\\.xyz|harpro\\.net|havepussy\\.com|hawaiisurf\\.com|hazardky\\.net|hd1080film\\.ru|hd720kino\\.ru|hdfreeporno\\.net|hdhc\\.site|hdmoviecamera\\.net|hdmoviecams\\.com|hdmoviecams\\.net|hdsmartvideoreg\\.ru|headpharmacy\\.com|healbio\\.ru|healgastro\\.com|healing-dysplasia\\.ru|healmytrauma\\.info|healthhacks\\.ru|heeha\\.net|hem\\.passagen\\.se|hentai-manga\\.porn|heroero\\.com|hexometer\\.com|hifidesign\\.ru|hilaryblog\\.top|hill-accent-withdraw-sentiment\\.info|himandmall\\.xyz|hit-kino\\.ru|hitree\\.shop|hitsbox\\.info|hiwibyh\\.bugs3\\.com|hiwpro\\.xyz|hkdiiohi\\.skyrock\\.com|hkjrsale\\.xyz|hmmm\\.cz|hmywwogw\\.bloger\\.index\\.hr|hobild\\.net|hol\\.es|holiday-shop\\.ru|holidaypics\\.org|holistickenko\\.com|holodkovich\\.com|home\\.myplaycity\\.com|homeafrikalike\\.tk|homedo\\.fabpage\\.com|homeinns\\.com|homelygarden\\.com|homemade\\.gq|homemypicture\\.tk|honesty-homemade-grizzly-humanlike\\.com|hongfanji\\.com|hoporno\\.com|horoshieokna\\.com|host-protection\\.com|hostcritique\\.com|hoste\\.octopis\\.com|hostiman\\.ru|hosting-tracker\\.com|hostingclub\\.lk|hostsshop\\.ru|hotblognetwork\\.com|hotdl\\.in|hotspot\\.ipb\\.co\\.id|hottour\\.com|hotwatersdamps\\.com|houdom\\.net|housedesigning\\.ru|housediz\\.com|housekuba\\.org|housemilan\\.ru|houseofgaga\\.ru|houseofrose\\.com|houston-vikings\\.com|how-i-build-website\\.review|how-i-promote-website\\.review|how-to-buy-bitcoin\\.club|how-to-buy-bitcoin\\.stream|how-to-buy-bitcoins-cheap\\.party|how-to-buy-bitcoins-cheap\\.review|how-to-buy-bitcoins-cheap\\.stream|how-to-buy-bitcoins-cheap\\.trade|how-to-buy-bitcoins\\.stream|how-to-buy-bitcoins\\.trade|how-to-earn-quick-money\\.com|how-to-promote-website\\.faith|how-to-promote-website\\.review|howlongdoestizanidinestayinyoursystem\\.blogspot\\.com|howmuchdoestizanidinecost\\.blogspot\\.com|howopen\\.ru|howtostopreferralspam\\.com|howtostopreferralspam\\.eu|hoztorg-opt\\.ru|hplaserjetpdriver8y\\.pen\\.io|hptwaakw\\.blog\\.fc2\\.com|hrtonline\\.xyz|hscsscotland\\.com|hseipaa\\.kz|hsoutdoor\\.com|hspline\\.com|https-legalrc\\.biz|hugblog\\.xyz|huhn\\.altervista\\.org|hulfingtonpost\\.com|hully\\.altervista\\.org|humanorightswatch\\.org|hundejo\\.com|huntdown\\.info|husky-shop\\.cz|hustoon\\.over-blog\\.com|hvd-store\\.com|hydra-2019\\.ru|hydra-2020\\.online|hydra-2020\\.ru|hydra-centr\\.fun|hydra-dealer\\.com|hydra-guide\\.org|hydra-new\\.online|hydra-onion-faq\\.com|hydra-pc\\.com|hydra-shop\\.org|hydra-site\\.ru|hydra-slon\\.net|hydra-vhod2020\\.com|hydra-zerkalo20\\.com|hydra\\.online|hydra1717\\.com|hydra2\\.market|hydra2020\\.top|hydra2020gate\\.com|hydra2020market\\.com|hydra2020onion\\.com|hydra2020ru\\.com|hydra2020zerkala\\.com|hydra2020zerkalo\\.com|hydra20onion\\.com|hydra20online\\.com|hydra20original\\.com|hydra2use\\.com|hydra2zahod\\.com|hydraena\\.com|hydrahow\\.com|hydrahudra\\.com|hydraland\\.net|hydramarket2020\\.com|hydramirror2020\\.com|hydranten\\.net|hydraonion2019\\.net|hydrarusmarket\\.com|hydraruz-2020\\.com|hydraruzonion2020\\.com|hydraruzonionx\\.ru|hydraruzxpnew4af\\.com\\.co|hydraruzxpnew4af\\.ink|hydraruzxpnew4aff\\.ru|hydraruzxpwnew4afonion\\.com|hydraulicoilcooler\\.net|hydrauliczny\\.com|hydravizoficial\\.info|hydrazerkalo2019\\.net|hydrazerkalo2020\\.com|hydropump\\.su|hyip-zanoza\\.me|hyipmanager\\.in|i-spare\\.ru|ialgramer\\.shop|iamsport\\.org|ib-homecredit\\.ru|ib-rencredit\\.ru|iblogpress\\.xyz|iceton\\.net|ico\\.re|ictizanidinehcl4mg\\.blogspot\\.com|idc\\.com\\.ua|idealtits\\.net|ideayz\\.com|idegenvezeto\\.eu|ideibiznesa2015\\.ru|ieeeoutlet\\.xyz|ifirestarter\\.ru|ifmo\\.ru|igadgetsworld\\.com|igamingtop\\.com|igru-xbox\\.net|ilikevitaly\\.com|illagedusexe\\.com|ilmen\\.net|iloveitaly\\.ro|iloveitaly\\.ru|ilovevitaly\\.co|ilovevitaly\\.com|ilovevitaly\\.info|ilovevitaly\\.org|ilovevitaly\\.ro|ilovevitaly\\.ru|ilovevitaly\\.xyz|imediadesk\\.com|iminent\\.com|immigrational\\.info|immobiliaremassaro\\.com|immobilieralgerie\\.net|imperia31\\.ru|imperiafilm\\.ru|impotentik\\.com|impresagaia\\.it|in-mostbet\\.ru|in-sto\\.ru|inbabes\\.sexushost\\.com|inboxdollars\\.com|incanto\\.in\\.ua|incitystroy\\.ru|incomekey\\.net|incoonline\\.xyz|increasewwwtraffic\\.info|indetiske\\.ya\\.ru|indo-export\\.ru|inet-shop\\.su|infazavr\\.ru|infektsii\\.com|infobabki\\.ru|infodocsportal\\.com|infogame\\.name|infokonkurs\\.ru|inform-ua\\.info|ingramreed\\.xyz|inmoll\\.com|innodgfdriverhm\\.aircus\\.com|insider\\.pro|installspartners\\.com|instasexyblog\\.com|insultu-net\\.ru|intelhdgraphicsgtdrive6w\\.metroblog\\.com|interferencer\\.ru|interfucks\\.net|intermesh\\.net|internet-apteka\\.ru|intex-air\\.ru|intimchats\\.ru|intimver\\.3dgayxxx\\.com|invest-pamm\\.ru|investingclub\\.ru|investpamm\\.ru|investsuccess\\.org|invivo\\.hu|inzn\\.ru|io9\\.com|ipod-app-reviews\\.com|ipostroika\\.ru|iqoption-bin\\.com|iqoption\\.com|iqoption\\.pro|iradiology\\.ru|iridsale\\.xyz|ishgetadsincome\\.info|isistaylorporn\\.info|iskalko\\.ru|iskussnica\\.ru|isotoner\\.com|ispaniya-costa-blanca\\.ru|istanbulit\\.com|istizanidineacontrolledsubstance\\.blogspot\\.com|istizanidineanarcoticdrug\\.blogspot\\.com|istizanidineanopiate\\.blogspot\\.com|istizanidinelikexanax\\.blogspot\\.com|istock-mebel\\.ru|it-max\\.com\\.ua|it-worlds\\.com|itbc\\.kiev\\.ua|itrevolution\\.cf|itronics\\.ca|itsdp3\\.com|ivegetadsincome\\.info|iyfsearch\\.com|izamorfix\\.ru|izhevsk\\.xrus\\.org|izhevskjob\\.xyz|izhstrelok\\.ru|izi24\\.ru|j-times\\.ru|jabug\\.xyz|jacblog\\.xyz|jackonline\\.store|janemill\\.xyz|janettabridal\\.com|japfm\\.com|jasonpartington\\.com|jav-fetish\\.com|jav-fetish\\.site|jav-idol\\.com|javatex\\.co\\.id|javcoast\\.com|javlibrary\\.cc|jaxcube\\.info|jazzstyle4us\\.com|jeffbullas\\.xyz|jennyfire\\.ru|jikem\\.com|jintub\\.com|jjbabskoe\\.ru|job-opros\\.ru|job-prosto\\.ru|jobfree24\\.pl|jobgirl24\\.ru|jobius\\.com\\.ua|johnnyhaley\\.top|joinandplay\\.me|joingames\\.org|josephineblog\\.top|journalhome\\.com|joyceblog\\.top|joycee\\.xyz|judyandsimon\\.com|juliadiets\\.com|juliaworld\\.net|jumkite\\.com|justkillingti\\.me|justprofit\\.xyz|jweber\\.ru|jwss\\.cc|jyrxd\\.com|kaac\\.ru|kabbalah-red-bracelets\\.com|kabinet-5ka\\.ru|kabinet-alfaclick\\.ru|kabinet-binbank\\.ru|kabinet-card-5ka\\.ru|kabinet-click-alfabank\\.ru|kabinet-esia-gosuslugi\\.ru|kabinet-faberlic\\.ru|kabinet-gosuslugi\\.ru|kabinet-ipoteka-domclick\\.ru|kabinet-karta-5ka\\.ru|kabinet-lk-megafon\\.ru|kabinet-lk-rt\\.ru|kabinet-login-mts\\.ru|kabinet-mil\\.ru|kabinet-mos\\.ru|kabinet-my-beeline\\.ru|kabinet-my-pochtabank\\.ru|kabinet-nalog\\.ru|kabinet-online-bm\\.ru|kabinet-online-open\\.ru|kabinet-online-rsb\\.ru|kabinet-online-rshb\\.ru|kabinet-online-sberbank\\.ru|kabinet-online-sovcombank\\.ru|kabinet-online-vtb\\.ru|kabinet-pfr\\.ru|kabinet-pfrf\\.ru|kabinet-platon\\.ru|kabinet-qiwi\\.ru|kabinet-tele2\\.ru|kabinet-tinkoff\\.ru|kabinet-tricolor\\.ru|kabinet-ttk\\.ru|kabinet-vtb24\\.ru|kaircm\\.shop|kakablog\\.net|kakadu-interior\\.com\\.ua|kakworldoftanks\\.ru|kalb\\.ru|kambasoft\\.com|kamin-sam\\.ru|kamorel\\.com|kanakox\\.com|karachev-city\\.ru|karadene\\.com|karapuz\\.org\\.ua|karusel-market\\.ru|katjimej\\.blog\\.fc2\\.com|katrd\\.xyz|katushka\\.net|kaz\\.kz|kazan\\.xrus\\.org|kazka\\.ru|kazlenta\\.kz|kazrent\\.com|kellyonline\\.xyz|kendrablog\\.online|kenyagoods\\.xyz|kerch\\.site|ketrzyn\\.pl|kevblog\\.top|kevinsnow\\.online|kexihao\\.xyz|keywords-monitoring-success\\.com|keywords-monitoring-your-success\\.com|kharkov\\.ua|kharlov\\.ua|kidd\\.reunionwatch\\.com|kierowca-praca\\.pl|kiev\\.ua|kimblog\\.top|kinnarimasajes\\.com|kino-filmi\\.com|kino-fun\\.ru|kino-key\\.info|kino2018\\.cc|kinobaks\\.com|kinobum\\.org|kinoflux\\.net|kinohit1\\.ru|kinopolet\\.net|kinosed\\.net|kinostar\\.online|kinotorka\\.ru|kiprinform\\.com|kiwe-analytics\\.com|kiwi237au\\.tk|kiyany-za-spravedluvist\\.com\\.ua|kletkimehan\\.ru|klfd\\.net|kndxbkdx\\.bloger\\.index\\.hr|knigonosha\\.net|kochanelli\\.com|kolcasale\\.xyz|koleso24\\.com\\.ua|kollekcioner\\.ru|kolotiloff\\.ru|komp-pomosch\\.ru|komputernaya-pomosh-moscow\\.ru|komputers-best\\.ru|komukc\\.com\\.ua|kongoultry\\.net|konkursov\\.net|koopilka\\.com|koptims\\.tiu\\.ru|koronirealestate\\.gr|kosova\\.de|kosunnyclub\\.com|kotaku\\.com|kozhakoshek\\.com|kozhasobak\\.com|kozhniebolezni\\.com|kpcconline\\.xyz|krafte\\.ru|krasivoe-hd\\.com|krasivoe-hd\\.net|krasnodar-avtolombard\\.ru|krasnodar\\.xrus\\.org|krasota-zdorovie\\.pw|krasota\\.ru|kredutu\\.com\\.ua|kredytbank\\.com\\.ua|kruiz-sochi\\.ru|krumble-adsde\\.info|krumble-adsen\\.info|krumble-adsic\\.info|krumbleent-ads\\.info|krynica\\.info|ktotut\\.net|kumuk\\.info|kupit-adenu\\.ru|kursy-ege\\.ru|kustanay\\.kz|kvartir-remont\\.biz|kvartira-sutochno\\.com|kvartiry-remont\\.ucoz\\.ru|kw21\\.org|l2soft\\.eu|la-fa\\.ru|labguamec\\.online|labplus\\.ru|labvis\\.host\\.sk|ladov\\.ru|lafppshop\\.xyz|laitrcus\\.online|lakiikraski\\.ru|lalalove\\.ru|lambreshop\\.xyz|laminat\\.com\\.ua|lampokrat\\.ws|lanasshop\\.ru|landliver\\.org|landoftracking\\.com|languagecode\\.com|lankarns\\.com|laparfumotec\\.com|lapitec\\.eu|laptop-4-less\\.com|laptoper\\.net|larchik\\.net|larutti\\.ru|laudit\\.ru|law-check-eight\\.xyz|law-check-nine\\.xyz|law-check-seven\\.xyz|law-check-two\\.xyz|law-enforcement-aa\\.xyz|law-enforcement-bb\\.xyz|law-enforcement-bot-aa\\.xyz|law-enforcement-bot-bb\\.xyz|law-enforcement-bot-cc\\.xyz|law-enforcement-bot-dd\\.xyz|law-enforcement-bot-ee\\.xyz|law-enforcement-bot-ff\\.xyz|law-enforcement-bot-hh\\.xyz|law-enforcement-bot-ii\\.xyz|law-enforcement-cc\\.xyz|law-enforcement-check-eight\\.xyz|law-enforcement-check-five\\.xyz|law-enforcement-check-four\\.xyz|law-enforcement-check-nine\\.xyz|law-enforcement-check-one\\.xyz|law-enforcement-check-six\\.xyz|law-enforcement-check-three\\.xyz|law-enforcement-check-two\\.xyz|law-enforcement-dd\\.xyz|law-enforcement-ee\\.xyz|law-enforcement-eight\\.xyz|law-enforcement-ff\\.xyz|law-enforcement-five\\.xyz|law-enforcement-four\\.xyz|law-enforcement-gg\\.xyz|law-enforcement-hh\\.xyz|law-enforcement-one\\.xyz|law-enforcement-seven\\.xyz|law-enforcement-three\\.xyz|law-enforcement-two\\.xyz|law-five\\.xyz|law-four\\.xyz|law-one\\.xyz|law-six\\.xyz|law-three\\.xyz|law-two\\.xyz|lawrenceblog\\.online|laxdrills\\.com|layola\\.biz\\.tc|lazy-z\\.com|lcecshop\\.xyz|leadwayau\\.com|leboard\\.ru|lebowmall\\.xyz|ledalfa\\.by|leddjc\\.net|ledis\\.top|ledpolice\\.ru|ledx\\.by|leeboyrussia\\.com|legalrc\\.biz|lego4x4\\.ru|lenvred\\.org|leon-official\\.site|lernur\\.net|lerporn\\.info|leto-dacha\\.ru|letolove\\.ru|letsgotofriday\\.com|levaquin750mg\\.blogspot\\.com|lezbiyanki\\.net|lflash\\.ru|li-er\\.ru|lida-ru\\.com|lider82\\.ru|life\\.biz\\.ua|lifebyleese\\.com|lifespeaker\\.ru|ligastavok-in\\.ru|light\\.ifmo\\.ru|lighthearteds\\.shop|likesdesign\\.com|lilishopstogether\\.com|lindsayblog\\.online|linerdrilling\\.com|link\\.web-list\\.xyz|lipidofobia\\.com\\.br|liquimondo\\.com|lirunet\\.ru|lisque\\.batcave\\.net|littleberry\\.ru|live-sexchat\\.ru|live-xbet\\.com|livefixer\\.com|liveinternet\\.ro|liveinternet\\.ru|livejournal\\.top|livia-pache\\.ru|livingroomdecoratingideas\\.website|livingsimply\\.com|lk-gosuslugi\\.ru|lk-lk-rt\\.ru|llastbuy\\.ru|lmrauction\\.com|loadopia\\.com|local-seo-for-multiple-locations\\.com|login-tinkoff\\.ru|loginduepunti\\.it|logo-all\\.ru|lol-smurfs\\.com|lolz\\.guru|lolzteam\\.online|lolzteam\\.org|lomb\\.co|lombardfinder\\.ru|lombia\\.co|lombia\\.com|lomza\\.info|londonstratford\\.co\\.uk|lookover\\.ru|lost-alpha\\.ru|lotoflotto\\.ru|loveorganic\\.ch|low-format\\.ru|lowpricesiterx\\.com|lsex\\.xyz|lsitenonrepeat\\.com|luckybull\\.io|luckyshop\\.net\\.ua|lukoilcard\\.ru|lumb\\.co|lutherstable\\.org|luton-invest\\.ru|luxmagazine\\.cf|luxup\\.ru|luxurybet\\.ru|m-google\\.xyz|m\\.ok\\.ru|m1media\\.net|macresource\\.co\\.uk|madisonclothingny\\.com|madjonline\\.xyz|madot\\.onlinewebshop\\.net|mafcards\\.ru|magazintiande\\.ru|magda-gadalka\\.ru|magento-crew\\.net|magicart\\.store|magicdiet\\.gq|magnetic-bracelets\\.ru|maigralr\\.site|mail\\.allnews24\\.in|mainhunter\\.com|mainlinehobby\\.net|make-money-online\\.com|makedo\\.ru|makemoneyonline\\.com|makeprogress\\.ga|makler\\.org\\.ua|maladot\\.com|malbgoods\\.xyz|malls\\.com|maltadailypost\\.com|mamidushop\\.xyz|mamylik\\.ru|manimpotence\\.com|manipulyator-peterburg\\.ru|manonstore\\.xyz|manualterap\\.roleforum\\.ru|manwang\\.net|maofengjx\\.com|marathonbet-in\\.ru|marblestyle\\.ru|marcogrup\\.com|maridan\\.com\\.au|maridan\\.com\\.ua|marihome\\.online|marinetraffic\\.com|marjorieblog\\.online|marketland\\.ml|marktforschung-stuttgart\\.com|marmitaco\\.cat|martinahome\\.xyz|martlinker\\.com|massage-info\\.nl|masserect\\.com|master-muznachas\\.ru|masterseek\\.com|mastershef\\.club|masturbate\\.co\\.uk|mathoutlet\\.xyz|matomete\\.net|matras\\.space|mattgibson\\.us|mature\\.free-websites\\.com|max-apprais\\.com|maximilitary\\.ru|maxinesamson\\.top|maxthon\\.com|maxxximoda\\.ru|mazda-roadsters\\.com|mbiologi\\.ru|mebel-alait\\.ru|mebel-arts\\.com|mebel-ekb\\.com|mebel-iz-dereva\\.kiev\\.ua|mebelcomplekt\\.ru|mebeldekor\\.com\\.au|mebeldekor\\.com\\.ua|meblieco\\.com|med-dopomoga\\.com|med-recept\\.ru|med-zdorovie\\.com\\.au|med-zdorovie\\.com\\.ua|medanestesia\\.ru|medbrowse\\.info|medcor-list\\.ru|medi-fitt\\.hu|medic-al\\.ru|medicaltranslate\\.ru|medicinacom\\.ru|medicineseasybuy\\.com|medicovi\\.com|medictube\\.ru|medispainstitute\\.com\\.au|medkletki\\.ru|medkritika\\.ru|medmajor\\.ru|medosmotr-ufa\\.ru|meds-online24\\.com|medtherapy\\.ru|meduza-consult\\.ru|meendo-free-traffic\\.ga|megaapteka\\.ru|megakino\\.net|megalit-d\\.ru|megapolis-96\\.ru|megatkani\\.ru|megavolt\\.net\\.ua|melbet-in\\.ru|melissahome\\.top|members\\.ghanaweb\\.com|memovn\\.com|menhealed\\.net|mercanmall\\.xyz|mere\\.host\\.sk|mericanmopedstore\\.com|meriton\\.ru|meroyharte\\.top|mesto-x\\.com|metallo-konstruktsii\\.ru|metallosajding\\.ru|metarip\\.ru|metaxalonevstizanidine\\.blogspot\\.com|meteocast\\.net|meuikcr\\.online|mex-annushka\\.ru|mhp\\.su|mhrdmall\\.xyz|miaxxx\\.com|micasainvest\\.com|michellblog\\.online|microsearch\\.ru|microsoftportal\\.net|midnight\\.im|mielec\\.pl|mifepriston\\.net|migente\\.com|migera\\.net|migronis\\.com|mikozstop\\.com|mikrobiologies\\.ru|mikrocement\\.com\\.ua|mikrozaim\\.site|mikrozaym2you\\.ru|minecraft-neo\\.ru|minecraft-rus\\.org|minegam\\.com|minghaimuyuan\\.net|mini\\.7zap\\.com|miningblack\\.net|minyetki\\.ru|mir-betting\\.ru|mir-business-24\\.ru|mir-limuzinov\\.ru|mirfairytale\\.ru|mirmedinfo\\.ru|mirobuvi\\.com\\.au|mirobuvi\\.com\\.ua|mirtorrent\\.net|mirzonru\\.net|misselle\\.ru|mister-shop\\.com|mitrasound\\.ru|mixed-wrestling\\.ru|mksoap\\.ru|mksport\\.ru|mmdoors\\.ru|mmm\\.lc|mmm\\.sb|mmog-play\\.ru|mmoguider\\.ru|mnogabukaff\\.net|mobicover\\.com\\.ua|mobile\\.ok\\.ru|mobilemedia\\.md|mobisport\\.ru|mobot\\.site|mobplayer\\.net|mobplayer\\.ru|mockupui\\.com|modabutik\\.ru|modforwot\\.ru|modnie-futbolki\\.net|moe1\\.ru|moesonce\\.com|moi-glazki\\.ru|moinozhki\\.com|moiragracie\\.top|moisadogorod\\.ru|mokrayakiska\\.com|mole\\.pluto\\.ro|monarhs\\.info|monetizationking\\.net|money-every-day\\.com|money-for-placing-articles\\.com|money7777\\.info|moneymaster\\.ru|moneytop\\.ru|moneyzzz\\.ru|monicablog\\.xyz|monitorwebsitespeed\\.com|moomi-daeri\\.com|moon\\.market|moonci\\.ru|more-letom\\.ru|morf\\.snn\\.gr|morlat\\.altervista\\.org|moroccosurfadventures\\.com|moscow-clining\\.ru|moscow-region\\.ru|moscow\\.xrus\\.org|mosdverka\\.ru|mosputana\\.info|mosputana\\.top|mosrif\\.ru|mossiemckenzie\\.shop|mossmesi\\.com|most-kerch\\.org|most\\.gov\\.iq|mostantikor\\.ru|mostbet-285\\.com|mostbet-original\\.ru|mostcool\\.top|mostorgnerud\\.ru|motion-interactive\\.com|mototsikl\\.org|mountainstream\\.ms|moy-dokument\\.com|moy-evroopt\\.ru|moyakuhnia\\.ru|moyaskidka\\.ru|moyaterapiya\\.ru|moygorod-online\\.ru|moyparnik\\.com|mp3films\\.ru|mpftpupload\\.com|mrbojikobi4\\.biz|mrcsa\\.com\\.au|mriyadh\\.com|mrmoneymustache\\.com|mrt-info\\.ru|mrwhite\\.biz|msk-diplomat\\.com|msk-sprawka\\.com|mtras\\.xyz|mtsguru\\.ru|mug-na-chas-moscow\\.ru|muizre\\.ru|mukis\\.ru|mundoaberrante\\.com|muscle-factory\\.com\\.au|muscle-factory\\.com\\.ua|music\\.utrolive\\.ru|musicas\\.baixar-musicas-gratis\\.com|musichallaudio\\.ru|musicprojectfoundation\\.com|musicstock\\.me|musicvidz\\.ru|muz-baza\\.net|muz-shoes\\.ru|muznachas-service\\.ru|muztops\\.ru|mvmagoods\\.xyz|mwductwork\\.com|my-bc\\.ru|my\\.opera\\.com|mybestoffers\\.club|myborder\\.ru|mybuh\\.kz|mycaf\\.it|mycheaptraffic\\.com|mycollegereview\\.com|mydirtystuff\\.com|mydoctorok\\.ru|mydownloadengine\\.com|mydownlodablefiles\\.com|myecomir\\.com|myfreemp3\\.eu|myftpupload\\.com|myindospace\\.com|mylida\\.org|myliveblog\\.ru|mypets\\.by|myplaycity\\.com|myprintscreen\\.com|mysexpics\\.ru|mytherealshop\\.com|mytraffic\\.shop|na-telefon\\.biz|na15\\.ru|nacap\\.ru|nachalka21\\.ru|nagdak\\.ru|nakozhe\\.com|nalogovyy-kodeks\\.ru|nancyblog\\.top|nanochskazki\\.ru|nanwar\\.xyz|naobumium\\.info|naphi\\.xyz|naphukete\\.ru|nardulan\\.com|narkologiya-belgorod\\.ru|narkologiya-orel\\.ru|narkologiya-penza\\.ru|narkologiya-peterburg\\.ru|narkologiya-voronezh\\.ru|narkomaniya-stop\\.ru|narosty\\.com|narutonaruto\\.ru|nastroyke\\.net|natali-forex\\.com|nate\\.com|natprof\\.ru|naturalpharm\\.com\\.ua|naval\\.jislaaik\\.com|navek\\.by|nbok\\.net|nbsproject\\.ru|nebbiasale\\.xyz|needtosellmyhousefast\\.com|negral\\.pluto\\.ro|net-profits\\.xyz|netallergy\\.ru|nethouse\\.ru|netlify\\.com|netpics\\.org|nevansk\\.ru|nevapotolok\\.ru|new-apps\\.ru|newagebev\\.com|newbieseoblog\\.online|newsfj\\.net|newsrosprom\\.ru|newstaffadsshop\\.club|newstraveller\\.ru|newstudio\\.tv|nextconseil\\.com|nfocusdriver\\.com|ngps1\\.ru|nhmrcsale\\.xyz|nhsports\\.cl|nicola\\.top|nicolaonline\\.top|niki-mlt\\.ru|nikitsyringedrivelg\\.pen\\.io|ninacecillia\\.top|niuting\\.org|nizniynovgorod\\.dienai\\.ru|nl\\.netlog\\.com|no-rx\\.info|noclegonline\\.info|nomerounddec\\.cf|nonews\\.co|nordstar\\.pro|notaria-desalas\\.com|notebook-pro\\.ru|notfastfood\\.ru|noumeda\\.com|novalskincare\\.net|novgorod\\.xrus\\.org|novosibirsk\\.xrus\\.org|novosti-avto\\.ru|novosti-hi-tech\\.ru|novostic\\.ru|now-hydra2020\\.com|npoet\\.ru|ntdtv\\.ru|nubuilderian\\.info|nucia\\.biz\\.ly|nudepatch\\.net|nudo\\.ca|nufaq\\.com|nullrefer\\.com|nutriwestncahi\\.com|nuup\\.info|nvformula\\.ru|nvkzsale\\.xyz|nwrcz\\.com|nyfinance\\.ml|nyinfo\\.org|o-o-11-o-o\\.com|o-o-6-o-o\\.com|o-o-6-o-o\\.ru|o-o-8-o-o\\.com|o-o-8-o-o\\.ru|o-promyshlennosti\\.ru|o00\\.in|oblismall\\.xyz|obnal\\.org|obnallpro\\.cc|obsessionphrases\\.com|obuv-kupit\\.ru|obyavka\\.org\\.ua|obzor-casino-x\\.online|obzor-casino-x\\.ru|ochistka-stokov\\.ru|odesproperty\\.com|odiabetikah\\.com|odsadsmobile\\.biz|odywpjtw\\.bloger\\.index\\.hr|ofermerah\\.com|offers\\.bycontext\\.com|office-windows\\.ru|office2web\\.com|officedocuments\\.net|offtime\\.ru|ogorodnic\\.com|ok\\.ru|oklogistic\\.ru|okna-systems\\.pro|okno\\.ooo|okoshkah\\.com|okroshki\\.ru|oktube\\.ru|oledonline\\.xyz|olovoley\\.ru|olvanto\\.ru|omega\\.best|omsk\\.xrus\\.org|one-a-plus\\.xyz|one-gear\\.com|onefilms\\.net|onenews24\\.ru|onion20hydra\\.ru|onionhydra\\.net|onionshydra\\.com|online-akbars\\.ru|online-binbank\\.ru|online-hit\\.info|online-intim\\.com|online-mkb\\.ru|online-pharma\\.ru|online-pochtabank\\.ru|online-raiffeisen\\.ru|online-sbank\\.ru|online-templatestore\\.com|online-video-chat\\.ru|online-vostbank\\.ru|online-vtb\\.ru|online-x\\.ru|online\\.ktc45\\.ru|onlinebay\\.ru|onlinedic\\.net|onlinedomains\\.ru|onlinefilmz\\.net|onlineserialy\\.ru|onlinetvseries\\.me|onlinewot\\.ru|onlinewritingjobs17\\.blogspot\\.ru|onload\\.pw|onlyforemont\\.ru|onlythegames\\.com|onlywoman\\.org|oohlivecams\\.com|ooo-gotovie\\.ru|ooo-olni\\.ru|oooh\\.pro|openfrost\\.com|openfrost\\.net|openlibrary\\.org|openmediasoft\\.com|ops\\.picscout\\.com|optitrade24\\.com|optsol\\.ru|oqex\\.io|oracle-patches\\.ru|orakul\\.spb\\.ru|oranga\\.host\\.sk|order-prime-smm-service\\.party|ordernorxx\\.com|orel-reshka\\.net|oren-cats\\.ru|origin-my\\.ru|ororodnik\\.goodbb\\.ru|osb\\.se11\\.ru|osoznanie-narkotikam\\.net|osteochondrosis\\.ru|ostroike\\.org|ostrovtaxi\\.ru|otbelivanie-zubov\\.com|otdbiaxaem-vmeste\\.ru|otdyx-s-komfortom\\.ru|oudallas\\.net|ourtherapy\\.ru|outshop\\.ru|ovirus\\.ru|own-ahrefs\\.com|ownshop\\.cf|owohho\\.com|ozas\\.net|p-business\\.ru|paceform\\.com|pacobarrero\\.com|pageinsider\\.org|paidonlinesites\\.com|painting-planet\\.com|palma-de-sochi\\.ru|palvira\\.com\\.au|palvira\\.com\\.ua|pamjatnik\\.com\\.ua|pammik\\.ru|pamyatnik-spb\\.ru|pamyatnik-tsena\\.ru|pandoshop\\.xyz|paparazzistudios\\.com\\.au|paperwritingservice17\\.blogspot\\.ru|paradontozanet\\.ru|parcsmalls\\.xyz|paretto\\.ru|parking-invest\\.ru|partizan19\\.ru|partnerskie-programmy\\.net|patonsale\\.xyz|paulinho\\.ru|pay\\.ru|paydayonlinecom\\.com|pc-services\\.ru|pechikamini\\.ru|pecmastore\\.xyz|pensplan\\.com|pensplan4u\\.com|penzu\\.xyz|percin\\.biz\\.ly|perfection-pleasure\\.ru|perform-like-alibabaity\\.info|perform-likeism-alibaba\\.info|perimetor\\.ru|perm\\.dienai\\.ru|perm\\.xrus\\.org|perper\\.ru|perso\\.wanadoo\\.es|personalhoro\\.ru|petedrummond\\.com|petroleumgeo\\.com|petrovka-online\\.com|petrushka-restoran\\.ru|petscar\\.ru|pfrf-kabinet\\.ru|pharm--shop\\.ru|phimarshcer\\.online|phimmakinhdi\\.com|phobia\\.us|photo-clip\\.ru|photo\\.houseofgaga\\.ru|photochki\\.com|photokitchendesign\\.com|photorepair\\.ru|php-market\\.ru|physfunc\\.ru|picscout\\.com|picturesmania\\.com|pills24h\\.com|piluli\\.info|pinkduck\\.ga|pinupcasinos\\.ru|pinupcasinos1\\.ru|pinupp1\\.com|pipki\\.pp\\.ua|piratbike\\.ru|pirateday\\.ru|pirelli-matador\\.ru|pisze\\.pisz\\.pl|piter\\.xrus\\.org|piulatte\\.cz|pizdeishn\\.com|pizdeishn\\.net|pizza-imperia\\.com|pizza-tycoon\\.com|pk-pomosch\\.ru|pk-services\\.ru|pkr1hand\\.com|plagscan\\.com|plastweb\\.ru|platesauto\\.com|platinumdeals\\.gr|plohaya-kreditnaya-istoriya\\.ru|plusnetwork\\.com|pochemychka\\.net|podarkilove\\.ru|poddon-moskva\\.ru|podemnik\\.pro|podseka1\\.ru|pogodnyyeavarii\\.gq|pogosh\\.com|pogruztehnik\\.ru|poisk-zakona\\.ru|poiskzakona\\.ru|pokemongooo\\.ml|poker-royal777\\.com|pokupaylegko\\.ru|polcin\\.de|polemikon\\.ru|politika\\.bg|polyana-skazok\\.org\\.ua|pomoc-drogowa\\.cba\\.pl|pony-business\\.com|popads\\.net|popelina\\.com|pops\\.foundation|popugauka\\.ru|popugaychiki\\.com|popular-church-arrow-voucher\\.info|popup-fdm\\.xyz|popup-hgd\\.xyz|popup-jdh\\.xyz|porn-video-chat\\.ru|porn-w\\.org|porndl\\.org|pornhive\\.org|pornhub-forum\\.ga|pornhub-forum\\.uni\\.me|pornhub-ru\\.com|pornhubforum\\.tk|porno-asia\\.com|porno-chaman\\.info|porno-dojki\\.net|porno-gallery\\.ru|porno-play\\.net|porno-raskazy\\.ru|porno-transsexuals\\.ru|porno-video-chati\\.ru|porno2xl\\.net|pornobest\\.su|pornoblood\\.com|pornobrazzers\\.biz|pornodojd\\.ru|pornoelita\\.info|pornofiljmi\\.com|pornoforadult\\.com|pornofoto\\.org|pornogig\\.com|pornohd1080\\.online|pornokajf\\.com|pornoklad\\.net|pornoklad\\.ru|pornokorol\\.com|pornonik\\.com|pornophoto\\.xyz|pornoplen\\.com|pornorasskazy\\.net|pornosemki\\.info|pornoslave\\.net|pornotubexxx\\.name|porodasobak\\.net|portal-eu\\.ru|portnoff\\.od\\.au|portnoff\\.od\\.ua|poshiv-chehol\\.ru|positive2b\\.ru|pospektr\\.ru|postclass\\.com|posteezy\\.xyz|potolokelekor\\.ru|povodok-shop\\.ru|powitania\\.pl|pozdravleniya-c\\.ru|pozdrawleniya\\.com|pozdrawleniya\\.ru|pozvonim\\.com|pp-budpostach\\.com\\.ua|pravoholding\\.ru|predmety\\.in\\.ua|prezidentshop\\.ru|priceg\\.com|pricheskaonline\\.ru|pricheski-video\\.com|primfootball\\.com|primoblog\\.xyz|princeadvantagesales\\.com|print-technology\\.ru|printie\\.com|printingpeach\\.com|priora-2\\.com|privatbank46\\.ru|private-service\\.best|privatov-zapisi\\.ru|privhosting\\.com|prizesk\\.com|prizrn\\.site|prlog\\.ru|pro-okis\\.ru|probenzo\\.com\\.ua|procrafts\\.ru|prodaemdveri\\.com|producm\\.ru|prodvigator\\.au|prodvigator\\.ua|proekt-gaz\\.ru|proekt-mos\\.ru|professionalsolutions\\.eu|professionalwritingservices15\\.blogspot\\.ru|profnastil-moscow\\.ru|proftests\\.net|progressive-seo\\.com|prohoster\\.info|prointer\\.net\\.au|prointer\\.net\\.ua|projectforte\\.ru|projefrio\\.com\\.br|prokotov\\.com|prom23\\.ru|prombudpostach\\.com\\.ua|promodj\\.com|promoforum\\.ru|promoteapps\\.online|promotion-for99\\.com|pron\\.pro|pronekut\\.com|proposal-engine\\.com|propranolol40mg\\.blogspot\\.com|proquoshop\\.xyz|prosmibank\\.ru|prostitutki-almata\\.org|prostitutki-astana\\.org|prostitutki-belgoroda\\.org|prostitutki-kharkova\\.org|prostitutki-kiev\\.org|prostitutki-novgoroda\\.org|prostitutki-odessa\\.org|prostitutki-rostova\\.org|prostitutki-rostova\\.ru\\.com|prostitutki-tolyatti\\.org|prostitutki-tyumeni\\.org|prostitutki-yaroslavlya\\.org|prostoacc\\.com|psa48\\.ru|psiosale\\.xyz|pskcijdc\\.bloger\\.index\\.hr|psn-card\\.ru|psvita\\.ru|psychocryonics\\.net|ptashkatextil\\.ua|ptfic\\.org|punch\\.media|purchasepillsnorx\\.com|puteshestvennik\\.com|putevka24\\.ru|putitin\\.me|puzo2arbuza\\.ru|puzzleweb\\.ru|pyrodesigns\\.com\\.au|q-moto\\.ru|qcstrtvt\\.bloger\\.index\\.hr|qexyfu\\.bugs3\\.com|qitt\\.ru|qoinex\\.top|qtrstar\\.xyz|qualitymarketzone\\.com|quick-seeker\\.com|quickchange\\.cc|quit-smoking\\.ga|qwarckoine\\.com|qwesa\\.ru|qxnr\\.net|r-control\\.ru|rabot\\.host\\.sk|rabotaetvse\\.ru|rachelblog\\.online|radiogambling\\.com|rainbirds\\.ru|ranedaly\\.net|rangapoker\\.com|rangjued\\.com|rank-checker\\.online|rankchecker\\.online|ranking2017\\.ga|rankings-analytics\\.com|ranksays\\.com|rankscanner\\.com|ranksignals\\.com|ranksonic\\.com|ranksonic\\.info|ranksonic\\.net|ranksonic\\.org|rapevideosmovies\\.com|rapidgator-porn\\.ga|rapidhits\\.net|rapidsites\\.pro|raschtextil\\.com\\.ua|rasteniya-vs-zombi\\.ru|ratraiser\\.online|rattan\\.co\\.ua|raymondblog\\.top|razamicroelectronics\\.com|razborka-skoda\\.org\\.ua|rb-str\\.ru|rcb101\\.ru|rczhan\\.com|real-time-analytics\\.com|realnye-otzyvy\\.info|realresultslist\\.com|realting-moscow\\.ru|recinziireale\\.com|recipedays\\.com|recipedays\\.ru|rednise\\.com|redraincine\\.com|refererx\\.com|refpawro\\.xyz|refudiatethissarah\\.info|reginablog\\.top|reginanahum\\.top|regionshop\\.biz|registratciya-v-moskve\\.ru|reklama-i-rabota\\.ru|reklama1\\.ru|reklamnoe\\.agency|reklamuss\\.ru|releshop\\.ru|rembash\\.ru|remedyotc\\.com|remkompov\\.ru|remmling\\.de|remont-comp-pomosh\\.ru|remont-fridge-tv\\.ru|remont-komputerov-notebook\\.ru|remont-kvartirspb\\.com|remont-mobile-phones\\.ru|remont-ustanovka-tehniki\\.ru|remontgruzovik\\.ru|remontvau\\.ru|remote-dba\\.de|remotecomputingservices\\.net|rent2spb\\.ru|rentalmaty\\.kz|replica-watch\\.ru|replicaclub\\.ru|research\\.ifmo\\.ru|resell-seo-services\\.com|resellerclub\\.com|residualforlife\\.com|responsive-test\\.net|respublica-otel\\.ru|resurs-2012\\.ru|retreatia\\.com|reversing\\.cc|revolgc\\.pro|reyel1985\\.webnode\\.fr|rezeptiblud\\.ru|rfavon\\.ru|rfd-split\\.hr|rfesc\\.net|rialp\\.getenjoyment\\.net|richinvestmonitor\\.com|rida\\.tokyo|riedismall\\.xyz|rietisvi\\.co|rightenergysolutions\\.com\\.au|ring4rhino\\.com|ringporno\\.com|rique\\.host\\.sk|risparmiocasa\\.bz\\.it|rkmbonline\\.xyz|robocheck\\.info|robot-forex\\.biz|roleforum\\.ru|roma-kukareku\\.livejournal\\.com|roof-city\\.ru|room-mebel\\.ru|ros-ctm\\.ru|rospromtest\\.ru|rossanasaavedra\\.net|rossmark\\.ru|rostov\\.xrus\\.org|royal-betting\\.net|royal-casino\\.online|royal-casino\\.ru|royal-casinos\\.online|royal-casinos\\.ru|royal-cazino\\.online|royal-cazino\\.ru|royal-investments\\.net|rozalli\\.com|roznica\\.com\\.ua|rp9\\.ru|rrutw\\.com|rspectr\\.com|ru-lk-rt\\.ru|ru-onion\\.com|ru-online-sberbank\\.ru|ruex\\.org\\.ua|rufreechats\\.com|ruhydraru\\.ru|ruinfocomp\\.ru|rulate\\.ru|rumamba\\.com|runetki-online\\.net|runovschool\\.ua|runstocks\\.com|rupolitshow\\.ru|rus-lit\\.com|rus-teh\\.narod\\.ru|ruscams-com\\.ru|ruscopybook\\.com|rusenvironmental\\.net|rusexy\\.xyz|rusoft-zone\\.ru|ruspoety\\.ru|russia-tao\\.ru|russia-today-video\\.ru|russian-postindex\\.ru|russian-translator\\.com|russian-videochats\\.ru|russintv\\.fr|russkie-sochineniya\\.ru|russkoe-zdorovie\\.ru|rustag\\.ru|rutor\\.group|rvtv\\.ru|rxshop\\.md|rybalka-opt\\.ru|s-forum\\.biz|s-luna\\.me|sabaapress\\.com|sabinablog\\.xyz|sack\\.net|sad-torg\\.com\\.ua|sady-urala\\.ru|sahohev\\.000host\\.co\\.uk|saitevpatorii\\.com|sakhboard\\.ru|sale-japan\\.com|saletool\\.ru|saltspray\\.ru|salutmontreal\\.com|samanthablog\\.online|samara-airport\\.com|samara-comfort\\.ru|samchist\\.ru|samlaurabrown\\.top|samo-soznanie\\.ru|samogonius\\.ru|sanatorrii\\.ru|sanjosestartups\\.com|santaren\\.by|santasgift\\.ml|santechnik\\.jimdo\\.com|santehnovich\\.ru|sapaship\\.ru|sarafangel\\.ru|sarahmilne\\.top|saratov\\.xrus\\.org|sarf3omlat\\.com|sashagreyblog\\.ga|saudegoods\\.xyz|sauna-v-ufe\\.ru|sauni-lipetsk\\.ru|sauni-moskva\\.ru|savetubevideo\\.com|savetubevideo\\.info|savne\\.org|sax-sex\\.com|sbdl\\.no|sbornik-zakonov\\.ru|sc-specialhost\\.com|scanner-alex\\.top|scanner-alexa\\.top|scanner-andrew\\.top|scanner-barak\\.top|scanner-brian\\.top|scanner-don\\.top|scanner-donald\\.top|scanner-elena\\.top|scanner-fred\\.top|scanner-george\\.top|scanner-irvin\\.top|scanner-ivan\\.top|scanner-jack\\.top|scanner-jane\\.top|scanner-jess\\.top|scanner-jessica\\.top|scanner-john\\.top|scanner-josh\\.top|scanner-julia\\.top|scanner-julianna\\.top|scanner-margo\\.top|scanner-mark\\.top|scanner-marwin\\.top|scanner-mary\\.top|scanner-nelson\\.top|scanner-olga\\.top|scanner-viktor\\.top|scanner-walt\\.top|scanner-walter\\.top|scanner-willy\\.top|scansafe\\.net|scat\\.porn|scenarii-1-sentyabrya\\.uroki\\.org\\.ua|school-diplomat\\.ru|sciedsale\\.xyz|score-prime-web-service\\.stream|screen-led\\.ru|screentoolkit\\.com|scripted\\.com|sdelai-prosto\\.ru|sdelatmebel\\.ru|sdi-pme\\.com|search-error\\.com|search-helper\\.ru|searchencrypt\\.com|searchlock\\.com|seccioncontrabajo\\.com|secret\\.xn--oogle-wmc\\.com|secretscook\\.ru|security-corporation\\.com\\.ua|securityallianceservices\\.com|see-your-website-here\\.com|seekanvdoo22\\.live|seisasale\\.xyz|seksotur\\.ru|sel-hoz\\.com|selfhotdog\\.com|sell-fb-group-here\\.com|semalt\\.com|semalt\\.net|semalt\\.semalt\\.com|semaltmedia\\.com|semxiu\\.com|senacertificados\\.co|senger\\.atspace\\.co\\.uk|seo-2-0\\.com|seo-b2b\\.com|seo-platform\\.com|seo-services-b2b\\.com|seo-services-wordpress\\.com|seo-smm\\.kz|seo-tips\\.top|seo-traffic\\.xyz|seoanalyses\\.com|seobook\\.top|seocheckupx\\.com|seocheckupx\\.net|seoexperimenty\\.ru|seojokes\\.net|seokicks\\.de|seopub\\.net|seoriseome\\.netlify\\.app|seoservices2018\\.com|serenamall\\.xyz|serialsway\\.ucoz\\.ru|serialsx\\.ru|servemlixo\\.xyz|servisural\\.ru|serw\\.clicksor\\.com|seryeznie-znakomstva\\.ru|setioweb\\.com|sex-dating\\.co|sex-porno\\.site|sex-spying\\.ru|sex-videochats\\.ru|sexkrasivo\\.net|sexpornotales\\.net|sexreliz\\.com|sexreliz\\.net|sexsaoy\\.com|sexuria\\.net|sexvideo-sex\\.com|sexvporno\\.ru|sexwife\\.net|sexy-girl-chat\\.ru|sexyali\\.com|sexyteens\\.hol\\.es|sexytrend\\.ru|sfd-chess\\.ru|shagtomsk\\.ru|shakhtar-doneck\\.ru|shamcisale\\.xyz|shanscasino1\\.ru|share-button\\.xyz|share-buttons-for-free\\.com|share-buttons\\.xyz|sharebutton\\.io|sharebutton\\.net|sharebutton\\.org|sharebutton\\.to|sharemyfile\\.ru|shariki-zuma-lines\\.ru|shcrose\\.com|sheki-spb\\.ru|shemy-vishivki\\.com|shiksabd\\.com|shinikiev\\.com\\.ua|ship-marvel\\.co\\.ua|shisenshop\\.xyz|shisha-swag\\.de|shlyahten\\.ru|shnyagi\\.net|shodanhq\\.com|shop-electron\\.ru|shop-garena\\.ru|shop\\.garena\\.ru\\.com|shop\\.xz618\\.com|shop2hydra\\.com|shop4fit\\.ru|shopfishing\\.com\\.ua|shoppinglocation\\.com|shoppingmiracles\\.co\\.uk|shoprybalka\\.ru|shops-ru\\.ru|shopsellcardsdumps\\.com|shopvilleroyboch\\.com\\.ua|shopwme\\.ru|shtaketniki\\.ru|shtormmall\\.xyz|shulepov\\.ru|sib-kukla\\.ru|sibecoprom\\.ru|sibkukla\\.ru|sideeffectsoftizanidine\\.blogspot\\.com|sign-service\\.ru|signx\\.info|sihugoods\\.xyz|silverage\\.ru|silvergull\\.ru|silvermature\\.net|sim-dealer\\.ru|sim-service\\.net|similarmoviesdb\\.com|simoncinicancertherapy\\.com|simple-share-buttons\\.com|simplepooltips\\.com|sims-sims\\.ru|sinel\\.info|sinestesia\\.host\\.sk|singularwebs\\.net|sinhronperevod\\.ru|siongetadsincome\\.info|sirhoutlet\\.xyz|siritshop\\.xyz|sisiynas\\.ru|site-auditor\\.online|site-speed-check\\.site|site-speed-checker\\.site|site3\\.free-share-buttons\\.com|site5\\.com|siteexpress\\.co\\.il|siteripz\\.net|sitesadd\\.com|sitevaluation\\.com|sitevaluation\\.org|sivs\\.ru|sjmsw\\.net|sk\\.golden-praga\\.ru|ski-centers\\.com|skidku\\.org\\.ua|skinali\\.com|skinali\\.photo-clip\\.ru|sklad-24\\.ru|skladvaz\\.ru|sky-mine\\.ru|skylta\\.com|sladkoevideo\\.com|slashpet\\.com|slavic-magic\\.ru|slavkokacunko\\.de|sledstvie-veli\\.net|slftsdybbg\\.ru|slkrm\\.ru|slomm\\.ru|slonechka\\.ru|sloopyjoes\\.com\\.top|slotron\\.com|slow-website\\.xyz|slujbauborki\\.ru|smailik\\.org|small-game\\.com|small-games\\.biz|smartpet\\.ru|smartphonediscount\\.info|sms2x2\\.ru|smstraf\\.ru|smt4\\.ru|smzt\\.shop|snabs\\.kz|snaiper-bg\\.net|sneakerfreaker\\.com|snegozaderzhatel\\.ru|snip\\.to|snip\\.tw|snjatie-geroinovoy-lomki\\.ru|snomer1\\.ru|snyatie-lomki-v-stacionare\\.ru|soaksoak\\.ru|soblaznu\\.net|soc-econom-problems\\.ru|soc-proof\\.su|socas\\.pluto\\.ro|sochi-3d\\.ru|social-button\\.xyz|social-buttons-aa\\.xyz|social-buttons-aaa\\.xyz|social-buttons-bb\\.xyz|social-buttons-bbb\\.xyz|social-buttons-cc\\.xyz|social-buttons-ccc\\.xyz|social-buttons-dd\\.xyz|social-buttons-ddd\\.xyz|social-buttons-ee\\.xyz|social-buttons-eee\\.xyz|social-buttons-ff\\.xyz|social-buttons-fff\\.xyz|social-buttons-gg\\.xyz|social-buttons-ggg\\.xyz|social-buttons-hh\\.xyz|social-buttons-ii\\.xyz|social-buttons-iii\\.xyz|social-buttons\\.com|social-buttons\\.xyz|social-fun\\.ru|social-s-ggg\\.xyz|social-s-hhh\\.xyz|social-s-iii\\.xyz|social-search\\.me|social-traffic-1\\.xyz|social-traffic-2\\.xyz|social-traffic-3\\.xyz|social-traffic-4\\.xyz|social-traffic-5\\.xyz|social-traffic-6\\.xyz|social-traffic-7\\.xyz|social-vestnik\\.ru|social-widget\\.xyz|socialbookmarksubmission\\.org|socialbutton\\.xyz|socialbuttons\\.xyz|socialine\\.net|socialseet\\.ru|socialtrade\\.biz|sofit-dmd\\.ru|soft-program\\.com|softomix\\.com|softomix\\.net|softomix\\.org|softomix\\.ru|softtor\\.com|softxaker\\.ru|sohoindia\\.net|soki\\.tv|solartek\\.ru|solitaire-game\\.ru|solnplast\\.ru|sonata-arctica\\.wz\\.cz|songoo\\.wz\\.cz|sonnikforme\\.ru|sonyelektronik\\.com|sosdepotdebilan\\.com|sotkal\\.lark\\.ru|soundfrost\\.org|soup\\.io|souvenirua\\.com|sovetogorod\\.ru|sovetskie-plakaty\\.ru|soviet-portal\\.do\\.am|sowhoz\\.ru|soyuzexpedition\\.ru|sp-laptop\\.ru|sp-zakupki\\.ru|space2019\\.top|spacebarnot\\.work|spain-poetry\\.com|spartania\\.com\\.ua|spb-plitka\\.ru|spb-scenar\\.ru|spb\\.ru|spbchampionat\\.ru|special-porn\\.com|specstroy36\\.ru|speedup-my\\.site|spin2016\\.cf|sport-video-obzor\\.ru|sportbetfair\\.com|sportobzori\\.ru|sportwizard\\.ru|spravka130\\.ru|spravkavspb\\.net|spravkavspb\\.work|sprawka-help\\.com|spscmall\\.xyz|spuemonti\\.net|spy-app\\.info|spy-sts\\.com|sqadia\\.com|squarespace\\.top|squidoo\\.com|srecorder\\.com|sribno\\.net|ssn\\.is|sssexxx\\.net|ssve\\.ru|st-komf\\.ru|sta-grand\\.ru|stairliftstrue\\.com|star61\\.de|stardevine\\.com|stariy-baku\\.com|start\\.myplaycity\\.com|startraffic\\.online|startufa\\.ru|startwp\\.org|stat\\.lviv\\.ua|statashop\\.xyz|static\\.seders\\.website|statustroll\\.com|stauga\\.altervista\\.org|stavimdveri\\.ru|steame\\.ru|steelmaster\\.lv|stiralkovich\\.ru|stocktwists\\.com|stoki\\.ru|stoletie\\.ru|stoliar\\.org|stomatologi\\.moscow|stop-nark\\.ru|stop-zavisimost\\.com|store-rx\\.com|strady\\.org\\.ua|strana-krasoty\\.ru|strana-solnca\\.ru|stream-tds\\.com|streetfire\\.net|streetfooduncovered\\.com|streha-metalko\\.si|strigkaomsk\\.ru|stroi-24\\.ru|stroicol\\.net|stroimajor\\.ru|stroiminsk\\.com|stroiminsk\\.org|stromerrealty\\.com|strongholdsb\\.ru|strongtools\\.ga|stroy-matrix\\.ru|stroyalp\\.ru|stroydetali\\.ru|stroyka-gid\\.ru|stroyka47\\.ru|stroymonolit\\.su|studentguide\\.ru|studiofaca\\.com|stuff-about-money\\.com|stuffhydra\\.com|stylecaster\\.top|styro\\.ru|su1ufa\\.ru|success-seo\\.com|suckoutlet\\.xyz|sudachitravel\\.com|sugarkun\\.com|sugvant\\.ru|sundrugstore\\.com|super-seo-guru\\.com|superiends\\.org|supermama\\.top|supermesta\\.ru|supermodni\\.com\\.ua|supernew\\.org|superoboi\\.com\\.ua|superpages\\.com|superslots-casino\\.online|superslots-casino\\.site|superslots-cazino\\.online|superslots-cazino\\.site|superslotz-casino\\.site|superslotz-cazino\\.site|supertraffic\\.xyz|supervesti\\.ru|surflinksmedical\\.com|susanholtphotography\\.com|suzanneboswell\\.top|svadba-teplohod\\.ru|svarbit\\.com|svarog-jez\\.com|svensk-poesi\\.com|svet-depo\\.ru|svetka\\.info|svetlotorg\\.ru|svetoch\\.moscow|svetodiodoff\\.ru|svoimi-rukamy\\.com|svs-avto\\.com|swagbucks\\.com|swaplab\\.io|sweet\\.tv|sygraem\\.com|szansadlarolnikow\\.com\\.pl|t-machinery\\.ru|t-rec\\.su|t3chtonic\\.com|taartstore\\.xyz|tagmeanvice\\.live|taihouse\\.ru|tam-gde-more\\.ru|tamada69\\.com|tammyblog\\.online|targetpay\\.nl|tasteidea\\.com|tastyfoodideas\\.com|tattoo-stickers\\.ru|tattoo33\\.ru|tattooha\\.com|taximytishi\\.ru|tccp\\.xyz|tcenavoprosa\\.ru|tcsinksale\\.xyz|tcyh\\.net|td-33\\.ru|td-abs\\.ru|td-l-market\\.ru|td-perimetr\\.ru|tdbatik\\.com|tds-west\\.ru|teastory\\.co|techart24\\.com|technika-remont\\.ru|technopellet\\.gr|tecspb\\.ru|tedxrj\\.com|tedy\\.su|teedle\\.co|tehngr\\.ru|telegramdownload10\\.com|telesvoboda\\.ru|telfer\\.ru|teman\\.com\\.ua|tennis-bet\\.ru|tentcomplekt\\.ru|teplohod-gnezdo\\.ru|teplokomplex\\.ru|teplolidoma\\.ru|terapist\\.xyz|teresablog\\.top|tesla-audit\\.ru|teslathemes\\.com|test-extra-full-stack-services\\.stream|test-prime-smm-service\\.review|test\\.xyz|texbaza\\.by|texnika\\.com\\.ua|tgsubs\\.com|tgtclick\\.com|thaimassage-slon\\.ru|thaoduoctoc\\.com|the-torrent-tracker\\.blogspot\\.com|the-usa-games\\.blogspot\\.com|the-world\\.ru|theautoprofit\\.ml|thebluenoodle\\.com|thecoral\\.com\\.br|thedownloadfreeonlinegames\\.blogspot\\.com|thedownloadfromwarez\\.blogspot\\.com|thefds\\.net|thegreensociety\\.net|theguardlan\\.com|theheroes\\.ru|thejournal\\.ru|thelotter\\.su|thepokertimer\\.com|therealshop\\.exaccess\\.com|thesensehousehotel\\.com|thesmartsearch\\.net|thewomenlife\\.com|thiegs\\.reco\\.ws|thin\\.me\\.pn|tiandeural\\.ru|tiens2010\\.ru|timeallnews\\.ru|timer4web\\.com|timetorelax\\.biz|timmy\\.by|tip8\\.co|tizanidine4mg\\.blogspot\\.com|tizanidine4mgprice\\.blogspot\\.com|tizanidine4mgstreetprice\\.blogspot\\.com|tizanidine4mgstreetvalue\\.blogspot\\.com|tizanidine4mgtablets\\.blogspot\\.com|tizanidine4mguses\\.blogspot\\.com|tizanidine6mg\\.blogspot\\.com|tizanidineandcipro\\.blogspot\\.com|tizanidineandgabapentin\\.blogspot\\.com|tizanidineandhydrocodone\\.blogspot\\.com|tizanidinecapsules\\.blogspot\\.com|tizanidinecost\\.blogspot\\.com|tizanidinedosage\\.blogspot\\.com|tizanidinedosageforsleep\\.blogspot\\.com|tizanidinedruginteractions\\.blogspot\\.com|tizanidinedrugtest\\.blogspot\\.com|tizanidineduringpregnancy\\.blogspot\\.com|tizanidinefibromyalgia\\.blogspot\\.com|tizanidineformigraines\\.blogspot\\.com|tizanidineforopiatewithdrawal\\.blogspot\\.com|tizanidinehcl2mg\\.blogspot\\.com|tizanidinehcl2mgsideeffects\\.blogspot\\.com|tizanidinehcl2mgtablet\\.blogspot\\.com|tizanidinehcl4mgisitanarcotic\\.blogspot\\.com|tizanidinehcl4mgtab\\.blogspot\\.com|tizanidinehcl4mgtabinfo\\.blogspot\\.com|tizanidinehcl4mgtablet\\.blogspot\\.com|tizanidinehclsideeffects\\.blogspot\\.com|tizanidinehydrochloride2mg\\.blogspot\\.com|tizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com|tizanidineinfo\\.blogspot\\.com|tizanidineingredients\\.blogspot\\.com|tizanidineinteractions\\.blogspot\\.com|tizanidinemusclerelaxant\\.blogspot\\.com|tizanidinenarcotic\\.blogspot\\.com|tizanidineonline\\.blogspot\\.com|tizanidineoral\\.blogspot\\.com|tizanidineorflexeril\\.blogspot\\.com|tizanidinepain\\.blogspot\\.com|tizanidinepills\\.blogspot\\.com|tizanidinerecreationaluse\\.blogspot\\.com|tizanidinerestlesslegsyndrome\\.blogspot\\.com|tizanidineshowupondrugtest\\.blogspot\\.com|tizanidinesideeffects\\.blogspot\\.com|tizanidinesideeffectsweightloss\\.blogspot\\.com|tizanidinesleepaid\\.blogspot\\.com|tizanidinestreetprice\\.blogspot\\.com|tizanidinestreetvalue\\.blogspot\\.com|tizanidineusedfor\\.blogspot\\.com|tizanidinevscyclobenzaprine\\.blogspot\\.com|tizanidinevssoma\\.blogspot\\.com|tizanidinevsvalium\\.blogspot\\.com|tizanidinewithdrawal\\.blogspot\\.com|tizanidinewithdrawalsymptoms\\.blogspot\\.com|tizanidinezanaflex\\.blogspot\\.com|tkanorganizma\\.ru|tksn\\.ru|tocan\\.biz|tocan\\.com\\.ua|tokshow\\.online|toloka\\.hurtom\\.com|tomatis\\.gospartner\\.com|tomck\\.com|tommysautomotivecare\\.com|top-gan\\.ru|top-instagram\\.info|top-kasyna\\.com|top-l2\\.com|top1-seo-service\\.com|top10-online-games\\.com|top10-way\\.com|top250movies\\.ru|top8\\.co|topgurudeals\\.com|topmebeltorg\\.ru|topmira\\.com|toposvita\\.com|topquality\\.cf|topseoservices\\.co|topshef\\.ru|topvidos\\.ru|tor\\.vc|torobrand\\.com|torontoplumbinggroup\\.com|torospa\\.ru|torrentgamer\\.net|torrentred\\.games|torrents-tracker\\.com|torrnada\\.ru|torture\\.ml|totppgoods\\.xyz|touchmods\\.fr|tourburlington\\.com|tovaroboom\\.vast\\.ru|tpu\\.ru|track-rankings\\.online|tracker24-gps\\.ru|trade365\\.org|traderzplanet\\.co\\.in|trafaret74\\.ru|trafers\\.com|traffic-cash\\.xyz|traffic-paradise\\.org|traffic2cash\\.net|traffic2cash\\.org|traffic2cash\\.xyz|traffic2money\\.com|trafficbot\\.life|trafficbot4free\\.xyz|trafficdrive\\.club|trafficgenius\\.xyz|trafficmonetize\\.org|trafficmonetizer\\.org|trafficstudio\\.club|traffictomoney\\.com|trahvid\\.com|tramadolandtizanidine\\.blogspot\\.com|transit\\.in\\.ua|transsex-videochat\\.ru|traphouselatino\\.net|travel-semantics\\.com|travgoods\\.xyz|traxdom\\.ru|trex-casino\\.com|trex\\.casino|tri-slona\\.org|trick-negotiation-cup-wonder\\.com|tricolortv-online\\.com|trieste\\.io|trion\\.od\\.au|trion\\.od\\.ua|triumf-realty\\.ru|trk-4\\.net|trubywriting\\.com|truck-spite-lawyer-activity\\.top|truebeauty\\.cc|tsatu\\.edu\\.ua|tsc-koleso\\.ru|tsstcorpcddvdwshbbdriverfb\\.aircus\\.com|ttechno\\.net|tuberkulezanet\\.ru|tuberkuleznik\\.ru|tudusale\\.xyz|tula\\.mdverey\\.ru|tuningdom\\.ru|tupper-posuda\\.ru|tupper-shop\\.ru|turbo-suslik\\.org|turist-strani\\.ru|turkeyreport\\.tk|turvgori\\.ru|tvand\\.ru|tvfru\\.org|tvgoals\\.tv|tvoystartup\\.ru|twincitiescarservice\\.com|twojebook\\.pl|twsufa\\.ru|twu\\.com\\.ua|tytoona\\.com|tyumen\\.xrus\\.org|u-cheats\\.ru|u17795\\.netangels\\.ru|ua-company\\.ru|ua\\.tc|uaecdsale\\.xyz|uasb\\.ru|ublaze\\.ru|ucanfly\\.ru|ucban\\.xyz|uchebavchehii\\.ru|uchil\\.net|ucoz\\.ru|ucsfstore\\.xyz|ucsol\\.ru|uctraffic\\.com|udav\\.net|ufa\\.dienai\\.ru|ufa\\.xrus\\.org|ufolabs\\.net|uginekologa\\.com|ukrainian-poetry\\.com|ukrcargo\\.com|ukrtvory\\.in\\.ua|ukstmalls\\.xyz|ul-potolki\\.ru|ultimateuninstall\\.com|um-razum\\.ru|umg-stroy\\.ru|umityangin\\.net|undergroundcityphoto\\.com|uni\\.me|unibus\\.su|unimodemhalfduplefw\\.pen\\.io|uniqgen\\.net|unitygame3d\\.com|univerfiles\\.com|unlimitdocs\\.net|unmaroll\\.ya\\.ru|unpredictable\\.ga|upcronline\\.xyz|uptime-alpha\\.net|uptime-as\\.net|uptime-beta\\.net|uptime-delta\\.net|uptime-eu\\.net|uptime-gamma\\.net|uptime-us\\.net|uptime\\.com|uptimebot\\.net|uptimechecker\\.com|ural-buldozer\\.ru|urbanblog\\.shop|urbanchr\\.online|urblog\\.xyz|urccvfmc\\.bloger\\.index\\.hr|urlopener\\.blogspot\\.com\\.au|urlopener\\.com|urlumbrella\\.com|uruto\\.ru|us-america\\.ru|usadacha\\.net|userequip\\.com|uslugi-tatarstan\\.ru|ussearche\\.cf|ustion\\.ru|uterkysale\\.xyz|utrolive\\.ru|uusmsale\\.xyz|uyut-dom\\.pro|uyutmaster73\\.ru|uzpaket\\.com|uzungil\\.com|v-casino\\.fun|v-casino\\.host|v-casino\\.ru|v-casino\\.site|v-casino\\.website|v-casino\\.xyz|v-cazino\\.online|v-cazino\\.ru|vabasa\\.inwtrade\\.com|vaderenergy\\.ru|vadimkravtcov\\.ru|valid-cc\\.com|validccseller\\.com|validus\\.pro|valkiria-tk\\.ru|vanessablog\\.online|vape-x\\.ru|vapmedia\\.org|vapsy\\.com|vardenafil20\\.com|varikozdok\\.ru|vashsvet\\.com|vavada-casino\\.host|vavada-casino\\.top|vavada-cazino\\.host|vavada-cazino\\.site|vavilone\\.com|vbabule\\.net|vbikse\\.com|vc\\.ru|vchulkah\\.net|vduplo\\.ru|veerotech\\.com|vegascosmetics\\.ru|vekzdorov\\.ru|veles\\.shop|velobikestock\\.com|veloland\\.in\\.ua|venta-prom\\.ru|ventelnos\\.com|ventopt\\.by|veronicablog\\.top|vescenter\\.ru|veselokloun\\.ru|vesnatehno\\.com|vesnatehno\\.ru|vesta-lada\\.net|vetbvc\\.ru|vezdevoz\\.com\\.ua|vezuviy\\.su|vgoloveboli\\.net|via-gra\\.webstarts\\.com|viagra-soft\\.ru|viagra\\.pp\\.ua|viagroid\\.ru|viandpet\\.com|viberdownload10\\.com|video--production\\.com|video-chat\\.in|video-girl-online\\.ru|video-hollywood\\.ru|video-woman\\.com|videochat-dating\\.ru|videochat\\.guru|videochat\\.mx|videochat\\.tv\\.br|videochat\\.world|videochaty\\.ru|videofrost\\.com|videofrost\\.net|videokrik\\.net|videos-for-your-business\\.com|videosbox\\.ru|videotop\\.biz|videotuber\\.ru|vidzwap\\.xyz|viel\\.su|vigrx-original\\.ru|viktoria-center\\.ru|vilingstore\\.net|vinsit\\.ru|vip-dom\\.in|vip-parfumeria\\.ru|vipsiterip\\.org|virtchats\\.ru|virtual-love-video\\.ru|virtual-sex-chat\\.ru|virtual-sex-time\\.ru|virtual-sex-videochat\\.ru|virtual-zaim\\.ru|virtualbb\\.com|virus-schutzmasken\\.de|visa-china\\.ru|visa-pasport\\.ru|vita\\.com\\.hr|vitanail\\.ru|viven\\.host\\.sk|vizag\\.kharkov\\.ua|vk-mus\\.ru|vk\\.com|vkak\\.ru|vkonche\\.com|vkontaktemusic\\.ru|vkontarkte\\.com|vksaver-all\\.ru|vksex\\.ru|vladhistory\\.com|vladtime\\.ru|vltai\\.com|vmnmvzsmn\\.over-blog\\.com|vod\\.com\\.ua|vodabur\\.by|vodaodessa\\.com|voditeltrezviy\\.ru|vodkoved\\.ru|volgograd\\.xrus\\.org|volond\\.com|voloomoney\\.com|volume-pills\\.biz|voprosotvet24\\.ru|voronezh\\.xrus\\.org|vostgard\\.com|vostoktrade\\.info|vote-up\\.ru|vozbujdenie\\.com|vpdr\\.pl|vpnhowto\\.info|vrazbor59\\.ru|vriel\\.batcave\\.net|vrnelectro\\.ru|vrnhnmall\\.xyz|vrotike\\.ru|vsdelke\\.ru|vseigru\\.one|vseigry\\.fun|vseprobrak\\.ru|vsesubwaysurfers\\.com|vseuznaem\\.com|vucms\\.com|vulkan-nadengi\\.ru|vulkan-oficial\\.com|vulkanrussia1\\.ru|vykup-avto-krasnodar\\.ru|vykupavto-krasnodar\\.ru|vzheludke\\.com|vzlom-na-zakaz\\.com|vzubah\\.com|vzube\\.com|vzubkah\\.com|w2mobile-za\\.com|w3javascript\\.com|w7s\\.ru|wakeupseoconsultant\\.com|wallabag\\.malooma\\.bzh|wallet-prlzn\\.space|wallinside\\.top|wallpaperdesk\\.info|wallpapers-all\\.com|wallpapers-best\\.com|wallpapersdesk\\.info|wallstore\\.xyz|wandamary\\.online|wapsite\\.me|warmex\\.com\\.ua|warningwar\\.ru|wasabisale\\.xyz|watch-movies\\.ru|wave-games\\.ru|wayfcoin\\.space|wbjm\\.net|wcb\\.su|wdfdocando\\.com|wdss\\.com\\.ua|we-ping-for-youian\\.info|we-ping-for-youic\\.info|web-analytics\\.date|web-betting\\.ru|web-lazy-services\\.review|web-list\\.xyz|web-revenue\\.xyz|web\\.cvut\\.cz|webalex\\.pro|webinstantservice\\.com|webix\\.me|webjam\\.com|weblibrary\\.win|webmaster-traffic\\.com|webmonetizer\\.net|webradiology\\.ru|webs\\.com|website-analytics\\.online|website-analyzer\\.info|website-errors-scanner\\.com|website-services-promotion\\.bid|website-services-promotion\\.review|website-services-promotion\\.stream|website-services-promotion\\.win|website-services-seo\\.bid|website-services-seo\\.stream|website-services-seo\\.win|website-services-smm\\.bid|website-services-smm\\.review|website-services-smm\\.stream|website-services-smm\\.win|website-services\\.review|website-services\\.stream|website-services\\.win|website-speed-check\\.site|website-speed-checker\\.site|website-speed-up\\.site|website-speed-up\\.top|website-stealer-warning-alert\\.hdmoviecams\\.com|websitebottraffic\\.club|websitebottraffic\\.host|websites-reviews\\.com|websocial\\.me|webtherapy\\.ru|weburlopener\\.com|wedding-salon\\.net|weebly\\.com|weekes\\.biz\\.tc|weightatraining\\.com|weightbelts\\.ru|welck\\.octopis\\.com|welcomeauto\\.ru|weprik\\.ru|wetgames\\.ru|wfdesigngroup\\.com|whatistizanidine2mg\\.blogspot\\.com|whatistizanidinehclusedfor\\.blogspot\\.com|whatsappdownload10\\.com|whereiskentoday\\.com|wicivow\\.007h\\.ml|wikes\\.20fr\\.com|williamrobsonproperty\\.com|winx-play\\.ru|witherrom55\\.eklablog\\.fr|wjxmenye\\.com|wmasterlead\\.com|wnoz\\.de|woman-h\\.ru|woman-orgasm\\.ru|woman-tampon\\.ru|womens-journal\\.net|womensplay\\.net|womensterritory\\.ru|wordpress-crew\\.net|wordpresscore\\.com|work-from-home-earn-money-online\\.com|workius\\.ru|workona\\.com|works\\.if\\.ua|world-mmo\\.com|worldgamenews\\.com|worldhistory\\.biz|worldis\\.me|worldlovers\\.ru|worldmed\\.info|worldofbtc\\.com|wormix-cheats\\.ru|wowas31\\.ucoz\\.ru|woweb\\.com\\.ua|wpnull\\.org|wptraffic\\.xyz|wrazilwispolecznie\\.pl|wrc-info\\.ru|writingservices17\\.blogspot\\.ru|wrona\\.it|wstroika\\.ru|wufak\\.com|wurr\\.voila\\.net|ww1943\\.ru|ww2awards\\.info|www-lk-rt\\.ru|www\\.gelendzhic\\.ru|www1\\.free-share-buttons\\.top|wzgyyq\\.com|x-lime\\.com|x-lime\\.net|x-musics\\.com|x-stars\\.ru|x5market\\.ru|xaker26\\.net|xbaboon\\.com|xboxster\\.ru|xexe\\.club|xfire\\.com|xgftnlrt\\.bloger\\.index\\.hr|xion\\.cash|xjrul\\.com|xkaz\\.org|xlolitka\\.com|xmnb\\.net|xn-------53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn--p1ai|xn------6cdbciescapvf0a8bibwx0a1bu\\.xn--90ais|xn-----6kcaacnblni5c5bicdpcmficy\\.xn--p1ai|xn-----6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn--p1ai|xn-----6kcamwewcd9bayelq\\.xn--p1ai|xn-----7kcaaxchbbmgncr7chzy0k0hk\\.xn--p1ai|xn-----7kceclhb4abre1b4a0ccl2fxch1a\\.xn--p1ai|xn-----8kcatubaocd1bneepefojs1h2e\\.xn--p1ai|xn-----clckdac3bsfgdft3aebjp5etek\\.xn--p1ai|xn----7sbabb9a1b7bddgm6a1i\\.xn--p1ai|xn----7sbabhjc3ccc5aggbzfmfi\\.xn--p1ai|xn----7sbabhv4abd8aih6bb7k\\.xn--p1ai|xn----7sbabm1ahc4b2aqff\\.su|xn----7sbabn5abjehfwi8bj\\.xn--p1ai|xn----7sbaphztdjeboffeiof6c\\.xn--p1ai|xn----7sbbpe3afguye\\.xn--p1ai|xn----7sbho2agebbhlivy\\.xn--p1ai|xn----8sbaki4azawu5b\\.xn--p1ai|xn----8sbarihbihxpxqgaf0g1e\\.xn--80adxhks|xn----8sbbjimdeyfsi\\.xn--p1ai|xn----8sbdbjgb1ap7a9c4czbh\\.xn--p1acf|xn----8sbhefaln6acifdaon5c6f4axh\\.xn--p1ai|xn----8sblgmbj1a1bk8l\\.xn----161-4vemb6cjl7anbaea3afninj\\.xn--p1ai|xn----8sbowe2akbcd4h\\.xn--p1ai|xn----8sbpmgeilbd8achi0c\\.xn--p1ai|xn----btbdvdh4aafrfciljm6k\\.xn--p1ai|xn----ctbbcjd3dbsehgi\\.xn--p1ai|xn----ctbfcdjl8baejhfb1oh\\.xn--p1ai|xn----ctbigni3aj4h\\.xn--p1ai|xn----dtbffp5aagjgfm\\.xn--p1ai|xn----ftbeoaiyg1ak1cb7d\\.xn--p1ai|xn----gtbdb0beu1bb8gj\\.xn--p1ai|xn----itbbudqejbfpg3l\\.com|xn----jtbjfcbdfr0afji4m\\.xn--p1ai|xn--78-6kc6akkhn3a3k\\.xn--p1ai|xn--78-6kcmzqfpcb1amd1q\\.xn--p1ai|xn--80aaafbn2bc2ahdfrfkln6l\\.xn--p1ai|xn--80aaajbdbddwj2alwjieei2afr3v\\.xn--p1ai|xn--80aaajkrncdlqdh6ane8t\\.xn--p1ai|xn--80aaaks3bbhabgbigamdr2h\\.xn--p1ai|xn--80aabcsc3bqirlt\\.xn--p1ai|xn--80aanaardaperhcem4a6i\\.com|xn--80ab4aa2g\\.xn--p1ai|xn--80adaggc5bdhlfamsfdij4p7b\\.xn--p1ai|xn--80adgcaax6acohn6r\\.xn--p1ai|xn--80aeahghtf8ac5i\\.xn--p1ai|xn--80aeb6argv\\.xn--p1ai|xn--80aebzmbfeebe\\.xn--p1ai|xn--80ahdheogk5l\\.xn--p1ai|xn--80ahvj9e\\.xn--p1ai|xn--80ajbshivpvn2i\\.xn--p1ai|xn--80ajjbdhgmudixfjc8c5a9df8b\\.xn--p1ai|xn--90acenikpebbdd4f6d\\.xn--p1ai|xn--90acjmaltae3acm\\.xn--p1acf|xn--90adhhccf5aeewt7j\\.xn--p1ai|xn--b1adccayqiirhu\\.xn--p1ai|xn--b1ag5cfn\\.xn--p1ai|xn--b1agm2d\\.net|xn--c1acygb\\.xn--p1ai|xn--d1abj0abs9d\\.in\\.ua|xn--d1aifoe0a9a\\.top|xn--e1aaajzchnkg\\.ru\\.com|xn--e1aahcgdjkg4aeje6j\\.kz|xn--e1agf4c\\.xn--80adxhks|xn--e1aggki3c\\.xn--80adxhks|xn--h1ahbi\\.com\\.ua|xn--hxazdsfy\\.blogspot\\.com|xn--l1aengat\\.xn--p1ai|xn--mhg\\.com|xn--oogle-wmc\\.com|xn--q1a\\.xn--b1aube0e\\.xn--c1acygb\\.xn--p1ai|xnxx-n\\.com|xolodremont\\.ru|xpert\\.com\\.ua|xportvusbdriver8i\\.snack\\.ws|xpresscare\\.ru|xrp-ripple\\.info|xrus\\.org|xsion\\.net|xtraffic\\.plus|xtrafficplus\\.com|xtrafficplus\\.online|xtrafficplus\\.shop|xtrafficplus\\.xyz|xtubeporno\\.net|xvideosbay\\.com|xxart\\.ru|xxx-treker\\.ru|xxxhamster\\.me|xxxtube69\\.com|xxxvideochat\\.ru|xz618\\.com|xzlive\\.com|yaderenergy\\.ru|yaminecraft\\.ru|yeartwit\\.com|yellowstonevisitortours\\.com|yes-com\\.com|yes-do-now\\.com|yhirurga\\.ru|ykecwqlixx\\.ru|ynymnwbm\\.bloger\\.index\\.hr|yodse\\.io|yoga4\\.ru|youandcredit\\.ru|youbloodyripper\\.com|youdesigner\\.kz|yougame\\.biz|yougetsignal\\.com|youghbould\\.wordpress\\.com|youhack\\.info|youjizz\\.vc|youporn-forum\\.ga|youporn-forum\\.uni\\.me|youporn-ru\\.com|your-good-links\\.com|your-tales\\.ru|yourdesires\\.ru|youresponsive\\.com|yourothersite\\.com|yoursearch\\.me|yourserverisdown\\.com|yoursite\\.com|yourtraffic\\.club|youtoner\\.it|youtubedownload\\.org|yqpc\\.net|yuarra\\.pluto\\.ro|yubikk\\.info|yugk\\.net|yugo-star\\.ru|yunque\\.pluto\\.ro|yur-p\\.ru|yurcons\\.pro|yurgorod\\.ru|yuristproffi\\.ru|zagadki\\.in\\.ua|zahodi2hydra\\.net|zahvat\\.ru|zaidia\\.xhost\\.ro|zaim-pod-zalog-krasnodar\\.ru|zaimhelp\\.ru|zajm-pod-zalog-nedvizhimosti\\.ru|zakazfutbolki\\.com|zakaznoy\\.com\\.ua|zakazvzloma\\.com|zakis-azota24\\.ru|zakisazota-official\\.com|zakon-ob-obrazovanii\\.ru|zaloadi\\.ru|zamolotkom\\.ru|zapnado\\.ru|zarabotat-na-sajte\\.ru|zarabotat-v-internete\\.biz|zarenica\\.net|zastenchivosti\\.net|zastroyka\\.org|zavod-gm\\.ru|zazagames\\.org|zdesformula\\.ru|zdesoboi\\.com|zdm-auto\\.com|zdm-auto\\.ru|zdorovie-nogi\\.info|zebradudka\\.com|zelena-mriya\\.com\\.ua|zeleznobeton\\.ru|zerocash\\.msk\\.ru|zexhgoods\\.xyz|zhcsapp\\.net|zhoobintravel\\.com|zhorapankratov7\\.blogspot\\.com|zigarettenonl\\.canalblog\\.com|zigarettenonlinekaufen\\.tumblr\\.com|zigarettenonlinekaufen1\\.bloog\\.pl|zigarettenonlinekaufen1\\.blox\\.pl|zigarettenonlinekaufen2\\.bloog\\.pl|zigarettenonlinekaufen2\\.drupalgardens\\.com|zigzog\\.ru|zlatnajesen\\.com|zmoda\\.hostreo\\.com|znakomstva-moskva77\\.ru|znakomstva-piter78\\.ru|znakomstvaonlain\\.ru|znaniyapolza\\.ru|zojirushi-products\\.ru|zolotoy-lis\\.ru|zonefiles\\.bid|zoominfo\\.com|zot\\.moscow|zt-m\\.ru|zuchn\\.com|zverokruh-shop\\.cz|zvetki\\.ru|zvooq\\.eu|zvuker\\.net|zyzzcentral\\.ru$\"\n}\nrespond @blocker \"Traffic blocked\" 444 {\n     close\n}"
  },
  {
    "path": "referral-spam.conf",
    "content": "# https://github.com/Stevie-Ray/referrer-spam-blocker\n# Updated 2026-03-04 18:14:04\n\n#\n# /etc/nginx/referral-spam.conf\n#\n# IMPORTANT: You must increase the map hash bucket size to support the large domain list.\n# Add the following to your /etc/nginx/nginx.conf (in the http block):\n#\n#     map_hash_bucket_size 128;\n#\n# With referral-spam.conf in /etc/nginx, include it globally from within /etc/nginx/nginx.conf:\n#\n#     include referral-spam.conf;\n#\n# Add the following to each /etc/nginx/site-available/your-site.conf that needs protection:\n#\n#      server {\n#        if ($bad_referer) {\n#          return 444;\n#        }\n#      }\n#\n# Performance note: This configuration uses a performance-optimized approach with\n# hostname matching instead of thousands of regex patterns. Only one regex is\n# evaluated per request to extract the domain from the Referer header.\n#\n\n# Extract the domain from the Referer header\nmap $http_referer $http_referer_host {\n\t\"~^(?:https?://)?([^/]+)\" $1;\n}\n\n# Match against spam domains using hostname matching\nmap $http_referer_host $bad_referer {\n\thostnames;\n\tdefault 0;\n\n\t.0-0.fr 1;\n\t.000free.us 1;\n\t.007agent-i.fr 1;\n\t.00author.com 1;\n\t.00go.com 1;\n\t.00it.com 1;\n\t.01casino-x.ru 1;\n\t.033nachtvandeliteratuur.nl 1;\n\t.03e.info 1;\n\t.03p.info 1;\n\t.0n-line.tv 1;\n\t.1-88.vip 1;\n\t.1-99seo.com 1;\n\t.1-best-seo.com 1;\n\t.1-free-share-buttons.com 1;\n\t.100-reasons-for-seo.com 1;\n\t.100dollars-seo.com 1;\n\t.100searchengines.com 1;\n\t.101flag.ru 1;\n\t.11235813.webzdarma.cz 1;\n\t.12-reasons-for-seo.net 1;\n\t.12masterov.com 1;\n\t.12u.info 1;\n\t.15-reasons-for-seo.com 1;\n\t.16lv.com 1;\n\t.1hwy.com 1;\n\t.1kinobig.ru 1;\n\t.1kreditzaim.ru 1;\n\t.1pamm.ru 1;\n\t.1st-urist.ru 1;\n\t.1webmaster.ml 1;\n\t.1wek.top 1;\n\t.1winru.ru 1;\n\t.1x-slot.site 1;\n\t.1x-slots.site 1;\n\t.1xbet-entry.ru 1;\n\t.1xbetcc.com 1;\n\t.1xbetonlines1.ru 1;\n\t.1xbetportugal.com 1;\n\t.1xbetts.ru 1;\n\t.1xslot-casino.online 1;\n\t.1xslot-casino.ru 1;\n\t.1xslot-casino.site 1;\n\t.1xslot.site 1;\n\t.1xslots-africa.site 1;\n\t.1xslots-brasil.site 1;\n\t.1xslots-casino.site 1;\n\t.1xslots.africa 1;\n\t.1xslots.site 1;\n\t.2-best-seo.com 1;\n\t.2-easy.xyz 1;\n\t.2-go-now.xyz 1;\n\t.2015god.org 1;\n\t.24chasa.bg 1;\n\t.24h.doctor 1;\n\t.24videos.tv 1;\n\t.24x7-server-support.site 1;\n\t.256bit.by 1;\n\t.273-fz.ru 1;\n\t.2ads.co.uk 1;\n\t.2itech.ru 1;\n\t.2kata.ru 1;\n\t.2nt.ru 1;\n\t.2your.site 1;\n\t.3-best-seo.com 1;\n\t.3-letter-domains.net 1;\n\t.3dgame3d.com 1;\n\t.3dracergames.com 1;\n\t.3waynetworks.com 1;\n\t.4-best-seo.com 1;\n\t.40momporntube.com 1;\n\t.45en.ru 1;\n\t.45tahunkhongguan.com 1;\n\t.4inn.ru 1;\n\t.4ip.su 1;\n\t.4istoshop.com 1;\n\t.4webmasters.com 1;\n\t.4webmasters.org 1;\n\t.4xcasino.ru 1;\n\t.5-best-seo.com 1;\n\t.5-steps-to-start-business.com 1;\n\t.5elementov.ru 1;\n\t.5forex.ru 1;\n\t.6-best-seo.com 1;\n\t.69-13-59.ru 1;\n\t.6hopping.com 1;\n\t.7-best-seo.com 1;\n\t.70casino.online 1;\n\t.76brighton.co.uk 1;\n\t.76brighton.com 1;\n\t.7kop.ru 1;\n\t.7makemoneyonline.com 1;\n\t.7milliondollars.com 1;\n\t.7ooo.ru 1;\n\t.7zap.com 1;\n\t.8-best-seo.com 1;\n\t.84lv.com 1;\n\t.8xv8.com 1;\n\t.9-best-seo.com 1;\n\t.99-reasons-for-seo.com 1;\n\t.QIWI.xyz 1;\n\t.a-elita.in.ua 1;\n\t.a-hau.mk 1;\n\t.a14download.com 1;\n\t.abacoasale.xyz 1;\n\t.abaiak.com 1;\n\t.abbanreddy.com 1;\n\t.abc.xyz 1;\n\t.abcdefh.xyz 1;\n\t.abcdeg.xyz 1;\n\t.abclauncher.com 1;\n\t.abiente.ru 1;\n\t.abovetherivernc.com 1;\n\t.abtasty.com 1;\n\t.abuser.shop 1;\n\t.academia-nsk.org 1;\n\t.acads.net 1;\n\t.acarreo.ru 1;\n\t.account-my1.xyz 1;\n\t.accs-store.ru 1;\n\t.actata.co 1;\n\t.actualremont.ru 1;\n\t.acunetix-referrer.com 1;\n\t.adanih.com 1;\n\t.adcash.com 1;\n\t.addblueoff.com.ua 1;\n\t.adelachrist.top 1;\n\t.adelly.bg 1;\n\t.adf.ly 1;\n\t.adpostmalta.com 1;\n\t.adrenalinebot.net 1;\n\t.adrenalinebot.ru 1;\n\t.adspart.com 1;\n\t.adtiger.tk 1;\n\t.adult-video-chat.ru 1;\n\t.adultfullhd.com 1;\n\t.adventureparkcostarica.com 1;\n\t.advertisefree.co.uk 1;\n\t.adviceforum.info 1;\n\t.advocatemsk.ru 1;\n\t.advokateg.co 1;\n\t.advokateg.com 1;\n\t.advokateg.ru 1;\n\t.advokateg.xyz 1;\n\t.aerodizain.com 1;\n\t.aerogo.com 1;\n\t.aerotour.ru 1;\n\t.affiliate-programs.biz 1;\n\t.affordablewebsitesandmobileapps.com 1;\n\t.afora.ru 1;\n\t.afshan.shop 1;\n\t.agreda.pluto.ro 1;\n\t.agro-gid.com 1;\n\t.agtl.com.ua 1;\n\t.ahecmarket.xyz 1;\n\t.ahhjf.com 1;\n\t.ahrefs.com 1;\n\t.ai-seo-services.com 1;\n\t.aibolita.com 1;\n\t.aidarmebel.kz 1;\n\t.aimeesblog.xyz 1;\n\t.aimiot.net 1;\n\t.aitiman.ae 1;\n\t.akama.com 1;\n\t.akmussale.xyz 1;\n\t.akuhni.by 1;\n\t.akusherok.ru 1;\n\t.akvamaster.dp.ua 1;\n\t.alborzan.com 1;\n\t.albuteroli.com 1;\n\t.alcobutik24.com 1;\n\t.alert-fdm.xyz 1;\n\t.alert-fjg.xyz 1;\n\t.alert-hgd.xyz 1;\n\t.alert-jdh.xyz 1;\n\t.alertomall.xyz 1;\n\t.alessandraleone.com 1;\n\t.alexsander.ch 1;\n\t.alfa-medosmotr.ru 1;\n\t.alfa9.com 1;\n\t.alfabot.xyz 1;\n\t.alfapro.ru 1;\n\t.alguiblog.online 1;\n\t.alibestsale.com 1;\n\t.aliexpress.com 1;\n\t.aliexsale.ru 1;\n\t.alif-ba-ta.com 1;\n\t.alinabaniecka.pl 1;\n\t.alive-ua.com 1;\n\t.aliviahome.online 1;\n\t.alkanfarma.org 1;\n\t.all-news.kz 1;\n\t.all4bath.ru 1;\n\t.all4invest.ru 1;\n\t.allcredits.su 1;\n\t.allcryptonews.com 1;\n\t.alldownload.pw 1;\n\t.allergick.com 1;\n\t.allergija.com 1;\n\t.allfan.ru 1;\n\t.allforminecraft.ru 1;\n\t.allknow.info 1;\n\t.allkrim.com 1;\n\t.allmarketsnewdayli.gdn 1;\n\t.allnews.md 1;\n\t.allnews24.in 1;\n\t.allpdfmags.net 1;\n\t.allproblog.com 1;\n\t.allsilver925.co.il 1;\n\t.alltheviews.com 1;\n\t.allvacancy.ru 1;\n\t.allwomen.info 1;\n\t.allwrighter.ru 1;\n\t.alma-mramor.com.ua 1;\n\t.alot.com 1;\n\t.alp-rk.ru 1;\n\t.alphaforum.ru 1;\n\t.alphaopt24.ru 1;\n\t.alpharma.net 1;\n\t.alpinaskate.com 1;\n\t.altermix.ua 1;\n\t.alveris.ru 1;\n\t.am-se.com 1;\n\t.amanda-porn.ga 1;\n\t.amatocanizalez.net 1;\n\t.amazon-seo-service.com 1;\n\t.amoi.tn 1;\n\t.amoremio.by 1;\n\t.amos-kids.ru 1;\n\t.amospalla.es 1;\n\t.amp-project.pro 1;\n\t.amt-k.ru 1;\n\t.amtel-vredestein.com 1;\n\t.amylynnandrews.xyz 1;\n\t.anabolics.shop 1;\n\t.anal-acrobats.hol.es 1;\n\t.analytics-ads.xyz 1;\n\t.analyze-best-copywriting-services.party 1;\n\t.analyze-extra-analytic-service.stream 1;\n\t.ananumous.ru 1;\n\t.anapa-inns.ru 1;\n\t.andrewancheta.com 1;\n\t.android-style.com 1;\n\t.android-systems.ru 1;\n\t.android-vsem.org 1;\n\t.android4fun.org 1;\n\t.androids-store.com 1;\n\t.animalphotos.xyz 1;\n\t.animebox.com.ua 1;\n\t.animenime.ru 1;\n\t.annaeydlish.top 1;\n\t.anrtmall.xyz 1;\n\t.anti-crisis-seo.com 1;\n\t.anticrawler.org 1;\n\t.antiguabarbuda.ru 1;\n\t.antonovich-design.com.ua 1;\n\t.anydesk.site 1;\n\t.aosheng-tech.com 1;\n\t.aoul.top 1;\n\t.apartmentbay.ru 1;\n\t.apartmentratings.com 1;\n\t.apilian.xyz 1;\n\t.apishops.ru 1;\n\t.apollon-market-url.org 1;\n\t.applepharma.ru 1;\n\t.apteka-doc.ru 1;\n\t.apteka-pharm.ru 1;\n\t.apteka.info 1;\n\t.apxeo.info 1;\n\t.arabic-poetry.com 1;\n\t.aramaicmedia.org 1;\n\t.arate.ru 1;\n\t.arcadepages.com 1;\n\t.arcarticle.online 1;\n\t.architecturebest.com 1;\n\t.arendadogovor.ru 1;\n\t.arendakvartir.kz 1;\n\t.arendas.net 1;\n\t.arendovalka.xyz 1;\n\t.argo-visa.ru 1;\n\t.arkansale.xyz 1;\n\t.arkartex.ru 1;\n\t.arkkivoltti.net 1;\n\t.arpe.top 1;\n\t.arraty.altervista.org 1;\n\t.artblog.top 1;\n\t.artclipart.ru 1;\n\t.artdeko.info 1;\n\t.artefakct.com 1;\n\t.artpaint-market.ru 1;\n\t.artparquet.ru 1;\n\t.artpress.top 1;\n\t.artsmarket.xyz 1;\n\t.arturs.moscow 1;\n\t.aruplighting.com 1;\n\t.asacopaco.tk 1;\n\t.ascotgoods.xyz 1;\n\t.asia-forum.ru 1;\n\t.ask-yug.com 1;\n\t.asmxsatadriverin.aircus.com 1;\n\t.astimvnc.online 1;\n\t.asupro.com 1;\n\t.asynt.net 1;\n\t.aszokshop.xyz 1;\n\t.atlant-auto.info 1;\n\t.atlasvkusov.ru 1;\n\t.atleticpharm.org 1;\n\t.atley.eu.pn 1;\n\t.atmagroup.ru 1;\n\t.atoblog.online 1;\n\t.atyks.ru 1;\n\t.aucoinhomes.com 1;\n\t.audiobangout.com 1;\n\t.ausergrubhof.info 1;\n\t.australia-opening-times.com 1;\n\t.auto-b2b-seo-service.com 1;\n\t.auto-complex.by 1;\n\t.auto-kia-fulldrive.ru 1;\n\t.auto-moto-elektronika.cz 1;\n\t.auto-news-digest.ru 1;\n\t.auto-seo-service.com 1;\n\t.auto-seo-service.org 1;\n\t.auto-zapchasti.org 1;\n\t.auto.rusvile.lt 1;\n\t.auto4style.ru 1;\n\t.autoblog.org.ua 1;\n\t.autobrennero.it 1;\n\t.autobudpostach.club 1;\n\t.autofuct.ru 1;\n\t.autoloans.com 1;\n\t.autolombard-krasnodar.ru 1;\n\t.automate-amazon-affiliation.com 1;\n\t.automobile-spec.com 1;\n\t.autonew.biz 1;\n\t.autoseo-service.org 1;\n\t.autoseo-traffic.com 1;\n\t.autoseo-trial-for-1.com 1;\n\t.autoseoservice.org 1;\n\t.autoseotips.com 1;\n\t.autoservic.by 1;\n\t.autotop.com.ua 1;\n\t.autovideobroadcast.com 1;\n\t.autowebmarket.com.ua 1;\n\t.avcoast.com 1;\n\t.avek.ru 1;\n\t.aviapanda.ru 1;\n\t.aviaseller.su 1;\n\t.aviav.ru.com 1;\n\t.avitocars.ru 1;\n\t.aviva-limoux.com 1;\n\t.avkzarabotok.com 1;\n\t.avkzarabotok.info 1;\n\t.avon-severozapad.ru 1;\n\t.avtoarenda.by 1;\n\t.avtocredit-legko.ru 1;\n\t.avtointeres.ru 1;\n\t.avtorskoe-vino.ru 1;\n\t.avtovolop.ru 1;\n\t.avtovykup.kz 1;\n\t.awency.com 1;\n\t.aworlds.com 1;\n\t.axcus.top 1;\n\t.ayerbo.xhost.ro 1;\n\t.ayongoods.xyz 1;\n\t.azadnegar.com 1;\n\t.azartclub.org 1;\n\t.azartniy-bonus.com 1;\n\t.azazu.ru 1;\n\t.azbuka-mo.ru 1;\n\t.azbukadiets.ru 1;\n\t.azbukafree.com 1;\n\t.azlex.uz 1;\n\t.b-buyeasy.com 1;\n\t.b2b-lounge.com 1;\n\t.bablonow.ru 1;\n\t.baciakte.online 1;\n\t.backgroundpictures.net 1;\n\t.backlinks-fast-top.com 1;\n\t.bag77.ru 1;\n\t.bahisgunceladresi.com 1;\n\t.baixar-musicas-gratis.com 1;\n\t.bala.getenjoyment.net 1;\n\t.baladur.ru 1;\n\t.balakhna.online 1;\n\t.balayazh.com 1;\n\t.balitouroffice.com 1;\n\t.balkanfarma.org 1;\n\t.balkanfarma.ru 1;\n\t.balois.worldbreak.com 1;\n\t.bambi.ck.ua 1;\n\t.banan.tv 1;\n\t.bankcrediti.ru 1;\n\t.bankhummer.co 1;\n\t.bankiem.pl 1;\n\t.barbarahome.top 1;\n\t.bard-real.com.ua 1;\n\t.bashtime.ru 1;\n\t.basisches-wasser.net 1;\n\t.batietiket.com 1;\n\t.batut-fun.ru 1;\n\t.bausparen.bz.it 1;\n\t.bavariagid.de 1;\n\t.bavsac.com 1;\n\t.bazaronline24.ru 1;\n\t.bbtec.net 1;\n\t.bdf-tracker.top 1;\n\t.beachtoday.ru 1;\n\t.beamfall.info 1;\n\t.beauby.ru 1;\n\t.beauty-clinic.ru 1;\n\t.beauty-lesson.com 1;\n\t.beclean-nn.ru 1;\n\t.bedroomlighting.us 1;\n\t.begalka.xyz 1;\n\t.belinvestdom.by 1;\n\t.belreferatov.net 1;\n\t.berdasovivan.ru 1;\n\t.beremenyashka.com 1;\n\t.berglion.com 1;\n\t.berkinan.xyz 1;\n\t.berlininsl.com 1;\n\t.berrymall.ru 1;\n\t.best-deal-hdd.pro 1;\n\t.best-mam.ru 1;\n\t.best-offer-hdd-1.info 1;\n\t.best-offer-hdd-1.space 1;\n\t.best-offer-hdd-1.top 1;\n\t.best-offer-hdd.pro 1;\n\t.best-offer-hdd.xyz 1;\n\t.best-ping-service-usa-1.info 1;\n\t.best-ping-service-usa-1.space 1;\n\t.best-ping-service-usa-1.top 1;\n\t.best-ping-service-usa.blue 1;\n\t.best-ping-service-usa.me 1;\n\t.best-ping-service-usa.space 1;\n\t.best-ping-service-usa.top 1;\n\t.best-ping-service-usa.xyz 1;\n\t.best-printmsk.ru 1;\n\t.best-seo-offer.com 1;\n\t.best-seo-service.tk 1;\n\t.best-seo-software.xyz 1;\n\t.best-seo-solution.com 1;\n\t.bestbookclub.ru 1;\n\t.bestchoice.cf 1;\n\t.bestempresas.es 1;\n\t.bestfortraders.com 1;\n\t.besthatcheries.com 1;\n\t.bestleofferhdd.info 1;\n\t.bestmobilityscooterstoday.com 1;\n\t.bestofferfyhdd.info 1;\n\t.bestofferhddacy.info 1;\n\t.bestofferhddbyt.info 1;\n\t.bestofferhddeed.info 1;\n\t.bestofferhddity.info 1;\n\t.bestofferifyhdd.info 1;\n\t.bestofferswalkmydogouteveryday.gq 1;\n\t.bestorofferhdd.info 1;\n\t.bestplacetobuyeriacta.jw.lt 1;\n\t.bestvpnrating.com 1;\n\t.bestwebsiteawards.com 1;\n\t.bestwebsitesawards.com 1;\n\t.bet-prognoz.com 1;\n\t.bet-winner1.ru 1;\n\t.bet2much.ru 1;\n\t.betonka.pro 1;\n\t.betslive.ru 1;\n\t.betterhealthbeauty.com 1;\n\t.bettorschool.ru 1;\n\t.betune.onlinewebshop.net 1;\n\t.betwinservice.com 1;\n\t.beyan.host.sk 1;\n\t.bez-zabora.ru 1;\n\t.bezcmexa.ru 1;\n\t.bezlimitko.xyz 1;\n\t.bezprostatita.com 1;\n\t.bezsporno.ru 1;\n\t.beztuberkuleza.ru 1;\n\t.bhf.vc 1;\n\t.bibprsale.xyz 1;\n\t.bif-ru.info 1;\n\t.bigcities.org 1;\n\t.biglistofwebsites.com 1;\n\t.biketank.ga 1;\n\t.billiard-classic.com.ua 1;\n\t.billigerstrom.co 1;\n\t.billyblog.online 1;\n\t.bimatoprost-careprost.com 1;\n\t.bimatoprost-careprost.com.ua 1;\n\t.bin-brokers.com 1;\n\t.binokna.ru 1;\n\t.binomo.kz 1;\n\t.bio-japan.net 1;\n\t.bio-market.kz 1;\n\t.bio.trade-jp.net 1;\n\t.bioca.org 1;\n\t.biplanecentre.ru 1;\n\t.bird1.ru 1;\n\t.birzha-truda.eu 1;\n\t.bisign.info 1;\n\t.bitcoin-ua.top 1;\n\t.bitcoins-forum.club 1;\n\t.bitcoins-forum.info 1;\n\t.bitcoins-forum.online 1;\n\t.bitcoins-forum.pro 1;\n\t.bitcoins-live.ru 1;\n\t.biteg.xyz 1;\n\t.bitniex.com 1;\n\t.biz-law.ru 1;\n\t.biznesluxe.ru 1;\n\t.biznesrealnost.ru 1;\n\t.biznesschat.net 1;\n\t.bizru.info 1;\n\t.bki24.info 1;\n\t.bkns.vn 1;\n\t.black-friday.ga 1;\n\t.black-tip.top 1;\n\t.blackhatworth.com 1;\n\t.blackle.com 1;\n\t.blackplanet.com 1;\n\t.blackwitchcraft.ru 1;\n\t.blancablog.online 1;\n\t.blavia.00author.com 1;\n\t.bleacherreport.com 1;\n\t.blockchaintop.nl 1;\n\t.blockworld.ru 1;\n\t.blog.f00kclan.de 1;\n\t.blog.koorg.ru 1;\n\t.blog.latuti.net 1;\n\t.blog.remote-computer.de 1;\n\t.blog.xsk.in 1;\n\t.blog.yam.com 1;\n\t.blog100.org 1;\n\t.blog2019.top 1;\n\t.blog2019.xyz 1;\n\t.blog4u.top 1;\n\t.blogarun.co 1;\n\t.bloggen.be 1;\n\t.bloggers.nl 1;\n\t.blogig.org 1;\n\t.blogking.top 1;\n\t.bloglag.com 1;\n\t.blognet.top 1;\n\t.blogorganictraffic.shop 1;\n\t.blogos.kz 1;\n\t.blogping.xyz 1;\n\t.blogs.rediff.com 1;\n\t.blogseo.xyz 1;\n\t.blogstar.fun 1;\n\t.blogster.com 1;\n\t.blogtotal.de 1;\n\t.blogtraffic.shop 1;\n\t.blogua.org 1;\n\t.blue-square.biz 1;\n\t.bluerobot.info 1;\n\t.bmusshop.xyz 1;\n\t.bo-vtb24.ru 1;\n\t.board.f00d.de 1;\n\t.bobba.dzaba.com 1;\n\t.bodybuilding-shop.biz 1;\n\t.boleznikogi.com 1;\n\t.bolezniorganov.ru 1;\n\t.boltalko.xyz 1;\n\t.boltushkiclub.ru 1;\n\t.bombla.org 1;\n\t.bonkers.name 1;\n\t.bonniesblog.online 1;\n\t.bonus-betting.ru 1;\n\t.bonus-spasibo-sberbank.ru 1;\n\t.bonus-vtb.ru 1;\n\t.bonux.nextview.ru 1;\n\t.bookmaker-bet.com 1;\n\t.bookmark4you.biz 1;\n\t.bookmark4you.com 1;\n\t.bookmark4you.com.biz 1;\n\t.books-top.com 1;\n\t.boole.onlinewebshop.net 1;\n\t.boost-my-site.com 1;\n\t.boost24.biz 1;\n\t.boostmyppc.com 1;\n\t.bosefux.esy.es 1;\n\t.bosman.pluto.ro 1;\n\t.bostonline.xyz 1;\n\t.bot-traffic.icu 1;\n\t.bot-traffic.xyz 1;\n\t.botamycos.fr 1;\n\t.bottraffic.live 1;\n\t.bottraffic143.xyz 1;\n\t.bottraffic329.xyz 1;\n\t.bottraffic4free.club 1;\n\t.bottraffic4free.host 1;\n\t.bottraffic999.xyz 1;\n\t.bouda.kvalitne.cz 1;\n\t.bowigosale.xyz 1;\n\t.bpro1.top 1;\n\t.bradleylive.xyz 1;\n\t.brains2.biz 1;\n\t.brakehawk.com 1;\n\t.brandnewtube.com 1;\n\t.brandov.ru 1;\n\t.brateg.xyz 1;\n\t.brauni.com.ua 1;\n\t.bravica.biz 1;\n\t.bravica.com 1;\n\t.bravica.me 1;\n\t.bravica.net 1;\n\t.bravica.news 1;\n\t.bravica.online 1;\n\t.bravica.pro 1;\n\t.bravica.ru 1;\n\t.bravica.su 1;\n\t.break-the-chains.com 1;\n\t.breget74.ru 1;\n\t.brendbutik.ru 1;\n\t.briankatrine.top 1;\n\t.brickmaster.pro 1;\n\t.brillianty.info 1;\n\t.bristolhostel.com 1;\n\t.bristolhotel.com 1;\n\t.bristolhotel.com.ua 1;\n\t.britneyblog.online 1;\n\t.brk-rti.ru 1;\n\t.brokergid.ru 1;\n\t.brooklyn-ads.com 1;\n\t.brooklynsays.com 1;\n\t.brothers-smaller.ru 1;\n\t.brus-vsem.ru 1;\n\t.brus.city 1;\n\t.brusilov.ru 1;\n\t.bsell.ru 1;\n\t.btcnix.com 1;\n\t.btt-club.pro 1;\n\t.budilneg.xyz 1;\n\t.budmavtomatika.com.ua 1;\n\t.budpost.com.ua 1;\n\t.bufetout.ru 1;\n\t.bugof.gq 1;\n\t.buhproffi.ru 1;\n\t.buigas.00it.com 1;\n\t.buildnw.ru 1;\n\t.buildwithwendy.com 1;\n\t.buketeg.xyz 1;\n\t.bukleteg.xyz 1;\n\t.bulgaria-web-developers.com 1;\n\t.buqayy0.livejournal.com 1;\n\t.bur-rk.ru 1;\n\t.burger-imperia.com 1;\n\t.burn-fat.ga 1;\n\t.business-online-sberbank.ru 1;\n\t.buttons-for-website.com 1;\n\t.buttons-for-your-website.com 1;\n\t.buy-cheap-online.info 1;\n\t.buy-cheap-pills-order-online.com 1;\n\t.buy-forum.ru 1;\n\t.buy-meds24.com 1;\n\t.buyantiviralwp.com 1;\n\t.buyessay3.blogspot.ru 1;\n\t.buyessaynow.biz 1;\n\t.buyessayonline19.blogspot.ru 1;\n\t.buyfriend.ru 1;\n\t.buyk.host.sk 1;\n\t.buynorxx.com 1;\n\t.buypharmacydrug.com 1;\n\t.buypillsonline24h.com 1;\n\t.buypillsorderonline.com 1;\n\t.buypuppies.ca 1;\n\t.buyscabiescream.com 1;\n\t.buytizanidineonline.blogspot.com 1;\n\t.buytizanidineonlinenoprescription.blogspot.com 1;\n\t.buyviagraa.blogspot.com 1;\n\t.bvps8.com 1;\n\t.bycontext.com 1;\n\t.byme.se 1;\n\t.bytimedance.ru 1;\n\t.c-english.ru 1;\n\t.c2bit.hk 1;\n\t.californianews.cf 1;\n\t.call-of-duty.info 1;\n\t.callejondelpozo.es 1;\n\t.calvet.altervista.org 1;\n\t.cancerfungus.com 1;\n\t.candida-international.blogspot.com 1;\n\t.candida-society.org.uk 1;\n\t.cannazon-market.org 1;\n\t.canoncdriverq3.pen.io 1;\n\t.canyougethighofftizanidine.blogspot.com 1;\n\t.canzoni.ru 1;\n\t.carabela.com.do 1;\n\t.carbon-linger-hierarchy-suntan.top 1;\n\t.carder.me 1;\n\t.carder.tv 1;\n\t.carders.ug 1;\n\t.cardiosport.com.ua 1;\n\t.cardsdumps.com 1;\n\t.cardsharp1.ru 1;\n\t.cardul.ru 1;\n\t.carezi.com 1;\n\t.carfax.com.ua 1;\n\t.carivka.com.ua 1;\n\t.carloans.com 1;\n\t.carscrim.com 1;\n\t.carsdined.org 1;\n\t.carsnumber.com 1;\n\t.carson.getenjoyment.net 1;\n\t.carsoncitypizza.com 1;\n\t.cartechnic.ru 1;\n\t.casablancamanor.co.za 1;\n\t.cashforum.cc 1;\n\t.casino-top3.fun 1;\n\t.casino-top3.online 1;\n\t.casino-top3.ru 1;\n\t.casino-top3.site 1;\n\t.casino-top3.space 1;\n\t.casino-top3.website 1;\n\t.casino-v.site 1;\n\t.casino-vulkane.com 1;\n\t.casino-x-now.ru 1;\n\t.casino-x.host 1;\n\t.casinosbewertung.de 1;\n\t.casinox-jp.com 1;\n\t.castingbank.ru 1;\n\t.catalogs-parts.com 1;\n\t.catherinemill.xyz 1;\n\t.catterybengal.com 1;\n\t.cattyhealth.com 1;\n\t.cauxmall.xyz 1;\n\t.cayado.snn.gr 1;\n\t.cazino-v.online 1;\n\t.cazino-v.ru 1;\n\t.cbcseward.com 1;\n\t.cbox.ws 1;\n\t.ccfullzshop.com 1;\n\t.celestepage.xyz 1;\n\t.celldog.ru 1;\n\t.cenokos.ru 1;\n\t.cenoval.ru 1;\n\t.centre-indigo.org.ua 1;\n\t.centrumcoachingu.com 1;\n\t.cercacamion.it 1;\n\t.certifywebsite.win 1;\n\t.cezartabac.ro 1;\n\t.cfsrating.sonicwall.com 1;\n\t.cgi2.nintendo.co.jp 1;\n\t.chainii.ru 1;\n\t.channel-badge-betray-volcanic.com 1;\n\t.chastnoeporno.com 1;\n\t.chat.ru 1;\n\t.chatmall.xyz 1;\n\t.chatrazvrat.ru 1;\n\t.chatroulette.life 1;\n\t.chcu.net 1;\n\t.cheap-trusted-backlinks.com 1;\n\t.cheapkeys.ovh 1;\n\t.cheappills24h.com 1;\n\t.chee-by.biz 1;\n\t.chelyabinsk.dienai.ru 1;\n\t.chelyabinsk.xrus.org 1;\n\t.cherrypointplace.ca 1;\n\t.cherubinimobili.it 1;\n\t.chimiver.info 1;\n\t.chinese-amezon.com 1;\n\t.chip35.ru 1;\n\t.chipmp3.ru 1;\n\t.chizhik-2.ru 1;\n\t.chomexun.com 1;\n\t.choosecuisine.com 1;\n\t.ci.ua 1;\n\t.ciarustde.online 1;\n\t.cigarpass.com 1;\n\t.cilolamall.xyz 1;\n\t.cinemaenergy-hd.ru 1;\n\t.ciproandtizanidine.blogspot.com 1;\n\t.citizenclsdriveri7.pen.io 1;\n\t.cityadspix.com 1;\n\t.citybur.ru 1;\n\t.cityreys.ru 1;\n\t.civilwartheater.com 1;\n\t.clarithromycin500mg.com 1;\n\t.clash-clans.ru 1;\n\t.classicakuhni.ru 1;\n\t.cleandom.in.ua 1;\n\t.cleaningservices.kiev.ua 1;\n\t.clicksor.com 1;\n\t.climate.by 1;\n\t.clmforexeu.com 1;\n\t.clothing-deal.club 1;\n\t.cloudsendchef.com 1;\n\t.club-lukojl.ru 1;\n\t.club-musics.ru 1;\n\t.club-samodelkin.ru 1;\n\t.cmd.kz 1;\n\t.cmrrsale.xyz 1;\n\t.cmseshop.xyz 1;\n\t.cobaltpro.ru 1;\n\t.cocyq.inwtrade.com 1;\n\t.coderstate.com 1;\n\t.codq.info 1;\n\t.codysbbq.com 1;\n\t.coeus-solutions.de 1;\n\t.coffeemashiny.ru 1;\n\t.coinswitch.cash 1;\n\t.coldfilm.ru 1;\n\t.coleso.md 1;\n\t.collectinviolity.com 1;\n\t.collegeessay19.blogspot.ru 1;\n\t.columb.net.ua 1;\n\t.cometorussia.net 1;\n\t.comissionka.net 1;\n\t.commentag.com 1;\n\t.commerage.ru 1;\n\t.comp-pomosch.ru 1;\n\t.compliance-alex.top 1;\n\t.compliance-alex.xyz 1;\n\t.compliance-alexa.top 1;\n\t.compliance-alexa.xyz 1;\n\t.compliance-andrew.top 1;\n\t.compliance-andrew.xyz 1;\n\t.compliance-barak.top 1;\n\t.compliance-barak.xyz 1;\n\t.compliance-brian.top 1;\n\t.compliance-brian.xyz 1;\n\t.compliance-checker-7.info 1;\n\t.compliance-don.top 1;\n\t.compliance-don.xyz 1;\n\t.compliance-donald.xyz 1;\n\t.compliance-elena.top 1;\n\t.compliance-elena.xyz 1;\n\t.compliance-fred.top 1;\n\t.compliance-fred.xyz 1;\n\t.compliance-george.top 1;\n\t.compliance-george.xyz 1;\n\t.compliance-irvin.top 1;\n\t.compliance-irvin.xyz 1;\n\t.compliance-ivan.top 1;\n\t.compliance-ivan.xyz 1;\n\t.compliance-jack.top 1;\n\t.compliance-jane.top 1;\n\t.compliance-jess.top 1;\n\t.compliance-jessica.top 1;\n\t.compliance-john.top 1;\n\t.compliance-josh.top 1;\n\t.compliance-julia.top 1;\n\t.compliance-julianna.top 1;\n\t.compliance-margo.top 1;\n\t.compliance-mark.top 1;\n\t.compliance-mary.top 1;\n\t.compliance-nelson.top 1;\n\t.compliance-olga.top 1;\n\t.compliance-viktor.top 1;\n\t.compliance-walt.top 1;\n\t.compliance-walter.top 1;\n\t.compliance-willy.top 1;\n\t.computer-remont.ru 1;\n\t.comuneshop.xyz 1;\n\t.conciergegroup.org 1;\n\t.concretepol.com 1;\n\t.connectikastudio.com 1;\n\t.constanceonline.top 1;\n\t.constantaservice.net 1;\n\t.construmac.com.mx 1;\n\t.contextualyield.com 1;\n\t.cookie-law-enforcement-aa.xyz 1;\n\t.cookie-law-enforcement-bb.xyz 1;\n\t.cookie-law-enforcement-cc.xyz 1;\n\t.cookie-law-enforcement-dd.xyz 1;\n\t.cookie-law-enforcement-ee.xyz 1;\n\t.cookie-law-enforcement-ff.xyz 1;\n\t.cookie-law-enforcement-gg.xyz 1;\n\t.cookie-law-enforcement-hh.xyz 1;\n\t.cookie-law-enforcement-ii.xyz 1;\n\t.cookie-law-enforcement-jj.xyz 1;\n\t.cookie-law-enforcement-kk.xyz 1;\n\t.cookie-law-enforcement-ll.xyz 1;\n\t.cookie-law-enforcement-mm.xyz 1;\n\t.cookie-law-enforcement-nn.xyz 1;\n\t.cookie-law-enforcement-oo.xyz 1;\n\t.cookie-law-enforcement-pp.xyz 1;\n\t.cookie-law-enforcement-qq.xyz 1;\n\t.cookie-law-enforcement-rr.xyz 1;\n\t.cookie-law-enforcement-ss.xyz 1;\n\t.cookie-law-enforcement-tt.xyz 1;\n\t.cookie-law-enforcement-uu.xyz 1;\n\t.cookie-law-enforcement-vv.xyz 1;\n\t.cookie-law-enforcement-ww.xyz 1;\n\t.cookie-law-enforcement-xx.xyz 1;\n\t.cookie-law-enforcement-yy.xyz 1;\n\t.cookie-law-enforcement-zz.xyz 1;\n\t.cookielawblog.wordpress.com 1;\n\t.cookingmeat.ru 1;\n\t.cool-mining.com 1;\n\t.cool-wedding.net 1;\n\t.coop-gamers.ru 1;\n\t.copblock.org 1;\n\t.copyrightclaims.org 1;\n\t.copyrightinstitute.org 1;\n\t.coral-info.com 1;\n\t.cosmediqueresults.com 1;\n\t.countravel.net 1;\n\t.covadhosting.biz 1;\n\t.covblog.top 1;\n\t.coverage-my.com 1;\n\t.covetnica.com 1;\n\t.covid-schutzmasken.de 1;\n\t.cowblog.fr 1;\n\t.cp24.com.ua 1;\n\t.cpnbshop.xyz 1;\n\t.cranly.net 1;\n\t.crazy-mining.org 1;\n\t.crd.clan.su 1;\n\t.creams.makeforum.eu 1;\n\t.credit-card-tinkoff.ru 1;\n\t.credit-cards-online24.ru 1;\n\t.credit.co.ua 1;\n\t.creditmoney.com.ua 1;\n\t.crest-poloski.ru 1;\n\t.crest3d.ru 1;\n\t.crirussian.ru 1;\n\t.cruiseraf.net 1;\n\t.crypto-bear.com 1;\n\t.crypto-bears.com 1;\n\t.crypto-mining.club 1;\n\t.crypto-wallets.org 1;\n\t.crypto1x1.com 1;\n\t.crystalslot.com 1;\n\t.cubook.supernew.org 1;\n\t.curenaturalicancro.com 1;\n\t.curenaturalicancro.nl 1;\n\t.customsua.com.ua 1;\n\t.cutalltheshit.com 1;\n\t.cvety24.by 1;\n\t.cvta.xyz 1;\n\t.cxpromote.com 1;\n\t.cyber-monday.ga 1;\n\t.cyclobenzaprinevstizanidine.blogspot.com 1;\n\t.cymbaltaandtizanidine.blogspot.com 1;\n\t.cyprusbuyproperties.com 1;\n\t.czcedu.com 1;\n\t.dacha-svoimi-rukami.com 1;\n\t.dailyblog.xyz 1;\n\t.dailyrank.net 1;\n\t.dailyseo.xyz 1;\n\t.dailystorm.ru 1;\n\t.dailystrength.org 1;\n\t.dailytraffic.shop 1;\n\t.dame-ns.kz 1;\n\t.damedingel.ya.ru 1;\n\t.damianis.ru 1;\n\t.danashop.ru 1;\n\t.danceuniverse.ru 1;\n\t.danhale.xyz 1;\n\t.dantk.kz 1;\n\t.daptravel.com 1;\n\t.darcysassoon.top 1;\n\t.darkbooks.org 1;\n\t.darknet-hydra-onion.biz 1;\n\t.darknet.sb 1;\n\t.darknetsitesguide.com 1;\n\t.darleneblog.online 1;\n\t.darodar.com 1;\n\t.datsun-do.com 1;\n\t.dav.kz 1;\n\t.davilaonline.shop 1;\n\t.dawlenie.com 1;\n\t.dbmkfhqk.bloger.index.hr 1;\n\t.dbutton.net 1;\n\t.dcdcapital.com 1;\n\t.ddlmega.net 1;\n\t.ddpills.com 1;\n\t.de.zapmeta.com 1;\n\t.dear-diary.ru 1;\n\t.deart-13.ru 1;\n\t.deda-moroza-zakaz.ru 1;\n\t.deirdre.top 1;\n\t.dekorkeramik.ru 1;\n\t.delayreferat.ru 1;\n\t.delfin-aqua.com.ua 1;\n\t.delo.fund 1;\n\t.deluxewatch.su 1;\n\t.demenageur.com 1;\n\t.den-noch24.ru 1;\n\t.dengi-v-kredit.in.ua 1;\n\t.denisecarey.top 1;\n\t.deniseconnie.top 1;\n\t.deniven.1bb.ru 1;\n\t.dent-home.ru 1;\n\t.dentuled.net 1;\n\t.depositfiles-porn.com 1;\n\t.depositfiles-porn.ga 1;\n\t.dermatovenerologiya.com 1;\n\t.deryie.com 1;\n\t.descargar-musica-gratis.net 1;\n\t.descargar-musicas-gratis.com 1;\n\t.design-lands.ru 1;\n\t.designdevise.com 1;\n\t.detailedvideos.com 1;\n\t.detalizaciya-tut.biz 1;\n\t.detective01.ru 1;\n\t.detki-opt.ru 1;\n\t.detoolzon.xyz 1;\n\t.detskie-konstruktory.ru 1;\n\t.detskie-zabavi.ru 1;\n\t.deutsche-poesie.com 1;\n\t.dev-seo.blog 1;\n\t.devochki-video.ru 1;\n\t.dezeypmall.xyz 1;\n\t.dgdsoutlet.xyz 1;\n\t.diarioaconcagua.com 1;\n\t.diatelier.ru 1;\n\t.dicru.info 1;\n\t.diebesten.co 1;\n\t.dienai.ru 1;\n\t.dienmaytot.xyz 1;\n\t.diesel-parts28.ru 1;\n\t.digest-project.ru 1;\n\t.digilander.libero.it 1;\n\t.digital-video-processing.com 1;\n\t.digitalfaq.com 1;\n\t.dimkino.ru 1;\n\t.dinkolove.ya.ru 1;\n\t.diplom-nk.com 1;\n\t.diplomas-ru.com 1;\n\t.dipstar.org 1;\n\t.directrev.com 1;\n\t.discounttaxi.kz 1;\n\t.discover-prior-full-stack-services.party 1;\n\t.discover-prior-ppc-service.party 1;\n\t.discover-top-seo-service.review 1;\n\t.distonija.com 1;\n\t.divan-dekor.com.ua 1;\n\t.dividendo.ru 1;\n\t.diy-handmade-ideas.com 1;\n\t.djekxa.ru 1;\n\t.djonwatch.ru 1;\n\t.djstools.com 1;\n\t.dktr.ru 1;\n\t.dldsshop.xyz 1;\n\t.dlya-android.org 1;\n\t.dms-sw.ru 1;\n\t.dna-sklad.ru 1;\n\t.dnepr-avtospar.com.ua 1;\n\t.dneprsvet.com.ua 1;\n\t.dnmetall.ru 1;\n\t.docs4all.com 1;\n\t.docsarchive.net 1;\n\t.docsportal.net 1;\n\t.docstoc.com 1;\n\t.doctmalls.xyz 1;\n\t.doctornadezhda.ru 1;\n\t.documentbase.net 1;\n\t.documentserver.net 1;\n\t.documentsite.net 1;\n\t.dodge-forum.eu 1;\n\t.doeco.ru 1;\n\t.doggyhealthy.com 1;\n\t.dogovorpodryada.ru 1;\n\t.dogshowsonice.com 1;\n\t.dogsrun.net 1;\n\t.dojki-devki.ru 1;\n\t.dojki-hd.com 1;\n\t.doktoronline.no 1;\n\t.dokumentalkino.net 1;\n\t.dom-international.ru 1;\n\t.domain-tracker.com 1;\n\t.domashneeruporno.com 1;\n\t.domashniy-hotel.ru 1;\n\t.domashniy-recepti.ru 1;\n\t.dombestofferhdd.info 1;\n\t.domcran.net 1;\n\t.domik-derevne.ru 1;\n\t.dominateforex.ml 1;\n\t.domination.ml 1;\n\t.dominterior.org 1;\n\t.dommdom.com 1;\n\t.domovozik.ru 1;\n\t.domoysshop.ru 1;\n\t.dompechey.by 1;\n\t.domsadiogorod.ru 1;\n\t.donvito.unas.cz 1;\n\t.doreenblog.online 1;\n\t.doska-vsem.ru 1;\n\t.dostavka-v-krym.com 1;\n\t.dostavka-v-ukrainu.ru 1;\n\t.dosug-lux.ru 1;\n\t.dosugrostov.site 1;\n\t.download-of-the-warez.blogspot.com 1;\n\t.downloadkakaotalk.com 1;\n\t.downloadmefiranaratb1972.xpg.com.br 1;\n\t.doxyporno.com 1;\n\t.doxysexy.com 1;\n\t.doyouknowtheword-flummox.ml 1;\n\t.dprkboards.com 1;\n\t.draniki.org 1;\n\t.dreamland-bg.com 1;\n\t.dreams-works.net 1;\n\t.drev.biz 1;\n\t.driving.kiev.ua 1;\n\t.drugs-no-rx.info 1;\n\t.drugspowerstore.com 1;\n\t.drugstoreforyou.com 1;\n\t.drupa.com 1;\n\t.druzhbany.ru 1;\n\t.druzhininevgeniy63.blogspot.com 1;\n\t.dspautomations.com 1;\n\t.dstroy.su 1;\n\t.duitbux.info 1;\n\t.dumpsccshop.com 1;\n\t.dvd-famille.com 1;\n\t.dvk-stroi.ru 1;\n\t.dvr.biz.ua 1;\n\t.dzinerstudio.com 1;\n\t.e-avon.ru 1;\n\t.e-buyeasy.com 1;\n\t.e-collantes.com 1;\n\t.e-commerce-seo.com 1;\n\t.e-commerce-seo1.com 1;\n\t.e-kwiaciarz.pl 1;\n\t.e-stroymart.kz 1;\n\t.e2click.com 1;\n\t.eandsgallery.com 1;\n\t.eaptekaplus.ru 1;\n\t.earn-from-articles.com 1;\n\t.earnian-money.info 1;\n\t.earnity-money.info 1;\n\t.easycommerce.cf 1;\n\t.easync.io 1;\n\t.easytuningshop.ru 1;\n\t.eavuinsr.online 1;\n\t.ecblog.xyz 1;\n\t.ecommerce-seo.com 1;\n\t.ecommerce-seo.org 1;\n\t.ecomp3.ru 1;\n\t.econom.co 1;\n\t.ecookna.com.ua 1;\n\t.edakgfvwql.ru 1;\n\t.edelstahlschornstein-123.de 1;\n\t.editmedios.com 1;\n\t.edmed-sonline.com 1;\n\t.ednetstore.xyz 1;\n\t.edshopping.net 1;\n\t.eduardoluis.com 1;\n\t.education-cz.ru 1;\n\t.educhess.ru 1;\n\t.edudocs.net 1;\n\t.eduinfosite.com 1;\n\t.eduserver.net 1;\n\t.eecz.org 1;\n\t.eets.net 1;\n\t.ege-essay.ru 1;\n\t.ege-krasnoyarsk.ru 1;\n\t.egovaleo.it 1;\n\t.egvar.net 1;\n\t.ek-invest.ru 1;\n\t.ekatalog.xyz 1;\n\t.ekaterinburg.xrus.org 1;\n\t.ekbspravka.ru 1;\n\t.eko-gazon.ru 1;\n\t.ekobata.ru 1;\n\t.ekoproekt-kr.ru 1;\n\t.ekspertmed.com 1;\n\t.ekto.ee 1;\n\t.el-nation.com 1;\n\t.elainasblog.xyz 1;\n\t.eldoradorent.az 1;\n\t.election.interferencer.ru 1;\n\t.electric-blue-industries.com 1;\n\t.electricwheelchairsarea.com 1;\n\t.electro-prom.com 1;\n\t.elegante-vitrage.ru 1;\n\t.elektrikovich.ru 1;\n\t.elektrischezi.canalblog.com 1;\n\t.elektrischeziga.livejournal.com 1;\n\t.elektrischezigarette1.blog.pl 1;\n\t.elektrischezigarette1.onsugar.com 1;\n\t.elektrischezigarette2.devhub.com 1;\n\t.elektrischezigarette2.onsugar.com 1;\n\t.elektrischezigarettekaufen2.cowblog.fr 1;\n\t.elektrischezigaretten1.blogse.nl 1;\n\t.elektrischezigaretten2.beeplog.com 1;\n\t.elektronischezi.livejournal.com 1;\n\t.elektronischezigarette2.mex.tl 1;\n\t.elektronischezigarettekaufen1.beeplog.com 1;\n\t.elektronischezigarettekaufen1.myblog.de 1;\n\t.elektronischezigarettekaufen2.tumblr.com 1;\n\t.elektrozigarette1.dreamwidth.org 1;\n\t.elektrozigarette2.webs.com 1;\n\t.elektrozigarette2.wordpressy.pl 1;\n\t.elektrozigarettekaufen1.devhub.com 1;\n\t.elektrozigarettekaufen2.blogse.nl 1;\n\t.elektrozigaretten1.postbit.com 1;\n\t.elektrozigaretten1.tumblr.com 1;\n\t.elektrozigaretten1.webs.com 1;\n\t.elektrozigaretten2.yn.lt 1;\n\t.elementspluss.ru 1;\n\t.elenatkachenko.com.ua 1;\n\t.elentur.com.ua 1;\n\t.elidelcream.weebly.com 1;\n\t.elitesportsadvisor.com 1;\n\t.elizabethbruno.top 1;\n\t.elkacentr.ru 1;\n\t.ellemarket.com 1;\n\t.elmifarhangi.com 1;\n\t.eloconcream.blogspot.com 1;\n\t.eloxal.ru 1;\n\t.elvel.com.ua 1;\n\t.embedle.com 1;\n\t.emctestlab.ru 1;\n\t.emerson-rus.ru 1;\n\t.emicef.com 1;\n\t.empire-market.org 1;\n\t.empire-market.xyz 1;\n\t.empiremarket-link.org 1;\n\t.empiremarketlink24.com 1;\n\t.empirestuff.org 1;\n\t.empis.magix.net 1;\n\t.encmbtia.online 1;\n\t.energomash.net 1;\n\t.energy-ua.com 1;\n\t.energydiet-info.ru 1;\n\t.energydiet24.ru 1;\n\t.energysexy.com 1;\n\t.enginebay.ru 1;\n\t.englishdictionaryfree.com 1;\n\t.englishtopic.ru 1;\n\t.enter-unicredit.ru 1;\n\t.entgetadsincome.info 1;\n\t.envistore.xyz 1;\n\t.eonpal.com 1;\n\t.epcpolo.com 1;\n\t.epicdiving.com 1;\n\t.eraglass.com 1;\n\t.erank.eu 1;\n\t.eredijovon.com 1;\n\t.ereko.ru 1;\n\t.erias.xyz 1;\n\t.eric-artem.com 1;\n\t.ericshome.store 1;\n\t.erinhome.xyz 1;\n\t.ero-video-chat.org 1;\n\t.erofus.online 1;\n\t.eropho.com 1;\n\t.eropho.net 1;\n\t.erot.co 1;\n\t.erotag.com 1;\n\t.eroticheskij-video-chat.ru 1;\n\t.erotikstories.ru 1;\n\t.es-pfrf.ru 1;\n\t.es5.com 1;\n\t.escort-russian.com 1;\n\t.escortplius.com 1;\n\t.eshop.md 1;\n\t.eskei83.com 1;\n\t.esnm.ru 1;\n\t.esoterikforum.at 1;\n\t.essaytags.com 1;\n\t.estdj.com 1;\n\t.este-line.com.ua 1;\n\t.etairikavideo.gr 1;\n\t.etehnika.com.ua 1;\n\t.etotupo.ru 1;\n\t.ets-2-mod.ru 1;\n\t.etsfshop.xyz 1;\n\t.eu-cookie-law-enforcement-4.xyz 1;\n\t.eu-cookie-law-enforcement-5.xyz 1;\n\t.eu-cookie-law-enforcement-6.xyz 1;\n\t.eu-cookie-law-enforcement-7.xyz 1;\n\t.eu-cookie-law-enforcement1.xyz 1;\n\t.eu-cookie-law-enforcement2.xyz 1;\n\t.eu-cookie-law.blogspot.com 1;\n\t.eu-cookie-law.info 1;\n\t.eurocredit.xyz 1;\n\t.euromasterclass.ru 1;\n\t.euronis-free.com 1;\n\t.europages.com.ru 1;\n\t.europeanwatches.ru 1;\n\t.eurosamodelki.ru 1;\n\t.euroskat.ru 1;\n\t.evaashop.ru 1;\n\t.event-tracking.com 1;\n\t.eventiyahall.ru 1;\n\t.evreuxshop.xyz 1;\n\t.exchangeit.gq 1;\n\t.exchanges-bet.com 1;\n\t.exclusive-profit.com 1;\n\t.exdocsfiles.com 1;\n\t.execedmall.xyz 1;\n\t.executehosting.com 1;\n\t.exotic-video-chat.ru 1;\n\t.expdom.com 1;\n\t.expediacustomerservicenumber.online 1;\n\t.expert-find.ru 1;\n\t.expertnaya-ocenka.ru 1;\n\t.explore-prior-web-service.review 1;\n\t.express-vyvoz.ru 1;\n\t.expresstoplivo.ru 1;\n\t.extener.com 1;\n\t.extener.org 1;\n\t.extrabot.com 1;\n\t.extremez.net 1;\n\t.eyes-on-you.ga 1;\n\t.eyessurgery.ru 1;\n\t.ez8motelseaworldsandiego.com 1;\n\t.ezigarettekaufen.myblog.de 1;\n\t.ezigarettekaufen1.hpage.com 1;\n\t.ezigarettekaufen2.blox.pl 1;\n\t.ezigarettekaufen2.mpbloggar.se 1;\n\t.ezigarettekaufen2.yolasite.com 1;\n\t.ezigarettenkaufen1.deviantart.com 1;\n\t.ezigarettenkaufen1.pagina.gr 1;\n\t.ezigarettenkaufen2.dreamwidth.org 1;\n\t.ezigarettenshop1.yolasite.com 1;\n\t.ezigarettenshop2.myblog.de 1;\n\t.ezigarettenshop2.postbit.com 1;\n\t.ezigaretteshop.webs.com 1;\n\t.ezigaretteshop2.mywapblog.com 1;\n\t.ezigaretteshop2.vefblog.net 1;\n\t.ezofest.sk 1;\n\t.ezrvrentals.com 1;\n\t.f-loaded.de 1;\n\t.f-online.de 1;\n\t.f00kclan.de 1;\n\t.f012.de 1;\n\t.f07.de 1;\n\t.f0815.de 1;\n\t.f1nder.org 1;\n\t.facebook-mobile.xyz 1;\n\t.fainaidea.com 1;\n\t.faithe.top 1;\n\t.falco3d.com 1;\n\t.falcoware.com 1;\n\t.family1st.ca 1;\n\t.familyholiday.ml 1;\n\t.familyphysician.ru 1;\n\t.fanoboi.com 1;\n\t.fartunabest.ru 1;\n\t.fashion-mk.net 1;\n\t.fashiong.ru 1;\n\t.fashionindeed.ml 1;\n\t.fast-wordpress-start.com 1;\n\t.fastgg.net 1;\n\t.fatrizscae.online 1;\n\t.favorcosmetics.com 1;\n\t.favoritemoney.ru 1;\n\t.favoritki-msk.ru 1;\n\t.favornews.com 1;\n\t.fazika.ru 1;\n\t.fba-mexico.com 1;\n\t.fbdownloader.com 1;\n\t.fbfreegifts.com 1;\n\t.fc-007.com 1;\n\t.fealq.com 1;\n\t.feargames.ru 1;\n\t.feedback.sharemyfile.ru 1;\n\t.feedouble.com 1;\n\t.feedouble.net 1;\n\t.feel-planet.com 1;\n\t.feeriaclub.ru 1;\n\t.feiacmr.shop 1;\n\t.feminist.org.ua 1;\n\t.femmesdenudees.com 1;\n\t.fenoyl.batcave.net 1;\n\t.ferieboligkbh.dk 1;\n\t.fermersovet.ru 1;\n\t.fetishinside.com 1;\n\t.fialka.tomsk.ru 1;\n\t.fidalsa.de 1;\n\t.fierrohack.ru 1;\n\t.figensahin.com 1;\n\t.filesclub.net 1;\n\t.filesdatabase.net 1;\n\t.filesvine.com 1;\n\t.film-one.ru 1;\n\t.filmetricsasia.com 1;\n\t.filmgo.ru 1;\n\t.filmidivx.com 1;\n\t.films2018.com 1;\n\t.filter-ot-zheleza.ru 1;\n\t.financial-simulation.com 1;\n\t.finansov.info 1;\n\t.findacheaplawyers.com 1;\n\t.finder.cool 1;\n\t.findercarphotos.com 1;\n\t.fineblog.top 1;\n\t.finstroy.net 1;\n\t.finteks.ru 1;\n\t.firma-legion.ru 1;\n\t.firmgeo.xyz 1;\n\t.firstblog.top 1;\n\t.fit-discount.ru 1;\n\t.fitness-video.net 1;\n\t.fitodar.com.ua 1;\n\t.fiuagts.online 1;\n\t.fiuxy.com 1;\n\t.fiverr.com 1;\n\t.fix-website-errors.com 1;\n\t.fizika.tv 1;\n\t.flash4fun.com 1;\n\t.flavors.me 1;\n\t.flex4launch.ru 1;\n\t.flexderek.com 1;\n\t.floating-share-buttons.com 1;\n\t.flooringinstallation-edmonton.com 1;\n\t.flowersbazar.com 1;\n\t.flowertherapy.ru 1;\n\t.flowwwers.com 1;\n\t.flprog.com 1;\n\t.flyblog.xyz 1;\n\t.flytourisme.org 1;\n\t.fm-upgrade.ru 1;\n\t.fmgrupe.it 1;\n\t.foojo.net 1;\n\t.for-marketersy.info 1;\n\t.for-your.website 1;\n\t.forensicpsychiatry.ru 1;\n\t.forex-indextop20.ru 1;\n\t.forex-procto.ru 1;\n\t.forex.osobye.ru 1;\n\t.forex21.ru 1;\n\t.forexgb.ru 1;\n\t.forexunion.net 1;\n\t.forminecrafters.ru 1;\n\t.forms-mtm.ru 1;\n\t.forpostlock.ru 1;\n\t.forsex.info 1;\n\t.fortwosmartcar.pw 1;\n\t.forum-engineering.ru 1;\n\t.forum.poker4life.ru 1;\n\t.forum.tvmir.org 1;\n\t.forum20.smailik.org 1;\n\t.forum69.info 1;\n\t.forums.toucharcade.com 1;\n\t.fotoxxxru.com 1;\n\t.foxinsocks.ru 1;\n\t.foxjuegos.com 1;\n\t.foxtechfpv.com 1;\n\t.foxweber.com 1;\n\t.fpclub.ru 1;\n\t.fr.netlog.com 1;\n\t.francaise-poesie.com 1;\n\t.frankofficial.ru 1;\n\t.frauplus.ru 1;\n\t.free-fb-traffic.com 1;\n\t.free-fbook-traffic.com 1;\n\t.free-floating-buttons.com 1;\n\t.free-games-download.falcoware.com 1;\n\t.free-share-buttons-aaa.xyz 1;\n\t.free-share-buttons-bbb.xyz 1;\n\t.free-share-buttons-ccc.xyz 1;\n\t.free-share-buttons-ddd.xyz 1;\n\t.free-share-buttons-eee.xyz 1;\n\t.free-share-buttons-fff.xyz 1;\n\t.free-share-buttons.blogspot.com 1;\n\t.free-share-buttons.co 1;\n\t.free-share-buttons.com 1;\n\t.free-share-buttons.top 1;\n\t.free-social-buttons-aaa.xyz 1;\n\t.free-social-buttons-bbb.xyz 1;\n\t.free-social-buttons-ccc.xyz 1;\n\t.free-social-buttons-ddd.xyz 1;\n\t.free-social-buttons-eee.xyz 1;\n\t.free-social-buttons-fff.xyz 1;\n\t.free-social-buttons-hhh.xyz 1;\n\t.free-social-buttons-iii.xyz 1;\n\t.free-social-buttons.com 1;\n\t.free-social-buttons.org 1;\n\t.free-social-buttons.xyz 1;\n\t.free-social-buttons1.xyz 1;\n\t.free-social-buttons2.xyz 1;\n\t.free-social-buttons3.xyz 1;\n\t.free-social-buttons4.xyz 1;\n\t.free-social-buttons5.xyz 1;\n\t.free-social-buttons6.xyz 1;\n\t.free-social-buttons7.xyz 1;\n\t.free-traffic.xyz 1;\n\t.free-video-chat.ru 1;\n\t.free-video-tool.com 1;\n\t.free-website-traffic.com 1;\n\t.freeasecret.com 1;\n\t.freenode.info 1;\n\t.freeseedsonline.com 1;\n\t.freetangodownload.com 1;\n\t.freewebs.com 1;\n\t.freewhatsappload.com 1;\n\t.freewlan.info 1;\n\t.freshberry.com.ua 1;\n\t.freshnails.com.ua 1;\n\t.front.ru 1;\n\t.front.to 1;\n\t.fsalas.com 1;\n\t.fsin-pokypka.ru 1;\n\t.ftns.ru 1;\n\t.fuck-paid-share-buttons.xyz 1;\n\t.fuel-gas.com 1;\n\t.fullzdumps.cc 1;\n\t.fungirlsgames.net 1;\n\t.funnypica.com 1;\n\t.furniture-ukraine.com 1;\n\t.furniturehomewares.com 1;\n\t.futbolkisales.ru 1;\n\t.fvetgoods.xyz 1;\n\t.fxtips.ru 1;\n\t.g7m.pl 1;\n\t.gabeshop.ru 1;\n\t.gabysuniqueboutique.com 1;\n\t.gael-s.ru 1;\n\t.gagrasector.ru 1;\n\t.galaxy-family.ru 1;\n\t.galaxyflowers.ru 1;\n\t.galblog.top 1;\n\t.galeon.com 1;\n\t.gamblingpp.ru 1;\n\t.game-mmorpg.net 1;\n\t.game-top.su 1;\n\t.game300.ru 1;\n\t.games.kolossale.ru 1;\n\t.gammatraffic.com 1;\n\t.gandikapper.ru 1;\n\t.gaokr.xyz 1;\n\t.gap-search.com 1;\n\t.garantprava.com 1;\n\t.gardene.ru 1;\n\t.gasvleningrade.ru 1;\n\t.gatwick.ru 1;\n\t.gays-video-chat.ru 1;\n\t.gaz-voshod.ru 1;\n\t.gazel-72.ru 1;\n\t.gazobeton-p.com.ua 1;\n\t.gazoblok.net.ua 1;\n\t.gbh-invest.ru 1;\n\t.gcmx.net 1;\n\t.gcup.ru 1;\n\t.gdcentre.ru 1;\n\t.gearcraft.us 1;\n\t.gearsadspromo.club 1;\n\t.gelezki.com 1;\n\t.geliyballon.ru 1;\n\t.gelstate.ru 1;\n\t.generalporn.org 1;\n\t.genericlowlatencyasiodriverhq.aircus.com 1;\n\t.geniusfood.co.uk 1;\n\t.gentamicineyedrops.blogspot.com 1;\n\t.georgeblog.online 1;\n\t.gepatit-info.top 1;\n\t.germes-trans.com 1;\n\t.get-best-copywriting-service.stream 1;\n\t.get-clickir.info 1;\n\t.get-clickize.info 1;\n\t.get-free-social-traffic.com 1;\n\t.get-free-traffic-now.com 1;\n\t.get-more-freeen-visitors.info 1;\n\t.get-more-freeer-visitors.info 1;\n\t.get-more-freeish-visitors.info 1;\n\t.get-more-freeize-visitors.info 1;\n\t.get-more-freele-visitors.info 1;\n\t.get-morebit-free-visitors.info 1;\n\t.get-prime-seo-services.review 1;\n\t.get-seo-help.com 1;\n\t.get-your-social-buttons.info 1;\n\t.getaadsincome.info 1;\n\t.getadsincomeian.info 1;\n\t.getadsincomely.info 1;\n\t.getadsincomeof.info 1;\n\t.getbottraffic4free.club 1;\n\t.getbottraffic4free.host 1;\n\t.getbottraffic4free.xyz 1;\n\t.getbytadsincome.info 1;\n\t.getfy-click.info 1;\n\t.getism-more-free-visitors.info 1;\n\t.getity-more-free-visitors.info 1;\n\t.getityadsincome.info 1;\n\t.getive-more-free-visitors.info 1;\n\t.getlamborghini.ga 1;\n\t.getoutofdebtfree.org 1;\n\t.getprismatic.com 1;\n\t.getpy-click.info 1;\n\t.getpy-more-free-visitors.info 1;\n\t.getrichquick.ml 1;\n\t.getrichquickly.info 1;\n\t.getyourprofit.net 1;\n\t.gevciamst.online 1;\n\t.gezlev.com.ua 1;\n\t.gfaq.ru 1;\n\t.ghazel.ru 1;\n\t.ghernnqr.skyrock.com 1;\n\t.gheus.altervista.org 1;\n\t.ghostvisitor.com 1;\n\t.gidonline.one 1;\n\t.gidro-partner.ru 1;\n\t.giftbig.ru 1;\n\t.girlporn.ru 1;\n\t.girls-ufa.ru 1;\n\t.girlsatgames.ru 1;\n\t.gk-atlant.info 1;\n\t.gk-casino.fun 1;\n\t.gk-casino.online 1;\n\t.gk-casino.ru 1;\n\t.gk-casino.site 1;\n\t.gk-casino.space 1;\n\t.gk-casino.website 1;\n\t.gkvector.ru 1;\n\t.glall.ru 1;\n\t.glass-msk.ru 1;\n\t.glavprofit.ru 1;\n\t.glcomputers.ru 1;\n\t.glktfw.net 1;\n\t.global-smm.ru 1;\n\t.globalscam.ga 1;\n\t.globatur.ru 1;\n\t.globetrotting-culture.ru 1;\n\t.glogow.pl 1;\n\t.glopages.ru 1;\n\t.go2album.com 1;\n\t.gobongo.info 1;\n\t.goforexvps.com 1;\n\t.gogps.me 1;\n\t.gojiberriess.apishops.ru 1;\n\t.gok-kasten.net 1;\n\t.goldandcard.ru 1;\n\t.golden-catalog.pro 1;\n\t.golden-praga.ru 1;\n\t.goldenggames.com 1;\n\t.goldvaultmetals.com 1;\n\t.golmau.host.sk 1;\n\t.golyedevushki.com 1;\n\t.gonextmedia.com 1;\n\t.good-potolok.ru 1;\n\t.goodbyecellulite.ru 1;\n\t.goodcoffeepremium.com 1;\n\t.goodhumor24.com 1;\n\t.goodnightjournal.com 1;\n\t.goodprotein.ru 1;\n\t.google-liar.ru 1;\n\t.googlefeud.com 1;\n\t.googlemare.com 1;\n\t.googlsucks.com 1;\n\t.gorabagrata.ru 1;\n\t.gorgaz.info 1;\n\t.goroda-vsego-mira.ru 1;\n\t.gorodservis.ru 1;\n\t.gosreg.amchs.ru 1;\n\t.gototal.co.nz 1;\n\t.gourcy.altervista.org 1;\n\t.goyua.xyz 1;\n\t.gq-catalog.gq 1;\n\t.graceonline.shop 1;\n\t.grafaman.ru 1;\n\t.grand-chlen.ru 1;\n\t.graphid.com 1;\n\t.gratuitbaise.com 1;\n\t.greatblog.top 1;\n\t.greatgrace.ru 1;\n\t.greentechsy.com 1;\n\t.grizzlysgrill.com 1;\n\t.groshi-kredut.com.ua 1;\n\t.groupmoney.ru 1;\n\t.growmyfunds.ca 1;\n\t.growshop.es 1;\n\t.growth-hackingan.info 1;\n\t.growth-hackingead.info 1;\n\t.growth-hackingeads.info 1;\n\t.growth-hackingor.info 1;\n\t.growth-hackingy.info 1;\n\t.grupografico-pilar.com.ar 1;\n\t.gruzchiki24.ru 1;\n\t.gsbs.com.ua 1;\n\t.gsmlab.pl 1;\n\t.gsmtlf.ru 1;\n\t.gta-club.ru 1;\n\t.gta-top.ru 1;\n\t.gttpsale.xyz 1;\n\t.guardlink.com 1;\n\t.guardlink.org 1;\n\t.guge.io 1;\n\t.guidetopetersburg.com 1;\n\t.gungamesz.com 1;\n\t.guruofcasino.com 1;\n\t.gwhwpxbw.bloger.index.hr 1;\n\t.gxcb.net 1;\n\t.h2monline.com 1;\n\t.hacktougroup.ru 1;\n\t.hagirkblog.space 1;\n\t.hahashka.ru 1;\n\t.haikuware.com 1;\n\t.halat.xyz 1;\n\t.halefa.com 1;\n\t.hamyshop.xyz 1;\n\t.handicapvansarea.com 1;\n\t.handicapvantoday.com 1;\n\t.handsandlegs.ru 1;\n\t.hanink.biz.ly 1;\n\t.hankspring.xyz 1;\n\t.happysong.ru 1;\n\t.hard-porn.mobi 1;\n\t.hardcore.anzwers.net 1;\n\t.hardosale.xyz 1;\n\t.harpro.net 1;\n\t.havepussy.com 1;\n\t.hawaiisurf.com 1;\n\t.hazardky.net 1;\n\t.hd1080film.ru 1;\n\t.hd720kino.ru 1;\n\t.hdfreeporno.net 1;\n\t.hdhc.site 1;\n\t.hdmoviecamera.net 1;\n\t.hdmoviecams.com 1;\n\t.hdmoviecams.net 1;\n\t.hdsmartvideoreg.ru 1;\n\t.headpharmacy.com 1;\n\t.healbio.ru 1;\n\t.healgastro.com 1;\n\t.healing-dysplasia.ru 1;\n\t.healmytrauma.info 1;\n\t.healthhacks.ru 1;\n\t.heeha.net 1;\n\t.hem.passagen.se 1;\n\t.hentai-manga.porn 1;\n\t.heroero.com 1;\n\t.hexometer.com 1;\n\t.hifidesign.ru 1;\n\t.hilaryblog.top 1;\n\t.hill-accent-withdraw-sentiment.info 1;\n\t.himandmall.xyz 1;\n\t.hit-kino.ru 1;\n\t.hitree.shop 1;\n\t.hitsbox.info 1;\n\t.hiwibyh.bugs3.com 1;\n\t.hiwpro.xyz 1;\n\t.hkdiiohi.skyrock.com 1;\n\t.hkjrsale.xyz 1;\n\t.hmmm.cz 1;\n\t.hmywwogw.bloger.index.hr 1;\n\t.hobild.net 1;\n\t.hol.es 1;\n\t.holiday-shop.ru 1;\n\t.holidaypics.org 1;\n\t.holistickenko.com 1;\n\t.holodkovich.com 1;\n\t.home.myplaycity.com 1;\n\t.homeafrikalike.tk 1;\n\t.homedo.fabpage.com 1;\n\t.homeinns.com 1;\n\t.homelygarden.com 1;\n\t.homemade.gq 1;\n\t.homemypicture.tk 1;\n\t.honesty-homemade-grizzly-humanlike.com 1;\n\t.hongfanji.com 1;\n\t.hoporno.com 1;\n\t.horoshieokna.com 1;\n\t.host-protection.com 1;\n\t.hostcritique.com 1;\n\t.hoste.octopis.com 1;\n\t.hostiman.ru 1;\n\t.hosting-tracker.com 1;\n\t.hostingclub.lk 1;\n\t.hostsshop.ru 1;\n\t.hotblognetwork.com 1;\n\t.hotdl.in 1;\n\t.hotspot.ipb.co.id 1;\n\t.hottour.com 1;\n\t.hotwatersdamps.com 1;\n\t.houdom.net 1;\n\t.housedesigning.ru 1;\n\t.housediz.com 1;\n\t.housekuba.org 1;\n\t.housemilan.ru 1;\n\t.houseofgaga.ru 1;\n\t.houseofrose.com 1;\n\t.houston-vikings.com 1;\n\t.how-i-build-website.review 1;\n\t.how-i-promote-website.review 1;\n\t.how-to-buy-bitcoin.club 1;\n\t.how-to-buy-bitcoin.stream 1;\n\t.how-to-buy-bitcoins-cheap.party 1;\n\t.how-to-buy-bitcoins-cheap.review 1;\n\t.how-to-buy-bitcoins-cheap.stream 1;\n\t.how-to-buy-bitcoins-cheap.trade 1;\n\t.how-to-buy-bitcoins.stream 1;\n\t.how-to-buy-bitcoins.trade 1;\n\t.how-to-earn-quick-money.com 1;\n\t.how-to-promote-website.faith 1;\n\t.how-to-promote-website.review 1;\n\t.howlongdoestizanidinestayinyoursystem.blogspot.com 1;\n\t.howmuchdoestizanidinecost.blogspot.com 1;\n\t.howopen.ru 1;\n\t.howtostopreferralspam.com 1;\n\t.howtostopreferralspam.eu 1;\n\t.hoztorg-opt.ru 1;\n\t.hplaserjetpdriver8y.pen.io 1;\n\t.hptwaakw.blog.fc2.com 1;\n\t.hrtonline.xyz 1;\n\t.hscsscotland.com 1;\n\t.hseipaa.kz 1;\n\t.hsoutdoor.com 1;\n\t.hspline.com 1;\n\t.https-legalrc.biz 1;\n\t.hugblog.xyz 1;\n\t.huhn.altervista.org 1;\n\t.hulfingtonpost.com 1;\n\t.hully.altervista.org 1;\n\t.humanorightswatch.org 1;\n\t.hundejo.com 1;\n\t.huntdown.info 1;\n\t.husky-shop.cz 1;\n\t.hustoon.over-blog.com 1;\n\t.hvd-store.com 1;\n\t.hydra-2019.ru 1;\n\t.hydra-2020.online 1;\n\t.hydra-2020.ru 1;\n\t.hydra-centr.fun 1;\n\t.hydra-dealer.com 1;\n\t.hydra-guide.org 1;\n\t.hydra-new.online 1;\n\t.hydra-onion-faq.com 1;\n\t.hydra-pc.com 1;\n\t.hydra-shop.org 1;\n\t.hydra-site.ru 1;\n\t.hydra-slon.net 1;\n\t.hydra-vhod2020.com 1;\n\t.hydra-zerkalo20.com 1;\n\t.hydra.online 1;\n\t.hydra1717.com 1;\n\t.hydra2.market 1;\n\t.hydra2020.top 1;\n\t.hydra2020gate.com 1;\n\t.hydra2020market.com 1;\n\t.hydra2020onion.com 1;\n\t.hydra2020ru.com 1;\n\t.hydra2020zerkala.com 1;\n\t.hydra2020zerkalo.com 1;\n\t.hydra20onion.com 1;\n\t.hydra20online.com 1;\n\t.hydra20original.com 1;\n\t.hydra2use.com 1;\n\t.hydra2zahod.com 1;\n\t.hydraena.com 1;\n\t.hydrahow.com 1;\n\t.hydrahudra.com 1;\n\t.hydraland.net 1;\n\t.hydramarket2020.com 1;\n\t.hydramirror2020.com 1;\n\t.hydranten.net 1;\n\t.hydraonion2019.net 1;\n\t.hydrarusmarket.com 1;\n\t.hydraruz-2020.com 1;\n\t.hydraruzonion2020.com 1;\n\t.hydraruzonionx.ru 1;\n\t.hydraruzxpnew4af.com.co 1;\n\t.hydraruzxpnew4af.ink 1;\n\t.hydraruzxpnew4aff.ru 1;\n\t.hydraruzxpwnew4afonion.com 1;\n\t.hydraulicoilcooler.net 1;\n\t.hydrauliczny.com 1;\n\t.hydravizoficial.info 1;\n\t.hydrazerkalo2019.net 1;\n\t.hydrazerkalo2020.com 1;\n\t.hydropump.su 1;\n\t.hyip-zanoza.me 1;\n\t.hyipmanager.in 1;\n\t.i-spare.ru 1;\n\t.ialgramer.shop 1;\n\t.iamsport.org 1;\n\t.ib-homecredit.ru 1;\n\t.ib-rencredit.ru 1;\n\t.iblogpress.xyz 1;\n\t.iceton.net 1;\n\t.ico.re 1;\n\t.ictizanidinehcl4mg.blogspot.com 1;\n\t.idc.com.ua 1;\n\t.idealtits.net 1;\n\t.ideayz.com 1;\n\t.idegenvezeto.eu 1;\n\t.ideibiznesa2015.ru 1;\n\t.ieeeoutlet.xyz 1;\n\t.ifirestarter.ru 1;\n\t.ifmo.ru 1;\n\t.igadgetsworld.com 1;\n\t.igamingtop.com 1;\n\t.igru-xbox.net 1;\n\t.ilikevitaly.com 1;\n\t.illagedusexe.com 1;\n\t.ilmen.net 1;\n\t.iloveitaly.ro 1;\n\t.iloveitaly.ru 1;\n\t.ilovevitaly.co 1;\n\t.ilovevitaly.com 1;\n\t.ilovevitaly.info 1;\n\t.ilovevitaly.org 1;\n\t.ilovevitaly.ro 1;\n\t.ilovevitaly.ru 1;\n\t.ilovevitaly.xyz 1;\n\t.imediadesk.com 1;\n\t.iminent.com 1;\n\t.immigrational.info 1;\n\t.immobiliaremassaro.com 1;\n\t.immobilieralgerie.net 1;\n\t.imperia31.ru 1;\n\t.imperiafilm.ru 1;\n\t.impotentik.com 1;\n\t.impresagaia.it 1;\n\t.in-mostbet.ru 1;\n\t.in-sto.ru 1;\n\t.inbabes.sexushost.com 1;\n\t.inboxdollars.com 1;\n\t.incanto.in.ua 1;\n\t.incitystroy.ru 1;\n\t.incomekey.net 1;\n\t.incoonline.xyz 1;\n\t.increasewwwtraffic.info 1;\n\t.indetiske.ya.ru 1;\n\t.indo-export.ru 1;\n\t.inet-shop.su 1;\n\t.infazavr.ru 1;\n\t.infektsii.com 1;\n\t.infobabki.ru 1;\n\t.infodocsportal.com 1;\n\t.infogame.name 1;\n\t.infokonkurs.ru 1;\n\t.inform-ua.info 1;\n\t.ingramreed.xyz 1;\n\t.inmoll.com 1;\n\t.innodgfdriverhm.aircus.com 1;\n\t.insider.pro 1;\n\t.installspartners.com 1;\n\t.instasexyblog.com 1;\n\t.insultu-net.ru 1;\n\t.intelhdgraphicsgtdrive6w.metroblog.com 1;\n\t.interferencer.ru 1;\n\t.interfucks.net 1;\n\t.intermesh.net 1;\n\t.internet-apteka.ru 1;\n\t.intex-air.ru 1;\n\t.intimchats.ru 1;\n\t.intimver.3dgayxxx.com 1;\n\t.invest-pamm.ru 1;\n\t.investingclub.ru 1;\n\t.investpamm.ru 1;\n\t.investsuccess.org 1;\n\t.invivo.hu 1;\n\t.inzn.ru 1;\n\t.io9.com 1;\n\t.ipod-app-reviews.com 1;\n\t.ipostroika.ru 1;\n\t.iqoption-bin.com 1;\n\t.iqoption.com 1;\n\t.iqoption.pro 1;\n\t.iradiology.ru 1;\n\t.iridsale.xyz 1;\n\t.ishgetadsincome.info 1;\n\t.isistaylorporn.info 1;\n\t.iskalko.ru 1;\n\t.iskussnica.ru 1;\n\t.isotoner.com 1;\n\t.ispaniya-costa-blanca.ru 1;\n\t.istanbulit.com 1;\n\t.istizanidineacontrolledsubstance.blogspot.com 1;\n\t.istizanidineanarcoticdrug.blogspot.com 1;\n\t.istizanidineanopiate.blogspot.com 1;\n\t.istizanidinelikexanax.blogspot.com 1;\n\t.istock-mebel.ru 1;\n\t.it-max.com.ua 1;\n\t.it-worlds.com 1;\n\t.itbc.kiev.ua 1;\n\t.itrevolution.cf 1;\n\t.itronics.ca 1;\n\t.itsdp3.com 1;\n\t.ivegetadsincome.info 1;\n\t.iyfsearch.com 1;\n\t.izamorfix.ru 1;\n\t.izhevsk.xrus.org 1;\n\t.izhevskjob.xyz 1;\n\t.izhstrelok.ru 1;\n\t.izi24.ru 1;\n\t.j-times.ru 1;\n\t.jabug.xyz 1;\n\t.jacblog.xyz 1;\n\t.jackonline.store 1;\n\t.janemill.xyz 1;\n\t.janettabridal.com 1;\n\t.japfm.com 1;\n\t.jasonpartington.com 1;\n\t.jav-fetish.com 1;\n\t.jav-fetish.site 1;\n\t.jav-idol.com 1;\n\t.javatex.co.id 1;\n\t.javcoast.com 1;\n\t.javlibrary.cc 1;\n\t.jaxcube.info 1;\n\t.jazzstyle4us.com 1;\n\t.jeffbullas.xyz 1;\n\t.jennyfire.ru 1;\n\t.jikem.com 1;\n\t.jintub.com 1;\n\t.jjbabskoe.ru 1;\n\t.job-opros.ru 1;\n\t.job-prosto.ru 1;\n\t.jobfree24.pl 1;\n\t.jobgirl24.ru 1;\n\t.jobius.com.ua 1;\n\t.johnnyhaley.top 1;\n\t.joinandplay.me 1;\n\t.joingames.org 1;\n\t.josephineblog.top 1;\n\t.journalhome.com 1;\n\t.joyceblog.top 1;\n\t.joycee.xyz 1;\n\t.judyandsimon.com 1;\n\t.juliadiets.com 1;\n\t.juliaworld.net 1;\n\t.jumkite.com 1;\n\t.justkillingti.me 1;\n\t.justprofit.xyz 1;\n\t.jweber.ru 1;\n\t.jwss.cc 1;\n\t.jyrxd.com 1;\n\t.kaac.ru 1;\n\t.kabbalah-red-bracelets.com 1;\n\t.kabinet-5ka.ru 1;\n\t.kabinet-alfaclick.ru 1;\n\t.kabinet-binbank.ru 1;\n\t.kabinet-card-5ka.ru 1;\n\t.kabinet-click-alfabank.ru 1;\n\t.kabinet-esia-gosuslugi.ru 1;\n\t.kabinet-faberlic.ru 1;\n\t.kabinet-gosuslugi.ru 1;\n\t.kabinet-ipoteka-domclick.ru 1;\n\t.kabinet-karta-5ka.ru 1;\n\t.kabinet-lk-megafon.ru 1;\n\t.kabinet-lk-rt.ru 1;\n\t.kabinet-login-mts.ru 1;\n\t.kabinet-mil.ru 1;\n\t.kabinet-mos.ru 1;\n\t.kabinet-my-beeline.ru 1;\n\t.kabinet-my-pochtabank.ru 1;\n\t.kabinet-nalog.ru 1;\n\t.kabinet-online-bm.ru 1;\n\t.kabinet-online-open.ru 1;\n\t.kabinet-online-rsb.ru 1;\n\t.kabinet-online-rshb.ru 1;\n\t.kabinet-online-sberbank.ru 1;\n\t.kabinet-online-sovcombank.ru 1;\n\t.kabinet-online-vtb.ru 1;\n\t.kabinet-pfr.ru 1;\n\t.kabinet-pfrf.ru 1;\n\t.kabinet-platon.ru 1;\n\t.kabinet-qiwi.ru 1;\n\t.kabinet-tele2.ru 1;\n\t.kabinet-tinkoff.ru 1;\n\t.kabinet-tricolor.ru 1;\n\t.kabinet-ttk.ru 1;\n\t.kabinet-vtb24.ru 1;\n\t.kaircm.shop 1;\n\t.kakablog.net 1;\n\t.kakadu-interior.com.ua 1;\n\t.kakworldoftanks.ru 1;\n\t.kalb.ru 1;\n\t.kambasoft.com 1;\n\t.kamin-sam.ru 1;\n\t.kamorel.com 1;\n\t.kanakox.com 1;\n\t.karachev-city.ru 1;\n\t.karadene.com 1;\n\t.karapuz.org.ua 1;\n\t.karusel-market.ru 1;\n\t.katjimej.blog.fc2.com 1;\n\t.katrd.xyz 1;\n\t.katushka.net 1;\n\t.kaz.kz 1;\n\t.kazan.xrus.org 1;\n\t.kazka.ru 1;\n\t.kazlenta.kz 1;\n\t.kazrent.com 1;\n\t.kellyonline.xyz 1;\n\t.kendrablog.online 1;\n\t.kenyagoods.xyz 1;\n\t.kerch.site 1;\n\t.ketrzyn.pl 1;\n\t.kevblog.top 1;\n\t.kevinsnow.online 1;\n\t.kexihao.xyz 1;\n\t.keywords-monitoring-success.com 1;\n\t.keywords-monitoring-your-success.com 1;\n\t.kharkov.ua 1;\n\t.kharlov.ua 1;\n\t.kidd.reunionwatch.com 1;\n\t.kierowca-praca.pl 1;\n\t.kiev.ua 1;\n\t.kimblog.top 1;\n\t.kinnarimasajes.com 1;\n\t.kino-filmi.com 1;\n\t.kino-fun.ru 1;\n\t.kino-key.info 1;\n\t.kino2018.cc 1;\n\t.kinobaks.com 1;\n\t.kinobum.org 1;\n\t.kinoflux.net 1;\n\t.kinohit1.ru 1;\n\t.kinopolet.net 1;\n\t.kinosed.net 1;\n\t.kinostar.online 1;\n\t.kinotorka.ru 1;\n\t.kiprinform.com 1;\n\t.kiwe-analytics.com 1;\n\t.kiwi237au.tk 1;\n\t.kiyany-za-spravedluvist.com.ua 1;\n\t.kletkimehan.ru 1;\n\t.klfd.net 1;\n\t.kndxbkdx.bloger.index.hr 1;\n\t.knigonosha.net 1;\n\t.kochanelli.com 1;\n\t.kolcasale.xyz 1;\n\t.koleso24.com.ua 1;\n\t.kollekcioner.ru 1;\n\t.kolotiloff.ru 1;\n\t.komp-pomosch.ru 1;\n\t.komputernaya-pomosh-moscow.ru 1;\n\t.komputers-best.ru 1;\n\t.komukc.com.ua 1;\n\t.kongoultry.net 1;\n\t.konkursov.net 1;\n\t.koopilka.com 1;\n\t.koptims.tiu.ru 1;\n\t.koronirealestate.gr 1;\n\t.kosova.de 1;\n\t.kosunnyclub.com 1;\n\t.kotaku.com 1;\n\t.kozhakoshek.com 1;\n\t.kozhasobak.com 1;\n\t.kozhniebolezni.com 1;\n\t.kpcconline.xyz 1;\n\t.krafte.ru 1;\n\t.krasivoe-hd.com 1;\n\t.krasivoe-hd.net 1;\n\t.krasnodar-avtolombard.ru 1;\n\t.krasnodar.xrus.org 1;\n\t.krasota-zdorovie.pw 1;\n\t.krasota.ru 1;\n\t.kredutu.com.ua 1;\n\t.kredytbank.com.ua 1;\n\t.kruiz-sochi.ru 1;\n\t.krumble-adsde.info 1;\n\t.krumble-adsen.info 1;\n\t.krumble-adsic.info 1;\n\t.krumbleent-ads.info 1;\n\t.krynica.info 1;\n\t.ktotut.net 1;\n\t.kumuk.info 1;\n\t.kupit-adenu.ru 1;\n\t.kursy-ege.ru 1;\n\t.kustanay.kz 1;\n\t.kvartir-remont.biz 1;\n\t.kvartira-sutochno.com 1;\n\t.kvartiry-remont.ucoz.ru 1;\n\t.kw21.org 1;\n\t.l2soft.eu 1;\n\t.la-fa.ru 1;\n\t.labguamec.online 1;\n\t.labplus.ru 1;\n\t.labvis.host.sk 1;\n\t.ladov.ru 1;\n\t.lafppshop.xyz 1;\n\t.laitrcus.online 1;\n\t.lakiikraski.ru 1;\n\t.lalalove.ru 1;\n\t.lambreshop.xyz 1;\n\t.laminat.com.ua 1;\n\t.lampokrat.ws 1;\n\t.lanasshop.ru 1;\n\t.landliver.org 1;\n\t.landoftracking.com 1;\n\t.languagecode.com 1;\n\t.lankarns.com 1;\n\t.laparfumotec.com 1;\n\t.lapitec.eu 1;\n\t.laptop-4-less.com 1;\n\t.laptoper.net 1;\n\t.larchik.net 1;\n\t.larutti.ru 1;\n\t.laudit.ru 1;\n\t.law-check-eight.xyz 1;\n\t.law-check-nine.xyz 1;\n\t.law-check-seven.xyz 1;\n\t.law-check-two.xyz 1;\n\t.law-enforcement-aa.xyz 1;\n\t.law-enforcement-bb.xyz 1;\n\t.law-enforcement-bot-aa.xyz 1;\n\t.law-enforcement-bot-bb.xyz 1;\n\t.law-enforcement-bot-cc.xyz 1;\n\t.law-enforcement-bot-dd.xyz 1;\n\t.law-enforcement-bot-ee.xyz 1;\n\t.law-enforcement-bot-ff.xyz 1;\n\t.law-enforcement-bot-hh.xyz 1;\n\t.law-enforcement-bot-ii.xyz 1;\n\t.law-enforcement-cc.xyz 1;\n\t.law-enforcement-check-eight.xyz 1;\n\t.law-enforcement-check-five.xyz 1;\n\t.law-enforcement-check-four.xyz 1;\n\t.law-enforcement-check-nine.xyz 1;\n\t.law-enforcement-check-one.xyz 1;\n\t.law-enforcement-check-six.xyz 1;\n\t.law-enforcement-check-three.xyz 1;\n\t.law-enforcement-check-two.xyz 1;\n\t.law-enforcement-dd.xyz 1;\n\t.law-enforcement-ee.xyz 1;\n\t.law-enforcement-eight.xyz 1;\n\t.law-enforcement-ff.xyz 1;\n\t.law-enforcement-five.xyz 1;\n\t.law-enforcement-four.xyz 1;\n\t.law-enforcement-gg.xyz 1;\n\t.law-enforcement-hh.xyz 1;\n\t.law-enforcement-one.xyz 1;\n\t.law-enforcement-seven.xyz 1;\n\t.law-enforcement-three.xyz 1;\n\t.law-enforcement-two.xyz 1;\n\t.law-five.xyz 1;\n\t.law-four.xyz 1;\n\t.law-one.xyz 1;\n\t.law-six.xyz 1;\n\t.law-three.xyz 1;\n\t.law-two.xyz 1;\n\t.lawrenceblog.online 1;\n\t.laxdrills.com 1;\n\t.layola.biz.tc 1;\n\t.lazy-z.com 1;\n\t.lcecshop.xyz 1;\n\t.leadwayau.com 1;\n\t.leboard.ru 1;\n\t.lebowmall.xyz 1;\n\t.ledalfa.by 1;\n\t.leddjc.net 1;\n\t.ledis.top 1;\n\t.ledpolice.ru 1;\n\t.ledx.by 1;\n\t.leeboyrussia.com 1;\n\t.legalrc.biz 1;\n\t.lego4x4.ru 1;\n\t.lenvred.org 1;\n\t.leon-official.site 1;\n\t.lernur.net 1;\n\t.lerporn.info 1;\n\t.leto-dacha.ru 1;\n\t.letolove.ru 1;\n\t.letsgotofriday.com 1;\n\t.levaquin750mg.blogspot.com 1;\n\t.lezbiyanki.net 1;\n\t.lflash.ru 1;\n\t.li-er.ru 1;\n\t.lida-ru.com 1;\n\t.lider82.ru 1;\n\t.life.biz.ua 1;\n\t.lifebyleese.com 1;\n\t.lifespeaker.ru 1;\n\t.ligastavok-in.ru 1;\n\t.light.ifmo.ru 1;\n\t.lighthearteds.shop 1;\n\t.likesdesign.com 1;\n\t.lilishopstogether.com 1;\n\t.lindsayblog.online 1;\n\t.linerdrilling.com 1;\n\t.link.web-list.xyz 1;\n\t.lipidofobia.com.br 1;\n\t.liquimondo.com 1;\n\t.lirunet.ru 1;\n\t.lisque.batcave.net 1;\n\t.littleberry.ru 1;\n\t.live-sexchat.ru 1;\n\t.live-xbet.com 1;\n\t.livefixer.com 1;\n\t.liveinternet.ro 1;\n\t.liveinternet.ru 1;\n\t.livejournal.top 1;\n\t.livia-pache.ru 1;\n\t.livingroomdecoratingideas.website 1;\n\t.livingsimply.com 1;\n\t.lk-gosuslugi.ru 1;\n\t.lk-lk-rt.ru 1;\n\t.llastbuy.ru 1;\n\t.lmrauction.com 1;\n\t.loadopia.com 1;\n\t.local-seo-for-multiple-locations.com 1;\n\t.login-tinkoff.ru 1;\n\t.loginduepunti.it 1;\n\t.logo-all.ru 1;\n\t.lol-smurfs.com 1;\n\t.lolz.guru 1;\n\t.lolzteam.online 1;\n\t.lolzteam.org 1;\n\t.lomb.co 1;\n\t.lombardfinder.ru 1;\n\t.lombia.co 1;\n\t.lombia.com 1;\n\t.lomza.info 1;\n\t.londonstratford.co.uk 1;\n\t.lookover.ru 1;\n\t.lost-alpha.ru 1;\n\t.lotoflotto.ru 1;\n\t.loveorganic.ch 1;\n\t.low-format.ru 1;\n\t.lowpricesiterx.com 1;\n\t.lsex.xyz 1;\n\t.lsitenonrepeat.com 1;\n\t.luckybull.io 1;\n\t.luckyshop.net.ua 1;\n\t.lukoilcard.ru 1;\n\t.lumb.co 1;\n\t.lutherstable.org 1;\n\t.luton-invest.ru 1;\n\t.luxmagazine.cf 1;\n\t.luxup.ru 1;\n\t.luxurybet.ru 1;\n\t.m-google.xyz 1;\n\t.m.ok.ru 1;\n\t.m1media.net 1;\n\t.macresource.co.uk 1;\n\t.madisonclothingny.com 1;\n\t.madjonline.xyz 1;\n\t.madot.onlinewebshop.net 1;\n\t.mafcards.ru 1;\n\t.magazintiande.ru 1;\n\t.magda-gadalka.ru 1;\n\t.magento-crew.net 1;\n\t.magicart.store 1;\n\t.magicdiet.gq 1;\n\t.magnetic-bracelets.ru 1;\n\t.maigralr.site 1;\n\t.mail.allnews24.in 1;\n\t.mainhunter.com 1;\n\t.mainlinehobby.net 1;\n\t.make-money-online.com 1;\n\t.makedo.ru 1;\n\t.makemoneyonline.com 1;\n\t.makeprogress.ga 1;\n\t.makler.org.ua 1;\n\t.maladot.com 1;\n\t.malbgoods.xyz 1;\n\t.malls.com 1;\n\t.maltadailypost.com 1;\n\t.mamidushop.xyz 1;\n\t.mamylik.ru 1;\n\t.manimpotence.com 1;\n\t.manipulyator-peterburg.ru 1;\n\t.manonstore.xyz 1;\n\t.manualterap.roleforum.ru 1;\n\t.manwang.net 1;\n\t.maofengjx.com 1;\n\t.marathonbet-in.ru 1;\n\t.marblestyle.ru 1;\n\t.marcogrup.com 1;\n\t.maridan.com.au 1;\n\t.maridan.com.ua 1;\n\t.marihome.online 1;\n\t.marinetraffic.com 1;\n\t.marjorieblog.online 1;\n\t.marketland.ml 1;\n\t.marktforschung-stuttgart.com 1;\n\t.marmitaco.cat 1;\n\t.martinahome.xyz 1;\n\t.martlinker.com 1;\n\t.massage-info.nl 1;\n\t.masserect.com 1;\n\t.master-muznachas.ru 1;\n\t.masterseek.com 1;\n\t.mastershef.club 1;\n\t.masturbate.co.uk 1;\n\t.mathoutlet.xyz 1;\n\t.matomete.net 1;\n\t.matras.space 1;\n\t.mattgibson.us 1;\n\t.mature.free-websites.com 1;\n\t.max-apprais.com 1;\n\t.maximilitary.ru 1;\n\t.maxinesamson.top 1;\n\t.maxthon.com 1;\n\t.maxxximoda.ru 1;\n\t.mazda-roadsters.com 1;\n\t.mbiologi.ru 1;\n\t.mebel-alait.ru 1;\n\t.mebel-arts.com 1;\n\t.mebel-ekb.com 1;\n\t.mebel-iz-dereva.kiev.ua 1;\n\t.mebelcomplekt.ru 1;\n\t.mebeldekor.com.au 1;\n\t.mebeldekor.com.ua 1;\n\t.meblieco.com 1;\n\t.med-dopomoga.com 1;\n\t.med-recept.ru 1;\n\t.med-zdorovie.com.au 1;\n\t.med-zdorovie.com.ua 1;\n\t.medanestesia.ru 1;\n\t.medbrowse.info 1;\n\t.medcor-list.ru 1;\n\t.medi-fitt.hu 1;\n\t.medic-al.ru 1;\n\t.medicaltranslate.ru 1;\n\t.medicinacom.ru 1;\n\t.medicineseasybuy.com 1;\n\t.medicovi.com 1;\n\t.medictube.ru 1;\n\t.medispainstitute.com.au 1;\n\t.medkletki.ru 1;\n\t.medkritika.ru 1;\n\t.medmajor.ru 1;\n\t.medosmotr-ufa.ru 1;\n\t.meds-online24.com 1;\n\t.medtherapy.ru 1;\n\t.meduza-consult.ru 1;\n\t.meendo-free-traffic.ga 1;\n\t.megaapteka.ru 1;\n\t.megakino.net 1;\n\t.megalit-d.ru 1;\n\t.megapolis-96.ru 1;\n\t.megatkani.ru 1;\n\t.megavolt.net.ua 1;\n\t.melbet-in.ru 1;\n\t.melissahome.top 1;\n\t.members.ghanaweb.com 1;\n\t.memovn.com 1;\n\t.menhealed.net 1;\n\t.mercanmall.xyz 1;\n\t.mere.host.sk 1;\n\t.mericanmopedstore.com 1;\n\t.meriton.ru 1;\n\t.meroyharte.top 1;\n\t.mesto-x.com 1;\n\t.metallo-konstruktsii.ru 1;\n\t.metallosajding.ru 1;\n\t.metarip.ru 1;\n\t.metaxalonevstizanidine.blogspot.com 1;\n\t.meteocast.net 1;\n\t.meuikcr.online 1;\n\t.mex-annushka.ru 1;\n\t.mhp.su 1;\n\t.mhrdmall.xyz 1;\n\t.miaxxx.com 1;\n\t.micasainvest.com 1;\n\t.michellblog.online 1;\n\t.microsearch.ru 1;\n\t.microsoftportal.net 1;\n\t.midnight.im 1;\n\t.mielec.pl 1;\n\t.mifepriston.net 1;\n\t.migente.com 1;\n\t.migera.net 1;\n\t.migronis.com 1;\n\t.mikozstop.com 1;\n\t.mikrobiologies.ru 1;\n\t.mikrocement.com.ua 1;\n\t.mikrozaim.site 1;\n\t.mikrozaym2you.ru 1;\n\t.minecraft-neo.ru 1;\n\t.minecraft-rus.org 1;\n\t.minegam.com 1;\n\t.minghaimuyuan.net 1;\n\t.mini.7zap.com 1;\n\t.miningblack.net 1;\n\t.minyetki.ru 1;\n\t.mir-betting.ru 1;\n\t.mir-business-24.ru 1;\n\t.mir-limuzinov.ru 1;\n\t.mirfairytale.ru 1;\n\t.mirmedinfo.ru 1;\n\t.mirobuvi.com.au 1;\n\t.mirobuvi.com.ua 1;\n\t.mirtorrent.net 1;\n\t.mirzonru.net 1;\n\t.misselle.ru 1;\n\t.mister-shop.com 1;\n\t.mitrasound.ru 1;\n\t.mixed-wrestling.ru 1;\n\t.mksoap.ru 1;\n\t.mksport.ru 1;\n\t.mmdoors.ru 1;\n\t.mmm.lc 1;\n\t.mmm.sb 1;\n\t.mmog-play.ru 1;\n\t.mmoguider.ru 1;\n\t.mnogabukaff.net 1;\n\t.mobicover.com.ua 1;\n\t.mobile.ok.ru 1;\n\t.mobilemedia.md 1;\n\t.mobisport.ru 1;\n\t.mobot.site 1;\n\t.mobplayer.net 1;\n\t.mobplayer.ru 1;\n\t.mockupui.com 1;\n\t.modabutik.ru 1;\n\t.modforwot.ru 1;\n\t.modnie-futbolki.net 1;\n\t.moe1.ru 1;\n\t.moesonce.com 1;\n\t.moi-glazki.ru 1;\n\t.moinozhki.com 1;\n\t.moiragracie.top 1;\n\t.moisadogorod.ru 1;\n\t.mokrayakiska.com 1;\n\t.mole.pluto.ro 1;\n\t.monarhs.info 1;\n\t.monetizationking.net 1;\n\t.money-every-day.com 1;\n\t.money-for-placing-articles.com 1;\n\t.money7777.info 1;\n\t.moneymaster.ru 1;\n\t.moneytop.ru 1;\n\t.moneyzzz.ru 1;\n\t.monicablog.xyz 1;\n\t.monitorwebsitespeed.com 1;\n\t.moomi-daeri.com 1;\n\t.moon.market 1;\n\t.moonci.ru 1;\n\t.more-letom.ru 1;\n\t.morf.snn.gr 1;\n\t.morlat.altervista.org 1;\n\t.moroccosurfadventures.com 1;\n\t.moscow-clining.ru 1;\n\t.moscow-region.ru 1;\n\t.moscow.xrus.org 1;\n\t.mosdverka.ru 1;\n\t.mosputana.info 1;\n\t.mosputana.top 1;\n\t.mosrif.ru 1;\n\t.mossiemckenzie.shop 1;\n\t.mossmesi.com 1;\n\t.most-kerch.org 1;\n\t.most.gov.iq 1;\n\t.mostantikor.ru 1;\n\t.mostbet-285.com 1;\n\t.mostbet-original.ru 1;\n\t.mostcool.top 1;\n\t.mostorgnerud.ru 1;\n\t.motion-interactive.com 1;\n\t.mototsikl.org 1;\n\t.mountainstream.ms 1;\n\t.moy-dokument.com 1;\n\t.moy-evroopt.ru 1;\n\t.moyakuhnia.ru 1;\n\t.moyaskidka.ru 1;\n\t.moyaterapiya.ru 1;\n\t.moygorod-online.ru 1;\n\t.moyparnik.com 1;\n\t.mp3films.ru 1;\n\t.mpftpupload.com 1;\n\t.mrbojikobi4.biz 1;\n\t.mrcsa.com.au 1;\n\t.mriyadh.com 1;\n\t.mrmoneymustache.com 1;\n\t.mrt-info.ru 1;\n\t.mrwhite.biz 1;\n\t.msk-diplomat.com 1;\n\t.msk-sprawka.com 1;\n\t.mtras.xyz 1;\n\t.mtsguru.ru 1;\n\t.mug-na-chas-moscow.ru 1;\n\t.muizre.ru 1;\n\t.mukis.ru 1;\n\t.mundoaberrante.com 1;\n\t.muscle-factory.com.au 1;\n\t.muscle-factory.com.ua 1;\n\t.music.utrolive.ru 1;\n\t.musicas.baixar-musicas-gratis.com 1;\n\t.musichallaudio.ru 1;\n\t.musicprojectfoundation.com 1;\n\t.musicstock.me 1;\n\t.musicvidz.ru 1;\n\t.muz-baza.net 1;\n\t.muz-shoes.ru 1;\n\t.muznachas-service.ru 1;\n\t.muztops.ru 1;\n\t.mvmagoods.xyz 1;\n\t.mwductwork.com 1;\n\t.my-bc.ru 1;\n\t.my.opera.com 1;\n\t.mybestoffers.club 1;\n\t.myborder.ru 1;\n\t.mybuh.kz 1;\n\t.mycaf.it 1;\n\t.mycheaptraffic.com 1;\n\t.mycollegereview.com 1;\n\t.mydirtystuff.com 1;\n\t.mydoctorok.ru 1;\n\t.mydownloadengine.com 1;\n\t.mydownlodablefiles.com 1;\n\t.myecomir.com 1;\n\t.myfreemp3.eu 1;\n\t.myftpupload.com 1;\n\t.myindospace.com 1;\n\t.mylida.org 1;\n\t.myliveblog.ru 1;\n\t.mypets.by 1;\n\t.myplaycity.com 1;\n\t.myprintscreen.com 1;\n\t.mysexpics.ru 1;\n\t.mytherealshop.com 1;\n\t.mytraffic.shop 1;\n\t.na-telefon.biz 1;\n\t.na15.ru 1;\n\t.nacap.ru 1;\n\t.nachalka21.ru 1;\n\t.nagdak.ru 1;\n\t.nakozhe.com 1;\n\t.nalogovyy-kodeks.ru 1;\n\t.nancyblog.top 1;\n\t.nanochskazki.ru 1;\n\t.nanwar.xyz 1;\n\t.naobumium.info 1;\n\t.naphi.xyz 1;\n\t.naphukete.ru 1;\n\t.nardulan.com 1;\n\t.narkologiya-belgorod.ru 1;\n\t.narkologiya-orel.ru 1;\n\t.narkologiya-penza.ru 1;\n\t.narkologiya-peterburg.ru 1;\n\t.narkologiya-voronezh.ru 1;\n\t.narkomaniya-stop.ru 1;\n\t.narosty.com 1;\n\t.narutonaruto.ru 1;\n\t.nastroyke.net 1;\n\t.natali-forex.com 1;\n\t.nate.com 1;\n\t.natprof.ru 1;\n\t.naturalpharm.com.ua 1;\n\t.naval.jislaaik.com 1;\n\t.navek.by 1;\n\t.nbok.net 1;\n\t.nbsproject.ru 1;\n\t.nebbiasale.xyz 1;\n\t.needtosellmyhousefast.com 1;\n\t.negral.pluto.ro 1;\n\t.net-profits.xyz 1;\n\t.netallergy.ru 1;\n\t.nethouse.ru 1;\n\t.netlify.com 1;\n\t.netpics.org 1;\n\t.nevansk.ru 1;\n\t.nevapotolok.ru 1;\n\t.new-apps.ru 1;\n\t.newagebev.com 1;\n\t.newbieseoblog.online 1;\n\t.newsfj.net 1;\n\t.newsrosprom.ru 1;\n\t.newstaffadsshop.club 1;\n\t.newstraveller.ru 1;\n\t.newstudio.tv 1;\n\t.nextconseil.com 1;\n\t.nfocusdriver.com 1;\n\t.ngps1.ru 1;\n\t.nhmrcsale.xyz 1;\n\t.nhsports.cl 1;\n\t.nicola.top 1;\n\t.nicolaonline.top 1;\n\t.niki-mlt.ru 1;\n\t.nikitsyringedrivelg.pen.io 1;\n\t.ninacecillia.top 1;\n\t.niuting.org 1;\n\t.nizniynovgorod.dienai.ru 1;\n\t.nl.netlog.com 1;\n\t.no-rx.info 1;\n\t.noclegonline.info 1;\n\t.nomerounddec.cf 1;\n\t.nonews.co 1;\n\t.nordstar.pro 1;\n\t.notaria-desalas.com 1;\n\t.notebook-pro.ru 1;\n\t.notfastfood.ru 1;\n\t.noumeda.com 1;\n\t.novalskincare.net 1;\n\t.novgorod.xrus.org 1;\n\t.novosibirsk.xrus.org 1;\n\t.novosti-avto.ru 1;\n\t.novosti-hi-tech.ru 1;\n\t.novostic.ru 1;\n\t.now-hydra2020.com 1;\n\t.npoet.ru 1;\n\t.ntdtv.ru 1;\n\t.nubuilderian.info 1;\n\t.nucia.biz.ly 1;\n\t.nudepatch.net 1;\n\t.nudo.ca 1;\n\t.nufaq.com 1;\n\t.nullrefer.com 1;\n\t.nutriwestncahi.com 1;\n\t.nuup.info 1;\n\t.nvformula.ru 1;\n\t.nvkzsale.xyz 1;\n\t.nwrcz.com 1;\n\t.nyfinance.ml 1;\n\t.nyinfo.org 1;\n\t.o-o-11-o-o.com 1;\n\t.o-o-6-o-o.com 1;\n\t.o-o-6-o-o.ru 1;\n\t.o-o-8-o-o.com 1;\n\t.o-o-8-o-o.ru 1;\n\t.o-promyshlennosti.ru 1;\n\t.o00.in 1;\n\t.oblismall.xyz 1;\n\t.obnal.org 1;\n\t.obnallpro.cc 1;\n\t.obsessionphrases.com 1;\n\t.obuv-kupit.ru 1;\n\t.obyavka.org.ua 1;\n\t.obzor-casino-x.online 1;\n\t.obzor-casino-x.ru 1;\n\t.ochistka-stokov.ru 1;\n\t.odesproperty.com 1;\n\t.odiabetikah.com 1;\n\t.odsadsmobile.biz 1;\n\t.odywpjtw.bloger.index.hr 1;\n\t.ofermerah.com 1;\n\t.offers.bycontext.com 1;\n\t.office-windows.ru 1;\n\t.office2web.com 1;\n\t.officedocuments.net 1;\n\t.offtime.ru 1;\n\t.ogorodnic.com 1;\n\t.ok.ru 1;\n\t.oklogistic.ru 1;\n\t.okna-systems.pro 1;\n\t.okno.ooo 1;\n\t.okoshkah.com 1;\n\t.okroshki.ru 1;\n\t.oktube.ru 1;\n\t.oledonline.xyz 1;\n\t.olovoley.ru 1;\n\t.olvanto.ru 1;\n\t.omega.best 1;\n\t.omsk.xrus.org 1;\n\t.one-a-plus.xyz 1;\n\t.one-gear.com 1;\n\t.onefilms.net 1;\n\t.onenews24.ru 1;\n\t.onion20hydra.ru 1;\n\t.onionhydra.net 1;\n\t.onionshydra.com 1;\n\t.online-akbars.ru 1;\n\t.online-binbank.ru 1;\n\t.online-hit.info 1;\n\t.online-intim.com 1;\n\t.online-mkb.ru 1;\n\t.online-pharma.ru 1;\n\t.online-pochtabank.ru 1;\n\t.online-raiffeisen.ru 1;\n\t.online-sbank.ru 1;\n\t.online-templatestore.com 1;\n\t.online-video-chat.ru 1;\n\t.online-vostbank.ru 1;\n\t.online-vtb.ru 1;\n\t.online-x.ru 1;\n\t.online.ktc45.ru 1;\n\t.onlinebay.ru 1;\n\t.onlinedic.net 1;\n\t.onlinedomains.ru 1;\n\t.onlinefilmz.net 1;\n\t.onlineserialy.ru 1;\n\t.onlinetvseries.me 1;\n\t.onlinewot.ru 1;\n\t.onlinewritingjobs17.blogspot.ru 1;\n\t.onload.pw 1;\n\t.onlyforemont.ru 1;\n\t.onlythegames.com 1;\n\t.onlywoman.org 1;\n\t.oohlivecams.com 1;\n\t.ooo-gotovie.ru 1;\n\t.ooo-olni.ru 1;\n\t.oooh.pro 1;\n\t.openfrost.com 1;\n\t.openfrost.net 1;\n\t.openlibrary.org 1;\n\t.openmediasoft.com 1;\n\t.ops.picscout.com 1;\n\t.optitrade24.com 1;\n\t.optsol.ru 1;\n\t.oqex.io 1;\n\t.oracle-patches.ru 1;\n\t.orakul.spb.ru 1;\n\t.oranga.host.sk 1;\n\t.order-prime-smm-service.party 1;\n\t.ordernorxx.com 1;\n\t.orel-reshka.net 1;\n\t.oren-cats.ru 1;\n\t.origin-my.ru 1;\n\t.ororodnik.goodbb.ru 1;\n\t.osb.se11.ru 1;\n\t.osoznanie-narkotikam.net 1;\n\t.osteochondrosis.ru 1;\n\t.ostroike.org 1;\n\t.ostrovtaxi.ru 1;\n\t.otbelivanie-zubov.com 1;\n\t.otdbiaxaem-vmeste.ru 1;\n\t.otdyx-s-komfortom.ru 1;\n\t.oudallas.net 1;\n\t.ourtherapy.ru 1;\n\t.outshop.ru 1;\n\t.ovirus.ru 1;\n\t.own-ahrefs.com 1;\n\t.ownshop.cf 1;\n\t.owohho.com 1;\n\t.ozas.net 1;\n\t.p-business.ru 1;\n\t.paceform.com 1;\n\t.pacobarrero.com 1;\n\t.pageinsider.org 1;\n\t.paidonlinesites.com 1;\n\t.painting-planet.com 1;\n\t.palma-de-sochi.ru 1;\n\t.palvira.com.au 1;\n\t.palvira.com.ua 1;\n\t.pamjatnik.com.ua 1;\n\t.pammik.ru 1;\n\t.pamyatnik-spb.ru 1;\n\t.pamyatnik-tsena.ru 1;\n\t.pandoshop.xyz 1;\n\t.paparazzistudios.com.au 1;\n\t.paperwritingservice17.blogspot.ru 1;\n\t.paradontozanet.ru 1;\n\t.parcsmalls.xyz 1;\n\t.paretto.ru 1;\n\t.parking-invest.ru 1;\n\t.partizan19.ru 1;\n\t.partnerskie-programmy.net 1;\n\t.patonsale.xyz 1;\n\t.paulinho.ru 1;\n\t.pay.ru 1;\n\t.paydayonlinecom.com 1;\n\t.pc-services.ru 1;\n\t.pechikamini.ru 1;\n\t.pecmastore.xyz 1;\n\t.pensplan.com 1;\n\t.pensplan4u.com 1;\n\t.penzu.xyz 1;\n\t.percin.biz.ly 1;\n\t.perfection-pleasure.ru 1;\n\t.perform-like-alibabaity.info 1;\n\t.perform-likeism-alibaba.info 1;\n\t.perimetor.ru 1;\n\t.perm.dienai.ru 1;\n\t.perm.xrus.org 1;\n\t.perper.ru 1;\n\t.perso.wanadoo.es 1;\n\t.personalhoro.ru 1;\n\t.petedrummond.com 1;\n\t.petroleumgeo.com 1;\n\t.petrovka-online.com 1;\n\t.petrushka-restoran.ru 1;\n\t.petscar.ru 1;\n\t.pfrf-kabinet.ru 1;\n\t.pharm--shop.ru 1;\n\t.phimarshcer.online 1;\n\t.phimmakinhdi.com 1;\n\t.phobia.us 1;\n\t.photo-clip.ru 1;\n\t.photo.houseofgaga.ru 1;\n\t.photochki.com 1;\n\t.photokitchendesign.com 1;\n\t.photorepair.ru 1;\n\t.php-market.ru 1;\n\t.physfunc.ru 1;\n\t.picscout.com 1;\n\t.picturesmania.com 1;\n\t.pills24h.com 1;\n\t.piluli.info 1;\n\t.pinkduck.ga 1;\n\t.pinupcasinos.ru 1;\n\t.pinupcasinos1.ru 1;\n\t.pinupp1.com 1;\n\t.pipki.pp.ua 1;\n\t.piratbike.ru 1;\n\t.pirateday.ru 1;\n\t.pirelli-matador.ru 1;\n\t.pisze.pisz.pl 1;\n\t.piter.xrus.org 1;\n\t.piulatte.cz 1;\n\t.pizdeishn.com 1;\n\t.pizdeishn.net 1;\n\t.pizza-imperia.com 1;\n\t.pizza-tycoon.com 1;\n\t.pk-pomosch.ru 1;\n\t.pk-services.ru 1;\n\t.pkr1hand.com 1;\n\t.plagscan.com 1;\n\t.plastweb.ru 1;\n\t.platesauto.com 1;\n\t.platinumdeals.gr 1;\n\t.plohaya-kreditnaya-istoriya.ru 1;\n\t.plusnetwork.com 1;\n\t.pochemychka.net 1;\n\t.podarkilove.ru 1;\n\t.poddon-moskva.ru 1;\n\t.podemnik.pro 1;\n\t.podseka1.ru 1;\n\t.pogodnyyeavarii.gq 1;\n\t.pogosh.com 1;\n\t.pogruztehnik.ru 1;\n\t.poisk-zakona.ru 1;\n\t.poiskzakona.ru 1;\n\t.pokemongooo.ml 1;\n\t.poker-royal777.com 1;\n\t.pokupaylegko.ru 1;\n\t.polcin.de 1;\n\t.polemikon.ru 1;\n\t.politika.bg 1;\n\t.polyana-skazok.org.ua 1;\n\t.pomoc-drogowa.cba.pl 1;\n\t.pony-business.com 1;\n\t.popads.net 1;\n\t.popelina.com 1;\n\t.pops.foundation 1;\n\t.popugauka.ru 1;\n\t.popugaychiki.com 1;\n\t.popular-church-arrow-voucher.info 1;\n\t.popup-fdm.xyz 1;\n\t.popup-hgd.xyz 1;\n\t.popup-jdh.xyz 1;\n\t.porn-video-chat.ru 1;\n\t.porn-w.org 1;\n\t.porndl.org 1;\n\t.pornhive.org 1;\n\t.pornhub-forum.ga 1;\n\t.pornhub-forum.uni.me 1;\n\t.pornhub-ru.com 1;\n\t.pornhubforum.tk 1;\n\t.porno-asia.com 1;\n\t.porno-chaman.info 1;\n\t.porno-dojki.net 1;\n\t.porno-gallery.ru 1;\n\t.porno-play.net 1;\n\t.porno-raskazy.ru 1;\n\t.porno-transsexuals.ru 1;\n\t.porno-video-chati.ru 1;\n\t.porno2xl.net 1;\n\t.pornobest.su 1;\n\t.pornoblood.com 1;\n\t.pornobrazzers.biz 1;\n\t.pornodojd.ru 1;\n\t.pornoelita.info 1;\n\t.pornofiljmi.com 1;\n\t.pornoforadult.com 1;\n\t.pornofoto.org 1;\n\t.pornogig.com 1;\n\t.pornohd1080.online 1;\n\t.pornokajf.com 1;\n\t.pornoklad.net 1;\n\t.pornoklad.ru 1;\n\t.pornokorol.com 1;\n\t.pornonik.com 1;\n\t.pornophoto.xyz 1;\n\t.pornoplen.com 1;\n\t.pornorasskazy.net 1;\n\t.pornosemki.info 1;\n\t.pornoslave.net 1;\n\t.pornotubexxx.name 1;\n\t.porodasobak.net 1;\n\t.portal-eu.ru 1;\n\t.portnoff.od.au 1;\n\t.portnoff.od.ua 1;\n\t.poshiv-chehol.ru 1;\n\t.positive2b.ru 1;\n\t.pospektr.ru 1;\n\t.postclass.com 1;\n\t.posteezy.xyz 1;\n\t.potolokelekor.ru 1;\n\t.povodok-shop.ru 1;\n\t.powitania.pl 1;\n\t.pozdravleniya-c.ru 1;\n\t.pozdrawleniya.com 1;\n\t.pozdrawleniya.ru 1;\n\t.pozvonim.com 1;\n\t.pp-budpostach.com.ua 1;\n\t.pravoholding.ru 1;\n\t.predmety.in.ua 1;\n\t.prezidentshop.ru 1;\n\t.priceg.com 1;\n\t.pricheskaonline.ru 1;\n\t.pricheski-video.com 1;\n\t.primfootball.com 1;\n\t.primoblog.xyz 1;\n\t.princeadvantagesales.com 1;\n\t.print-technology.ru 1;\n\t.printie.com 1;\n\t.printingpeach.com 1;\n\t.priora-2.com 1;\n\t.privatbank46.ru 1;\n\t.private-service.best 1;\n\t.privatov-zapisi.ru 1;\n\t.privhosting.com 1;\n\t.prizesk.com 1;\n\t.prizrn.site 1;\n\t.prlog.ru 1;\n\t.pro-okis.ru 1;\n\t.probenzo.com.ua 1;\n\t.procrafts.ru 1;\n\t.prodaemdveri.com 1;\n\t.producm.ru 1;\n\t.prodvigator.au 1;\n\t.prodvigator.ua 1;\n\t.proekt-gaz.ru 1;\n\t.proekt-mos.ru 1;\n\t.professionalsolutions.eu 1;\n\t.professionalwritingservices15.blogspot.ru 1;\n\t.profnastil-moscow.ru 1;\n\t.proftests.net 1;\n\t.progressive-seo.com 1;\n\t.prohoster.info 1;\n\t.prointer.net.au 1;\n\t.prointer.net.ua 1;\n\t.projectforte.ru 1;\n\t.projefrio.com.br 1;\n\t.prokotov.com 1;\n\t.prom23.ru 1;\n\t.prombudpostach.com.ua 1;\n\t.promodj.com 1;\n\t.promoforum.ru 1;\n\t.promoteapps.online 1;\n\t.promotion-for99.com 1;\n\t.pron.pro 1;\n\t.pronekut.com 1;\n\t.proposal-engine.com 1;\n\t.propranolol40mg.blogspot.com 1;\n\t.proquoshop.xyz 1;\n\t.prosmibank.ru 1;\n\t.prostitutki-almata.org 1;\n\t.prostitutki-astana.org 1;\n\t.prostitutki-belgoroda.org 1;\n\t.prostitutki-kharkova.org 1;\n\t.prostitutki-kiev.org 1;\n\t.prostitutki-novgoroda.org 1;\n\t.prostitutki-odessa.org 1;\n\t.prostitutki-rostova.org 1;\n\t.prostitutki-rostova.ru.com 1;\n\t.prostitutki-tolyatti.org 1;\n\t.prostitutki-tyumeni.org 1;\n\t.prostitutki-yaroslavlya.org 1;\n\t.prostoacc.com 1;\n\t.psa48.ru 1;\n\t.psiosale.xyz 1;\n\t.pskcijdc.bloger.index.hr 1;\n\t.psn-card.ru 1;\n\t.psvita.ru 1;\n\t.psychocryonics.net 1;\n\t.ptashkatextil.ua 1;\n\t.ptfic.org 1;\n\t.punch.media 1;\n\t.purchasepillsnorx.com 1;\n\t.puteshestvennik.com 1;\n\t.putevka24.ru 1;\n\t.putitin.me 1;\n\t.puzo2arbuza.ru 1;\n\t.puzzleweb.ru 1;\n\t.pyrodesigns.com.au 1;\n\t.q-moto.ru 1;\n\t.qcstrtvt.bloger.index.hr 1;\n\t.qexyfu.bugs3.com 1;\n\t.qitt.ru 1;\n\t.qoinex.top 1;\n\t.qtrstar.xyz 1;\n\t.qualitymarketzone.com 1;\n\t.quick-seeker.com 1;\n\t.quickchange.cc 1;\n\t.quit-smoking.ga 1;\n\t.qwarckoine.com 1;\n\t.qwesa.ru 1;\n\t.qxnr.net 1;\n\t.r-control.ru 1;\n\t.rabot.host.sk 1;\n\t.rabotaetvse.ru 1;\n\t.rachelblog.online 1;\n\t.radiogambling.com 1;\n\t.rainbirds.ru 1;\n\t.ranedaly.net 1;\n\t.rangapoker.com 1;\n\t.rangjued.com 1;\n\t.rank-checker.online 1;\n\t.rankchecker.online 1;\n\t.ranking2017.ga 1;\n\t.rankings-analytics.com 1;\n\t.ranksays.com 1;\n\t.rankscanner.com 1;\n\t.ranksignals.com 1;\n\t.ranksonic.com 1;\n\t.ranksonic.info 1;\n\t.ranksonic.net 1;\n\t.ranksonic.org 1;\n\t.rapevideosmovies.com 1;\n\t.rapidgator-porn.ga 1;\n\t.rapidhits.net 1;\n\t.rapidsites.pro 1;\n\t.raschtextil.com.ua 1;\n\t.rasteniya-vs-zombi.ru 1;\n\t.ratraiser.online 1;\n\t.rattan.co.ua 1;\n\t.raymondblog.top 1;\n\t.razamicroelectronics.com 1;\n\t.razborka-skoda.org.ua 1;\n\t.rb-str.ru 1;\n\t.rcb101.ru 1;\n\t.rczhan.com 1;\n\t.real-time-analytics.com 1;\n\t.realnye-otzyvy.info 1;\n\t.realresultslist.com 1;\n\t.realting-moscow.ru 1;\n\t.recinziireale.com 1;\n\t.recipedays.com 1;\n\t.recipedays.ru 1;\n\t.rednise.com 1;\n\t.redraincine.com 1;\n\t.refererx.com 1;\n\t.refpawro.xyz 1;\n\t.refudiatethissarah.info 1;\n\t.reginablog.top 1;\n\t.reginanahum.top 1;\n\t.regionshop.biz 1;\n\t.registratciya-v-moskve.ru 1;\n\t.reklama-i-rabota.ru 1;\n\t.reklama1.ru 1;\n\t.reklamnoe.agency 1;\n\t.reklamuss.ru 1;\n\t.releshop.ru 1;\n\t.rembash.ru 1;\n\t.remedyotc.com 1;\n\t.remkompov.ru 1;\n\t.remmling.de 1;\n\t.remont-comp-pomosh.ru 1;\n\t.remont-fridge-tv.ru 1;\n\t.remont-komputerov-notebook.ru 1;\n\t.remont-kvartirspb.com 1;\n\t.remont-mobile-phones.ru 1;\n\t.remont-ustanovka-tehniki.ru 1;\n\t.remontgruzovik.ru 1;\n\t.remontvau.ru 1;\n\t.remote-dba.de 1;\n\t.remotecomputingservices.net 1;\n\t.rent2spb.ru 1;\n\t.rentalmaty.kz 1;\n\t.replica-watch.ru 1;\n\t.replicaclub.ru 1;\n\t.research.ifmo.ru 1;\n\t.resell-seo-services.com 1;\n\t.resellerclub.com 1;\n\t.residualforlife.com 1;\n\t.responsive-test.net 1;\n\t.respublica-otel.ru 1;\n\t.resurs-2012.ru 1;\n\t.retreatia.com 1;\n\t.reversing.cc 1;\n\t.revolgc.pro 1;\n\t.reyel1985.webnode.fr 1;\n\t.rezeptiblud.ru 1;\n\t.rfavon.ru 1;\n\t.rfd-split.hr 1;\n\t.rfesc.net 1;\n\t.rialp.getenjoyment.net 1;\n\t.richinvestmonitor.com 1;\n\t.rida.tokyo 1;\n\t.riedismall.xyz 1;\n\t.rietisvi.co 1;\n\t.rightenergysolutions.com.au 1;\n\t.ring4rhino.com 1;\n\t.ringporno.com 1;\n\t.rique.host.sk 1;\n\t.risparmiocasa.bz.it 1;\n\t.rkmbonline.xyz 1;\n\t.robocheck.info 1;\n\t.robot-forex.biz 1;\n\t.roleforum.ru 1;\n\t.roma-kukareku.livejournal.com 1;\n\t.roof-city.ru 1;\n\t.room-mebel.ru 1;\n\t.ros-ctm.ru 1;\n\t.rospromtest.ru 1;\n\t.rossanasaavedra.net 1;\n\t.rossmark.ru 1;\n\t.rostov.xrus.org 1;\n\t.royal-betting.net 1;\n\t.royal-casino.online 1;\n\t.royal-casino.ru 1;\n\t.royal-casinos.online 1;\n\t.royal-casinos.ru 1;\n\t.royal-cazino.online 1;\n\t.royal-cazino.ru 1;\n\t.royal-investments.net 1;\n\t.rozalli.com 1;\n\t.roznica.com.ua 1;\n\t.rp9.ru 1;\n\t.rrutw.com 1;\n\t.rspectr.com 1;\n\t.ru-lk-rt.ru 1;\n\t.ru-onion.com 1;\n\t.ru-online-sberbank.ru 1;\n\t.ruex.org.ua 1;\n\t.rufreechats.com 1;\n\t.ruhydraru.ru 1;\n\t.ruinfocomp.ru 1;\n\t.rulate.ru 1;\n\t.rumamba.com 1;\n\t.runetki-online.net 1;\n\t.runovschool.ua 1;\n\t.runstocks.com 1;\n\t.rupolitshow.ru 1;\n\t.rus-lit.com 1;\n\t.rus-teh.narod.ru 1;\n\t.ruscams-com.ru 1;\n\t.ruscopybook.com 1;\n\t.rusenvironmental.net 1;\n\t.rusexy.xyz 1;\n\t.rusoft-zone.ru 1;\n\t.ruspoety.ru 1;\n\t.russia-tao.ru 1;\n\t.russia-today-video.ru 1;\n\t.russian-postindex.ru 1;\n\t.russian-translator.com 1;\n\t.russian-videochats.ru 1;\n\t.russintv.fr 1;\n\t.russkie-sochineniya.ru 1;\n\t.russkoe-zdorovie.ru 1;\n\t.rustag.ru 1;\n\t.rutor.group 1;\n\t.rvtv.ru 1;\n\t.rxshop.md 1;\n\t.rybalka-opt.ru 1;\n\t.s-forum.biz 1;\n\t.s-luna.me 1;\n\t.sabaapress.com 1;\n\t.sabinablog.xyz 1;\n\t.sack.net 1;\n\t.sad-torg.com.ua 1;\n\t.sady-urala.ru 1;\n\t.sahohev.000host.co.uk 1;\n\t.saitevpatorii.com 1;\n\t.sakhboard.ru 1;\n\t.sale-japan.com 1;\n\t.saletool.ru 1;\n\t.saltspray.ru 1;\n\t.salutmontreal.com 1;\n\t.samanthablog.online 1;\n\t.samara-airport.com 1;\n\t.samara-comfort.ru 1;\n\t.samchist.ru 1;\n\t.samlaurabrown.top 1;\n\t.samo-soznanie.ru 1;\n\t.samogonius.ru 1;\n\t.sanatorrii.ru 1;\n\t.sanjosestartups.com 1;\n\t.santaren.by 1;\n\t.santasgift.ml 1;\n\t.santechnik.jimdo.com 1;\n\t.santehnovich.ru 1;\n\t.sapaship.ru 1;\n\t.sarafangel.ru 1;\n\t.sarahmilne.top 1;\n\t.saratov.xrus.org 1;\n\t.sarf3omlat.com 1;\n\t.sashagreyblog.ga 1;\n\t.saudegoods.xyz 1;\n\t.sauna-v-ufe.ru 1;\n\t.sauni-lipetsk.ru 1;\n\t.sauni-moskva.ru 1;\n\t.savetubevideo.com 1;\n\t.savetubevideo.info 1;\n\t.savne.org 1;\n\t.sax-sex.com 1;\n\t.sbdl.no 1;\n\t.sbornik-zakonov.ru 1;\n\t.sc-specialhost.com 1;\n\t.scanner-alex.top 1;\n\t.scanner-alexa.top 1;\n\t.scanner-andrew.top 1;\n\t.scanner-barak.top 1;\n\t.scanner-brian.top 1;\n\t.scanner-don.top 1;\n\t.scanner-donald.top 1;\n\t.scanner-elena.top 1;\n\t.scanner-fred.top 1;\n\t.scanner-george.top 1;\n\t.scanner-irvin.top 1;\n\t.scanner-ivan.top 1;\n\t.scanner-jack.top 1;\n\t.scanner-jane.top 1;\n\t.scanner-jess.top 1;\n\t.scanner-jessica.top 1;\n\t.scanner-john.top 1;\n\t.scanner-josh.top 1;\n\t.scanner-julia.top 1;\n\t.scanner-julianna.top 1;\n\t.scanner-margo.top 1;\n\t.scanner-mark.top 1;\n\t.scanner-marwin.top 1;\n\t.scanner-mary.top 1;\n\t.scanner-nelson.top 1;\n\t.scanner-olga.top 1;\n\t.scanner-viktor.top 1;\n\t.scanner-walt.top 1;\n\t.scanner-walter.top 1;\n\t.scanner-willy.top 1;\n\t.scansafe.net 1;\n\t.scat.porn 1;\n\t.scenarii-1-sentyabrya.uroki.org.ua 1;\n\t.school-diplomat.ru 1;\n\t.sciedsale.xyz 1;\n\t.score-prime-web-service.stream 1;\n\t.screen-led.ru 1;\n\t.screentoolkit.com 1;\n\t.scripted.com 1;\n\t.sdelai-prosto.ru 1;\n\t.sdelatmebel.ru 1;\n\t.sdi-pme.com 1;\n\t.search-error.com 1;\n\t.search-helper.ru 1;\n\t.searchencrypt.com 1;\n\t.searchlock.com 1;\n\t.seccioncontrabajo.com 1;\n\t.secret.xn--oogle-wmc.com 1;\n\t.secretscook.ru 1;\n\t.security-corporation.com.ua 1;\n\t.securityallianceservices.com 1;\n\t.see-your-website-here.com 1;\n\t.seekanvdoo22.live 1;\n\t.seisasale.xyz 1;\n\t.seksotur.ru 1;\n\t.sel-hoz.com 1;\n\t.selfhotdog.com 1;\n\t.sell-fb-group-here.com 1;\n\t.semalt.com 1;\n\t.semalt.net 1;\n\t.semalt.semalt.com 1;\n\t.semaltmedia.com 1;\n\t.semxiu.com 1;\n\t.senacertificados.co 1;\n\t.senger.atspace.co.uk 1;\n\t.seo-2-0.com 1;\n\t.seo-b2b.com 1;\n\t.seo-platform.com 1;\n\t.seo-services-b2b.com 1;\n\t.seo-services-wordpress.com 1;\n\t.seo-smm.kz 1;\n\t.seo-tips.top 1;\n\t.seo-traffic.xyz 1;\n\t.seoanalyses.com 1;\n\t.seobook.top 1;\n\t.seocheckupx.com 1;\n\t.seocheckupx.net 1;\n\t.seoexperimenty.ru 1;\n\t.seojokes.net 1;\n\t.seokicks.de 1;\n\t.seopub.net 1;\n\t.seoriseome.netlify.app 1;\n\t.seoservices2018.com 1;\n\t.serenamall.xyz 1;\n\t.serialsway.ucoz.ru 1;\n\t.serialsx.ru 1;\n\t.servemlixo.xyz 1;\n\t.servisural.ru 1;\n\t.serw.clicksor.com 1;\n\t.seryeznie-znakomstva.ru 1;\n\t.setioweb.com 1;\n\t.sex-dating.co 1;\n\t.sex-porno.site 1;\n\t.sex-spying.ru 1;\n\t.sex-videochats.ru 1;\n\t.sexkrasivo.net 1;\n\t.sexpornotales.net 1;\n\t.sexreliz.com 1;\n\t.sexreliz.net 1;\n\t.sexsaoy.com 1;\n\t.sexuria.net 1;\n\t.sexvideo-sex.com 1;\n\t.sexvporno.ru 1;\n\t.sexwife.net 1;\n\t.sexy-girl-chat.ru 1;\n\t.sexyali.com 1;\n\t.sexyteens.hol.es 1;\n\t.sexytrend.ru 1;\n\t.sfd-chess.ru 1;\n\t.shagtomsk.ru 1;\n\t.shakhtar-doneck.ru 1;\n\t.shamcisale.xyz 1;\n\t.shanscasino1.ru 1;\n\t.share-button.xyz 1;\n\t.share-buttons-for-free.com 1;\n\t.share-buttons.xyz 1;\n\t.sharebutton.io 1;\n\t.sharebutton.net 1;\n\t.sharebutton.org 1;\n\t.sharebutton.to 1;\n\t.sharemyfile.ru 1;\n\t.shariki-zuma-lines.ru 1;\n\t.shcrose.com 1;\n\t.sheki-spb.ru 1;\n\t.shemy-vishivki.com 1;\n\t.shiksabd.com 1;\n\t.shinikiev.com.ua 1;\n\t.ship-marvel.co.ua 1;\n\t.shisenshop.xyz 1;\n\t.shisha-swag.de 1;\n\t.shlyahten.ru 1;\n\t.shnyagi.net 1;\n\t.shodanhq.com 1;\n\t.shop-electron.ru 1;\n\t.shop-garena.ru 1;\n\t.shop.garena.ru.com 1;\n\t.shop.xz618.com 1;\n\t.shop2hydra.com 1;\n\t.shop4fit.ru 1;\n\t.shopfishing.com.ua 1;\n\t.shoppinglocation.com 1;\n\t.shoppingmiracles.co.uk 1;\n\t.shoprybalka.ru 1;\n\t.shops-ru.ru 1;\n\t.shopsellcardsdumps.com 1;\n\t.shopvilleroyboch.com.ua 1;\n\t.shopwme.ru 1;\n\t.shtaketniki.ru 1;\n\t.shtormmall.xyz 1;\n\t.shulepov.ru 1;\n\t.sib-kukla.ru 1;\n\t.sibecoprom.ru 1;\n\t.sibkukla.ru 1;\n\t.sideeffectsoftizanidine.blogspot.com 1;\n\t.sign-service.ru 1;\n\t.signx.info 1;\n\t.sihugoods.xyz 1;\n\t.silverage.ru 1;\n\t.silvergull.ru 1;\n\t.silvermature.net 1;\n\t.sim-dealer.ru 1;\n\t.sim-service.net 1;\n\t.similarmoviesdb.com 1;\n\t.simoncinicancertherapy.com 1;\n\t.simple-share-buttons.com 1;\n\t.simplepooltips.com 1;\n\t.sims-sims.ru 1;\n\t.sinel.info 1;\n\t.sinestesia.host.sk 1;\n\t.singularwebs.net 1;\n\t.sinhronperevod.ru 1;\n\t.siongetadsincome.info 1;\n\t.sirhoutlet.xyz 1;\n\t.siritshop.xyz 1;\n\t.sisiynas.ru 1;\n\t.site-auditor.online 1;\n\t.site-speed-check.site 1;\n\t.site-speed-checker.site 1;\n\t.site3.free-share-buttons.com 1;\n\t.site5.com 1;\n\t.siteexpress.co.il 1;\n\t.siteripz.net 1;\n\t.sitesadd.com 1;\n\t.sitevaluation.com 1;\n\t.sitevaluation.org 1;\n\t.sivs.ru 1;\n\t.sjmsw.net 1;\n\t.sk.golden-praga.ru 1;\n\t.ski-centers.com 1;\n\t.skidku.org.ua 1;\n\t.skinali.com 1;\n\t.skinali.photo-clip.ru 1;\n\t.sklad-24.ru 1;\n\t.skladvaz.ru 1;\n\t.sky-mine.ru 1;\n\t.skylta.com 1;\n\t.sladkoevideo.com 1;\n\t.slashpet.com 1;\n\t.slavic-magic.ru 1;\n\t.slavkokacunko.de 1;\n\t.sledstvie-veli.net 1;\n\t.slftsdybbg.ru 1;\n\t.slkrm.ru 1;\n\t.slomm.ru 1;\n\t.slonechka.ru 1;\n\t.sloopyjoes.com.top 1;\n\t.slotron.com 1;\n\t.slow-website.xyz 1;\n\t.slujbauborki.ru 1;\n\t.smailik.org 1;\n\t.small-game.com 1;\n\t.small-games.biz 1;\n\t.smartpet.ru 1;\n\t.smartphonediscount.info 1;\n\t.sms2x2.ru 1;\n\t.smstraf.ru 1;\n\t.smt4.ru 1;\n\t.smzt.shop 1;\n\t.snabs.kz 1;\n\t.snaiper-bg.net 1;\n\t.sneakerfreaker.com 1;\n\t.snegozaderzhatel.ru 1;\n\t.snip.to 1;\n\t.snip.tw 1;\n\t.snjatie-geroinovoy-lomki.ru 1;\n\t.snomer1.ru 1;\n\t.snyatie-lomki-v-stacionare.ru 1;\n\t.soaksoak.ru 1;\n\t.soblaznu.net 1;\n\t.soc-econom-problems.ru 1;\n\t.soc-proof.su 1;\n\t.socas.pluto.ro 1;\n\t.sochi-3d.ru 1;\n\t.social-button.xyz 1;\n\t.social-buttons-aa.xyz 1;\n\t.social-buttons-aaa.xyz 1;\n\t.social-buttons-bb.xyz 1;\n\t.social-buttons-bbb.xyz 1;\n\t.social-buttons-cc.xyz 1;\n\t.social-buttons-ccc.xyz 1;\n\t.social-buttons-dd.xyz 1;\n\t.social-buttons-ddd.xyz 1;\n\t.social-buttons-ee.xyz 1;\n\t.social-buttons-eee.xyz 1;\n\t.social-buttons-ff.xyz 1;\n\t.social-buttons-fff.xyz 1;\n\t.social-buttons-gg.xyz 1;\n\t.social-buttons-ggg.xyz 1;\n\t.social-buttons-hh.xyz 1;\n\t.social-buttons-ii.xyz 1;\n\t.social-buttons-iii.xyz 1;\n\t.social-buttons.com 1;\n\t.social-buttons.xyz 1;\n\t.social-fun.ru 1;\n\t.social-s-ggg.xyz 1;\n\t.social-s-hhh.xyz 1;\n\t.social-s-iii.xyz 1;\n\t.social-search.me 1;\n\t.social-traffic-1.xyz 1;\n\t.social-traffic-2.xyz 1;\n\t.social-traffic-3.xyz 1;\n\t.social-traffic-4.xyz 1;\n\t.social-traffic-5.xyz 1;\n\t.social-traffic-6.xyz 1;\n\t.social-traffic-7.xyz 1;\n\t.social-vestnik.ru 1;\n\t.social-widget.xyz 1;\n\t.socialbookmarksubmission.org 1;\n\t.socialbutton.xyz 1;\n\t.socialbuttons.xyz 1;\n\t.socialine.net 1;\n\t.socialseet.ru 1;\n\t.socialtrade.biz 1;\n\t.sofit-dmd.ru 1;\n\t.soft-program.com 1;\n\t.softomix.com 1;\n\t.softomix.net 1;\n\t.softomix.org 1;\n\t.softomix.ru 1;\n\t.softtor.com 1;\n\t.softxaker.ru 1;\n\t.sohoindia.net 1;\n\t.soki.tv 1;\n\t.solartek.ru 1;\n\t.solitaire-game.ru 1;\n\t.solnplast.ru 1;\n\t.sonata-arctica.wz.cz 1;\n\t.songoo.wz.cz 1;\n\t.sonnikforme.ru 1;\n\t.sonyelektronik.com 1;\n\t.sosdepotdebilan.com 1;\n\t.sotkal.lark.ru 1;\n\t.soundfrost.org 1;\n\t.soup.io 1;\n\t.souvenirua.com 1;\n\t.sovetogorod.ru 1;\n\t.sovetskie-plakaty.ru 1;\n\t.soviet-portal.do.am 1;\n\t.sowhoz.ru 1;\n\t.soyuzexpedition.ru 1;\n\t.sp-laptop.ru 1;\n\t.sp-zakupki.ru 1;\n\t.space2019.top 1;\n\t.spacebarnot.work 1;\n\t.spain-poetry.com 1;\n\t.spartania.com.ua 1;\n\t.spb-plitka.ru 1;\n\t.spb-scenar.ru 1;\n\t.spb.ru 1;\n\t.spbchampionat.ru 1;\n\t.special-porn.com 1;\n\t.specstroy36.ru 1;\n\t.speedup-my.site 1;\n\t.spin2016.cf 1;\n\t.sport-video-obzor.ru 1;\n\t.sportbetfair.com 1;\n\t.sportobzori.ru 1;\n\t.sportwizard.ru 1;\n\t.spravka130.ru 1;\n\t.spravkavspb.net 1;\n\t.spravkavspb.work 1;\n\t.sprawka-help.com 1;\n\t.spscmall.xyz 1;\n\t.spuemonti.net 1;\n\t.spy-app.info 1;\n\t.spy-sts.com 1;\n\t.sqadia.com 1;\n\t.squarespace.top 1;\n\t.squidoo.com 1;\n\t.srecorder.com 1;\n\t.sribno.net 1;\n\t.ssn.is 1;\n\t.sssexxx.net 1;\n\t.ssve.ru 1;\n\t.st-komf.ru 1;\n\t.sta-grand.ru 1;\n\t.stairliftstrue.com 1;\n\t.star61.de 1;\n\t.stardevine.com 1;\n\t.stariy-baku.com 1;\n\t.start.myplaycity.com 1;\n\t.startraffic.online 1;\n\t.startufa.ru 1;\n\t.startwp.org 1;\n\t.stat.lviv.ua 1;\n\t.statashop.xyz 1;\n\t.static.seders.website 1;\n\t.statustroll.com 1;\n\t.stauga.altervista.org 1;\n\t.stavimdveri.ru 1;\n\t.steame.ru 1;\n\t.steelmaster.lv 1;\n\t.stiralkovich.ru 1;\n\t.stocktwists.com 1;\n\t.stoki.ru 1;\n\t.stoletie.ru 1;\n\t.stoliar.org 1;\n\t.stomatologi.moscow 1;\n\t.stop-nark.ru 1;\n\t.stop-zavisimost.com 1;\n\t.store-rx.com 1;\n\t.strady.org.ua 1;\n\t.strana-krasoty.ru 1;\n\t.strana-solnca.ru 1;\n\t.stream-tds.com 1;\n\t.streetfire.net 1;\n\t.streetfooduncovered.com 1;\n\t.streha-metalko.si 1;\n\t.strigkaomsk.ru 1;\n\t.stroi-24.ru 1;\n\t.stroicol.net 1;\n\t.stroimajor.ru 1;\n\t.stroiminsk.com 1;\n\t.stroiminsk.org 1;\n\t.stromerrealty.com 1;\n\t.strongholdsb.ru 1;\n\t.strongtools.ga 1;\n\t.stroy-matrix.ru 1;\n\t.stroyalp.ru 1;\n\t.stroydetali.ru 1;\n\t.stroyka-gid.ru 1;\n\t.stroyka47.ru 1;\n\t.stroymonolit.su 1;\n\t.studentguide.ru 1;\n\t.studiofaca.com 1;\n\t.stuff-about-money.com 1;\n\t.stuffhydra.com 1;\n\t.stylecaster.top 1;\n\t.styro.ru 1;\n\t.su1ufa.ru 1;\n\t.success-seo.com 1;\n\t.suckoutlet.xyz 1;\n\t.sudachitravel.com 1;\n\t.sugarkun.com 1;\n\t.sugvant.ru 1;\n\t.sundrugstore.com 1;\n\t.super-seo-guru.com 1;\n\t.superiends.org 1;\n\t.supermama.top 1;\n\t.supermesta.ru 1;\n\t.supermodni.com.ua 1;\n\t.supernew.org 1;\n\t.superoboi.com.ua 1;\n\t.superpages.com 1;\n\t.superslots-casino.online 1;\n\t.superslots-casino.site 1;\n\t.superslots-cazino.online 1;\n\t.superslots-cazino.site 1;\n\t.superslotz-casino.site 1;\n\t.superslotz-cazino.site 1;\n\t.supertraffic.xyz 1;\n\t.supervesti.ru 1;\n\t.surflinksmedical.com 1;\n\t.susanholtphotography.com 1;\n\t.suzanneboswell.top 1;\n\t.svadba-teplohod.ru 1;\n\t.svarbit.com 1;\n\t.svarog-jez.com 1;\n\t.svensk-poesi.com 1;\n\t.svet-depo.ru 1;\n\t.svetka.info 1;\n\t.svetlotorg.ru 1;\n\t.svetoch.moscow 1;\n\t.svetodiodoff.ru 1;\n\t.svoimi-rukamy.com 1;\n\t.svs-avto.com 1;\n\t.swagbucks.com 1;\n\t.swaplab.io 1;\n\t.sweet.tv 1;\n\t.sygraem.com 1;\n\t.szansadlarolnikow.com.pl 1;\n\t.t-machinery.ru 1;\n\t.t-rec.su 1;\n\t.t3chtonic.com 1;\n\t.taartstore.xyz 1;\n\t.tagmeanvice.live 1;\n\t.taihouse.ru 1;\n\t.tam-gde-more.ru 1;\n\t.tamada69.com 1;\n\t.tammyblog.online 1;\n\t.targetpay.nl 1;\n\t.tasteidea.com 1;\n\t.tastyfoodideas.com 1;\n\t.tattoo-stickers.ru 1;\n\t.tattoo33.ru 1;\n\t.tattooha.com 1;\n\t.taximytishi.ru 1;\n\t.tccp.xyz 1;\n\t.tcenavoprosa.ru 1;\n\t.tcsinksale.xyz 1;\n\t.tcyh.net 1;\n\t.td-33.ru 1;\n\t.td-abs.ru 1;\n\t.td-l-market.ru 1;\n\t.td-perimetr.ru 1;\n\t.tdbatik.com 1;\n\t.tds-west.ru 1;\n\t.teastory.co 1;\n\t.techart24.com 1;\n\t.technika-remont.ru 1;\n\t.technopellet.gr 1;\n\t.tecspb.ru 1;\n\t.tedxrj.com 1;\n\t.tedy.su 1;\n\t.teedle.co 1;\n\t.tehngr.ru 1;\n\t.telegramdownload10.com 1;\n\t.telesvoboda.ru 1;\n\t.telfer.ru 1;\n\t.teman.com.ua 1;\n\t.tennis-bet.ru 1;\n\t.tentcomplekt.ru 1;\n\t.teplohod-gnezdo.ru 1;\n\t.teplokomplex.ru 1;\n\t.teplolidoma.ru 1;\n\t.terapist.xyz 1;\n\t.teresablog.top 1;\n\t.tesla-audit.ru 1;\n\t.teslathemes.com 1;\n\t.test-extra-full-stack-services.stream 1;\n\t.test-prime-smm-service.review 1;\n\t.test.xyz 1;\n\t.texbaza.by 1;\n\t.texnika.com.ua 1;\n\t.tgsubs.com 1;\n\t.tgtclick.com 1;\n\t.thaimassage-slon.ru 1;\n\t.thaoduoctoc.com 1;\n\t.the-torrent-tracker.blogspot.com 1;\n\t.the-usa-games.blogspot.com 1;\n\t.the-world.ru 1;\n\t.theautoprofit.ml 1;\n\t.thebluenoodle.com 1;\n\t.thecoral.com.br 1;\n\t.thedownloadfreeonlinegames.blogspot.com 1;\n\t.thedownloadfromwarez.blogspot.com 1;\n\t.thefds.net 1;\n\t.thegreensociety.net 1;\n\t.theguardlan.com 1;\n\t.theheroes.ru 1;\n\t.thejournal.ru 1;\n\t.thelotter.su 1;\n\t.thepokertimer.com 1;\n\t.therealshop.exaccess.com 1;\n\t.thesensehousehotel.com 1;\n\t.thesmartsearch.net 1;\n\t.thewomenlife.com 1;\n\t.thiegs.reco.ws 1;\n\t.thin.me.pn 1;\n\t.tiandeural.ru 1;\n\t.tiens2010.ru 1;\n\t.timeallnews.ru 1;\n\t.timer4web.com 1;\n\t.timetorelax.biz 1;\n\t.timmy.by 1;\n\t.tip8.co 1;\n\t.tizanidine4mg.blogspot.com 1;\n\t.tizanidine4mgprice.blogspot.com 1;\n\t.tizanidine4mgstreetprice.blogspot.com 1;\n\t.tizanidine4mgstreetvalue.blogspot.com 1;\n\t.tizanidine4mgtablets.blogspot.com 1;\n\t.tizanidine4mguses.blogspot.com 1;\n\t.tizanidine6mg.blogspot.com 1;\n\t.tizanidineandcipro.blogspot.com 1;\n\t.tizanidineandgabapentin.blogspot.com 1;\n\t.tizanidineandhydrocodone.blogspot.com 1;\n\t.tizanidinecapsules.blogspot.com 1;\n\t.tizanidinecost.blogspot.com 1;\n\t.tizanidinedosage.blogspot.com 1;\n\t.tizanidinedosageforsleep.blogspot.com 1;\n\t.tizanidinedruginteractions.blogspot.com 1;\n\t.tizanidinedrugtest.blogspot.com 1;\n\t.tizanidineduringpregnancy.blogspot.com 1;\n\t.tizanidinefibromyalgia.blogspot.com 1;\n\t.tizanidineformigraines.blogspot.com 1;\n\t.tizanidineforopiatewithdrawal.blogspot.com 1;\n\t.tizanidinehcl2mg.blogspot.com 1;\n\t.tizanidinehcl2mgsideeffects.blogspot.com 1;\n\t.tizanidinehcl2mgtablet.blogspot.com 1;\n\t.tizanidinehcl4mgisitanarcotic.blogspot.com 1;\n\t.tizanidinehcl4mgtab.blogspot.com 1;\n\t.tizanidinehcl4mgtabinfo.blogspot.com 1;\n\t.tizanidinehcl4mgtablet.blogspot.com 1;\n\t.tizanidinehclsideeffects.blogspot.com 1;\n\t.tizanidinehydrochloride2mg.blogspot.com 1;\n\t.tizanidinehydrochloride4mgstreetvalue.blogspot.com 1;\n\t.tizanidineinfo.blogspot.com 1;\n\t.tizanidineingredients.blogspot.com 1;\n\t.tizanidineinteractions.blogspot.com 1;\n\t.tizanidinemusclerelaxant.blogspot.com 1;\n\t.tizanidinenarcotic.blogspot.com 1;\n\t.tizanidineonline.blogspot.com 1;\n\t.tizanidineoral.blogspot.com 1;\n\t.tizanidineorflexeril.blogspot.com 1;\n\t.tizanidinepain.blogspot.com 1;\n\t.tizanidinepills.blogspot.com 1;\n\t.tizanidinerecreationaluse.blogspot.com 1;\n\t.tizanidinerestlesslegsyndrome.blogspot.com 1;\n\t.tizanidineshowupondrugtest.blogspot.com 1;\n\t.tizanidinesideeffects.blogspot.com 1;\n\t.tizanidinesideeffectsweightloss.blogspot.com 1;\n\t.tizanidinesleepaid.blogspot.com 1;\n\t.tizanidinestreetprice.blogspot.com 1;\n\t.tizanidinestreetvalue.blogspot.com 1;\n\t.tizanidineusedfor.blogspot.com 1;\n\t.tizanidinevscyclobenzaprine.blogspot.com 1;\n\t.tizanidinevssoma.blogspot.com 1;\n\t.tizanidinevsvalium.blogspot.com 1;\n\t.tizanidinewithdrawal.blogspot.com 1;\n\t.tizanidinewithdrawalsymptoms.blogspot.com 1;\n\t.tizanidinezanaflex.blogspot.com 1;\n\t.tkanorganizma.ru 1;\n\t.tksn.ru 1;\n\t.tocan.biz 1;\n\t.tocan.com.ua 1;\n\t.tokshow.online 1;\n\t.toloka.hurtom.com 1;\n\t.tomatis.gospartner.com 1;\n\t.tomck.com 1;\n\t.tommysautomotivecare.com 1;\n\t.top-gan.ru 1;\n\t.top-instagram.info 1;\n\t.top-kasyna.com 1;\n\t.top-l2.com 1;\n\t.top1-seo-service.com 1;\n\t.top10-online-games.com 1;\n\t.top10-way.com 1;\n\t.top250movies.ru 1;\n\t.top8.co 1;\n\t.topgurudeals.com 1;\n\t.topmebeltorg.ru 1;\n\t.topmira.com 1;\n\t.toposvita.com 1;\n\t.topquality.cf 1;\n\t.topseoservices.co 1;\n\t.topshef.ru 1;\n\t.topvidos.ru 1;\n\t.tor.vc 1;\n\t.torobrand.com 1;\n\t.torontoplumbinggroup.com 1;\n\t.torospa.ru 1;\n\t.torrentgamer.net 1;\n\t.torrentred.games 1;\n\t.torrents-tracker.com 1;\n\t.torrnada.ru 1;\n\t.torture.ml 1;\n\t.totppgoods.xyz 1;\n\t.touchmods.fr 1;\n\t.tourburlington.com 1;\n\t.tovaroboom.vast.ru 1;\n\t.tpu.ru 1;\n\t.track-rankings.online 1;\n\t.tracker24-gps.ru 1;\n\t.trade365.org 1;\n\t.traderzplanet.co.in 1;\n\t.trafaret74.ru 1;\n\t.trafers.com 1;\n\t.traffic-cash.xyz 1;\n\t.traffic-paradise.org 1;\n\t.traffic2cash.net 1;\n\t.traffic2cash.org 1;\n\t.traffic2cash.xyz 1;\n\t.traffic2money.com 1;\n\t.trafficbot.life 1;\n\t.trafficbot4free.xyz 1;\n\t.trafficdrive.club 1;\n\t.trafficgenius.xyz 1;\n\t.trafficmonetize.org 1;\n\t.trafficmonetizer.org 1;\n\t.trafficstudio.club 1;\n\t.traffictomoney.com 1;\n\t.trahvid.com 1;\n\t.tramadolandtizanidine.blogspot.com 1;\n\t.transit.in.ua 1;\n\t.transsex-videochat.ru 1;\n\t.traphouselatino.net 1;\n\t.travel-semantics.com 1;\n\t.travgoods.xyz 1;\n\t.traxdom.ru 1;\n\t.trex-casino.com 1;\n\t.trex.casino 1;\n\t.tri-slona.org 1;\n\t.trick-negotiation-cup-wonder.com 1;\n\t.tricolortv-online.com 1;\n\t.trieste.io 1;\n\t.trion.od.au 1;\n\t.trion.od.ua 1;\n\t.triumf-realty.ru 1;\n\t.trk-4.net 1;\n\t.trubywriting.com 1;\n\t.truck-spite-lawyer-activity.top 1;\n\t.truebeauty.cc 1;\n\t.tsatu.edu.ua 1;\n\t.tsc-koleso.ru 1;\n\t.tsstcorpcddvdwshbbdriverfb.aircus.com 1;\n\t.ttechno.net 1;\n\t.tuberkulezanet.ru 1;\n\t.tuberkuleznik.ru 1;\n\t.tudusale.xyz 1;\n\t.tula.mdverey.ru 1;\n\t.tuningdom.ru 1;\n\t.tupper-posuda.ru 1;\n\t.tupper-shop.ru 1;\n\t.turbo-suslik.org 1;\n\t.turist-strani.ru 1;\n\t.turkeyreport.tk 1;\n\t.turvgori.ru 1;\n\t.tvand.ru 1;\n\t.tvfru.org 1;\n\t.tvgoals.tv 1;\n\t.tvoystartup.ru 1;\n\t.twincitiescarservice.com 1;\n\t.twojebook.pl 1;\n\t.twsufa.ru 1;\n\t.twu.com.ua 1;\n\t.tytoona.com 1;\n\t.tyumen.xrus.org 1;\n\t.u-cheats.ru 1;\n\t.u17795.netangels.ru 1;\n\t.ua-company.ru 1;\n\t.ua.tc 1;\n\t.uaecdsale.xyz 1;\n\t.uasb.ru 1;\n\t.ublaze.ru 1;\n\t.ucanfly.ru 1;\n\t.ucban.xyz 1;\n\t.uchebavchehii.ru 1;\n\t.uchil.net 1;\n\t.ucoz.ru 1;\n\t.ucsfstore.xyz 1;\n\t.ucsol.ru 1;\n\t.uctraffic.com 1;\n\t.udav.net 1;\n\t.ufa.dienai.ru 1;\n\t.ufa.xrus.org 1;\n\t.ufolabs.net 1;\n\t.uginekologa.com 1;\n\t.ukrainian-poetry.com 1;\n\t.ukrcargo.com 1;\n\t.ukrtvory.in.ua 1;\n\t.ukstmalls.xyz 1;\n\t.ul-potolki.ru 1;\n\t.ultimateuninstall.com 1;\n\t.um-razum.ru 1;\n\t.umg-stroy.ru 1;\n\t.umityangin.net 1;\n\t.undergroundcityphoto.com 1;\n\t.uni.me 1;\n\t.unibus.su 1;\n\t.unimodemhalfduplefw.pen.io 1;\n\t.uniqgen.net 1;\n\t.unitygame3d.com 1;\n\t.univerfiles.com 1;\n\t.unlimitdocs.net 1;\n\t.unmaroll.ya.ru 1;\n\t.unpredictable.ga 1;\n\t.upcronline.xyz 1;\n\t.uptime-alpha.net 1;\n\t.uptime-as.net 1;\n\t.uptime-beta.net 1;\n\t.uptime-delta.net 1;\n\t.uptime-eu.net 1;\n\t.uptime-gamma.net 1;\n\t.uptime-us.net 1;\n\t.uptime.com 1;\n\t.uptimebot.net 1;\n\t.uptimechecker.com 1;\n\t.ural-buldozer.ru 1;\n\t.urbanblog.shop 1;\n\t.urbanchr.online 1;\n\t.urblog.xyz 1;\n\t.urccvfmc.bloger.index.hr 1;\n\t.urlopener.blogspot.com.au 1;\n\t.urlopener.com 1;\n\t.urlumbrella.com 1;\n\t.uruto.ru 1;\n\t.us-america.ru 1;\n\t.usadacha.net 1;\n\t.userequip.com 1;\n\t.uslugi-tatarstan.ru 1;\n\t.ussearche.cf 1;\n\t.ustion.ru 1;\n\t.uterkysale.xyz 1;\n\t.utrolive.ru 1;\n\t.uusmsale.xyz 1;\n\t.uyut-dom.pro 1;\n\t.uyutmaster73.ru 1;\n\t.uzpaket.com 1;\n\t.uzungil.com 1;\n\t.v-casino.fun 1;\n\t.v-casino.host 1;\n\t.v-casino.ru 1;\n\t.v-casino.site 1;\n\t.v-casino.website 1;\n\t.v-casino.xyz 1;\n\t.v-cazino.online 1;\n\t.v-cazino.ru 1;\n\t.vabasa.inwtrade.com 1;\n\t.vaderenergy.ru 1;\n\t.vadimkravtcov.ru 1;\n\t.valid-cc.com 1;\n\t.validccseller.com 1;\n\t.validus.pro 1;\n\t.valkiria-tk.ru 1;\n\t.vanessablog.online 1;\n\t.vape-x.ru 1;\n\t.vapmedia.org 1;\n\t.vapsy.com 1;\n\t.vardenafil20.com 1;\n\t.varikozdok.ru 1;\n\t.vashsvet.com 1;\n\t.vavada-casino.host 1;\n\t.vavada-casino.top 1;\n\t.vavada-cazino.host 1;\n\t.vavada-cazino.site 1;\n\t.vavilone.com 1;\n\t.vbabule.net 1;\n\t.vbikse.com 1;\n\t.vc.ru 1;\n\t.vchulkah.net 1;\n\t.vduplo.ru 1;\n\t.veerotech.com 1;\n\t.vegascosmetics.ru 1;\n\t.vekzdorov.ru 1;\n\t.veles.shop 1;\n\t.velobikestock.com 1;\n\t.veloland.in.ua 1;\n\t.venta-prom.ru 1;\n\t.ventelnos.com 1;\n\t.ventopt.by 1;\n\t.veronicablog.top 1;\n\t.vescenter.ru 1;\n\t.veselokloun.ru 1;\n\t.vesnatehno.com 1;\n\t.vesnatehno.ru 1;\n\t.vesta-lada.net 1;\n\t.vetbvc.ru 1;\n\t.vezdevoz.com.ua 1;\n\t.vezuviy.su 1;\n\t.vgoloveboli.net 1;\n\t.via-gra.webstarts.com 1;\n\t.viagra-soft.ru 1;\n\t.viagra.pp.ua 1;\n\t.viagroid.ru 1;\n\t.viandpet.com 1;\n\t.viberdownload10.com 1;\n\t.video--production.com 1;\n\t.video-chat.in 1;\n\t.video-girl-online.ru 1;\n\t.video-hollywood.ru 1;\n\t.video-woman.com 1;\n\t.videochat-dating.ru 1;\n\t.videochat.guru 1;\n\t.videochat.mx 1;\n\t.videochat.tv.br 1;\n\t.videochat.world 1;\n\t.videochaty.ru 1;\n\t.videofrost.com 1;\n\t.videofrost.net 1;\n\t.videokrik.net 1;\n\t.videos-for-your-business.com 1;\n\t.videosbox.ru 1;\n\t.videotop.biz 1;\n\t.videotuber.ru 1;\n\t.vidzwap.xyz 1;\n\t.viel.su 1;\n\t.vigrx-original.ru 1;\n\t.viktoria-center.ru 1;\n\t.vilingstore.net 1;\n\t.vinsit.ru 1;\n\t.vip-dom.in 1;\n\t.vip-parfumeria.ru 1;\n\t.vipsiterip.org 1;\n\t.virtchats.ru 1;\n\t.virtual-love-video.ru 1;\n\t.virtual-sex-chat.ru 1;\n\t.virtual-sex-time.ru 1;\n\t.virtual-sex-videochat.ru 1;\n\t.virtual-zaim.ru 1;\n\t.virtualbb.com 1;\n\t.virus-schutzmasken.de 1;\n\t.visa-china.ru 1;\n\t.visa-pasport.ru 1;\n\t.vita.com.hr 1;\n\t.vitanail.ru 1;\n\t.viven.host.sk 1;\n\t.vizag.kharkov.ua 1;\n\t.vk-mus.ru 1;\n\t.vk.com 1;\n\t.vkak.ru 1;\n\t.vkonche.com 1;\n\t.vkontaktemusic.ru 1;\n\t.vkontarkte.com 1;\n\t.vksaver-all.ru 1;\n\t.vksex.ru 1;\n\t.vladhistory.com 1;\n\t.vladtime.ru 1;\n\t.vltai.com 1;\n\t.vmnmvzsmn.over-blog.com 1;\n\t.vod.com.ua 1;\n\t.vodabur.by 1;\n\t.vodaodessa.com 1;\n\t.voditeltrezviy.ru 1;\n\t.vodkoved.ru 1;\n\t.volgograd.xrus.org 1;\n\t.volond.com 1;\n\t.voloomoney.com 1;\n\t.volume-pills.biz 1;\n\t.voprosotvet24.ru 1;\n\t.voronezh.xrus.org 1;\n\t.vostgard.com 1;\n\t.vostoktrade.info 1;\n\t.vote-up.ru 1;\n\t.vozbujdenie.com 1;\n\t.vpdr.pl 1;\n\t.vpnhowto.info 1;\n\t.vrazbor59.ru 1;\n\t.vriel.batcave.net 1;\n\t.vrnelectro.ru 1;\n\t.vrnhnmall.xyz 1;\n\t.vrotike.ru 1;\n\t.vsdelke.ru 1;\n\t.vseigru.one 1;\n\t.vseigry.fun 1;\n\t.vseprobrak.ru 1;\n\t.vsesubwaysurfers.com 1;\n\t.vseuznaem.com 1;\n\t.vucms.com 1;\n\t.vulkan-nadengi.ru 1;\n\t.vulkan-oficial.com 1;\n\t.vulkanrussia1.ru 1;\n\t.vykup-avto-krasnodar.ru 1;\n\t.vykupavto-krasnodar.ru 1;\n\t.vzheludke.com 1;\n\t.vzlom-na-zakaz.com 1;\n\t.vzubah.com 1;\n\t.vzube.com 1;\n\t.vzubkah.com 1;\n\t.w2mobile-za.com 1;\n\t.w3javascript.com 1;\n\t.w7s.ru 1;\n\t.wakeupseoconsultant.com 1;\n\t.wallabag.malooma.bzh 1;\n\t.wallet-prlzn.space 1;\n\t.wallinside.top 1;\n\t.wallpaperdesk.info 1;\n\t.wallpapers-all.com 1;\n\t.wallpapers-best.com 1;\n\t.wallpapersdesk.info 1;\n\t.wallstore.xyz 1;\n\t.wandamary.online 1;\n\t.wapsite.me 1;\n\t.warmex.com.ua 1;\n\t.warningwar.ru 1;\n\t.wasabisale.xyz 1;\n\t.watch-movies.ru 1;\n\t.wave-games.ru 1;\n\t.wayfcoin.space 1;\n\t.wbjm.net 1;\n\t.wcb.su 1;\n\t.wdfdocando.com 1;\n\t.wdss.com.ua 1;\n\t.we-ping-for-youian.info 1;\n\t.we-ping-for-youic.info 1;\n\t.web-analytics.date 1;\n\t.web-betting.ru 1;\n\t.web-lazy-services.review 1;\n\t.web-list.xyz 1;\n\t.web-revenue.xyz 1;\n\t.web.cvut.cz 1;\n\t.webalex.pro 1;\n\t.webinstantservice.com 1;\n\t.webix.me 1;\n\t.webjam.com 1;\n\t.weblibrary.win 1;\n\t.webmaster-traffic.com 1;\n\t.webmonetizer.net 1;\n\t.webradiology.ru 1;\n\t.webs.com 1;\n\t.website-analytics.online 1;\n\t.website-analyzer.info 1;\n\t.website-errors-scanner.com 1;\n\t.website-services-promotion.bid 1;\n\t.website-services-promotion.review 1;\n\t.website-services-promotion.stream 1;\n\t.website-services-promotion.win 1;\n\t.website-services-seo.bid 1;\n\t.website-services-seo.stream 1;\n\t.website-services-seo.win 1;\n\t.website-services-smm.bid 1;\n\t.website-services-smm.review 1;\n\t.website-services-smm.stream 1;\n\t.website-services-smm.win 1;\n\t.website-services.review 1;\n\t.website-services.stream 1;\n\t.website-services.win 1;\n\t.website-speed-check.site 1;\n\t.website-speed-checker.site 1;\n\t.website-speed-up.site 1;\n\t.website-speed-up.top 1;\n\t.website-stealer-warning-alert.hdmoviecams.com 1;\n\t.websitebottraffic.club 1;\n\t.websitebottraffic.host 1;\n\t.websites-reviews.com 1;\n\t.websocial.me 1;\n\t.webtherapy.ru 1;\n\t.weburlopener.com 1;\n\t.wedding-salon.net 1;\n\t.weebly.com 1;\n\t.weekes.biz.tc 1;\n\t.weightatraining.com 1;\n\t.weightbelts.ru 1;\n\t.welck.octopis.com 1;\n\t.welcomeauto.ru 1;\n\t.weprik.ru 1;\n\t.wetgames.ru 1;\n\t.wfdesigngroup.com 1;\n\t.whatistizanidine2mg.blogspot.com 1;\n\t.whatistizanidinehclusedfor.blogspot.com 1;\n\t.whatsappdownload10.com 1;\n\t.whereiskentoday.com 1;\n\t.wicivow.007h.ml 1;\n\t.wikes.20fr.com 1;\n\t.williamrobsonproperty.com 1;\n\t.winx-play.ru 1;\n\t.witherrom55.eklablog.fr 1;\n\t.wjxmenye.com 1;\n\t.wmasterlead.com 1;\n\t.wnoz.de 1;\n\t.woman-h.ru 1;\n\t.woman-orgasm.ru 1;\n\t.woman-tampon.ru 1;\n\t.womens-journal.net 1;\n\t.womensplay.net 1;\n\t.womensterritory.ru 1;\n\t.wordpress-crew.net 1;\n\t.wordpresscore.com 1;\n\t.work-from-home-earn-money-online.com 1;\n\t.workius.ru 1;\n\t.workona.com 1;\n\t.works.if.ua 1;\n\t.world-mmo.com 1;\n\t.worldgamenews.com 1;\n\t.worldhistory.biz 1;\n\t.worldis.me 1;\n\t.worldlovers.ru 1;\n\t.worldmed.info 1;\n\t.worldofbtc.com 1;\n\t.wormix-cheats.ru 1;\n\t.wowas31.ucoz.ru 1;\n\t.woweb.com.ua 1;\n\t.wpnull.org 1;\n\t.wptraffic.xyz 1;\n\t.wrazilwispolecznie.pl 1;\n\t.wrc-info.ru 1;\n\t.writingservices17.blogspot.ru 1;\n\t.wrona.it 1;\n\t.wstroika.ru 1;\n\t.wufak.com 1;\n\t.wurr.voila.net 1;\n\t.ww1943.ru 1;\n\t.ww2awards.info 1;\n\t.www-lk-rt.ru 1;\n\t.www.gelendzhic.ru 1;\n\t.www1.free-share-buttons.top 1;\n\t.wzgyyq.com 1;\n\t.x-lime.com 1;\n\t.x-lime.net 1;\n\t.x-musics.com 1;\n\t.x-stars.ru 1;\n\t.x5market.ru 1;\n\t.xaker26.net 1;\n\t.xbaboon.com 1;\n\t.xboxster.ru 1;\n\t.xexe.club 1;\n\t.xfire.com 1;\n\t.xgftnlrt.bloger.index.hr 1;\n\t.xion.cash 1;\n\t.xjrul.com 1;\n\t.xkaz.org 1;\n\t.xlolitka.com 1;\n\t.xmnb.net 1;\n\t.xn-------53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k.xn--p1ai 1;\n\t.xn------6cdbciescapvf0a8bibwx0a1bu.xn--90ais 1;\n\t.xn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai 1;\n\t.xn-----6kcacs9ajdmhcwdcbwwcnbgd13a.xn--p1ai 1;\n\t.xn-----6kcamwewcd9bayelq.xn--p1ai 1;\n\t.xn-----7kcaaxchbbmgncr7chzy0k0hk.xn--p1ai 1;\n\t.xn-----7kceclhb4abre1b4a0ccl2fxch1a.xn--p1ai 1;\n\t.xn-----8kcatubaocd1bneepefojs1h2e.xn--p1ai 1;\n\t.xn-----clckdac3bsfgdft3aebjp5etek.xn--p1ai 1;\n\t.xn----7sbabb9a1b7bddgm6a1i.xn--p1ai 1;\n\t.xn----7sbabhjc3ccc5aggbzfmfi.xn--p1ai 1;\n\t.xn----7sbabhv4abd8aih6bb7k.xn--p1ai 1;\n\t.xn----7sbabm1ahc4b2aqff.su 1;\n\t.xn----7sbabn5abjehfwi8bj.xn--p1ai 1;\n\t.xn----7sbaphztdjeboffeiof6c.xn--p1ai 1;\n\t.xn----7sbbpe3afguye.xn--p1ai 1;\n\t.xn----7sbho2agebbhlivy.xn--p1ai 1;\n\t.xn----8sbaki4azawu5b.xn--p1ai 1;\n\t.xn----8sbarihbihxpxqgaf0g1e.xn--80adxhks 1;\n\t.xn----8sbbjimdeyfsi.xn--p1ai 1;\n\t.xn----8sbdbjgb1ap7a9c4czbh.xn--p1acf 1;\n\t.xn----8sbhefaln6acifdaon5c6f4axh.xn--p1ai 1;\n\t.xn----8sblgmbj1a1bk8l.xn----161-4vemb6cjl7anbaea3afninj.xn--p1ai 1;\n\t.xn----8sbowe2akbcd4h.xn--p1ai 1;\n\t.xn----8sbpmgeilbd8achi0c.xn--p1ai 1;\n\t.xn----btbdvdh4aafrfciljm6k.xn--p1ai 1;\n\t.xn----ctbbcjd3dbsehgi.xn--p1ai 1;\n\t.xn----ctbfcdjl8baejhfb1oh.xn--p1ai 1;\n\t.xn----ctbigni3aj4h.xn--p1ai 1;\n\t.xn----dtbffp5aagjgfm.xn--p1ai 1;\n\t.xn----ftbeoaiyg1ak1cb7d.xn--p1ai 1;\n\t.xn----gtbdb0beu1bb8gj.xn--p1ai 1;\n\t.xn----itbbudqejbfpg3l.com 1;\n\t.xn----jtbjfcbdfr0afji4m.xn--p1ai 1;\n\t.xn--78-6kc6akkhn3a3k.xn--p1ai 1;\n\t.xn--78-6kcmzqfpcb1amd1q.xn--p1ai 1;\n\t.xn--80aaafbn2bc2ahdfrfkln6l.xn--p1ai 1;\n\t.xn--80aaajbdbddwj2alwjieei2afr3v.xn--p1ai 1;\n\t.xn--80aaajkrncdlqdh6ane8t.xn--p1ai 1;\n\t.xn--80aaaks3bbhabgbigamdr2h.xn--p1ai 1;\n\t.xn--80aabcsc3bqirlt.xn--p1ai 1;\n\t.xn--80aanaardaperhcem4a6i.com 1;\n\t.xn--80ab4aa2g.xn--p1ai 1;\n\t.xn--80adaggc5bdhlfamsfdij4p7b.xn--p1ai 1;\n\t.xn--80adgcaax6acohn6r.xn--p1ai 1;\n\t.xn--80aeahghtf8ac5i.xn--p1ai 1;\n\t.xn--80aeb6argv.xn--p1ai 1;\n\t.xn--80aebzmbfeebe.xn--p1ai 1;\n\t.xn--80ahdheogk5l.xn--p1ai 1;\n\t.xn--80ahvj9e.xn--p1ai 1;\n\t.xn--80ajbshivpvn2i.xn--p1ai 1;\n\t.xn--80ajjbdhgmudixfjc8c5a9df8b.xn--p1ai 1;\n\t.xn--90acenikpebbdd4f6d.xn--p1ai 1;\n\t.xn--90acjmaltae3acm.xn--p1acf 1;\n\t.xn--90adhhccf5aeewt7j.xn--p1ai 1;\n\t.xn--b1adccayqiirhu.xn--p1ai 1;\n\t.xn--b1ag5cfn.xn--p1ai 1;\n\t.xn--b1agm2d.net 1;\n\t.xn--c1acygb.xn--p1ai 1;\n\t.xn--d1abj0abs9d.in.ua 1;\n\t.xn--d1aifoe0a9a.top 1;\n\t.xn--e1aaajzchnkg.ru.com 1;\n\t.xn--e1aahcgdjkg4aeje6j.kz 1;\n\t.xn--e1agf4c.xn--80adxhks 1;\n\t.xn--e1aggki3c.xn--80adxhks 1;\n\t.xn--h1ahbi.com.ua 1;\n\t.xn--hxazdsfy.blogspot.com 1;\n\t.xn--l1aengat.xn--p1ai 1;\n\t.xn--mhg.com 1;\n\t.xn--oogle-wmc.com 1;\n\t.xn--q1a.xn--b1aube0e.xn--c1acygb.xn--p1ai 1;\n\t.xnxx-n.com 1;\n\t.xolodremont.ru 1;\n\t.xpert.com.ua 1;\n\t.xportvusbdriver8i.snack.ws 1;\n\t.xpresscare.ru 1;\n\t.xrp-ripple.info 1;\n\t.xrus.org 1;\n\t.xsion.net 1;\n\t.xtraffic.plus 1;\n\t.xtrafficplus.com 1;\n\t.xtrafficplus.online 1;\n\t.xtrafficplus.shop 1;\n\t.xtrafficplus.xyz 1;\n\t.xtubeporno.net 1;\n\t.xvideosbay.com 1;\n\t.xxart.ru 1;\n\t.xxx-treker.ru 1;\n\t.xxxhamster.me 1;\n\t.xxxtube69.com 1;\n\t.xxxvideochat.ru 1;\n\t.xz618.com 1;\n\t.xzlive.com 1;\n\t.yaderenergy.ru 1;\n\t.yaminecraft.ru 1;\n\t.yeartwit.com 1;\n\t.yellowstonevisitortours.com 1;\n\t.yes-com.com 1;\n\t.yes-do-now.com 1;\n\t.yhirurga.ru 1;\n\t.ykecwqlixx.ru 1;\n\t.ynymnwbm.bloger.index.hr 1;\n\t.yodse.io 1;\n\t.yoga4.ru 1;\n\t.youandcredit.ru 1;\n\t.youbloodyripper.com 1;\n\t.youdesigner.kz 1;\n\t.yougame.biz 1;\n\t.yougetsignal.com 1;\n\t.youghbould.wordpress.com 1;\n\t.youhack.info 1;\n\t.youjizz.vc 1;\n\t.youporn-forum.ga 1;\n\t.youporn-forum.uni.me 1;\n\t.youporn-ru.com 1;\n\t.your-good-links.com 1;\n\t.your-tales.ru 1;\n\t.yourdesires.ru 1;\n\t.youresponsive.com 1;\n\t.yourothersite.com 1;\n\t.yoursearch.me 1;\n\t.yourserverisdown.com 1;\n\t.yoursite.com 1;\n\t.yourtraffic.club 1;\n\t.youtoner.it 1;\n\t.youtubedownload.org 1;\n\t.yqpc.net 1;\n\t.yuarra.pluto.ro 1;\n\t.yubikk.info 1;\n\t.yugk.net 1;\n\t.yugo-star.ru 1;\n\t.yunque.pluto.ro 1;\n\t.yur-p.ru 1;\n\t.yurcons.pro 1;\n\t.yurgorod.ru 1;\n\t.yuristproffi.ru 1;\n\t.zagadki.in.ua 1;\n\t.zahodi2hydra.net 1;\n\t.zahvat.ru 1;\n\t.zaidia.xhost.ro 1;\n\t.zaim-pod-zalog-krasnodar.ru 1;\n\t.zaimhelp.ru 1;\n\t.zajm-pod-zalog-nedvizhimosti.ru 1;\n\t.zakazfutbolki.com 1;\n\t.zakaznoy.com.ua 1;\n\t.zakazvzloma.com 1;\n\t.zakis-azota24.ru 1;\n\t.zakisazota-official.com 1;\n\t.zakon-ob-obrazovanii.ru 1;\n\t.zaloadi.ru 1;\n\t.zamolotkom.ru 1;\n\t.zapnado.ru 1;\n\t.zarabotat-na-sajte.ru 1;\n\t.zarabotat-v-internete.biz 1;\n\t.zarenica.net 1;\n\t.zastenchivosti.net 1;\n\t.zastroyka.org 1;\n\t.zavod-gm.ru 1;\n\t.zazagames.org 1;\n\t.zdesformula.ru 1;\n\t.zdesoboi.com 1;\n\t.zdm-auto.com 1;\n\t.zdm-auto.ru 1;\n\t.zdorovie-nogi.info 1;\n\t.zebradudka.com 1;\n\t.zelena-mriya.com.ua 1;\n\t.zeleznobeton.ru 1;\n\t.zerocash.msk.ru 1;\n\t.zexhgoods.xyz 1;\n\t.zhcsapp.net 1;\n\t.zhoobintravel.com 1;\n\t.zhorapankratov7.blogspot.com 1;\n\t.zigarettenonl.canalblog.com 1;\n\t.zigarettenonlinekaufen.tumblr.com 1;\n\t.zigarettenonlinekaufen1.bloog.pl 1;\n\t.zigarettenonlinekaufen1.blox.pl 1;\n\t.zigarettenonlinekaufen2.bloog.pl 1;\n\t.zigarettenonlinekaufen2.drupalgardens.com 1;\n\t.zigzog.ru 1;\n\t.zlatnajesen.com 1;\n\t.zmoda.hostreo.com 1;\n\t.znakomstva-moskva77.ru 1;\n\t.znakomstva-piter78.ru 1;\n\t.znakomstvaonlain.ru 1;\n\t.znaniyapolza.ru 1;\n\t.zojirushi-products.ru 1;\n\t.zolotoy-lis.ru 1;\n\t.zonefiles.bid 1;\n\t.zoominfo.com 1;\n\t.zot.moscow 1;\n\t.zt-m.ru 1;\n\t.zuchn.com 1;\n\t.zverokruh-shop.cz 1;\n\t.zvetki.ru 1;\n\t.zvooq.eu 1;\n\t.zvuker.net 1;\n\t.zyzzcentral.ru 1;\n\n}"
  },
  {
    "path": "referral-spam.haproxy",
    "content": "# https://github.com/Stevie-Ray/referrer-spam-blocker\n# Updated 2026-03-04 18:14:04\n\n#\n# Use it in your HAProxy config by adding all domains.txt items,\n# in any frontend, listen or backend block:\n#\n#     acl spam_referer hdr_sub(referer) -i -f /etc/haproxy/referral-spam.haproxy\n#     http-request deny if spam_referer\n#\n\n0\\-0\\.fr\n000free\\.us\n007agent\\-i\\.fr\n00author\\.com\n00go\\.com\n00it\\.com\n01casino\\-x\\.ru\n033nachtvandeliteratuur\\.nl\n03e\\.info\n03p\\.info\n0n\\-line\\.tv\n1\\-88\\.vip\n1\\-99seo\\.com\n1\\-best\\-seo\\.com\n1\\-free\\-share\\-buttons\\.com\n100\\-reasons\\-for\\-seo\\.com\n100dollars\\-seo\\.com\n100searchengines\\.com\n101flag\\.ru\n11235813\\.webzdarma\\.cz\n12\\-reasons\\-for\\-seo\\.net\n12masterov\\.com\n12u\\.info\n15\\-reasons\\-for\\-seo\\.com\n16lv\\.com\n1hwy\\.com\n1kinobig\\.ru\n1kreditzaim\\.ru\n1pamm\\.ru\n1st\\-urist\\.ru\n1webmaster\\.ml\n1wek\\.top\n1winru\\.ru\n1x\\-slot\\.site\n1x\\-slots\\.site\n1xbet\\-entry\\.ru\n1xbetcc\\.com\n1xbetonlines1\\.ru\n1xbetportugal\\.com\n1xbetts\\.ru\n1xslot\\-casino\\.online\n1xslot\\-casino\\.ru\n1xslot\\-casino\\.site\n1xslot\\.site\n1xslots\\-africa\\.site\n1xslots\\-brasil\\.site\n1xslots\\-casino\\.site\n1xslots\\.africa\n1xslots\\.site\n2\\-best\\-seo\\.com\n2\\-easy\\.xyz\n2\\-go\\-now\\.xyz\n2015god\\.org\n24chasa\\.bg\n24h\\.doctor\n24videos\\.tv\n24x7\\-server\\-support\\.site\n256bit\\.by\n273\\-fz\\.ru\n2ads\\.co\\.uk\n2itech\\.ru\n2kata\\.ru\n2nt\\.ru\n2your\\.site\n3\\-best\\-seo\\.com\n3\\-letter\\-domains\\.net\n3dgame3d\\.com\n3dracergames\\.com\n3waynetworks\\.com\n4\\-best\\-seo\\.com\n40momporntube\\.com\n45en\\.ru\n45tahunkhongguan\\.com\n4inn\\.ru\n4ip\\.su\n4istoshop\\.com\n4webmasters\\.com\n4webmasters\\.org\n4xcasino\\.ru\n5\\-best\\-seo\\.com\n5\\-steps\\-to\\-start\\-business\\.com\n5elementov\\.ru\n5forex\\.ru\n6\\-best\\-seo\\.com\n69\\-13\\-59\\.ru\n6hopping\\.com\n7\\-best\\-seo\\.com\n70casino\\.online\n76brighton\\.co\\.uk\n76brighton\\.com\n7kop\\.ru\n7makemoneyonline\\.com\n7milliondollars\\.com\n7ooo\\.ru\n7zap\\.com\n8\\-best\\-seo\\.com\n84lv\\.com\n8xv8\\.com\n9\\-best\\-seo\\.com\n99\\-reasons\\-for\\-seo\\.com\nQIWI\\.xyz\na\\-elita\\.in\\.ua\na\\-hau\\.mk\na14download\\.com\nabacoasale\\.xyz\nabaiak\\.com\nabbanreddy\\.com\nabc\\.xyz\nabcdefh\\.xyz\nabcdeg\\.xyz\nabclauncher\\.com\nabiente\\.ru\nabovetherivernc\\.com\nabtasty\\.com\nabuser\\.shop\nacademia\\-nsk\\.org\nacads\\.net\nacarreo\\.ru\naccount\\-my1\\.xyz\naccs\\-store\\.ru\nactata\\.co\nactualremont\\.ru\nacunetix\\-referrer\\.com\nadanih\\.com\nadcash\\.com\naddblueoff\\.com\\.ua\nadelachrist\\.top\nadelly\\.bg\nadf\\.ly\nadpostmalta\\.com\nadrenalinebot\\.net\nadrenalinebot\\.ru\nadspart\\.com\nadtiger\\.tk\nadult\\-video\\-chat\\.ru\nadultfullhd\\.com\nadventureparkcostarica\\.com\nadvertisefree\\.co\\.uk\nadviceforum\\.info\nadvocatemsk\\.ru\nadvokateg\\.co\nadvokateg\\.com\nadvokateg\\.ru\nadvokateg\\.xyz\naerodizain\\.com\naerogo\\.com\naerotour\\.ru\naffiliate\\-programs\\.biz\naffordablewebsitesandmobileapps\\.com\nafora\\.ru\nafshan\\.shop\nagreda\\.pluto\\.ro\nagro\\-gid\\.com\nagtl\\.com\\.ua\nahecmarket\\.xyz\nahhjf\\.com\nahrefs\\.com\nai\\-seo\\-services\\.com\naibolita\\.com\naidarmebel\\.kz\naimeesblog\\.xyz\naimiot\\.net\naitiman\\.ae\nakama\\.com\nakmussale\\.xyz\nakuhni\\.by\nakusherok\\.ru\nakvamaster\\.dp\\.ua\nalborzan\\.com\nalbuteroli\\.com\nalcobutik24\\.com\nalert\\-fdm\\.xyz\nalert\\-fjg\\.xyz\nalert\\-hgd\\.xyz\nalert\\-jdh\\.xyz\nalertomall\\.xyz\nalessandraleone\\.com\nalexsander\\.ch\nalfa\\-medosmotr\\.ru\nalfa9\\.com\nalfabot\\.xyz\nalfapro\\.ru\nalguiblog\\.online\nalibestsale\\.com\naliexpress\\.com\naliexsale\\.ru\nalif\\-ba\\-ta\\.com\nalinabaniecka\\.pl\nalive\\-ua\\.com\naliviahome\\.online\nalkanfarma\\.org\nall\\-news\\.kz\nall4bath\\.ru\nall4invest\\.ru\nallcredits\\.su\nallcryptonews\\.com\nalldownload\\.pw\nallergick\\.com\nallergija\\.com\nallfan\\.ru\nallforminecraft\\.ru\nallknow\\.info\nallkrim\\.com\nallmarketsnewdayli\\.gdn\nallnews\\.md\nallnews24\\.in\nallpdfmags\\.net\nallproblog\\.com\nallsilver925\\.co\\.il\nalltheviews\\.com\nallvacancy\\.ru\nallwomen\\.info\nallwrighter\\.ru\nalma\\-mramor\\.com\\.ua\nalot\\.com\nalp\\-rk\\.ru\nalphaforum\\.ru\nalphaopt24\\.ru\nalpharma\\.net\nalpinaskate\\.com\naltermix\\.ua\nalveris\\.ru\nam\\-se\\.com\namanda\\-porn\\.ga\namatocanizalez\\.net\namazon\\-seo\\-service\\.com\namoi\\.tn\namoremio\\.by\namos\\-kids\\.ru\namospalla\\.es\namp\\-project\\.pro\namt\\-k\\.ru\namtel\\-vredestein\\.com\namylynnandrews\\.xyz\nanabolics\\.shop\nanal\\-acrobats\\.hol\\.es\nanalytics\\-ads\\.xyz\nanalyze\\-best\\-copywriting\\-services\\.party\nanalyze\\-extra\\-analytic\\-service\\.stream\nananumous\\.ru\nanapa\\-inns\\.ru\nandrewancheta\\.com\nandroid\\-style\\.com\nandroid\\-systems\\.ru\nandroid\\-vsem\\.org\nandroid4fun\\.org\nandroids\\-store\\.com\nanimalphotos\\.xyz\nanimebox\\.com\\.ua\nanimenime\\.ru\nannaeydlish\\.top\nanrtmall\\.xyz\nanti\\-crisis\\-seo\\.com\nanticrawler\\.org\nantiguabarbuda\\.ru\nantonovich\\-design\\.com\\.ua\nanydesk\\.site\naosheng\\-tech\\.com\naoul\\.top\napartmentbay\\.ru\napartmentratings\\.com\napilian\\.xyz\napishops\\.ru\napollon\\-market\\-url\\.org\napplepharma\\.ru\napteka\\-doc\\.ru\napteka\\-pharm\\.ru\napteka\\.info\napxeo\\.info\narabic\\-poetry\\.com\naramaicmedia\\.org\narate\\.ru\narcadepages\\.com\narcarticle\\.online\narchitecturebest\\.com\narendadogovor\\.ru\narendakvartir\\.kz\narendas\\.net\narendovalka\\.xyz\nargo\\-visa\\.ru\narkansale\\.xyz\narkartex\\.ru\narkkivoltti\\.net\narpe\\.top\narraty\\.altervista\\.org\nartblog\\.top\nartclipart\\.ru\nartdeko\\.info\nartefakct\\.com\nartpaint\\-market\\.ru\nartparquet\\.ru\nartpress\\.top\nartsmarket\\.xyz\narturs\\.moscow\naruplighting\\.com\nasacopaco\\.tk\nascotgoods\\.xyz\nasia\\-forum\\.ru\nask\\-yug\\.com\nasmxsatadriverin\\.aircus\\.com\nastimvnc\\.online\nasupro\\.com\nasynt\\.net\naszokshop\\.xyz\natlant\\-auto\\.info\natlasvkusov\\.ru\natleticpharm\\.org\natley\\.eu\\.pn\natmagroup\\.ru\natoblog\\.online\natyks\\.ru\naucoinhomes\\.com\naudiobangout\\.com\nausergrubhof\\.info\naustralia\\-opening\\-times\\.com\nauto\\-b2b\\-seo\\-service\\.com\nauto\\-complex\\.by\nauto\\-kia\\-fulldrive\\.ru\nauto\\-moto\\-elektronika\\.cz\nauto\\-news\\-digest\\.ru\nauto\\-seo\\-service\\.com\nauto\\-seo\\-service\\.org\nauto\\-zapchasti\\.org\nauto\\.rusvile\\.lt\nauto4style\\.ru\nautoblog\\.org\\.ua\nautobrennero\\.it\nautobudpostach\\.club\nautofuct\\.ru\nautoloans\\.com\nautolombard\\-krasnodar\\.ru\nautomate\\-amazon\\-affiliation\\.com\nautomobile\\-spec\\.com\nautonew\\.biz\nautoseo\\-service\\.org\nautoseo\\-traffic\\.com\nautoseo\\-trial\\-for\\-1\\.com\nautoseoservice\\.org\nautoseotips\\.com\nautoservic\\.by\nautotop\\.com\\.ua\nautovideobroadcast\\.com\nautowebmarket\\.com\\.ua\navcoast\\.com\navek\\.ru\naviapanda\\.ru\naviaseller\\.su\naviav\\.ru\\.com\navitocars\\.ru\naviva\\-limoux\\.com\navkzarabotok\\.com\navkzarabotok\\.info\navon\\-severozapad\\.ru\navtoarenda\\.by\navtocredit\\-legko\\.ru\navtointeres\\.ru\navtorskoe\\-vino\\.ru\navtovolop\\.ru\navtovykup\\.kz\nawency\\.com\naworlds\\.com\naxcus\\.top\nayerbo\\.xhost\\.ro\nayongoods\\.xyz\nazadnegar\\.com\nazartclub\\.org\nazartniy\\-bonus\\.com\nazazu\\.ru\nazbuka\\-mo\\.ru\nazbukadiets\\.ru\nazbukafree\\.com\nazlex\\.uz\nb\\-buyeasy\\.com\nb2b\\-lounge\\.com\nbablonow\\.ru\nbaciakte\\.online\nbackgroundpictures\\.net\nbacklinks\\-fast\\-top\\.com\nbag77\\.ru\nbahisgunceladresi\\.com\nbaixar\\-musicas\\-gratis\\.com\nbala\\.getenjoyment\\.net\nbaladur\\.ru\nbalakhna\\.online\nbalayazh\\.com\nbalitouroffice\\.com\nbalkanfarma\\.org\nbalkanfarma\\.ru\nbalois\\.worldbreak\\.com\nbambi\\.ck\\.ua\nbanan\\.tv\nbankcrediti\\.ru\nbankhummer\\.co\nbankiem\\.pl\nbarbarahome\\.top\nbard\\-real\\.com\\.ua\nbashtime\\.ru\nbasisches\\-wasser\\.net\nbatietiket\\.com\nbatut\\-fun\\.ru\nbausparen\\.bz\\.it\nbavariagid\\.de\nbavsac\\.com\nbazaronline24\\.ru\nbbtec\\.net\nbdf\\-tracker\\.top\nbeachtoday\\.ru\nbeamfall\\.info\nbeauby\\.ru\nbeauty\\-clinic\\.ru\nbeauty\\-lesson\\.com\nbeclean\\-nn\\.ru\nbedroomlighting\\.us\nbegalka\\.xyz\nbelinvestdom\\.by\nbelreferatov\\.net\nberdasovivan\\.ru\nberemenyashka\\.com\nberglion\\.com\nberkinan\\.xyz\nberlininsl\\.com\nberrymall\\.ru\nbest\\-deal\\-hdd\\.pro\nbest\\-mam\\.ru\nbest\\-offer\\-hdd\\-1\\.info\nbest\\-offer\\-hdd\\-1\\.space\nbest\\-offer\\-hdd\\-1\\.top\nbest\\-offer\\-hdd\\.pro\nbest\\-offer\\-hdd\\.xyz\nbest\\-ping\\-service\\-usa\\-1\\.info\nbest\\-ping\\-service\\-usa\\-1\\.space\nbest\\-ping\\-service\\-usa\\-1\\.top\nbest\\-ping\\-service\\-usa\\.blue\nbest\\-ping\\-service\\-usa\\.me\nbest\\-ping\\-service\\-usa\\.space\nbest\\-ping\\-service\\-usa\\.top\nbest\\-ping\\-service\\-usa\\.xyz\nbest\\-printmsk\\.ru\nbest\\-seo\\-offer\\.com\nbest\\-seo\\-service\\.tk\nbest\\-seo\\-software\\.xyz\nbest\\-seo\\-solution\\.com\nbestbookclub\\.ru\nbestchoice\\.cf\nbestempresas\\.es\nbestfortraders\\.com\nbesthatcheries\\.com\nbestleofferhdd\\.info\nbestmobilityscooterstoday\\.com\nbestofferfyhdd\\.info\nbestofferhddacy\\.info\nbestofferhddbyt\\.info\nbestofferhddeed\\.info\nbestofferhddity\\.info\nbestofferifyhdd\\.info\nbestofferswalkmydogouteveryday\\.gq\nbestorofferhdd\\.info\nbestplacetobuyeriacta\\.jw\\.lt\nbestvpnrating\\.com\nbestwebsiteawards\\.com\nbestwebsitesawards\\.com\nbet\\-prognoz\\.com\nbet\\-winner1\\.ru\nbet2much\\.ru\nbetonka\\.pro\nbetslive\\.ru\nbetterhealthbeauty\\.com\nbettorschool\\.ru\nbetune\\.onlinewebshop\\.net\nbetwinservice\\.com\nbeyan\\.host\\.sk\nbez\\-zabora\\.ru\nbezcmexa\\.ru\nbezlimitko\\.xyz\nbezprostatita\\.com\nbezsporno\\.ru\nbeztuberkuleza\\.ru\nbhf\\.vc\nbibprsale\\.xyz\nbif\\-ru\\.info\nbigcities\\.org\nbiglistofwebsites\\.com\nbiketank\\.ga\nbilliard\\-classic\\.com\\.ua\nbilligerstrom\\.co\nbillyblog\\.online\nbimatoprost\\-careprost\\.com\nbimatoprost\\-careprost\\.com\\.ua\nbin\\-brokers\\.com\nbinokna\\.ru\nbinomo\\.kz\nbio\\-japan\\.net\nbio\\-market\\.kz\nbio\\.trade\\-jp\\.net\nbioca\\.org\nbiplanecentre\\.ru\nbird1\\.ru\nbirzha\\-truda\\.eu\nbisign\\.info\nbitcoin\\-ua\\.top\nbitcoins\\-forum\\.club\nbitcoins\\-forum\\.info\nbitcoins\\-forum\\.online\nbitcoins\\-forum\\.pro\nbitcoins\\-live\\.ru\nbiteg\\.xyz\nbitniex\\.com\nbiz\\-law\\.ru\nbiznesluxe\\.ru\nbiznesrealnost\\.ru\nbiznesschat\\.net\nbizru\\.info\nbki24\\.info\nbkns\\.vn\nblack\\-friday\\.ga\nblack\\-tip\\.top\nblackhatworth\\.com\nblackle\\.com\nblackplanet\\.com\nblackwitchcraft\\.ru\nblancablog\\.online\nblavia\\.00author\\.com\nbleacherreport\\.com\nblockchaintop\\.nl\nblockworld\\.ru\nblog\\.f00kclan\\.de\nblog\\.koorg\\.ru\nblog\\.latuti\\.net\nblog\\.remote\\-computer\\.de\nblog\\.xsk\\.in\nblog\\.yam\\.com\nblog100\\.org\nblog2019\\.top\nblog2019\\.xyz\nblog4u\\.top\nblogarun\\.co\nbloggen\\.be\nbloggers\\.nl\nblogig\\.org\nblogking\\.top\nbloglag\\.com\nblognet\\.top\nblogorganictraffic\\.shop\nblogos\\.kz\nblogping\\.xyz\nblogs\\.rediff\\.com\nblogseo\\.xyz\nblogstar\\.fun\nblogster\\.com\nblogtotal\\.de\nblogtraffic\\.shop\nblogua\\.org\nblue\\-square\\.biz\nbluerobot\\.info\nbmusshop\\.xyz\nbo\\-vtb24\\.ru\nboard\\.f00d\\.de\nbobba\\.dzaba\\.com\nbodybuilding\\-shop\\.biz\nboleznikogi\\.com\nbolezniorganov\\.ru\nboltalko\\.xyz\nboltushkiclub\\.ru\nbombla\\.org\nbonkers\\.name\nbonniesblog\\.online\nbonus\\-betting\\.ru\nbonus\\-spasibo\\-sberbank\\.ru\nbonus\\-vtb\\.ru\nbonux\\.nextview\\.ru\nbookmaker\\-bet\\.com\nbookmark4you\\.biz\nbookmark4you\\.com\nbookmark4you\\.com\\.biz\nbooks\\-top\\.com\nboole\\.onlinewebshop\\.net\nboost\\-my\\-site\\.com\nboost24\\.biz\nboostmyppc\\.com\nbosefux\\.esy\\.es\nbosman\\.pluto\\.ro\nbostonline\\.xyz\nbot\\-traffic\\.icu\nbot\\-traffic\\.xyz\nbotamycos\\.fr\nbottraffic\\.live\nbottraffic143\\.xyz\nbottraffic329\\.xyz\nbottraffic4free\\.club\nbottraffic4free\\.host\nbottraffic999\\.xyz\nbouda\\.kvalitne\\.cz\nbowigosale\\.xyz\nbpro1\\.top\nbradleylive\\.xyz\nbrains2\\.biz\nbrakehawk\\.com\nbrandnewtube\\.com\nbrandov\\.ru\nbrateg\\.xyz\nbrauni\\.com\\.ua\nbravica\\.biz\nbravica\\.com\nbravica\\.me\nbravica\\.net\nbravica\\.news\nbravica\\.online\nbravica\\.pro\nbravica\\.ru\nbravica\\.su\nbreak\\-the\\-chains\\.com\nbreget74\\.ru\nbrendbutik\\.ru\nbriankatrine\\.top\nbrickmaster\\.pro\nbrillianty\\.info\nbristolhostel\\.com\nbristolhotel\\.com\nbristolhotel\\.com\\.ua\nbritneyblog\\.online\nbrk\\-rti\\.ru\nbrokergid\\.ru\nbrooklyn\\-ads\\.com\nbrooklynsays\\.com\nbrothers\\-smaller\\.ru\nbrus\\-vsem\\.ru\nbrus\\.city\nbrusilov\\.ru\nbsell\\.ru\nbtcnix\\.com\nbtt\\-club\\.pro\nbudilneg\\.xyz\nbudmavtomatika\\.com\\.ua\nbudpost\\.com\\.ua\nbufetout\\.ru\nbugof\\.gq\nbuhproffi\\.ru\nbuigas\\.00it\\.com\nbuildnw\\.ru\nbuildwithwendy\\.com\nbuketeg\\.xyz\nbukleteg\\.xyz\nbulgaria\\-web\\-developers\\.com\nbuqayy0\\.livejournal\\.com\nbur\\-rk\\.ru\nburger\\-imperia\\.com\nburn\\-fat\\.ga\nbusiness\\-online\\-sberbank\\.ru\nbuttons\\-for\\-website\\.com\nbuttons\\-for\\-your\\-website\\.com\nbuy\\-cheap\\-online\\.info\nbuy\\-cheap\\-pills\\-order\\-online\\.com\nbuy\\-forum\\.ru\nbuy\\-meds24\\.com\nbuyantiviralwp\\.com\nbuyessay3\\.blogspot\\.ru\nbuyessaynow\\.biz\nbuyessayonline19\\.blogspot\\.ru\nbuyfriend\\.ru\nbuyk\\.host\\.sk\nbuynorxx\\.com\nbuypharmacydrug\\.com\nbuypillsonline24h\\.com\nbuypillsorderonline\\.com\nbuypuppies\\.ca\nbuyscabiescream\\.com\nbuytizanidineonline\\.blogspot\\.com\nbuytizanidineonlinenoprescription\\.blogspot\\.com\nbuyviagraa\\.blogspot\\.com\nbvps8\\.com\nbycontext\\.com\nbyme\\.se\nbytimedance\\.ru\nc\\-english\\.ru\nc2bit\\.hk\ncalifornianews\\.cf\ncall\\-of\\-duty\\.info\ncallejondelpozo\\.es\ncalvet\\.altervista\\.org\ncancerfungus\\.com\ncandida\\-international\\.blogspot\\.com\ncandida\\-society\\.org\\.uk\ncannazon\\-market\\.org\ncanoncdriverq3\\.pen\\.io\ncanyougethighofftizanidine\\.blogspot\\.com\ncanzoni\\.ru\ncarabela\\.com\\.do\ncarbon\\-linger\\-hierarchy\\-suntan\\.top\ncarder\\.me\ncarder\\.tv\ncarders\\.ug\ncardiosport\\.com\\.ua\ncardsdumps\\.com\ncardsharp1\\.ru\ncardul\\.ru\ncarezi\\.com\ncarfax\\.com\\.ua\ncarivka\\.com\\.ua\ncarloans\\.com\ncarscrim\\.com\ncarsdined\\.org\ncarsnumber\\.com\ncarson\\.getenjoyment\\.net\ncarsoncitypizza\\.com\ncartechnic\\.ru\ncasablancamanor\\.co\\.za\ncashforum\\.cc\ncasino\\-top3\\.fun\ncasino\\-top3\\.online\ncasino\\-top3\\.ru\ncasino\\-top3\\.site\ncasino\\-top3\\.space\ncasino\\-top3\\.website\ncasino\\-v\\.site\ncasino\\-vulkane\\.com\ncasino\\-x\\-now\\.ru\ncasino\\-x\\.host\ncasinosbewertung\\.de\ncasinox\\-jp\\.com\ncastingbank\\.ru\ncatalogs\\-parts\\.com\ncatherinemill\\.xyz\ncatterybengal\\.com\ncattyhealth\\.com\ncauxmall\\.xyz\ncayado\\.snn\\.gr\ncazino\\-v\\.online\ncazino\\-v\\.ru\ncbcseward\\.com\ncbox\\.ws\nccfullzshop\\.com\ncelestepage\\.xyz\ncelldog\\.ru\ncenokos\\.ru\ncenoval\\.ru\ncentre\\-indigo\\.org\\.ua\ncentrumcoachingu\\.com\ncercacamion\\.it\ncertifywebsite\\.win\ncezartabac\\.ro\ncfsrating\\.sonicwall\\.com\ncgi2\\.nintendo\\.co\\.jp\nchainii\\.ru\nchannel\\-badge\\-betray\\-volcanic\\.com\nchastnoeporno\\.com\nchat\\.ru\nchatmall\\.xyz\nchatrazvrat\\.ru\nchatroulette\\.life\nchcu\\.net\ncheap\\-trusted\\-backlinks\\.com\ncheapkeys\\.ovh\ncheappills24h\\.com\nchee\\-by\\.biz\nchelyabinsk\\.dienai\\.ru\nchelyabinsk\\.xrus\\.org\ncherrypointplace\\.ca\ncherubinimobili\\.it\nchimiver\\.info\nchinese\\-amezon\\.com\nchip35\\.ru\nchipmp3\\.ru\nchizhik\\-2\\.ru\nchomexun\\.com\nchoosecuisine\\.com\nci\\.ua\nciarustde\\.online\ncigarpass\\.com\ncilolamall\\.xyz\ncinemaenergy\\-hd\\.ru\nciproandtizanidine\\.blogspot\\.com\ncitizenclsdriveri7\\.pen\\.io\ncityadspix\\.com\ncitybur\\.ru\ncityreys\\.ru\ncivilwartheater\\.com\nclarithromycin500mg\\.com\nclash\\-clans\\.ru\nclassicakuhni\\.ru\ncleandom\\.in\\.ua\ncleaningservices\\.kiev\\.ua\nclicksor\\.com\nclimate\\.by\nclmforexeu\\.com\nclothing\\-deal\\.club\ncloudsendchef\\.com\nclub\\-lukojl\\.ru\nclub\\-musics\\.ru\nclub\\-samodelkin\\.ru\ncmd\\.kz\ncmrrsale\\.xyz\ncmseshop\\.xyz\ncobaltpro\\.ru\ncocyq\\.inwtrade\\.com\ncoderstate\\.com\ncodq\\.info\ncodysbbq\\.com\ncoeus\\-solutions\\.de\ncoffeemashiny\\.ru\ncoinswitch\\.cash\ncoldfilm\\.ru\ncoleso\\.md\ncollectinviolity\\.com\ncollegeessay19\\.blogspot\\.ru\ncolumb\\.net\\.ua\ncometorussia\\.net\ncomissionka\\.net\ncommentag\\.com\ncommerage\\.ru\ncomp\\-pomosch\\.ru\ncompliance\\-alex\\.top\ncompliance\\-alex\\.xyz\ncompliance\\-alexa\\.top\ncompliance\\-alexa\\.xyz\ncompliance\\-andrew\\.top\ncompliance\\-andrew\\.xyz\ncompliance\\-barak\\.top\ncompliance\\-barak\\.xyz\ncompliance\\-brian\\.top\ncompliance\\-brian\\.xyz\ncompliance\\-checker\\-7\\.info\ncompliance\\-don\\.top\ncompliance\\-don\\.xyz\ncompliance\\-donald\\.xyz\ncompliance\\-elena\\.top\ncompliance\\-elena\\.xyz\ncompliance\\-fred\\.top\ncompliance\\-fred\\.xyz\ncompliance\\-george\\.top\ncompliance\\-george\\.xyz\ncompliance\\-irvin\\.top\ncompliance\\-irvin\\.xyz\ncompliance\\-ivan\\.top\ncompliance\\-ivan\\.xyz\ncompliance\\-jack\\.top\ncompliance\\-jane\\.top\ncompliance\\-jess\\.top\ncompliance\\-jessica\\.top\ncompliance\\-john\\.top\ncompliance\\-josh\\.top\ncompliance\\-julia\\.top\ncompliance\\-julianna\\.top\ncompliance\\-margo\\.top\ncompliance\\-mark\\.top\ncompliance\\-mary\\.top\ncompliance\\-nelson\\.top\ncompliance\\-olga\\.top\ncompliance\\-viktor\\.top\ncompliance\\-walt\\.top\ncompliance\\-walter\\.top\ncompliance\\-willy\\.top\ncomputer\\-remont\\.ru\ncomuneshop\\.xyz\nconciergegroup\\.org\nconcretepol\\.com\nconnectikastudio\\.com\nconstanceonline\\.top\nconstantaservice\\.net\nconstrumac\\.com\\.mx\ncontextualyield\\.com\ncookie\\-law\\-enforcement\\-aa\\.xyz\ncookie\\-law\\-enforcement\\-bb\\.xyz\ncookie\\-law\\-enforcement\\-cc\\.xyz\ncookie\\-law\\-enforcement\\-dd\\.xyz\ncookie\\-law\\-enforcement\\-ee\\.xyz\ncookie\\-law\\-enforcement\\-ff\\.xyz\ncookie\\-law\\-enforcement\\-gg\\.xyz\ncookie\\-law\\-enforcement\\-hh\\.xyz\ncookie\\-law\\-enforcement\\-ii\\.xyz\ncookie\\-law\\-enforcement\\-jj\\.xyz\ncookie\\-law\\-enforcement\\-kk\\.xyz\ncookie\\-law\\-enforcement\\-ll\\.xyz\ncookie\\-law\\-enforcement\\-mm\\.xyz\ncookie\\-law\\-enforcement\\-nn\\.xyz\ncookie\\-law\\-enforcement\\-oo\\.xyz\ncookie\\-law\\-enforcement\\-pp\\.xyz\ncookie\\-law\\-enforcement\\-qq\\.xyz\ncookie\\-law\\-enforcement\\-rr\\.xyz\ncookie\\-law\\-enforcement\\-ss\\.xyz\ncookie\\-law\\-enforcement\\-tt\\.xyz\ncookie\\-law\\-enforcement\\-uu\\.xyz\ncookie\\-law\\-enforcement\\-vv\\.xyz\ncookie\\-law\\-enforcement\\-ww\\.xyz\ncookie\\-law\\-enforcement\\-xx\\.xyz\ncookie\\-law\\-enforcement\\-yy\\.xyz\ncookie\\-law\\-enforcement\\-zz\\.xyz\ncookielawblog\\.wordpress\\.com\ncookingmeat\\.ru\ncool\\-mining\\.com\ncool\\-wedding\\.net\ncoop\\-gamers\\.ru\ncopblock\\.org\ncopyrightclaims\\.org\ncopyrightinstitute\\.org\ncoral\\-info\\.com\ncosmediqueresults\\.com\ncountravel\\.net\ncovadhosting\\.biz\ncovblog\\.top\ncoverage\\-my\\.com\ncovetnica\\.com\ncovid\\-schutzmasken\\.de\ncowblog\\.fr\ncp24\\.com\\.ua\ncpnbshop\\.xyz\ncranly\\.net\ncrazy\\-mining\\.org\ncrd\\.clan\\.su\ncreams\\.makeforum\\.eu\ncredit\\-card\\-tinkoff\\.ru\ncredit\\-cards\\-online24\\.ru\ncredit\\.co\\.ua\ncreditmoney\\.com\\.ua\ncrest\\-poloski\\.ru\ncrest3d\\.ru\ncrirussian\\.ru\ncruiseraf\\.net\ncrypto\\-bear\\.com\ncrypto\\-bears\\.com\ncrypto\\-mining\\.club\ncrypto\\-wallets\\.org\ncrypto1x1\\.com\ncrystalslot\\.com\ncubook\\.supernew\\.org\ncurenaturalicancro\\.com\ncurenaturalicancro\\.nl\ncustomsua\\.com\\.ua\ncutalltheshit\\.com\ncvety24\\.by\ncvta\\.xyz\ncxpromote\\.com\ncyber\\-monday\\.ga\ncyclobenzaprinevstizanidine\\.blogspot\\.com\ncymbaltaandtizanidine\\.blogspot\\.com\ncyprusbuyproperties\\.com\nczcedu\\.com\ndacha\\-svoimi\\-rukami\\.com\ndailyblog\\.xyz\ndailyrank\\.net\ndailyseo\\.xyz\ndailystorm\\.ru\ndailystrength\\.org\ndailytraffic\\.shop\ndame\\-ns\\.kz\ndamedingel\\.ya\\.ru\ndamianis\\.ru\ndanashop\\.ru\ndanceuniverse\\.ru\ndanhale\\.xyz\ndantk\\.kz\ndaptravel\\.com\ndarcysassoon\\.top\ndarkbooks\\.org\ndarknet\\-hydra\\-onion\\.biz\ndarknet\\.sb\ndarknetsitesguide\\.com\ndarleneblog\\.online\ndarodar\\.com\ndatsun\\-do\\.com\ndav\\.kz\ndavilaonline\\.shop\ndawlenie\\.com\ndbmkfhqk\\.bloger\\.index\\.hr\ndbutton\\.net\ndcdcapital\\.com\nddlmega\\.net\nddpills\\.com\nde\\.zapmeta\\.com\ndear\\-diary\\.ru\ndeart\\-13\\.ru\ndeda\\-moroza\\-zakaz\\.ru\ndeirdre\\.top\ndekorkeramik\\.ru\ndelayreferat\\.ru\ndelfin\\-aqua\\.com\\.ua\ndelo\\.fund\ndeluxewatch\\.su\ndemenageur\\.com\nden\\-noch24\\.ru\ndengi\\-v\\-kredit\\.in\\.ua\ndenisecarey\\.top\ndeniseconnie\\.top\ndeniven\\.1bb\\.ru\ndent\\-home\\.ru\ndentuled\\.net\ndepositfiles\\-porn\\.com\ndepositfiles\\-porn\\.ga\ndermatovenerologiya\\.com\nderyie\\.com\ndescargar\\-musica\\-gratis\\.net\ndescargar\\-musicas\\-gratis\\.com\ndesign\\-lands\\.ru\ndesigndevise\\.com\ndetailedvideos\\.com\ndetalizaciya\\-tut\\.biz\ndetective01\\.ru\ndetki\\-opt\\.ru\ndetoolzon\\.xyz\ndetskie\\-konstruktory\\.ru\ndetskie\\-zabavi\\.ru\ndeutsche\\-poesie\\.com\ndev\\-seo\\.blog\ndevochki\\-video\\.ru\ndezeypmall\\.xyz\ndgdsoutlet\\.xyz\ndiarioaconcagua\\.com\ndiatelier\\.ru\ndicru\\.info\ndiebesten\\.co\ndienai\\.ru\ndienmaytot\\.xyz\ndiesel\\-parts28\\.ru\ndigest\\-project\\.ru\ndigilander\\.libero\\.it\ndigital\\-video\\-processing\\.com\ndigitalfaq\\.com\ndimkino\\.ru\ndinkolove\\.ya\\.ru\ndiplom\\-nk\\.com\ndiplomas\\-ru\\.com\ndipstar\\.org\ndirectrev\\.com\ndiscounttaxi\\.kz\ndiscover\\-prior\\-full\\-stack\\-services\\.party\ndiscover\\-prior\\-ppc\\-service\\.party\ndiscover\\-top\\-seo\\-service\\.review\ndistonija\\.com\ndivan\\-dekor\\.com\\.ua\ndividendo\\.ru\ndiy\\-handmade\\-ideas\\.com\ndjekxa\\.ru\ndjonwatch\\.ru\ndjstools\\.com\ndktr\\.ru\ndldsshop\\.xyz\ndlya\\-android\\.org\ndms\\-sw\\.ru\ndna\\-sklad\\.ru\ndnepr\\-avtospar\\.com\\.ua\ndneprsvet\\.com\\.ua\ndnmetall\\.ru\ndocs4all\\.com\ndocsarchive\\.net\ndocsportal\\.net\ndocstoc\\.com\ndoctmalls\\.xyz\ndoctornadezhda\\.ru\ndocumentbase\\.net\ndocumentserver\\.net\ndocumentsite\\.net\ndodge\\-forum\\.eu\ndoeco\\.ru\ndoggyhealthy\\.com\ndogovorpodryada\\.ru\ndogshowsonice\\.com\ndogsrun\\.net\ndojki\\-devki\\.ru\ndojki\\-hd\\.com\ndoktoronline\\.no\ndokumentalkino\\.net\ndom\\-international\\.ru\ndomain\\-tracker\\.com\ndomashneeruporno\\.com\ndomashniy\\-hotel\\.ru\ndomashniy\\-recepti\\.ru\ndombestofferhdd\\.info\ndomcran\\.net\ndomik\\-derevne\\.ru\ndominateforex\\.ml\ndomination\\.ml\ndominterior\\.org\ndommdom\\.com\ndomovozik\\.ru\ndomoysshop\\.ru\ndompechey\\.by\ndomsadiogorod\\.ru\ndonvito\\.unas\\.cz\ndoreenblog\\.online\ndoska\\-vsem\\.ru\ndostavka\\-v\\-krym\\.com\ndostavka\\-v\\-ukrainu\\.ru\ndosug\\-lux\\.ru\ndosugrostov\\.site\ndownload\\-of\\-the\\-warez\\.blogspot\\.com\ndownloadkakaotalk\\.com\ndownloadmefiranaratb1972\\.xpg\\.com\\.br\ndoxyporno\\.com\ndoxysexy\\.com\ndoyouknowtheword\\-flummox\\.ml\ndprkboards\\.com\ndraniki\\.org\ndreamland\\-bg\\.com\ndreams\\-works\\.net\ndrev\\.biz\ndriving\\.kiev\\.ua\ndrugs\\-no\\-rx\\.info\ndrugspowerstore\\.com\ndrugstoreforyou\\.com\ndrupa\\.com\ndruzhbany\\.ru\ndruzhininevgeniy63\\.blogspot\\.com\ndspautomations\\.com\ndstroy\\.su\nduitbux\\.info\ndumpsccshop\\.com\ndvd\\-famille\\.com\ndvk\\-stroi\\.ru\ndvr\\.biz\\.ua\ndzinerstudio\\.com\ne\\-avon\\.ru\ne\\-buyeasy\\.com\ne\\-collantes\\.com\ne\\-commerce\\-seo\\.com\ne\\-commerce\\-seo1\\.com\ne\\-kwiaciarz\\.pl\ne\\-stroymart\\.kz\ne2click\\.com\neandsgallery\\.com\neaptekaplus\\.ru\nearn\\-from\\-articles\\.com\nearnian\\-money\\.info\nearnity\\-money\\.info\neasycommerce\\.cf\neasync\\.io\neasytuningshop\\.ru\neavuinsr\\.online\necblog\\.xyz\necommerce\\-seo\\.com\necommerce\\-seo\\.org\necomp3\\.ru\neconom\\.co\necookna\\.com\\.ua\nedakgfvwql\\.ru\nedelstahlschornstein\\-123\\.de\neditmedios\\.com\nedmed\\-sonline\\.com\nednetstore\\.xyz\nedshopping\\.net\neduardoluis\\.com\neducation\\-cz\\.ru\neduchess\\.ru\nedudocs\\.net\neduinfosite\\.com\neduserver\\.net\neecz\\.org\neets\\.net\nege\\-essay\\.ru\nege\\-krasnoyarsk\\.ru\negovaleo\\.it\negvar\\.net\nek\\-invest\\.ru\nekatalog\\.xyz\nekaterinburg\\.xrus\\.org\nekbspravka\\.ru\neko\\-gazon\\.ru\nekobata\\.ru\nekoproekt\\-kr\\.ru\nekspertmed\\.com\nekto\\.ee\nel\\-nation\\.com\nelainasblog\\.xyz\neldoradorent\\.az\nelection\\.interferencer\\.ru\nelectric\\-blue\\-industries\\.com\nelectricwheelchairsarea\\.com\nelectro\\-prom\\.com\nelegante\\-vitrage\\.ru\nelektrikovich\\.ru\nelektrischezi\\.canalblog\\.com\nelektrischeziga\\.livejournal\\.com\nelektrischezigarette1\\.blog\\.pl\nelektrischezigarette1\\.onsugar\\.com\nelektrischezigarette2\\.devhub\\.com\nelektrischezigarette2\\.onsugar\\.com\nelektrischezigarettekaufen2\\.cowblog\\.fr\nelektrischezigaretten1\\.blogse\\.nl\nelektrischezigaretten2\\.beeplog\\.com\nelektronischezi\\.livejournal\\.com\nelektronischezigarette2\\.mex\\.tl\nelektronischezigarettekaufen1\\.beeplog\\.com\nelektronischezigarettekaufen1\\.myblog\\.de\nelektronischezigarettekaufen2\\.tumblr\\.com\nelektrozigarette1\\.dreamwidth\\.org\nelektrozigarette2\\.webs\\.com\nelektrozigarette2\\.wordpressy\\.pl\nelektrozigarettekaufen1\\.devhub\\.com\nelektrozigarettekaufen2\\.blogse\\.nl\nelektrozigaretten1\\.postbit\\.com\nelektrozigaretten1\\.tumblr\\.com\nelektrozigaretten1\\.webs\\.com\nelektrozigaretten2\\.yn\\.lt\nelementspluss\\.ru\nelenatkachenko\\.com\\.ua\nelentur\\.com\\.ua\nelidelcream\\.weebly\\.com\nelitesportsadvisor\\.com\nelizabethbruno\\.top\nelkacentr\\.ru\nellemarket\\.com\nelmifarhangi\\.com\neloconcream\\.blogspot\\.com\neloxal\\.ru\nelvel\\.com\\.ua\nembedle\\.com\nemctestlab\\.ru\nemerson\\-rus\\.ru\nemicef\\.com\nempire\\-market\\.org\nempire\\-market\\.xyz\nempiremarket\\-link\\.org\nempiremarketlink24\\.com\nempirestuff\\.org\nempis\\.magix\\.net\nencmbtia\\.online\nenergomash\\.net\nenergy\\-ua\\.com\nenergydiet\\-info\\.ru\nenergydiet24\\.ru\nenergysexy\\.com\nenginebay\\.ru\nenglishdictionaryfree\\.com\nenglishtopic\\.ru\nenter\\-unicredit\\.ru\nentgetadsincome\\.info\nenvistore\\.xyz\neonpal\\.com\nepcpolo\\.com\nepicdiving\\.com\neraglass\\.com\nerank\\.eu\neredijovon\\.com\nereko\\.ru\nerias\\.xyz\neric\\-artem\\.com\nericshome\\.store\nerinhome\\.xyz\nero\\-video\\-chat\\.org\nerofus\\.online\neropho\\.com\neropho\\.net\nerot\\.co\nerotag\\.com\neroticheskij\\-video\\-chat\\.ru\nerotikstories\\.ru\nes\\-pfrf\\.ru\nes5\\.com\nescort\\-russian\\.com\nescortplius\\.com\neshop\\.md\neskei83\\.com\nesnm\\.ru\nesoterikforum\\.at\nessaytags\\.com\nestdj\\.com\neste\\-line\\.com\\.ua\netairikavideo\\.gr\netehnika\\.com\\.ua\netotupo\\.ru\nets\\-2\\-mod\\.ru\netsfshop\\.xyz\neu\\-cookie\\-law\\-enforcement\\-4\\.xyz\neu\\-cookie\\-law\\-enforcement\\-5\\.xyz\neu\\-cookie\\-law\\-enforcement\\-6\\.xyz\neu\\-cookie\\-law\\-enforcement\\-7\\.xyz\neu\\-cookie\\-law\\-enforcement1\\.xyz\neu\\-cookie\\-law\\-enforcement2\\.xyz\neu\\-cookie\\-law\\.blogspot\\.com\neu\\-cookie\\-law\\.info\neurocredit\\.xyz\neuromasterclass\\.ru\neuronis\\-free\\.com\neuropages\\.com\\.ru\neuropeanwatches\\.ru\neurosamodelki\\.ru\neuroskat\\.ru\nevaashop\\.ru\nevent\\-tracking\\.com\neventiyahall\\.ru\nevreuxshop\\.xyz\nexchangeit\\.gq\nexchanges\\-bet\\.com\nexclusive\\-profit\\.com\nexdocsfiles\\.com\nexecedmall\\.xyz\nexecutehosting\\.com\nexotic\\-video\\-chat\\.ru\nexpdom\\.com\nexpediacustomerservicenumber\\.online\nexpert\\-find\\.ru\nexpertnaya\\-ocenka\\.ru\nexplore\\-prior\\-web\\-service\\.review\nexpress\\-vyvoz\\.ru\nexpresstoplivo\\.ru\nextener\\.com\nextener\\.org\nextrabot\\.com\nextremez\\.net\neyes\\-on\\-you\\.ga\neyessurgery\\.ru\nez8motelseaworldsandiego\\.com\nezigarettekaufen\\.myblog\\.de\nezigarettekaufen1\\.hpage\\.com\nezigarettekaufen2\\.blox\\.pl\nezigarettekaufen2\\.mpbloggar\\.se\nezigarettekaufen2\\.yolasite\\.com\nezigarettenkaufen1\\.deviantart\\.com\nezigarettenkaufen1\\.pagina\\.gr\nezigarettenkaufen2\\.dreamwidth\\.org\nezigarettenshop1\\.yolasite\\.com\nezigarettenshop2\\.myblog\\.de\nezigarettenshop2\\.postbit\\.com\nezigaretteshop\\.webs\\.com\nezigaretteshop2\\.mywapblog\\.com\nezigaretteshop2\\.vefblog\\.net\nezofest\\.sk\nezrvrentals\\.com\nf\\-loaded\\.de\nf\\-online\\.de\nf00kclan\\.de\nf012\\.de\nf07\\.de\nf0815\\.de\nf1nder\\.org\nfacebook\\-mobile\\.xyz\nfainaidea\\.com\nfaithe\\.top\nfalco3d\\.com\nfalcoware\\.com\nfamily1st\\.ca\nfamilyholiday\\.ml\nfamilyphysician\\.ru\nfanoboi\\.com\nfartunabest\\.ru\nfashion\\-mk\\.net\nfashiong\\.ru\nfashionindeed\\.ml\nfast\\-wordpress\\-start\\.com\nfastgg\\.net\nfatrizscae\\.online\nfavorcosmetics\\.com\nfavoritemoney\\.ru\nfavoritki\\-msk\\.ru\nfavornews\\.com\nfazika\\.ru\nfba\\-mexico\\.com\nfbdownloader\\.com\nfbfreegifts\\.com\nfc\\-007\\.com\nfealq\\.com\nfeargames\\.ru\nfeedback\\.sharemyfile\\.ru\nfeedouble\\.com\nfeedouble\\.net\nfeel\\-planet\\.com\nfeeriaclub\\.ru\nfeiacmr\\.shop\nfeminist\\.org\\.ua\nfemmesdenudees\\.com\nfenoyl\\.batcave\\.net\nferieboligkbh\\.dk\nfermersovet\\.ru\nfetishinside\\.com\nfialka\\.tomsk\\.ru\nfidalsa\\.de\nfierrohack\\.ru\nfigensahin\\.com\nfilesclub\\.net\nfilesdatabase\\.net\nfilesvine\\.com\nfilm\\-one\\.ru\nfilmetricsasia\\.com\nfilmgo\\.ru\nfilmidivx\\.com\nfilms2018\\.com\nfilter\\-ot\\-zheleza\\.ru\nfinancial\\-simulation\\.com\nfinansov\\.info\nfindacheaplawyers\\.com\nfinder\\.cool\nfindercarphotos\\.com\nfineblog\\.top\nfinstroy\\.net\nfinteks\\.ru\nfirma\\-legion\\.ru\nfirmgeo\\.xyz\nfirstblog\\.top\nfit\\-discount\\.ru\nfitness\\-video\\.net\nfitodar\\.com\\.ua\nfiuagts\\.online\nfiuxy\\.com\nfiverr\\.com\nfix\\-website\\-errors\\.com\nfizika\\.tv\nflash4fun\\.com\nflavors\\.me\nflex4launch\\.ru\nflexderek\\.com\nfloating\\-share\\-buttons\\.com\nflooringinstallation\\-edmonton\\.com\nflowersbazar\\.com\nflowertherapy\\.ru\nflowwwers\\.com\nflprog\\.com\nflyblog\\.xyz\nflytourisme\\.org\nfm\\-upgrade\\.ru\nfmgrupe\\.it\nfoojo\\.net\nfor\\-marketersy\\.info\nfor\\-your\\.website\nforensicpsychiatry\\.ru\nforex\\-indextop20\\.ru\nforex\\-procto\\.ru\nforex\\.osobye\\.ru\nforex21\\.ru\nforexgb\\.ru\nforexunion\\.net\nforminecrafters\\.ru\nforms\\-mtm\\.ru\nforpostlock\\.ru\nforsex\\.info\nfortwosmartcar\\.pw\nforum\\-engineering\\.ru\nforum\\.poker4life\\.ru\nforum\\.tvmir\\.org\nforum20\\.smailik\\.org\nforum69\\.info\nforums\\.toucharcade\\.com\nfotoxxxru\\.com\nfoxinsocks\\.ru\nfoxjuegos\\.com\nfoxtechfpv\\.com\nfoxweber\\.com\nfpclub\\.ru\nfr\\.netlog\\.com\nfrancaise\\-poesie\\.com\nfrankofficial\\.ru\nfrauplus\\.ru\nfree\\-fb\\-traffic\\.com\nfree\\-fbook\\-traffic\\.com\nfree\\-floating\\-buttons\\.com\nfree\\-games\\-download\\.falcoware\\.com\nfree\\-share\\-buttons\\-aaa\\.xyz\nfree\\-share\\-buttons\\-bbb\\.xyz\nfree\\-share\\-buttons\\-ccc\\.xyz\nfree\\-share\\-buttons\\-ddd\\.xyz\nfree\\-share\\-buttons\\-eee\\.xyz\nfree\\-share\\-buttons\\-fff\\.xyz\nfree\\-share\\-buttons\\.blogspot\\.com\nfree\\-share\\-buttons\\.co\nfree\\-share\\-buttons\\.com\nfree\\-share\\-buttons\\.top\nfree\\-social\\-buttons\\-aaa\\.xyz\nfree\\-social\\-buttons\\-bbb\\.xyz\nfree\\-social\\-buttons\\-ccc\\.xyz\nfree\\-social\\-buttons\\-ddd\\.xyz\nfree\\-social\\-buttons\\-eee\\.xyz\nfree\\-social\\-buttons\\-fff\\.xyz\nfree\\-social\\-buttons\\-hhh\\.xyz\nfree\\-social\\-buttons\\-iii\\.xyz\nfree\\-social\\-buttons\\.com\nfree\\-social\\-buttons\\.org\nfree\\-social\\-buttons\\.xyz\nfree\\-social\\-buttons1\\.xyz\nfree\\-social\\-buttons2\\.xyz\nfree\\-social\\-buttons3\\.xyz\nfree\\-social\\-buttons4\\.xyz\nfree\\-social\\-buttons5\\.xyz\nfree\\-social\\-buttons6\\.xyz\nfree\\-social\\-buttons7\\.xyz\nfree\\-traffic\\.xyz\nfree\\-video\\-chat\\.ru\nfree\\-video\\-tool\\.com\nfree\\-website\\-traffic\\.com\nfreeasecret\\.com\nfreenode\\.info\nfreeseedsonline\\.com\nfreetangodownload\\.com\nfreewebs\\.com\nfreewhatsappload\\.com\nfreewlan\\.info\nfreshberry\\.com\\.ua\nfreshnails\\.com\\.ua\nfront\\.ru\nfront\\.to\nfsalas\\.com\nfsin\\-pokypka\\.ru\nftns\\.ru\nfuck\\-paid\\-share\\-buttons\\.xyz\nfuel\\-gas\\.com\nfullzdumps\\.cc\nfungirlsgames\\.net\nfunnypica\\.com\nfurniture\\-ukraine\\.com\nfurniturehomewares\\.com\nfutbolkisales\\.ru\nfvetgoods\\.xyz\nfxtips\\.ru\ng7m\\.pl\ngabeshop\\.ru\ngabysuniqueboutique\\.com\ngael\\-s\\.ru\ngagrasector\\.ru\ngalaxy\\-family\\.ru\ngalaxyflowers\\.ru\ngalblog\\.top\ngaleon\\.com\ngamblingpp\\.ru\ngame\\-mmorpg\\.net\ngame\\-top\\.su\ngame300\\.ru\ngames\\.kolossale\\.ru\ngammatraffic\\.com\ngandikapper\\.ru\ngaokr\\.xyz\ngap\\-search\\.com\ngarantprava\\.com\ngardene\\.ru\ngasvleningrade\\.ru\ngatwick\\.ru\ngays\\-video\\-chat\\.ru\ngaz\\-voshod\\.ru\ngazel\\-72\\.ru\ngazobeton\\-p\\.com\\.ua\ngazoblok\\.net\\.ua\ngbh\\-invest\\.ru\ngcmx\\.net\ngcup\\.ru\ngdcentre\\.ru\ngearcraft\\.us\ngearsadspromo\\.club\ngelezki\\.com\ngeliyballon\\.ru\ngelstate\\.ru\ngeneralporn\\.org\ngenericlowlatencyasiodriverhq\\.aircus\\.com\ngeniusfood\\.co\\.uk\ngentamicineyedrops\\.blogspot\\.com\ngeorgeblog\\.online\ngepatit\\-info\\.top\ngermes\\-trans\\.com\nget\\-best\\-copywriting\\-service\\.stream\nget\\-clickir\\.info\nget\\-clickize\\.info\nget\\-free\\-social\\-traffic\\.com\nget\\-free\\-traffic\\-now\\.com\nget\\-more\\-freeen\\-visitors\\.info\nget\\-more\\-freeer\\-visitors\\.info\nget\\-more\\-freeish\\-visitors\\.info\nget\\-more\\-freeize\\-visitors\\.info\nget\\-more\\-freele\\-visitors\\.info\nget\\-morebit\\-free\\-visitors\\.info\nget\\-prime\\-seo\\-services\\.review\nget\\-seo\\-help\\.com\nget\\-your\\-social\\-buttons\\.info\ngetaadsincome\\.info\ngetadsincomeian\\.info\ngetadsincomely\\.info\ngetadsincomeof\\.info\ngetbottraffic4free\\.club\ngetbottraffic4free\\.host\ngetbottraffic4free\\.xyz\ngetbytadsincome\\.info\ngetfy\\-click\\.info\ngetism\\-more\\-free\\-visitors\\.info\ngetity\\-more\\-free\\-visitors\\.info\ngetityadsincome\\.info\ngetive\\-more\\-free\\-visitors\\.info\ngetlamborghini\\.ga\ngetoutofdebtfree\\.org\ngetprismatic\\.com\ngetpy\\-click\\.info\ngetpy\\-more\\-free\\-visitors\\.info\ngetrichquick\\.ml\ngetrichquickly\\.info\ngetyourprofit\\.net\ngevciamst\\.online\ngezlev\\.com\\.ua\ngfaq\\.ru\nghazel\\.ru\nghernnqr\\.skyrock\\.com\ngheus\\.altervista\\.org\nghostvisitor\\.com\ngidonline\\.one\ngidro\\-partner\\.ru\ngiftbig\\.ru\ngirlporn\\.ru\ngirls\\-ufa\\.ru\ngirlsatgames\\.ru\ngk\\-atlant\\.info\ngk\\-casino\\.fun\ngk\\-casino\\.online\ngk\\-casino\\.ru\ngk\\-casino\\.site\ngk\\-casino\\.space\ngk\\-casino\\.website\ngkvector\\.ru\nglall\\.ru\nglass\\-msk\\.ru\nglavprofit\\.ru\nglcomputers\\.ru\nglktfw\\.net\nglobal\\-smm\\.ru\nglobalscam\\.ga\nglobatur\\.ru\nglobetrotting\\-culture\\.ru\nglogow\\.pl\nglopages\\.ru\ngo2album\\.com\ngobongo\\.info\ngoforexvps\\.com\ngogps\\.me\ngojiberriess\\.apishops\\.ru\ngok\\-kasten\\.net\ngoldandcard\\.ru\ngolden\\-catalog\\.pro\ngolden\\-praga\\.ru\ngoldenggames\\.com\ngoldvaultmetals\\.com\ngolmau\\.host\\.sk\ngolyedevushki\\.com\ngonextmedia\\.com\ngood\\-potolok\\.ru\ngoodbyecellulite\\.ru\ngoodcoffeepremium\\.com\ngoodhumor24\\.com\ngoodnightjournal\\.com\ngoodprotein\\.ru\ngoogle\\-liar\\.ru\ngooglefeud\\.com\ngooglemare\\.com\ngooglsucks\\.com\ngorabagrata\\.ru\ngorgaz\\.info\ngoroda\\-vsego\\-mira\\.ru\ngorodservis\\.ru\ngosreg\\.amchs\\.ru\ngototal\\.co\\.nz\ngourcy\\.altervista\\.org\ngoyua\\.xyz\ngq\\-catalog\\.gq\ngraceonline\\.shop\ngrafaman\\.ru\ngrand\\-chlen\\.ru\ngraphid\\.com\ngratuitbaise\\.com\ngreatblog\\.top\ngreatgrace\\.ru\ngreentechsy\\.com\ngrizzlysgrill\\.com\ngroshi\\-kredut\\.com\\.ua\ngroupmoney\\.ru\ngrowmyfunds\\.ca\ngrowshop\\.es\ngrowth\\-hackingan\\.info\ngrowth\\-hackingead\\.info\ngrowth\\-hackingeads\\.info\ngrowth\\-hackingor\\.info\ngrowth\\-hackingy\\.info\ngrupografico\\-pilar\\.com\\.ar\ngruzchiki24\\.ru\ngsbs\\.com\\.ua\ngsmlab\\.pl\ngsmtlf\\.ru\ngta\\-club\\.ru\ngta\\-top\\.ru\ngttpsale\\.xyz\nguardlink\\.com\nguardlink\\.org\nguge\\.io\nguidetopetersburg\\.com\ngungamesz\\.com\nguruofcasino\\.com\ngwhwpxbw\\.bloger\\.index\\.hr\ngxcb\\.net\nh2monline\\.com\nhacktougroup\\.ru\nhagirkblog\\.space\nhahashka\\.ru\nhaikuware\\.com\nhalat\\.xyz\nhalefa\\.com\nhamyshop\\.xyz\nhandicapvansarea\\.com\nhandicapvantoday\\.com\nhandsandlegs\\.ru\nhanink\\.biz\\.ly\nhankspring\\.xyz\nhappysong\\.ru\nhard\\-porn\\.mobi\nhardcore\\.anzwers\\.net\nhardosale\\.xyz\nharpro\\.net\nhavepussy\\.com\nhawaiisurf\\.com\nhazardky\\.net\nhd1080film\\.ru\nhd720kino\\.ru\nhdfreeporno\\.net\nhdhc\\.site\nhdmoviecamera\\.net\nhdmoviecams\\.com\nhdmoviecams\\.net\nhdsmartvideoreg\\.ru\nheadpharmacy\\.com\nhealbio\\.ru\nhealgastro\\.com\nhealing\\-dysplasia\\.ru\nhealmytrauma\\.info\nhealthhacks\\.ru\nheeha\\.net\nhem\\.passagen\\.se\nhentai\\-manga\\.porn\nheroero\\.com\nhexometer\\.com\nhifidesign\\.ru\nhilaryblog\\.top\nhill\\-accent\\-withdraw\\-sentiment\\.info\nhimandmall\\.xyz\nhit\\-kino\\.ru\nhitree\\.shop\nhitsbox\\.info\nhiwibyh\\.bugs3\\.com\nhiwpro\\.xyz\nhkdiiohi\\.skyrock\\.com\nhkjrsale\\.xyz\nhmmm\\.cz\nhmywwogw\\.bloger\\.index\\.hr\nhobild\\.net\nhol\\.es\nholiday\\-shop\\.ru\nholidaypics\\.org\nholistickenko\\.com\nholodkovich\\.com\nhome\\.myplaycity\\.com\nhomeafrikalike\\.tk\nhomedo\\.fabpage\\.com\nhomeinns\\.com\nhomelygarden\\.com\nhomemade\\.gq\nhomemypicture\\.tk\nhonesty\\-homemade\\-grizzly\\-humanlike\\.com\nhongfanji\\.com\nhoporno\\.com\nhoroshieokna\\.com\nhost\\-protection\\.com\nhostcritique\\.com\nhoste\\.octopis\\.com\nhostiman\\.ru\nhosting\\-tracker\\.com\nhostingclub\\.lk\nhostsshop\\.ru\nhotblognetwork\\.com\nhotdl\\.in\nhotspot\\.ipb\\.co\\.id\nhottour\\.com\nhotwatersdamps\\.com\nhoudom\\.net\nhousedesigning\\.ru\nhousediz\\.com\nhousekuba\\.org\nhousemilan\\.ru\nhouseofgaga\\.ru\nhouseofrose\\.com\nhouston\\-vikings\\.com\nhow\\-i\\-build\\-website\\.review\nhow\\-i\\-promote\\-website\\.review\nhow\\-to\\-buy\\-bitcoin\\.club\nhow\\-to\\-buy\\-bitcoin\\.stream\nhow\\-to\\-buy\\-bitcoins\\-cheap\\.party\nhow\\-to\\-buy\\-bitcoins\\-cheap\\.review\nhow\\-to\\-buy\\-bitcoins\\-cheap\\.stream\nhow\\-to\\-buy\\-bitcoins\\-cheap\\.trade\nhow\\-to\\-buy\\-bitcoins\\.stream\nhow\\-to\\-buy\\-bitcoins\\.trade\nhow\\-to\\-earn\\-quick\\-money\\.com\nhow\\-to\\-promote\\-website\\.faith\nhow\\-to\\-promote\\-website\\.review\nhowlongdoestizanidinestayinyoursystem\\.blogspot\\.com\nhowmuchdoestizanidinecost\\.blogspot\\.com\nhowopen\\.ru\nhowtostopreferralspam\\.com\nhowtostopreferralspam\\.eu\nhoztorg\\-opt\\.ru\nhplaserjetpdriver8y\\.pen\\.io\nhptwaakw\\.blog\\.fc2\\.com\nhrtonline\\.xyz\nhscsscotland\\.com\nhseipaa\\.kz\nhsoutdoor\\.com\nhspline\\.com\nhttps\\-legalrc\\.biz\nhugblog\\.xyz\nhuhn\\.altervista\\.org\nhulfingtonpost\\.com\nhully\\.altervista\\.org\nhumanorightswatch\\.org\nhundejo\\.com\nhuntdown\\.info\nhusky\\-shop\\.cz\nhustoon\\.over\\-blog\\.com\nhvd\\-store\\.com\nhydra\\-2019\\.ru\nhydra\\-2020\\.online\nhydra\\-2020\\.ru\nhydra\\-centr\\.fun\nhydra\\-dealer\\.com\nhydra\\-guide\\.org\nhydra\\-new\\.online\nhydra\\-onion\\-faq\\.com\nhydra\\-pc\\.com\nhydra\\-shop\\.org\nhydra\\-site\\.ru\nhydra\\-slon\\.net\nhydra\\-vhod2020\\.com\nhydra\\-zerkalo20\\.com\nhydra\\.online\nhydra1717\\.com\nhydra2\\.market\nhydra2020\\.top\nhydra2020gate\\.com\nhydra2020market\\.com\nhydra2020onion\\.com\nhydra2020ru\\.com\nhydra2020zerkala\\.com\nhydra2020zerkalo\\.com\nhydra20onion\\.com\nhydra20online\\.com\nhydra20original\\.com\nhydra2use\\.com\nhydra2zahod\\.com\nhydraena\\.com\nhydrahow\\.com\nhydrahudra\\.com\nhydraland\\.net\nhydramarket2020\\.com\nhydramirror2020\\.com\nhydranten\\.net\nhydraonion2019\\.net\nhydrarusmarket\\.com\nhydraruz\\-2020\\.com\nhydraruzonion2020\\.com\nhydraruzonionx\\.ru\nhydraruzxpnew4af\\.com\\.co\nhydraruzxpnew4af\\.ink\nhydraruzxpnew4aff\\.ru\nhydraruzxpwnew4afonion\\.com\nhydraulicoilcooler\\.net\nhydrauliczny\\.com\nhydravizoficial\\.info\nhydrazerkalo2019\\.net\nhydrazerkalo2020\\.com\nhydropump\\.su\nhyip\\-zanoza\\.me\nhyipmanager\\.in\ni\\-spare\\.ru\nialgramer\\.shop\niamsport\\.org\nib\\-homecredit\\.ru\nib\\-rencredit\\.ru\niblogpress\\.xyz\niceton\\.net\nico\\.re\nictizanidinehcl4mg\\.blogspot\\.com\nidc\\.com\\.ua\nidealtits\\.net\nideayz\\.com\nidegenvezeto\\.eu\nideibiznesa2015\\.ru\nieeeoutlet\\.xyz\nifirestarter\\.ru\nifmo\\.ru\nigadgetsworld\\.com\nigamingtop\\.com\nigru\\-xbox\\.net\nilikevitaly\\.com\nillagedusexe\\.com\nilmen\\.net\niloveitaly\\.ro\niloveitaly\\.ru\nilovevitaly\\.co\nilovevitaly\\.com\nilovevitaly\\.info\nilovevitaly\\.org\nilovevitaly\\.ro\nilovevitaly\\.ru\nilovevitaly\\.xyz\nimediadesk\\.com\niminent\\.com\nimmigrational\\.info\nimmobiliaremassaro\\.com\nimmobilieralgerie\\.net\nimperia31\\.ru\nimperiafilm\\.ru\nimpotentik\\.com\nimpresagaia\\.it\nin\\-mostbet\\.ru\nin\\-sto\\.ru\ninbabes\\.sexushost\\.com\ninboxdollars\\.com\nincanto\\.in\\.ua\nincitystroy\\.ru\nincomekey\\.net\nincoonline\\.xyz\nincreasewwwtraffic\\.info\nindetiske\\.ya\\.ru\nindo\\-export\\.ru\ninet\\-shop\\.su\ninfazavr\\.ru\ninfektsii\\.com\ninfobabki\\.ru\ninfodocsportal\\.com\ninfogame\\.name\ninfokonkurs\\.ru\ninform\\-ua\\.info\ningramreed\\.xyz\ninmoll\\.com\ninnodgfdriverhm\\.aircus\\.com\ninsider\\.pro\ninstallspartners\\.com\ninstasexyblog\\.com\ninsultu\\-net\\.ru\nintelhdgraphicsgtdrive6w\\.metroblog\\.com\ninterferencer\\.ru\ninterfucks\\.net\nintermesh\\.net\ninternet\\-apteka\\.ru\nintex\\-air\\.ru\nintimchats\\.ru\nintimver\\.3dgayxxx\\.com\ninvest\\-pamm\\.ru\ninvestingclub\\.ru\ninvestpamm\\.ru\ninvestsuccess\\.org\ninvivo\\.hu\ninzn\\.ru\nio9\\.com\nipod\\-app\\-reviews\\.com\nipostroika\\.ru\niqoption\\-bin\\.com\niqoption\\.com\niqoption\\.pro\niradiology\\.ru\niridsale\\.xyz\nishgetadsincome\\.info\nisistaylorporn\\.info\niskalko\\.ru\niskussnica\\.ru\nisotoner\\.com\nispaniya\\-costa\\-blanca\\.ru\nistanbulit\\.com\nistizanidineacontrolledsubstance\\.blogspot\\.com\nistizanidineanarcoticdrug\\.blogspot\\.com\nistizanidineanopiate\\.blogspot\\.com\nistizanidinelikexanax\\.blogspot\\.com\nistock\\-mebel\\.ru\nit\\-max\\.com\\.ua\nit\\-worlds\\.com\nitbc\\.kiev\\.ua\nitrevolution\\.cf\nitronics\\.ca\nitsdp3\\.com\nivegetadsincome\\.info\niyfsearch\\.com\nizamorfix\\.ru\nizhevsk\\.xrus\\.org\nizhevskjob\\.xyz\nizhstrelok\\.ru\nizi24\\.ru\nj\\-times\\.ru\njabug\\.xyz\njacblog\\.xyz\njackonline\\.store\njanemill\\.xyz\njanettabridal\\.com\njapfm\\.com\njasonpartington\\.com\njav\\-fetish\\.com\njav\\-fetish\\.site\njav\\-idol\\.com\njavatex\\.co\\.id\njavcoast\\.com\njavlibrary\\.cc\njaxcube\\.info\njazzstyle4us\\.com\njeffbullas\\.xyz\njennyfire\\.ru\njikem\\.com\njintub\\.com\njjbabskoe\\.ru\njob\\-opros\\.ru\njob\\-prosto\\.ru\njobfree24\\.pl\njobgirl24\\.ru\njobius\\.com\\.ua\njohnnyhaley\\.top\njoinandplay\\.me\njoingames\\.org\njosephineblog\\.top\njournalhome\\.com\njoyceblog\\.top\njoycee\\.xyz\njudyandsimon\\.com\njuliadiets\\.com\njuliaworld\\.net\njumkite\\.com\njustkillingti\\.me\njustprofit\\.xyz\njweber\\.ru\njwss\\.cc\njyrxd\\.com\nkaac\\.ru\nkabbalah\\-red\\-bracelets\\.com\nkabinet\\-5ka\\.ru\nkabinet\\-alfaclick\\.ru\nkabinet\\-binbank\\.ru\nkabinet\\-card\\-5ka\\.ru\nkabinet\\-click\\-alfabank\\.ru\nkabinet\\-esia\\-gosuslugi\\.ru\nkabinet\\-faberlic\\.ru\nkabinet\\-gosuslugi\\.ru\nkabinet\\-ipoteka\\-domclick\\.ru\nkabinet\\-karta\\-5ka\\.ru\nkabinet\\-lk\\-megafon\\.ru\nkabinet\\-lk\\-rt\\.ru\nkabinet\\-login\\-mts\\.ru\nkabinet\\-mil\\.ru\nkabinet\\-mos\\.ru\nkabinet\\-my\\-beeline\\.ru\nkabinet\\-my\\-pochtabank\\.ru\nkabinet\\-nalog\\.ru\nkabinet\\-online\\-bm\\.ru\nkabinet\\-online\\-open\\.ru\nkabinet\\-online\\-rsb\\.ru\nkabinet\\-online\\-rshb\\.ru\nkabinet\\-online\\-sberbank\\.ru\nkabinet\\-online\\-sovcombank\\.ru\nkabinet\\-online\\-vtb\\.ru\nkabinet\\-pfr\\.ru\nkabinet\\-pfrf\\.ru\nkabinet\\-platon\\.ru\nkabinet\\-qiwi\\.ru\nkabinet\\-tele2\\.ru\nkabinet\\-tinkoff\\.ru\nkabinet\\-tricolor\\.ru\nkabinet\\-ttk\\.ru\nkabinet\\-vtb24\\.ru\nkaircm\\.shop\nkakablog\\.net\nkakadu\\-interior\\.com\\.ua\nkakworldoftanks\\.ru\nkalb\\.ru\nkambasoft\\.com\nkamin\\-sam\\.ru\nkamorel\\.com\nkanakox\\.com\nkarachev\\-city\\.ru\nkaradene\\.com\nkarapuz\\.org\\.ua\nkarusel\\-market\\.ru\nkatjimej\\.blog\\.fc2\\.com\nkatrd\\.xyz\nkatushka\\.net\nkaz\\.kz\nkazan\\.xrus\\.org\nkazka\\.ru\nkazlenta\\.kz\nkazrent\\.com\nkellyonline\\.xyz\nkendrablog\\.online\nkenyagoods\\.xyz\nkerch\\.site\nketrzyn\\.pl\nkevblog\\.top\nkevinsnow\\.online\nkexihao\\.xyz\nkeywords\\-monitoring\\-success\\.com\nkeywords\\-monitoring\\-your\\-success\\.com\nkharkov\\.ua\nkharlov\\.ua\nkidd\\.reunionwatch\\.com\nkierowca\\-praca\\.pl\nkiev\\.ua\nkimblog\\.top\nkinnarimasajes\\.com\nkino\\-filmi\\.com\nkino\\-fun\\.ru\nkino\\-key\\.info\nkino2018\\.cc\nkinobaks\\.com\nkinobum\\.org\nkinoflux\\.net\nkinohit1\\.ru\nkinopolet\\.net\nkinosed\\.net\nkinostar\\.online\nkinotorka\\.ru\nkiprinform\\.com\nkiwe\\-analytics\\.com\nkiwi237au\\.tk\nkiyany\\-za\\-spravedluvist\\.com\\.ua\nkletkimehan\\.ru\nklfd\\.net\nkndxbkdx\\.bloger\\.index\\.hr\nknigonosha\\.net\nkochanelli\\.com\nkolcasale\\.xyz\nkoleso24\\.com\\.ua\nkollekcioner\\.ru\nkolotiloff\\.ru\nkomp\\-pomosch\\.ru\nkomputernaya\\-pomosh\\-moscow\\.ru\nkomputers\\-best\\.ru\nkomukc\\.com\\.ua\nkongoultry\\.net\nkonkursov\\.net\nkoopilka\\.com\nkoptims\\.tiu\\.ru\nkoronirealestate\\.gr\nkosova\\.de\nkosunnyclub\\.com\nkotaku\\.com\nkozhakoshek\\.com\nkozhasobak\\.com\nkozhniebolezni\\.com\nkpcconline\\.xyz\nkrafte\\.ru\nkrasivoe\\-hd\\.com\nkrasivoe\\-hd\\.net\nkrasnodar\\-avtolombard\\.ru\nkrasnodar\\.xrus\\.org\nkrasota\\-zdorovie\\.pw\nkrasota\\.ru\nkredutu\\.com\\.ua\nkredytbank\\.com\\.ua\nkruiz\\-sochi\\.ru\nkrumble\\-adsde\\.info\nkrumble\\-adsen\\.info\nkrumble\\-adsic\\.info\nkrumbleent\\-ads\\.info\nkrynica\\.info\nktotut\\.net\nkumuk\\.info\nkupit\\-adenu\\.ru\nkursy\\-ege\\.ru\nkustanay\\.kz\nkvartir\\-remont\\.biz\nkvartira\\-sutochno\\.com\nkvartiry\\-remont\\.ucoz\\.ru\nkw21\\.org\nl2soft\\.eu\nla\\-fa\\.ru\nlabguamec\\.online\nlabplus\\.ru\nlabvis\\.host\\.sk\nladov\\.ru\nlafppshop\\.xyz\nlaitrcus\\.online\nlakiikraski\\.ru\nlalalove\\.ru\nlambreshop\\.xyz\nlaminat\\.com\\.ua\nlampokrat\\.ws\nlanasshop\\.ru\nlandliver\\.org\nlandoftracking\\.com\nlanguagecode\\.com\nlankarns\\.com\nlaparfumotec\\.com\nlapitec\\.eu\nlaptop\\-4\\-less\\.com\nlaptoper\\.net\nlarchik\\.net\nlarutti\\.ru\nlaudit\\.ru\nlaw\\-check\\-eight\\.xyz\nlaw\\-check\\-nine\\.xyz\nlaw\\-check\\-seven\\.xyz\nlaw\\-check\\-two\\.xyz\nlaw\\-enforcement\\-aa\\.xyz\nlaw\\-enforcement\\-bb\\.xyz\nlaw\\-enforcement\\-bot\\-aa\\.xyz\nlaw\\-enforcement\\-bot\\-bb\\.xyz\nlaw\\-enforcement\\-bot\\-cc\\.xyz\nlaw\\-enforcement\\-bot\\-dd\\.xyz\nlaw\\-enforcement\\-bot\\-ee\\.xyz\nlaw\\-enforcement\\-bot\\-ff\\.xyz\nlaw\\-enforcement\\-bot\\-hh\\.xyz\nlaw\\-enforcement\\-bot\\-ii\\.xyz\nlaw\\-enforcement\\-cc\\.xyz\nlaw\\-enforcement\\-check\\-eight\\.xyz\nlaw\\-enforcement\\-check\\-five\\.xyz\nlaw\\-enforcement\\-check\\-four\\.xyz\nlaw\\-enforcement\\-check\\-nine\\.xyz\nlaw\\-enforcement\\-check\\-one\\.xyz\nlaw\\-enforcement\\-check\\-six\\.xyz\nlaw\\-enforcement\\-check\\-three\\.xyz\nlaw\\-enforcement\\-check\\-two\\.xyz\nlaw\\-enforcement\\-dd\\.xyz\nlaw\\-enforcement\\-ee\\.xyz\nlaw\\-enforcement\\-eight\\.xyz\nlaw\\-enforcement\\-ff\\.xyz\nlaw\\-enforcement\\-five\\.xyz\nlaw\\-enforcement\\-four\\.xyz\nlaw\\-enforcement\\-gg\\.xyz\nlaw\\-enforcement\\-hh\\.xyz\nlaw\\-enforcement\\-one\\.xyz\nlaw\\-enforcement\\-seven\\.xyz\nlaw\\-enforcement\\-three\\.xyz\nlaw\\-enforcement\\-two\\.xyz\nlaw\\-five\\.xyz\nlaw\\-four\\.xyz\nlaw\\-one\\.xyz\nlaw\\-six\\.xyz\nlaw\\-three\\.xyz\nlaw\\-two\\.xyz\nlawrenceblog\\.online\nlaxdrills\\.com\nlayola\\.biz\\.tc\nlazy\\-z\\.com\nlcecshop\\.xyz\nleadwayau\\.com\nleboard\\.ru\nlebowmall\\.xyz\nledalfa\\.by\nleddjc\\.net\nledis\\.top\nledpolice\\.ru\nledx\\.by\nleeboyrussia\\.com\nlegalrc\\.biz\nlego4x4\\.ru\nlenvred\\.org\nleon\\-official\\.site\nlernur\\.net\nlerporn\\.info\nleto\\-dacha\\.ru\nletolove\\.ru\nletsgotofriday\\.com\nlevaquin750mg\\.blogspot\\.com\nlezbiyanki\\.net\nlflash\\.ru\nli\\-er\\.ru\nlida\\-ru\\.com\nlider82\\.ru\nlife\\.biz\\.ua\nlifebyleese\\.com\nlifespeaker\\.ru\nligastavok\\-in\\.ru\nlight\\.ifmo\\.ru\nlighthearteds\\.shop\nlikesdesign\\.com\nlilishopstogether\\.com\nlindsayblog\\.online\nlinerdrilling\\.com\nlink\\.web\\-list\\.xyz\nlipidofobia\\.com\\.br\nliquimondo\\.com\nlirunet\\.ru\nlisque\\.batcave\\.net\nlittleberry\\.ru\nlive\\-sexchat\\.ru\nlive\\-xbet\\.com\nlivefixer\\.com\nliveinternet\\.ro\nliveinternet\\.ru\nlivejournal\\.top\nlivia\\-pache\\.ru\nlivingroomdecoratingideas\\.website\nlivingsimply\\.com\nlk\\-gosuslugi\\.ru\nlk\\-lk\\-rt\\.ru\nllastbuy\\.ru\nlmrauction\\.com\nloadopia\\.com\nlocal\\-seo\\-for\\-multiple\\-locations\\.com\nlogin\\-tinkoff\\.ru\nloginduepunti\\.it\nlogo\\-all\\.ru\nlol\\-smurfs\\.com\nlolz\\.guru\nlolzteam\\.online\nlolzteam\\.org\nlomb\\.co\nlombardfinder\\.ru\nlombia\\.co\nlombia\\.com\nlomza\\.info\nlondonstratford\\.co\\.uk\nlookover\\.ru\nlost\\-alpha\\.ru\nlotoflotto\\.ru\nloveorganic\\.ch\nlow\\-format\\.ru\nlowpricesiterx\\.com\nlsex\\.xyz\nlsitenonrepeat\\.com\nluckybull\\.io\nluckyshop\\.net\\.ua\nlukoilcard\\.ru\nlumb\\.co\nlutherstable\\.org\nluton\\-invest\\.ru\nluxmagazine\\.cf\nluxup\\.ru\nluxurybet\\.ru\nm\\-google\\.xyz\nm\\.ok\\.ru\nm1media\\.net\nmacresource\\.co\\.uk\nmadisonclothingny\\.com\nmadjonline\\.xyz\nmadot\\.onlinewebshop\\.net\nmafcards\\.ru\nmagazintiande\\.ru\nmagda\\-gadalka\\.ru\nmagento\\-crew\\.net\nmagicart\\.store\nmagicdiet\\.gq\nmagnetic\\-bracelets\\.ru\nmaigralr\\.site\nmail\\.allnews24\\.in\nmainhunter\\.com\nmainlinehobby\\.net\nmake\\-money\\-online\\.com\nmakedo\\.ru\nmakemoneyonline\\.com\nmakeprogress\\.ga\nmakler\\.org\\.ua\nmaladot\\.com\nmalbgoods\\.xyz\nmalls\\.com\nmaltadailypost\\.com\nmamidushop\\.xyz\nmamylik\\.ru\nmanimpotence\\.com\nmanipulyator\\-peterburg\\.ru\nmanonstore\\.xyz\nmanualterap\\.roleforum\\.ru\nmanwang\\.net\nmaofengjx\\.com\nmarathonbet\\-in\\.ru\nmarblestyle\\.ru\nmarcogrup\\.com\nmaridan\\.com\\.au\nmaridan\\.com\\.ua\nmarihome\\.online\nmarinetraffic\\.com\nmarjorieblog\\.online\nmarketland\\.ml\nmarktforschung\\-stuttgart\\.com\nmarmitaco\\.cat\nmartinahome\\.xyz\nmartlinker\\.com\nmassage\\-info\\.nl\nmasserect\\.com\nmaster\\-muznachas\\.ru\nmasterseek\\.com\nmastershef\\.club\nmasturbate\\.co\\.uk\nmathoutlet\\.xyz\nmatomete\\.net\nmatras\\.space\nmattgibson\\.us\nmature\\.free\\-websites\\.com\nmax\\-apprais\\.com\nmaximilitary\\.ru\nmaxinesamson\\.top\nmaxthon\\.com\nmaxxximoda\\.ru\nmazda\\-roadsters\\.com\nmbiologi\\.ru\nmebel\\-alait\\.ru\nmebel\\-arts\\.com\nmebel\\-ekb\\.com\nmebel\\-iz\\-dereva\\.kiev\\.ua\nmebelcomplekt\\.ru\nmebeldekor\\.com\\.au\nmebeldekor\\.com\\.ua\nmeblieco\\.com\nmed\\-dopomoga\\.com\nmed\\-recept\\.ru\nmed\\-zdorovie\\.com\\.au\nmed\\-zdorovie\\.com\\.ua\nmedanestesia\\.ru\nmedbrowse\\.info\nmedcor\\-list\\.ru\nmedi\\-fitt\\.hu\nmedic\\-al\\.ru\nmedicaltranslate\\.ru\nmedicinacom\\.ru\nmedicineseasybuy\\.com\nmedicovi\\.com\nmedictube\\.ru\nmedispainstitute\\.com\\.au\nmedkletki\\.ru\nmedkritika\\.ru\nmedmajor\\.ru\nmedosmotr\\-ufa\\.ru\nmeds\\-online24\\.com\nmedtherapy\\.ru\nmeduza\\-consult\\.ru\nmeendo\\-free\\-traffic\\.ga\nmegaapteka\\.ru\nmegakino\\.net\nmegalit\\-d\\.ru\nmegapolis\\-96\\.ru\nmegatkani\\.ru\nmegavolt\\.net\\.ua\nmelbet\\-in\\.ru\nmelissahome\\.top\nmembers\\.ghanaweb\\.com\nmemovn\\.com\nmenhealed\\.net\nmercanmall\\.xyz\nmere\\.host\\.sk\nmericanmopedstore\\.com\nmeriton\\.ru\nmeroyharte\\.top\nmesto\\-x\\.com\nmetallo\\-konstruktsii\\.ru\nmetallosajding\\.ru\nmetarip\\.ru\nmetaxalonevstizanidine\\.blogspot\\.com\nmeteocast\\.net\nmeuikcr\\.online\nmex\\-annushka\\.ru\nmhp\\.su\nmhrdmall\\.xyz\nmiaxxx\\.com\nmicasainvest\\.com\nmichellblog\\.online\nmicrosearch\\.ru\nmicrosoftportal\\.net\nmidnight\\.im\nmielec\\.pl\nmifepriston\\.net\nmigente\\.com\nmigera\\.net\nmigronis\\.com\nmikozstop\\.com\nmikrobiologies\\.ru\nmikrocement\\.com\\.ua\nmikrozaim\\.site\nmikrozaym2you\\.ru\nminecraft\\-neo\\.ru\nminecraft\\-rus\\.org\nminegam\\.com\nminghaimuyuan\\.net\nmini\\.7zap\\.com\nminingblack\\.net\nminyetki\\.ru\nmir\\-betting\\.ru\nmir\\-business\\-24\\.ru\nmir\\-limuzinov\\.ru\nmirfairytale\\.ru\nmirmedinfo\\.ru\nmirobuvi\\.com\\.au\nmirobuvi\\.com\\.ua\nmirtorrent\\.net\nmirzonru\\.net\nmisselle\\.ru\nmister\\-shop\\.com\nmitrasound\\.ru\nmixed\\-wrestling\\.ru\nmksoap\\.ru\nmksport\\.ru\nmmdoors\\.ru\nmmm\\.lc\nmmm\\.sb\nmmog\\-play\\.ru\nmmoguider\\.ru\nmnogabukaff\\.net\nmobicover\\.com\\.ua\nmobile\\.ok\\.ru\nmobilemedia\\.md\nmobisport\\.ru\nmobot\\.site\nmobplayer\\.net\nmobplayer\\.ru\nmockupui\\.com\nmodabutik\\.ru\nmodforwot\\.ru\nmodnie\\-futbolki\\.net\nmoe1\\.ru\nmoesonce\\.com\nmoi\\-glazki\\.ru\nmoinozhki\\.com\nmoiragracie\\.top\nmoisadogorod\\.ru\nmokrayakiska\\.com\nmole\\.pluto\\.ro\nmonarhs\\.info\nmonetizationking\\.net\nmoney\\-every\\-day\\.com\nmoney\\-for\\-placing\\-articles\\.com\nmoney7777\\.info\nmoneymaster\\.ru\nmoneytop\\.ru\nmoneyzzz\\.ru\nmonicablog\\.xyz\nmonitorwebsitespeed\\.com\nmoomi\\-daeri\\.com\nmoon\\.market\nmoonci\\.ru\nmore\\-letom\\.ru\nmorf\\.snn\\.gr\nmorlat\\.altervista\\.org\nmoroccosurfadventures\\.com\nmoscow\\-clining\\.ru\nmoscow\\-region\\.ru\nmoscow\\.xrus\\.org\nmosdverka\\.ru\nmosputana\\.info\nmosputana\\.top\nmosrif\\.ru\nmossiemckenzie\\.shop\nmossmesi\\.com\nmost\\-kerch\\.org\nmost\\.gov\\.iq\nmostantikor\\.ru\nmostbet\\-285\\.com\nmostbet\\-original\\.ru\nmostcool\\.top\nmostorgnerud\\.ru\nmotion\\-interactive\\.com\nmototsikl\\.org\nmountainstream\\.ms\nmoy\\-dokument\\.com\nmoy\\-evroopt\\.ru\nmoyakuhnia\\.ru\nmoyaskidka\\.ru\nmoyaterapiya\\.ru\nmoygorod\\-online\\.ru\nmoyparnik\\.com\nmp3films\\.ru\nmpftpupload\\.com\nmrbojikobi4\\.biz\nmrcsa\\.com\\.au\nmriyadh\\.com\nmrmoneymustache\\.com\nmrt\\-info\\.ru\nmrwhite\\.biz\nmsk\\-diplomat\\.com\nmsk\\-sprawka\\.com\nmtras\\.xyz\nmtsguru\\.ru\nmug\\-na\\-chas\\-moscow\\.ru\nmuizre\\.ru\nmukis\\.ru\nmundoaberrante\\.com\nmuscle\\-factory\\.com\\.au\nmuscle\\-factory\\.com\\.ua\nmusic\\.utrolive\\.ru\nmusicas\\.baixar\\-musicas\\-gratis\\.com\nmusichallaudio\\.ru\nmusicprojectfoundation\\.com\nmusicstock\\.me\nmusicvidz\\.ru\nmuz\\-baza\\.net\nmuz\\-shoes\\.ru\nmuznachas\\-service\\.ru\nmuztops\\.ru\nmvmagoods\\.xyz\nmwductwork\\.com\nmy\\-bc\\.ru\nmy\\.opera\\.com\nmybestoffers\\.club\nmyborder\\.ru\nmybuh\\.kz\nmycaf\\.it\nmycheaptraffic\\.com\nmycollegereview\\.com\nmydirtystuff\\.com\nmydoctorok\\.ru\nmydownloadengine\\.com\nmydownlodablefiles\\.com\nmyecomir\\.com\nmyfreemp3\\.eu\nmyftpupload\\.com\nmyindospace\\.com\nmylida\\.org\nmyliveblog\\.ru\nmypets\\.by\nmyplaycity\\.com\nmyprintscreen\\.com\nmysexpics\\.ru\nmytherealshop\\.com\nmytraffic\\.shop\nna\\-telefon\\.biz\nna15\\.ru\nnacap\\.ru\nnachalka21\\.ru\nnagdak\\.ru\nnakozhe\\.com\nnalogovyy\\-kodeks\\.ru\nnancyblog\\.top\nnanochskazki\\.ru\nnanwar\\.xyz\nnaobumium\\.info\nnaphi\\.xyz\nnaphukete\\.ru\nnardulan\\.com\nnarkologiya\\-belgorod\\.ru\nnarkologiya\\-orel\\.ru\nnarkologiya\\-penza\\.ru\nnarkologiya\\-peterburg\\.ru\nnarkologiya\\-voronezh\\.ru\nnarkomaniya\\-stop\\.ru\nnarosty\\.com\nnarutonaruto\\.ru\nnastroyke\\.net\nnatali\\-forex\\.com\nnate\\.com\nnatprof\\.ru\nnaturalpharm\\.com\\.ua\nnaval\\.jislaaik\\.com\nnavek\\.by\nnbok\\.net\nnbsproject\\.ru\nnebbiasale\\.xyz\nneedtosellmyhousefast\\.com\nnegral\\.pluto\\.ro\nnet\\-profits\\.xyz\nnetallergy\\.ru\nnethouse\\.ru\nnetlify\\.com\nnetpics\\.org\nnevansk\\.ru\nnevapotolok\\.ru\nnew\\-apps\\.ru\nnewagebev\\.com\nnewbieseoblog\\.online\nnewsfj\\.net\nnewsrosprom\\.ru\nnewstaffadsshop\\.club\nnewstraveller\\.ru\nnewstudio\\.tv\nnextconseil\\.com\nnfocusdriver\\.com\nngps1\\.ru\nnhmrcsale\\.xyz\nnhsports\\.cl\nnicola\\.top\nnicolaonline\\.top\nniki\\-mlt\\.ru\nnikitsyringedrivelg\\.pen\\.io\nninacecillia\\.top\nniuting\\.org\nnizniynovgorod\\.dienai\\.ru\nnl\\.netlog\\.com\nno\\-rx\\.info\nnoclegonline\\.info\nnomerounddec\\.cf\nnonews\\.co\nnordstar\\.pro\nnotaria\\-desalas\\.com\nnotebook\\-pro\\.ru\nnotfastfood\\.ru\nnoumeda\\.com\nnovalskincare\\.net\nnovgorod\\.xrus\\.org\nnovosibirsk\\.xrus\\.org\nnovosti\\-avto\\.ru\nnovosti\\-hi\\-tech\\.ru\nnovostic\\.ru\nnow\\-hydra2020\\.com\nnpoet\\.ru\nntdtv\\.ru\nnubuilderian\\.info\nnucia\\.biz\\.ly\nnudepatch\\.net\nnudo\\.ca\nnufaq\\.com\nnullrefer\\.com\nnutriwestncahi\\.com\nnuup\\.info\nnvformula\\.ru\nnvkzsale\\.xyz\nnwrcz\\.com\nnyfinance\\.ml\nnyinfo\\.org\no\\-o\\-11\\-o\\-o\\.com\no\\-o\\-6\\-o\\-o\\.com\no\\-o\\-6\\-o\\-o\\.ru\no\\-o\\-8\\-o\\-o\\.com\no\\-o\\-8\\-o\\-o\\.ru\no\\-promyshlennosti\\.ru\no00\\.in\noblismall\\.xyz\nobnal\\.org\nobnallpro\\.cc\nobsessionphrases\\.com\nobuv\\-kupit\\.ru\nobyavka\\.org\\.ua\nobzor\\-casino\\-x\\.online\nobzor\\-casino\\-x\\.ru\nochistka\\-stokov\\.ru\nodesproperty\\.com\nodiabetikah\\.com\nodsadsmobile\\.biz\nodywpjtw\\.bloger\\.index\\.hr\nofermerah\\.com\noffers\\.bycontext\\.com\noffice\\-windows\\.ru\noffice2web\\.com\nofficedocuments\\.net\nofftime\\.ru\nogorodnic\\.com\nok\\.ru\noklogistic\\.ru\nokna\\-systems\\.pro\nokno\\.ooo\nokoshkah\\.com\nokroshki\\.ru\noktube\\.ru\noledonline\\.xyz\nolovoley\\.ru\nolvanto\\.ru\nomega\\.best\nomsk\\.xrus\\.org\none\\-a\\-plus\\.xyz\none\\-gear\\.com\nonefilms\\.net\nonenews24\\.ru\nonion20hydra\\.ru\nonionhydra\\.net\nonionshydra\\.com\nonline\\-akbars\\.ru\nonline\\-binbank\\.ru\nonline\\-hit\\.info\nonline\\-intim\\.com\nonline\\-mkb\\.ru\nonline\\-pharma\\.ru\nonline\\-pochtabank\\.ru\nonline\\-raiffeisen\\.ru\nonline\\-sbank\\.ru\nonline\\-templatestore\\.com\nonline\\-video\\-chat\\.ru\nonline\\-vostbank\\.ru\nonline\\-vtb\\.ru\nonline\\-x\\.ru\nonline\\.ktc45\\.ru\nonlinebay\\.ru\nonlinedic\\.net\nonlinedomains\\.ru\nonlinefilmz\\.net\nonlineserialy\\.ru\nonlinetvseries\\.me\nonlinewot\\.ru\nonlinewritingjobs17\\.blogspot\\.ru\nonload\\.pw\nonlyforemont\\.ru\nonlythegames\\.com\nonlywoman\\.org\noohlivecams\\.com\nooo\\-gotovie\\.ru\nooo\\-olni\\.ru\noooh\\.pro\nopenfrost\\.com\nopenfrost\\.net\nopenlibrary\\.org\nopenmediasoft\\.com\nops\\.picscout\\.com\noptitrade24\\.com\noptsol\\.ru\noqex\\.io\noracle\\-patches\\.ru\norakul\\.spb\\.ru\noranga\\.host\\.sk\norder\\-prime\\-smm\\-service\\.party\nordernorxx\\.com\norel\\-reshka\\.net\noren\\-cats\\.ru\norigin\\-my\\.ru\nororodnik\\.goodbb\\.ru\nosb\\.se11\\.ru\nosoznanie\\-narkotikam\\.net\nosteochondrosis\\.ru\nostroike\\.org\nostrovtaxi\\.ru\notbelivanie\\-zubov\\.com\notdbiaxaem\\-vmeste\\.ru\notdyx\\-s\\-komfortom\\.ru\noudallas\\.net\nourtherapy\\.ru\noutshop\\.ru\novirus\\.ru\nown\\-ahrefs\\.com\nownshop\\.cf\nowohho\\.com\nozas\\.net\np\\-business\\.ru\npaceform\\.com\npacobarrero\\.com\npageinsider\\.org\npaidonlinesites\\.com\npainting\\-planet\\.com\npalma\\-de\\-sochi\\.ru\npalvira\\.com\\.au\npalvira\\.com\\.ua\npamjatnik\\.com\\.ua\npammik\\.ru\npamyatnik\\-spb\\.ru\npamyatnik\\-tsena\\.ru\npandoshop\\.xyz\npaparazzistudios\\.com\\.au\npaperwritingservice17\\.blogspot\\.ru\nparadontozanet\\.ru\nparcsmalls\\.xyz\nparetto\\.ru\nparking\\-invest\\.ru\npartizan19\\.ru\npartnerskie\\-programmy\\.net\npatonsale\\.xyz\npaulinho\\.ru\npay\\.ru\npaydayonlinecom\\.com\npc\\-services\\.ru\npechikamini\\.ru\npecmastore\\.xyz\npensplan\\.com\npensplan4u\\.com\npenzu\\.xyz\npercin\\.biz\\.ly\nperfection\\-pleasure\\.ru\nperform\\-like\\-alibabaity\\.info\nperform\\-likeism\\-alibaba\\.info\nperimetor\\.ru\nperm\\.dienai\\.ru\nperm\\.xrus\\.org\nperper\\.ru\nperso\\.wanadoo\\.es\npersonalhoro\\.ru\npetedrummond\\.com\npetroleumgeo\\.com\npetrovka\\-online\\.com\npetrushka\\-restoran\\.ru\npetscar\\.ru\npfrf\\-kabinet\\.ru\npharm\\-\\-shop\\.ru\nphimarshcer\\.online\nphimmakinhdi\\.com\nphobia\\.us\nphoto\\-clip\\.ru\nphoto\\.houseofgaga\\.ru\nphotochki\\.com\nphotokitchendesign\\.com\nphotorepair\\.ru\nphp\\-market\\.ru\nphysfunc\\.ru\npicscout\\.com\npicturesmania\\.com\npills24h\\.com\npiluli\\.info\npinkduck\\.ga\npinupcasinos\\.ru\npinupcasinos1\\.ru\npinupp1\\.com\npipki\\.pp\\.ua\npiratbike\\.ru\npirateday\\.ru\npirelli\\-matador\\.ru\npisze\\.pisz\\.pl\npiter\\.xrus\\.org\npiulatte\\.cz\npizdeishn\\.com\npizdeishn\\.net\npizza\\-imperia\\.com\npizza\\-tycoon\\.com\npk\\-pomosch\\.ru\npk\\-services\\.ru\npkr1hand\\.com\nplagscan\\.com\nplastweb\\.ru\nplatesauto\\.com\nplatinumdeals\\.gr\nplohaya\\-kreditnaya\\-istoriya\\.ru\nplusnetwork\\.com\npochemychka\\.net\npodarkilove\\.ru\npoddon\\-moskva\\.ru\npodemnik\\.pro\npodseka1\\.ru\npogodnyyeavarii\\.gq\npogosh\\.com\npogruztehnik\\.ru\npoisk\\-zakona\\.ru\npoiskzakona\\.ru\npokemongooo\\.ml\npoker\\-royal777\\.com\npokupaylegko\\.ru\npolcin\\.de\npolemikon\\.ru\npolitika\\.bg\npolyana\\-skazok\\.org\\.ua\npomoc\\-drogowa\\.cba\\.pl\npony\\-business\\.com\npopads\\.net\npopelina\\.com\npops\\.foundation\npopugauka\\.ru\npopugaychiki\\.com\npopular\\-church\\-arrow\\-voucher\\.info\npopup\\-fdm\\.xyz\npopup\\-hgd\\.xyz\npopup\\-jdh\\.xyz\nporn\\-video\\-chat\\.ru\nporn\\-w\\.org\nporndl\\.org\npornhive\\.org\npornhub\\-forum\\.ga\npornhub\\-forum\\.uni\\.me\npornhub\\-ru\\.com\npornhubforum\\.tk\nporno\\-asia\\.com\nporno\\-chaman\\.info\nporno\\-dojki\\.net\nporno\\-gallery\\.ru\nporno\\-play\\.net\nporno\\-raskazy\\.ru\nporno\\-transsexuals\\.ru\nporno\\-video\\-chati\\.ru\nporno2xl\\.net\npornobest\\.su\npornoblood\\.com\npornobrazzers\\.biz\npornodojd\\.ru\npornoelita\\.info\npornofiljmi\\.com\npornoforadult\\.com\npornofoto\\.org\npornogig\\.com\npornohd1080\\.online\npornokajf\\.com\npornoklad\\.net\npornoklad\\.ru\npornokorol\\.com\npornonik\\.com\npornophoto\\.xyz\npornoplen\\.com\npornorasskazy\\.net\npornosemki\\.info\npornoslave\\.net\npornotubexxx\\.name\nporodasobak\\.net\nportal\\-eu\\.ru\nportnoff\\.od\\.au\nportnoff\\.od\\.ua\nposhiv\\-chehol\\.ru\npositive2b\\.ru\npospektr\\.ru\npostclass\\.com\nposteezy\\.xyz\npotolokelekor\\.ru\npovodok\\-shop\\.ru\npowitania\\.pl\npozdravleniya\\-c\\.ru\npozdrawleniya\\.com\npozdrawleniya\\.ru\npozvonim\\.com\npp\\-budpostach\\.com\\.ua\npravoholding\\.ru\npredmety\\.in\\.ua\nprezidentshop\\.ru\npriceg\\.com\npricheskaonline\\.ru\npricheski\\-video\\.com\nprimfootball\\.com\nprimoblog\\.xyz\nprinceadvantagesales\\.com\nprint\\-technology\\.ru\nprintie\\.com\nprintingpeach\\.com\npriora\\-2\\.com\nprivatbank46\\.ru\nprivate\\-service\\.best\nprivatov\\-zapisi\\.ru\nprivhosting\\.com\nprizesk\\.com\nprizrn\\.site\nprlog\\.ru\npro\\-okis\\.ru\nprobenzo\\.com\\.ua\nprocrafts\\.ru\nprodaemdveri\\.com\nproducm\\.ru\nprodvigator\\.au\nprodvigator\\.ua\nproekt\\-gaz\\.ru\nproekt\\-mos\\.ru\nprofessionalsolutions\\.eu\nprofessionalwritingservices15\\.blogspot\\.ru\nprofnastil\\-moscow\\.ru\nproftests\\.net\nprogressive\\-seo\\.com\nprohoster\\.info\nprointer\\.net\\.au\nprointer\\.net\\.ua\nprojectforte\\.ru\nprojefrio\\.com\\.br\nprokotov\\.com\nprom23\\.ru\nprombudpostach\\.com\\.ua\npromodj\\.com\npromoforum\\.ru\npromoteapps\\.online\npromotion\\-for99\\.com\npron\\.pro\npronekut\\.com\nproposal\\-engine\\.com\npropranolol40mg\\.blogspot\\.com\nproquoshop\\.xyz\nprosmibank\\.ru\nprostitutki\\-almata\\.org\nprostitutki\\-astana\\.org\nprostitutki\\-belgoroda\\.org\nprostitutki\\-kharkova\\.org\nprostitutki\\-kiev\\.org\nprostitutki\\-novgoroda\\.org\nprostitutki\\-odessa\\.org\nprostitutki\\-rostova\\.org\nprostitutki\\-rostova\\.ru\\.com\nprostitutki\\-tolyatti\\.org\nprostitutki\\-tyumeni\\.org\nprostitutki\\-yaroslavlya\\.org\nprostoacc\\.com\npsa48\\.ru\npsiosale\\.xyz\npskcijdc\\.bloger\\.index\\.hr\npsn\\-card\\.ru\npsvita\\.ru\npsychocryonics\\.net\nptashkatextil\\.ua\nptfic\\.org\npunch\\.media\npurchasepillsnorx\\.com\nputeshestvennik\\.com\nputevka24\\.ru\nputitin\\.me\npuzo2arbuza\\.ru\npuzzleweb\\.ru\npyrodesigns\\.com\\.au\nq\\-moto\\.ru\nqcstrtvt\\.bloger\\.index\\.hr\nqexyfu\\.bugs3\\.com\nqitt\\.ru\nqoinex\\.top\nqtrstar\\.xyz\nqualitymarketzone\\.com\nquick\\-seeker\\.com\nquickchange\\.cc\nquit\\-smoking\\.ga\nqwarckoine\\.com\nqwesa\\.ru\nqxnr\\.net\nr\\-control\\.ru\nrabot\\.host\\.sk\nrabotaetvse\\.ru\nrachelblog\\.online\nradiogambling\\.com\nrainbirds\\.ru\nranedaly\\.net\nrangapoker\\.com\nrangjued\\.com\nrank\\-checker\\.online\nrankchecker\\.online\nranking2017\\.ga\nrankings\\-analytics\\.com\nranksays\\.com\nrankscanner\\.com\nranksignals\\.com\nranksonic\\.com\nranksonic\\.info\nranksonic\\.net\nranksonic\\.org\nrapevideosmovies\\.com\nrapidgator\\-porn\\.ga\nrapidhits\\.net\nrapidsites\\.pro\nraschtextil\\.com\\.ua\nrasteniya\\-vs\\-zombi\\.ru\nratraiser\\.online\nrattan\\.co\\.ua\nraymondblog\\.top\nrazamicroelectronics\\.com\nrazborka\\-skoda\\.org\\.ua\nrb\\-str\\.ru\nrcb101\\.ru\nrczhan\\.com\nreal\\-time\\-analytics\\.com\nrealnye\\-otzyvy\\.info\nrealresultslist\\.com\nrealting\\-moscow\\.ru\nrecinziireale\\.com\nrecipedays\\.com\nrecipedays\\.ru\nrednise\\.com\nredraincine\\.com\nrefererx\\.com\nrefpawro\\.xyz\nrefudiatethissarah\\.info\nreginablog\\.top\nreginanahum\\.top\nregionshop\\.biz\nregistratciya\\-v\\-moskve\\.ru\nreklama\\-i\\-rabota\\.ru\nreklama1\\.ru\nreklamnoe\\.agency\nreklamuss\\.ru\nreleshop\\.ru\nrembash\\.ru\nremedyotc\\.com\nremkompov\\.ru\nremmling\\.de\nremont\\-comp\\-pomosh\\.ru\nremont\\-fridge\\-tv\\.ru\nremont\\-komputerov\\-notebook\\.ru\nremont\\-kvartirspb\\.com\nremont\\-mobile\\-phones\\.ru\nremont\\-ustanovka\\-tehniki\\.ru\nremontgruzovik\\.ru\nremontvau\\.ru\nremote\\-dba\\.de\nremotecomputingservices\\.net\nrent2spb\\.ru\nrentalmaty\\.kz\nreplica\\-watch\\.ru\nreplicaclub\\.ru\nresearch\\.ifmo\\.ru\nresell\\-seo\\-services\\.com\nresellerclub\\.com\nresidualforlife\\.com\nresponsive\\-test\\.net\nrespublica\\-otel\\.ru\nresurs\\-2012\\.ru\nretreatia\\.com\nreversing\\.cc\nrevolgc\\.pro\nreyel1985\\.webnode\\.fr\nrezeptiblud\\.ru\nrfavon\\.ru\nrfd\\-split\\.hr\nrfesc\\.net\nrialp\\.getenjoyment\\.net\nrichinvestmonitor\\.com\nrida\\.tokyo\nriedismall\\.xyz\nrietisvi\\.co\nrightenergysolutions\\.com\\.au\nring4rhino\\.com\nringporno\\.com\nrique\\.host\\.sk\nrisparmiocasa\\.bz\\.it\nrkmbonline\\.xyz\nrobocheck\\.info\nrobot\\-forex\\.biz\nroleforum\\.ru\nroma\\-kukareku\\.livejournal\\.com\nroof\\-city\\.ru\nroom\\-mebel\\.ru\nros\\-ctm\\.ru\nrospromtest\\.ru\nrossanasaavedra\\.net\nrossmark\\.ru\nrostov\\.xrus\\.org\nroyal\\-betting\\.net\nroyal\\-casino\\.online\nroyal\\-casino\\.ru\nroyal\\-casinos\\.online\nroyal\\-casinos\\.ru\nroyal\\-cazino\\.online\nroyal\\-cazino\\.ru\nroyal\\-investments\\.net\nrozalli\\.com\nroznica\\.com\\.ua\nrp9\\.ru\nrrutw\\.com\nrspectr\\.com\nru\\-lk\\-rt\\.ru\nru\\-onion\\.com\nru\\-online\\-sberbank\\.ru\nruex\\.org\\.ua\nrufreechats\\.com\nruhydraru\\.ru\nruinfocomp\\.ru\nrulate\\.ru\nrumamba\\.com\nrunetki\\-online\\.net\nrunovschool\\.ua\nrunstocks\\.com\nrupolitshow\\.ru\nrus\\-lit\\.com\nrus\\-teh\\.narod\\.ru\nruscams\\-com\\.ru\nruscopybook\\.com\nrusenvironmental\\.net\nrusexy\\.xyz\nrusoft\\-zone\\.ru\nruspoety\\.ru\nrussia\\-tao\\.ru\nrussia\\-today\\-video\\.ru\nrussian\\-postindex\\.ru\nrussian\\-translator\\.com\nrussian\\-videochats\\.ru\nrussintv\\.fr\nrusskie\\-sochineniya\\.ru\nrusskoe\\-zdorovie\\.ru\nrustag\\.ru\nrutor\\.group\nrvtv\\.ru\nrxshop\\.md\nrybalka\\-opt\\.ru\ns\\-forum\\.biz\ns\\-luna\\.me\nsabaapress\\.com\nsabinablog\\.xyz\nsack\\.net\nsad\\-torg\\.com\\.ua\nsady\\-urala\\.ru\nsahohev\\.000host\\.co\\.uk\nsaitevpatorii\\.com\nsakhboard\\.ru\nsale\\-japan\\.com\nsaletool\\.ru\nsaltspray\\.ru\nsalutmontreal\\.com\nsamanthablog\\.online\nsamara\\-airport\\.com\nsamara\\-comfort\\.ru\nsamchist\\.ru\nsamlaurabrown\\.top\nsamo\\-soznanie\\.ru\nsamogonius\\.ru\nsanatorrii\\.ru\nsanjosestartups\\.com\nsantaren\\.by\nsantasgift\\.ml\nsantechnik\\.jimdo\\.com\nsantehnovich\\.ru\nsapaship\\.ru\nsarafangel\\.ru\nsarahmilne\\.top\nsaratov\\.xrus\\.org\nsarf3omlat\\.com\nsashagreyblog\\.ga\nsaudegoods\\.xyz\nsauna\\-v\\-ufe\\.ru\nsauni\\-lipetsk\\.ru\nsauni\\-moskva\\.ru\nsavetubevideo\\.com\nsavetubevideo\\.info\nsavne\\.org\nsax\\-sex\\.com\nsbdl\\.no\nsbornik\\-zakonov\\.ru\nsc\\-specialhost\\.com\nscanner\\-alex\\.top\nscanner\\-alexa\\.top\nscanner\\-andrew\\.top\nscanner\\-barak\\.top\nscanner\\-brian\\.top\nscanner\\-don\\.top\nscanner\\-donald\\.top\nscanner\\-elena\\.top\nscanner\\-fred\\.top\nscanner\\-george\\.top\nscanner\\-irvin\\.top\nscanner\\-ivan\\.top\nscanner\\-jack\\.top\nscanner\\-jane\\.top\nscanner\\-jess\\.top\nscanner\\-jessica\\.top\nscanner\\-john\\.top\nscanner\\-josh\\.top\nscanner\\-julia\\.top\nscanner\\-julianna\\.top\nscanner\\-margo\\.top\nscanner\\-mark\\.top\nscanner\\-marwin\\.top\nscanner\\-mary\\.top\nscanner\\-nelson\\.top\nscanner\\-olga\\.top\nscanner\\-viktor\\.top\nscanner\\-walt\\.top\nscanner\\-walter\\.top\nscanner\\-willy\\.top\nscansafe\\.net\nscat\\.porn\nscenarii\\-1\\-sentyabrya\\.uroki\\.org\\.ua\nschool\\-diplomat\\.ru\nsciedsale\\.xyz\nscore\\-prime\\-web\\-service\\.stream\nscreen\\-led\\.ru\nscreentoolkit\\.com\nscripted\\.com\nsdelai\\-prosto\\.ru\nsdelatmebel\\.ru\nsdi\\-pme\\.com\nsearch\\-error\\.com\nsearch\\-helper\\.ru\nsearchencrypt\\.com\nsearchlock\\.com\nseccioncontrabajo\\.com\nsecret\\.xn\\-\\-oogle\\-wmc\\.com\nsecretscook\\.ru\nsecurity\\-corporation\\.com\\.ua\nsecurityallianceservices\\.com\nsee\\-your\\-website\\-here\\.com\nseekanvdoo22\\.live\nseisasale\\.xyz\nseksotur\\.ru\nsel\\-hoz\\.com\nselfhotdog\\.com\nsell\\-fb\\-group\\-here\\.com\nsemalt\\.com\nsemalt\\.net\nsemalt\\.semalt\\.com\nsemaltmedia\\.com\nsemxiu\\.com\nsenacertificados\\.co\nsenger\\.atspace\\.co\\.uk\nseo\\-2\\-0\\.com\nseo\\-b2b\\.com\nseo\\-platform\\.com\nseo\\-services\\-b2b\\.com\nseo\\-services\\-wordpress\\.com\nseo\\-smm\\.kz\nseo\\-tips\\.top\nseo\\-traffic\\.xyz\nseoanalyses\\.com\nseobook\\.top\nseocheckupx\\.com\nseocheckupx\\.net\nseoexperimenty\\.ru\nseojokes\\.net\nseokicks\\.de\nseopub\\.net\nseoriseome\\.netlify\\.app\nseoservices2018\\.com\nserenamall\\.xyz\nserialsway\\.ucoz\\.ru\nserialsx\\.ru\nservemlixo\\.xyz\nservisural\\.ru\nserw\\.clicksor\\.com\nseryeznie\\-znakomstva\\.ru\nsetioweb\\.com\nsex\\-dating\\.co\nsex\\-porno\\.site\nsex\\-spying\\.ru\nsex\\-videochats\\.ru\nsexkrasivo\\.net\nsexpornotales\\.net\nsexreliz\\.com\nsexreliz\\.net\nsexsaoy\\.com\nsexuria\\.net\nsexvideo\\-sex\\.com\nsexvporno\\.ru\nsexwife\\.net\nsexy\\-girl\\-chat\\.ru\nsexyali\\.com\nsexyteens\\.hol\\.es\nsexytrend\\.ru\nsfd\\-chess\\.ru\nshagtomsk\\.ru\nshakhtar\\-doneck\\.ru\nshamcisale\\.xyz\nshanscasino1\\.ru\nshare\\-button\\.xyz\nshare\\-buttons\\-for\\-free\\.com\nshare\\-buttons\\.xyz\nsharebutton\\.io\nsharebutton\\.net\nsharebutton\\.org\nsharebutton\\.to\nsharemyfile\\.ru\nshariki\\-zuma\\-lines\\.ru\nshcrose\\.com\nsheki\\-spb\\.ru\nshemy\\-vishivki\\.com\nshiksabd\\.com\nshinikiev\\.com\\.ua\nship\\-marvel\\.co\\.ua\nshisenshop\\.xyz\nshisha\\-swag\\.de\nshlyahten\\.ru\nshnyagi\\.net\nshodanhq\\.com\nshop\\-electron\\.ru\nshop\\-garena\\.ru\nshop\\.garena\\.ru\\.com\nshop\\.xz618\\.com\nshop2hydra\\.com\nshop4fit\\.ru\nshopfishing\\.com\\.ua\nshoppinglocation\\.com\nshoppingmiracles\\.co\\.uk\nshoprybalka\\.ru\nshops\\-ru\\.ru\nshopsellcardsdumps\\.com\nshopvilleroyboch\\.com\\.ua\nshopwme\\.ru\nshtaketniki\\.ru\nshtormmall\\.xyz\nshulepov\\.ru\nsib\\-kukla\\.ru\nsibecoprom\\.ru\nsibkukla\\.ru\nsideeffectsoftizanidine\\.blogspot\\.com\nsign\\-service\\.ru\nsignx\\.info\nsihugoods\\.xyz\nsilverage\\.ru\nsilvergull\\.ru\nsilvermature\\.net\nsim\\-dealer\\.ru\nsim\\-service\\.net\nsimilarmoviesdb\\.com\nsimoncinicancertherapy\\.com\nsimple\\-share\\-buttons\\.com\nsimplepooltips\\.com\nsims\\-sims\\.ru\nsinel\\.info\nsinestesia\\.host\\.sk\nsingularwebs\\.net\nsinhronperevod\\.ru\nsiongetadsincome\\.info\nsirhoutlet\\.xyz\nsiritshop\\.xyz\nsisiynas\\.ru\nsite\\-auditor\\.online\nsite\\-speed\\-check\\.site\nsite\\-speed\\-checker\\.site\nsite3\\.free\\-share\\-buttons\\.com\nsite5\\.com\nsiteexpress\\.co\\.il\nsiteripz\\.net\nsitesadd\\.com\nsitevaluation\\.com\nsitevaluation\\.org\nsivs\\.ru\nsjmsw\\.net\nsk\\.golden\\-praga\\.ru\nski\\-centers\\.com\nskidku\\.org\\.ua\nskinali\\.com\nskinali\\.photo\\-clip\\.ru\nsklad\\-24\\.ru\nskladvaz\\.ru\nsky\\-mine\\.ru\nskylta\\.com\nsladkoevideo\\.com\nslashpet\\.com\nslavic\\-magic\\.ru\nslavkokacunko\\.de\nsledstvie\\-veli\\.net\nslftsdybbg\\.ru\nslkrm\\.ru\nslomm\\.ru\nslonechka\\.ru\nsloopyjoes\\.com\\.top\nslotron\\.com\nslow\\-website\\.xyz\nslujbauborki\\.ru\nsmailik\\.org\nsmall\\-game\\.com\nsmall\\-games\\.biz\nsmartpet\\.ru\nsmartphonediscount\\.info\nsms2x2\\.ru\nsmstraf\\.ru\nsmt4\\.ru\nsmzt\\.shop\nsnabs\\.kz\nsnaiper\\-bg\\.net\nsneakerfreaker\\.com\nsnegozaderzhatel\\.ru\nsnip\\.to\nsnip\\.tw\nsnjatie\\-geroinovoy\\-lomki\\.ru\nsnomer1\\.ru\nsnyatie\\-lomki\\-v\\-stacionare\\.ru\nsoaksoak\\.ru\nsoblaznu\\.net\nsoc\\-econom\\-problems\\.ru\nsoc\\-proof\\.su\nsocas\\.pluto\\.ro\nsochi\\-3d\\.ru\nsocial\\-button\\.xyz\nsocial\\-buttons\\-aa\\.xyz\nsocial\\-buttons\\-aaa\\.xyz\nsocial\\-buttons\\-bb\\.xyz\nsocial\\-buttons\\-bbb\\.xyz\nsocial\\-buttons\\-cc\\.xyz\nsocial\\-buttons\\-ccc\\.xyz\nsocial\\-buttons\\-dd\\.xyz\nsocial\\-buttons\\-ddd\\.xyz\nsocial\\-buttons\\-ee\\.xyz\nsocial\\-buttons\\-eee\\.xyz\nsocial\\-buttons\\-ff\\.xyz\nsocial\\-buttons\\-fff\\.xyz\nsocial\\-buttons\\-gg\\.xyz\nsocial\\-buttons\\-ggg\\.xyz\nsocial\\-buttons\\-hh\\.xyz\nsocial\\-buttons\\-ii\\.xyz\nsocial\\-buttons\\-iii\\.xyz\nsocial\\-buttons\\.com\nsocial\\-buttons\\.xyz\nsocial\\-fun\\.ru\nsocial\\-s\\-ggg\\.xyz\nsocial\\-s\\-hhh\\.xyz\nsocial\\-s\\-iii\\.xyz\nsocial\\-search\\.me\nsocial\\-traffic\\-1\\.xyz\nsocial\\-traffic\\-2\\.xyz\nsocial\\-traffic\\-3\\.xyz\nsocial\\-traffic\\-4\\.xyz\nsocial\\-traffic\\-5\\.xyz\nsocial\\-traffic\\-6\\.xyz\nsocial\\-traffic\\-7\\.xyz\nsocial\\-vestnik\\.ru\nsocial\\-widget\\.xyz\nsocialbookmarksubmission\\.org\nsocialbutton\\.xyz\nsocialbuttons\\.xyz\nsocialine\\.net\nsocialseet\\.ru\nsocialtrade\\.biz\nsofit\\-dmd\\.ru\nsoft\\-program\\.com\nsoftomix\\.com\nsoftomix\\.net\nsoftomix\\.org\nsoftomix\\.ru\nsofttor\\.com\nsoftxaker\\.ru\nsohoindia\\.net\nsoki\\.tv\nsolartek\\.ru\nsolitaire\\-game\\.ru\nsolnplast\\.ru\nsonata\\-arctica\\.wz\\.cz\nsongoo\\.wz\\.cz\nsonnikforme\\.ru\nsonyelektronik\\.com\nsosdepotdebilan\\.com\nsotkal\\.lark\\.ru\nsoundfrost\\.org\nsoup\\.io\nsouvenirua\\.com\nsovetogorod\\.ru\nsovetskie\\-plakaty\\.ru\nsoviet\\-portal\\.do\\.am\nsowhoz\\.ru\nsoyuzexpedition\\.ru\nsp\\-laptop\\.ru\nsp\\-zakupki\\.ru\nspace2019\\.top\nspacebarnot\\.work\nspain\\-poetry\\.com\nspartania\\.com\\.ua\nspb\\-plitka\\.ru\nspb\\-scenar\\.ru\nspb\\.ru\nspbchampionat\\.ru\nspecial\\-porn\\.com\nspecstroy36\\.ru\nspeedup\\-my\\.site\nspin2016\\.cf\nsport\\-video\\-obzor\\.ru\nsportbetfair\\.com\nsportobzori\\.ru\nsportwizard\\.ru\nspravka130\\.ru\nspravkavspb\\.net\nspravkavspb\\.work\nsprawka\\-help\\.com\nspscmall\\.xyz\nspuemonti\\.net\nspy\\-app\\.info\nspy\\-sts\\.com\nsqadia\\.com\nsquarespace\\.top\nsquidoo\\.com\nsrecorder\\.com\nsribno\\.net\nssn\\.is\nsssexxx\\.net\nssve\\.ru\nst\\-komf\\.ru\nsta\\-grand\\.ru\nstairliftstrue\\.com\nstar61\\.de\nstardevine\\.com\nstariy\\-baku\\.com\nstart\\.myplaycity\\.com\nstartraffic\\.online\nstartufa\\.ru\nstartwp\\.org\nstat\\.lviv\\.ua\nstatashop\\.xyz\nstatic\\.seders\\.website\nstatustroll\\.com\nstauga\\.altervista\\.org\nstavimdveri\\.ru\nsteame\\.ru\nsteelmaster\\.lv\nstiralkovich\\.ru\nstocktwists\\.com\nstoki\\.ru\nstoletie\\.ru\nstoliar\\.org\nstomatologi\\.moscow\nstop\\-nark\\.ru\nstop\\-zavisimost\\.com\nstore\\-rx\\.com\nstrady\\.org\\.ua\nstrana\\-krasoty\\.ru\nstrana\\-solnca\\.ru\nstream\\-tds\\.com\nstreetfire\\.net\nstreetfooduncovered\\.com\nstreha\\-metalko\\.si\nstrigkaomsk\\.ru\nstroi\\-24\\.ru\nstroicol\\.net\nstroimajor\\.ru\nstroiminsk\\.com\nstroiminsk\\.org\nstromerrealty\\.com\nstrongholdsb\\.ru\nstrongtools\\.ga\nstroy\\-matrix\\.ru\nstroyalp\\.ru\nstroydetali\\.ru\nstroyka\\-gid\\.ru\nstroyka47\\.ru\nstroymonolit\\.su\nstudentguide\\.ru\nstudiofaca\\.com\nstuff\\-about\\-money\\.com\nstuffhydra\\.com\nstylecaster\\.top\nstyro\\.ru\nsu1ufa\\.ru\nsuccess\\-seo\\.com\nsuckoutlet\\.xyz\nsudachitravel\\.com\nsugarkun\\.com\nsugvant\\.ru\nsundrugstore\\.com\nsuper\\-seo\\-guru\\.com\nsuperiends\\.org\nsupermama\\.top\nsupermesta\\.ru\nsupermodni\\.com\\.ua\nsupernew\\.org\nsuperoboi\\.com\\.ua\nsuperpages\\.com\nsuperslots\\-casino\\.online\nsuperslots\\-casino\\.site\nsuperslots\\-cazino\\.online\nsuperslots\\-cazino\\.site\nsuperslotz\\-casino\\.site\nsuperslotz\\-cazino\\.site\nsupertraffic\\.xyz\nsupervesti\\.ru\nsurflinksmedical\\.com\nsusanholtphotography\\.com\nsuzanneboswell\\.top\nsvadba\\-teplohod\\.ru\nsvarbit\\.com\nsvarog\\-jez\\.com\nsvensk\\-poesi\\.com\nsvet\\-depo\\.ru\nsvetka\\.info\nsvetlotorg\\.ru\nsvetoch\\.moscow\nsvetodiodoff\\.ru\nsvoimi\\-rukamy\\.com\nsvs\\-avto\\.com\nswagbucks\\.com\nswaplab\\.io\nsweet\\.tv\nsygraem\\.com\nszansadlarolnikow\\.com\\.pl\nt\\-machinery\\.ru\nt\\-rec\\.su\nt3chtonic\\.com\ntaartstore\\.xyz\ntagmeanvice\\.live\ntaihouse\\.ru\ntam\\-gde\\-more\\.ru\ntamada69\\.com\ntammyblog\\.online\ntargetpay\\.nl\ntasteidea\\.com\ntastyfoodideas\\.com\ntattoo\\-stickers\\.ru\ntattoo33\\.ru\ntattooha\\.com\ntaximytishi\\.ru\ntccp\\.xyz\ntcenavoprosa\\.ru\ntcsinksale\\.xyz\ntcyh\\.net\ntd\\-33\\.ru\ntd\\-abs\\.ru\ntd\\-l\\-market\\.ru\ntd\\-perimetr\\.ru\ntdbatik\\.com\ntds\\-west\\.ru\nteastory\\.co\ntechart24\\.com\ntechnika\\-remont\\.ru\ntechnopellet\\.gr\ntecspb\\.ru\ntedxrj\\.com\ntedy\\.su\nteedle\\.co\ntehngr\\.ru\ntelegramdownload10\\.com\ntelesvoboda\\.ru\ntelfer\\.ru\nteman\\.com\\.ua\ntennis\\-bet\\.ru\ntentcomplekt\\.ru\nteplohod\\-gnezdo\\.ru\nteplokomplex\\.ru\nteplolidoma\\.ru\nterapist\\.xyz\nteresablog\\.top\ntesla\\-audit\\.ru\nteslathemes\\.com\ntest\\-extra\\-full\\-stack\\-services\\.stream\ntest\\-prime\\-smm\\-service\\.review\ntest\\.xyz\ntexbaza\\.by\ntexnika\\.com\\.ua\ntgsubs\\.com\ntgtclick\\.com\nthaimassage\\-slon\\.ru\nthaoduoctoc\\.com\nthe\\-torrent\\-tracker\\.blogspot\\.com\nthe\\-usa\\-games\\.blogspot\\.com\nthe\\-world\\.ru\ntheautoprofit\\.ml\nthebluenoodle\\.com\nthecoral\\.com\\.br\nthedownloadfreeonlinegames\\.blogspot\\.com\nthedownloadfromwarez\\.blogspot\\.com\nthefds\\.net\nthegreensociety\\.net\ntheguardlan\\.com\ntheheroes\\.ru\nthejournal\\.ru\nthelotter\\.su\nthepokertimer\\.com\ntherealshop\\.exaccess\\.com\nthesensehousehotel\\.com\nthesmartsearch\\.net\nthewomenlife\\.com\nthiegs\\.reco\\.ws\nthin\\.me\\.pn\ntiandeural\\.ru\ntiens2010\\.ru\ntimeallnews\\.ru\ntimer4web\\.com\ntimetorelax\\.biz\ntimmy\\.by\ntip8\\.co\ntizanidine4mg\\.blogspot\\.com\ntizanidine4mgprice\\.blogspot\\.com\ntizanidine4mgstreetprice\\.blogspot\\.com\ntizanidine4mgstreetvalue\\.blogspot\\.com\ntizanidine4mgtablets\\.blogspot\\.com\ntizanidine4mguses\\.blogspot\\.com\ntizanidine6mg\\.blogspot\\.com\ntizanidineandcipro\\.blogspot\\.com\ntizanidineandgabapentin\\.blogspot\\.com\ntizanidineandhydrocodone\\.blogspot\\.com\ntizanidinecapsules\\.blogspot\\.com\ntizanidinecost\\.blogspot\\.com\ntizanidinedosage\\.blogspot\\.com\ntizanidinedosageforsleep\\.blogspot\\.com\ntizanidinedruginteractions\\.blogspot\\.com\ntizanidinedrugtest\\.blogspot\\.com\ntizanidineduringpregnancy\\.blogspot\\.com\ntizanidinefibromyalgia\\.blogspot\\.com\ntizanidineformigraines\\.blogspot\\.com\ntizanidineforopiatewithdrawal\\.blogspot\\.com\ntizanidinehcl2mg\\.blogspot\\.com\ntizanidinehcl2mgsideeffects\\.blogspot\\.com\ntizanidinehcl2mgtablet\\.blogspot\\.com\ntizanidinehcl4mgisitanarcotic\\.blogspot\\.com\ntizanidinehcl4mgtab\\.blogspot\\.com\ntizanidinehcl4mgtabinfo\\.blogspot\\.com\ntizanidinehcl4mgtablet\\.blogspot\\.com\ntizanidinehclsideeffects\\.blogspot\\.com\ntizanidinehydrochloride2mg\\.blogspot\\.com\ntizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com\ntizanidineinfo\\.blogspot\\.com\ntizanidineingredients\\.blogspot\\.com\ntizanidineinteractions\\.blogspot\\.com\ntizanidinemusclerelaxant\\.blogspot\\.com\ntizanidinenarcotic\\.blogspot\\.com\ntizanidineonline\\.blogspot\\.com\ntizanidineoral\\.blogspot\\.com\ntizanidineorflexeril\\.blogspot\\.com\ntizanidinepain\\.blogspot\\.com\ntizanidinepills\\.blogspot\\.com\ntizanidinerecreationaluse\\.blogspot\\.com\ntizanidinerestlesslegsyndrome\\.blogspot\\.com\ntizanidineshowupondrugtest\\.blogspot\\.com\ntizanidinesideeffects\\.blogspot\\.com\ntizanidinesideeffectsweightloss\\.blogspot\\.com\ntizanidinesleepaid\\.blogspot\\.com\ntizanidinestreetprice\\.blogspot\\.com\ntizanidinestreetvalue\\.blogspot\\.com\ntizanidineusedfor\\.blogspot\\.com\ntizanidinevscyclobenzaprine\\.blogspot\\.com\ntizanidinevssoma\\.blogspot\\.com\ntizanidinevsvalium\\.blogspot\\.com\ntizanidinewithdrawal\\.blogspot\\.com\ntizanidinewithdrawalsymptoms\\.blogspot\\.com\ntizanidinezanaflex\\.blogspot\\.com\ntkanorganizma\\.ru\ntksn\\.ru\ntocan\\.biz\ntocan\\.com\\.ua\ntokshow\\.online\ntoloka\\.hurtom\\.com\ntomatis\\.gospartner\\.com\ntomck\\.com\ntommysautomotivecare\\.com\ntop\\-gan\\.ru\ntop\\-instagram\\.info\ntop\\-kasyna\\.com\ntop\\-l2\\.com\ntop1\\-seo\\-service\\.com\ntop10\\-online\\-games\\.com\ntop10\\-way\\.com\ntop250movies\\.ru\ntop8\\.co\ntopgurudeals\\.com\ntopmebeltorg\\.ru\ntopmira\\.com\ntoposvita\\.com\ntopquality\\.cf\ntopseoservices\\.co\ntopshef\\.ru\ntopvidos\\.ru\ntor\\.vc\ntorobrand\\.com\ntorontoplumbinggroup\\.com\ntorospa\\.ru\ntorrentgamer\\.net\ntorrentred\\.games\ntorrents\\-tracker\\.com\ntorrnada\\.ru\ntorture\\.ml\ntotppgoods\\.xyz\ntouchmods\\.fr\ntourburlington\\.com\ntovaroboom\\.vast\\.ru\ntpu\\.ru\ntrack\\-rankings\\.online\ntracker24\\-gps\\.ru\ntrade365\\.org\ntraderzplanet\\.co\\.in\ntrafaret74\\.ru\ntrafers\\.com\ntraffic\\-cash\\.xyz\ntraffic\\-paradise\\.org\ntraffic2cash\\.net\ntraffic2cash\\.org\ntraffic2cash\\.xyz\ntraffic2money\\.com\ntrafficbot\\.life\ntrafficbot4free\\.xyz\ntrafficdrive\\.club\ntrafficgenius\\.xyz\ntrafficmonetize\\.org\ntrafficmonetizer\\.org\ntrafficstudio\\.club\ntraffictomoney\\.com\ntrahvid\\.com\ntramadolandtizanidine\\.blogspot\\.com\ntransit\\.in\\.ua\ntranssex\\-videochat\\.ru\ntraphouselatino\\.net\ntravel\\-semantics\\.com\ntravgoods\\.xyz\ntraxdom\\.ru\ntrex\\-casino\\.com\ntrex\\.casino\ntri\\-slona\\.org\ntrick\\-negotiation\\-cup\\-wonder\\.com\ntricolortv\\-online\\.com\ntrieste\\.io\ntrion\\.od\\.au\ntrion\\.od\\.ua\ntriumf\\-realty\\.ru\ntrk\\-4\\.net\ntrubywriting\\.com\ntruck\\-spite\\-lawyer\\-activity\\.top\ntruebeauty\\.cc\ntsatu\\.edu\\.ua\ntsc\\-koleso\\.ru\ntsstcorpcddvdwshbbdriverfb\\.aircus\\.com\nttechno\\.net\ntuberkulezanet\\.ru\ntuberkuleznik\\.ru\ntudusale\\.xyz\ntula\\.mdverey\\.ru\ntuningdom\\.ru\ntupper\\-posuda\\.ru\ntupper\\-shop\\.ru\nturbo\\-suslik\\.org\nturist\\-strani\\.ru\nturkeyreport\\.tk\nturvgori\\.ru\ntvand\\.ru\ntvfru\\.org\ntvgoals\\.tv\ntvoystartup\\.ru\ntwincitiescarservice\\.com\ntwojebook\\.pl\ntwsufa\\.ru\ntwu\\.com\\.ua\ntytoona\\.com\ntyumen\\.xrus\\.org\nu\\-cheats\\.ru\nu17795\\.netangels\\.ru\nua\\-company\\.ru\nua\\.tc\nuaecdsale\\.xyz\nuasb\\.ru\nublaze\\.ru\nucanfly\\.ru\nucban\\.xyz\nuchebavchehii\\.ru\nuchil\\.net\nucoz\\.ru\nucsfstore\\.xyz\nucsol\\.ru\nuctraffic\\.com\nudav\\.net\nufa\\.dienai\\.ru\nufa\\.xrus\\.org\nufolabs\\.net\nuginekologa\\.com\nukrainian\\-poetry\\.com\nukrcargo\\.com\nukrtvory\\.in\\.ua\nukstmalls\\.xyz\nul\\-potolki\\.ru\nultimateuninstall\\.com\num\\-razum\\.ru\numg\\-stroy\\.ru\numityangin\\.net\nundergroundcityphoto\\.com\nuni\\.me\nunibus\\.su\nunimodemhalfduplefw\\.pen\\.io\nuniqgen\\.net\nunitygame3d\\.com\nuniverfiles\\.com\nunlimitdocs\\.net\nunmaroll\\.ya\\.ru\nunpredictable\\.ga\nupcronline\\.xyz\nuptime\\-alpha\\.net\nuptime\\-as\\.net\nuptime\\-beta\\.net\nuptime\\-delta\\.net\nuptime\\-eu\\.net\nuptime\\-gamma\\.net\nuptime\\-us\\.net\nuptime\\.com\nuptimebot\\.net\nuptimechecker\\.com\nural\\-buldozer\\.ru\nurbanblog\\.shop\nurbanchr\\.online\nurblog\\.xyz\nurccvfmc\\.bloger\\.index\\.hr\nurlopener\\.blogspot\\.com\\.au\nurlopener\\.com\nurlumbrella\\.com\nuruto\\.ru\nus\\-america\\.ru\nusadacha\\.net\nuserequip\\.com\nuslugi\\-tatarstan\\.ru\nussearche\\.cf\nustion\\.ru\nuterkysale\\.xyz\nutrolive\\.ru\nuusmsale\\.xyz\nuyut\\-dom\\.pro\nuyutmaster73\\.ru\nuzpaket\\.com\nuzungil\\.com\nv\\-casino\\.fun\nv\\-casino\\.host\nv\\-casino\\.ru\nv\\-casino\\.site\nv\\-casino\\.website\nv\\-casino\\.xyz\nv\\-cazino\\.online\nv\\-cazino\\.ru\nvabasa\\.inwtrade\\.com\nvaderenergy\\.ru\nvadimkravtcov\\.ru\nvalid\\-cc\\.com\nvalidccseller\\.com\nvalidus\\.pro\nvalkiria\\-tk\\.ru\nvanessablog\\.online\nvape\\-x\\.ru\nvapmedia\\.org\nvapsy\\.com\nvardenafil20\\.com\nvarikozdok\\.ru\nvashsvet\\.com\nvavada\\-casino\\.host\nvavada\\-casino\\.top\nvavada\\-cazino\\.host\nvavada\\-cazino\\.site\nvavilone\\.com\nvbabule\\.net\nvbikse\\.com\nvc\\.ru\nvchulkah\\.net\nvduplo\\.ru\nveerotech\\.com\nvegascosmetics\\.ru\nvekzdorov\\.ru\nveles\\.shop\nvelobikestock\\.com\nveloland\\.in\\.ua\nventa\\-prom\\.ru\nventelnos\\.com\nventopt\\.by\nveronicablog\\.top\nvescenter\\.ru\nveselokloun\\.ru\nvesnatehno\\.com\nvesnatehno\\.ru\nvesta\\-lada\\.net\nvetbvc\\.ru\nvezdevoz\\.com\\.ua\nvezuviy\\.su\nvgoloveboli\\.net\nvia\\-gra\\.webstarts\\.com\nviagra\\-soft\\.ru\nviagra\\.pp\\.ua\nviagroid\\.ru\nviandpet\\.com\nviberdownload10\\.com\nvideo\\-\\-production\\.com\nvideo\\-chat\\.in\nvideo\\-girl\\-online\\.ru\nvideo\\-hollywood\\.ru\nvideo\\-woman\\.com\nvideochat\\-dating\\.ru\nvideochat\\.guru\nvideochat\\.mx\nvideochat\\.tv\\.br\nvideochat\\.world\nvideochaty\\.ru\nvideofrost\\.com\nvideofrost\\.net\nvideokrik\\.net\nvideos\\-for\\-your\\-business\\.com\nvideosbox\\.ru\nvideotop\\.biz\nvideotuber\\.ru\nvidzwap\\.xyz\nviel\\.su\nvigrx\\-original\\.ru\nviktoria\\-center\\.ru\nvilingstore\\.net\nvinsit\\.ru\nvip\\-dom\\.in\nvip\\-parfumeria\\.ru\nvipsiterip\\.org\nvirtchats\\.ru\nvirtual\\-love\\-video\\.ru\nvirtual\\-sex\\-chat\\.ru\nvirtual\\-sex\\-time\\.ru\nvirtual\\-sex\\-videochat\\.ru\nvirtual\\-zaim\\.ru\nvirtualbb\\.com\nvirus\\-schutzmasken\\.de\nvisa\\-china\\.ru\nvisa\\-pasport\\.ru\nvita\\.com\\.hr\nvitanail\\.ru\nviven\\.host\\.sk\nvizag\\.kharkov\\.ua\nvk\\-mus\\.ru\nvk\\.com\nvkak\\.ru\nvkonche\\.com\nvkontaktemusic\\.ru\nvkontarkte\\.com\nvksaver\\-all\\.ru\nvksex\\.ru\nvladhistory\\.com\nvladtime\\.ru\nvltai\\.com\nvmnmvzsmn\\.over\\-blog\\.com\nvod\\.com\\.ua\nvodabur\\.by\nvodaodessa\\.com\nvoditeltrezviy\\.ru\nvodkoved\\.ru\nvolgograd\\.xrus\\.org\nvolond\\.com\nvoloomoney\\.com\nvolume\\-pills\\.biz\nvoprosotvet24\\.ru\nvoronezh\\.xrus\\.org\nvostgard\\.com\nvostoktrade\\.info\nvote\\-up\\.ru\nvozbujdenie\\.com\nvpdr\\.pl\nvpnhowto\\.info\nvrazbor59\\.ru\nvriel\\.batcave\\.net\nvrnelectro\\.ru\nvrnhnmall\\.xyz\nvrotike\\.ru\nvsdelke\\.ru\nvseigru\\.one\nvseigry\\.fun\nvseprobrak\\.ru\nvsesubwaysurfers\\.com\nvseuznaem\\.com\nvucms\\.com\nvulkan\\-nadengi\\.ru\nvulkan\\-oficial\\.com\nvulkanrussia1\\.ru\nvykup\\-avto\\-krasnodar\\.ru\nvykupavto\\-krasnodar\\.ru\nvzheludke\\.com\nvzlom\\-na\\-zakaz\\.com\nvzubah\\.com\nvzube\\.com\nvzubkah\\.com\nw2mobile\\-za\\.com\nw3javascript\\.com\nw7s\\.ru\nwakeupseoconsultant\\.com\nwallabag\\.malooma\\.bzh\nwallet\\-prlzn\\.space\nwallinside\\.top\nwallpaperdesk\\.info\nwallpapers\\-all\\.com\nwallpapers\\-best\\.com\nwallpapersdesk\\.info\nwallstore\\.xyz\nwandamary\\.online\nwapsite\\.me\nwarmex\\.com\\.ua\nwarningwar\\.ru\nwasabisale\\.xyz\nwatch\\-movies\\.ru\nwave\\-games\\.ru\nwayfcoin\\.space\nwbjm\\.net\nwcb\\.su\nwdfdocando\\.com\nwdss\\.com\\.ua\nwe\\-ping\\-for\\-youian\\.info\nwe\\-ping\\-for\\-youic\\.info\nweb\\-analytics\\.date\nweb\\-betting\\.ru\nweb\\-lazy\\-services\\.review\nweb\\-list\\.xyz\nweb\\-revenue\\.xyz\nweb\\.cvut\\.cz\nwebalex\\.pro\nwebinstantservice\\.com\nwebix\\.me\nwebjam\\.com\nweblibrary\\.win\nwebmaster\\-traffic\\.com\nwebmonetizer\\.net\nwebradiology\\.ru\nwebs\\.com\nwebsite\\-analytics\\.online\nwebsite\\-analyzer\\.info\nwebsite\\-errors\\-scanner\\.com\nwebsite\\-services\\-promotion\\.bid\nwebsite\\-services\\-promotion\\.review\nwebsite\\-services\\-promotion\\.stream\nwebsite\\-services\\-promotion\\.win\nwebsite\\-services\\-seo\\.bid\nwebsite\\-services\\-seo\\.stream\nwebsite\\-services\\-seo\\.win\nwebsite\\-services\\-smm\\.bid\nwebsite\\-services\\-smm\\.review\nwebsite\\-services\\-smm\\.stream\nwebsite\\-services\\-smm\\.win\nwebsite\\-services\\.review\nwebsite\\-services\\.stream\nwebsite\\-services\\.win\nwebsite\\-speed\\-check\\.site\nwebsite\\-speed\\-checker\\.site\nwebsite\\-speed\\-up\\.site\nwebsite\\-speed\\-up\\.top\nwebsite\\-stealer\\-warning\\-alert\\.hdmoviecams\\.com\nwebsitebottraffic\\.club\nwebsitebottraffic\\.host\nwebsites\\-reviews\\.com\nwebsocial\\.me\nwebtherapy\\.ru\nweburlopener\\.com\nwedding\\-salon\\.net\nweebly\\.com\nweekes\\.biz\\.tc\nweightatraining\\.com\nweightbelts\\.ru\nwelck\\.octopis\\.com\nwelcomeauto\\.ru\nweprik\\.ru\nwetgames\\.ru\nwfdesigngroup\\.com\nwhatistizanidine2mg\\.blogspot\\.com\nwhatistizanidinehclusedfor\\.blogspot\\.com\nwhatsappdownload10\\.com\nwhereiskentoday\\.com\nwicivow\\.007h\\.ml\nwikes\\.20fr\\.com\nwilliamrobsonproperty\\.com\nwinx\\-play\\.ru\nwitherrom55\\.eklablog\\.fr\nwjxmenye\\.com\nwmasterlead\\.com\nwnoz\\.de\nwoman\\-h\\.ru\nwoman\\-orgasm\\.ru\nwoman\\-tampon\\.ru\nwomens\\-journal\\.net\nwomensplay\\.net\nwomensterritory\\.ru\nwordpress\\-crew\\.net\nwordpresscore\\.com\nwork\\-from\\-home\\-earn\\-money\\-online\\.com\nworkius\\.ru\nworkona\\.com\nworks\\.if\\.ua\nworld\\-mmo\\.com\nworldgamenews\\.com\nworldhistory\\.biz\nworldis\\.me\nworldlovers\\.ru\nworldmed\\.info\nworldofbtc\\.com\nwormix\\-cheats\\.ru\nwowas31\\.ucoz\\.ru\nwoweb\\.com\\.ua\nwpnull\\.org\nwptraffic\\.xyz\nwrazilwispolecznie\\.pl\nwrc\\-info\\.ru\nwritingservices17\\.blogspot\\.ru\nwrona\\.it\nwstroika\\.ru\nwufak\\.com\nwurr\\.voila\\.net\nww1943\\.ru\nww2awards\\.info\nwww\\-lk\\-rt\\.ru\nwww\\.gelendzhic\\.ru\nwww1\\.free\\-share\\-buttons\\.top\nwzgyyq\\.com\nx\\-lime\\.com\nx\\-lime\\.net\nx\\-musics\\.com\nx\\-stars\\.ru\nx5market\\.ru\nxaker26\\.net\nxbaboon\\.com\nxboxster\\.ru\nxexe\\.club\nxfire\\.com\nxgftnlrt\\.bloger\\.index\\.hr\nxion\\.cash\nxjrul\\.com\nxkaz\\.org\nxlolitka\\.com\nxmnb\\.net\nxn\\-\\-\\-\\-\\-\\-\\-53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-\\-\\-6cdbciescapvf0a8bibwx0a1bu\\.xn\\-\\-90ais\nxn\\-\\-\\-\\-\\-6kcaacnblni5c5bicdpcmficy\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-\\-6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-\\-6kcamwewcd9bayelq\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-\\-7kcaaxchbbmgncr7chzy0k0hk\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-\\-7kceclhb4abre1b4a0ccl2fxch1a\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-\\-8kcatubaocd1bneepefojs1h2e\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-\\-clckdac3bsfgdft3aebjp5etek\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-7sbabb9a1b7bddgm6a1i\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-7sbabhjc3ccc5aggbzfmfi\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-7sbabhv4abd8aih6bb7k\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-7sbabm1ahc4b2aqff\\.su\nxn\\-\\-\\-\\-7sbabn5abjehfwi8bj\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-7sbaphztdjeboffeiof6c\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-7sbbpe3afguye\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-7sbho2agebbhlivy\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-8sbaki4azawu5b\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-8sbarihbihxpxqgaf0g1e\\.xn\\-\\-80adxhks\nxn\\-\\-\\-\\-8sbbjimdeyfsi\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-8sbdbjgb1ap7a9c4czbh\\.xn\\-\\-p1acf\nxn\\-\\-\\-\\-8sbhefaln6acifdaon5c6f4axh\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-8sblgmbj1a1bk8l\\.xn\\-\\-\\-\\-161\\-4vemb6cjl7anbaea3afninj\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-8sbowe2akbcd4h\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-8sbpmgeilbd8achi0c\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-btbdvdh4aafrfciljm6k\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-ctbbcjd3dbsehgi\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-ctbfcdjl8baejhfb1oh\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-ctbigni3aj4h\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-dtbffp5aagjgfm\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-ftbeoaiyg1ak1cb7d\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-gtbdb0beu1bb8gj\\.xn\\-\\-p1ai\nxn\\-\\-\\-\\-itbbudqejbfpg3l\\.com\nxn\\-\\-\\-\\-jtbjfcbdfr0afji4m\\.xn\\-\\-p1ai\nxn\\-\\-78\\-6kc6akkhn3a3k\\.xn\\-\\-p1ai\nxn\\-\\-78\\-6kcmzqfpcb1amd1q\\.xn\\-\\-p1ai\nxn\\-\\-80aaafbn2bc2ahdfrfkln6l\\.xn\\-\\-p1ai\nxn\\-\\-80aaajbdbddwj2alwjieei2afr3v\\.xn\\-\\-p1ai\nxn\\-\\-80aaajkrncdlqdh6ane8t\\.xn\\-\\-p1ai\nxn\\-\\-80aaaks3bbhabgbigamdr2h\\.xn\\-\\-p1ai\nxn\\-\\-80aabcsc3bqirlt\\.xn\\-\\-p1ai\nxn\\-\\-80aanaardaperhcem4a6i\\.com\nxn\\-\\-80ab4aa2g\\.xn\\-\\-p1ai\nxn\\-\\-80adaggc5bdhlfamsfdij4p7b\\.xn\\-\\-p1ai\nxn\\-\\-80adgcaax6acohn6r\\.xn\\-\\-p1ai\nxn\\-\\-80aeahghtf8ac5i\\.xn\\-\\-p1ai\nxn\\-\\-80aeb6argv\\.xn\\-\\-p1ai\nxn\\-\\-80aebzmbfeebe\\.xn\\-\\-p1ai\nxn\\-\\-80ahdheogk5l\\.xn\\-\\-p1ai\nxn\\-\\-80ahvj9e\\.xn\\-\\-p1ai\nxn\\-\\-80ajbshivpvn2i\\.xn\\-\\-p1ai\nxn\\-\\-80ajjbdhgmudixfjc8c5a9df8b\\.xn\\-\\-p1ai\nxn\\-\\-90acenikpebbdd4f6d\\.xn\\-\\-p1ai\nxn\\-\\-90acjmaltae3acm\\.xn\\-\\-p1acf\nxn\\-\\-90adhhccf5aeewt7j\\.xn\\-\\-p1ai\nxn\\-\\-b1adccayqiirhu\\.xn\\-\\-p1ai\nxn\\-\\-b1ag5cfn\\.xn\\-\\-p1ai\nxn\\-\\-b1agm2d\\.net\nxn\\-\\-c1acygb\\.xn\\-\\-p1ai\nxn\\-\\-d1abj0abs9d\\.in\\.ua\nxn\\-\\-d1aifoe0a9a\\.top\nxn\\-\\-e1aaajzchnkg\\.ru\\.com\nxn\\-\\-e1aahcgdjkg4aeje6j\\.kz\nxn\\-\\-e1agf4c\\.xn\\-\\-80adxhks\nxn\\-\\-e1aggki3c\\.xn\\-\\-80adxhks\nxn\\-\\-h1ahbi\\.com\\.ua\nxn\\-\\-hxazdsfy\\.blogspot\\.com\nxn\\-\\-l1aengat\\.xn\\-\\-p1ai\nxn\\-\\-mhg\\.com\nxn\\-\\-oogle\\-wmc\\.com\nxn\\-\\-q1a\\.xn\\-\\-b1aube0e\\.xn\\-\\-c1acygb\\.xn\\-\\-p1ai\nxnxx\\-n\\.com\nxolodremont\\.ru\nxpert\\.com\\.ua\nxportvusbdriver8i\\.snack\\.ws\nxpresscare\\.ru\nxrp\\-ripple\\.info\nxrus\\.org\nxsion\\.net\nxtraffic\\.plus\nxtrafficplus\\.com\nxtrafficplus\\.online\nxtrafficplus\\.shop\nxtrafficplus\\.xyz\nxtubeporno\\.net\nxvideosbay\\.com\nxxart\\.ru\nxxx\\-treker\\.ru\nxxxhamster\\.me\nxxxtube69\\.com\nxxxvideochat\\.ru\nxz618\\.com\nxzlive\\.com\nyaderenergy\\.ru\nyaminecraft\\.ru\nyeartwit\\.com\nyellowstonevisitortours\\.com\nyes\\-com\\.com\nyes\\-do\\-now\\.com\nyhirurga\\.ru\nykecwqlixx\\.ru\nynymnwbm\\.bloger\\.index\\.hr\nyodse\\.io\nyoga4\\.ru\nyouandcredit\\.ru\nyoubloodyripper\\.com\nyoudesigner\\.kz\nyougame\\.biz\nyougetsignal\\.com\nyoughbould\\.wordpress\\.com\nyouhack\\.info\nyoujizz\\.vc\nyouporn\\-forum\\.ga\nyouporn\\-forum\\.uni\\.me\nyouporn\\-ru\\.com\nyour\\-good\\-links\\.com\nyour\\-tales\\.ru\nyourdesires\\.ru\nyouresponsive\\.com\nyourothersite\\.com\nyoursearch\\.me\nyourserverisdown\\.com\nyoursite\\.com\nyourtraffic\\.club\nyoutoner\\.it\nyoutubedownload\\.org\nyqpc\\.net\nyuarra\\.pluto\\.ro\nyubikk\\.info\nyugk\\.net\nyugo\\-star\\.ru\nyunque\\.pluto\\.ro\nyur\\-p\\.ru\nyurcons\\.pro\nyurgorod\\.ru\nyuristproffi\\.ru\nzagadki\\.in\\.ua\nzahodi2hydra\\.net\nzahvat\\.ru\nzaidia\\.xhost\\.ro\nzaim\\-pod\\-zalog\\-krasnodar\\.ru\nzaimhelp\\.ru\nzajm\\-pod\\-zalog\\-nedvizhimosti\\.ru\nzakazfutbolki\\.com\nzakaznoy\\.com\\.ua\nzakazvzloma\\.com\nzakis\\-azota24\\.ru\nzakisazota\\-official\\.com\nzakon\\-ob\\-obrazovanii\\.ru\nzaloadi\\.ru\nzamolotkom\\.ru\nzapnado\\.ru\nzarabotat\\-na\\-sajte\\.ru\nzarabotat\\-v\\-internete\\.biz\nzarenica\\.net\nzastenchivosti\\.net\nzastroyka\\.org\nzavod\\-gm\\.ru\nzazagames\\.org\nzdesformula\\.ru\nzdesoboi\\.com\nzdm\\-auto\\.com\nzdm\\-auto\\.ru\nzdorovie\\-nogi\\.info\nzebradudka\\.com\nzelena\\-mriya\\.com\\.ua\nzeleznobeton\\.ru\nzerocash\\.msk\\.ru\nzexhgoods\\.xyz\nzhcsapp\\.net\nzhoobintravel\\.com\nzhorapankratov7\\.blogspot\\.com\nzigarettenonl\\.canalblog\\.com\nzigarettenonlinekaufen\\.tumblr\\.com\nzigarettenonlinekaufen1\\.bloog\\.pl\nzigarettenonlinekaufen1\\.blox\\.pl\nzigarettenonlinekaufen2\\.bloog\\.pl\nzigarettenonlinekaufen2\\.drupalgardens\\.com\nzigzog\\.ru\nzlatnajesen\\.com\nzmoda\\.hostreo\\.com\nznakomstva\\-moskva77\\.ru\nznakomstva\\-piter78\\.ru\nznakomstvaonlain\\.ru\nznaniyapolza\\.ru\nzojirushi\\-products\\.ru\nzolotoy\\-lis\\.ru\nzonefiles\\.bid\nzoominfo\\.com\nzot\\.moscow\nzt\\-m\\.ru\nzuchn\\.com\nzverokruh\\-shop\\.cz\nzvetki\\.ru\nzvooq\\.eu\nzvuker\\.net\nzyzzcentral\\.ru\n"
  },
  {
    "path": "referral-spam.lighttpd.conf",
    "content": "# https://github.com/Stevie-Ray/referrer-spam-blocker\n# Updated 2026-03-04 18:14:04\n\n#\n# Lighttpd Referrer Spam Blocker Configuration\n#\n# Include this file in your main lighttpd.conf:\n#\n#     include \"referral-spam.lighttpd.conf\"\n#\n# Make sure mod_rewrite is enabled in your server.modules:\n#\n#     server.modules = (\"mod_rewrite\", ...)\n#\n\n# Block referrer spam\n# Note: Lighttpd has regex size limits, so we split into multiple conditions\n# If you have many domains, consider using mod_magnet for better performance\n\n# Block group 1\n$HTTP[\"referer\"] =~ \"(0\\-0\\.fr|000free\\.us|007agent\\-i\\.fr|00author\\.com|00go\\.com|00it\\.com|01casino\\-x\\.ru|033nachtvandeliteratuur\\.nl|03e\\.info|03p\\.info|0n\\-line\\.tv|1\\-88\\.vip|1\\-99seo\\.com|1\\-best\\-seo\\.com|1\\-free\\-share\\-buttons\\.com|100\\-reasons\\-for\\-seo\\.com|100dollars\\-seo\\.com|100searchengines\\.com|101flag\\.ru|11235813\\.webzdarma\\.cz|12\\-reasons\\-for\\-seo\\.net|12masterov\\.com|12u\\.info|15\\-reasons\\-for\\-seo\\.com|16lv\\.com|1hwy\\.com|1kinobig\\.ru|1kreditzaim\\.ru|1pamm\\.ru|1st\\-urist\\.ru|1webmaster\\.ml|1wek\\.top|1winru\\.ru|1x\\-slot\\.site|1x\\-slots\\.site|1xbet\\-entry\\.ru|1xbetcc\\.com|1xbetonlines1\\.ru|1xbetportugal\\.com|1xbetts\\.ru|1xslot\\-casino\\.online|1xslot\\-casino\\.ru|1xslot\\-casino\\.site|1xslot\\.site|1xslots\\-africa\\.site|1xslots\\-brasil\\.site|1xslots\\-casino\\.site|1xslots\\.africa|1xslots\\.site|2\\-best\\-seo\\.com|2\\-easy\\.xyz|2\\-go\\-now\\.xyz|2015god\\.org|24chasa\\.bg|24h\\.doctor|24videos\\.tv|24x7\\-server\\-support\\.site|256bit\\.by|273\\-fz\\.ru|2ads\\.co\\.uk|2itech\\.ru|2kata\\.ru|2nt\\.ru|2your\\.site|3\\-best\\-seo\\.com|3\\-letter\\-domains\\.net|3dgame3d\\.com|3dracergames\\.com|3waynetworks\\.com|4\\-best\\-seo\\.com|40momporntube\\.com|45en\\.ru|45tahunkhongguan\\.com|4inn\\.ru|4ip\\.su|4istoshop\\.com|4webmasters\\.com|4webmasters\\.org|4xcasino\\.ru|5\\-best\\-seo\\.com|5\\-steps\\-to\\-start\\-business\\.com|5elementov\\.ru|5forex\\.ru|6\\-best\\-seo\\.com|69\\-13\\-59\\.ru|6hopping\\.com|7\\-best\\-seo\\.com|70casino\\.online|76brighton\\.co\\.uk|76brighton\\.com|7kop\\.ru|7makemoneyonline\\.com|7milliondollars\\.com|7ooo\\.ru|7zap\\.com|8\\-best\\-seo\\.com|84lv\\.com|8xv8\\.com|9\\-best\\-seo\\.com|99\\-reasons\\-for\\-seo\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 2\n$HTTP[\"referer\"] =~ \"(QIWI\\.xyz|a\\-elita\\.in\\.ua|a\\-hau\\.mk|a14download\\.com|abacoasale\\.xyz|abaiak\\.com|abbanreddy\\.com|abc\\.xyz|abcdefh\\.xyz|abcdeg\\.xyz|abclauncher\\.com|abiente\\.ru|abovetherivernc\\.com|abtasty\\.com|abuser\\.shop|academia\\-nsk\\.org|acads\\.net|acarreo\\.ru|account\\-my1\\.xyz|accs\\-store\\.ru|actata\\.co|actualremont\\.ru|acunetix\\-referrer\\.com|adanih\\.com|adcash\\.com|addblueoff\\.com\\.ua|adelachrist\\.top|adelly\\.bg|adf\\.ly|adpostmalta\\.com|adrenalinebot\\.net|adrenalinebot\\.ru|adspart\\.com|adtiger\\.tk|adult\\-video\\-chat\\.ru|adultfullhd\\.com|adventureparkcostarica\\.com|advertisefree\\.co\\.uk|adviceforum\\.info|advocatemsk\\.ru|advokateg\\.co|advokateg\\.com|advokateg\\.ru|advokateg\\.xyz|aerodizain\\.com|aerogo\\.com|aerotour\\.ru|affiliate\\-programs\\.biz|affordablewebsitesandmobileapps\\.com|afora\\.ru|afshan\\.shop|agreda\\.pluto\\.ro|agro\\-gid\\.com|agtl\\.com\\.ua|ahecmarket\\.xyz|ahhjf\\.com|ahrefs\\.com|ai\\-seo\\-services\\.com|aibolita\\.com|aidarmebel\\.kz|aimeesblog\\.xyz|aimiot\\.net|aitiman\\.ae|akama\\.com|akmussale\\.xyz|akuhni\\.by|akusherok\\.ru|akvamaster\\.dp\\.ua|alborzan\\.com|albuteroli\\.com|alcobutik24\\.com|alert\\-fdm\\.xyz|alert\\-fjg\\.xyz|alert\\-hgd\\.xyz|alert\\-jdh\\.xyz|alertomall\\.xyz|alessandraleone\\.com|alexsander\\.ch|alfa\\-medosmotr\\.ru|alfa9\\.com|alfabot\\.xyz|alfapro\\.ru|alguiblog\\.online|alibestsale\\.com|aliexpress\\.com|aliexsale\\.ru|alif\\-ba\\-ta\\.com|alinabaniecka\\.pl|alive\\-ua\\.com|aliviahome\\.online|alkanfarma\\.org|all\\-news\\.kz|all4bath\\.ru|all4invest\\.ru|allcredits\\.su|allcryptonews\\.com|alldownload\\.pw|allergick\\.com|allergija\\.com|allfan\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 3\n$HTTP[\"referer\"] =~ \"(allforminecraft\\.ru|allknow\\.info|allkrim\\.com|allmarketsnewdayli\\.gdn|allnews\\.md|allnews24\\.in|allpdfmags\\.net|allproblog\\.com|allsilver925\\.co\\.il|alltheviews\\.com|allvacancy\\.ru|allwomen\\.info|allwrighter\\.ru|alma\\-mramor\\.com\\.ua|alot\\.com|alp\\-rk\\.ru|alphaforum\\.ru|alphaopt24\\.ru|alpharma\\.net|alpinaskate\\.com|altermix\\.ua|alveris\\.ru|am\\-se\\.com|amanda\\-porn\\.ga|amatocanizalez\\.net|amazon\\-seo\\-service\\.com|amoi\\.tn|amoremio\\.by|amos\\-kids\\.ru|amospalla\\.es|amp\\-project\\.pro|amt\\-k\\.ru|amtel\\-vredestein\\.com|amylynnandrews\\.xyz|anabolics\\.shop|anal\\-acrobats\\.hol\\.es|analytics\\-ads\\.xyz|analyze\\-best\\-copywriting\\-services\\.party|analyze\\-extra\\-analytic\\-service\\.stream|ananumous\\.ru|anapa\\-inns\\.ru|andrewancheta\\.com|android\\-style\\.com|android\\-systems\\.ru|android\\-vsem\\.org|android4fun\\.org|androids\\-store\\.com|animalphotos\\.xyz|animebox\\.com\\.ua|animenime\\.ru|annaeydlish\\.top|anrtmall\\.xyz|anti\\-crisis\\-seo\\.com|anticrawler\\.org|antiguabarbuda\\.ru|antonovich\\-design\\.com\\.ua|anydesk\\.site|aosheng\\-tech\\.com|aoul\\.top|apartmentbay\\.ru|apartmentratings\\.com|apilian\\.xyz|apishops\\.ru|apollon\\-market\\-url\\.org|applepharma\\.ru|apteka\\-doc\\.ru|apteka\\-pharm\\.ru|apteka\\.info|apxeo\\.info|arabic\\-poetry\\.com|aramaicmedia\\.org|arate\\.ru|arcadepages\\.com|arcarticle\\.online|architecturebest\\.com|arendadogovor\\.ru|arendakvartir\\.kz|arendas\\.net|arendovalka\\.xyz|argo\\-visa\\.ru|arkansale\\.xyz|arkartex\\.ru|arkkivoltti\\.net|arpe\\.top|arraty\\.altervista\\.org|artblog\\.top|artclipart\\.ru|artdeko\\.info|artefakct\\.com|artpaint\\-market\\.ru|artparquet\\.ru|artpress\\.top|artsmarket\\.xyz|arturs\\.moscow|aruplighting\\.com|asacopaco\\.tk|ascotgoods\\.xyz|asia\\-forum\\.ru|ask\\-yug\\.com|asmxsatadriverin\\.aircus\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 4\n$HTTP[\"referer\"] =~ \"(astimvnc\\.online|asupro\\.com|asynt\\.net|aszokshop\\.xyz|atlant\\-auto\\.info|atlasvkusov\\.ru|atleticpharm\\.org|atley\\.eu\\.pn|atmagroup\\.ru|atoblog\\.online|atyks\\.ru|aucoinhomes\\.com|audiobangout\\.com|ausergrubhof\\.info|australia\\-opening\\-times\\.com|auto\\-b2b\\-seo\\-service\\.com|auto\\-complex\\.by|auto\\-kia\\-fulldrive\\.ru|auto\\-moto\\-elektronika\\.cz|auto\\-news\\-digest\\.ru|auto\\-seo\\-service\\.com|auto\\-seo\\-service\\.org|auto\\-zapchasti\\.org|auto\\.rusvile\\.lt|auto4style\\.ru|autoblog\\.org\\.ua|autobrennero\\.it|autobudpostach\\.club|autofuct\\.ru|autoloans\\.com|autolombard\\-krasnodar\\.ru|automate\\-amazon\\-affiliation\\.com|automobile\\-spec\\.com|autonew\\.biz|autoseo\\-service\\.org|autoseo\\-traffic\\.com|autoseo\\-trial\\-for\\-1\\.com|autoseoservice\\.org|autoseotips\\.com|autoservic\\.by|autotop\\.com\\.ua|autovideobroadcast\\.com|autowebmarket\\.com\\.ua|avcoast\\.com|avek\\.ru|aviapanda\\.ru|aviaseller\\.su|aviav\\.ru\\.com|avitocars\\.ru|aviva\\-limoux\\.com|avkzarabotok\\.com|avkzarabotok\\.info|avon\\-severozapad\\.ru|avtoarenda\\.by|avtocredit\\-legko\\.ru|avtointeres\\.ru|avtorskoe\\-vino\\.ru|avtovolop\\.ru|avtovykup\\.kz|awency\\.com|aworlds\\.com|axcus\\.top|ayerbo\\.xhost\\.ro|ayongoods\\.xyz|azadnegar\\.com|azartclub\\.org|azartniy\\-bonus\\.com|azazu\\.ru|azbuka\\-mo\\.ru|azbukadiets\\.ru|azbukafree\\.com|azlex\\.uz|b\\-buyeasy\\.com|b2b\\-lounge\\.com|bablonow\\.ru|baciakte\\.online|backgroundpictures\\.net|backlinks\\-fast\\-top\\.com|bag77\\.ru|bahisgunceladresi\\.com|baixar\\-musicas\\-gratis\\.com|bala\\.getenjoyment\\.net|baladur\\.ru|balakhna\\.online|balayazh\\.com|balitouroffice\\.com|balkanfarma\\.org|balkanfarma\\.ru|balois\\.worldbreak\\.com|bambi\\.ck\\.ua|banan\\.tv|bankcrediti\\.ru|bankhummer\\.co|bankiem\\.pl|barbarahome\\.top|bard\\-real\\.com\\.ua|bashtime\\.ru|basisches\\-wasser\\.net|batietiket\\.com|batut\\-fun\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 5\n$HTTP[\"referer\"] =~ \"(bausparen\\.bz\\.it|bavariagid\\.de|bavsac\\.com|bazaronline24\\.ru|bbtec\\.net|bdf\\-tracker\\.top|beachtoday\\.ru|beamfall\\.info|beauby\\.ru|beauty\\-clinic\\.ru|beauty\\-lesson\\.com|beclean\\-nn\\.ru|bedroomlighting\\.us|begalka\\.xyz|belinvestdom\\.by|belreferatov\\.net|berdasovivan\\.ru|beremenyashka\\.com|berglion\\.com|berkinan\\.xyz|berlininsl\\.com|berrymall\\.ru|best\\-deal\\-hdd\\.pro|best\\-mam\\.ru|best\\-offer\\-hdd\\-1\\.info|best\\-offer\\-hdd\\-1\\.space|best\\-offer\\-hdd\\-1\\.top|best\\-offer\\-hdd\\.pro|best\\-offer\\-hdd\\.xyz|best\\-ping\\-service\\-usa\\-1\\.info|best\\-ping\\-service\\-usa\\-1\\.space|best\\-ping\\-service\\-usa\\-1\\.top|best\\-ping\\-service\\-usa\\.blue|best\\-ping\\-service\\-usa\\.me|best\\-ping\\-service\\-usa\\.space|best\\-ping\\-service\\-usa\\.top|best\\-ping\\-service\\-usa\\.xyz|best\\-printmsk\\.ru|best\\-seo\\-offer\\.com|best\\-seo\\-service\\.tk|best\\-seo\\-software\\.xyz|best\\-seo\\-solution\\.com|bestbookclub\\.ru|bestchoice\\.cf|bestempresas\\.es|bestfortraders\\.com|besthatcheries\\.com|bestleofferhdd\\.info|bestmobilityscooterstoday\\.com|bestofferfyhdd\\.info|bestofferhddacy\\.info|bestofferhddbyt\\.info|bestofferhddeed\\.info|bestofferhddity\\.info|bestofferifyhdd\\.info|bestofferswalkmydogouteveryday\\.gq|bestorofferhdd\\.info|bestplacetobuyeriacta\\.jw\\.lt|bestvpnrating\\.com|bestwebsiteawards\\.com|bestwebsitesawards\\.com|bet\\-prognoz\\.com|bet\\-winner1\\.ru|bet2much\\.ru|betonka\\.pro|betslive\\.ru|betterhealthbeauty\\.com|bettorschool\\.ru|betune\\.onlinewebshop\\.net|betwinservice\\.com|beyan\\.host\\.sk|bez\\-zabora\\.ru|bezcmexa\\.ru|bezlimitko\\.xyz|bezprostatita\\.com|bezsporno\\.ru|beztuberkuleza\\.ru|bhf\\.vc|bibprsale\\.xyz|bif\\-ru\\.info|bigcities\\.org|biglistofwebsites\\.com|biketank\\.ga|billiard\\-classic\\.com\\.ua|billigerstrom\\.co|billyblog\\.online|bimatoprost\\-careprost\\.com|bimatoprost\\-careprost\\.com\\.ua|bin\\-brokers\\.com|binokna\\.ru|binomo\\.kz|bio\\-japan\\.net|bio\\-market\\.kz|bio\\.trade\\-jp\\.net|bioca\\.org|biplanecentre\\.ru|bird1\\.ru|birzha\\-truda\\.eu|bisign\\.info|bitcoin\\-ua\\.top)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 6\n$HTTP[\"referer\"] =~ \"(bitcoins\\-forum\\.club|bitcoins\\-forum\\.info|bitcoins\\-forum\\.online|bitcoins\\-forum\\.pro|bitcoins\\-live\\.ru|biteg\\.xyz|bitniex\\.com|biz\\-law\\.ru|biznesluxe\\.ru|biznesrealnost\\.ru|biznesschat\\.net|bizru\\.info|bki24\\.info|bkns\\.vn|black\\-friday\\.ga|black\\-tip\\.top|blackhatworth\\.com|blackle\\.com|blackplanet\\.com|blackwitchcraft\\.ru|blancablog\\.online|blavia\\.00author\\.com|bleacherreport\\.com|blockchaintop\\.nl|blockworld\\.ru|blog\\.f00kclan\\.de|blog\\.koorg\\.ru|blog\\.latuti\\.net|blog\\.remote\\-computer\\.de|blog\\.xsk\\.in|blog\\.yam\\.com|blog100\\.org|blog2019\\.top|blog2019\\.xyz|blog4u\\.top|blogarun\\.co|bloggen\\.be|bloggers\\.nl|blogig\\.org|blogking\\.top|bloglag\\.com|blognet\\.top|blogorganictraffic\\.shop|blogos\\.kz|blogping\\.xyz|blogs\\.rediff\\.com|blogseo\\.xyz|blogstar\\.fun|blogster\\.com|blogtotal\\.de|blogtraffic\\.shop|blogua\\.org|blue\\-square\\.biz|bluerobot\\.info|bmusshop\\.xyz|bo\\-vtb24\\.ru|board\\.f00d\\.de|bobba\\.dzaba\\.com|bodybuilding\\-shop\\.biz|boleznikogi\\.com|bolezniorganov\\.ru|boltalko\\.xyz|boltushkiclub\\.ru|bombla\\.org|bonkers\\.name|bonniesblog\\.online|bonus\\-betting\\.ru|bonus\\-spasibo\\-sberbank\\.ru|bonus\\-vtb\\.ru|bonux\\.nextview\\.ru|bookmaker\\-bet\\.com|bookmark4you\\.biz|bookmark4you\\.com|bookmark4you\\.com\\.biz|books\\-top\\.com|boole\\.onlinewebshop\\.net|boost\\-my\\-site\\.com|boost24\\.biz|boostmyppc\\.com|bosefux\\.esy\\.es|bosman\\.pluto\\.ro|bostonline\\.xyz|bot\\-traffic\\.icu|bot\\-traffic\\.xyz|botamycos\\.fr|bottraffic\\.live|bottraffic143\\.xyz|bottraffic329\\.xyz|bottraffic4free\\.club|bottraffic4free\\.host|bottraffic999\\.xyz|bouda\\.kvalitne\\.cz|bowigosale\\.xyz|bpro1\\.top|bradleylive\\.xyz|brains2\\.biz|brakehawk\\.com|brandnewtube\\.com|brandov\\.ru|brateg\\.xyz)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 7\n$HTTP[\"referer\"] =~ \"(brauni\\.com\\.ua|bravica\\.biz|bravica\\.com|bravica\\.me|bravica\\.net|bravica\\.news|bravica\\.online|bravica\\.pro|bravica\\.ru|bravica\\.su|break\\-the\\-chains\\.com|breget74\\.ru|brendbutik\\.ru|briankatrine\\.top|brickmaster\\.pro|brillianty\\.info|bristolhostel\\.com|bristolhotel\\.com|bristolhotel\\.com\\.ua|britneyblog\\.online|brk\\-rti\\.ru|brokergid\\.ru|brooklyn\\-ads\\.com|brooklynsays\\.com|brothers\\-smaller\\.ru|brus\\-vsem\\.ru|brus\\.city|brusilov\\.ru|bsell\\.ru|btcnix\\.com|btt\\-club\\.pro|budilneg\\.xyz|budmavtomatika\\.com\\.ua|budpost\\.com\\.ua|bufetout\\.ru|bugof\\.gq|buhproffi\\.ru|buigas\\.00it\\.com|buildnw\\.ru|buildwithwendy\\.com|buketeg\\.xyz|bukleteg\\.xyz|bulgaria\\-web\\-developers\\.com|buqayy0\\.livejournal\\.com|bur\\-rk\\.ru|burger\\-imperia\\.com|burn\\-fat\\.ga|business\\-online\\-sberbank\\.ru|buttons\\-for\\-website\\.com|buttons\\-for\\-your\\-website\\.com|buy\\-cheap\\-online\\.info|buy\\-cheap\\-pills\\-order\\-online\\.com|buy\\-forum\\.ru|buy\\-meds24\\.com|buyantiviralwp\\.com|buyessay3\\.blogspot\\.ru|buyessaynow\\.biz|buyessayonline19\\.blogspot\\.ru|buyfriend\\.ru|buyk\\.host\\.sk|buynorxx\\.com|buypharmacydrug\\.com|buypillsonline24h\\.com|buypillsorderonline\\.com|buypuppies\\.ca|buyscabiescream\\.com|buytizanidineonline\\.blogspot\\.com|buytizanidineonlinenoprescription\\.blogspot\\.com|buyviagraa\\.blogspot\\.com|bvps8\\.com|bycontext\\.com|byme\\.se|bytimedance\\.ru|c\\-english\\.ru|c2bit\\.hk|californianews\\.cf|call\\-of\\-duty\\.info|callejondelpozo\\.es|calvet\\.altervista\\.org|cancerfungus\\.com|candida\\-international\\.blogspot\\.com|candida\\-society\\.org\\.uk|cannazon\\-market\\.org|canoncdriverq3\\.pen\\.io|canyougethighofftizanidine\\.blogspot\\.com|canzoni\\.ru|carabela\\.com\\.do|carbon\\-linger\\-hierarchy\\-suntan\\.top|carder\\.me|carder\\.tv|carders\\.ug|cardiosport\\.com\\.ua|cardsdumps\\.com|cardsharp1\\.ru|cardul\\.ru|carezi\\.com|carfax\\.com\\.ua|carivka\\.com\\.ua|carloans\\.com|carscrim\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 8\n$HTTP[\"referer\"] =~ \"(carsdined\\.org|carsnumber\\.com|carson\\.getenjoyment\\.net|carsoncitypizza\\.com|cartechnic\\.ru|casablancamanor\\.co\\.za|cashforum\\.cc|casino\\-top3\\.fun|casino\\-top3\\.online|casino\\-top3\\.ru|casino\\-top3\\.site|casino\\-top3\\.space|casino\\-top3\\.website|casino\\-v\\.site|casino\\-vulkane\\.com|casino\\-x\\-now\\.ru|casino\\-x\\.host|casinosbewertung\\.de|casinox\\-jp\\.com|castingbank\\.ru|catalogs\\-parts\\.com|catherinemill\\.xyz|catterybengal\\.com|cattyhealth\\.com|cauxmall\\.xyz|cayado\\.snn\\.gr|cazino\\-v\\.online|cazino\\-v\\.ru|cbcseward\\.com|cbox\\.ws|ccfullzshop\\.com|celestepage\\.xyz|celldog\\.ru|cenokos\\.ru|cenoval\\.ru|centre\\-indigo\\.org\\.ua|centrumcoachingu\\.com|cercacamion\\.it|certifywebsite\\.win|cezartabac\\.ro|cfsrating\\.sonicwall\\.com|cgi2\\.nintendo\\.co\\.jp|chainii\\.ru|channel\\-badge\\-betray\\-volcanic\\.com|chastnoeporno\\.com|chat\\.ru|chatmall\\.xyz|chatrazvrat\\.ru|chatroulette\\.life|chcu\\.net|cheap\\-trusted\\-backlinks\\.com|cheapkeys\\.ovh|cheappills24h\\.com|chee\\-by\\.biz|chelyabinsk\\.dienai\\.ru|chelyabinsk\\.xrus\\.org|cherrypointplace\\.ca|cherubinimobili\\.it|chimiver\\.info|chinese\\-amezon\\.com|chip35\\.ru|chipmp3\\.ru|chizhik\\-2\\.ru|chomexun\\.com|choosecuisine\\.com|ci\\.ua|ciarustde\\.online|cigarpass\\.com|cilolamall\\.xyz|cinemaenergy\\-hd\\.ru|ciproandtizanidine\\.blogspot\\.com|citizenclsdriveri7\\.pen\\.io|cityadspix\\.com|citybur\\.ru|cityreys\\.ru|civilwartheater\\.com|clarithromycin500mg\\.com|clash\\-clans\\.ru|classicakuhni\\.ru|cleandom\\.in\\.ua|cleaningservices\\.kiev\\.ua|clicksor\\.com|climate\\.by|clmforexeu\\.com|clothing\\-deal\\.club|cloudsendchef\\.com|club\\-lukojl\\.ru|club\\-musics\\.ru|club\\-samodelkin\\.ru|cmd\\.kz|cmrrsale\\.xyz|cmseshop\\.xyz|cobaltpro\\.ru|cocyq\\.inwtrade\\.com|coderstate\\.com|codq\\.info|codysbbq\\.com|coeus\\-solutions\\.de|coffeemashiny\\.ru|coinswitch\\.cash)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 9\n$HTTP[\"referer\"] =~ \"(coldfilm\\.ru|coleso\\.md|collectinviolity\\.com|collegeessay19\\.blogspot\\.ru|columb\\.net\\.ua|cometorussia\\.net|comissionka\\.net|commentag\\.com|commerage\\.ru|comp\\-pomosch\\.ru|compliance\\-alex\\.top|compliance\\-alex\\.xyz|compliance\\-alexa\\.top|compliance\\-alexa\\.xyz|compliance\\-andrew\\.top|compliance\\-andrew\\.xyz|compliance\\-barak\\.top|compliance\\-barak\\.xyz|compliance\\-brian\\.top|compliance\\-brian\\.xyz|compliance\\-checker\\-7\\.info|compliance\\-don\\.top|compliance\\-don\\.xyz|compliance\\-donald\\.xyz|compliance\\-elena\\.top|compliance\\-elena\\.xyz|compliance\\-fred\\.top|compliance\\-fred\\.xyz|compliance\\-george\\.top|compliance\\-george\\.xyz|compliance\\-irvin\\.top|compliance\\-irvin\\.xyz|compliance\\-ivan\\.top|compliance\\-ivan\\.xyz|compliance\\-jack\\.top|compliance\\-jane\\.top|compliance\\-jess\\.top|compliance\\-jessica\\.top|compliance\\-john\\.top|compliance\\-josh\\.top|compliance\\-julia\\.top|compliance\\-julianna\\.top|compliance\\-margo\\.top|compliance\\-mark\\.top|compliance\\-mary\\.top|compliance\\-nelson\\.top|compliance\\-olga\\.top|compliance\\-viktor\\.top|compliance\\-walt\\.top|compliance\\-walter\\.top|compliance\\-willy\\.top|computer\\-remont\\.ru|comuneshop\\.xyz|conciergegroup\\.org|concretepol\\.com|connectikastudio\\.com|constanceonline\\.top|constantaservice\\.net|construmac\\.com\\.mx|contextualyield\\.com|cookie\\-law\\-enforcement\\-aa\\.xyz|cookie\\-law\\-enforcement\\-bb\\.xyz|cookie\\-law\\-enforcement\\-cc\\.xyz|cookie\\-law\\-enforcement\\-dd\\.xyz|cookie\\-law\\-enforcement\\-ee\\.xyz|cookie\\-law\\-enforcement\\-ff\\.xyz|cookie\\-law\\-enforcement\\-gg\\.xyz|cookie\\-law\\-enforcement\\-hh\\.xyz|cookie\\-law\\-enforcement\\-ii\\.xyz|cookie\\-law\\-enforcement\\-jj\\.xyz|cookie\\-law\\-enforcement\\-kk\\.xyz|cookie\\-law\\-enforcement\\-ll\\.xyz|cookie\\-law\\-enforcement\\-mm\\.xyz|cookie\\-law\\-enforcement\\-nn\\.xyz|cookie\\-law\\-enforcement\\-oo\\.xyz|cookie\\-law\\-enforcement\\-pp\\.xyz|cookie\\-law\\-enforcement\\-qq\\.xyz|cookie\\-law\\-enforcement\\-rr\\.xyz|cookie\\-law\\-enforcement\\-ss\\.xyz|cookie\\-law\\-enforcement\\-tt\\.xyz|cookie\\-law\\-enforcement\\-uu\\.xyz|cookie\\-law\\-enforcement\\-vv\\.xyz|cookie\\-law\\-enforcement\\-ww\\.xyz|cookie\\-law\\-enforcement\\-xx\\.xyz|cookie\\-law\\-enforcement\\-yy\\.xyz|cookie\\-law\\-enforcement\\-zz\\.xyz|cookielawblog\\.wordpress\\.com|cookingmeat\\.ru|cool\\-mining\\.com|cool\\-wedding\\.net|coop\\-gamers\\.ru|copblock\\.org|copyrightclaims\\.org|copyrightinstitute\\.org|coral\\-info\\.com|cosmediqueresults\\.com|countravel\\.net|covadhosting\\.biz|covblog\\.top|coverage\\-my\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 10\n$HTTP[\"referer\"] =~ \"(covetnica\\.com|covid\\-schutzmasken\\.de|cowblog\\.fr|cp24\\.com\\.ua|cpnbshop\\.xyz|cranly\\.net|crazy\\-mining\\.org|crd\\.clan\\.su|creams\\.makeforum\\.eu|credit\\-card\\-tinkoff\\.ru|credit\\-cards\\-online24\\.ru|credit\\.co\\.ua|creditmoney\\.com\\.ua|crest\\-poloski\\.ru|crest3d\\.ru|crirussian\\.ru|cruiseraf\\.net|crypto\\-bear\\.com|crypto\\-bears\\.com|crypto\\-mining\\.club|crypto\\-wallets\\.org|crypto1x1\\.com|crystalslot\\.com|cubook\\.supernew\\.org|curenaturalicancro\\.com|curenaturalicancro\\.nl|customsua\\.com\\.ua|cutalltheshit\\.com|cvety24\\.by|cvta\\.xyz|cxpromote\\.com|cyber\\-monday\\.ga|cyclobenzaprinevstizanidine\\.blogspot\\.com|cymbaltaandtizanidine\\.blogspot\\.com|cyprusbuyproperties\\.com|czcedu\\.com|dacha\\-svoimi\\-rukami\\.com|dailyblog\\.xyz|dailyrank\\.net|dailyseo\\.xyz|dailystorm\\.ru|dailystrength\\.org|dailytraffic\\.shop|dame\\-ns\\.kz|damedingel\\.ya\\.ru|damianis\\.ru|danashop\\.ru|danceuniverse\\.ru|danhale\\.xyz|dantk\\.kz|daptravel\\.com|darcysassoon\\.top|darkbooks\\.org|darknet\\-hydra\\-onion\\.biz|darknet\\.sb|darknetsitesguide\\.com|darleneblog\\.online|darodar\\.com|datsun\\-do\\.com|dav\\.kz|davilaonline\\.shop|dawlenie\\.com|dbmkfhqk\\.bloger\\.index\\.hr|dbutton\\.net|dcdcapital\\.com|ddlmega\\.net|ddpills\\.com|de\\.zapmeta\\.com|dear\\-diary\\.ru|deart\\-13\\.ru|deda\\-moroza\\-zakaz\\.ru|deirdre\\.top|dekorkeramik\\.ru|delayreferat\\.ru|delfin\\-aqua\\.com\\.ua|delo\\.fund|deluxewatch\\.su|demenageur\\.com|den\\-noch24\\.ru|dengi\\-v\\-kredit\\.in\\.ua|denisecarey\\.top|deniseconnie\\.top|deniven\\.1bb\\.ru|dent\\-home\\.ru|dentuled\\.net|depositfiles\\-porn\\.com|depositfiles\\-porn\\.ga|dermatovenerologiya\\.com|deryie\\.com|descargar\\-musica\\-gratis\\.net|descargar\\-musicas\\-gratis\\.com|design\\-lands\\.ru|designdevise\\.com|detailedvideos\\.com|detalizaciya\\-tut\\.biz|detective01\\.ru|detki\\-opt\\.ru|detoolzon\\.xyz|detskie\\-konstruktory\\.ru|detskie\\-zabavi\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 11\n$HTTP[\"referer\"] =~ \"(deutsche\\-poesie\\.com|dev\\-seo\\.blog|devochki\\-video\\.ru|dezeypmall\\.xyz|dgdsoutlet\\.xyz|diarioaconcagua\\.com|diatelier\\.ru|dicru\\.info|diebesten\\.co|dienai\\.ru|dienmaytot\\.xyz|diesel\\-parts28\\.ru|digest\\-project\\.ru|digilander\\.libero\\.it|digital\\-video\\-processing\\.com|digitalfaq\\.com|dimkino\\.ru|dinkolove\\.ya\\.ru|diplom\\-nk\\.com|diplomas\\-ru\\.com|dipstar\\.org|directrev\\.com|discounttaxi\\.kz|discover\\-prior\\-full\\-stack\\-services\\.party|discover\\-prior\\-ppc\\-service\\.party|discover\\-top\\-seo\\-service\\.review|distonija\\.com|divan\\-dekor\\.com\\.ua|dividendo\\.ru|diy\\-handmade\\-ideas\\.com|djekxa\\.ru|djonwatch\\.ru|djstools\\.com|dktr\\.ru|dldsshop\\.xyz|dlya\\-android\\.org|dms\\-sw\\.ru|dna\\-sklad\\.ru|dnepr\\-avtospar\\.com\\.ua|dneprsvet\\.com\\.ua|dnmetall\\.ru|docs4all\\.com|docsarchive\\.net|docsportal\\.net|docstoc\\.com|doctmalls\\.xyz|doctornadezhda\\.ru|documentbase\\.net|documentserver\\.net|documentsite\\.net|dodge\\-forum\\.eu|doeco\\.ru|doggyhealthy\\.com|dogovorpodryada\\.ru|dogshowsonice\\.com|dogsrun\\.net|dojki\\-devki\\.ru|dojki\\-hd\\.com|doktoronline\\.no|dokumentalkino\\.net|dom\\-international\\.ru|domain\\-tracker\\.com|domashneeruporno\\.com|domashniy\\-hotel\\.ru|domashniy\\-recepti\\.ru|dombestofferhdd\\.info|domcran\\.net|domik\\-derevne\\.ru|dominateforex\\.ml|domination\\.ml|dominterior\\.org|dommdom\\.com|domovozik\\.ru|domoysshop\\.ru|dompechey\\.by|domsadiogorod\\.ru|donvito\\.unas\\.cz|doreenblog\\.online|doska\\-vsem\\.ru|dostavka\\-v\\-krym\\.com|dostavka\\-v\\-ukrainu\\.ru|dosug\\-lux\\.ru|dosugrostov\\.site|download\\-of\\-the\\-warez\\.blogspot\\.com|downloadkakaotalk\\.com|downloadmefiranaratb1972\\.xpg\\.com\\.br|doxyporno\\.com|doxysexy\\.com|doyouknowtheword\\-flummox\\.ml|dprkboards\\.com|draniki\\.org|dreamland\\-bg\\.com|dreams\\-works\\.net|drev\\.biz|driving\\.kiev\\.ua|drugs\\-no\\-rx\\.info|drugspowerstore\\.com|drugstoreforyou\\.com|drupa\\.com|druzhbany\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 12\n$HTTP[\"referer\"] =~ \"(druzhininevgeniy63\\.blogspot\\.com|dspautomations\\.com|dstroy\\.su|duitbux\\.info|dumpsccshop\\.com|dvd\\-famille\\.com|dvk\\-stroi\\.ru|dvr\\.biz\\.ua|dzinerstudio\\.com|e\\-avon\\.ru|e\\-buyeasy\\.com|e\\-collantes\\.com|e\\-commerce\\-seo\\.com|e\\-commerce\\-seo1\\.com|e\\-kwiaciarz\\.pl|e\\-stroymart\\.kz|e2click\\.com|eandsgallery\\.com|eaptekaplus\\.ru|earn\\-from\\-articles\\.com|earnian\\-money\\.info|earnity\\-money\\.info|easycommerce\\.cf|easync\\.io|easytuningshop\\.ru|eavuinsr\\.online|ecblog\\.xyz|ecommerce\\-seo\\.com|ecommerce\\-seo\\.org|ecomp3\\.ru|econom\\.co|ecookna\\.com\\.ua|edakgfvwql\\.ru|edelstahlschornstein\\-123\\.de|editmedios\\.com|edmed\\-sonline\\.com|ednetstore\\.xyz|edshopping\\.net|eduardoluis\\.com|education\\-cz\\.ru|educhess\\.ru|edudocs\\.net|eduinfosite\\.com|eduserver\\.net|eecz\\.org|eets\\.net|ege\\-essay\\.ru|ege\\-krasnoyarsk\\.ru|egovaleo\\.it|egvar\\.net|ek\\-invest\\.ru|ekatalog\\.xyz|ekaterinburg\\.xrus\\.org|ekbspravka\\.ru|eko\\-gazon\\.ru|ekobata\\.ru|ekoproekt\\-kr\\.ru|ekspertmed\\.com|ekto\\.ee|el\\-nation\\.com|elainasblog\\.xyz|eldoradorent\\.az|election\\.interferencer\\.ru|electric\\-blue\\-industries\\.com|electricwheelchairsarea\\.com|electro\\-prom\\.com|elegante\\-vitrage\\.ru|elektrikovich\\.ru|elektrischezi\\.canalblog\\.com|elektrischeziga\\.livejournal\\.com|elektrischezigarette1\\.blog\\.pl|elektrischezigarette1\\.onsugar\\.com|elektrischezigarette2\\.devhub\\.com|elektrischezigarette2\\.onsugar\\.com|elektrischezigarettekaufen2\\.cowblog\\.fr|elektrischezigaretten1\\.blogse\\.nl|elektrischezigaretten2\\.beeplog\\.com|elektronischezi\\.livejournal\\.com|elektronischezigarette2\\.mex\\.tl|elektronischezigarettekaufen1\\.beeplog\\.com|elektronischezigarettekaufen1\\.myblog\\.de|elektronischezigarettekaufen2\\.tumblr\\.com|elektrozigarette1\\.dreamwidth\\.org|elektrozigarette2\\.webs\\.com|elektrozigarette2\\.wordpressy\\.pl|elektrozigarettekaufen1\\.devhub\\.com|elektrozigarettekaufen2\\.blogse\\.nl|elektrozigaretten1\\.postbit\\.com|elektrozigaretten1\\.tumblr\\.com|elektrozigaretten1\\.webs\\.com|elektrozigaretten2\\.yn\\.lt|elementspluss\\.ru|elenatkachenko\\.com\\.ua|elentur\\.com\\.ua|elidelcream\\.weebly\\.com|elitesportsadvisor\\.com|elizabethbruno\\.top|elkacentr\\.ru|ellemarket\\.com|elmifarhangi\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 13\n$HTTP[\"referer\"] =~ \"(eloconcream\\.blogspot\\.com|eloxal\\.ru|elvel\\.com\\.ua|embedle\\.com|emctestlab\\.ru|emerson\\-rus\\.ru|emicef\\.com|empire\\-market\\.org|empire\\-market\\.xyz|empiremarket\\-link\\.org|empiremarketlink24\\.com|empirestuff\\.org|empis\\.magix\\.net|encmbtia\\.online|energomash\\.net|energy\\-ua\\.com|energydiet\\-info\\.ru|energydiet24\\.ru|energysexy\\.com|enginebay\\.ru|englishdictionaryfree\\.com|englishtopic\\.ru|enter\\-unicredit\\.ru|entgetadsincome\\.info|envistore\\.xyz|eonpal\\.com|epcpolo\\.com|epicdiving\\.com|eraglass\\.com|erank\\.eu|eredijovon\\.com|ereko\\.ru|erias\\.xyz|eric\\-artem\\.com|ericshome\\.store|erinhome\\.xyz|ero\\-video\\-chat\\.org|erofus\\.online|eropho\\.com|eropho\\.net|erot\\.co|erotag\\.com|eroticheskij\\-video\\-chat\\.ru|erotikstories\\.ru|es\\-pfrf\\.ru|es5\\.com|escort\\-russian\\.com|escortplius\\.com|eshop\\.md|eskei83\\.com|esnm\\.ru|esoterikforum\\.at|essaytags\\.com|estdj\\.com|este\\-line\\.com\\.ua|etairikavideo\\.gr|etehnika\\.com\\.ua|etotupo\\.ru|ets\\-2\\-mod\\.ru|etsfshop\\.xyz|eu\\-cookie\\-law\\-enforcement\\-4\\.xyz|eu\\-cookie\\-law\\-enforcement\\-5\\.xyz|eu\\-cookie\\-law\\-enforcement\\-6\\.xyz|eu\\-cookie\\-law\\-enforcement\\-7\\.xyz|eu\\-cookie\\-law\\-enforcement1\\.xyz|eu\\-cookie\\-law\\-enforcement2\\.xyz|eu\\-cookie\\-law\\.blogspot\\.com|eu\\-cookie\\-law\\.info|eurocredit\\.xyz|euromasterclass\\.ru|euronis\\-free\\.com|europages\\.com\\.ru|europeanwatches\\.ru|eurosamodelki\\.ru|euroskat\\.ru|evaashop\\.ru|event\\-tracking\\.com|eventiyahall\\.ru|evreuxshop\\.xyz|exchangeit\\.gq|exchanges\\-bet\\.com|exclusive\\-profit\\.com|exdocsfiles\\.com|execedmall\\.xyz|executehosting\\.com|exotic\\-video\\-chat\\.ru|expdom\\.com|expediacustomerservicenumber\\.online|expert\\-find\\.ru|expertnaya\\-ocenka\\.ru|explore\\-prior\\-web\\-service\\.review|express\\-vyvoz\\.ru|expresstoplivo\\.ru|extener\\.com|extener\\.org|extrabot\\.com|extremez\\.net|eyes\\-on\\-you\\.ga|eyessurgery\\.ru|ez8motelseaworldsandiego\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 14\n$HTTP[\"referer\"] =~ \"(ezigarettekaufen\\.myblog\\.de|ezigarettekaufen1\\.hpage\\.com|ezigarettekaufen2\\.blox\\.pl|ezigarettekaufen2\\.mpbloggar\\.se|ezigarettekaufen2\\.yolasite\\.com|ezigarettenkaufen1\\.deviantart\\.com|ezigarettenkaufen1\\.pagina\\.gr|ezigarettenkaufen2\\.dreamwidth\\.org|ezigarettenshop1\\.yolasite\\.com|ezigarettenshop2\\.myblog\\.de|ezigarettenshop2\\.postbit\\.com|ezigaretteshop\\.webs\\.com|ezigaretteshop2\\.mywapblog\\.com|ezigaretteshop2\\.vefblog\\.net|ezofest\\.sk|ezrvrentals\\.com|f\\-loaded\\.de|f\\-online\\.de|f00kclan\\.de|f012\\.de|f07\\.de|f0815\\.de|f1nder\\.org|facebook\\-mobile\\.xyz|fainaidea\\.com|faithe\\.top|falco3d\\.com|falcoware\\.com|family1st\\.ca|familyholiday\\.ml|familyphysician\\.ru|fanoboi\\.com|fartunabest\\.ru|fashion\\-mk\\.net|fashiong\\.ru|fashionindeed\\.ml|fast\\-wordpress\\-start\\.com|fastgg\\.net|fatrizscae\\.online|favorcosmetics\\.com|favoritemoney\\.ru|favoritki\\-msk\\.ru|favornews\\.com|fazika\\.ru|fba\\-mexico\\.com|fbdownloader\\.com|fbfreegifts\\.com|fc\\-007\\.com|fealq\\.com|feargames\\.ru|feedback\\.sharemyfile\\.ru|feedouble\\.com|feedouble\\.net|feel\\-planet\\.com|feeriaclub\\.ru|feiacmr\\.shop|feminist\\.org\\.ua|femmesdenudees\\.com|fenoyl\\.batcave\\.net|ferieboligkbh\\.dk|fermersovet\\.ru|fetishinside\\.com|fialka\\.tomsk\\.ru|fidalsa\\.de|fierrohack\\.ru|figensahin\\.com|filesclub\\.net|filesdatabase\\.net|filesvine\\.com|film\\-one\\.ru|filmetricsasia\\.com|filmgo\\.ru|filmidivx\\.com|films2018\\.com|filter\\-ot\\-zheleza\\.ru|financial\\-simulation\\.com|finansov\\.info|findacheaplawyers\\.com|finder\\.cool|findercarphotos\\.com|fineblog\\.top|finstroy\\.net|finteks\\.ru|firma\\-legion\\.ru|firmgeo\\.xyz|firstblog\\.top|fit\\-discount\\.ru|fitness\\-video\\.net|fitodar\\.com\\.ua|fiuagts\\.online|fiuxy\\.com|fiverr\\.com|fix\\-website\\-errors\\.com|fizika\\.tv|flash4fun\\.com|flavors\\.me|flex4launch\\.ru|flexderek\\.com|floating\\-share\\-buttons\\.com|flooringinstallation\\-edmonton\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 15\n$HTTP[\"referer\"] =~ \"(flowersbazar\\.com|flowertherapy\\.ru|flowwwers\\.com|flprog\\.com|flyblog\\.xyz|flytourisme\\.org|fm\\-upgrade\\.ru|fmgrupe\\.it|foojo\\.net|for\\-marketersy\\.info|for\\-your\\.website|forensicpsychiatry\\.ru|forex\\-indextop20\\.ru|forex\\-procto\\.ru|forex\\.osobye\\.ru|forex21\\.ru|forexgb\\.ru|forexunion\\.net|forminecrafters\\.ru|forms\\-mtm\\.ru|forpostlock\\.ru|forsex\\.info|fortwosmartcar\\.pw|forum\\-engineering\\.ru|forum\\.poker4life\\.ru|forum\\.tvmir\\.org|forum20\\.smailik\\.org|forum69\\.info|forums\\.toucharcade\\.com|fotoxxxru\\.com|foxinsocks\\.ru|foxjuegos\\.com|foxtechfpv\\.com|foxweber\\.com|fpclub\\.ru|fr\\.netlog\\.com|francaise\\-poesie\\.com|frankofficial\\.ru|frauplus\\.ru|free\\-fb\\-traffic\\.com|free\\-fbook\\-traffic\\.com|free\\-floating\\-buttons\\.com|free\\-games\\-download\\.falcoware\\.com|free\\-share\\-buttons\\-aaa\\.xyz|free\\-share\\-buttons\\-bbb\\.xyz|free\\-share\\-buttons\\-ccc\\.xyz|free\\-share\\-buttons\\-ddd\\.xyz|free\\-share\\-buttons\\-eee\\.xyz|free\\-share\\-buttons\\-fff\\.xyz|free\\-share\\-buttons\\.blogspot\\.com|free\\-share\\-buttons\\.co|free\\-share\\-buttons\\.com|free\\-share\\-buttons\\.top|free\\-social\\-buttons\\-aaa\\.xyz|free\\-social\\-buttons\\-bbb\\.xyz|free\\-social\\-buttons\\-ccc\\.xyz|free\\-social\\-buttons\\-ddd\\.xyz|free\\-social\\-buttons\\-eee\\.xyz|free\\-social\\-buttons\\-fff\\.xyz|free\\-social\\-buttons\\-hhh\\.xyz|free\\-social\\-buttons\\-iii\\.xyz|free\\-social\\-buttons\\.com|free\\-social\\-buttons\\.org|free\\-social\\-buttons\\.xyz|free\\-social\\-buttons1\\.xyz|free\\-social\\-buttons2\\.xyz|free\\-social\\-buttons3\\.xyz|free\\-social\\-buttons4\\.xyz|free\\-social\\-buttons5\\.xyz|free\\-social\\-buttons6\\.xyz|free\\-social\\-buttons7\\.xyz|free\\-traffic\\.xyz|free\\-video\\-chat\\.ru|free\\-video\\-tool\\.com|free\\-website\\-traffic\\.com|freeasecret\\.com|freenode\\.info|freeseedsonline\\.com|freetangodownload\\.com|freewebs\\.com|freewhatsappload\\.com|freewlan\\.info|freshberry\\.com\\.ua|freshnails\\.com\\.ua|front\\.ru|front\\.to|fsalas\\.com|fsin\\-pokypka\\.ru|ftns\\.ru|fuck\\-paid\\-share\\-buttons\\.xyz|fuel\\-gas\\.com|fullzdumps\\.cc|fungirlsgames\\.net|funnypica\\.com|furniture\\-ukraine\\.com|furniturehomewares\\.com|futbolkisales\\.ru|fvetgoods\\.xyz|fxtips\\.ru|g7m\\.pl)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 16\n$HTTP[\"referer\"] =~ \"(gabeshop\\.ru|gabysuniqueboutique\\.com|gael\\-s\\.ru|gagrasector\\.ru|galaxy\\-family\\.ru|galaxyflowers\\.ru|galblog\\.top|galeon\\.com|gamblingpp\\.ru|game\\-mmorpg\\.net|game\\-top\\.su|game300\\.ru|games\\.kolossale\\.ru|gammatraffic\\.com|gandikapper\\.ru|gaokr\\.xyz|gap\\-search\\.com|garantprava\\.com|gardene\\.ru|gasvleningrade\\.ru|gatwick\\.ru|gays\\-video\\-chat\\.ru|gaz\\-voshod\\.ru|gazel\\-72\\.ru|gazobeton\\-p\\.com\\.ua|gazoblok\\.net\\.ua|gbh\\-invest\\.ru|gcmx\\.net|gcup\\.ru|gdcentre\\.ru|gearcraft\\.us|gearsadspromo\\.club|gelezki\\.com|geliyballon\\.ru|gelstate\\.ru|generalporn\\.org|genericlowlatencyasiodriverhq\\.aircus\\.com|geniusfood\\.co\\.uk|gentamicineyedrops\\.blogspot\\.com|georgeblog\\.online|gepatit\\-info\\.top|germes\\-trans\\.com|get\\-best\\-copywriting\\-service\\.stream|get\\-clickir\\.info|get\\-clickize\\.info|get\\-free\\-social\\-traffic\\.com|get\\-free\\-traffic\\-now\\.com|get\\-more\\-freeen\\-visitors\\.info|get\\-more\\-freeer\\-visitors\\.info|get\\-more\\-freeish\\-visitors\\.info|get\\-more\\-freeize\\-visitors\\.info|get\\-more\\-freele\\-visitors\\.info|get\\-morebit\\-free\\-visitors\\.info|get\\-prime\\-seo\\-services\\.review|get\\-seo\\-help\\.com|get\\-your\\-social\\-buttons\\.info|getaadsincome\\.info|getadsincomeian\\.info|getadsincomely\\.info|getadsincomeof\\.info|getbottraffic4free\\.club|getbottraffic4free\\.host|getbottraffic4free\\.xyz|getbytadsincome\\.info|getfy\\-click\\.info|getism\\-more\\-free\\-visitors\\.info|getity\\-more\\-free\\-visitors\\.info|getityadsincome\\.info|getive\\-more\\-free\\-visitors\\.info|getlamborghini\\.ga|getoutofdebtfree\\.org|getprismatic\\.com|getpy\\-click\\.info|getpy\\-more\\-free\\-visitors\\.info|getrichquick\\.ml|getrichquickly\\.info|getyourprofit\\.net|gevciamst\\.online|gezlev\\.com\\.ua|gfaq\\.ru|ghazel\\.ru|ghernnqr\\.skyrock\\.com|gheus\\.altervista\\.org|ghostvisitor\\.com|gidonline\\.one|gidro\\-partner\\.ru|giftbig\\.ru|girlporn\\.ru|girls\\-ufa\\.ru|girlsatgames\\.ru|gk\\-atlant\\.info|gk\\-casino\\.fun|gk\\-casino\\.online|gk\\-casino\\.ru|gk\\-casino\\.site|gk\\-casino\\.space|gk\\-casino\\.website|gkvector\\.ru|glall\\.ru|glass\\-msk\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 17\n$HTTP[\"referer\"] =~ \"(glavprofit\\.ru|glcomputers\\.ru|glktfw\\.net|global\\-smm\\.ru|globalscam\\.ga|globatur\\.ru|globetrotting\\-culture\\.ru|glogow\\.pl|glopages\\.ru|go2album\\.com|gobongo\\.info|goforexvps\\.com|gogps\\.me|gojiberriess\\.apishops\\.ru|gok\\-kasten\\.net|goldandcard\\.ru|golden\\-catalog\\.pro|golden\\-praga\\.ru|goldenggames\\.com|goldvaultmetals\\.com|golmau\\.host\\.sk|golyedevushki\\.com|gonextmedia\\.com|good\\-potolok\\.ru|goodbyecellulite\\.ru|goodcoffeepremium\\.com|goodhumor24\\.com|goodnightjournal\\.com|goodprotein\\.ru|google\\-liar\\.ru|googlefeud\\.com|googlemare\\.com|googlsucks\\.com|gorabagrata\\.ru|gorgaz\\.info|goroda\\-vsego\\-mira\\.ru|gorodservis\\.ru|gosreg\\.amchs\\.ru|gototal\\.co\\.nz|gourcy\\.altervista\\.org|goyua\\.xyz|gq\\-catalog\\.gq|graceonline\\.shop|grafaman\\.ru|grand\\-chlen\\.ru|graphid\\.com|gratuitbaise\\.com|greatblog\\.top|greatgrace\\.ru|greentechsy\\.com|grizzlysgrill\\.com|groshi\\-kredut\\.com\\.ua|groupmoney\\.ru|growmyfunds\\.ca|growshop\\.es|growth\\-hackingan\\.info|growth\\-hackingead\\.info|growth\\-hackingeads\\.info|growth\\-hackingor\\.info|growth\\-hackingy\\.info|grupografico\\-pilar\\.com\\.ar|gruzchiki24\\.ru|gsbs\\.com\\.ua|gsmlab\\.pl|gsmtlf\\.ru|gta\\-club\\.ru|gta\\-top\\.ru|gttpsale\\.xyz|guardlink\\.com|guardlink\\.org|guge\\.io|guidetopetersburg\\.com|gungamesz\\.com|guruofcasino\\.com|gwhwpxbw\\.bloger\\.index\\.hr|gxcb\\.net|h2monline\\.com|hacktougroup\\.ru|hagirkblog\\.space|hahashka\\.ru|haikuware\\.com|halat\\.xyz|halefa\\.com|hamyshop\\.xyz|handicapvansarea\\.com|handicapvantoday\\.com|handsandlegs\\.ru|hanink\\.biz\\.ly|hankspring\\.xyz|happysong\\.ru|hard\\-porn\\.mobi|hardcore\\.anzwers\\.net|hardosale\\.xyz|harpro\\.net|havepussy\\.com|hawaiisurf\\.com|hazardky\\.net|hd1080film\\.ru|hd720kino\\.ru|hdfreeporno\\.net)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 18\n$HTTP[\"referer\"] =~ \"(hdhc\\.site|hdmoviecamera\\.net|hdmoviecams\\.com|hdmoviecams\\.net|hdsmartvideoreg\\.ru|headpharmacy\\.com|healbio\\.ru|healgastro\\.com|healing\\-dysplasia\\.ru|healmytrauma\\.info|healthhacks\\.ru|heeha\\.net|hem\\.passagen\\.se|hentai\\-manga\\.porn|heroero\\.com|hexometer\\.com|hifidesign\\.ru|hilaryblog\\.top|hill\\-accent\\-withdraw\\-sentiment\\.info|himandmall\\.xyz|hit\\-kino\\.ru|hitree\\.shop|hitsbox\\.info|hiwibyh\\.bugs3\\.com|hiwpro\\.xyz|hkdiiohi\\.skyrock\\.com|hkjrsale\\.xyz|hmmm\\.cz|hmywwogw\\.bloger\\.index\\.hr|hobild\\.net|hol\\.es|holiday\\-shop\\.ru|holidaypics\\.org|holistickenko\\.com|holodkovich\\.com|home\\.myplaycity\\.com|homeafrikalike\\.tk|homedo\\.fabpage\\.com|homeinns\\.com|homelygarden\\.com|homemade\\.gq|homemypicture\\.tk|honesty\\-homemade\\-grizzly\\-humanlike\\.com|hongfanji\\.com|hoporno\\.com|horoshieokna\\.com|host\\-protection\\.com|hostcritique\\.com|hoste\\.octopis\\.com|hostiman\\.ru|hosting\\-tracker\\.com|hostingclub\\.lk|hostsshop\\.ru|hotblognetwork\\.com|hotdl\\.in|hotspot\\.ipb\\.co\\.id|hottour\\.com|hotwatersdamps\\.com|houdom\\.net|housedesigning\\.ru|housediz\\.com|housekuba\\.org|housemilan\\.ru|houseofgaga\\.ru|houseofrose\\.com|houston\\-vikings\\.com|how\\-i\\-build\\-website\\.review|how\\-i\\-promote\\-website\\.review|how\\-to\\-buy\\-bitcoin\\.club|how\\-to\\-buy\\-bitcoin\\.stream|how\\-to\\-buy\\-bitcoins\\-cheap\\.party|how\\-to\\-buy\\-bitcoins\\-cheap\\.review|how\\-to\\-buy\\-bitcoins\\-cheap\\.stream|how\\-to\\-buy\\-bitcoins\\-cheap\\.trade|how\\-to\\-buy\\-bitcoins\\.stream|how\\-to\\-buy\\-bitcoins\\.trade|how\\-to\\-earn\\-quick\\-money\\.com|how\\-to\\-promote\\-website\\.faith|how\\-to\\-promote\\-website\\.review|howlongdoestizanidinestayinyoursystem\\.blogspot\\.com|howmuchdoestizanidinecost\\.blogspot\\.com|howopen\\.ru|howtostopreferralspam\\.com|howtostopreferralspam\\.eu|hoztorg\\-opt\\.ru|hplaserjetpdriver8y\\.pen\\.io|hptwaakw\\.blog\\.fc2\\.com|hrtonline\\.xyz|hscsscotland\\.com|hseipaa\\.kz|hsoutdoor\\.com|hspline\\.com|https\\-legalrc\\.biz|hugblog\\.xyz|huhn\\.altervista\\.org|hulfingtonpost\\.com|hully\\.altervista\\.org|humanorightswatch\\.org|hundejo\\.com|huntdown\\.info)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 19\n$HTTP[\"referer\"] =~ \"(husky\\-shop\\.cz|hustoon\\.over\\-blog\\.com|hvd\\-store\\.com|hydra\\-2019\\.ru|hydra\\-2020\\.online|hydra\\-2020\\.ru|hydra\\-centr\\.fun|hydra\\-dealer\\.com|hydra\\-guide\\.org|hydra\\-new\\.online|hydra\\-onion\\-faq\\.com|hydra\\-pc\\.com|hydra\\-shop\\.org|hydra\\-site\\.ru|hydra\\-slon\\.net|hydra\\-vhod2020\\.com|hydra\\-zerkalo20\\.com|hydra\\.online|hydra1717\\.com|hydra2\\.market|hydra2020\\.top|hydra2020gate\\.com|hydra2020market\\.com|hydra2020onion\\.com|hydra2020ru\\.com|hydra2020zerkala\\.com|hydra2020zerkalo\\.com|hydra20onion\\.com|hydra20online\\.com|hydra20original\\.com|hydra2use\\.com|hydra2zahod\\.com|hydraena\\.com|hydrahow\\.com|hydrahudra\\.com|hydraland\\.net|hydramarket2020\\.com|hydramirror2020\\.com|hydranten\\.net|hydraonion2019\\.net|hydrarusmarket\\.com|hydraruz\\-2020\\.com|hydraruzonion2020\\.com|hydraruzonionx\\.ru|hydraruzxpnew4af\\.com\\.co|hydraruzxpnew4af\\.ink|hydraruzxpnew4aff\\.ru|hydraruzxpwnew4afonion\\.com|hydraulicoilcooler\\.net|hydrauliczny\\.com|hydravizoficial\\.info|hydrazerkalo2019\\.net|hydrazerkalo2020\\.com|hydropump\\.su|hyip\\-zanoza\\.me|hyipmanager\\.in|i\\-spare\\.ru|ialgramer\\.shop|iamsport\\.org|ib\\-homecredit\\.ru|ib\\-rencredit\\.ru|iblogpress\\.xyz|iceton\\.net|ico\\.re|ictizanidinehcl4mg\\.blogspot\\.com|idc\\.com\\.ua|idealtits\\.net|ideayz\\.com|idegenvezeto\\.eu|ideibiznesa2015\\.ru|ieeeoutlet\\.xyz|ifirestarter\\.ru|ifmo\\.ru|igadgetsworld\\.com|igamingtop\\.com|igru\\-xbox\\.net|ilikevitaly\\.com|illagedusexe\\.com|ilmen\\.net|iloveitaly\\.ro|iloveitaly\\.ru|ilovevitaly\\.co|ilovevitaly\\.com|ilovevitaly\\.info|ilovevitaly\\.org|ilovevitaly\\.ro|ilovevitaly\\.ru|ilovevitaly\\.xyz|imediadesk\\.com|iminent\\.com|immigrational\\.info|immobiliaremassaro\\.com|immobilieralgerie\\.net|imperia31\\.ru|imperiafilm\\.ru|impotentik\\.com|impresagaia\\.it|in\\-mostbet\\.ru|in\\-sto\\.ru|inbabes\\.sexushost\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 20\n$HTTP[\"referer\"] =~ \"(inboxdollars\\.com|incanto\\.in\\.ua|incitystroy\\.ru|incomekey\\.net|incoonline\\.xyz|increasewwwtraffic\\.info|indetiske\\.ya\\.ru|indo\\-export\\.ru|inet\\-shop\\.su|infazavr\\.ru|infektsii\\.com|infobabki\\.ru|infodocsportal\\.com|infogame\\.name|infokonkurs\\.ru|inform\\-ua\\.info|ingramreed\\.xyz|inmoll\\.com|innodgfdriverhm\\.aircus\\.com|insider\\.pro|installspartners\\.com|instasexyblog\\.com|insultu\\-net\\.ru|intelhdgraphicsgtdrive6w\\.metroblog\\.com|interferencer\\.ru|interfucks\\.net|intermesh\\.net|internet\\-apteka\\.ru|intex\\-air\\.ru|intimchats\\.ru|intimver\\.3dgayxxx\\.com|invest\\-pamm\\.ru|investingclub\\.ru|investpamm\\.ru|investsuccess\\.org|invivo\\.hu|inzn\\.ru|io9\\.com|ipod\\-app\\-reviews\\.com|ipostroika\\.ru|iqoption\\-bin\\.com|iqoption\\.com|iqoption\\.pro|iradiology\\.ru|iridsale\\.xyz|ishgetadsincome\\.info|isistaylorporn\\.info|iskalko\\.ru|iskussnica\\.ru|isotoner\\.com|ispaniya\\-costa\\-blanca\\.ru|istanbulit\\.com|istizanidineacontrolledsubstance\\.blogspot\\.com|istizanidineanarcoticdrug\\.blogspot\\.com|istizanidineanopiate\\.blogspot\\.com|istizanidinelikexanax\\.blogspot\\.com|istock\\-mebel\\.ru|it\\-max\\.com\\.ua|it\\-worlds\\.com|itbc\\.kiev\\.ua|itrevolution\\.cf|itronics\\.ca|itsdp3\\.com|ivegetadsincome\\.info|iyfsearch\\.com|izamorfix\\.ru|izhevsk\\.xrus\\.org|izhevskjob\\.xyz|izhstrelok\\.ru|izi24\\.ru|j\\-times\\.ru|jabug\\.xyz|jacblog\\.xyz|jackonline\\.store|janemill\\.xyz|janettabridal\\.com|japfm\\.com|jasonpartington\\.com|jav\\-fetish\\.com|jav\\-fetish\\.site|jav\\-idol\\.com|javatex\\.co\\.id|javcoast\\.com|javlibrary\\.cc|jaxcube\\.info|jazzstyle4us\\.com|jeffbullas\\.xyz|jennyfire\\.ru|jikem\\.com|jintub\\.com|jjbabskoe\\.ru|job\\-opros\\.ru|job\\-prosto\\.ru|jobfree24\\.pl|jobgirl24\\.ru|jobius\\.com\\.ua|johnnyhaley\\.top|joinandplay\\.me|joingames\\.org|josephineblog\\.top)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 21\n$HTTP[\"referer\"] =~ \"(journalhome\\.com|joyceblog\\.top|joycee\\.xyz|judyandsimon\\.com|juliadiets\\.com|juliaworld\\.net|jumkite\\.com|justkillingti\\.me|justprofit\\.xyz|jweber\\.ru|jwss\\.cc|jyrxd\\.com|kaac\\.ru|kabbalah\\-red\\-bracelets\\.com|kabinet\\-5ka\\.ru|kabinet\\-alfaclick\\.ru|kabinet\\-binbank\\.ru|kabinet\\-card\\-5ka\\.ru|kabinet\\-click\\-alfabank\\.ru|kabinet\\-esia\\-gosuslugi\\.ru|kabinet\\-faberlic\\.ru|kabinet\\-gosuslugi\\.ru|kabinet\\-ipoteka\\-domclick\\.ru|kabinet\\-karta\\-5ka\\.ru|kabinet\\-lk\\-megafon\\.ru|kabinet\\-lk\\-rt\\.ru|kabinet\\-login\\-mts\\.ru|kabinet\\-mil\\.ru|kabinet\\-mos\\.ru|kabinet\\-my\\-beeline\\.ru|kabinet\\-my\\-pochtabank\\.ru|kabinet\\-nalog\\.ru|kabinet\\-online\\-bm\\.ru|kabinet\\-online\\-open\\.ru|kabinet\\-online\\-rsb\\.ru|kabinet\\-online\\-rshb\\.ru|kabinet\\-online\\-sberbank\\.ru|kabinet\\-online\\-sovcombank\\.ru|kabinet\\-online\\-vtb\\.ru|kabinet\\-pfr\\.ru|kabinet\\-pfrf\\.ru|kabinet\\-platon\\.ru|kabinet\\-qiwi\\.ru|kabinet\\-tele2\\.ru|kabinet\\-tinkoff\\.ru|kabinet\\-tricolor\\.ru|kabinet\\-ttk\\.ru|kabinet\\-vtb24\\.ru|kaircm\\.shop|kakablog\\.net|kakadu\\-interior\\.com\\.ua|kakworldoftanks\\.ru|kalb\\.ru|kambasoft\\.com|kamin\\-sam\\.ru|kamorel\\.com|kanakox\\.com|karachev\\-city\\.ru|karadene\\.com|karapuz\\.org\\.ua|karusel\\-market\\.ru|katjimej\\.blog\\.fc2\\.com|katrd\\.xyz|katushka\\.net|kaz\\.kz|kazan\\.xrus\\.org|kazka\\.ru|kazlenta\\.kz|kazrent\\.com|kellyonline\\.xyz|kendrablog\\.online|kenyagoods\\.xyz|kerch\\.site|ketrzyn\\.pl|kevblog\\.top|kevinsnow\\.online|kexihao\\.xyz|keywords\\-monitoring\\-success\\.com|keywords\\-monitoring\\-your\\-success\\.com|kharkov\\.ua|kharlov\\.ua|kidd\\.reunionwatch\\.com|kierowca\\-praca\\.pl|kiev\\.ua|kimblog\\.top|kinnarimasajes\\.com|kino\\-filmi\\.com|kino\\-fun\\.ru|kino\\-key\\.info|kino2018\\.cc|kinobaks\\.com|kinobum\\.org|kinoflux\\.net|kinohit1\\.ru|kinopolet\\.net|kinosed\\.net|kinostar\\.online|kinotorka\\.ru|kiprinform\\.com|kiwe\\-analytics\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 22\n$HTTP[\"referer\"] =~ \"(kiwi237au\\.tk|kiyany\\-za\\-spravedluvist\\.com\\.ua|kletkimehan\\.ru|klfd\\.net|kndxbkdx\\.bloger\\.index\\.hr|knigonosha\\.net|kochanelli\\.com|kolcasale\\.xyz|koleso24\\.com\\.ua|kollekcioner\\.ru|kolotiloff\\.ru|komp\\-pomosch\\.ru|komputernaya\\-pomosh\\-moscow\\.ru|komputers\\-best\\.ru|komukc\\.com\\.ua|kongoultry\\.net|konkursov\\.net|koopilka\\.com|koptims\\.tiu\\.ru|koronirealestate\\.gr|kosova\\.de|kosunnyclub\\.com|kotaku\\.com|kozhakoshek\\.com|kozhasobak\\.com|kozhniebolezni\\.com|kpcconline\\.xyz|krafte\\.ru|krasivoe\\-hd\\.com|krasivoe\\-hd\\.net|krasnodar\\-avtolombard\\.ru|krasnodar\\.xrus\\.org|krasota\\-zdorovie\\.pw|krasota\\.ru|kredutu\\.com\\.ua|kredytbank\\.com\\.ua|kruiz\\-sochi\\.ru|krumble\\-adsde\\.info|krumble\\-adsen\\.info|krumble\\-adsic\\.info|krumbleent\\-ads\\.info|krynica\\.info|ktotut\\.net|kumuk\\.info|kupit\\-adenu\\.ru|kursy\\-ege\\.ru|kustanay\\.kz|kvartir\\-remont\\.biz|kvartira\\-sutochno\\.com|kvartiry\\-remont\\.ucoz\\.ru|kw21\\.org|l2soft\\.eu|la\\-fa\\.ru|labguamec\\.online|labplus\\.ru|labvis\\.host\\.sk|ladov\\.ru|lafppshop\\.xyz|laitrcus\\.online|lakiikraski\\.ru|lalalove\\.ru|lambreshop\\.xyz|laminat\\.com\\.ua|lampokrat\\.ws|lanasshop\\.ru|landliver\\.org|landoftracking\\.com|languagecode\\.com|lankarns\\.com|laparfumotec\\.com|lapitec\\.eu|laptop\\-4\\-less\\.com|laptoper\\.net|larchik\\.net|larutti\\.ru|laudit\\.ru|law\\-check\\-eight\\.xyz|law\\-check\\-nine\\.xyz|law\\-check\\-seven\\.xyz|law\\-check\\-two\\.xyz|law\\-enforcement\\-aa\\.xyz|law\\-enforcement\\-bb\\.xyz|law\\-enforcement\\-bot\\-aa\\.xyz|law\\-enforcement\\-bot\\-bb\\.xyz|law\\-enforcement\\-bot\\-cc\\.xyz|law\\-enforcement\\-bot\\-dd\\.xyz|law\\-enforcement\\-bot\\-ee\\.xyz|law\\-enforcement\\-bot\\-ff\\.xyz|law\\-enforcement\\-bot\\-hh\\.xyz|law\\-enforcement\\-bot\\-ii\\.xyz|law\\-enforcement\\-cc\\.xyz|law\\-enforcement\\-check\\-eight\\.xyz|law\\-enforcement\\-check\\-five\\.xyz|law\\-enforcement\\-check\\-four\\.xyz|law\\-enforcement\\-check\\-nine\\.xyz|law\\-enforcement\\-check\\-one\\.xyz|law\\-enforcement\\-check\\-six\\.xyz|law\\-enforcement\\-check\\-three\\.xyz|law\\-enforcement\\-check\\-two\\.xyz|law\\-enforcement\\-dd\\.xyz)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 23\n$HTTP[\"referer\"] =~ \"(law\\-enforcement\\-ee\\.xyz|law\\-enforcement\\-eight\\.xyz|law\\-enforcement\\-ff\\.xyz|law\\-enforcement\\-five\\.xyz|law\\-enforcement\\-four\\.xyz|law\\-enforcement\\-gg\\.xyz|law\\-enforcement\\-hh\\.xyz|law\\-enforcement\\-one\\.xyz|law\\-enforcement\\-seven\\.xyz|law\\-enforcement\\-three\\.xyz|law\\-enforcement\\-two\\.xyz|law\\-five\\.xyz|law\\-four\\.xyz|law\\-one\\.xyz|law\\-six\\.xyz|law\\-three\\.xyz|law\\-two\\.xyz|lawrenceblog\\.online|laxdrills\\.com|layola\\.biz\\.tc|lazy\\-z\\.com|lcecshop\\.xyz|leadwayau\\.com|leboard\\.ru|lebowmall\\.xyz|ledalfa\\.by|leddjc\\.net|ledis\\.top|ledpolice\\.ru|ledx\\.by|leeboyrussia\\.com|legalrc\\.biz|lego4x4\\.ru|lenvred\\.org|leon\\-official\\.site|lernur\\.net|lerporn\\.info|leto\\-dacha\\.ru|letolove\\.ru|letsgotofriday\\.com|levaquin750mg\\.blogspot\\.com|lezbiyanki\\.net|lflash\\.ru|li\\-er\\.ru|lida\\-ru\\.com|lider82\\.ru|life\\.biz\\.ua|lifebyleese\\.com|lifespeaker\\.ru|ligastavok\\-in\\.ru|light\\.ifmo\\.ru|lighthearteds\\.shop|likesdesign\\.com|lilishopstogether\\.com|lindsayblog\\.online|linerdrilling\\.com|link\\.web\\-list\\.xyz|lipidofobia\\.com\\.br|liquimondo\\.com|lirunet\\.ru|lisque\\.batcave\\.net|littleberry\\.ru|live\\-sexchat\\.ru|live\\-xbet\\.com|livefixer\\.com|liveinternet\\.ro|liveinternet\\.ru|livejournal\\.top|livia\\-pache\\.ru|livingroomdecoratingideas\\.website|livingsimply\\.com|lk\\-gosuslugi\\.ru|lk\\-lk\\-rt\\.ru|llastbuy\\.ru|lmrauction\\.com|loadopia\\.com|local\\-seo\\-for\\-multiple\\-locations\\.com|login\\-tinkoff\\.ru|loginduepunti\\.it|logo\\-all\\.ru|lol\\-smurfs\\.com|lolz\\.guru|lolzteam\\.online|lolzteam\\.org|lomb\\.co|lombardfinder\\.ru|lombia\\.co|lombia\\.com|lomza\\.info|londonstratford\\.co\\.uk|lookover\\.ru|lost\\-alpha\\.ru|lotoflotto\\.ru|loveorganic\\.ch|low\\-format\\.ru|lowpricesiterx\\.com|lsex\\.xyz|lsitenonrepeat\\.com|luckybull\\.io|luckyshop\\.net\\.ua)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 24\n$HTTP[\"referer\"] =~ \"(lukoilcard\\.ru|lumb\\.co|lutherstable\\.org|luton\\-invest\\.ru|luxmagazine\\.cf|luxup\\.ru|luxurybet\\.ru|m\\-google\\.xyz|m\\.ok\\.ru|m1media\\.net|macresource\\.co\\.uk|madisonclothingny\\.com|madjonline\\.xyz|madot\\.onlinewebshop\\.net|mafcards\\.ru|magazintiande\\.ru|magda\\-gadalka\\.ru|magento\\-crew\\.net|magicart\\.store|magicdiet\\.gq|magnetic\\-bracelets\\.ru|maigralr\\.site|mail\\.allnews24\\.in|mainhunter\\.com|mainlinehobby\\.net|make\\-money\\-online\\.com|makedo\\.ru|makemoneyonline\\.com|makeprogress\\.ga|makler\\.org\\.ua|maladot\\.com|malbgoods\\.xyz|malls\\.com|maltadailypost\\.com|mamidushop\\.xyz|mamylik\\.ru|manimpotence\\.com|manipulyator\\-peterburg\\.ru|manonstore\\.xyz|manualterap\\.roleforum\\.ru|manwang\\.net|maofengjx\\.com|marathonbet\\-in\\.ru|marblestyle\\.ru|marcogrup\\.com|maridan\\.com\\.au|maridan\\.com\\.ua|marihome\\.online|marinetraffic\\.com|marjorieblog\\.online|marketland\\.ml|marktforschung\\-stuttgart\\.com|marmitaco\\.cat|martinahome\\.xyz|martlinker\\.com|massage\\-info\\.nl|masserect\\.com|master\\-muznachas\\.ru|masterseek\\.com|mastershef\\.club|masturbate\\.co\\.uk|mathoutlet\\.xyz|matomete\\.net|matras\\.space|mattgibson\\.us|mature\\.free\\-websites\\.com|max\\-apprais\\.com|maximilitary\\.ru|maxinesamson\\.top|maxthon\\.com|maxxximoda\\.ru|mazda\\-roadsters\\.com|mbiologi\\.ru|mebel\\-alait\\.ru|mebel\\-arts\\.com|mebel\\-ekb\\.com|mebel\\-iz\\-dereva\\.kiev\\.ua|mebelcomplekt\\.ru|mebeldekor\\.com\\.au|mebeldekor\\.com\\.ua|meblieco\\.com|med\\-dopomoga\\.com|med\\-recept\\.ru|med\\-zdorovie\\.com\\.au|med\\-zdorovie\\.com\\.ua|medanestesia\\.ru|medbrowse\\.info|medcor\\-list\\.ru|medi\\-fitt\\.hu|medic\\-al\\.ru|medicaltranslate\\.ru|medicinacom\\.ru|medicineseasybuy\\.com|medicovi\\.com|medictube\\.ru|medispainstitute\\.com\\.au|medkletki\\.ru|medkritika\\.ru|medmajor\\.ru|medosmotr\\-ufa\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 25\n$HTTP[\"referer\"] =~ \"(meds\\-online24\\.com|medtherapy\\.ru|meduza\\-consult\\.ru|meendo\\-free\\-traffic\\.ga|megaapteka\\.ru|megakino\\.net|megalit\\-d\\.ru|megapolis\\-96\\.ru|megatkani\\.ru|megavolt\\.net\\.ua|melbet\\-in\\.ru|melissahome\\.top|members\\.ghanaweb\\.com|memovn\\.com|menhealed\\.net|mercanmall\\.xyz|mere\\.host\\.sk|mericanmopedstore\\.com|meriton\\.ru|meroyharte\\.top|mesto\\-x\\.com|metallo\\-konstruktsii\\.ru|metallosajding\\.ru|metarip\\.ru|metaxalonevstizanidine\\.blogspot\\.com|meteocast\\.net|meuikcr\\.online|mex\\-annushka\\.ru|mhp\\.su|mhrdmall\\.xyz|miaxxx\\.com|micasainvest\\.com|michellblog\\.online|microsearch\\.ru|microsoftportal\\.net|midnight\\.im|mielec\\.pl|mifepriston\\.net|migente\\.com|migera\\.net|migronis\\.com|mikozstop\\.com|mikrobiologies\\.ru|mikrocement\\.com\\.ua|mikrozaim\\.site|mikrozaym2you\\.ru|minecraft\\-neo\\.ru|minecraft\\-rus\\.org|minegam\\.com|minghaimuyuan\\.net|mini\\.7zap\\.com|miningblack\\.net|minyetki\\.ru|mir\\-betting\\.ru|mir\\-business\\-24\\.ru|mir\\-limuzinov\\.ru|mirfairytale\\.ru|mirmedinfo\\.ru|mirobuvi\\.com\\.au|mirobuvi\\.com\\.ua|mirtorrent\\.net|mirzonru\\.net|misselle\\.ru|mister\\-shop\\.com|mitrasound\\.ru|mixed\\-wrestling\\.ru|mksoap\\.ru|mksport\\.ru|mmdoors\\.ru|mmm\\.lc|mmm\\.sb|mmog\\-play\\.ru|mmoguider\\.ru|mnogabukaff\\.net|mobicover\\.com\\.ua|mobile\\.ok\\.ru|mobilemedia\\.md|mobisport\\.ru|mobot\\.site|mobplayer\\.net|mobplayer\\.ru|mockupui\\.com|modabutik\\.ru|modforwot\\.ru|modnie\\-futbolki\\.net|moe1\\.ru|moesonce\\.com|moi\\-glazki\\.ru|moinozhki\\.com|moiragracie\\.top|moisadogorod\\.ru|mokrayakiska\\.com|mole\\.pluto\\.ro|monarhs\\.info|monetizationking\\.net|money\\-every\\-day\\.com|money\\-for\\-placing\\-articles\\.com|money7777\\.info|moneymaster\\.ru|moneytop\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 26\n$HTTP[\"referer\"] =~ \"(moneyzzz\\.ru|monicablog\\.xyz|monitorwebsitespeed\\.com|moomi\\-daeri\\.com|moon\\.market|moonci\\.ru|more\\-letom\\.ru|morf\\.snn\\.gr|morlat\\.altervista\\.org|moroccosurfadventures\\.com|moscow\\-clining\\.ru|moscow\\-region\\.ru|moscow\\.xrus\\.org|mosdverka\\.ru|mosputana\\.info|mosputana\\.top|mosrif\\.ru|mossiemckenzie\\.shop|mossmesi\\.com|most\\-kerch\\.org|most\\.gov\\.iq|mostantikor\\.ru|mostbet\\-285\\.com|mostbet\\-original\\.ru|mostcool\\.top|mostorgnerud\\.ru|motion\\-interactive\\.com|mototsikl\\.org|mountainstream\\.ms|moy\\-dokument\\.com|moy\\-evroopt\\.ru|moyakuhnia\\.ru|moyaskidka\\.ru|moyaterapiya\\.ru|moygorod\\-online\\.ru|moyparnik\\.com|mp3films\\.ru|mpftpupload\\.com|mrbojikobi4\\.biz|mrcsa\\.com\\.au|mriyadh\\.com|mrmoneymustache\\.com|mrt\\-info\\.ru|mrwhite\\.biz|msk\\-diplomat\\.com|msk\\-sprawka\\.com|mtras\\.xyz|mtsguru\\.ru|mug\\-na\\-chas\\-moscow\\.ru|muizre\\.ru|mukis\\.ru|mundoaberrante\\.com|muscle\\-factory\\.com\\.au|muscle\\-factory\\.com\\.ua|music\\.utrolive\\.ru|musicas\\.baixar\\-musicas\\-gratis\\.com|musichallaudio\\.ru|musicprojectfoundation\\.com|musicstock\\.me|musicvidz\\.ru|muz\\-baza\\.net|muz\\-shoes\\.ru|muznachas\\-service\\.ru|muztops\\.ru|mvmagoods\\.xyz|mwductwork\\.com|my\\-bc\\.ru|my\\.opera\\.com|mybestoffers\\.club|myborder\\.ru|mybuh\\.kz|mycaf\\.it|mycheaptraffic\\.com|mycollegereview\\.com|mydirtystuff\\.com|mydoctorok\\.ru|mydownloadengine\\.com|mydownlodablefiles\\.com|myecomir\\.com|myfreemp3\\.eu|myftpupload\\.com|myindospace\\.com|mylida\\.org|myliveblog\\.ru|mypets\\.by|myplaycity\\.com|myprintscreen\\.com|mysexpics\\.ru|mytherealshop\\.com|mytraffic\\.shop|na\\-telefon\\.biz|na15\\.ru|nacap\\.ru|nachalka21\\.ru|nagdak\\.ru|nakozhe\\.com|nalogovyy\\-kodeks\\.ru|nancyblog\\.top|nanochskazki\\.ru|nanwar\\.xyz)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 27\n$HTTP[\"referer\"] =~ \"(naobumium\\.info|naphi\\.xyz|naphukete\\.ru|nardulan\\.com|narkologiya\\-belgorod\\.ru|narkologiya\\-orel\\.ru|narkologiya\\-penza\\.ru|narkologiya\\-peterburg\\.ru|narkologiya\\-voronezh\\.ru|narkomaniya\\-stop\\.ru|narosty\\.com|narutonaruto\\.ru|nastroyke\\.net|natali\\-forex\\.com|nate\\.com|natprof\\.ru|naturalpharm\\.com\\.ua|naval\\.jislaaik\\.com|navek\\.by|nbok\\.net|nbsproject\\.ru|nebbiasale\\.xyz|needtosellmyhousefast\\.com|negral\\.pluto\\.ro|net\\-profits\\.xyz|netallergy\\.ru|nethouse\\.ru|netlify\\.com|netpics\\.org|nevansk\\.ru|nevapotolok\\.ru|new\\-apps\\.ru|newagebev\\.com|newbieseoblog\\.online|newsfj\\.net|newsrosprom\\.ru|newstaffadsshop\\.club|newstraveller\\.ru|newstudio\\.tv|nextconseil\\.com|nfocusdriver\\.com|ngps1\\.ru|nhmrcsale\\.xyz|nhsports\\.cl|nicola\\.top|nicolaonline\\.top|niki\\-mlt\\.ru|nikitsyringedrivelg\\.pen\\.io|ninacecillia\\.top|niuting\\.org|nizniynovgorod\\.dienai\\.ru|nl\\.netlog\\.com|no\\-rx\\.info|noclegonline\\.info|nomerounddec\\.cf|nonews\\.co|nordstar\\.pro|notaria\\-desalas\\.com|notebook\\-pro\\.ru|notfastfood\\.ru|noumeda\\.com|novalskincare\\.net|novgorod\\.xrus\\.org|novosibirsk\\.xrus\\.org|novosti\\-avto\\.ru|novosti\\-hi\\-tech\\.ru|novostic\\.ru|now\\-hydra2020\\.com|npoet\\.ru|ntdtv\\.ru|nubuilderian\\.info|nucia\\.biz\\.ly|nudepatch\\.net|nudo\\.ca|nufaq\\.com|nullrefer\\.com|nutriwestncahi\\.com|nuup\\.info|nvformula\\.ru|nvkzsale\\.xyz|nwrcz\\.com|nyfinance\\.ml|nyinfo\\.org|o\\-o\\-11\\-o\\-o\\.com|o\\-o\\-6\\-o\\-o\\.com|o\\-o\\-6\\-o\\-o\\.ru|o\\-o\\-8\\-o\\-o\\.com|o\\-o\\-8\\-o\\-o\\.ru|o\\-promyshlennosti\\.ru|o00\\.in|oblismall\\.xyz|obnal\\.org|obnallpro\\.cc|obsessionphrases\\.com|obuv\\-kupit\\.ru|obyavka\\.org\\.ua|obzor\\-casino\\-x\\.online|obzor\\-casino\\-x\\.ru|ochistka\\-stokov\\.ru|odesproperty\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 28\n$HTTP[\"referer\"] =~ \"(odiabetikah\\.com|odsadsmobile\\.biz|odywpjtw\\.bloger\\.index\\.hr|ofermerah\\.com|offers\\.bycontext\\.com|office\\-windows\\.ru|office2web\\.com|officedocuments\\.net|offtime\\.ru|ogorodnic\\.com|ok\\.ru|oklogistic\\.ru|okna\\-systems\\.pro|okno\\.ooo|okoshkah\\.com|okroshki\\.ru|oktube\\.ru|oledonline\\.xyz|olovoley\\.ru|olvanto\\.ru|omega\\.best|omsk\\.xrus\\.org|one\\-a\\-plus\\.xyz|one\\-gear\\.com|onefilms\\.net|onenews24\\.ru|onion20hydra\\.ru|onionhydra\\.net|onionshydra\\.com|online\\-akbars\\.ru|online\\-binbank\\.ru|online\\-hit\\.info|online\\-intim\\.com|online\\-mkb\\.ru|online\\-pharma\\.ru|online\\-pochtabank\\.ru|online\\-raiffeisen\\.ru|online\\-sbank\\.ru|online\\-templatestore\\.com|online\\-video\\-chat\\.ru|online\\-vostbank\\.ru|online\\-vtb\\.ru|online\\-x\\.ru|online\\.ktc45\\.ru|onlinebay\\.ru|onlinedic\\.net|onlinedomains\\.ru|onlinefilmz\\.net|onlineserialy\\.ru|onlinetvseries\\.me|onlinewot\\.ru|onlinewritingjobs17\\.blogspot\\.ru|onload\\.pw|onlyforemont\\.ru|onlythegames\\.com|onlywoman\\.org|oohlivecams\\.com|ooo\\-gotovie\\.ru|ooo\\-olni\\.ru|oooh\\.pro|openfrost\\.com|openfrost\\.net|openlibrary\\.org|openmediasoft\\.com|ops\\.picscout\\.com|optitrade24\\.com|optsol\\.ru|oqex\\.io|oracle\\-patches\\.ru|orakul\\.spb\\.ru|oranga\\.host\\.sk|order\\-prime\\-smm\\-service\\.party|ordernorxx\\.com|orel\\-reshka\\.net|oren\\-cats\\.ru|origin\\-my\\.ru|ororodnik\\.goodbb\\.ru|osb\\.se11\\.ru|osoznanie\\-narkotikam\\.net|osteochondrosis\\.ru|ostroike\\.org|ostrovtaxi\\.ru|otbelivanie\\-zubov\\.com|otdbiaxaem\\-vmeste\\.ru|otdyx\\-s\\-komfortom\\.ru|oudallas\\.net|ourtherapy\\.ru|outshop\\.ru|ovirus\\.ru|own\\-ahrefs\\.com|ownshop\\.cf|owohho\\.com|ozas\\.net|p\\-business\\.ru|paceform\\.com|pacobarrero\\.com|pageinsider\\.org|paidonlinesites\\.com|painting\\-planet\\.com|palma\\-de\\-sochi\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 29\n$HTTP[\"referer\"] =~ \"(palvira\\.com\\.au|palvira\\.com\\.ua|pamjatnik\\.com\\.ua|pammik\\.ru|pamyatnik\\-spb\\.ru|pamyatnik\\-tsena\\.ru|pandoshop\\.xyz|paparazzistudios\\.com\\.au|paperwritingservice17\\.blogspot\\.ru|paradontozanet\\.ru|parcsmalls\\.xyz|paretto\\.ru|parking\\-invest\\.ru|partizan19\\.ru|partnerskie\\-programmy\\.net|patonsale\\.xyz|paulinho\\.ru|pay\\.ru|paydayonlinecom\\.com|pc\\-services\\.ru|pechikamini\\.ru|pecmastore\\.xyz|pensplan\\.com|pensplan4u\\.com|penzu\\.xyz|percin\\.biz\\.ly|perfection\\-pleasure\\.ru|perform\\-like\\-alibabaity\\.info|perform\\-likeism\\-alibaba\\.info|perimetor\\.ru|perm\\.dienai\\.ru|perm\\.xrus\\.org|perper\\.ru|perso\\.wanadoo\\.es|personalhoro\\.ru|petedrummond\\.com|petroleumgeo\\.com|petrovka\\-online\\.com|petrushka\\-restoran\\.ru|petscar\\.ru|pfrf\\-kabinet\\.ru|pharm\\-\\-shop\\.ru|phimarshcer\\.online|phimmakinhdi\\.com|phobia\\.us|photo\\-clip\\.ru|photo\\.houseofgaga\\.ru|photochki\\.com|photokitchendesign\\.com|photorepair\\.ru|php\\-market\\.ru|physfunc\\.ru|picscout\\.com|picturesmania\\.com|pills24h\\.com|piluli\\.info|pinkduck\\.ga|pinupcasinos\\.ru|pinupcasinos1\\.ru|pinupp1\\.com|pipki\\.pp\\.ua|piratbike\\.ru|pirateday\\.ru|pirelli\\-matador\\.ru|pisze\\.pisz\\.pl|piter\\.xrus\\.org|piulatte\\.cz|pizdeishn\\.com|pizdeishn\\.net|pizza\\-imperia\\.com|pizza\\-tycoon\\.com|pk\\-pomosch\\.ru|pk\\-services\\.ru|pkr1hand\\.com|plagscan\\.com|plastweb\\.ru|platesauto\\.com|platinumdeals\\.gr|plohaya\\-kreditnaya\\-istoriya\\.ru|plusnetwork\\.com|pochemychka\\.net|podarkilove\\.ru|poddon\\-moskva\\.ru|podemnik\\.pro|podseka1\\.ru|pogodnyyeavarii\\.gq|pogosh\\.com|pogruztehnik\\.ru|poisk\\-zakona\\.ru|poiskzakona\\.ru|pokemongooo\\.ml|poker\\-royal777\\.com|pokupaylegko\\.ru|polcin\\.de|polemikon\\.ru|politika\\.bg|polyana\\-skazok\\.org\\.ua|pomoc\\-drogowa\\.cba\\.pl|pony\\-business\\.com|popads\\.net)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 30\n$HTTP[\"referer\"] =~ \"(popelina\\.com|pops\\.foundation|popugauka\\.ru|popugaychiki\\.com|popular\\-church\\-arrow\\-voucher\\.info|popup\\-fdm\\.xyz|popup\\-hgd\\.xyz|popup\\-jdh\\.xyz|porn\\-video\\-chat\\.ru|porn\\-w\\.org|porndl\\.org|pornhive\\.org|pornhub\\-forum\\.ga|pornhub\\-forum\\.uni\\.me|pornhub\\-ru\\.com|pornhubforum\\.tk|porno\\-asia\\.com|porno\\-chaman\\.info|porno\\-dojki\\.net|porno\\-gallery\\.ru|porno\\-play\\.net|porno\\-raskazy\\.ru|porno\\-transsexuals\\.ru|porno\\-video\\-chati\\.ru|porno2xl\\.net|pornobest\\.su|pornoblood\\.com|pornobrazzers\\.biz|pornodojd\\.ru|pornoelita\\.info|pornofiljmi\\.com|pornoforadult\\.com|pornofoto\\.org|pornogig\\.com|pornohd1080\\.online|pornokajf\\.com|pornoklad\\.net|pornoklad\\.ru|pornokorol\\.com|pornonik\\.com|pornophoto\\.xyz|pornoplen\\.com|pornorasskazy\\.net|pornosemki\\.info|pornoslave\\.net|pornotubexxx\\.name|porodasobak\\.net|portal\\-eu\\.ru|portnoff\\.od\\.au|portnoff\\.od\\.ua|poshiv\\-chehol\\.ru|positive2b\\.ru|pospektr\\.ru|postclass\\.com|posteezy\\.xyz|potolokelekor\\.ru|povodok\\-shop\\.ru|powitania\\.pl|pozdravleniya\\-c\\.ru|pozdrawleniya\\.com|pozdrawleniya\\.ru|pozvonim\\.com|pp\\-budpostach\\.com\\.ua|pravoholding\\.ru|predmety\\.in\\.ua|prezidentshop\\.ru|priceg\\.com|pricheskaonline\\.ru|pricheski\\-video\\.com|primfootball\\.com|primoblog\\.xyz|princeadvantagesales\\.com|print\\-technology\\.ru|printie\\.com|printingpeach\\.com|priora\\-2\\.com|privatbank46\\.ru|private\\-service\\.best|privatov\\-zapisi\\.ru|privhosting\\.com|prizesk\\.com|prizrn\\.site|prlog\\.ru|pro\\-okis\\.ru|probenzo\\.com\\.ua|procrafts\\.ru|prodaemdveri\\.com|producm\\.ru|prodvigator\\.au|prodvigator\\.ua|proekt\\-gaz\\.ru|proekt\\-mos\\.ru|professionalsolutions\\.eu|professionalwritingservices15\\.blogspot\\.ru|profnastil\\-moscow\\.ru|proftests\\.net|progressive\\-seo\\.com|prohoster\\.info|prointer\\.net\\.au|prointer\\.net\\.ua)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 31\n$HTTP[\"referer\"] =~ \"(projectforte\\.ru|projefrio\\.com\\.br|prokotov\\.com|prom23\\.ru|prombudpostach\\.com\\.ua|promodj\\.com|promoforum\\.ru|promoteapps\\.online|promotion\\-for99\\.com|pron\\.pro|pronekut\\.com|proposal\\-engine\\.com|propranolol40mg\\.blogspot\\.com|proquoshop\\.xyz|prosmibank\\.ru|prostitutki\\-almata\\.org|prostitutki\\-astana\\.org|prostitutki\\-belgoroda\\.org|prostitutki\\-kharkova\\.org|prostitutki\\-kiev\\.org|prostitutki\\-novgoroda\\.org|prostitutki\\-odessa\\.org|prostitutki\\-rostova\\.org|prostitutki\\-rostova\\.ru\\.com|prostitutki\\-tolyatti\\.org|prostitutki\\-tyumeni\\.org|prostitutki\\-yaroslavlya\\.org|prostoacc\\.com|psa48\\.ru|psiosale\\.xyz|pskcijdc\\.bloger\\.index\\.hr|psn\\-card\\.ru|psvita\\.ru|psychocryonics\\.net|ptashkatextil\\.ua|ptfic\\.org|punch\\.media|purchasepillsnorx\\.com|puteshestvennik\\.com|putevka24\\.ru|putitin\\.me|puzo2arbuza\\.ru|puzzleweb\\.ru|pyrodesigns\\.com\\.au|q\\-moto\\.ru|qcstrtvt\\.bloger\\.index\\.hr|qexyfu\\.bugs3\\.com|qitt\\.ru|qoinex\\.top|qtrstar\\.xyz|qualitymarketzone\\.com|quick\\-seeker\\.com|quickchange\\.cc|quit\\-smoking\\.ga|qwarckoine\\.com|qwesa\\.ru|qxnr\\.net|r\\-control\\.ru|rabot\\.host\\.sk|rabotaetvse\\.ru|rachelblog\\.online|radiogambling\\.com|rainbirds\\.ru|ranedaly\\.net|rangapoker\\.com|rangjued\\.com|rank\\-checker\\.online|rankchecker\\.online|ranking2017\\.ga|rankings\\-analytics\\.com|ranksays\\.com|rankscanner\\.com|ranksignals\\.com|ranksonic\\.com|ranksonic\\.info|ranksonic\\.net|ranksonic\\.org|rapevideosmovies\\.com|rapidgator\\-porn\\.ga|rapidhits\\.net|rapidsites\\.pro|raschtextil\\.com\\.ua|rasteniya\\-vs\\-zombi\\.ru|ratraiser\\.online|rattan\\.co\\.ua|raymondblog\\.top|razamicroelectronics\\.com|razborka\\-skoda\\.org\\.ua|rb\\-str\\.ru|rcb101\\.ru|rczhan\\.com|real\\-time\\-analytics\\.com|realnye\\-otzyvy\\.info|realresultslist\\.com|realting\\-moscow\\.ru|recinziireale\\.com|recipedays\\.com|recipedays\\.ru|rednise\\.com|redraincine\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 32\n$HTTP[\"referer\"] =~ \"(refererx\\.com|refpawro\\.xyz|refudiatethissarah\\.info|reginablog\\.top|reginanahum\\.top|regionshop\\.biz|registratciya\\-v\\-moskve\\.ru|reklama\\-i\\-rabota\\.ru|reklama1\\.ru|reklamnoe\\.agency|reklamuss\\.ru|releshop\\.ru|rembash\\.ru|remedyotc\\.com|remkompov\\.ru|remmling\\.de|remont\\-comp\\-pomosh\\.ru|remont\\-fridge\\-tv\\.ru|remont\\-komputerov\\-notebook\\.ru|remont\\-kvartirspb\\.com|remont\\-mobile\\-phones\\.ru|remont\\-ustanovka\\-tehniki\\.ru|remontgruzovik\\.ru|remontvau\\.ru|remote\\-dba\\.de|remotecomputingservices\\.net|rent2spb\\.ru|rentalmaty\\.kz|replica\\-watch\\.ru|replicaclub\\.ru|research\\.ifmo\\.ru|resell\\-seo\\-services\\.com|resellerclub\\.com|residualforlife\\.com|responsive\\-test\\.net|respublica\\-otel\\.ru|resurs\\-2012\\.ru|retreatia\\.com|reversing\\.cc|revolgc\\.pro|reyel1985\\.webnode\\.fr|rezeptiblud\\.ru|rfavon\\.ru|rfd\\-split\\.hr|rfesc\\.net|rialp\\.getenjoyment\\.net|richinvestmonitor\\.com|rida\\.tokyo|riedismall\\.xyz|rietisvi\\.co|rightenergysolutions\\.com\\.au|ring4rhino\\.com|ringporno\\.com|rique\\.host\\.sk|risparmiocasa\\.bz\\.it|rkmbonline\\.xyz|robocheck\\.info|robot\\-forex\\.biz|roleforum\\.ru|roma\\-kukareku\\.livejournal\\.com|roof\\-city\\.ru|room\\-mebel\\.ru|ros\\-ctm\\.ru|rospromtest\\.ru|rossanasaavedra\\.net|rossmark\\.ru|rostov\\.xrus\\.org|royal\\-betting\\.net|royal\\-casino\\.online|royal\\-casino\\.ru|royal\\-casinos\\.online|royal\\-casinos\\.ru|royal\\-cazino\\.online|royal\\-cazino\\.ru|royal\\-investments\\.net|rozalli\\.com|roznica\\.com\\.ua|rp9\\.ru|rrutw\\.com|rspectr\\.com|ru\\-lk\\-rt\\.ru|ru\\-onion\\.com|ru\\-online\\-sberbank\\.ru|ruex\\.org\\.ua|rufreechats\\.com|ruhydraru\\.ru|ruinfocomp\\.ru|rulate\\.ru|rumamba\\.com|runetki\\-online\\.net|runovschool\\.ua|runstocks\\.com|rupolitshow\\.ru|rus\\-lit\\.com|rus\\-teh\\.narod\\.ru|ruscams\\-com\\.ru|ruscopybook\\.com|rusenvironmental\\.net|rusexy\\.xyz|rusoft\\-zone\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 33\n$HTTP[\"referer\"] =~ \"(ruspoety\\.ru|russia\\-tao\\.ru|russia\\-today\\-video\\.ru|russian\\-postindex\\.ru|russian\\-translator\\.com|russian\\-videochats\\.ru|russintv\\.fr|russkie\\-sochineniya\\.ru|russkoe\\-zdorovie\\.ru|rustag\\.ru|rutor\\.group|rvtv\\.ru|rxshop\\.md|rybalka\\-opt\\.ru|s\\-forum\\.biz|s\\-luna\\.me|sabaapress\\.com|sabinablog\\.xyz|sack\\.net|sad\\-torg\\.com\\.ua|sady\\-urala\\.ru|sahohev\\.000host\\.co\\.uk|saitevpatorii\\.com|sakhboard\\.ru|sale\\-japan\\.com|saletool\\.ru|saltspray\\.ru|salutmontreal\\.com|samanthablog\\.online|samara\\-airport\\.com|samara\\-comfort\\.ru|samchist\\.ru|samlaurabrown\\.top|samo\\-soznanie\\.ru|samogonius\\.ru|sanatorrii\\.ru|sanjosestartups\\.com|santaren\\.by|santasgift\\.ml|santechnik\\.jimdo\\.com|santehnovich\\.ru|sapaship\\.ru|sarafangel\\.ru|sarahmilne\\.top|saratov\\.xrus\\.org|sarf3omlat\\.com|sashagreyblog\\.ga|saudegoods\\.xyz|sauna\\-v\\-ufe\\.ru|sauni\\-lipetsk\\.ru|sauni\\-moskva\\.ru|savetubevideo\\.com|savetubevideo\\.info|savne\\.org|sax\\-sex\\.com|sbdl\\.no|sbornik\\-zakonov\\.ru|sc\\-specialhost\\.com|scanner\\-alex\\.top|scanner\\-alexa\\.top|scanner\\-andrew\\.top|scanner\\-barak\\.top|scanner\\-brian\\.top|scanner\\-don\\.top|scanner\\-donald\\.top|scanner\\-elena\\.top|scanner\\-fred\\.top|scanner\\-george\\.top|scanner\\-irvin\\.top|scanner\\-ivan\\.top|scanner\\-jack\\.top|scanner\\-jane\\.top|scanner\\-jess\\.top|scanner\\-jessica\\.top|scanner\\-john\\.top|scanner\\-josh\\.top|scanner\\-julia\\.top|scanner\\-julianna\\.top|scanner\\-margo\\.top|scanner\\-mark\\.top|scanner\\-marwin\\.top|scanner\\-mary\\.top|scanner\\-nelson\\.top|scanner\\-olga\\.top|scanner\\-viktor\\.top|scanner\\-walt\\.top|scanner\\-walter\\.top|scanner\\-willy\\.top|scansafe\\.net|scat\\.porn|scenarii\\-1\\-sentyabrya\\.uroki\\.org\\.ua|school\\-diplomat\\.ru|sciedsale\\.xyz|score\\-prime\\-web\\-service\\.stream|screen\\-led\\.ru|screentoolkit\\.com|scripted\\.com|sdelai\\-prosto\\.ru|sdelatmebel\\.ru|sdi\\-pme\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 34\n$HTTP[\"referer\"] =~ \"(search\\-error\\.com|search\\-helper\\.ru|searchencrypt\\.com|searchlock\\.com|seccioncontrabajo\\.com|secret\\.xn\\-\\-oogle\\-wmc\\.com|secretscook\\.ru|security\\-corporation\\.com\\.ua|securityallianceservices\\.com|see\\-your\\-website\\-here\\.com|seekanvdoo22\\.live|seisasale\\.xyz|seksotur\\.ru|sel\\-hoz\\.com|selfhotdog\\.com|sell\\-fb\\-group\\-here\\.com|semalt\\.com|semalt\\.net|semalt\\.semalt\\.com|semaltmedia\\.com|semxiu\\.com|senacertificados\\.co|senger\\.atspace\\.co\\.uk|seo\\-2\\-0\\.com|seo\\-b2b\\.com|seo\\-platform\\.com|seo\\-services\\-b2b\\.com|seo\\-services\\-wordpress\\.com|seo\\-smm\\.kz|seo\\-tips\\.top|seo\\-traffic\\.xyz|seoanalyses\\.com|seobook\\.top|seocheckupx\\.com|seocheckupx\\.net|seoexperimenty\\.ru|seojokes\\.net|seokicks\\.de|seopub\\.net|seoriseome\\.netlify\\.app|seoservices2018\\.com|serenamall\\.xyz|serialsway\\.ucoz\\.ru|serialsx\\.ru|servemlixo\\.xyz|servisural\\.ru|serw\\.clicksor\\.com|seryeznie\\-znakomstva\\.ru|setioweb\\.com|sex\\-dating\\.co|sex\\-porno\\.site|sex\\-spying\\.ru|sex\\-videochats\\.ru|sexkrasivo\\.net|sexpornotales\\.net|sexreliz\\.com|sexreliz\\.net|sexsaoy\\.com|sexuria\\.net|sexvideo\\-sex\\.com|sexvporno\\.ru|sexwife\\.net|sexy\\-girl\\-chat\\.ru|sexyali\\.com|sexyteens\\.hol\\.es|sexytrend\\.ru|sfd\\-chess\\.ru|shagtomsk\\.ru|shakhtar\\-doneck\\.ru|shamcisale\\.xyz|shanscasino1\\.ru|share\\-button\\.xyz|share\\-buttons\\-for\\-free\\.com|share\\-buttons\\.xyz|sharebutton\\.io|sharebutton\\.net|sharebutton\\.org|sharebutton\\.to|sharemyfile\\.ru|shariki\\-zuma\\-lines\\.ru|shcrose\\.com|sheki\\-spb\\.ru|shemy\\-vishivki\\.com|shiksabd\\.com|shinikiev\\.com\\.ua|ship\\-marvel\\.co\\.ua|shisenshop\\.xyz|shisha\\-swag\\.de|shlyahten\\.ru|shnyagi\\.net|shodanhq\\.com|shop\\-electron\\.ru|shop\\-garena\\.ru|shop\\.garena\\.ru\\.com|shop\\.xz618\\.com|shop2hydra\\.com|shop4fit\\.ru|shopfishing\\.com\\.ua|shoppinglocation\\.com|shoppingmiracles\\.co\\.uk)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 35\n$HTTP[\"referer\"] =~ \"(shoprybalka\\.ru|shops\\-ru\\.ru|shopsellcardsdumps\\.com|shopvilleroyboch\\.com\\.ua|shopwme\\.ru|shtaketniki\\.ru|shtormmall\\.xyz|shulepov\\.ru|sib\\-kukla\\.ru|sibecoprom\\.ru|sibkukla\\.ru|sideeffectsoftizanidine\\.blogspot\\.com|sign\\-service\\.ru|signx\\.info|sihugoods\\.xyz|silverage\\.ru|silvergull\\.ru|silvermature\\.net|sim\\-dealer\\.ru|sim\\-service\\.net|similarmoviesdb\\.com|simoncinicancertherapy\\.com|simple\\-share\\-buttons\\.com|simplepooltips\\.com|sims\\-sims\\.ru|sinel\\.info|sinestesia\\.host\\.sk|singularwebs\\.net|sinhronperevod\\.ru|siongetadsincome\\.info|sirhoutlet\\.xyz|siritshop\\.xyz|sisiynas\\.ru|site\\-auditor\\.online|site\\-speed\\-check\\.site|site\\-speed\\-checker\\.site|site3\\.free\\-share\\-buttons\\.com|site5\\.com|siteexpress\\.co\\.il|siteripz\\.net|sitesadd\\.com|sitevaluation\\.com|sitevaluation\\.org|sivs\\.ru|sjmsw\\.net|sk\\.golden\\-praga\\.ru|ski\\-centers\\.com|skidku\\.org\\.ua|skinali\\.com|skinali\\.photo\\-clip\\.ru|sklad\\-24\\.ru|skladvaz\\.ru|sky\\-mine\\.ru|skylta\\.com|sladkoevideo\\.com|slashpet\\.com|slavic\\-magic\\.ru|slavkokacunko\\.de|sledstvie\\-veli\\.net|slftsdybbg\\.ru|slkrm\\.ru|slomm\\.ru|slonechka\\.ru|sloopyjoes\\.com\\.top|slotron\\.com|slow\\-website\\.xyz|slujbauborki\\.ru|smailik\\.org|small\\-game\\.com|small\\-games\\.biz|smartpet\\.ru|smartphonediscount\\.info|sms2x2\\.ru|smstraf\\.ru|smt4\\.ru|smzt\\.shop|snabs\\.kz|snaiper\\-bg\\.net|sneakerfreaker\\.com|snegozaderzhatel\\.ru|snip\\.to|snip\\.tw|snjatie\\-geroinovoy\\-lomki\\.ru|snomer1\\.ru|snyatie\\-lomki\\-v\\-stacionare\\.ru|soaksoak\\.ru|soblaznu\\.net|soc\\-econom\\-problems\\.ru|soc\\-proof\\.su|socas\\.pluto\\.ro|sochi\\-3d\\.ru|social\\-button\\.xyz|social\\-buttons\\-aa\\.xyz|social\\-buttons\\-aaa\\.xyz|social\\-buttons\\-bb\\.xyz|social\\-buttons\\-bbb\\.xyz|social\\-buttons\\-cc\\.xyz|social\\-buttons\\-ccc\\.xyz|social\\-buttons\\-dd\\.xyz|social\\-buttons\\-ddd\\.xyz)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 36\n$HTTP[\"referer\"] =~ \"(social\\-buttons\\-ee\\.xyz|social\\-buttons\\-eee\\.xyz|social\\-buttons\\-ff\\.xyz|social\\-buttons\\-fff\\.xyz|social\\-buttons\\-gg\\.xyz|social\\-buttons\\-ggg\\.xyz|social\\-buttons\\-hh\\.xyz|social\\-buttons\\-ii\\.xyz|social\\-buttons\\-iii\\.xyz|social\\-buttons\\.com|social\\-buttons\\.xyz|social\\-fun\\.ru|social\\-s\\-ggg\\.xyz|social\\-s\\-hhh\\.xyz|social\\-s\\-iii\\.xyz|social\\-search\\.me|social\\-traffic\\-1\\.xyz|social\\-traffic\\-2\\.xyz|social\\-traffic\\-3\\.xyz|social\\-traffic\\-4\\.xyz|social\\-traffic\\-5\\.xyz|social\\-traffic\\-6\\.xyz|social\\-traffic\\-7\\.xyz|social\\-vestnik\\.ru|social\\-widget\\.xyz|socialbookmarksubmission\\.org|socialbutton\\.xyz|socialbuttons\\.xyz|socialine\\.net|socialseet\\.ru|socialtrade\\.biz|sofit\\-dmd\\.ru|soft\\-program\\.com|softomix\\.com|softomix\\.net|softomix\\.org|softomix\\.ru|softtor\\.com|softxaker\\.ru|sohoindia\\.net|soki\\.tv|solartek\\.ru|solitaire\\-game\\.ru|solnplast\\.ru|sonata\\-arctica\\.wz\\.cz|songoo\\.wz\\.cz|sonnikforme\\.ru|sonyelektronik\\.com|sosdepotdebilan\\.com|sotkal\\.lark\\.ru|soundfrost\\.org|soup\\.io|souvenirua\\.com|sovetogorod\\.ru|sovetskie\\-plakaty\\.ru|soviet\\-portal\\.do\\.am|sowhoz\\.ru|soyuzexpedition\\.ru|sp\\-laptop\\.ru|sp\\-zakupki\\.ru|space2019\\.top|spacebarnot\\.work|spain\\-poetry\\.com|spartania\\.com\\.ua|spb\\-plitka\\.ru|spb\\-scenar\\.ru|spb\\.ru|spbchampionat\\.ru|special\\-porn\\.com|specstroy36\\.ru|speedup\\-my\\.site|spin2016\\.cf|sport\\-video\\-obzor\\.ru|sportbetfair\\.com|sportobzori\\.ru|sportwizard\\.ru|spravka130\\.ru|spravkavspb\\.net|spravkavspb\\.work|sprawka\\-help\\.com|spscmall\\.xyz|spuemonti\\.net|spy\\-app\\.info|spy\\-sts\\.com|sqadia\\.com|squarespace\\.top|squidoo\\.com|srecorder\\.com|sribno\\.net|ssn\\.is|sssexxx\\.net|ssve\\.ru|st\\-komf\\.ru|sta\\-grand\\.ru|stairliftstrue\\.com|star61\\.de|stardevine\\.com|stariy\\-baku\\.com|start\\.myplaycity\\.com|startraffic\\.online)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 37\n$HTTP[\"referer\"] =~ \"(startufa\\.ru|startwp\\.org|stat\\.lviv\\.ua|statashop\\.xyz|static\\.seders\\.website|statustroll\\.com|stauga\\.altervista\\.org|stavimdveri\\.ru|steame\\.ru|steelmaster\\.lv|stiralkovich\\.ru|stocktwists\\.com|stoki\\.ru|stoletie\\.ru|stoliar\\.org|stomatologi\\.moscow|stop\\-nark\\.ru|stop\\-zavisimost\\.com|store\\-rx\\.com|strady\\.org\\.ua|strana\\-krasoty\\.ru|strana\\-solnca\\.ru|stream\\-tds\\.com|streetfire\\.net|streetfooduncovered\\.com|streha\\-metalko\\.si|strigkaomsk\\.ru|stroi\\-24\\.ru|stroicol\\.net|stroimajor\\.ru|stroiminsk\\.com|stroiminsk\\.org|stromerrealty\\.com|strongholdsb\\.ru|strongtools\\.ga|stroy\\-matrix\\.ru|stroyalp\\.ru|stroydetali\\.ru|stroyka\\-gid\\.ru|stroyka47\\.ru|stroymonolit\\.su|studentguide\\.ru|studiofaca\\.com|stuff\\-about\\-money\\.com|stuffhydra\\.com|stylecaster\\.top|styro\\.ru|su1ufa\\.ru|success\\-seo\\.com|suckoutlet\\.xyz|sudachitravel\\.com|sugarkun\\.com|sugvant\\.ru|sundrugstore\\.com|super\\-seo\\-guru\\.com|superiends\\.org|supermama\\.top|supermesta\\.ru|supermodni\\.com\\.ua|supernew\\.org|superoboi\\.com\\.ua|superpages\\.com|superslots\\-casino\\.online|superslots\\-casino\\.site|superslots\\-cazino\\.online|superslots\\-cazino\\.site|superslotz\\-casino\\.site|superslotz\\-cazino\\.site|supertraffic\\.xyz|supervesti\\.ru|surflinksmedical\\.com|susanholtphotography\\.com|suzanneboswell\\.top|svadba\\-teplohod\\.ru|svarbit\\.com|svarog\\-jez\\.com|svensk\\-poesi\\.com|svet\\-depo\\.ru|svetka\\.info|svetlotorg\\.ru|svetoch\\.moscow|svetodiodoff\\.ru|svoimi\\-rukamy\\.com|svs\\-avto\\.com|swagbucks\\.com|swaplab\\.io|sweet\\.tv|sygraem\\.com|szansadlarolnikow\\.com\\.pl|t\\-machinery\\.ru|t\\-rec\\.su|t3chtonic\\.com|taartstore\\.xyz|tagmeanvice\\.live|taihouse\\.ru|tam\\-gde\\-more\\.ru|tamada69\\.com|tammyblog\\.online|targetpay\\.nl|tasteidea\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 38\n$HTTP[\"referer\"] =~ \"(tastyfoodideas\\.com|tattoo\\-stickers\\.ru|tattoo33\\.ru|tattooha\\.com|taximytishi\\.ru|tccp\\.xyz|tcenavoprosa\\.ru|tcsinksale\\.xyz|tcyh\\.net|td\\-33\\.ru|td\\-abs\\.ru|td\\-l\\-market\\.ru|td\\-perimetr\\.ru|tdbatik\\.com|tds\\-west\\.ru|teastory\\.co|techart24\\.com|technika\\-remont\\.ru|technopellet\\.gr|tecspb\\.ru|tedxrj\\.com|tedy\\.su|teedle\\.co|tehngr\\.ru|telegramdownload10\\.com|telesvoboda\\.ru|telfer\\.ru|teman\\.com\\.ua|tennis\\-bet\\.ru|tentcomplekt\\.ru|teplohod\\-gnezdo\\.ru|teplokomplex\\.ru|teplolidoma\\.ru|terapist\\.xyz|teresablog\\.top|tesla\\-audit\\.ru|teslathemes\\.com|test\\-extra\\-full\\-stack\\-services\\.stream|test\\-prime\\-smm\\-service\\.review|test\\.xyz|texbaza\\.by|texnika\\.com\\.ua|tgsubs\\.com|tgtclick\\.com|thaimassage\\-slon\\.ru|thaoduoctoc\\.com|the\\-torrent\\-tracker\\.blogspot\\.com|the\\-usa\\-games\\.blogspot\\.com|the\\-world\\.ru|theautoprofit\\.ml|thebluenoodle\\.com|thecoral\\.com\\.br|thedownloadfreeonlinegames\\.blogspot\\.com|thedownloadfromwarez\\.blogspot\\.com|thefds\\.net|thegreensociety\\.net|theguardlan\\.com|theheroes\\.ru|thejournal\\.ru|thelotter\\.su|thepokertimer\\.com|therealshop\\.exaccess\\.com|thesensehousehotel\\.com|thesmartsearch\\.net|thewomenlife\\.com|thiegs\\.reco\\.ws|thin\\.me\\.pn|tiandeural\\.ru|tiens2010\\.ru|timeallnews\\.ru|timer4web\\.com|timetorelax\\.biz|timmy\\.by|tip8\\.co|tizanidine4mg\\.blogspot\\.com|tizanidine4mgprice\\.blogspot\\.com|tizanidine4mgstreetprice\\.blogspot\\.com|tizanidine4mgstreetvalue\\.blogspot\\.com|tizanidine4mgtablets\\.blogspot\\.com|tizanidine4mguses\\.blogspot\\.com|tizanidine6mg\\.blogspot\\.com|tizanidineandcipro\\.blogspot\\.com|tizanidineandgabapentin\\.blogspot\\.com|tizanidineandhydrocodone\\.blogspot\\.com|tizanidinecapsules\\.blogspot\\.com|tizanidinecost\\.blogspot\\.com|tizanidinedosage\\.blogspot\\.com|tizanidinedosageforsleep\\.blogspot\\.com|tizanidinedruginteractions\\.blogspot\\.com|tizanidinedrugtest\\.blogspot\\.com|tizanidineduringpregnancy\\.blogspot\\.com|tizanidinefibromyalgia\\.blogspot\\.com|tizanidineformigraines\\.blogspot\\.com|tizanidineforopiatewithdrawal\\.blogspot\\.com|tizanidinehcl2mg\\.blogspot\\.com|tizanidinehcl2mgsideeffects\\.blogspot\\.com|tizanidinehcl2mgtablet\\.blogspot\\.com|tizanidinehcl4mgisitanarcotic\\.blogspot\\.com|tizanidinehcl4mgtab\\.blogspot\\.com|tizanidinehcl4mgtabinfo\\.blogspot\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 39\n$HTTP[\"referer\"] =~ \"(tizanidinehcl4mgtablet\\.blogspot\\.com|tizanidinehclsideeffects\\.blogspot\\.com|tizanidinehydrochloride2mg\\.blogspot\\.com|tizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com|tizanidineinfo\\.blogspot\\.com|tizanidineingredients\\.blogspot\\.com|tizanidineinteractions\\.blogspot\\.com|tizanidinemusclerelaxant\\.blogspot\\.com|tizanidinenarcotic\\.blogspot\\.com|tizanidineonline\\.blogspot\\.com|tizanidineoral\\.blogspot\\.com|tizanidineorflexeril\\.blogspot\\.com|tizanidinepain\\.blogspot\\.com|tizanidinepills\\.blogspot\\.com|tizanidinerecreationaluse\\.blogspot\\.com|tizanidinerestlesslegsyndrome\\.blogspot\\.com|tizanidineshowupondrugtest\\.blogspot\\.com|tizanidinesideeffects\\.blogspot\\.com|tizanidinesideeffectsweightloss\\.blogspot\\.com|tizanidinesleepaid\\.blogspot\\.com|tizanidinestreetprice\\.blogspot\\.com|tizanidinestreetvalue\\.blogspot\\.com|tizanidineusedfor\\.blogspot\\.com|tizanidinevscyclobenzaprine\\.blogspot\\.com|tizanidinevssoma\\.blogspot\\.com|tizanidinevsvalium\\.blogspot\\.com|tizanidinewithdrawal\\.blogspot\\.com|tizanidinewithdrawalsymptoms\\.blogspot\\.com|tizanidinezanaflex\\.blogspot\\.com|tkanorganizma\\.ru|tksn\\.ru|tocan\\.biz|tocan\\.com\\.ua|tokshow\\.online|toloka\\.hurtom\\.com|tomatis\\.gospartner\\.com|tomck\\.com|tommysautomotivecare\\.com|top\\-gan\\.ru|top\\-instagram\\.info|top\\-kasyna\\.com|top\\-l2\\.com|top1\\-seo\\-service\\.com|top10\\-online\\-games\\.com|top10\\-way\\.com|top250movies\\.ru|top8\\.co|topgurudeals\\.com|topmebeltorg\\.ru|topmira\\.com|toposvita\\.com|topquality\\.cf|topseoservices\\.co|topshef\\.ru|topvidos\\.ru|tor\\.vc|torobrand\\.com|torontoplumbinggroup\\.com|torospa\\.ru|torrentgamer\\.net|torrentred\\.games|torrents\\-tracker\\.com|torrnada\\.ru|torture\\.ml|totppgoods\\.xyz|touchmods\\.fr|tourburlington\\.com|tovaroboom\\.vast\\.ru|tpu\\.ru|track\\-rankings\\.online|tracker24\\-gps\\.ru|trade365\\.org|traderzplanet\\.co\\.in|trafaret74\\.ru|trafers\\.com|traffic\\-cash\\.xyz|traffic\\-paradise\\.org|traffic2cash\\.net|traffic2cash\\.org|traffic2cash\\.xyz|traffic2money\\.com|trafficbot\\.life|trafficbot4free\\.xyz|trafficdrive\\.club|trafficgenius\\.xyz|trafficmonetize\\.org|trafficmonetizer\\.org|trafficstudio\\.club|traffictomoney\\.com|trahvid\\.com|tramadolandtizanidine\\.blogspot\\.com|transit\\.in\\.ua|transsex\\-videochat\\.ru|traphouselatino\\.net|travel\\-semantics\\.com|travgoods\\.xyz|traxdom\\.ru|trex\\-casino\\.com|trex\\.casino|tri\\-slona\\.org)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 40\n$HTTP[\"referer\"] =~ \"(trick\\-negotiation\\-cup\\-wonder\\.com|tricolortv\\-online\\.com|trieste\\.io|trion\\.od\\.au|trion\\.od\\.ua|triumf\\-realty\\.ru|trk\\-4\\.net|trubywriting\\.com|truck\\-spite\\-lawyer\\-activity\\.top|truebeauty\\.cc|tsatu\\.edu\\.ua|tsc\\-koleso\\.ru|tsstcorpcddvdwshbbdriverfb\\.aircus\\.com|ttechno\\.net|tuberkulezanet\\.ru|tuberkuleznik\\.ru|tudusale\\.xyz|tula\\.mdverey\\.ru|tuningdom\\.ru|tupper\\-posuda\\.ru|tupper\\-shop\\.ru|turbo\\-suslik\\.org|turist\\-strani\\.ru|turkeyreport\\.tk|turvgori\\.ru|tvand\\.ru|tvfru\\.org|tvgoals\\.tv|tvoystartup\\.ru|twincitiescarservice\\.com|twojebook\\.pl|twsufa\\.ru|twu\\.com\\.ua|tytoona\\.com|tyumen\\.xrus\\.org|u\\-cheats\\.ru|u17795\\.netangels\\.ru|ua\\-company\\.ru|ua\\.tc|uaecdsale\\.xyz|uasb\\.ru|ublaze\\.ru|ucanfly\\.ru|ucban\\.xyz|uchebavchehii\\.ru|uchil\\.net|ucoz\\.ru|ucsfstore\\.xyz|ucsol\\.ru|uctraffic\\.com|udav\\.net|ufa\\.dienai\\.ru|ufa\\.xrus\\.org|ufolabs\\.net|uginekologa\\.com|ukrainian\\-poetry\\.com|ukrcargo\\.com|ukrtvory\\.in\\.ua|ukstmalls\\.xyz|ul\\-potolki\\.ru|ultimateuninstall\\.com|um\\-razum\\.ru|umg\\-stroy\\.ru|umityangin\\.net|undergroundcityphoto\\.com|uni\\.me|unibus\\.su|unimodemhalfduplefw\\.pen\\.io|uniqgen\\.net|unitygame3d\\.com|univerfiles\\.com|unlimitdocs\\.net|unmaroll\\.ya\\.ru|unpredictable\\.ga|upcronline\\.xyz|uptime\\-alpha\\.net|uptime\\-as\\.net|uptime\\-beta\\.net|uptime\\-delta\\.net|uptime\\-eu\\.net|uptime\\-gamma\\.net|uptime\\-us\\.net|uptime\\.com|uptimebot\\.net|uptimechecker\\.com|ural\\-buldozer\\.ru|urbanblog\\.shop|urbanchr\\.online|urblog\\.xyz|urccvfmc\\.bloger\\.index\\.hr|urlopener\\.blogspot\\.com\\.au|urlopener\\.com|urlumbrella\\.com|uruto\\.ru|us\\-america\\.ru|usadacha\\.net|userequip\\.com|uslugi\\-tatarstan\\.ru|ussearche\\.cf|ustion\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 41\n$HTTP[\"referer\"] =~ \"(uterkysale\\.xyz|utrolive\\.ru|uusmsale\\.xyz|uyut\\-dom\\.pro|uyutmaster73\\.ru|uzpaket\\.com|uzungil\\.com|v\\-casino\\.fun|v\\-casino\\.host|v\\-casino\\.ru|v\\-casino\\.site|v\\-casino\\.website|v\\-casino\\.xyz|v\\-cazino\\.online|v\\-cazino\\.ru|vabasa\\.inwtrade\\.com|vaderenergy\\.ru|vadimkravtcov\\.ru|valid\\-cc\\.com|validccseller\\.com|validus\\.pro|valkiria\\-tk\\.ru|vanessablog\\.online|vape\\-x\\.ru|vapmedia\\.org|vapsy\\.com|vardenafil20\\.com|varikozdok\\.ru|vashsvet\\.com|vavada\\-casino\\.host|vavada\\-casino\\.top|vavada\\-cazino\\.host|vavada\\-cazino\\.site|vavilone\\.com|vbabule\\.net|vbikse\\.com|vc\\.ru|vchulkah\\.net|vduplo\\.ru|veerotech\\.com|vegascosmetics\\.ru|vekzdorov\\.ru|veles\\.shop|velobikestock\\.com|veloland\\.in\\.ua|venta\\-prom\\.ru|ventelnos\\.com|ventopt\\.by|veronicablog\\.top|vescenter\\.ru|veselokloun\\.ru|vesnatehno\\.com|vesnatehno\\.ru|vesta\\-lada\\.net|vetbvc\\.ru|vezdevoz\\.com\\.ua|vezuviy\\.su|vgoloveboli\\.net|via\\-gra\\.webstarts\\.com|viagra\\-soft\\.ru|viagra\\.pp\\.ua|viagroid\\.ru|viandpet\\.com|viberdownload10\\.com|video\\-\\-production\\.com|video\\-chat\\.in|video\\-girl\\-online\\.ru|video\\-hollywood\\.ru|video\\-woman\\.com|videochat\\-dating\\.ru|videochat\\.guru|videochat\\.mx|videochat\\.tv\\.br|videochat\\.world|videochaty\\.ru|videofrost\\.com|videofrost\\.net|videokrik\\.net|videos\\-for\\-your\\-business\\.com|videosbox\\.ru|videotop\\.biz|videotuber\\.ru|vidzwap\\.xyz|viel\\.su|vigrx\\-original\\.ru|viktoria\\-center\\.ru|vilingstore\\.net|vinsit\\.ru|vip\\-dom\\.in|vip\\-parfumeria\\.ru|vipsiterip\\.org|virtchats\\.ru|virtual\\-love\\-video\\.ru|virtual\\-sex\\-chat\\.ru|virtual\\-sex\\-time\\.ru|virtual\\-sex\\-videochat\\.ru|virtual\\-zaim\\.ru|virtualbb\\.com|virus\\-schutzmasken\\.de|visa\\-china\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 42\n$HTTP[\"referer\"] =~ \"(visa\\-pasport\\.ru|vita\\.com\\.hr|vitanail\\.ru|viven\\.host\\.sk|vizag\\.kharkov\\.ua|vk\\-mus\\.ru|vk\\.com|vkak\\.ru|vkonche\\.com|vkontaktemusic\\.ru|vkontarkte\\.com|vksaver\\-all\\.ru|vksex\\.ru|vladhistory\\.com|vladtime\\.ru|vltai\\.com|vmnmvzsmn\\.over\\-blog\\.com|vod\\.com\\.ua|vodabur\\.by|vodaodessa\\.com|voditeltrezviy\\.ru|vodkoved\\.ru|volgograd\\.xrus\\.org|volond\\.com|voloomoney\\.com|volume\\-pills\\.biz|voprosotvet24\\.ru|voronezh\\.xrus\\.org|vostgard\\.com|vostoktrade\\.info|vote\\-up\\.ru|vozbujdenie\\.com|vpdr\\.pl|vpnhowto\\.info|vrazbor59\\.ru|vriel\\.batcave\\.net|vrnelectro\\.ru|vrnhnmall\\.xyz|vrotike\\.ru|vsdelke\\.ru|vseigru\\.one|vseigry\\.fun|vseprobrak\\.ru|vsesubwaysurfers\\.com|vseuznaem\\.com|vucms\\.com|vulkan\\-nadengi\\.ru|vulkan\\-oficial\\.com|vulkanrussia1\\.ru|vykup\\-avto\\-krasnodar\\.ru|vykupavto\\-krasnodar\\.ru|vzheludke\\.com|vzlom\\-na\\-zakaz\\.com|vzubah\\.com|vzube\\.com|vzubkah\\.com|w2mobile\\-za\\.com|w3javascript\\.com|w7s\\.ru|wakeupseoconsultant\\.com|wallabag\\.malooma\\.bzh|wallet\\-prlzn\\.space|wallinside\\.top|wallpaperdesk\\.info|wallpapers\\-all\\.com|wallpapers\\-best\\.com|wallpapersdesk\\.info|wallstore\\.xyz|wandamary\\.online|wapsite\\.me|warmex\\.com\\.ua|warningwar\\.ru|wasabisale\\.xyz|watch\\-movies\\.ru|wave\\-games\\.ru|wayfcoin\\.space|wbjm\\.net|wcb\\.su|wdfdocando\\.com|wdss\\.com\\.ua|we\\-ping\\-for\\-youian\\.info|we\\-ping\\-for\\-youic\\.info|web\\-analytics\\.date|web\\-betting\\.ru|web\\-lazy\\-services\\.review|web\\-list\\.xyz|web\\-revenue\\.xyz|web\\.cvut\\.cz|webalex\\.pro|webinstantservice\\.com|webix\\.me|webjam\\.com|weblibrary\\.win|webmaster\\-traffic\\.com|webmonetizer\\.net|webradiology\\.ru|webs\\.com|website\\-analytics\\.online|website\\-analyzer\\.info|website\\-errors\\-scanner\\.com)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 43\n$HTTP[\"referer\"] =~ \"(website\\-services\\-promotion\\.bid|website\\-services\\-promotion\\.review|website\\-services\\-promotion\\.stream|website\\-services\\-promotion\\.win|website\\-services\\-seo\\.bid|website\\-services\\-seo\\.stream|website\\-services\\-seo\\.win|website\\-services\\-smm\\.bid|website\\-services\\-smm\\.review|website\\-services\\-smm\\.stream|website\\-services\\-smm\\.win|website\\-services\\.review|website\\-services\\.stream|website\\-services\\.win|website\\-speed\\-check\\.site|website\\-speed\\-checker\\.site|website\\-speed\\-up\\.site|website\\-speed\\-up\\.top|website\\-stealer\\-warning\\-alert\\.hdmoviecams\\.com|websitebottraffic\\.club|websitebottraffic\\.host|websites\\-reviews\\.com|websocial\\.me|webtherapy\\.ru|weburlopener\\.com|wedding\\-salon\\.net|weebly\\.com|weekes\\.biz\\.tc|weightatraining\\.com|weightbelts\\.ru|welck\\.octopis\\.com|welcomeauto\\.ru|weprik\\.ru|wetgames\\.ru|wfdesigngroup\\.com|whatistizanidine2mg\\.blogspot\\.com|whatistizanidinehclusedfor\\.blogspot\\.com|whatsappdownload10\\.com|whereiskentoday\\.com|wicivow\\.007h\\.ml|wikes\\.20fr\\.com|williamrobsonproperty\\.com|winx\\-play\\.ru|witherrom55\\.eklablog\\.fr|wjxmenye\\.com|wmasterlead\\.com|wnoz\\.de|woman\\-h\\.ru|woman\\-orgasm\\.ru|woman\\-tampon\\.ru|womens\\-journal\\.net|womensplay\\.net|womensterritory\\.ru|wordpress\\-crew\\.net|wordpresscore\\.com|work\\-from\\-home\\-earn\\-money\\-online\\.com|workius\\.ru|workona\\.com|works\\.if\\.ua|world\\-mmo\\.com|worldgamenews\\.com|worldhistory\\.biz|worldis\\.me|worldlovers\\.ru|worldmed\\.info|worldofbtc\\.com|wormix\\-cheats\\.ru|wowas31\\.ucoz\\.ru|woweb\\.com\\.ua|wpnull\\.org|wptraffic\\.xyz|wrazilwispolecznie\\.pl|wrc\\-info\\.ru|writingservices17\\.blogspot\\.ru|wrona\\.it|wstroika\\.ru|wufak\\.com|wurr\\.voila\\.net|ww1943\\.ru|ww2awards\\.info|www\\-lk\\-rt\\.ru|www\\.gelendzhic\\.ru|www1\\.free\\-share\\-buttons\\.top|wzgyyq\\.com|x\\-lime\\.com|x\\-lime\\.net|x\\-musics\\.com|x\\-stars\\.ru|x5market\\.ru|xaker26\\.net|xbaboon\\.com|xboxster\\.ru|xexe\\.club|xfire\\.com|xgftnlrt\\.bloger\\.index\\.hr|xion\\.cash|xjrul\\.com|xkaz\\.org|xlolitka\\.com|xmnb\\.net)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 44\n$HTTP[\"referer\"] =~ \"(xn\\-\\-\\-\\-\\-\\-\\-53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-\\-6cdbciescapvf0a8bibwx0a1bu\\.xn\\-\\-90ais|xn\\-\\-\\-\\-\\-6kcaacnblni5c5bicdpcmficy\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-6kcamwewcd9bayelq\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-7kcaaxchbbmgncr7chzy0k0hk\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-7kceclhb4abre1b4a0ccl2fxch1a\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-8kcatubaocd1bneepefojs1h2e\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-\\-clckdac3bsfgdft3aebjp5etek\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabb9a1b7bddgm6a1i\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabhjc3ccc5aggbzfmfi\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabhv4abd8aih6bb7k\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbabm1ahc4b2aqff\\.su|xn\\-\\-\\-\\-7sbabn5abjehfwi8bj\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbaphztdjeboffeiof6c\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbbpe3afguye\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-7sbho2agebbhlivy\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbaki4azawu5b\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbarihbihxpxqgaf0g1e\\.xn\\-\\-80adxhks|xn\\-\\-\\-\\-8sbbjimdeyfsi\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbdbjgb1ap7a9c4czbh\\.xn\\-\\-p1acf|xn\\-\\-\\-\\-8sbhefaln6acifdaon5c6f4axh\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sblgmbj1a1bk8l\\.xn\\-\\-\\-\\-161\\-4vemb6cjl7anbaea3afninj\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbowe2akbcd4h\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-8sbpmgeilbd8achi0c\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-btbdvdh4aafrfciljm6k\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ctbbcjd3dbsehgi\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ctbfcdjl8baejhfb1oh\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ctbigni3aj4h\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-dtbffp5aagjgfm\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-ftbeoaiyg1ak1cb7d\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-gtbdb0beu1bb8gj\\.xn\\-\\-p1ai|xn\\-\\-\\-\\-itbbudqejbfpg3l\\.com|xn\\-\\-\\-\\-jtbjfcbdfr0afji4m\\.xn\\-\\-p1ai|xn\\-\\-78\\-6kc6akkhn3a3k\\.xn\\-\\-p1ai|xn\\-\\-78\\-6kcmzqfpcb1amd1q\\.xn\\-\\-p1ai|xn\\-\\-80aaafbn2bc2ahdfrfkln6l\\.xn\\-\\-p1ai|xn\\-\\-80aaajbdbddwj2alwjieei2afr3v\\.xn\\-\\-p1ai|xn\\-\\-80aaajkrncdlqdh6ane8t\\.xn\\-\\-p1ai|xn\\-\\-80aaaks3bbhabgbigamdr2h\\.xn\\-\\-p1ai|xn\\-\\-80aabcsc3bqirlt\\.xn\\-\\-p1ai|xn\\-\\-80aanaardaperhcem4a6i\\.com|xn\\-\\-80ab4aa2g\\.xn\\-\\-p1ai|xn\\-\\-80adaggc5bdhlfamsfdij4p7b\\.xn\\-\\-p1ai|xn\\-\\-80adgcaax6acohn6r\\.xn\\-\\-p1ai|xn\\-\\-80aeahghtf8ac5i\\.xn\\-\\-p1ai|xn\\-\\-80aeb6argv\\.xn\\-\\-p1ai|xn\\-\\-80aebzmbfeebe\\.xn\\-\\-p1ai|xn\\-\\-80ahdheogk5l\\.xn\\-\\-p1ai|xn\\-\\-80ahvj9e\\.xn\\-\\-p1ai|xn\\-\\-80ajbshivpvn2i\\.xn\\-\\-p1ai|xn\\-\\-80ajjbdhgmudixfjc8c5a9df8b\\.xn\\-\\-p1ai|xn\\-\\-90acenikpebbdd4f6d\\.xn\\-\\-p1ai|xn\\-\\-90acjmaltae3acm\\.xn\\-\\-p1acf|xn\\-\\-90adhhccf5aeewt7j\\.xn\\-\\-p1ai|xn\\-\\-b1adccayqiirhu\\.xn\\-\\-p1ai|xn\\-\\-b1ag5cfn\\.xn\\-\\-p1ai|xn\\-\\-b1agm2d\\.net|xn\\-\\-c1acygb\\.xn\\-\\-p1ai|xn\\-\\-d1abj0abs9d\\.in\\.ua|xn\\-\\-d1aifoe0a9a\\.top|xn\\-\\-e1aaajzchnkg\\.ru\\.com|xn\\-\\-e1aahcgdjkg4aeje6j\\.kz|xn\\-\\-e1agf4c\\.xn\\-\\-80adxhks|xn\\-\\-e1aggki3c\\.xn\\-\\-80adxhks|xn\\-\\-h1ahbi\\.com\\.ua|xn\\-\\-hxazdsfy\\.blogspot\\.com|xn\\-\\-l1aengat\\.xn\\-\\-p1ai|xn\\-\\-mhg\\.com|xn\\-\\-oogle\\-wmc\\.com|xn\\-\\-q1a\\.xn\\-\\-b1aube0e\\.xn\\-\\-c1acygb\\.xn\\-\\-p1ai|xnxx\\-n\\.com|xolodremont\\.ru|xpert\\.com\\.ua|xportvusbdriver8i\\.snack\\.ws|xpresscare\\.ru|xrp\\-ripple\\.info|xrus\\.org|xsion\\.net|xtraffic\\.plus|xtrafficplus\\.com|xtrafficplus\\.online|xtrafficplus\\.shop|xtrafficplus\\.xyz|xtubeporno\\.net|xvideosbay\\.com|xxart\\.ru|xxx\\-treker\\.ru|xxxhamster\\.me|xxxtube69\\.com|xxxvideochat\\.ru|xz618\\.com|xzlive\\.com|yaderenergy\\.ru|yaminecraft\\.ru|yeartwit\\.com|yellowstonevisitortours\\.com|yes\\-com\\.com|yes\\-do\\-now\\.com|yhirurga\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Block group 45\n$HTTP[\"referer\"] =~ \"(ykecwqlixx\\.ru|ynymnwbm\\.bloger\\.index\\.hr|yodse\\.io|yoga4\\.ru|youandcredit\\.ru|youbloodyripper\\.com|youdesigner\\.kz|yougame\\.biz|yougetsignal\\.com|youghbould\\.wordpress\\.com|youhack\\.info|youjizz\\.vc|youporn\\-forum\\.ga|youporn\\-forum\\.uni\\.me|youporn\\-ru\\.com|your\\-good\\-links\\.com|your\\-tales\\.ru|yourdesires\\.ru|youresponsive\\.com|yourothersite\\.com|yoursearch\\.me|yourserverisdown\\.com|yoursite\\.com|yourtraffic\\.club|youtoner\\.it|youtubedownload\\.org|yqpc\\.net|yuarra\\.pluto\\.ro|yubikk\\.info|yugk\\.net|yugo\\-star\\.ru|yunque\\.pluto\\.ro|yur\\-p\\.ru|yurcons\\.pro|yurgorod\\.ru|yuristproffi\\.ru|zagadki\\.in\\.ua|zahodi2hydra\\.net|zahvat\\.ru|zaidia\\.xhost\\.ro|zaim\\-pod\\-zalog\\-krasnodar\\.ru|zaimhelp\\.ru|zajm\\-pod\\-zalog\\-nedvizhimosti\\.ru|zakazfutbolki\\.com|zakaznoy\\.com\\.ua|zakazvzloma\\.com|zakis\\-azota24\\.ru|zakisazota\\-official\\.com|zakon\\-ob\\-obrazovanii\\.ru|zaloadi\\.ru|zamolotkom\\.ru|zapnado\\.ru|zarabotat\\-na\\-sajte\\.ru|zarabotat\\-v\\-internete\\.biz|zarenica\\.net|zastenchivosti\\.net|zastroyka\\.org|zavod\\-gm\\.ru|zazagames\\.org|zdesformula\\.ru|zdesoboi\\.com|zdm\\-auto\\.com|zdm\\-auto\\.ru|zdorovie\\-nogi\\.info|zebradudka\\.com|zelena\\-mriya\\.com\\.ua|zeleznobeton\\.ru|zerocash\\.msk\\.ru|zexhgoods\\.xyz|zhcsapp\\.net|zhoobintravel\\.com|zhorapankratov7\\.blogspot\\.com|zigarettenonl\\.canalblog\\.com|zigarettenonlinekaufen\\.tumblr\\.com|zigarettenonlinekaufen1\\.bloog\\.pl|zigarettenonlinekaufen1\\.blox\\.pl|zigarettenonlinekaufen2\\.bloog\\.pl|zigarettenonlinekaufen2\\.drupalgardens\\.com|zigzog\\.ru|zlatnajesen\\.com|zmoda\\.hostreo\\.com|znakomstva\\-moskva77\\.ru|znakomstva\\-piter78\\.ru|znakomstvaonlain\\.ru|znaniyapolza\\.ru|zojirushi\\-products\\.ru|zolotoy\\-lis\\.ru|zonefiles\\.bid|zoominfo\\.com|zot\\.moscow|zt\\-m\\.ru|zuchn\\.com|zverokruh\\-shop\\.cz|zvetki\\.ru|zvooq\\.eu|zvuker\\.net|zyzzcentral\\.ru)\" {\n    url.redirect = (\"^/(.*)\" => \"http://127.0.0.1/\")\n}\n\n# Alternative: Use mod_magnet for better performance with large domain lists\n# See: https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModMagnet\n"
  },
  {
    "path": "referral-spam.vcl",
    "content": "# https://github.com/Stevie-Ray/referrer-spam-blocker\n# Updated 2026-03-04 18:14:04\n\nsub block_referral_spam {\n\tif (\n\t\treq.http.Referer ~ \"(?i)0\\-0\\.fr\" ||\n\t\treq.http.Referer ~ \"(?i)000free\\.us\" ||\n\t\treq.http.Referer ~ \"(?i)007agent\\-i\\.fr\" ||\n\t\treq.http.Referer ~ \"(?i)00author\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)00go\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)00it\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)01casino\\-x\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)033nachtvandeliteratuur\\.nl\" ||\n\t\treq.http.Referer ~ \"(?i)03e\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)03p\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)0n\\-line\\.tv\" ||\n\t\treq.http.Referer ~ \"(?i)1\\-88\\.vip\" ||\n\t\treq.http.Referer ~ \"(?i)1\\-99seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)1\\-best\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)1\\-free\\-share\\-buttons\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)100\\-reasons\\-for\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)100dollars\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)100searchengines\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)101flag\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)11235813\\.webzdarma\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)12\\-reasons\\-for\\-seo\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)12masterov\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)12u\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)15\\-reasons\\-for\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)16lv\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)1hwy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)1kinobig\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)1kreditzaim\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)1pamm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)1st\\-urist\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)1webmaster\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)1wek\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)1winru\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)1x\\-slot\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)1x\\-slots\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)1xbet\\-entry\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)1xbetcc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)1xbetonlines1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)1xbetportugal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)1xbetts\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)1xslot\\-casino\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)1xslot\\-casino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)1xslot\\-casino\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)1xslot\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)1xslots\\-africa\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)1xslots\\-brasil\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)1xslots\\-casino\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)1xslots\\.africa\" ||\n\t\treq.http.Referer ~ \"(?i)1xslots\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)2\\-best\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)2\\-easy\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)2\\-go\\-now\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)2015god\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)24chasa\\.bg\" ||\n\t\treq.http.Referer ~ \"(?i)24h\\.doctor\" ||\n\t\treq.http.Referer ~ \"(?i)24videos\\.tv\" ||\n\t\treq.http.Referer ~ \"(?i)24x7\\-server\\-support\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)256bit\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)273\\-fz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)2ads\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)2itech\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)2kata\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)2nt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)2your\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)3\\-best\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)3\\-letter\\-domains\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)3dgame3d\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)3dracergames\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)3waynetworks\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)4\\-best\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)40momporntube\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)45en\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)45tahunkhongguan\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)4inn\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)4ip\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)4istoshop\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)4webmasters\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)4webmasters\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)4xcasino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)5\\-best\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)5\\-steps\\-to\\-start\\-business\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)5elementov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)5forex\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)6\\-best\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)69\\-13\\-59\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)6hopping\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)7\\-best\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)70casino\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)76brighton\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)76brighton\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)7kop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)7makemoneyonline\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)7milliondollars\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)7ooo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)7zap\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)8\\-best\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)84lv\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)8xv8\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)9\\-best\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)99\\-reasons\\-for\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)QIWI\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)a\\-elita\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)a\\-hau\\.mk\" ||\n\t\treq.http.Referer ~ \"(?i)a14download\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)abacoasale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)abaiak\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)abbanreddy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)abc\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)abcdefh\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)abcdeg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)abclauncher\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)abiente\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)abovetherivernc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)abtasty\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)abuser\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)academia\\-nsk\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)acads\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)acarreo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)account\\-my1\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)accs\\-store\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)actata\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)actualremont\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)acunetix\\-referrer\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)adanih\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)adcash\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)addblueoff\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)adelachrist\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)adelly\\.bg\" ||\n\t\treq.http.Referer ~ \"(?i)adf\\.ly\" ||\n\t\treq.http.Referer ~ \"(?i)adpostmalta\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)adrenalinebot\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)adrenalinebot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)adspart\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)adtiger\\.tk\" ||\n\t\treq.http.Referer ~ \"(?i)adult\\-video\\-chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)adultfullhd\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)adventureparkcostarica\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)advertisefree\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)adviceforum\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)advocatemsk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)advokateg\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)advokateg\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)advokateg\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)advokateg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)aerodizain\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aerogo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aerotour\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)affiliate\\-programs\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)affordablewebsitesandmobileapps\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)afora\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)afshan\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)agreda\\.pluto\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)agro\\-gid\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)agtl\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)ahecmarket\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)ahhjf\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ahrefs\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ai\\-seo\\-services\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aibolita\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aidarmebel\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)aimeesblog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)aimiot\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)aitiman\\.ae\" ||\n\t\treq.http.Referer ~ \"(?i)akama\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)akmussale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)akuhni\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)akusherok\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)akvamaster\\.dp\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)alborzan\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)albuteroli\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)alcobutik24\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)alert\\-fdm\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)alert\\-fjg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)alert\\-hgd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)alert\\-jdh\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)alertomall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)alessandraleone\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)alexsander\\.ch\" ||\n\t\treq.http.Referer ~ \"(?i)alfa\\-medosmotr\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)alfa9\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)alfabot\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)alfapro\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)alguiblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)alibestsale\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aliexpress\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aliexsale\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)alif\\-ba\\-ta\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)alinabaniecka\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)alive\\-ua\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aliviahome\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)alkanfarma\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)all\\-news\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)all4bath\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)all4invest\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)allcredits\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)allcryptonews\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)alldownload\\.pw\" ||\n\t\treq.http.Referer ~ \"(?i)allergick\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)allergija\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)allfan\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)allforminecraft\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)allknow\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)allkrim\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)allmarketsnewdayli\\.gdn\" ||\n\t\treq.http.Referer ~ \"(?i)allnews\\.md\" ||\n\t\treq.http.Referer ~ \"(?i)allnews24\\.in\" ||\n\t\treq.http.Referer ~ \"(?i)allpdfmags\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)allproblog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)allsilver925\\.co\\.il\" ||\n\t\treq.http.Referer ~ \"(?i)alltheviews\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)allvacancy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)allwomen\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)allwrighter\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)alma\\-mramor\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)alot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)alp\\-rk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)alphaforum\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)alphaopt24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)alpharma\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)alpinaskate\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)altermix\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)alveris\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)am\\-se\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)amanda\\-porn\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)amatocanizalez\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)amazon\\-seo\\-service\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)amoi\\.tn\" ||\n\t\treq.http.Referer ~ \"(?i)amoremio\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)amos\\-kids\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)amospalla\\.es\" ||\n\t\treq.http.Referer ~ \"(?i)amp\\-project\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)amt\\-k\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)amtel\\-vredestein\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)amylynnandrews\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)anabolics\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)anal\\-acrobats\\.hol\\.es\" ||\n\t\treq.http.Referer ~ \"(?i)analytics\\-ads\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)analyze\\-best\\-copywriting\\-services\\.party\" ||\n\t\treq.http.Referer ~ \"(?i)analyze\\-extra\\-analytic\\-service\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)ananumous\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)anapa\\-inns\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)andrewancheta\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)android\\-style\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)android\\-systems\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)android\\-vsem\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)android4fun\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)androids\\-store\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)animalphotos\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)animebox\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)animenime\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)annaeydlish\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)anrtmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)anti\\-crisis\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)anticrawler\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)antiguabarbuda\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)antonovich\\-design\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)anydesk\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)aosheng\\-tech\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aoul\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)apartmentbay\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)apartmentratings\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)apilian\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)apishops\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)apollon\\-market\\-url\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)applepharma\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)apteka\\-doc\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)apteka\\-pharm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)apteka\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)apxeo\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)arabic\\-poetry\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aramaicmedia\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)arate\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)arcadepages\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)arcarticle\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)architecturebest\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)arendadogovor\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)arendakvartir\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)arendas\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)arendovalka\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)argo\\-visa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)arkansale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)arkartex\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)arkkivoltti\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)arpe\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)arraty\\.altervista\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)artblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)artclipart\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)artdeko\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)artefakct\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)artpaint\\-market\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)artparquet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)artpress\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)artsmarket\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)arturs\\.moscow\" ||\n\t\treq.http.Referer ~ \"(?i)aruplighting\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)asacopaco\\.tk\" ||\n\t\treq.http.Referer ~ \"(?i)ascotgoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)asia\\-forum\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ask\\-yug\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)asmxsatadriverin\\.aircus\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)astimvnc\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)asupro\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)asynt\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)aszokshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)atlant\\-auto\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)atlasvkusov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)atleticpharm\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)atley\\.eu\\.pn\" ||\n\t\treq.http.Referer ~ \"(?i)atmagroup\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)atoblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)atyks\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)aucoinhomes\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)audiobangout\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ausergrubhof\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)australia\\-opening\\-times\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)auto\\-b2b\\-seo\\-service\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)auto\\-complex\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)auto\\-kia\\-fulldrive\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)auto\\-moto\\-elektronika\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)auto\\-news\\-digest\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)auto\\-seo\\-service\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)auto\\-seo\\-service\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)auto\\-zapchasti\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)auto\\.rusvile\\.lt\" ||\n\t\treq.http.Referer ~ \"(?i)auto4style\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)autoblog\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)autobrennero\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)autobudpostach\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)autofuct\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)autoloans\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)autolombard\\-krasnodar\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)automate\\-amazon\\-affiliation\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)automobile\\-spec\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)autonew\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)autoseo\\-service\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)autoseo\\-traffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)autoseo\\-trial\\-for\\-1\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)autoseoservice\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)autoseotips\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)autoservic\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)autotop\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)autovideobroadcast\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)autowebmarket\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)avcoast\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)avek\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)aviapanda\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)aviaseller\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)aviav\\.ru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)avitocars\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)aviva\\-limoux\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)avkzarabotok\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)avkzarabotok\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)avon\\-severozapad\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)avtoarenda\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)avtocredit\\-legko\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)avtointeres\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)avtorskoe\\-vino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)avtovolop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)avtovykup\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)awency\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)aworlds\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)axcus\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)ayerbo\\.xhost\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)ayongoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)azadnegar\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)azartclub\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)azartniy\\-bonus\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)azazu\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)azbuka\\-mo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)azbukadiets\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)azbukafree\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)azlex\\.uz\" ||\n\t\treq.http.Referer ~ \"(?i)b\\-buyeasy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)b2b\\-lounge\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bablonow\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)baciakte\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)backgroundpictures\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)backlinks\\-fast\\-top\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bag77\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bahisgunceladresi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)baixar\\-musicas\\-gratis\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bala\\.getenjoyment\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)baladur\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)balakhna\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)balayazh\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)balitouroffice\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)balkanfarma\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)balkanfarma\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)balois\\.worldbreak\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bambi\\.ck\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)banan\\.tv\" ||\n\t\treq.http.Referer ~ \"(?i)bankcrediti\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bankhummer\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)bankiem\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)barbarahome\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)bard\\-real\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)bashtime\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)basisches\\-wasser\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)batietiket\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)batut\\-fun\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bausparen\\.bz\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)bavariagid\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)bavsac\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bazaronline24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bbtec\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)bdf\\-tracker\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)beachtoday\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)beamfall\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)beauby\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)beauty\\-clinic\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)beauty\\-lesson\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)beclean\\-nn\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bedroomlighting\\.us\" ||\n\t\treq.http.Referer ~ \"(?i)begalka\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)belinvestdom\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)belreferatov\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)berdasovivan\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)beremenyashka\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)berglion\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)berkinan\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)berlininsl\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)berrymall\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-deal\\-hdd\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-mam\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-offer\\-hdd\\-1\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-offer\\-hdd\\-1\\.space\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-offer\\-hdd\\-1\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-offer\\-hdd\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-offer\\-hdd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-ping\\-service\\-usa\\-1\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-ping\\-service\\-usa\\-1\\.space\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-ping\\-service\\-usa\\-1\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-ping\\-service\\-usa\\.blue\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-ping\\-service\\-usa\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-ping\\-service\\-usa\\.space\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-ping\\-service\\-usa\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-ping\\-service\\-usa\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-printmsk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-seo\\-offer\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-seo\\-service\\.tk\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-seo\\-software\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)best\\-seo\\-solution\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bestbookclub\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bestchoice\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)bestempresas\\.es\" ||\n\t\treq.http.Referer ~ \"(?i)bestfortraders\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)besthatcheries\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bestleofferhdd\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bestmobilityscooterstoday\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bestofferfyhdd\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bestofferhddacy\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bestofferhddbyt\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bestofferhddeed\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bestofferhddity\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bestofferifyhdd\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bestofferswalkmydogouteveryday\\.gq\" ||\n\t\treq.http.Referer ~ \"(?i)bestorofferhdd\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bestplacetobuyeriacta\\.jw\\.lt\" ||\n\t\treq.http.Referer ~ \"(?i)bestvpnrating\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bestwebsiteawards\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bestwebsitesawards\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bet\\-prognoz\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bet\\-winner1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bet2much\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)betonka\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)betslive\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)betterhealthbeauty\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bettorschool\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)betune\\.onlinewebshop\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)betwinservice\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)beyan\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)bez\\-zabora\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bezcmexa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bezlimitko\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bezprostatita\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bezsporno\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)beztuberkuleza\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bhf\\.vc\" ||\n\t\treq.http.Referer ~ \"(?i)bibprsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bif\\-ru\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bigcities\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)biglistofwebsites\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)biketank\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)billiard\\-classic\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)billigerstrom\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)billyblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)bimatoprost\\-careprost\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bimatoprost\\-careprost\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)bin\\-brokers\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)binokna\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)binomo\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)bio\\-japan\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)bio\\-market\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)bio\\.trade\\-jp\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)bioca\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)biplanecentre\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bird1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)birzha\\-truda\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)bisign\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bitcoin\\-ua\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)bitcoins\\-forum\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)bitcoins\\-forum\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bitcoins\\-forum\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)bitcoins\\-forum\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)bitcoins\\-live\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)biteg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bitniex\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)biz\\-law\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)biznesluxe\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)biznesrealnost\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)biznesschat\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)bizru\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bki24\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bkns\\.vn\" ||\n\t\treq.http.Referer ~ \"(?i)black\\-friday\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)black\\-tip\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)blackhatworth\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)blackle\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)blackplanet\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)blackwitchcraft\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)blancablog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)blavia\\.00author\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bleacherreport\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)blockchaintop\\.nl\" ||\n\t\treq.http.Referer ~ \"(?i)blockworld\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)blog\\.f00kclan\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)blog\\.koorg\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)blog\\.latuti\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)blog\\.remote\\-computer\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)blog\\.xsk\\.in\" ||\n\t\treq.http.Referer ~ \"(?i)blog\\.yam\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)blog100\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)blog2019\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)blog2019\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)blog4u\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)blogarun\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)bloggen\\.be\" ||\n\t\treq.http.Referer ~ \"(?i)bloggers\\.nl\" ||\n\t\treq.http.Referer ~ \"(?i)blogig\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)blogking\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)bloglag\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)blognet\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)blogorganictraffic\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)blogos\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)blogping\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)blogs\\.rediff\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)blogseo\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)blogstar\\.fun\" ||\n\t\treq.http.Referer ~ \"(?i)blogster\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)blogtotal\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)blogtraffic\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)blogua\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)blue\\-square\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)bluerobot\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bmusshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bo\\-vtb24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)board\\.f00d\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)bobba\\.dzaba\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bodybuilding\\-shop\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)boleznikogi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bolezniorganov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)boltalko\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)boltushkiclub\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bombla\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)bonkers\\.name\" ||\n\t\treq.http.Referer ~ \"(?i)bonniesblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)bonus\\-betting\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bonus\\-spasibo\\-sberbank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bonus\\-vtb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bonux\\.nextview\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bookmaker\\-bet\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bookmark4you\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)bookmark4you\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bookmark4you\\.com\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)books\\-top\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)boole\\.onlinewebshop\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)boost\\-my\\-site\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)boost24\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)boostmyppc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bosefux\\.esy\\.es\" ||\n\t\treq.http.Referer ~ \"(?i)bosman\\.pluto\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)bostonline\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bot\\-traffic\\.icu\" ||\n\t\treq.http.Referer ~ \"(?i)bot\\-traffic\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)botamycos\\.fr\" ||\n\t\treq.http.Referer ~ \"(?i)bottraffic\\.live\" ||\n\t\treq.http.Referer ~ \"(?i)bottraffic143\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bottraffic329\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bottraffic4free\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)bottraffic4free\\.host\" ||\n\t\treq.http.Referer ~ \"(?i)bottraffic999\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bouda\\.kvalitne\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)bowigosale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bpro1\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)bradleylive\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)brains2\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)brakehawk\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)brandnewtube\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)brandov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)brateg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)brauni\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)bravica\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)bravica\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bravica\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)bravica\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)bravica\\.news\" ||\n\t\treq.http.Referer ~ \"(?i)bravica\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)bravica\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)bravica\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bravica\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)break\\-the\\-chains\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)breget74\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)brendbutik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)briankatrine\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)brickmaster\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)brillianty\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)bristolhostel\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bristolhotel\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bristolhotel\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)britneyblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)brk\\-rti\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)brokergid\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)brooklyn\\-ads\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)brooklynsays\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)brothers\\-smaller\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)brus\\-vsem\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)brus\\.city\" ||\n\t\treq.http.Referer ~ \"(?i)brusilov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bsell\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)btcnix\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)btt\\-club\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)budilneg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)budmavtomatika\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)budpost\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)bufetout\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)bugof\\.gq\" ||\n\t\treq.http.Referer ~ \"(?i)buhproffi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)buigas\\.00it\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buildnw\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)buildwithwendy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buketeg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bukleteg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)bulgaria\\-web\\-developers\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buqayy0\\.livejournal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bur\\-rk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)burger\\-imperia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)burn\\-fat\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)business\\-online\\-sberbank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)buttons\\-for\\-website\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buttons\\-for\\-your\\-website\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buy\\-cheap\\-online\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)buy\\-cheap\\-pills\\-order\\-online\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buy\\-forum\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)buy\\-meds24\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buyantiviralwp\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buyessay3\\.blogspot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)buyessaynow\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)buyessayonline19\\.blogspot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)buyfriend\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)buyk\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)buynorxx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buypharmacydrug\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buypillsonline24h\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buypillsorderonline\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buypuppies\\.ca\" ||\n\t\treq.http.Referer ~ \"(?i)buyscabiescream\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buytizanidineonline\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buytizanidineonlinenoprescription\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)buyviagraa\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bvps8\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)bycontext\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)byme\\.se\" ||\n\t\treq.http.Referer ~ \"(?i)bytimedance\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)c\\-english\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)c2bit\\.hk\" ||\n\t\treq.http.Referer ~ \"(?i)californianews\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)call\\-of\\-duty\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)callejondelpozo\\.es\" ||\n\t\treq.http.Referer ~ \"(?i)calvet\\.altervista\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)cancerfungus\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)candida\\-international\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)candida\\-society\\.org\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)cannazon\\-market\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)canoncdriverq3\\.pen\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)canyougethighofftizanidine\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)canzoni\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)carabela\\.com\\.do\" ||\n\t\treq.http.Referer ~ \"(?i)carbon\\-linger\\-hierarchy\\-suntan\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)carder\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)carder\\.tv\" ||\n\t\treq.http.Referer ~ \"(?i)carders\\.ug\" ||\n\t\treq.http.Referer ~ \"(?i)cardiosport\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)cardsdumps\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cardsharp1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cardul\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)carezi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)carfax\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)carivka\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)carloans\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)carscrim\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)carsdined\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)carsnumber\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)carson\\.getenjoyment\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)carsoncitypizza\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cartechnic\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)casablancamanor\\.co\\.za\" ||\n\t\treq.http.Referer ~ \"(?i)cashforum\\.cc\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-top3\\.fun\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-top3\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-top3\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-top3\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-top3\\.space\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-top3\\.website\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-v\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-vulkane\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-x\\-now\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)casino\\-x\\.host\" ||\n\t\treq.http.Referer ~ \"(?i)casinosbewertung\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)casinox\\-jp\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)castingbank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)catalogs\\-parts\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)catherinemill\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)catterybengal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cattyhealth\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cauxmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cayado\\.snn\\.gr\" ||\n\t\treq.http.Referer ~ \"(?i)cazino\\-v\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)cazino\\-v\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cbcseward\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cbox\\.ws\" ||\n\t\treq.http.Referer ~ \"(?i)ccfullzshop\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)celestepage\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)celldog\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cenokos\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cenoval\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)centre\\-indigo\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)centrumcoachingu\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cercacamion\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)certifywebsite\\.win\" ||\n\t\treq.http.Referer ~ \"(?i)cezartabac\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)cfsrating\\.sonicwall\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cgi2\\.nintendo\\.co\\.jp\" ||\n\t\treq.http.Referer ~ \"(?i)chainii\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)channel\\-badge\\-betray\\-volcanic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)chastnoeporno\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)chatmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)chatrazvrat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)chatroulette\\.life\" ||\n\t\treq.http.Referer ~ \"(?i)chcu\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)cheap\\-trusted\\-backlinks\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cheapkeys\\.ovh\" ||\n\t\treq.http.Referer ~ \"(?i)cheappills24h\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)chee\\-by\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)chelyabinsk\\.dienai\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)chelyabinsk\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)cherrypointplace\\.ca\" ||\n\t\treq.http.Referer ~ \"(?i)cherubinimobili\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)chimiver\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)chinese\\-amezon\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)chip35\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)chipmp3\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)chizhik\\-2\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)chomexun\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)choosecuisine\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ci\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)ciarustde\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)cigarpass\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cilolamall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cinemaenergy\\-hd\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ciproandtizanidine\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)citizenclsdriveri7\\.pen\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)cityadspix\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)citybur\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cityreys\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)civilwartheater\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)clarithromycin500mg\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)clash\\-clans\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)classicakuhni\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cleandom\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)cleaningservices\\.kiev\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)clicksor\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)climate\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)clmforexeu\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)clothing\\-deal\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)cloudsendchef\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)club\\-lukojl\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)club\\-musics\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)club\\-samodelkin\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cmd\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)cmrrsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cmseshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cobaltpro\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cocyq\\.inwtrade\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)coderstate\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)codq\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)codysbbq\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)coeus\\-solutions\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)coffeemashiny\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)coinswitch\\.cash\" ||\n\t\treq.http.Referer ~ \"(?i)coldfilm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)coleso\\.md\" ||\n\t\treq.http.Referer ~ \"(?i)collectinviolity\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)collegeessay19\\.blogspot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)columb\\.net\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)cometorussia\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)comissionka\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)commentag\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)commerage\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)comp\\-pomosch\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-alex\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-alex\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-alexa\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-alexa\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-andrew\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-andrew\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-barak\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-barak\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-brian\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-brian\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-checker\\-7\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-don\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-don\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-donald\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-elena\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-elena\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-fred\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-fred\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-george\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-george\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-irvin\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-irvin\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-ivan\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-ivan\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-jack\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-jane\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-jess\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-jessica\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-john\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-josh\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-julia\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-julianna\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-margo\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-mark\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-mary\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-nelson\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-olga\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-viktor\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-walt\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-walter\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)compliance\\-willy\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)computer\\-remont\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)comuneshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)conciergegroup\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)concretepol\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)connectikastudio\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)constanceonline\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)constantaservice\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)construmac\\.com\\.mx\" ||\n\t\treq.http.Referer ~ \"(?i)contextualyield\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-aa\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-bb\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-cc\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-dd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-ee\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-ff\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-gg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-hh\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-ii\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-jj\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-kk\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-ll\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-mm\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-nn\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-oo\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-pp\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-qq\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-rr\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-ss\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-tt\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-uu\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-vv\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-ww\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-xx\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-yy\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookie\\-law\\-enforcement\\-zz\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cookielawblog\\.wordpress\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cookingmeat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cool\\-mining\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cool\\-wedding\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)coop\\-gamers\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)copblock\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)copyrightclaims\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)copyrightinstitute\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)coral\\-info\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cosmediqueresults\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)countravel\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)covadhosting\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)covblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)coverage\\-my\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)covetnica\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)covid\\-schutzmasken\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)cowblog\\.fr\" ||\n\t\treq.http.Referer ~ \"(?i)cp24\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)cpnbshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cranly\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)crazy\\-mining\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)crd\\.clan\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)creams\\.makeforum\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)credit\\-card\\-tinkoff\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)credit\\-cards\\-online24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)credit\\.co\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)creditmoney\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)crest\\-poloski\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)crest3d\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)crirussian\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)cruiseraf\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)crypto\\-bear\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)crypto\\-bears\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)crypto\\-mining\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)crypto\\-wallets\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)crypto1x1\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)crystalslot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cubook\\.supernew\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)curenaturalicancro\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)curenaturalicancro\\.nl\" ||\n\t\treq.http.Referer ~ \"(?i)customsua\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)cutalltheshit\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cvety24\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)cvta\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)cxpromote\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cyber\\-monday\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)cyclobenzaprinevstizanidine\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cymbaltaandtizanidine\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)cyprusbuyproperties\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)czcedu\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dacha\\-svoimi\\-rukami\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dailyblog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)dailyrank\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)dailyseo\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)dailystorm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dailystrength\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)dailytraffic\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)dame\\-ns\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)damedingel\\.ya\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)damianis\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)danashop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)danceuniverse\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)danhale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)dantk\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)daptravel\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)darcysassoon\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)darkbooks\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)darknet\\-hydra\\-onion\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)darknet\\.sb\" ||\n\t\treq.http.Referer ~ \"(?i)darknetsitesguide\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)darleneblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)darodar\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)datsun\\-do\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dav\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)davilaonline\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)dawlenie\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dbmkfhqk\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)dbutton\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)dcdcapital\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ddlmega\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ddpills\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)de\\.zapmeta\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dear\\-diary\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)deart\\-13\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)deda\\-moroza\\-zakaz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)deirdre\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)dekorkeramik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)delayreferat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)delfin\\-aqua\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)delo\\.fund\" ||\n\t\treq.http.Referer ~ \"(?i)deluxewatch\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)demenageur\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)den\\-noch24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dengi\\-v\\-kredit\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)denisecarey\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)deniseconnie\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)deniven\\.1bb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dent\\-home\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dentuled\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)depositfiles\\-porn\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)depositfiles\\-porn\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)dermatovenerologiya\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)deryie\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)descargar\\-musica\\-gratis\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)descargar\\-musicas\\-gratis\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)design\\-lands\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)designdevise\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)detailedvideos\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)detalizaciya\\-tut\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)detective01\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)detki\\-opt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)detoolzon\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)detskie\\-konstruktory\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)detskie\\-zabavi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)deutsche\\-poesie\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dev\\-seo\\.blog\" ||\n\t\treq.http.Referer ~ \"(?i)devochki\\-video\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dezeypmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)dgdsoutlet\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)diarioaconcagua\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)diatelier\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dicru\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)diebesten\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)dienai\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dienmaytot\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)diesel\\-parts28\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)digest\\-project\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)digilander\\.libero\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)digital\\-video\\-processing\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)digitalfaq\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dimkino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dinkolove\\.ya\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)diplom\\-nk\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)diplomas\\-ru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dipstar\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)directrev\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)discounttaxi\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)discover\\-prior\\-full\\-stack\\-services\\.party\" ||\n\t\treq.http.Referer ~ \"(?i)discover\\-prior\\-ppc\\-service\\.party\" ||\n\t\treq.http.Referer ~ \"(?i)discover\\-top\\-seo\\-service\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)distonija\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)divan\\-dekor\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)dividendo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)diy\\-handmade\\-ideas\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)djekxa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)djonwatch\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)djstools\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dktr\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dldsshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)dlya\\-android\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)dms\\-sw\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dna\\-sklad\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dnepr\\-avtospar\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)dneprsvet\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)dnmetall\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)docs4all\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)docsarchive\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)docsportal\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)docstoc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)doctmalls\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)doctornadezhda\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)documentbase\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)documentserver\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)documentsite\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)dodge\\-forum\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)doeco\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)doggyhealthy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dogovorpodryada\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dogshowsonice\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dogsrun\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)dojki\\-devki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dojki\\-hd\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)doktoronline\\.no\" ||\n\t\treq.http.Referer ~ \"(?i)dokumentalkino\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)dom\\-international\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)domain\\-tracker\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)domashneeruporno\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)domashniy\\-hotel\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)domashniy\\-recepti\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dombestofferhdd\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)domcran\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)domik\\-derevne\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dominateforex\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)domination\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)dominterior\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)dommdom\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)domovozik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)domoysshop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dompechey\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)domsadiogorod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)donvito\\.unas\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)doreenblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)doska\\-vsem\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dostavka\\-v\\-krym\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dostavka\\-v\\-ukrainu\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dosug\\-lux\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dosugrostov\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)download\\-of\\-the\\-warez\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)downloadkakaotalk\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)downloadmefiranaratb1972\\.xpg\\.com\\.br\" ||\n\t\treq.http.Referer ~ \"(?i)doxyporno\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)doxysexy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)doyouknowtheword\\-flummox\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)dprkboards\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)draniki\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)dreamland\\-bg\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dreams\\-works\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)drev\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)driving\\.kiev\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)drugs\\-no\\-rx\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)drugspowerstore\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)drugstoreforyou\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)drupa\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)druzhbany\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)druzhininevgeniy63\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dspautomations\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dstroy\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)duitbux\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)dumpsccshop\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dvd\\-famille\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)dvk\\-stroi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)dvr\\.biz\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)dzinerstudio\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)e\\-avon\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)e\\-buyeasy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)e\\-collantes\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)e\\-commerce\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)e\\-commerce\\-seo1\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)e\\-kwiaciarz\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)e\\-stroymart\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)e2click\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eandsgallery\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eaptekaplus\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)earn\\-from\\-articles\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)earnian\\-money\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)earnity\\-money\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)easycommerce\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)easync\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)easytuningshop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)eavuinsr\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)ecblog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)ecommerce\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ecommerce\\-seo\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)ecomp3\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)econom\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)ecookna\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)edakgfvwql\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)edelstahlschornstein\\-123\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)editmedios\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)edmed\\-sonline\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ednetstore\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)edshopping\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)eduardoluis\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)education\\-cz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)educhess\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)edudocs\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)eduinfosite\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eduserver\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)eecz\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)eets\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ege\\-essay\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ege\\-krasnoyarsk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)egovaleo\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)egvar\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ek\\-invest\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ekatalog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)ekaterinburg\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)ekbspravka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)eko\\-gazon\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ekobata\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ekoproekt\\-kr\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ekspertmed\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ekto\\.ee\" ||\n\t\treq.http.Referer ~ \"(?i)el\\-nation\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elainasblog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eldoradorent\\.az\" ||\n\t\treq.http.Referer ~ \"(?i)election\\.interferencer\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)electric\\-blue\\-industries\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)electricwheelchairsarea\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)electro\\-prom\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elegante\\-vitrage\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)elektrikovich\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)elektrischezi\\.canalblog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrischeziga\\.livejournal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrischezigarette1\\.blog\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)elektrischezigarette1\\.onsugar\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrischezigarette2\\.devhub\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrischezigarette2\\.onsugar\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrischezigarettekaufen2\\.cowblog\\.fr\" ||\n\t\treq.http.Referer ~ \"(?i)elektrischezigaretten1\\.blogse\\.nl\" ||\n\t\treq.http.Referer ~ \"(?i)elektrischezigaretten2\\.beeplog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektronischezi\\.livejournal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektronischezigarette2\\.mex\\.tl\" ||\n\t\treq.http.Referer ~ \"(?i)elektronischezigarettekaufen1\\.beeplog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektronischezigarettekaufen1\\.myblog\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)elektronischezigarettekaufen2\\.tumblr\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrozigarette1\\.dreamwidth\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)elektrozigarette2\\.webs\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrozigarette2\\.wordpressy\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)elektrozigarettekaufen1\\.devhub\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrozigarettekaufen2\\.blogse\\.nl\" ||\n\t\treq.http.Referer ~ \"(?i)elektrozigaretten1\\.postbit\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrozigaretten1\\.tumblr\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrozigaretten1\\.webs\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elektrozigaretten2\\.yn\\.lt\" ||\n\t\treq.http.Referer ~ \"(?i)elementspluss\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)elenatkachenko\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)elentur\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)elidelcream\\.weebly\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elitesportsadvisor\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elizabethbruno\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)elkacentr\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ellemarket\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)elmifarhangi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eloconcream\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eloxal\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)elvel\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)embedle\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)emctestlab\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)emerson\\-rus\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)emicef\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)empire\\-market\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)empire\\-market\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)empiremarket\\-link\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)empiremarketlink24\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)empirestuff\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)empis\\.magix\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)encmbtia\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)energomash\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)energy\\-ua\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)energydiet\\-info\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)energydiet24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)energysexy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)enginebay\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)englishdictionaryfree\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)englishtopic\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)enter\\-unicredit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)entgetadsincome\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)envistore\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eonpal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)epcpolo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)epicdiving\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eraglass\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)erank\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)eredijovon\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ereko\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)erias\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eric\\-artem\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ericshome\\.store\" ||\n\t\treq.http.Referer ~ \"(?i)erinhome\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)ero\\-video\\-chat\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)erofus\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)eropho\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eropho\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)erot\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)erotag\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eroticheskij\\-video\\-chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)erotikstories\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)es\\-pfrf\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)es5\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)escort\\-russian\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)escortplius\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eshop\\.md\" ||\n\t\treq.http.Referer ~ \"(?i)eskei83\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)esnm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)esoterikforum\\.at\" ||\n\t\treq.http.Referer ~ \"(?i)essaytags\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)estdj\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)este\\-line\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)etairikavideo\\.gr\" ||\n\t\treq.http.Referer ~ \"(?i)etehnika\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)etotupo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ets\\-2\\-mod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)etsfshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eu\\-cookie\\-law\\-enforcement\\-4\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eu\\-cookie\\-law\\-enforcement\\-5\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eu\\-cookie\\-law\\-enforcement\\-6\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eu\\-cookie\\-law\\-enforcement\\-7\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eu\\-cookie\\-law\\-enforcement1\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eu\\-cookie\\-law\\-enforcement2\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)eu\\-cookie\\-law\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eu\\-cookie\\-law\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)eurocredit\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)euromasterclass\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)euronis\\-free\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)europages\\.com\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)europeanwatches\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)eurosamodelki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)euroskat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)evaashop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)event\\-tracking\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)eventiyahall\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)evreuxshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)exchangeit\\.gq\" ||\n\t\treq.http.Referer ~ \"(?i)exchanges\\-bet\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)exclusive\\-profit\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)exdocsfiles\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)execedmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)executehosting\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)exotic\\-video\\-chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)expdom\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)expediacustomerservicenumber\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)expert\\-find\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)expertnaya\\-ocenka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)explore\\-prior\\-web\\-service\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)express\\-vyvoz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)expresstoplivo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)extener\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)extener\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)extrabot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)extremez\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)eyes\\-on\\-you\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)eyessurgery\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ez8motelseaworldsandiego\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettekaufen\\.myblog\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettekaufen1\\.hpage\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettekaufen2\\.blox\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettekaufen2\\.mpbloggar\\.se\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettekaufen2\\.yolasite\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettenkaufen1\\.deviantart\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettenkaufen1\\.pagina\\.gr\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettenkaufen2\\.dreamwidth\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettenshop1\\.yolasite\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettenshop2\\.myblog\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)ezigarettenshop2\\.postbit\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ezigaretteshop\\.webs\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ezigaretteshop2\\.mywapblog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ezigaretteshop2\\.vefblog\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ezofest\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)ezrvrentals\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)f\\-loaded\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)f\\-online\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)f00kclan\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)f012\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)f07\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)f0815\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)f1nder\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)facebook\\-mobile\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)fainaidea\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)faithe\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)falco3d\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)falcoware\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)family1st\\.ca\" ||\n\t\treq.http.Referer ~ \"(?i)familyholiday\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)familyphysician\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fanoboi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fartunabest\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fashion\\-mk\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)fashiong\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fashionindeed\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)fast\\-wordpress\\-start\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fastgg\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)fatrizscae\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)favorcosmetics\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)favoritemoney\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)favoritki\\-msk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)favornews\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fazika\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fba\\-mexico\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fbdownloader\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fbfreegifts\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fc\\-007\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fealq\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)feargames\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)feedback\\.sharemyfile\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)feedouble\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)feedouble\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)feel\\-planet\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)feeriaclub\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)feiacmr\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)feminist\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)femmesdenudees\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fenoyl\\.batcave\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ferieboligkbh\\.dk\" ||\n\t\treq.http.Referer ~ \"(?i)fermersovet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fetishinside\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fialka\\.tomsk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fidalsa\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)fierrohack\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)figensahin\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)filesclub\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)filesdatabase\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)filesvine\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)film\\-one\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)filmetricsasia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)filmgo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)filmidivx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)films2018\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)filter\\-ot\\-zheleza\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)financial\\-simulation\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)finansov\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)findacheaplawyers\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)finder\\.cool\" ||\n\t\treq.http.Referer ~ \"(?i)findercarphotos\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fineblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)finstroy\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)finteks\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)firma\\-legion\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)firmgeo\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)firstblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)fit\\-discount\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fitness\\-video\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)fitodar\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)fiuagts\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)fiuxy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fiverr\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fix\\-website\\-errors\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fizika\\.tv\" ||\n\t\treq.http.Referer ~ \"(?i)flash4fun\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)flavors\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)flex4launch\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)flexderek\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)floating\\-share\\-buttons\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)flooringinstallation\\-edmonton\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)flowersbazar\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)flowertherapy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)flowwwers\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)flprog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)flyblog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)flytourisme\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)fm\\-upgrade\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fmgrupe\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)foojo\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)for\\-marketersy\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)for\\-your\\.website\" ||\n\t\treq.http.Referer ~ \"(?i)forensicpsychiatry\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forex\\-indextop20\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forex\\-procto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forex\\.osobye\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forex21\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forexgb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forexunion\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)forminecrafters\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forms\\-mtm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forpostlock\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forsex\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)fortwosmartcar\\.pw\" ||\n\t\treq.http.Referer ~ \"(?i)forum\\-engineering\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forum\\.poker4life\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)forum\\.tvmir\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)forum20\\.smailik\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)forum69\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)forums\\.toucharcade\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fotoxxxru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)foxinsocks\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)foxjuegos\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)foxtechfpv\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)foxweber\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fpclub\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fr\\.netlog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)francaise\\-poesie\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)frankofficial\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)frauplus\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-fb\\-traffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-fbook\\-traffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-floating\\-buttons\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-games\\-download\\.falcoware\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\-aaa\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\-bbb\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\-ccc\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\-ddd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\-eee\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\-fff\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-share\\-buttons\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\-aaa\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\-bbb\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\-ccc\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\-ddd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\-eee\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\-fff\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\-hhh\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\-iii\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons1\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons2\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons3\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons4\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons5\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons6\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-social\\-buttons7\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-traffic\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-video\\-chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-video\\-tool\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)free\\-website\\-traffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)freeasecret\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)freenode\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)freeseedsonline\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)freetangodownload\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)freewebs\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)freewhatsappload\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)freewlan\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)freshberry\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)freshnails\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)front\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)front\\.to\" ||\n\t\treq.http.Referer ~ \"(?i)fsalas\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fsin\\-pokypka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ftns\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fuck\\-paid\\-share\\-buttons\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)fuel\\-gas\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)fullzdumps\\.cc\" ||\n\t\treq.http.Referer ~ \"(?i)fungirlsgames\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)funnypica\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)furniture\\-ukraine\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)furniturehomewares\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)futbolkisales\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)fvetgoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)fxtips\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)g7m\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)gabeshop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gabysuniqueboutique\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gael\\-s\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gagrasector\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)galaxy\\-family\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)galaxyflowers\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)galblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)galeon\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gamblingpp\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)game\\-mmorpg\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)game\\-top\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)game300\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)games\\.kolossale\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gammatraffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gandikapper\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gaokr\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)gap\\-search\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)garantprava\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gardene\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gasvleningrade\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gatwick\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gays\\-video\\-chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gaz\\-voshod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gazel\\-72\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gazobeton\\-p\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)gazoblok\\.net\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)gbh\\-invest\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gcmx\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)gcup\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gdcentre\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gearcraft\\.us\" ||\n\t\treq.http.Referer ~ \"(?i)gearsadspromo\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)gelezki\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)geliyballon\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gelstate\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)generalporn\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)genericlowlatencyasiodriverhq\\.aircus\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)geniusfood\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)gentamicineyedrops\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)georgeblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)gepatit\\-info\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)germes\\-trans\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-best\\-copywriting\\-service\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-clickir\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-clickize\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-free\\-social\\-traffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-free\\-traffic\\-now\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-more\\-freeen\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-more\\-freeer\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-more\\-freeish\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-more\\-freeize\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-more\\-freele\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-morebit\\-free\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-prime\\-seo\\-services\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-seo\\-help\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)get\\-your\\-social\\-buttons\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getaadsincome\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getadsincomeian\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getadsincomely\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getadsincomeof\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getbottraffic4free\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)getbottraffic4free\\.host\" ||\n\t\treq.http.Referer ~ \"(?i)getbottraffic4free\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)getbytadsincome\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getfy\\-click\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getism\\-more\\-free\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getity\\-more\\-free\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getityadsincome\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getive\\-more\\-free\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getlamborghini\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)getoutofdebtfree\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)getprismatic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)getpy\\-click\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getpy\\-more\\-free\\-visitors\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getrichquick\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)getrichquickly\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)getyourprofit\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)gevciamst\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)gezlev\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)gfaq\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ghazel\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ghernnqr\\.skyrock\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gheus\\.altervista\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)ghostvisitor\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gidonline\\.one\" ||\n\t\treq.http.Referer ~ \"(?i)gidro\\-partner\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)giftbig\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)girlporn\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)girls\\-ufa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)girlsatgames\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gk\\-atlant\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)gk\\-casino\\.fun\" ||\n\t\treq.http.Referer ~ \"(?i)gk\\-casino\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)gk\\-casino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gk\\-casino\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)gk\\-casino\\.space\" ||\n\t\treq.http.Referer ~ \"(?i)gk\\-casino\\.website\" ||\n\t\treq.http.Referer ~ \"(?i)gkvector\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)glall\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)glass\\-msk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)glavprofit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)glcomputers\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)glktfw\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)global\\-smm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)globalscam\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)globatur\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)globetrotting\\-culture\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)glogow\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)glopages\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)go2album\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gobongo\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)goforexvps\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gogps\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)gojiberriess\\.apishops\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gok\\-kasten\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)goldandcard\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)golden\\-catalog\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)golden\\-praga\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)goldenggames\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)goldvaultmetals\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)golmau\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)golyedevushki\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gonextmedia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)good\\-potolok\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)goodbyecellulite\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)goodcoffeepremium\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)goodhumor24\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)goodnightjournal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)goodprotein\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)google\\-liar\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)googlefeud\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)googlemare\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)googlsucks\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gorabagrata\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gorgaz\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)goroda\\-vsego\\-mira\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gorodservis\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gosreg\\.amchs\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gototal\\.co\\.nz\" ||\n\t\treq.http.Referer ~ \"(?i)gourcy\\.altervista\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)goyua\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)gq\\-catalog\\.gq\" ||\n\t\treq.http.Referer ~ \"(?i)graceonline\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)grafaman\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)grand\\-chlen\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)graphid\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gratuitbaise\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)greatblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)greatgrace\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)greentechsy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)grizzlysgrill\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)groshi\\-kredut\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)groupmoney\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)growmyfunds\\.ca\" ||\n\t\treq.http.Referer ~ \"(?i)growshop\\.es\" ||\n\t\treq.http.Referer ~ \"(?i)growth\\-hackingan\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)growth\\-hackingead\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)growth\\-hackingeads\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)growth\\-hackingor\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)growth\\-hackingy\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)grupografico\\-pilar\\.com\\.ar\" ||\n\t\treq.http.Referer ~ \"(?i)gruzchiki24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gsbs\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)gsmlab\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)gsmtlf\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gta\\-club\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gta\\-top\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)gttpsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)guardlink\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)guardlink\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)guge\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)guidetopetersburg\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gungamesz\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)guruofcasino\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)gwhwpxbw\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)gxcb\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)h2monline\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hacktougroup\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hagirkblog\\.space\" ||\n\t\treq.http.Referer ~ \"(?i)hahashka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)haikuware\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)halat\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)halefa\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hamyshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)handicapvansarea\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)handicapvantoday\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)handsandlegs\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hanink\\.biz\\.ly\" ||\n\t\treq.http.Referer ~ \"(?i)hankspring\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)happysong\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hard\\-porn\\.mobi\" ||\n\t\treq.http.Referer ~ \"(?i)hardcore\\.anzwers\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hardosale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)harpro\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)havepussy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hawaiisurf\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hazardky\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hd1080film\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hd720kino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hdfreeporno\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hdhc\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)hdmoviecamera\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hdmoviecams\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hdmoviecams\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hdsmartvideoreg\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)headpharmacy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)healbio\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)healgastro\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)healing\\-dysplasia\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)healmytrauma\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)healthhacks\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)heeha\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hem\\.passagen\\.se\" ||\n\t\treq.http.Referer ~ \"(?i)hentai\\-manga\\.porn\" ||\n\t\treq.http.Referer ~ \"(?i)heroero\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hexometer\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hifidesign\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hilaryblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)hill\\-accent\\-withdraw\\-sentiment\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)himandmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)hit\\-kino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hitree\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)hitsbox\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)hiwibyh\\.bugs3\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hiwpro\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)hkdiiohi\\.skyrock\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hkjrsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)hmmm\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)hmywwogw\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)hobild\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hol\\.es\" ||\n\t\treq.http.Referer ~ \"(?i)holiday\\-shop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)holidaypics\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)holistickenko\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)holodkovich\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)home\\.myplaycity\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)homeafrikalike\\.tk\" ||\n\t\treq.http.Referer ~ \"(?i)homedo\\.fabpage\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)homeinns\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)homelygarden\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)homemade\\.gq\" ||\n\t\treq.http.Referer ~ \"(?i)homemypicture\\.tk\" ||\n\t\treq.http.Referer ~ \"(?i)honesty\\-homemade\\-grizzly\\-humanlike\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hongfanji\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hoporno\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)horoshieokna\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)host\\-protection\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hostcritique\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hoste\\.octopis\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hostiman\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hosting\\-tracker\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hostingclub\\.lk\" ||\n\t\treq.http.Referer ~ \"(?i)hostsshop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hotblognetwork\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hotdl\\.in\" ||\n\t\treq.http.Referer ~ \"(?i)hotspot\\.ipb\\.co\\.id\" ||\n\t\treq.http.Referer ~ \"(?i)hottour\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hotwatersdamps\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)houdom\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)housedesigning\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)housediz\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)housekuba\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)housemilan\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)houseofgaga\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)houseofrose\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)houston\\-vikings\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-i\\-build\\-website\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-i\\-promote\\-website\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-buy\\-bitcoin\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-buy\\-bitcoin\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-buy\\-bitcoins\\-cheap\\.party\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-buy\\-bitcoins\\-cheap\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-buy\\-bitcoins\\-cheap\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-buy\\-bitcoins\\-cheap\\.trade\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-buy\\-bitcoins\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-buy\\-bitcoins\\.trade\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-earn\\-quick\\-money\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-promote\\-website\\.faith\" ||\n\t\treq.http.Referer ~ \"(?i)how\\-to\\-promote\\-website\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)howlongdoestizanidinestayinyoursystem\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)howmuchdoestizanidinecost\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)howopen\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)howtostopreferralspam\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)howtostopreferralspam\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)hoztorg\\-opt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hplaserjetpdriver8y\\.pen\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)hptwaakw\\.blog\\.fc2\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hrtonline\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)hscsscotland\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hseipaa\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)hsoutdoor\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hspline\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)https\\-legalrc\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)hugblog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)huhn\\.altervista\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)hulfingtonpost\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hully\\.altervista\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)humanorightswatch\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)hundejo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)huntdown\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)husky\\-shop\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)hustoon\\.over\\-blog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hvd\\-store\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-2019\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-2020\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-2020\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-centr\\.fun\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-dealer\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-guide\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-new\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-onion\\-faq\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-pc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-shop\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-site\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-slon\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-vhod2020\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\-zerkalo20\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)hydra1717\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2\\.market\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2020\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2020gate\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2020market\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2020onion\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2020ru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2020zerkala\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2020zerkalo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra20onion\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra20online\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra20original\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2use\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydra2zahod\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydraena\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydrahow\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydrahudra\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydraland\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hydramarket2020\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydramirror2020\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydranten\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hydraonion2019\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hydrarusmarket\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydraruz\\-2020\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydraruzonion2020\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydraruzonionx\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hydraruzxpnew4af\\.com\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)hydraruzxpnew4af\\.ink\" ||\n\t\treq.http.Referer ~ \"(?i)hydraruzxpnew4aff\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)hydraruzxpwnew4afonion\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydraulicoilcooler\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hydrauliczny\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydravizoficial\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)hydrazerkalo2019\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)hydrazerkalo2020\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)hydropump\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)hyip\\-zanoza\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)hyipmanager\\.in\" ||\n\t\treq.http.Referer ~ \"(?i)i\\-spare\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ialgramer\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)iamsport\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)ib\\-homecredit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ib\\-rencredit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)iblogpress\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)iceton\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ico\\.re\" ||\n\t\treq.http.Referer ~ \"(?i)ictizanidinehcl4mg\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)idc\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)idealtits\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ideayz\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)idegenvezeto\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)ideibiznesa2015\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ieeeoutlet\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)ifirestarter\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ifmo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)igadgetsworld\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)igamingtop\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)igru\\-xbox\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ilikevitaly\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)illagedusexe\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ilmen\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)iloveitaly\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)iloveitaly\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ilovevitaly\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)ilovevitaly\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ilovevitaly\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)ilovevitaly\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)ilovevitaly\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)ilovevitaly\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ilovevitaly\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)imediadesk\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)iminent\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)immigrational\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)immobiliaremassaro\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)immobilieralgerie\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)imperia31\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)imperiafilm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)impotentik\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)impresagaia\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)in\\-mostbet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)in\\-sto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)inbabes\\.sexushost\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)inboxdollars\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)incanto\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)incitystroy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)incomekey\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)incoonline\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)increasewwwtraffic\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)indetiske\\.ya\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)indo\\-export\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)inet\\-shop\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)infazavr\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)infektsii\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)infobabki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)infodocsportal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)infogame\\.name\" ||\n\t\treq.http.Referer ~ \"(?i)infokonkurs\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)inform\\-ua\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)ingramreed\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)inmoll\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)innodgfdriverhm\\.aircus\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)insider\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)installspartners\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)instasexyblog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)insultu\\-net\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)intelhdgraphicsgtdrive6w\\.metroblog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)interferencer\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)interfucks\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)intermesh\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)internet\\-apteka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)intex\\-air\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)intimchats\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)intimver\\.3dgayxxx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)invest\\-pamm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)investingclub\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)investpamm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)investsuccess\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)invivo\\.hu\" ||\n\t\treq.http.Referer ~ \"(?i)inzn\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)io9\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ipod\\-app\\-reviews\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ipostroika\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)iqoption\\-bin\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)iqoption\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)iqoption\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)iradiology\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)iridsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)ishgetadsincome\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)isistaylorporn\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)iskalko\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)iskussnica\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)isotoner\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ispaniya\\-costa\\-blanca\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)istanbulit\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)istizanidineacontrolledsubstance\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)istizanidineanarcoticdrug\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)istizanidineanopiate\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)istizanidinelikexanax\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)istock\\-mebel\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)it\\-max\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)it\\-worlds\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)itbc\\.kiev\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)itrevolution\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)itronics\\.ca\" ||\n\t\treq.http.Referer ~ \"(?i)itsdp3\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ivegetadsincome\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)iyfsearch\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)izamorfix\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)izhevsk\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)izhevskjob\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)izhstrelok\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)izi24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)j\\-times\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)jabug\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)jacblog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)jackonline\\.store\" ||\n\t\treq.http.Referer ~ \"(?i)janemill\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)janettabridal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)japfm\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)jasonpartington\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)jav\\-fetish\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)jav\\-fetish\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)jav\\-idol\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)javatex\\.co\\.id\" ||\n\t\treq.http.Referer ~ \"(?i)javcoast\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)javlibrary\\.cc\" ||\n\t\treq.http.Referer ~ \"(?i)jaxcube\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)jazzstyle4us\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)jeffbullas\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)jennyfire\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)jikem\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)jintub\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)jjbabskoe\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)job\\-opros\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)job\\-prosto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)jobfree24\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)jobgirl24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)jobius\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)johnnyhaley\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)joinandplay\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)joingames\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)josephineblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)journalhome\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)joyceblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)joycee\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)judyandsimon\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)juliadiets\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)juliaworld\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)jumkite\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)justkillingti\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)justprofit\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)jweber\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)jwss\\.cc\" ||\n\t\treq.http.Referer ~ \"(?i)jyrxd\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kaac\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabbalah\\-red\\-bracelets\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-5ka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-alfaclick\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-binbank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-card\\-5ka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-click\\-alfabank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-esia\\-gosuslugi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-faberlic\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-gosuslugi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-ipoteka\\-domclick\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-karta\\-5ka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-lk\\-megafon\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-lk\\-rt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-login\\-mts\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-mil\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-mos\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-my\\-beeline\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-my\\-pochtabank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-nalog\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-online\\-bm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-online\\-open\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-online\\-rsb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-online\\-rshb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-online\\-sberbank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-online\\-sovcombank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-online\\-vtb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-pfr\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-pfrf\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-platon\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-qiwi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-tele2\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-tinkoff\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-tricolor\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-ttk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kabinet\\-vtb24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kaircm\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)kakablog\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)kakadu\\-interior\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)kakworldoftanks\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kalb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kambasoft\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kamin\\-sam\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kamorel\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kanakox\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)karachev\\-city\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)karadene\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)karapuz\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)karusel\\-market\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)katjimej\\.blog\\.fc2\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)katrd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)katushka\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)kaz\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)kazan\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)kazka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kazlenta\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)kazrent\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kellyonline\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)kendrablog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)kenyagoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)kerch\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)ketrzyn\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)kevblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)kevinsnow\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)kexihao\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)keywords\\-monitoring\\-success\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)keywords\\-monitoring\\-your\\-success\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kharkov\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)kharlov\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)kidd\\.reunionwatch\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kierowca\\-praca\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)kiev\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)kimblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)kinnarimasajes\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kino\\-filmi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kino\\-fun\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kino\\-key\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)kino2018\\.cc\" ||\n\t\treq.http.Referer ~ \"(?i)kinobaks\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kinobum\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)kinoflux\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)kinohit1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kinopolet\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)kinosed\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)kinostar\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)kinotorka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kiprinform\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kiwe\\-analytics\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kiwi237au\\.tk\" ||\n\t\treq.http.Referer ~ \"(?i)kiyany\\-za\\-spravedluvist\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)kletkimehan\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)klfd\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)kndxbkdx\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)knigonosha\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)kochanelli\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kolcasale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)koleso24\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)kollekcioner\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kolotiloff\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)komp\\-pomosch\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)komputernaya\\-pomosh\\-moscow\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)komputers\\-best\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)komukc\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)kongoultry\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)konkursov\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)koopilka\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)koptims\\.tiu\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)koronirealestate\\.gr\" ||\n\t\treq.http.Referer ~ \"(?i)kosova\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)kosunnyclub\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kotaku\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kozhakoshek\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kozhasobak\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kozhniebolezni\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kpcconline\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)krafte\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)krasivoe\\-hd\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)krasivoe\\-hd\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)krasnodar\\-avtolombard\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)krasnodar\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)krasota\\-zdorovie\\.pw\" ||\n\t\treq.http.Referer ~ \"(?i)krasota\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kredutu\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)kredytbank\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)kruiz\\-sochi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)krumble\\-adsde\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)krumble\\-adsen\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)krumble\\-adsic\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)krumbleent\\-ads\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)krynica\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)ktotut\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)kumuk\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)kupit\\-adenu\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kursy\\-ege\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kustanay\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)kvartir\\-remont\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)kvartira\\-sutochno\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)kvartiry\\-remont\\.ucoz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)kw21\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)l2soft\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)la\\-fa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)labguamec\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)labplus\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)labvis\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)ladov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lafppshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)laitrcus\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)lakiikraski\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lalalove\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lambreshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)laminat\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)lampokrat\\.ws\" ||\n\t\treq.http.Referer ~ \"(?i)lanasshop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)landliver\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)landoftracking\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)languagecode\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lankarns\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)laparfumotec\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lapitec\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)laptop\\-4\\-less\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)laptoper\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)larchik\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)larutti\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)laudit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-check\\-eight\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-check\\-nine\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-check\\-seven\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-check\\-two\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-aa\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-bb\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-bot\\-aa\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-bot\\-bb\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-bot\\-cc\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-bot\\-dd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-bot\\-ee\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-bot\\-ff\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-bot\\-hh\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-bot\\-ii\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-cc\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-check\\-eight\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-check\\-five\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-check\\-four\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-check\\-nine\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-check\\-one\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-check\\-six\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-check\\-three\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-check\\-two\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-dd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-ee\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-eight\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-ff\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-five\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-four\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-gg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-hh\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-one\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-seven\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-three\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-enforcement\\-two\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-five\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-four\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-one\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-six\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-three\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)law\\-two\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)lawrenceblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)laxdrills\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)layola\\.biz\\.tc\" ||\n\t\treq.http.Referer ~ \"(?i)lazy\\-z\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lcecshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)leadwayau\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)leboard\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lebowmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)ledalfa\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)leddjc\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ledis\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)ledpolice\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ledx\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)leeboyrussia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)legalrc\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)lego4x4\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lenvred\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)leon\\-official\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)lernur\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)lerporn\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)leto\\-dacha\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)letolove\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)letsgotofriday\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)levaquin750mg\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lezbiyanki\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)lflash\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)li\\-er\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lida\\-ru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lider82\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)life\\.biz\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)lifebyleese\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lifespeaker\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ligastavok\\-in\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)light\\.ifmo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lighthearteds\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)likesdesign\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lilishopstogether\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lindsayblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)linerdrilling\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)link\\.web\\-list\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)lipidofobia\\.com\\.br\" ||\n\t\treq.http.Referer ~ \"(?i)liquimondo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lirunet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lisque\\.batcave\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)littleberry\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)live\\-sexchat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)live\\-xbet\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)livefixer\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)liveinternet\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)liveinternet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)livejournal\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)livia\\-pache\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)livingroomdecoratingideas\\.website\" ||\n\t\treq.http.Referer ~ \"(?i)livingsimply\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lk\\-gosuslugi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lk\\-lk\\-rt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)llastbuy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lmrauction\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)loadopia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)local\\-seo\\-for\\-multiple\\-locations\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)login\\-tinkoff\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)loginduepunti\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)logo\\-all\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lol\\-smurfs\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lolz\\.guru\" ||\n\t\treq.http.Referer ~ \"(?i)lolzteam\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)lolzteam\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)lomb\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)lombardfinder\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lombia\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)lombia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lomza\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)londonstratford\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)lookover\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lost\\-alpha\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lotoflotto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)loveorganic\\.ch\" ||\n\t\treq.http.Referer ~ \"(?i)low\\-format\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lowpricesiterx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)lsex\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)lsitenonrepeat\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)luckybull\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)luckyshop\\.net\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)lukoilcard\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)lumb\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)lutherstable\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)luton\\-invest\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)luxmagazine\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)luxup\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)luxurybet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)m\\-google\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)m\\.ok\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)m1media\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)macresource\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)madisonclothingny\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)madjonline\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)madot\\.onlinewebshop\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)mafcards\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)magazintiande\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)magda\\-gadalka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)magento\\-crew\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)magicart\\.store\" ||\n\t\treq.http.Referer ~ \"(?i)magicdiet\\.gq\" ||\n\t\treq.http.Referer ~ \"(?i)magnetic\\-bracelets\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)maigralr\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)mail\\.allnews24\\.in\" ||\n\t\treq.http.Referer ~ \"(?i)mainhunter\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mainlinehobby\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)make\\-money\\-online\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)makedo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)makemoneyonline\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)makeprogress\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)makler\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)maladot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)malbgoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)malls\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)maltadailypost\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mamidushop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)mamylik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)manimpotence\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)manipulyator\\-peterburg\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)manonstore\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)manualterap\\.roleforum\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)manwang\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)maofengjx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)marathonbet\\-in\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)marblestyle\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)marcogrup\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)maridan\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)maridan\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)marihome\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)marinetraffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)marjorieblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)marketland\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)marktforschung\\-stuttgart\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)marmitaco\\.cat\" ||\n\t\treq.http.Referer ~ \"(?i)martinahome\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)martlinker\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)massage\\-info\\.nl\" ||\n\t\treq.http.Referer ~ \"(?i)masserect\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)master\\-muznachas\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)masterseek\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mastershef\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)masturbate\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)mathoutlet\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)matomete\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)matras\\.space\" ||\n\t\treq.http.Referer ~ \"(?i)mattgibson\\.us\" ||\n\t\treq.http.Referer ~ \"(?i)mature\\.free\\-websites\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)max\\-apprais\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)maximilitary\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)maxinesamson\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)maxthon\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)maxxximoda\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mazda\\-roadsters\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mbiologi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mebel\\-alait\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mebel\\-arts\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mebel\\-ekb\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mebel\\-iz\\-dereva\\.kiev\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)mebelcomplekt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mebeldekor\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)mebeldekor\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)meblieco\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)med\\-dopomoga\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)med\\-recept\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)med\\-zdorovie\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)med\\-zdorovie\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)medanestesia\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)medbrowse\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)medcor\\-list\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)medi\\-fitt\\.hu\" ||\n\t\treq.http.Referer ~ \"(?i)medic\\-al\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)medicaltranslate\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)medicinacom\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)medicineseasybuy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)medicovi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)medictube\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)medispainstitute\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)medkletki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)medkritika\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)medmajor\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)medosmotr\\-ufa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)meds\\-online24\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)medtherapy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)meduza\\-consult\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)meendo\\-free\\-traffic\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)megaapteka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)megakino\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)megalit\\-d\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)megapolis\\-96\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)megatkani\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)megavolt\\.net\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)melbet\\-in\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)melissahome\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)members\\.ghanaweb\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)memovn\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)menhealed\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)mercanmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)mere\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)mericanmopedstore\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)meriton\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)meroyharte\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)mesto\\-x\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)metallo\\-konstruktsii\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)metallosajding\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)metarip\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)metaxalonevstizanidine\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)meteocast\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)meuikcr\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)mex\\-annushka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mhp\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)mhrdmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)miaxxx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)micasainvest\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)michellblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)microsearch\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)microsoftportal\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)midnight\\.im\" ||\n\t\treq.http.Referer ~ \"(?i)mielec\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)mifepriston\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)migente\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)migera\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)migronis\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mikozstop\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mikrobiologies\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mikrocement\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)mikrozaim\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)mikrozaym2you\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)minecraft\\-neo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)minecraft\\-rus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)minegam\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)minghaimuyuan\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)mini\\.7zap\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)miningblack\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)minyetki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mir\\-betting\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mir\\-business\\-24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mir\\-limuzinov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mirfairytale\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mirmedinfo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mirobuvi\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)mirobuvi\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)mirtorrent\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)mirzonru\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)misselle\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mister\\-shop\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mitrasound\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mixed\\-wrestling\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mksoap\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mksport\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mmdoors\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mmm\\.lc\" ||\n\t\treq.http.Referer ~ \"(?i)mmm\\.sb\" ||\n\t\treq.http.Referer ~ \"(?i)mmog\\-play\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mmoguider\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mnogabukaff\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)mobicover\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)mobile\\.ok\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mobilemedia\\.md\" ||\n\t\treq.http.Referer ~ \"(?i)mobisport\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mobot\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)mobplayer\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)mobplayer\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mockupui\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)modabutik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)modforwot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)modnie\\-futbolki\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)moe1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moesonce\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)moi\\-glazki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moinozhki\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)moiragracie\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)moisadogorod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mokrayakiska\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mole\\.pluto\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)monarhs\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)monetizationking\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)money\\-every\\-day\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)money\\-for\\-placing\\-articles\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)money7777\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)moneymaster\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moneytop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moneyzzz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)monicablog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)monitorwebsitespeed\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)moomi\\-daeri\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)moon\\.market\" ||\n\t\treq.http.Referer ~ \"(?i)moonci\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)more\\-letom\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)morf\\.snn\\.gr\" ||\n\t\treq.http.Referer ~ \"(?i)morlat\\.altervista\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)moroccosurfadventures\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)moscow\\-clining\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moscow\\-region\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moscow\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)mosdverka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mosputana\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)mosputana\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)mosrif\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mossiemckenzie\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)mossmesi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)most\\-kerch\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)most\\.gov\\.iq\" ||\n\t\treq.http.Referer ~ \"(?i)mostantikor\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mostbet\\-285\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mostbet\\-original\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mostcool\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)mostorgnerud\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)motion\\-interactive\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mototsikl\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)mountainstream\\.ms\" ||\n\t\treq.http.Referer ~ \"(?i)moy\\-dokument\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)moy\\-evroopt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moyakuhnia\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moyaskidka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moyaterapiya\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moygorod\\-online\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)moyparnik\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mp3films\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mpftpupload\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mrbojikobi4\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)mrcsa\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)mriyadh\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mrmoneymustache\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mrt\\-info\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mrwhite\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)msk\\-diplomat\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)msk\\-sprawka\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mtras\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)mtsguru\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mug\\-na\\-chas\\-moscow\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)muizre\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mukis\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mundoaberrante\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)muscle\\-factory\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)muscle\\-factory\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)music\\.utrolive\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)musicas\\.baixar\\-musicas\\-gratis\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)musichallaudio\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)musicprojectfoundation\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)musicstock\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)musicvidz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)muz\\-baza\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)muz\\-shoes\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)muznachas\\-service\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)muztops\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mvmagoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)mwductwork\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)my\\-bc\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)my\\.opera\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mybestoffers\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)myborder\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mybuh\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)mycaf\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)mycheaptraffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mycollegereview\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mydirtystuff\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mydoctorok\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mydownloadengine\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mydownlodablefiles\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)myecomir\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)myfreemp3\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)myftpupload\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)myindospace\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mylida\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)myliveblog\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mypets\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)myplaycity\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)myprintscreen\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mysexpics\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)mytherealshop\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)mytraffic\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)na\\-telefon\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)na15\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nacap\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nachalka21\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nagdak\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nakozhe\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)nalogovyy\\-kodeks\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nancyblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)nanochskazki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nanwar\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)naobumium\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)naphi\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)naphukete\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nardulan\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)narkologiya\\-belgorod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)narkologiya\\-orel\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)narkologiya\\-penza\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)narkologiya\\-peterburg\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)narkologiya\\-voronezh\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)narkomaniya\\-stop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)narosty\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)narutonaruto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nastroyke\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)natali\\-forex\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)nate\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)natprof\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)naturalpharm\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)naval\\.jislaaik\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)navek\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)nbok\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)nbsproject\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nebbiasale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)needtosellmyhousefast\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)negral\\.pluto\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)net\\-profits\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)netallergy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nethouse\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)netlify\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)netpics\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)nevansk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nevapotolok\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)new\\-apps\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)newagebev\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)newbieseoblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)newsfj\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)newsrosprom\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)newstaffadsshop\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)newstraveller\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)newstudio\\.tv\" ||\n\t\treq.http.Referer ~ \"(?i)nextconseil\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)nfocusdriver\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ngps1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nhmrcsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)nhsports\\.cl\" ||\n\t\treq.http.Referer ~ \"(?i)nicola\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)nicolaonline\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)niki\\-mlt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nikitsyringedrivelg\\.pen\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)ninacecillia\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)niuting\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)nizniynovgorod\\.dienai\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nl\\.netlog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)no\\-rx\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)noclegonline\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)nomerounddec\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)nonews\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)nordstar\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)notaria\\-desalas\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)notebook\\-pro\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)notfastfood\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)noumeda\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)novalskincare\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)novgorod\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)novosibirsk\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)novosti\\-avto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)novosti\\-hi\\-tech\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)novostic\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)now\\-hydra2020\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)npoet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ntdtv\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nubuilderian\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)nucia\\.biz\\.ly\" ||\n\t\treq.http.Referer ~ \"(?i)nudepatch\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)nudo\\.ca\" ||\n\t\treq.http.Referer ~ \"(?i)nufaq\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)nullrefer\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)nutriwestncahi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)nuup\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)nvformula\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)nvkzsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)nwrcz\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)nyfinance\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)nyinfo\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)o\\-o\\-11\\-o\\-o\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)o\\-o\\-6\\-o\\-o\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)o\\-o\\-6\\-o\\-o\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)o\\-o\\-8\\-o\\-o\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)o\\-o\\-8\\-o\\-o\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)o\\-promyshlennosti\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)o00\\.in\" ||\n\t\treq.http.Referer ~ \"(?i)oblismall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)obnal\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)obnallpro\\.cc\" ||\n\t\treq.http.Referer ~ \"(?i)obsessionphrases\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)obuv\\-kupit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)obyavka\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)obzor\\-casino\\-x\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)obzor\\-casino\\-x\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ochistka\\-stokov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)odesproperty\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)odiabetikah\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)odsadsmobile\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)odywpjtw\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)ofermerah\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)offers\\.bycontext\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)office\\-windows\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)office2web\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)officedocuments\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)offtime\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ogorodnic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ok\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)oklogistic\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)okna\\-systems\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)okno\\.ooo\" ||\n\t\treq.http.Referer ~ \"(?i)okoshkah\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)okroshki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)oktube\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)oledonline\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)olovoley\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)olvanto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)omega\\.best\" ||\n\t\treq.http.Referer ~ \"(?i)omsk\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)one\\-a\\-plus\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)one\\-gear\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)onefilms\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)onenews24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)onion20hydra\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)onionhydra\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)onionshydra\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-akbars\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-binbank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-hit\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-intim\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-mkb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-pharma\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-pochtabank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-raiffeisen\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-sbank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-templatestore\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-video\\-chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-vostbank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-vtb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\-x\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)online\\.ktc45\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)onlinebay\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)onlinedic\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)onlinedomains\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)onlinefilmz\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)onlineserialy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)onlinetvseries\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)onlinewot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)onlinewritingjobs17\\.blogspot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)onload\\.pw\" ||\n\t\treq.http.Referer ~ \"(?i)onlyforemont\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)onlythegames\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)onlywoman\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)oohlivecams\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ooo\\-gotovie\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ooo\\-olni\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)oooh\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)openfrost\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)openfrost\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)openlibrary\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)openmediasoft\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ops\\.picscout\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)optitrade24\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)optsol\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)oqex\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)oracle\\-patches\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)orakul\\.spb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)oranga\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)order\\-prime\\-smm\\-service\\.party\" ||\n\t\treq.http.Referer ~ \"(?i)ordernorxx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)orel\\-reshka\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)oren\\-cats\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)origin\\-my\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ororodnik\\.goodbb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)osb\\.se11\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)osoznanie\\-narkotikam\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)osteochondrosis\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ostroike\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)ostrovtaxi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)otbelivanie\\-zubov\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)otdbiaxaem\\-vmeste\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)otdyx\\-s\\-komfortom\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)oudallas\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ourtherapy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)outshop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ovirus\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)own\\-ahrefs\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ownshop\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)owohho\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ozas\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)p\\-business\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)paceform\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pacobarrero\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pageinsider\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)paidonlinesites\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)painting\\-planet\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)palma\\-de\\-sochi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)palvira\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)palvira\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)pamjatnik\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)pammik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pamyatnik\\-spb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pamyatnik\\-tsena\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pandoshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)paparazzistudios\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)paperwritingservice17\\.blogspot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)paradontozanet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)parcsmalls\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)paretto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)parking\\-invest\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)partizan19\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)partnerskie\\-programmy\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)patonsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)paulinho\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pay\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)paydayonlinecom\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pc\\-services\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pechikamini\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pecmastore\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)pensplan\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pensplan4u\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)penzu\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)percin\\.biz\\.ly\" ||\n\t\treq.http.Referer ~ \"(?i)perfection\\-pleasure\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)perform\\-like\\-alibabaity\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)perform\\-likeism\\-alibaba\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)perimetor\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)perm\\.dienai\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)perm\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)perper\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)perso\\.wanadoo\\.es\" ||\n\t\treq.http.Referer ~ \"(?i)personalhoro\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)petedrummond\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)petroleumgeo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)petrovka\\-online\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)petrushka\\-restoran\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)petscar\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pfrf\\-kabinet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pharm\\-\\-shop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)phimarshcer\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)phimmakinhdi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)phobia\\.us\" ||\n\t\treq.http.Referer ~ \"(?i)photo\\-clip\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)photo\\.houseofgaga\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)photochki\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)photokitchendesign\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)photorepair\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)php\\-market\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)physfunc\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)picscout\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)picturesmania\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pills24h\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)piluli\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)pinkduck\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)pinupcasinos\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pinupcasinos1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pinupp1\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pipki\\.pp\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)piratbike\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pirateday\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pirelli\\-matador\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pisze\\.pisz\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)piter\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)piulatte\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)pizdeishn\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pizdeishn\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)pizza\\-imperia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pizza\\-tycoon\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pk\\-pomosch\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pk\\-services\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pkr1hand\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)plagscan\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)plastweb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)platesauto\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)platinumdeals\\.gr\" ||\n\t\treq.http.Referer ~ \"(?i)plohaya\\-kreditnaya\\-istoriya\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)plusnetwork\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pochemychka\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)podarkilove\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)poddon\\-moskva\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)podemnik\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)podseka1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pogodnyyeavarii\\.gq\" ||\n\t\treq.http.Referer ~ \"(?i)pogosh\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pogruztehnik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)poisk\\-zakona\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)poiskzakona\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pokemongooo\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)poker\\-royal777\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pokupaylegko\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)polcin\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)polemikon\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)politika\\.bg\" ||\n\t\treq.http.Referer ~ \"(?i)polyana\\-skazok\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)pomoc\\-drogowa\\.cba\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)pony\\-business\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)popads\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)popelina\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pops\\.foundation\" ||\n\t\treq.http.Referer ~ \"(?i)popugauka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)popugaychiki\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)popular\\-church\\-arrow\\-voucher\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)popup\\-fdm\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)popup\\-hgd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)popup\\-jdh\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)porn\\-video\\-chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)porn\\-w\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)porndl\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)pornhive\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)pornhub\\-forum\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)pornhub\\-forum\\.uni\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)pornhub\\-ru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pornhubforum\\.tk\" ||\n\t\treq.http.Referer ~ \"(?i)porno\\-asia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)porno\\-chaman\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)porno\\-dojki\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)porno\\-gallery\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)porno\\-play\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)porno\\-raskazy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)porno\\-transsexuals\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)porno\\-video\\-chati\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)porno2xl\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)pornobest\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)pornoblood\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pornobrazzers\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)pornodojd\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pornoelita\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)pornofiljmi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pornoforadult\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pornofoto\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)pornogig\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pornohd1080\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)pornokajf\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pornoklad\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)pornoklad\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pornokorol\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pornonik\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pornophoto\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)pornoplen\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pornorasskazy\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)pornosemki\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)pornoslave\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)pornotubexxx\\.name\" ||\n\t\treq.http.Referer ~ \"(?i)porodasobak\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)portal\\-eu\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)portnoff\\.od\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)portnoff\\.od\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)poshiv\\-chehol\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)positive2b\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pospektr\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)postclass\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)posteezy\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)potolokelekor\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)povodok\\-shop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)powitania\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)pozdravleniya\\-c\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pozdrawleniya\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pozdrawleniya\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pozvonim\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pp\\-budpostach\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)pravoholding\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)predmety\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)prezidentshop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)priceg\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pricheskaonline\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pricheski\\-video\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)primfootball\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)primoblog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)princeadvantagesales\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)print\\-technology\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)printie\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)printingpeach\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)priora\\-2\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)privatbank46\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)private\\-service\\.best\" ||\n\t\treq.http.Referer ~ \"(?i)privatov\\-zapisi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)privhosting\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)prizesk\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)prizrn\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)prlog\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pro\\-okis\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)probenzo\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)procrafts\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)prodaemdveri\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)producm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)prodvigator\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)prodvigator\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)proekt\\-gaz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)proekt\\-mos\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)professionalsolutions\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)professionalwritingservices15\\.blogspot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)profnastil\\-moscow\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)proftests\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)progressive\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)prohoster\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)prointer\\.net\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)prointer\\.net\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)projectforte\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)projefrio\\.com\\.br\" ||\n\t\treq.http.Referer ~ \"(?i)prokotov\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)prom23\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)prombudpostach\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)promodj\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)promoforum\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)promoteapps\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)promotion\\-for99\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)pron\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)pronekut\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)proposal\\-engine\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)propranolol40mg\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)proquoshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)prosmibank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-almata\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-astana\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-belgoroda\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-kharkova\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-kiev\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-novgoroda\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-odessa\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-rostova\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-rostova\\.ru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-tolyatti\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-tyumeni\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostitutki\\-yaroslavlya\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)prostoacc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)psa48\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)psiosale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)pskcijdc\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)psn\\-card\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)psvita\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)psychocryonics\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ptashkatextil\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)ptfic\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)punch\\.media\" ||\n\t\treq.http.Referer ~ \"(?i)purchasepillsnorx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)puteshestvennik\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)putevka24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)putitin\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)puzo2arbuza\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)puzzleweb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)pyrodesigns\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)q\\-moto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)qcstrtvt\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)qexyfu\\.bugs3\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)qitt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)qoinex\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)qtrstar\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)qualitymarketzone\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)quick\\-seeker\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)quickchange\\.cc\" ||\n\t\treq.http.Referer ~ \"(?i)quit\\-smoking\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)qwarckoine\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)qwesa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)qxnr\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)r\\-control\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rabot\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)rabotaetvse\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rachelblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)radiogambling\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rainbirds\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ranedaly\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)rangapoker\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rangjued\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rank\\-checker\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)rankchecker\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)ranking2017\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)rankings\\-analytics\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ranksays\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rankscanner\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ranksignals\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ranksonic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ranksonic\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)ranksonic\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ranksonic\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)rapevideosmovies\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rapidgator\\-porn\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)rapidhits\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)rapidsites\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)raschtextil\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)rasteniya\\-vs\\-zombi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ratraiser\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)rattan\\.co\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)raymondblog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)razamicroelectronics\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)razborka\\-skoda\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)rb\\-str\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rcb101\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rczhan\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)real\\-time\\-analytics\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)realnye\\-otzyvy\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)realresultslist\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)realting\\-moscow\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)recinziireale\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)recipedays\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)recipedays\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rednise\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)redraincine\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)refererx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)refpawro\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)refudiatethissarah\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)reginablog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)reginanahum\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)regionshop\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)registratciya\\-v\\-moskve\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)reklama\\-i\\-rabota\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)reklama1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)reklamnoe\\.agency\" ||\n\t\treq.http.Referer ~ \"(?i)reklamuss\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)releshop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rembash\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)remedyotc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)remkompov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)remmling\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)remont\\-comp\\-pomosh\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)remont\\-fridge\\-tv\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)remont\\-komputerov\\-notebook\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)remont\\-kvartirspb\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)remont\\-mobile\\-phones\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)remont\\-ustanovka\\-tehniki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)remontgruzovik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)remontvau\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)remote\\-dba\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)remotecomputingservices\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)rent2spb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rentalmaty\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)replica\\-watch\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)replicaclub\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)research\\.ifmo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)resell\\-seo\\-services\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)resellerclub\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)residualforlife\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)responsive\\-test\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)respublica\\-otel\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)resurs\\-2012\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)retreatia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)reversing\\.cc\" ||\n\t\treq.http.Referer ~ \"(?i)revolgc\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)reyel1985\\.webnode\\.fr\" ||\n\t\treq.http.Referer ~ \"(?i)rezeptiblud\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rfavon\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rfd\\-split\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)rfesc\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)rialp\\.getenjoyment\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)richinvestmonitor\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rida\\.tokyo\" ||\n\t\treq.http.Referer ~ \"(?i)riedismall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)rietisvi\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)rightenergysolutions\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)ring4rhino\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ringporno\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rique\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)risparmiocasa\\.bz\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)rkmbonline\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)robocheck\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)robot\\-forex\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)roleforum\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)roma\\-kukareku\\.livejournal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)roof\\-city\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)room\\-mebel\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ros\\-ctm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rospromtest\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rossanasaavedra\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)rossmark\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rostov\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)royal\\-betting\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)royal\\-casino\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)royal\\-casino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)royal\\-casinos\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)royal\\-casinos\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)royal\\-cazino\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)royal\\-cazino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)royal\\-investments\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)rozalli\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)roznica\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)rp9\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rrutw\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rspectr\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ru\\-lk\\-rt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ru\\-onion\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ru\\-online\\-sberbank\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ruex\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)rufreechats\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ruhydraru\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ruinfocomp\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rulate\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rumamba\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)runetki\\-online\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)runovschool\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)runstocks\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rupolitshow\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rus\\-lit\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rus\\-teh\\.narod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ruscams\\-com\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ruscopybook\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)rusenvironmental\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)rusexy\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)rusoft\\-zone\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ruspoety\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)russia\\-tao\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)russia\\-today\\-video\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)russian\\-postindex\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)russian\\-translator\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)russian\\-videochats\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)russintv\\.fr\" ||\n\t\treq.http.Referer ~ \"(?i)russkie\\-sochineniya\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)russkoe\\-zdorovie\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rustag\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rutor\\.group\" ||\n\t\treq.http.Referer ~ \"(?i)rvtv\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)rxshop\\.md\" ||\n\t\treq.http.Referer ~ \"(?i)rybalka\\-opt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)s\\-forum\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)s\\-luna\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)sabaapress\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sabinablog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)sack\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sad\\-torg\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)sady\\-urala\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sahohev\\.000host\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)saitevpatorii\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sakhboard\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sale\\-japan\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)saletool\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)saltspray\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)salutmontreal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)samanthablog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)samara\\-airport\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)samara\\-comfort\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)samchist\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)samlaurabrown\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)samo\\-soznanie\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)samogonius\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sanatorrii\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sanjosestartups\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)santaren\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)santasgift\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)santechnik\\.jimdo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)santehnovich\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sapaship\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sarafangel\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sarahmilne\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)saratov\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)sarf3omlat\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sashagreyblog\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)saudegoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)sauna\\-v\\-ufe\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sauni\\-lipetsk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sauni\\-moskva\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)savetubevideo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)savetubevideo\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)savne\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)sax\\-sex\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sbdl\\.no\" ||\n\t\treq.http.Referer ~ \"(?i)sbornik\\-zakonov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sc\\-specialhost\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-alex\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-alexa\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-andrew\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-barak\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-brian\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-don\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-donald\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-elena\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-fred\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-george\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-irvin\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-ivan\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-jack\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-jane\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-jess\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-jessica\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-john\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-josh\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-julia\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-julianna\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-margo\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-mark\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-marwin\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-mary\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-nelson\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-olga\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-viktor\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-walt\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-walter\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scanner\\-willy\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)scansafe\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)scat\\.porn\" ||\n\t\treq.http.Referer ~ \"(?i)scenarii\\-1\\-sentyabrya\\.uroki\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)school\\-diplomat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sciedsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)score\\-prime\\-web\\-service\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)screen\\-led\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)screentoolkit\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)scripted\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sdelai\\-prosto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sdelatmebel\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sdi\\-pme\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)search\\-error\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)search\\-helper\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)searchencrypt\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)searchlock\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seccioncontrabajo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)secret\\.xn\\-\\-oogle\\-wmc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)secretscook\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)security\\-corporation\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)securityallianceservices\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)see\\-your\\-website\\-here\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seekanvdoo22\\.live\" ||\n\t\treq.http.Referer ~ \"(?i)seisasale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)seksotur\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sel\\-hoz\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)selfhotdog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sell\\-fb\\-group\\-here\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)semalt\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)semalt\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)semalt\\.semalt\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)semaltmedia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)semxiu\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)senacertificados\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)senger\\.atspace\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)seo\\-2\\-0\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seo\\-b2b\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seo\\-platform\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seo\\-services\\-b2b\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seo\\-services\\-wordpress\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seo\\-smm\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)seo\\-tips\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)seo\\-traffic\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)seoanalyses\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seobook\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)seocheckupx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seocheckupx\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)seoexperimenty\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)seojokes\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)seokicks\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)seopub\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)seoriseome\\.netlify\\.app\" ||\n\t\treq.http.Referer ~ \"(?i)seoservices2018\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)serenamall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)serialsway\\.ucoz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)serialsx\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)servemlixo\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)servisural\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)serw\\.clicksor\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)seryeznie\\-znakomstva\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)setioweb\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sex\\-dating\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)sex\\-porno\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)sex\\-spying\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sex\\-videochats\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sexkrasivo\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sexpornotales\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sexreliz\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sexreliz\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sexsaoy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sexuria\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sexvideo\\-sex\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sexvporno\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sexwife\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sexy\\-girl\\-chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sexyali\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sexyteens\\.hol\\.es\" ||\n\t\treq.http.Referer ~ \"(?i)sexytrend\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sfd\\-chess\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shagtomsk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shakhtar\\-doneck\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shamcisale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)shanscasino1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)share\\-button\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)share\\-buttons\\-for\\-free\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)share\\-buttons\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)sharebutton\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)sharebutton\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sharebutton\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)sharebutton\\.to\" ||\n\t\treq.http.Referer ~ \"(?i)sharemyfile\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shariki\\-zuma\\-lines\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shcrose\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sheki\\-spb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shemy\\-vishivki\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)shiksabd\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)shinikiev\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)ship\\-marvel\\.co\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)shisenshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)shisha\\-swag\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)shlyahten\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shnyagi\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)shodanhq\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)shop\\-electron\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shop\\-garena\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shop\\.garena\\.ru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)shop\\.xz618\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)shop2hydra\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)shop4fit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shopfishing\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)shoppinglocation\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)shoppingmiracles\\.co\\.uk\" ||\n\t\treq.http.Referer ~ \"(?i)shoprybalka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shops\\-ru\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shopsellcardsdumps\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)shopvilleroyboch\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)shopwme\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shtaketniki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)shtormmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)shulepov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sib\\-kukla\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sibecoprom\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sibkukla\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sideeffectsoftizanidine\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sign\\-service\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)signx\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)sihugoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)silverage\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)silvergull\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)silvermature\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sim\\-dealer\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sim\\-service\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)similarmoviesdb\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)simoncinicancertherapy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)simple\\-share\\-buttons\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)simplepooltips\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sims\\-sims\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sinel\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)sinestesia\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)singularwebs\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sinhronperevod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)siongetadsincome\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)sirhoutlet\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)siritshop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)sisiynas\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)site\\-auditor\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)site\\-speed\\-check\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)site\\-speed\\-checker\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)site3\\.free\\-share\\-buttons\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)site5\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)siteexpress\\.co\\.il\" ||\n\t\treq.http.Referer ~ \"(?i)siteripz\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sitesadd\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sitevaluation\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sitevaluation\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)sivs\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sjmsw\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sk\\.golden\\-praga\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ski\\-centers\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)skidku\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)skinali\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)skinali\\.photo\\-clip\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sklad\\-24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)skladvaz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sky\\-mine\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)skylta\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sladkoevideo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)slashpet\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)slavic\\-magic\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)slavkokacunko\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)sledstvie\\-veli\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)slftsdybbg\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)slkrm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)slomm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)slonechka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sloopyjoes\\.com\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)slotron\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)slow\\-website\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)slujbauborki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)smailik\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)small\\-game\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)small\\-games\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)smartpet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)smartphonediscount\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)sms2x2\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)smstraf\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)smt4\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)smzt\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)snabs\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)snaiper\\-bg\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)sneakerfreaker\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)snegozaderzhatel\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)snip\\.to\" ||\n\t\treq.http.Referer ~ \"(?i)snip\\.tw\" ||\n\t\treq.http.Referer ~ \"(?i)snjatie\\-geroinovoy\\-lomki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)snomer1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)snyatie\\-lomki\\-v\\-stacionare\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)soaksoak\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)soblaznu\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)soc\\-econom\\-problems\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)soc\\-proof\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)socas\\.pluto\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)sochi\\-3d\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-button\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-aa\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-aaa\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-bb\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-bbb\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-cc\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-ccc\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-dd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-ddd\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-ee\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-eee\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-ff\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-fff\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-gg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-ggg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-hh\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-ii\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\-iii\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-buttons\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-fun\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-s\\-ggg\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-s\\-hhh\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-s\\-iii\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-search\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-traffic\\-1\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-traffic\\-2\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-traffic\\-3\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-traffic\\-4\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-traffic\\-5\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-traffic\\-6\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-traffic\\-7\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-vestnik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)social\\-widget\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)socialbookmarksubmission\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)socialbutton\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)socialbuttons\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)socialine\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)socialseet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)socialtrade\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)sofit\\-dmd\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)soft\\-program\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)softomix\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)softomix\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)softomix\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)softomix\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)softtor\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)softxaker\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sohoindia\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)soki\\.tv\" ||\n\t\treq.http.Referer ~ \"(?i)solartek\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)solitaire\\-game\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)solnplast\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sonata\\-arctica\\.wz\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)songoo\\.wz\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)sonnikforme\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sonyelektronik\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sosdepotdebilan\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sotkal\\.lark\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)soundfrost\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)soup\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)souvenirua\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sovetogorod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sovetskie\\-plakaty\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)soviet\\-portal\\.do\\.am\" ||\n\t\treq.http.Referer ~ \"(?i)sowhoz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)soyuzexpedition\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sp\\-laptop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sp\\-zakupki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)space2019\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)spacebarnot\\.work\" ||\n\t\treq.http.Referer ~ \"(?i)spain\\-poetry\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)spartania\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)spb\\-plitka\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)spb\\-scenar\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)spb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)spbchampionat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)special\\-porn\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)specstroy36\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)speedup\\-my\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)spin2016\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)sport\\-video\\-obzor\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sportbetfair\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sportobzori\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sportwizard\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)spravka130\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)spravkavspb\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)spravkavspb\\.work\" ||\n\t\treq.http.Referer ~ \"(?i)sprawka\\-help\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)spscmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)spuemonti\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)spy\\-app\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)spy\\-sts\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sqadia\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)squarespace\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)squidoo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)srecorder\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sribno\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ssn\\.is\" ||\n\t\treq.http.Referer ~ \"(?i)sssexxx\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ssve\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)st\\-komf\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sta\\-grand\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stairliftstrue\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)star61\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)stardevine\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)stariy\\-baku\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)start\\.myplaycity\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)startraffic\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)startufa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)startwp\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)stat\\.lviv\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)statashop\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)static\\.seders\\.website\" ||\n\t\treq.http.Referer ~ \"(?i)statustroll\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)stauga\\.altervista\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)stavimdveri\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)steame\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)steelmaster\\.lv\" ||\n\t\treq.http.Referer ~ \"(?i)stiralkovich\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stocktwists\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)stoki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stoletie\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stoliar\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)stomatologi\\.moscow\" ||\n\t\treq.http.Referer ~ \"(?i)stop\\-nark\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stop\\-zavisimost\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)store\\-rx\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)strady\\.org\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)strana\\-krasoty\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)strana\\-solnca\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stream\\-tds\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)streetfire\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)streetfooduncovered\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)streha\\-metalko\\.si\" ||\n\t\treq.http.Referer ~ \"(?i)strigkaomsk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stroi\\-24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stroicol\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)stroimajor\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stroiminsk\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)stroiminsk\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)stromerrealty\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)strongholdsb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)strongtools\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)stroy\\-matrix\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stroyalp\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stroydetali\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stroyka\\-gid\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stroyka47\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)stroymonolit\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)studentguide\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)studiofaca\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)stuff\\-about\\-money\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)stuffhydra\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)stylecaster\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)styro\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)su1ufa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)success\\-seo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)suckoutlet\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)sudachitravel\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sugarkun\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)sugvant\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)sundrugstore\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)super\\-seo\\-guru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)superiends\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)supermama\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)supermesta\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)supermodni\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)supernew\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)superoboi\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)superpages\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)superslots\\-casino\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)superslots\\-casino\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)superslots\\-cazino\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)superslots\\-cazino\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)superslotz\\-casino\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)superslotz\\-cazino\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)supertraffic\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)supervesti\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)surflinksmedical\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)susanholtphotography\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)suzanneboswell\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)svadba\\-teplohod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)svarbit\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)svarog\\-jez\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)svensk\\-poesi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)svet\\-depo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)svetka\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)svetlotorg\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)svetoch\\.moscow\" ||\n\t\treq.http.Referer ~ \"(?i)svetodiodoff\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)svoimi\\-rukamy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)svs\\-avto\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)swagbucks\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)swaplab\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)sweet\\.tv\" ||\n\t\treq.http.Referer ~ \"(?i)sygraem\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)szansadlarolnikow\\.com\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)t\\-machinery\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)t\\-rec\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)t3chtonic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)taartstore\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)tagmeanvice\\.live\" ||\n\t\treq.http.Referer ~ \"(?i)taihouse\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tam\\-gde\\-more\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tamada69\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tammyblog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)targetpay\\.nl\" ||\n\t\treq.http.Referer ~ \"(?i)tasteidea\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tastyfoodideas\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tattoo\\-stickers\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tattoo33\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tattooha\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)taximytishi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tccp\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)tcenavoprosa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tcsinksale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)tcyh\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)td\\-33\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)td\\-abs\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)td\\-l\\-market\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)td\\-perimetr\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tdbatik\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tds\\-west\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)teastory\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)techart24\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)technika\\-remont\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)technopellet\\.gr\" ||\n\t\treq.http.Referer ~ \"(?i)tecspb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tedxrj\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tedy\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)teedle\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)tehngr\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)telegramdownload10\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)telesvoboda\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)telfer\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)teman\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)tennis\\-bet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tentcomplekt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)teplohod\\-gnezdo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)teplokomplex\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)teplolidoma\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)terapist\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)teresablog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)tesla\\-audit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)teslathemes\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)test\\-extra\\-full\\-stack\\-services\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)test\\-prime\\-smm\\-service\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)test\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)texbaza\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)texnika\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)tgsubs\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tgtclick\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)thaimassage\\-slon\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)thaoduoctoc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)the\\-torrent\\-tracker\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)the\\-usa\\-games\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)the\\-world\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)theautoprofit\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)thebluenoodle\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)thecoral\\.com\\.br\" ||\n\t\treq.http.Referer ~ \"(?i)thedownloadfreeonlinegames\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)thedownloadfromwarez\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)thefds\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)thegreensociety\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)theguardlan\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)theheroes\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)thejournal\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)thelotter\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)thepokertimer\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)therealshop\\.exaccess\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)thesensehousehotel\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)thesmartsearch\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)thewomenlife\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)thiegs\\.reco\\.ws\" ||\n\t\treq.http.Referer ~ \"(?i)thin\\.me\\.pn\" ||\n\t\treq.http.Referer ~ \"(?i)tiandeural\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tiens2010\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)timeallnews\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)timer4web\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)timetorelax\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)timmy\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)tip8\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidine4mg\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidine4mgprice\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidine4mgstreetprice\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidine4mgstreetvalue\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidine4mgtablets\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidine4mguses\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidine6mg\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineandcipro\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineandgabapentin\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineandhydrocodone\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinecapsules\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinecost\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinedosage\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinedosageforsleep\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinedruginteractions\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinedrugtest\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineduringpregnancy\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinefibromyalgia\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineformigraines\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineforopiatewithdrawal\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehcl2mg\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehcl2mgsideeffects\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehcl2mgtablet\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehcl4mgisitanarcotic\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehcl4mgtab\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehcl4mgtabinfo\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehcl4mgtablet\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehclsideeffects\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehydrochloride2mg\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineinfo\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineingredients\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineinteractions\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinemusclerelaxant\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinenarcotic\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineonline\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineoral\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineorflexeril\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinepain\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinepills\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinerecreationaluse\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinerestlesslegsyndrome\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineshowupondrugtest\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinesideeffects\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinesideeffectsweightloss\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinesleepaid\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinestreetprice\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinestreetvalue\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidineusedfor\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinevscyclobenzaprine\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinevssoma\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinevsvalium\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinewithdrawal\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinewithdrawalsymptoms\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tizanidinezanaflex\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tkanorganizma\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tksn\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tocan\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)tocan\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)tokshow\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)toloka\\.hurtom\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tomatis\\.gospartner\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tomck\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tommysautomotivecare\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)top\\-gan\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)top\\-instagram\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)top\\-kasyna\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)top\\-l2\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)top1\\-seo\\-service\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)top10\\-online\\-games\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)top10\\-way\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)top250movies\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)top8\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)topgurudeals\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)topmebeltorg\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)topmira\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)toposvita\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)topquality\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)topseoservices\\.co\" ||\n\t\treq.http.Referer ~ \"(?i)topshef\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)topvidos\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tor\\.vc\" ||\n\t\treq.http.Referer ~ \"(?i)torobrand\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)torontoplumbinggroup\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)torospa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)torrentgamer\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)torrentred\\.games\" ||\n\t\treq.http.Referer ~ \"(?i)torrents\\-tracker\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)torrnada\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)torture\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)totppgoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)touchmods\\.fr\" ||\n\t\treq.http.Referer ~ \"(?i)tourburlington\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tovaroboom\\.vast\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tpu\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)track\\-rankings\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)tracker24\\-gps\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)trade365\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)traderzplanet\\.co\\.in\" ||\n\t\treq.http.Referer ~ \"(?i)trafaret74\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)trafers\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)traffic\\-cash\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)traffic\\-paradise\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)traffic2cash\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)traffic2cash\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)traffic2cash\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)traffic2money\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)trafficbot\\.life\" ||\n\t\treq.http.Referer ~ \"(?i)trafficbot4free\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)trafficdrive\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)trafficgenius\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)trafficmonetize\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)trafficmonetizer\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)trafficstudio\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)traffictomoney\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)trahvid\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tramadolandtizanidine\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)transit\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)transsex\\-videochat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)traphouselatino\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)travel\\-semantics\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)travgoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)traxdom\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)trex\\-casino\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)trex\\.casino\" ||\n\t\treq.http.Referer ~ \"(?i)tri\\-slona\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)trick\\-negotiation\\-cup\\-wonder\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tricolortv\\-online\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)trieste\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)trion\\.od\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)trion\\.od\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)triumf\\-realty\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)trk\\-4\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)trubywriting\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)truck\\-spite\\-lawyer\\-activity\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)truebeauty\\.cc\" ||\n\t\treq.http.Referer ~ \"(?i)tsatu\\.edu\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)tsc\\-koleso\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tsstcorpcddvdwshbbdriverfb\\.aircus\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ttechno\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)tuberkulezanet\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tuberkuleznik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tudusale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)tula\\.mdverey\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tuningdom\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tupper\\-posuda\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tupper\\-shop\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)turbo\\-suslik\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)turist\\-strani\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)turkeyreport\\.tk\" ||\n\t\treq.http.Referer ~ \"(?i)turvgori\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tvand\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)tvfru\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)tvgoals\\.tv\" ||\n\t\treq.http.Referer ~ \"(?i)tvoystartup\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)twincitiescarservice\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)twojebook\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)twsufa\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)twu\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)tytoona\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)tyumen\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)u\\-cheats\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)u17795\\.netangels\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ua\\-company\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ua\\.tc\" ||\n\t\treq.http.Referer ~ \"(?i)uaecdsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)uasb\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ublaze\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ucanfly\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ucban\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)uchebavchehii\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)uchil\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ucoz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ucsfstore\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)ucsol\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)uctraffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)udav\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ufa\\.dienai\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ufa\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)ufolabs\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)uginekologa\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ukrainian\\-poetry\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ukrcargo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ukrtvory\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)ukstmalls\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)ul\\-potolki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ultimateuninstall\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)um\\-razum\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)umg\\-stroy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)umityangin\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)undergroundcityphoto\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)uni\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)unibus\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)unimodemhalfduplefw\\.pen\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)uniqgen\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)unitygame3d\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)univerfiles\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)unlimitdocs\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)unmaroll\\.ya\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)unpredictable\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)upcronline\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)uptime\\-alpha\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)uptime\\-as\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)uptime\\-beta\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)uptime\\-delta\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)uptime\\-eu\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)uptime\\-gamma\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)uptime\\-us\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)uptime\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)uptimebot\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)uptimechecker\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ural\\-buldozer\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)urbanblog\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)urbanchr\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)urblog\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)urccvfmc\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)urlopener\\.blogspot\\.com\\.au\" ||\n\t\treq.http.Referer ~ \"(?i)urlopener\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)urlumbrella\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)uruto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)us\\-america\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)usadacha\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)userequip\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)uslugi\\-tatarstan\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ussearche\\.cf\" ||\n\t\treq.http.Referer ~ \"(?i)ustion\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)uterkysale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)utrolive\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)uusmsale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)uyut\\-dom\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)uyutmaster73\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)uzpaket\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)uzungil\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)v\\-casino\\.fun\" ||\n\t\treq.http.Referer ~ \"(?i)v\\-casino\\.host\" ||\n\t\treq.http.Referer ~ \"(?i)v\\-casino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)v\\-casino\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)v\\-casino\\.website\" ||\n\t\treq.http.Referer ~ \"(?i)v\\-casino\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)v\\-cazino\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)v\\-cazino\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vabasa\\.inwtrade\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vaderenergy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vadimkravtcov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)valid\\-cc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)validccseller\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)validus\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)valkiria\\-tk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vanessablog\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)vape\\-x\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vapmedia\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)vapsy\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vardenafil20\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)varikozdok\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vashsvet\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vavada\\-casino\\.host\" ||\n\t\treq.http.Referer ~ \"(?i)vavada\\-casino\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)vavada\\-cazino\\.host\" ||\n\t\treq.http.Referer ~ \"(?i)vavada\\-cazino\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)vavilone\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vbabule\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)vbikse\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vc\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vchulkah\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)vduplo\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)veerotech\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vegascosmetics\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vekzdorov\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)veles\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)velobikestock\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)veloland\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)venta\\-prom\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ventelnos\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)ventopt\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)veronicablog\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)vescenter\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)veselokloun\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vesnatehno\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vesnatehno\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vesta\\-lada\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)vetbvc\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vezdevoz\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)vezuviy\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)vgoloveboli\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)via\\-gra\\.webstarts\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)viagra\\-soft\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)viagra\\.pp\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)viagroid\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)viandpet\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)viberdownload10\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)video\\-\\-production\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)video\\-chat\\.in\" ||\n\t\treq.http.Referer ~ \"(?i)video\\-girl\\-online\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)video\\-hollywood\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)video\\-woman\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)videochat\\-dating\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)videochat\\.guru\" ||\n\t\treq.http.Referer ~ \"(?i)videochat\\.mx\" ||\n\t\treq.http.Referer ~ \"(?i)videochat\\.tv\\.br\" ||\n\t\treq.http.Referer ~ \"(?i)videochat\\.world\" ||\n\t\treq.http.Referer ~ \"(?i)videochaty\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)videofrost\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)videofrost\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)videokrik\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)videos\\-for\\-your\\-business\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)videosbox\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)videotop\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)videotuber\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vidzwap\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)viel\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)vigrx\\-original\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)viktoria\\-center\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vilingstore\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)vinsit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vip\\-dom\\.in\" ||\n\t\treq.http.Referer ~ \"(?i)vip\\-parfumeria\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vipsiterip\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)virtchats\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)virtual\\-love\\-video\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)virtual\\-sex\\-chat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)virtual\\-sex\\-time\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)virtual\\-sex\\-videochat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)virtual\\-zaim\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)virtualbb\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)virus\\-schutzmasken\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)visa\\-china\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)visa\\-pasport\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vita\\.com\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)vitanail\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)viven\\.host\\.sk\" ||\n\t\treq.http.Referer ~ \"(?i)vizag\\.kharkov\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)vk\\-mus\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vk\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vkak\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vkonche\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vkontaktemusic\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vkontarkte\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vksaver\\-all\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vksex\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vladhistory\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vladtime\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vltai\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vmnmvzsmn\\.over\\-blog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vod\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)vodabur\\.by\" ||\n\t\treq.http.Referer ~ \"(?i)vodaodessa\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)voditeltrezviy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vodkoved\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)volgograd\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)volond\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)voloomoney\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)volume\\-pills\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)voprosotvet24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)voronezh\\.xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)vostgard\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vostoktrade\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)vote\\-up\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vozbujdenie\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vpdr\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)vpnhowto\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)vrazbor59\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vriel\\.batcave\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)vrnelectro\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vrnhnmall\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)vrotike\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vsdelke\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vseigru\\.one\" ||\n\t\treq.http.Referer ~ \"(?i)vseigry\\.fun\" ||\n\t\treq.http.Referer ~ \"(?i)vseprobrak\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vsesubwaysurfers\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vseuznaem\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vucms\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vulkan\\-nadengi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vulkan\\-oficial\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vulkanrussia1\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vykup\\-avto\\-krasnodar\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vykupavto\\-krasnodar\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)vzheludke\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vzlom\\-na\\-zakaz\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vzubah\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vzube\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)vzubkah\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)w2mobile\\-za\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)w3javascript\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)w7s\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wakeupseoconsultant\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wallabag\\.malooma\\.bzh\" ||\n\t\treq.http.Referer ~ \"(?i)wallet\\-prlzn\\.space\" ||\n\t\treq.http.Referer ~ \"(?i)wallinside\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)wallpaperdesk\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)wallpapers\\-all\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wallpapers\\-best\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wallpapersdesk\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)wallstore\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)wandamary\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)wapsite\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)warmex\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)warningwar\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wasabisale\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)watch\\-movies\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wave\\-games\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wayfcoin\\.space\" ||\n\t\treq.http.Referer ~ \"(?i)wbjm\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)wcb\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)wdfdocando\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wdss\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)we\\-ping\\-for\\-youian\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)we\\-ping\\-for\\-youic\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)web\\-analytics\\.date\" ||\n\t\treq.http.Referer ~ \"(?i)web\\-betting\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)web\\-lazy\\-services\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)web\\-list\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)web\\-revenue\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)web\\.cvut\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)webalex\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)webinstantservice\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)webix\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)webjam\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)weblibrary\\.win\" ||\n\t\treq.http.Referer ~ \"(?i)webmaster\\-traffic\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)webmonetizer\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)webradiology\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)webs\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-analytics\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-analyzer\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-errors\\-scanner\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-promotion\\.bid\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-promotion\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-promotion\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-promotion\\.win\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-seo\\.bid\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-seo\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-seo\\.win\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-smm\\.bid\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-smm\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-smm\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\-smm\\.win\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\.review\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\.stream\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-services\\.win\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-speed\\-check\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-speed\\-checker\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-speed\\-up\\.site\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-speed\\-up\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)website\\-stealer\\-warning\\-alert\\.hdmoviecams\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)websitebottraffic\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)websitebottraffic\\.host\" ||\n\t\treq.http.Referer ~ \"(?i)websites\\-reviews\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)websocial\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)webtherapy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)weburlopener\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wedding\\-salon\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)weebly\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)weekes\\.biz\\.tc\" ||\n\t\treq.http.Referer ~ \"(?i)weightatraining\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)weightbelts\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)welck\\.octopis\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)welcomeauto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)weprik\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wetgames\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wfdesigngroup\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)whatistizanidine2mg\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)whatistizanidinehclusedfor\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)whatsappdownload10\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)whereiskentoday\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wicivow\\.007h\\.ml\" ||\n\t\treq.http.Referer ~ \"(?i)wikes\\.20fr\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)williamrobsonproperty\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)winx\\-play\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)witherrom55\\.eklablog\\.fr\" ||\n\t\treq.http.Referer ~ \"(?i)wjxmenye\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wmasterlead\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wnoz\\.de\" ||\n\t\treq.http.Referer ~ \"(?i)woman\\-h\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)woman\\-orgasm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)woman\\-tampon\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)womens\\-journal\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)womensplay\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)womensterritory\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wordpress\\-crew\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)wordpresscore\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)work\\-from\\-home\\-earn\\-money\\-online\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)workius\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)workona\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)works\\.if\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)world\\-mmo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)worldgamenews\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)worldhistory\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)worldis\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)worldlovers\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)worldmed\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)worldofbtc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wormix\\-cheats\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wowas31\\.ucoz\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)woweb\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)wpnull\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)wptraffic\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)wrazilwispolecznie\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)wrc\\-info\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)writingservices17\\.blogspot\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wrona\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)wstroika\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)wufak\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)wurr\\.voila\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)ww1943\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ww2awards\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)www\\-lk\\-rt\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)www\\.gelendzhic\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)www1\\.free\\-share\\-buttons\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)wzgyyq\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)x\\-lime\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)x\\-lime\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)x\\-musics\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)x\\-stars\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)x5market\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)xaker26\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)xbaboon\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xboxster\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)xexe\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)xfire\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xgftnlrt\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)xion\\.cash\" ||\n\t\treq.http.Referer ~ \"(?i)xjrul\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xkaz\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)xlolitka\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xmnb\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-\\-\\-\\-53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-\\-\\-6cdbciescapvf0a8bibwx0a1bu\\.xn\\-\\-90ais\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-\\-6kcaacnblni5c5bicdpcmficy\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-\\-6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-\\-6kcamwewcd9bayelq\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-\\-7kcaaxchbbmgncr7chzy0k0hk\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-\\-7kceclhb4abre1b4a0ccl2fxch1a\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-\\-8kcatubaocd1bneepefojs1h2e\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-\\-clckdac3bsfgdft3aebjp5etek\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-7sbabb9a1b7bddgm6a1i\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-7sbabhjc3ccc5aggbzfmfi\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-7sbabhv4abd8aih6bb7k\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-7sbabm1ahc4b2aqff\\.su\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-7sbabn5abjehfwi8bj\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-7sbaphztdjeboffeiof6c\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-7sbbpe3afguye\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-7sbho2agebbhlivy\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-8sbaki4azawu5b\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-8sbarihbihxpxqgaf0g1e\\.xn\\-\\-80adxhks\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-8sbbjimdeyfsi\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-8sbdbjgb1ap7a9c4czbh\\.xn\\-\\-p1acf\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-8sbhefaln6acifdaon5c6f4axh\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-8sblgmbj1a1bk8l\\.xn\\-\\-\\-\\-161\\-4vemb6cjl7anbaea3afninj\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-8sbowe2akbcd4h\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-8sbpmgeilbd8achi0c\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-btbdvdh4aafrfciljm6k\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-ctbbcjd3dbsehgi\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-ctbfcdjl8baejhfb1oh\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-ctbigni3aj4h\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-dtbffp5aagjgfm\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-ftbeoaiyg1ak1cb7d\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-gtbdb0beu1bb8gj\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-itbbudqejbfpg3l\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-\\-\\-jtbjfcbdfr0afji4m\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-78\\-6kc6akkhn3a3k\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-78\\-6kcmzqfpcb1amd1q\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80aaafbn2bc2ahdfrfkln6l\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80aaajbdbddwj2alwjieei2afr3v\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80aaajkrncdlqdh6ane8t\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80aaaks3bbhabgbigamdr2h\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80aabcsc3bqirlt\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80aanaardaperhcem4a6i\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80ab4aa2g\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80adaggc5bdhlfamsfdij4p7b\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80adgcaax6acohn6r\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80aeahghtf8ac5i\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80aeb6argv\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80aebzmbfeebe\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80ahdheogk5l\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80ahvj9e\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80ajbshivpvn2i\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-80ajjbdhgmudixfjc8c5a9df8b\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-90acenikpebbdd4f6d\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-90acjmaltae3acm\\.xn\\-\\-p1acf\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-90adhhccf5aeewt7j\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-b1adccayqiirhu\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-b1ag5cfn\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-b1agm2d\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-c1acygb\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-d1abj0abs9d\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-d1aifoe0a9a\\.top\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-e1aaajzchnkg\\.ru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-e1aahcgdjkg4aeje6j\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-e1agf4c\\.xn\\-\\-80adxhks\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-e1aggki3c\\.xn\\-\\-80adxhks\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-h1ahbi\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-hxazdsfy\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-l1aengat\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-mhg\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-oogle\\-wmc\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xn\\-\\-q1a\\.xn\\-\\-b1aube0e\\.xn\\-\\-c1acygb\\.xn\\-\\-p1ai\" ||\n\t\treq.http.Referer ~ \"(?i)xnxx\\-n\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xolodremont\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)xpert\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)xportvusbdriver8i\\.snack\\.ws\" ||\n\t\treq.http.Referer ~ \"(?i)xpresscare\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)xrp\\-ripple\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)xrus\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)xsion\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)xtraffic\\.plus\" ||\n\t\treq.http.Referer ~ \"(?i)xtrafficplus\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xtrafficplus\\.online\" ||\n\t\treq.http.Referer ~ \"(?i)xtrafficplus\\.shop\" ||\n\t\treq.http.Referer ~ \"(?i)xtrafficplus\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)xtubeporno\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)xvideosbay\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xxart\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)xxx\\-treker\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)xxxhamster\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)xxxtube69\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xxxvideochat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)xz618\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)xzlive\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)yaderenergy\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)yaminecraft\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)yeartwit\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)yellowstonevisitortours\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)yes\\-com\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)yes\\-do\\-now\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)yhirurga\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ykecwqlixx\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)ynymnwbm\\.bloger\\.index\\.hr\" ||\n\t\treq.http.Referer ~ \"(?i)yodse\\.io\" ||\n\t\treq.http.Referer ~ \"(?i)yoga4\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)youandcredit\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)youbloodyripper\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)youdesigner\\.kz\" ||\n\t\treq.http.Referer ~ \"(?i)yougame\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)yougetsignal\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)youghbould\\.wordpress\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)youhack\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)youjizz\\.vc\" ||\n\t\treq.http.Referer ~ \"(?i)youporn\\-forum\\.ga\" ||\n\t\treq.http.Referer ~ \"(?i)youporn\\-forum\\.uni\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)youporn\\-ru\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)your\\-good\\-links\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)your\\-tales\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)yourdesires\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)youresponsive\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)yourothersite\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)yoursearch\\.me\" ||\n\t\treq.http.Referer ~ \"(?i)yourserverisdown\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)yoursite\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)yourtraffic\\.club\" ||\n\t\treq.http.Referer ~ \"(?i)youtoner\\.it\" ||\n\t\treq.http.Referer ~ \"(?i)youtubedownload\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)yqpc\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)yuarra\\.pluto\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)yubikk\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)yugk\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)yugo\\-star\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)yunque\\.pluto\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)yur\\-p\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)yurcons\\.pro\" ||\n\t\treq.http.Referer ~ \"(?i)yurgorod\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)yuristproffi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zagadki\\.in\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)zahodi2hydra\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)zahvat\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zaidia\\.xhost\\.ro\" ||\n\t\treq.http.Referer ~ \"(?i)zaim\\-pod\\-zalog\\-krasnodar\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zaimhelp\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zajm\\-pod\\-zalog\\-nedvizhimosti\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zakazfutbolki\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zakaznoy\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)zakazvzloma\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zakis\\-azota24\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zakisazota\\-official\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zakon\\-ob\\-obrazovanii\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zaloadi\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zamolotkom\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zapnado\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zarabotat\\-na\\-sajte\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zarabotat\\-v\\-internete\\.biz\" ||\n\t\treq.http.Referer ~ \"(?i)zarenica\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)zastenchivosti\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)zastroyka\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)zavod\\-gm\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zazagames\\.org\" ||\n\t\treq.http.Referer ~ \"(?i)zdesformula\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zdesoboi\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zdm\\-auto\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zdm\\-auto\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zdorovie\\-nogi\\.info\" ||\n\t\treq.http.Referer ~ \"(?i)zebradudka\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zelena\\-mriya\\.com\\.ua\" ||\n\t\treq.http.Referer ~ \"(?i)zeleznobeton\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zerocash\\.msk\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zexhgoods\\.xyz\" ||\n\t\treq.http.Referer ~ \"(?i)zhcsapp\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)zhoobintravel\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zhorapankratov7\\.blogspot\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zigarettenonl\\.canalblog\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zigarettenonlinekaufen\\.tumblr\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zigarettenonlinekaufen1\\.bloog\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)zigarettenonlinekaufen1\\.blox\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)zigarettenonlinekaufen2\\.bloog\\.pl\" ||\n\t\treq.http.Referer ~ \"(?i)zigarettenonlinekaufen2\\.drupalgardens\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zigzog\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zlatnajesen\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zmoda\\.hostreo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)znakomstva\\-moskva77\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)znakomstva\\-piter78\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)znakomstvaonlain\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)znaniyapolza\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zojirushi\\-products\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zolotoy\\-lis\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zonefiles\\.bid\" ||\n\t\treq.http.Referer ~ \"(?i)zoominfo\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zot\\.moscow\" ||\n\t\treq.http.Referer ~ \"(?i)zt\\-m\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zuchn\\.com\" ||\n\t\treq.http.Referer ~ \"(?i)zverokruh\\-shop\\.cz\" ||\n\t\treq.http.Referer ~ \"(?i)zvetki\\.ru\" ||\n\t\treq.http.Referer ~ \"(?i)zvooq\\.eu\" ||\n\t\treq.http.Referer ~ \"(?i)zvuker\\.net\" ||\n\t\treq.http.Referer ~ \"(?i)zyzzcentral\\.ru\"\n\t) {\n\t\t\treturn (synth(444, \"No Response\"));\n\t}\n}"
  },
  {
    "path": "referral_spam.res",
    "content": "# https://github.com/Stevie-Ray/referrer-spam-blocker\n# Updated 2026-03-04 18:14:04\n\n#\n# Put referral-spam.res in /path/to/vassals, then include it from within\n# /path/to/vassals/vassal.ini:\n#\n# ini = referral_spam.res:blacklist_spam\n\n\n[blacklist_spam]\nroute-referer = (?i)0\\-0\\.fr break:403 Forbidden\nroute-referer = (?i)000free\\.us break:403 Forbidden\nroute-referer = (?i)007agent\\-i\\.fr break:403 Forbidden\nroute-referer = (?i)00author\\.com break:403 Forbidden\nroute-referer = (?i)00go\\.com break:403 Forbidden\nroute-referer = (?i)00it\\.com break:403 Forbidden\nroute-referer = (?i)01casino\\-x\\.ru break:403 Forbidden\nroute-referer = (?i)033nachtvandeliteratuur\\.nl break:403 Forbidden\nroute-referer = (?i)03e\\.info break:403 Forbidden\nroute-referer = (?i)03p\\.info break:403 Forbidden\nroute-referer = (?i)0n\\-line\\.tv break:403 Forbidden\nroute-referer = (?i)1\\-88\\.vip break:403 Forbidden\nroute-referer = (?i)1\\-99seo\\.com break:403 Forbidden\nroute-referer = (?i)1\\-best\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)1\\-free\\-share\\-buttons\\.com break:403 Forbidden\nroute-referer = (?i)100\\-reasons\\-for\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)100dollars\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)100searchengines\\.com break:403 Forbidden\nroute-referer = (?i)101flag\\.ru break:403 Forbidden\nroute-referer = (?i)11235813\\.webzdarma\\.cz break:403 Forbidden\nroute-referer = (?i)12\\-reasons\\-for\\-seo\\.net break:403 Forbidden\nroute-referer = (?i)12masterov\\.com break:403 Forbidden\nroute-referer = (?i)12u\\.info break:403 Forbidden\nroute-referer = (?i)15\\-reasons\\-for\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)16lv\\.com break:403 Forbidden\nroute-referer = (?i)1hwy\\.com break:403 Forbidden\nroute-referer = (?i)1kinobig\\.ru break:403 Forbidden\nroute-referer = (?i)1kreditzaim\\.ru break:403 Forbidden\nroute-referer = (?i)1pamm\\.ru break:403 Forbidden\nroute-referer = (?i)1st\\-urist\\.ru break:403 Forbidden\nroute-referer = (?i)1webmaster\\.ml break:403 Forbidden\nroute-referer = (?i)1wek\\.top break:403 Forbidden\nroute-referer = (?i)1winru\\.ru break:403 Forbidden\nroute-referer = (?i)1x\\-slot\\.site break:403 Forbidden\nroute-referer = (?i)1x\\-slots\\.site break:403 Forbidden\nroute-referer = (?i)1xbet\\-entry\\.ru break:403 Forbidden\nroute-referer = (?i)1xbetcc\\.com break:403 Forbidden\nroute-referer = (?i)1xbetonlines1\\.ru break:403 Forbidden\nroute-referer = (?i)1xbetportugal\\.com break:403 Forbidden\nroute-referer = (?i)1xbetts\\.ru break:403 Forbidden\nroute-referer = (?i)1xslot\\-casino\\.online break:403 Forbidden\nroute-referer = (?i)1xslot\\-casino\\.ru break:403 Forbidden\nroute-referer = (?i)1xslot\\-casino\\.site break:403 Forbidden\nroute-referer = (?i)1xslot\\.site break:403 Forbidden\nroute-referer = (?i)1xslots\\-africa\\.site break:403 Forbidden\nroute-referer = (?i)1xslots\\-brasil\\.site break:403 Forbidden\nroute-referer = (?i)1xslots\\-casino\\.site break:403 Forbidden\nroute-referer = (?i)1xslots\\.africa break:403 Forbidden\nroute-referer = (?i)1xslots\\.site break:403 Forbidden\nroute-referer = (?i)2\\-best\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)2\\-easy\\.xyz break:403 Forbidden\nroute-referer = (?i)2\\-go\\-now\\.xyz break:403 Forbidden\nroute-referer = (?i)2015god\\.org break:403 Forbidden\nroute-referer = (?i)24chasa\\.bg break:403 Forbidden\nroute-referer = (?i)24h\\.doctor break:403 Forbidden\nroute-referer = (?i)24videos\\.tv break:403 Forbidden\nroute-referer = (?i)24x7\\-server\\-support\\.site break:403 Forbidden\nroute-referer = (?i)256bit\\.by break:403 Forbidden\nroute-referer = (?i)273\\-fz\\.ru break:403 Forbidden\nroute-referer = (?i)2ads\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)2itech\\.ru break:403 Forbidden\nroute-referer = (?i)2kata\\.ru break:403 Forbidden\nroute-referer = (?i)2nt\\.ru break:403 Forbidden\nroute-referer = (?i)2your\\.site break:403 Forbidden\nroute-referer = (?i)3\\-best\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)3\\-letter\\-domains\\.net break:403 Forbidden\nroute-referer = (?i)3dgame3d\\.com break:403 Forbidden\nroute-referer = (?i)3dracergames\\.com break:403 Forbidden\nroute-referer = (?i)3waynetworks\\.com break:403 Forbidden\nroute-referer = (?i)4\\-best\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)40momporntube\\.com break:403 Forbidden\nroute-referer = (?i)45en\\.ru break:403 Forbidden\nroute-referer = (?i)45tahunkhongguan\\.com break:403 Forbidden\nroute-referer = (?i)4inn\\.ru break:403 Forbidden\nroute-referer = (?i)4ip\\.su break:403 Forbidden\nroute-referer = (?i)4istoshop\\.com break:403 Forbidden\nroute-referer = (?i)4webmasters\\.com break:403 Forbidden\nroute-referer = (?i)4webmasters\\.org break:403 Forbidden\nroute-referer = (?i)4xcasino\\.ru break:403 Forbidden\nroute-referer = (?i)5\\-best\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)5\\-steps\\-to\\-start\\-business\\.com break:403 Forbidden\nroute-referer = (?i)5elementov\\.ru break:403 Forbidden\nroute-referer = (?i)5forex\\.ru break:403 Forbidden\nroute-referer = (?i)6\\-best\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)69\\-13\\-59\\.ru break:403 Forbidden\nroute-referer = (?i)6hopping\\.com break:403 Forbidden\nroute-referer = (?i)7\\-best\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)70casino\\.online break:403 Forbidden\nroute-referer = (?i)76brighton\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)76brighton\\.com break:403 Forbidden\nroute-referer = (?i)7kop\\.ru break:403 Forbidden\nroute-referer = (?i)7makemoneyonline\\.com break:403 Forbidden\nroute-referer = (?i)7milliondollars\\.com break:403 Forbidden\nroute-referer = (?i)7ooo\\.ru break:403 Forbidden\nroute-referer = (?i)7zap\\.com break:403 Forbidden\nroute-referer = (?i)8\\-best\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)84lv\\.com break:403 Forbidden\nroute-referer = (?i)8xv8\\.com break:403 Forbidden\nroute-referer = (?i)9\\-best\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)99\\-reasons\\-for\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)QIWI\\.xyz break:403 Forbidden\nroute-referer = (?i)a\\-elita\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)a\\-hau\\.mk break:403 Forbidden\nroute-referer = (?i)a14download\\.com break:403 Forbidden\nroute-referer = (?i)abacoasale\\.xyz break:403 Forbidden\nroute-referer = (?i)abaiak\\.com break:403 Forbidden\nroute-referer = (?i)abbanreddy\\.com break:403 Forbidden\nroute-referer = (?i)abc\\.xyz break:403 Forbidden\nroute-referer = (?i)abcdefh\\.xyz break:403 Forbidden\nroute-referer = (?i)abcdeg\\.xyz break:403 Forbidden\nroute-referer = (?i)abclauncher\\.com break:403 Forbidden\nroute-referer = (?i)abiente\\.ru break:403 Forbidden\nroute-referer = (?i)abovetherivernc\\.com break:403 Forbidden\nroute-referer = (?i)abtasty\\.com break:403 Forbidden\nroute-referer = (?i)abuser\\.shop break:403 Forbidden\nroute-referer = (?i)academia\\-nsk\\.org break:403 Forbidden\nroute-referer = (?i)acads\\.net break:403 Forbidden\nroute-referer = (?i)acarreo\\.ru break:403 Forbidden\nroute-referer = (?i)account\\-my1\\.xyz break:403 Forbidden\nroute-referer = (?i)accs\\-store\\.ru break:403 Forbidden\nroute-referer = (?i)actata\\.co break:403 Forbidden\nroute-referer = (?i)actualremont\\.ru break:403 Forbidden\nroute-referer = (?i)acunetix\\-referrer\\.com break:403 Forbidden\nroute-referer = (?i)adanih\\.com break:403 Forbidden\nroute-referer = (?i)adcash\\.com break:403 Forbidden\nroute-referer = (?i)addblueoff\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)adelachrist\\.top break:403 Forbidden\nroute-referer = (?i)adelly\\.bg break:403 Forbidden\nroute-referer = (?i)adf\\.ly break:403 Forbidden\nroute-referer = (?i)adpostmalta\\.com break:403 Forbidden\nroute-referer = (?i)adrenalinebot\\.net break:403 Forbidden\nroute-referer = (?i)adrenalinebot\\.ru break:403 Forbidden\nroute-referer = (?i)adspart\\.com break:403 Forbidden\nroute-referer = (?i)adtiger\\.tk break:403 Forbidden\nroute-referer = (?i)adult\\-video\\-chat\\.ru break:403 Forbidden\nroute-referer = (?i)adultfullhd\\.com break:403 Forbidden\nroute-referer = (?i)adventureparkcostarica\\.com break:403 Forbidden\nroute-referer = (?i)advertisefree\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)adviceforum\\.info break:403 Forbidden\nroute-referer = (?i)advocatemsk\\.ru break:403 Forbidden\nroute-referer = (?i)advokateg\\.co break:403 Forbidden\nroute-referer = (?i)advokateg\\.com break:403 Forbidden\nroute-referer = (?i)advokateg\\.ru break:403 Forbidden\nroute-referer = (?i)advokateg\\.xyz break:403 Forbidden\nroute-referer = (?i)aerodizain\\.com break:403 Forbidden\nroute-referer = (?i)aerogo\\.com break:403 Forbidden\nroute-referer = (?i)aerotour\\.ru break:403 Forbidden\nroute-referer = (?i)affiliate\\-programs\\.biz break:403 Forbidden\nroute-referer = (?i)affordablewebsitesandmobileapps\\.com break:403 Forbidden\nroute-referer = (?i)afora\\.ru break:403 Forbidden\nroute-referer = (?i)afshan\\.shop break:403 Forbidden\nroute-referer = (?i)agreda\\.pluto\\.ro break:403 Forbidden\nroute-referer = (?i)agro\\-gid\\.com break:403 Forbidden\nroute-referer = (?i)agtl\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)ahecmarket\\.xyz break:403 Forbidden\nroute-referer = (?i)ahhjf\\.com break:403 Forbidden\nroute-referer = (?i)ahrefs\\.com break:403 Forbidden\nroute-referer = (?i)ai\\-seo\\-services\\.com break:403 Forbidden\nroute-referer = (?i)aibolita\\.com break:403 Forbidden\nroute-referer = (?i)aidarmebel\\.kz break:403 Forbidden\nroute-referer = (?i)aimeesblog\\.xyz break:403 Forbidden\nroute-referer = (?i)aimiot\\.net break:403 Forbidden\nroute-referer = (?i)aitiman\\.ae break:403 Forbidden\nroute-referer = (?i)akama\\.com break:403 Forbidden\nroute-referer = (?i)akmussale\\.xyz break:403 Forbidden\nroute-referer = (?i)akuhni\\.by break:403 Forbidden\nroute-referer = (?i)akusherok\\.ru break:403 Forbidden\nroute-referer = (?i)akvamaster\\.dp\\.ua break:403 Forbidden\nroute-referer = (?i)alborzan\\.com break:403 Forbidden\nroute-referer = (?i)albuteroli\\.com break:403 Forbidden\nroute-referer = (?i)alcobutik24\\.com break:403 Forbidden\nroute-referer = (?i)alert\\-fdm\\.xyz break:403 Forbidden\nroute-referer = (?i)alert\\-fjg\\.xyz break:403 Forbidden\nroute-referer = (?i)alert\\-hgd\\.xyz break:403 Forbidden\nroute-referer = (?i)alert\\-jdh\\.xyz break:403 Forbidden\nroute-referer = (?i)alertomall\\.xyz break:403 Forbidden\nroute-referer = (?i)alessandraleone\\.com break:403 Forbidden\nroute-referer = (?i)alexsander\\.ch break:403 Forbidden\nroute-referer = (?i)alfa\\-medosmotr\\.ru break:403 Forbidden\nroute-referer = (?i)alfa9\\.com break:403 Forbidden\nroute-referer = (?i)alfabot\\.xyz break:403 Forbidden\nroute-referer = (?i)alfapro\\.ru break:403 Forbidden\nroute-referer = (?i)alguiblog\\.online break:403 Forbidden\nroute-referer = (?i)alibestsale\\.com break:403 Forbidden\nroute-referer = (?i)aliexpress\\.com break:403 Forbidden\nroute-referer = (?i)aliexsale\\.ru break:403 Forbidden\nroute-referer = (?i)alif\\-ba\\-ta\\.com break:403 Forbidden\nroute-referer = (?i)alinabaniecka\\.pl break:403 Forbidden\nroute-referer = (?i)alive\\-ua\\.com break:403 Forbidden\nroute-referer = (?i)aliviahome\\.online break:403 Forbidden\nroute-referer = (?i)alkanfarma\\.org break:403 Forbidden\nroute-referer = (?i)all\\-news\\.kz break:403 Forbidden\nroute-referer = (?i)all4bath\\.ru break:403 Forbidden\nroute-referer = (?i)all4invest\\.ru break:403 Forbidden\nroute-referer = (?i)allcredits\\.su break:403 Forbidden\nroute-referer = (?i)allcryptonews\\.com break:403 Forbidden\nroute-referer = (?i)alldownload\\.pw break:403 Forbidden\nroute-referer = (?i)allergick\\.com break:403 Forbidden\nroute-referer = (?i)allergija\\.com break:403 Forbidden\nroute-referer = (?i)allfan\\.ru break:403 Forbidden\nroute-referer = (?i)allforminecraft\\.ru break:403 Forbidden\nroute-referer = (?i)allknow\\.info break:403 Forbidden\nroute-referer = (?i)allkrim\\.com break:403 Forbidden\nroute-referer = (?i)allmarketsnewdayli\\.gdn break:403 Forbidden\nroute-referer = (?i)allnews\\.md break:403 Forbidden\nroute-referer = (?i)allnews24\\.in break:403 Forbidden\nroute-referer = (?i)allpdfmags\\.net break:403 Forbidden\nroute-referer = (?i)allproblog\\.com break:403 Forbidden\nroute-referer = (?i)allsilver925\\.co\\.il break:403 Forbidden\nroute-referer = (?i)alltheviews\\.com break:403 Forbidden\nroute-referer = (?i)allvacancy\\.ru break:403 Forbidden\nroute-referer = (?i)allwomen\\.info break:403 Forbidden\nroute-referer = (?i)allwrighter\\.ru break:403 Forbidden\nroute-referer = (?i)alma\\-mramor\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)alot\\.com break:403 Forbidden\nroute-referer = (?i)alp\\-rk\\.ru break:403 Forbidden\nroute-referer = (?i)alphaforum\\.ru break:403 Forbidden\nroute-referer = (?i)alphaopt24\\.ru break:403 Forbidden\nroute-referer = (?i)alpharma\\.net break:403 Forbidden\nroute-referer = (?i)alpinaskate\\.com break:403 Forbidden\nroute-referer = (?i)altermix\\.ua break:403 Forbidden\nroute-referer = (?i)alveris\\.ru break:403 Forbidden\nroute-referer = (?i)am\\-se\\.com break:403 Forbidden\nroute-referer = (?i)amanda\\-porn\\.ga break:403 Forbidden\nroute-referer = (?i)amatocanizalez\\.net break:403 Forbidden\nroute-referer = (?i)amazon\\-seo\\-service\\.com break:403 Forbidden\nroute-referer = (?i)amoi\\.tn break:403 Forbidden\nroute-referer = (?i)amoremio\\.by break:403 Forbidden\nroute-referer = (?i)amos\\-kids\\.ru break:403 Forbidden\nroute-referer = (?i)amospalla\\.es break:403 Forbidden\nroute-referer = (?i)amp\\-project\\.pro break:403 Forbidden\nroute-referer = (?i)amt\\-k\\.ru break:403 Forbidden\nroute-referer = (?i)amtel\\-vredestein\\.com break:403 Forbidden\nroute-referer = (?i)amylynnandrews\\.xyz break:403 Forbidden\nroute-referer = (?i)anabolics\\.shop break:403 Forbidden\nroute-referer = (?i)anal\\-acrobats\\.hol\\.es break:403 Forbidden\nroute-referer = (?i)analytics\\-ads\\.xyz break:403 Forbidden\nroute-referer = (?i)analyze\\-best\\-copywriting\\-services\\.party break:403 Forbidden\nroute-referer = (?i)analyze\\-extra\\-analytic\\-service\\.stream break:403 Forbidden\nroute-referer = (?i)ananumous\\.ru break:403 Forbidden\nroute-referer = (?i)anapa\\-inns\\.ru break:403 Forbidden\nroute-referer = (?i)andrewancheta\\.com break:403 Forbidden\nroute-referer = (?i)android\\-style\\.com break:403 Forbidden\nroute-referer = (?i)android\\-systems\\.ru break:403 Forbidden\nroute-referer = (?i)android\\-vsem\\.org break:403 Forbidden\nroute-referer = (?i)android4fun\\.org break:403 Forbidden\nroute-referer = (?i)androids\\-store\\.com break:403 Forbidden\nroute-referer = (?i)animalphotos\\.xyz break:403 Forbidden\nroute-referer = (?i)animebox\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)animenime\\.ru break:403 Forbidden\nroute-referer = (?i)annaeydlish\\.top break:403 Forbidden\nroute-referer = (?i)anrtmall\\.xyz break:403 Forbidden\nroute-referer = (?i)anti\\-crisis\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)anticrawler\\.org break:403 Forbidden\nroute-referer = (?i)antiguabarbuda\\.ru break:403 Forbidden\nroute-referer = (?i)antonovich\\-design\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)anydesk\\.site break:403 Forbidden\nroute-referer = (?i)aosheng\\-tech\\.com break:403 Forbidden\nroute-referer = (?i)aoul\\.top break:403 Forbidden\nroute-referer = (?i)apartmentbay\\.ru break:403 Forbidden\nroute-referer = (?i)apartmentratings\\.com break:403 Forbidden\nroute-referer = (?i)apilian\\.xyz break:403 Forbidden\nroute-referer = (?i)apishops\\.ru break:403 Forbidden\nroute-referer = (?i)apollon\\-market\\-url\\.org break:403 Forbidden\nroute-referer = (?i)applepharma\\.ru break:403 Forbidden\nroute-referer = (?i)apteka\\-doc\\.ru break:403 Forbidden\nroute-referer = (?i)apteka\\-pharm\\.ru break:403 Forbidden\nroute-referer = (?i)apteka\\.info break:403 Forbidden\nroute-referer = (?i)apxeo\\.info break:403 Forbidden\nroute-referer = (?i)arabic\\-poetry\\.com break:403 Forbidden\nroute-referer = (?i)aramaicmedia\\.org break:403 Forbidden\nroute-referer = (?i)arate\\.ru break:403 Forbidden\nroute-referer = (?i)arcadepages\\.com break:403 Forbidden\nroute-referer = (?i)arcarticle\\.online break:403 Forbidden\nroute-referer = (?i)architecturebest\\.com break:403 Forbidden\nroute-referer = (?i)arendadogovor\\.ru break:403 Forbidden\nroute-referer = (?i)arendakvartir\\.kz break:403 Forbidden\nroute-referer = (?i)arendas\\.net break:403 Forbidden\nroute-referer = (?i)arendovalka\\.xyz break:403 Forbidden\nroute-referer = (?i)argo\\-visa\\.ru break:403 Forbidden\nroute-referer = (?i)arkansale\\.xyz break:403 Forbidden\nroute-referer = (?i)arkartex\\.ru break:403 Forbidden\nroute-referer = (?i)arkkivoltti\\.net break:403 Forbidden\nroute-referer = (?i)arpe\\.top break:403 Forbidden\nroute-referer = (?i)arraty\\.altervista\\.org break:403 Forbidden\nroute-referer = (?i)artblog\\.top break:403 Forbidden\nroute-referer = (?i)artclipart\\.ru break:403 Forbidden\nroute-referer = (?i)artdeko\\.info break:403 Forbidden\nroute-referer = (?i)artefakct\\.com break:403 Forbidden\nroute-referer = (?i)artpaint\\-market\\.ru break:403 Forbidden\nroute-referer = (?i)artparquet\\.ru break:403 Forbidden\nroute-referer = (?i)artpress\\.top break:403 Forbidden\nroute-referer = (?i)artsmarket\\.xyz break:403 Forbidden\nroute-referer = (?i)arturs\\.moscow break:403 Forbidden\nroute-referer = (?i)aruplighting\\.com break:403 Forbidden\nroute-referer = (?i)asacopaco\\.tk break:403 Forbidden\nroute-referer = (?i)ascotgoods\\.xyz break:403 Forbidden\nroute-referer = (?i)asia\\-forum\\.ru break:403 Forbidden\nroute-referer = (?i)ask\\-yug\\.com break:403 Forbidden\nroute-referer = (?i)asmxsatadriverin\\.aircus\\.com break:403 Forbidden\nroute-referer = (?i)astimvnc\\.online break:403 Forbidden\nroute-referer = (?i)asupro\\.com break:403 Forbidden\nroute-referer = (?i)asynt\\.net break:403 Forbidden\nroute-referer = (?i)aszokshop\\.xyz break:403 Forbidden\nroute-referer = (?i)atlant\\-auto\\.info break:403 Forbidden\nroute-referer = (?i)atlasvkusov\\.ru break:403 Forbidden\nroute-referer = (?i)atleticpharm\\.org break:403 Forbidden\nroute-referer = (?i)atley\\.eu\\.pn break:403 Forbidden\nroute-referer = (?i)atmagroup\\.ru break:403 Forbidden\nroute-referer = (?i)atoblog\\.online break:403 Forbidden\nroute-referer = (?i)atyks\\.ru break:403 Forbidden\nroute-referer = (?i)aucoinhomes\\.com break:403 Forbidden\nroute-referer = (?i)audiobangout\\.com break:403 Forbidden\nroute-referer = (?i)ausergrubhof\\.info break:403 Forbidden\nroute-referer = (?i)australia\\-opening\\-times\\.com break:403 Forbidden\nroute-referer = (?i)auto\\-b2b\\-seo\\-service\\.com break:403 Forbidden\nroute-referer = (?i)auto\\-complex\\.by break:403 Forbidden\nroute-referer = (?i)auto\\-kia\\-fulldrive\\.ru break:403 Forbidden\nroute-referer = (?i)auto\\-moto\\-elektronika\\.cz break:403 Forbidden\nroute-referer = (?i)auto\\-news\\-digest\\.ru break:403 Forbidden\nroute-referer = (?i)auto\\-seo\\-service\\.com break:403 Forbidden\nroute-referer = (?i)auto\\-seo\\-service\\.org break:403 Forbidden\nroute-referer = (?i)auto\\-zapchasti\\.org break:403 Forbidden\nroute-referer = (?i)auto\\.rusvile\\.lt break:403 Forbidden\nroute-referer = (?i)auto4style\\.ru break:403 Forbidden\nroute-referer = (?i)autoblog\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)autobrennero\\.it break:403 Forbidden\nroute-referer = (?i)autobudpostach\\.club break:403 Forbidden\nroute-referer = (?i)autofuct\\.ru break:403 Forbidden\nroute-referer = (?i)autoloans\\.com break:403 Forbidden\nroute-referer = (?i)autolombard\\-krasnodar\\.ru break:403 Forbidden\nroute-referer = (?i)automate\\-amazon\\-affiliation\\.com break:403 Forbidden\nroute-referer = (?i)automobile\\-spec\\.com break:403 Forbidden\nroute-referer = (?i)autonew\\.biz break:403 Forbidden\nroute-referer = (?i)autoseo\\-service\\.org break:403 Forbidden\nroute-referer = (?i)autoseo\\-traffic\\.com break:403 Forbidden\nroute-referer = (?i)autoseo\\-trial\\-for\\-1\\.com break:403 Forbidden\nroute-referer = (?i)autoseoservice\\.org break:403 Forbidden\nroute-referer = (?i)autoseotips\\.com break:403 Forbidden\nroute-referer = (?i)autoservic\\.by break:403 Forbidden\nroute-referer = (?i)autotop\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)autovideobroadcast\\.com break:403 Forbidden\nroute-referer = (?i)autowebmarket\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)avcoast\\.com break:403 Forbidden\nroute-referer = (?i)avek\\.ru break:403 Forbidden\nroute-referer = (?i)aviapanda\\.ru break:403 Forbidden\nroute-referer = (?i)aviaseller\\.su break:403 Forbidden\nroute-referer = (?i)aviav\\.ru\\.com break:403 Forbidden\nroute-referer = (?i)avitocars\\.ru break:403 Forbidden\nroute-referer = (?i)aviva\\-limoux\\.com break:403 Forbidden\nroute-referer = (?i)avkzarabotok\\.com break:403 Forbidden\nroute-referer = (?i)avkzarabotok\\.info break:403 Forbidden\nroute-referer = (?i)avon\\-severozapad\\.ru break:403 Forbidden\nroute-referer = (?i)avtoarenda\\.by break:403 Forbidden\nroute-referer = (?i)avtocredit\\-legko\\.ru break:403 Forbidden\nroute-referer = (?i)avtointeres\\.ru break:403 Forbidden\nroute-referer = (?i)avtorskoe\\-vino\\.ru break:403 Forbidden\nroute-referer = (?i)avtovolop\\.ru break:403 Forbidden\nroute-referer = (?i)avtovykup\\.kz break:403 Forbidden\nroute-referer = (?i)awency\\.com break:403 Forbidden\nroute-referer = (?i)aworlds\\.com break:403 Forbidden\nroute-referer = (?i)axcus\\.top break:403 Forbidden\nroute-referer = (?i)ayerbo\\.xhost\\.ro break:403 Forbidden\nroute-referer = (?i)ayongoods\\.xyz break:403 Forbidden\nroute-referer = (?i)azadnegar\\.com break:403 Forbidden\nroute-referer = (?i)azartclub\\.org break:403 Forbidden\nroute-referer = (?i)azartniy\\-bonus\\.com break:403 Forbidden\nroute-referer = (?i)azazu\\.ru break:403 Forbidden\nroute-referer = (?i)azbuka\\-mo\\.ru break:403 Forbidden\nroute-referer = (?i)azbukadiets\\.ru break:403 Forbidden\nroute-referer = (?i)azbukafree\\.com break:403 Forbidden\nroute-referer = (?i)azlex\\.uz break:403 Forbidden\nroute-referer = (?i)b\\-buyeasy\\.com break:403 Forbidden\nroute-referer = (?i)b2b\\-lounge\\.com break:403 Forbidden\nroute-referer = (?i)bablonow\\.ru break:403 Forbidden\nroute-referer = (?i)baciakte\\.online break:403 Forbidden\nroute-referer = (?i)backgroundpictures\\.net break:403 Forbidden\nroute-referer = (?i)backlinks\\-fast\\-top\\.com break:403 Forbidden\nroute-referer = (?i)bag77\\.ru break:403 Forbidden\nroute-referer = (?i)bahisgunceladresi\\.com break:403 Forbidden\nroute-referer = (?i)baixar\\-musicas\\-gratis\\.com break:403 Forbidden\nroute-referer = (?i)bala\\.getenjoyment\\.net break:403 Forbidden\nroute-referer = (?i)baladur\\.ru break:403 Forbidden\nroute-referer = (?i)balakhna\\.online break:403 Forbidden\nroute-referer = (?i)balayazh\\.com break:403 Forbidden\nroute-referer = (?i)balitouroffice\\.com break:403 Forbidden\nroute-referer = (?i)balkanfarma\\.org break:403 Forbidden\nroute-referer = (?i)balkanfarma\\.ru break:403 Forbidden\nroute-referer = (?i)balois\\.worldbreak\\.com break:403 Forbidden\nroute-referer = (?i)bambi\\.ck\\.ua break:403 Forbidden\nroute-referer = (?i)banan\\.tv break:403 Forbidden\nroute-referer = (?i)bankcrediti\\.ru break:403 Forbidden\nroute-referer = (?i)bankhummer\\.co break:403 Forbidden\nroute-referer = (?i)bankiem\\.pl break:403 Forbidden\nroute-referer = (?i)barbarahome\\.top break:403 Forbidden\nroute-referer = (?i)bard\\-real\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)bashtime\\.ru break:403 Forbidden\nroute-referer = (?i)basisches\\-wasser\\.net break:403 Forbidden\nroute-referer = (?i)batietiket\\.com break:403 Forbidden\nroute-referer = (?i)batut\\-fun\\.ru break:403 Forbidden\nroute-referer = (?i)bausparen\\.bz\\.it break:403 Forbidden\nroute-referer = (?i)bavariagid\\.de break:403 Forbidden\nroute-referer = (?i)bavsac\\.com break:403 Forbidden\nroute-referer = (?i)bazaronline24\\.ru break:403 Forbidden\nroute-referer = (?i)bbtec\\.net break:403 Forbidden\nroute-referer = (?i)bdf\\-tracker\\.top break:403 Forbidden\nroute-referer = (?i)beachtoday\\.ru break:403 Forbidden\nroute-referer = (?i)beamfall\\.info break:403 Forbidden\nroute-referer = (?i)beauby\\.ru break:403 Forbidden\nroute-referer = (?i)beauty\\-clinic\\.ru break:403 Forbidden\nroute-referer = (?i)beauty\\-lesson\\.com break:403 Forbidden\nroute-referer = (?i)beclean\\-nn\\.ru break:403 Forbidden\nroute-referer = (?i)bedroomlighting\\.us break:403 Forbidden\nroute-referer = (?i)begalka\\.xyz break:403 Forbidden\nroute-referer = (?i)belinvestdom\\.by break:403 Forbidden\nroute-referer = (?i)belreferatov\\.net break:403 Forbidden\nroute-referer = (?i)berdasovivan\\.ru break:403 Forbidden\nroute-referer = (?i)beremenyashka\\.com break:403 Forbidden\nroute-referer = (?i)berglion\\.com break:403 Forbidden\nroute-referer = (?i)berkinan\\.xyz break:403 Forbidden\nroute-referer = (?i)berlininsl\\.com break:403 Forbidden\nroute-referer = (?i)berrymall\\.ru break:403 Forbidden\nroute-referer = (?i)best\\-deal\\-hdd\\.pro break:403 Forbidden\nroute-referer = (?i)best\\-mam\\.ru break:403 Forbidden\nroute-referer = (?i)best\\-offer\\-hdd\\-1\\.info break:403 Forbidden\nroute-referer = (?i)best\\-offer\\-hdd\\-1\\.space break:403 Forbidden\nroute-referer = (?i)best\\-offer\\-hdd\\-1\\.top break:403 Forbidden\nroute-referer = (?i)best\\-offer\\-hdd\\.pro break:403 Forbidden\nroute-referer = (?i)best\\-offer\\-hdd\\.xyz break:403 Forbidden\nroute-referer = (?i)best\\-ping\\-service\\-usa\\-1\\.info break:403 Forbidden\nroute-referer = (?i)best\\-ping\\-service\\-usa\\-1\\.space break:403 Forbidden\nroute-referer = (?i)best\\-ping\\-service\\-usa\\-1\\.top break:403 Forbidden\nroute-referer = (?i)best\\-ping\\-service\\-usa\\.blue break:403 Forbidden\nroute-referer = (?i)best\\-ping\\-service\\-usa\\.me break:403 Forbidden\nroute-referer = (?i)best\\-ping\\-service\\-usa\\.space break:403 Forbidden\nroute-referer = (?i)best\\-ping\\-service\\-usa\\.top break:403 Forbidden\nroute-referer = (?i)best\\-ping\\-service\\-usa\\.xyz break:403 Forbidden\nroute-referer = (?i)best\\-printmsk\\.ru break:403 Forbidden\nroute-referer = (?i)best\\-seo\\-offer\\.com break:403 Forbidden\nroute-referer = (?i)best\\-seo\\-service\\.tk break:403 Forbidden\nroute-referer = (?i)best\\-seo\\-software\\.xyz break:403 Forbidden\nroute-referer = (?i)best\\-seo\\-solution\\.com break:403 Forbidden\nroute-referer = (?i)bestbookclub\\.ru break:403 Forbidden\nroute-referer = (?i)bestchoice\\.cf break:403 Forbidden\nroute-referer = (?i)bestempresas\\.es break:403 Forbidden\nroute-referer = (?i)bestfortraders\\.com break:403 Forbidden\nroute-referer = (?i)besthatcheries\\.com break:403 Forbidden\nroute-referer = (?i)bestleofferhdd\\.info break:403 Forbidden\nroute-referer = (?i)bestmobilityscooterstoday\\.com break:403 Forbidden\nroute-referer = (?i)bestofferfyhdd\\.info break:403 Forbidden\nroute-referer = (?i)bestofferhddacy\\.info break:403 Forbidden\nroute-referer = (?i)bestofferhddbyt\\.info break:403 Forbidden\nroute-referer = (?i)bestofferhddeed\\.info break:403 Forbidden\nroute-referer = (?i)bestofferhddity\\.info break:403 Forbidden\nroute-referer = (?i)bestofferifyhdd\\.info break:403 Forbidden\nroute-referer = (?i)bestofferswalkmydogouteveryday\\.gq break:403 Forbidden\nroute-referer = (?i)bestorofferhdd\\.info break:403 Forbidden\nroute-referer = (?i)bestplacetobuyeriacta\\.jw\\.lt break:403 Forbidden\nroute-referer = (?i)bestvpnrating\\.com break:403 Forbidden\nroute-referer = (?i)bestwebsiteawards\\.com break:403 Forbidden\nroute-referer = (?i)bestwebsitesawards\\.com break:403 Forbidden\nroute-referer = (?i)bet\\-prognoz\\.com break:403 Forbidden\nroute-referer = (?i)bet\\-winner1\\.ru break:403 Forbidden\nroute-referer = (?i)bet2much\\.ru break:403 Forbidden\nroute-referer = (?i)betonka\\.pro break:403 Forbidden\nroute-referer = (?i)betslive\\.ru break:403 Forbidden\nroute-referer = (?i)betterhealthbeauty\\.com break:403 Forbidden\nroute-referer = (?i)bettorschool\\.ru break:403 Forbidden\nroute-referer = (?i)betune\\.onlinewebshop\\.net break:403 Forbidden\nroute-referer = (?i)betwinservice\\.com break:403 Forbidden\nroute-referer = (?i)beyan\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)bez\\-zabora\\.ru break:403 Forbidden\nroute-referer = (?i)bezcmexa\\.ru break:403 Forbidden\nroute-referer = (?i)bezlimitko\\.xyz break:403 Forbidden\nroute-referer = (?i)bezprostatita\\.com break:403 Forbidden\nroute-referer = (?i)bezsporno\\.ru break:403 Forbidden\nroute-referer = (?i)beztuberkuleza\\.ru break:403 Forbidden\nroute-referer = (?i)bhf\\.vc break:403 Forbidden\nroute-referer = (?i)bibprsale\\.xyz break:403 Forbidden\nroute-referer = (?i)bif\\-ru\\.info break:403 Forbidden\nroute-referer = (?i)bigcities\\.org break:403 Forbidden\nroute-referer = (?i)biglistofwebsites\\.com break:403 Forbidden\nroute-referer = (?i)biketank\\.ga break:403 Forbidden\nroute-referer = (?i)billiard\\-classic\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)billigerstrom\\.co break:403 Forbidden\nroute-referer = (?i)billyblog\\.online break:403 Forbidden\nroute-referer = (?i)bimatoprost\\-careprost\\.com break:403 Forbidden\nroute-referer = (?i)bimatoprost\\-careprost\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)bin\\-brokers\\.com break:403 Forbidden\nroute-referer = (?i)binokna\\.ru break:403 Forbidden\nroute-referer = (?i)binomo\\.kz break:403 Forbidden\nroute-referer = (?i)bio\\-japan\\.net break:403 Forbidden\nroute-referer = (?i)bio\\-market\\.kz break:403 Forbidden\nroute-referer = (?i)bio\\.trade\\-jp\\.net break:403 Forbidden\nroute-referer = (?i)bioca\\.org break:403 Forbidden\nroute-referer = (?i)biplanecentre\\.ru break:403 Forbidden\nroute-referer = (?i)bird1\\.ru break:403 Forbidden\nroute-referer = (?i)birzha\\-truda\\.eu break:403 Forbidden\nroute-referer = (?i)bisign\\.info break:403 Forbidden\nroute-referer = (?i)bitcoin\\-ua\\.top break:403 Forbidden\nroute-referer = (?i)bitcoins\\-forum\\.club break:403 Forbidden\nroute-referer = (?i)bitcoins\\-forum\\.info break:403 Forbidden\nroute-referer = (?i)bitcoins\\-forum\\.online break:403 Forbidden\nroute-referer = (?i)bitcoins\\-forum\\.pro break:403 Forbidden\nroute-referer = (?i)bitcoins\\-live\\.ru break:403 Forbidden\nroute-referer = (?i)biteg\\.xyz break:403 Forbidden\nroute-referer = (?i)bitniex\\.com break:403 Forbidden\nroute-referer = (?i)biz\\-law\\.ru break:403 Forbidden\nroute-referer = (?i)biznesluxe\\.ru break:403 Forbidden\nroute-referer = (?i)biznesrealnost\\.ru break:403 Forbidden\nroute-referer = (?i)biznesschat\\.net break:403 Forbidden\nroute-referer = (?i)bizru\\.info break:403 Forbidden\nroute-referer = (?i)bki24\\.info break:403 Forbidden\nroute-referer = (?i)bkns\\.vn break:403 Forbidden\nroute-referer = (?i)black\\-friday\\.ga break:403 Forbidden\nroute-referer = (?i)black\\-tip\\.top break:403 Forbidden\nroute-referer = (?i)blackhatworth\\.com break:403 Forbidden\nroute-referer = (?i)blackle\\.com break:403 Forbidden\nroute-referer = (?i)blackplanet\\.com break:403 Forbidden\nroute-referer = (?i)blackwitchcraft\\.ru break:403 Forbidden\nroute-referer = (?i)blancablog\\.online break:403 Forbidden\nroute-referer = (?i)blavia\\.00author\\.com break:403 Forbidden\nroute-referer = (?i)bleacherreport\\.com break:403 Forbidden\nroute-referer = (?i)blockchaintop\\.nl break:403 Forbidden\nroute-referer = (?i)blockworld\\.ru break:403 Forbidden\nroute-referer = (?i)blog\\.f00kclan\\.de break:403 Forbidden\nroute-referer = (?i)blog\\.koorg\\.ru break:403 Forbidden\nroute-referer = (?i)blog\\.latuti\\.net break:403 Forbidden\nroute-referer = (?i)blog\\.remote\\-computer\\.de break:403 Forbidden\nroute-referer = (?i)blog\\.xsk\\.in break:403 Forbidden\nroute-referer = (?i)blog\\.yam\\.com break:403 Forbidden\nroute-referer = (?i)blog100\\.org break:403 Forbidden\nroute-referer = (?i)blog2019\\.top break:403 Forbidden\nroute-referer = (?i)blog2019\\.xyz break:403 Forbidden\nroute-referer = (?i)blog4u\\.top break:403 Forbidden\nroute-referer = (?i)blogarun\\.co break:403 Forbidden\nroute-referer = (?i)bloggen\\.be break:403 Forbidden\nroute-referer = (?i)bloggers\\.nl break:403 Forbidden\nroute-referer = (?i)blogig\\.org break:403 Forbidden\nroute-referer = (?i)blogking\\.top break:403 Forbidden\nroute-referer = (?i)bloglag\\.com break:403 Forbidden\nroute-referer = (?i)blognet\\.top break:403 Forbidden\nroute-referer = (?i)blogorganictraffic\\.shop break:403 Forbidden\nroute-referer = (?i)blogos\\.kz break:403 Forbidden\nroute-referer = (?i)blogping\\.xyz break:403 Forbidden\nroute-referer = (?i)blogs\\.rediff\\.com break:403 Forbidden\nroute-referer = (?i)blogseo\\.xyz break:403 Forbidden\nroute-referer = (?i)blogstar\\.fun break:403 Forbidden\nroute-referer = (?i)blogster\\.com break:403 Forbidden\nroute-referer = (?i)blogtotal\\.de break:403 Forbidden\nroute-referer = (?i)blogtraffic\\.shop break:403 Forbidden\nroute-referer = (?i)blogua\\.org break:403 Forbidden\nroute-referer = (?i)blue\\-square\\.biz break:403 Forbidden\nroute-referer = (?i)bluerobot\\.info break:403 Forbidden\nroute-referer = (?i)bmusshop\\.xyz break:403 Forbidden\nroute-referer = (?i)bo\\-vtb24\\.ru break:403 Forbidden\nroute-referer = (?i)board\\.f00d\\.de break:403 Forbidden\nroute-referer = (?i)bobba\\.dzaba\\.com break:403 Forbidden\nroute-referer = (?i)bodybuilding\\-shop\\.biz break:403 Forbidden\nroute-referer = (?i)boleznikogi\\.com break:403 Forbidden\nroute-referer = (?i)bolezniorganov\\.ru break:403 Forbidden\nroute-referer = (?i)boltalko\\.xyz break:403 Forbidden\nroute-referer = (?i)boltushkiclub\\.ru break:403 Forbidden\nroute-referer = (?i)bombla\\.org break:403 Forbidden\nroute-referer = (?i)bonkers\\.name break:403 Forbidden\nroute-referer = (?i)bonniesblog\\.online break:403 Forbidden\nroute-referer = (?i)bonus\\-betting\\.ru break:403 Forbidden\nroute-referer = (?i)bonus\\-spasibo\\-sberbank\\.ru break:403 Forbidden\nroute-referer = (?i)bonus\\-vtb\\.ru break:403 Forbidden\nroute-referer = (?i)bonux\\.nextview\\.ru break:403 Forbidden\nroute-referer = (?i)bookmaker\\-bet\\.com break:403 Forbidden\nroute-referer = (?i)bookmark4you\\.biz break:403 Forbidden\nroute-referer = (?i)bookmark4you\\.com break:403 Forbidden\nroute-referer = (?i)bookmark4you\\.com\\.biz break:403 Forbidden\nroute-referer = (?i)books\\-top\\.com break:403 Forbidden\nroute-referer = (?i)boole\\.onlinewebshop\\.net break:403 Forbidden\nroute-referer = (?i)boost\\-my\\-site\\.com break:403 Forbidden\nroute-referer = (?i)boost24\\.biz break:403 Forbidden\nroute-referer = (?i)boostmyppc\\.com break:403 Forbidden\nroute-referer = (?i)bosefux\\.esy\\.es break:403 Forbidden\nroute-referer = (?i)bosman\\.pluto\\.ro break:403 Forbidden\nroute-referer = (?i)bostonline\\.xyz break:403 Forbidden\nroute-referer = (?i)bot\\-traffic\\.icu break:403 Forbidden\nroute-referer = (?i)bot\\-traffic\\.xyz break:403 Forbidden\nroute-referer = (?i)botamycos\\.fr break:403 Forbidden\nroute-referer = (?i)bottraffic\\.live break:403 Forbidden\nroute-referer = (?i)bottraffic143\\.xyz break:403 Forbidden\nroute-referer = (?i)bottraffic329\\.xyz break:403 Forbidden\nroute-referer = (?i)bottraffic4free\\.club break:403 Forbidden\nroute-referer = (?i)bottraffic4free\\.host break:403 Forbidden\nroute-referer = (?i)bottraffic999\\.xyz break:403 Forbidden\nroute-referer = (?i)bouda\\.kvalitne\\.cz break:403 Forbidden\nroute-referer = (?i)bowigosale\\.xyz break:403 Forbidden\nroute-referer = (?i)bpro1\\.top break:403 Forbidden\nroute-referer = (?i)bradleylive\\.xyz break:403 Forbidden\nroute-referer = (?i)brains2\\.biz break:403 Forbidden\nroute-referer = (?i)brakehawk\\.com break:403 Forbidden\nroute-referer = (?i)brandnewtube\\.com break:403 Forbidden\nroute-referer = (?i)brandov\\.ru break:403 Forbidden\nroute-referer = (?i)brateg\\.xyz break:403 Forbidden\nroute-referer = (?i)brauni\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)bravica\\.biz break:403 Forbidden\nroute-referer = (?i)bravica\\.com break:403 Forbidden\nroute-referer = (?i)bravica\\.me break:403 Forbidden\nroute-referer = (?i)bravica\\.net break:403 Forbidden\nroute-referer = (?i)bravica\\.news break:403 Forbidden\nroute-referer = (?i)bravica\\.online break:403 Forbidden\nroute-referer = (?i)bravica\\.pro break:403 Forbidden\nroute-referer = (?i)bravica\\.ru break:403 Forbidden\nroute-referer = (?i)bravica\\.su break:403 Forbidden\nroute-referer = (?i)break\\-the\\-chains\\.com break:403 Forbidden\nroute-referer = (?i)breget74\\.ru break:403 Forbidden\nroute-referer = (?i)brendbutik\\.ru break:403 Forbidden\nroute-referer = (?i)briankatrine\\.top break:403 Forbidden\nroute-referer = (?i)brickmaster\\.pro break:403 Forbidden\nroute-referer = (?i)brillianty\\.info break:403 Forbidden\nroute-referer = (?i)bristolhostel\\.com break:403 Forbidden\nroute-referer = (?i)bristolhotel\\.com break:403 Forbidden\nroute-referer = (?i)bristolhotel\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)britneyblog\\.online break:403 Forbidden\nroute-referer = (?i)brk\\-rti\\.ru break:403 Forbidden\nroute-referer = (?i)brokergid\\.ru break:403 Forbidden\nroute-referer = (?i)brooklyn\\-ads\\.com break:403 Forbidden\nroute-referer = (?i)brooklynsays\\.com break:403 Forbidden\nroute-referer = (?i)brothers\\-smaller\\.ru break:403 Forbidden\nroute-referer = (?i)brus\\-vsem\\.ru break:403 Forbidden\nroute-referer = (?i)brus\\.city break:403 Forbidden\nroute-referer = (?i)brusilov\\.ru break:403 Forbidden\nroute-referer = (?i)bsell\\.ru break:403 Forbidden\nroute-referer = (?i)btcnix\\.com break:403 Forbidden\nroute-referer = (?i)btt\\-club\\.pro break:403 Forbidden\nroute-referer = (?i)budilneg\\.xyz break:403 Forbidden\nroute-referer = (?i)budmavtomatika\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)budpost\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)bufetout\\.ru break:403 Forbidden\nroute-referer = (?i)bugof\\.gq break:403 Forbidden\nroute-referer = (?i)buhproffi\\.ru break:403 Forbidden\nroute-referer = (?i)buigas\\.00it\\.com break:403 Forbidden\nroute-referer = (?i)buildnw\\.ru break:403 Forbidden\nroute-referer = (?i)buildwithwendy\\.com break:403 Forbidden\nroute-referer = (?i)buketeg\\.xyz break:403 Forbidden\nroute-referer = (?i)bukleteg\\.xyz break:403 Forbidden\nroute-referer = (?i)bulgaria\\-web\\-developers\\.com break:403 Forbidden\nroute-referer = (?i)buqayy0\\.livejournal\\.com break:403 Forbidden\nroute-referer = (?i)bur\\-rk\\.ru break:403 Forbidden\nroute-referer = (?i)burger\\-imperia\\.com break:403 Forbidden\nroute-referer = (?i)burn\\-fat\\.ga break:403 Forbidden\nroute-referer = (?i)business\\-online\\-sberbank\\.ru break:403 Forbidden\nroute-referer = (?i)buttons\\-for\\-website\\.com break:403 Forbidden\nroute-referer = (?i)buttons\\-for\\-your\\-website\\.com break:403 Forbidden\nroute-referer = (?i)buy\\-cheap\\-online\\.info break:403 Forbidden\nroute-referer = (?i)buy\\-cheap\\-pills\\-order\\-online\\.com break:403 Forbidden\nroute-referer = (?i)buy\\-forum\\.ru break:403 Forbidden\nroute-referer = (?i)buy\\-meds24\\.com break:403 Forbidden\nroute-referer = (?i)buyantiviralwp\\.com break:403 Forbidden\nroute-referer = (?i)buyessay3\\.blogspot\\.ru break:403 Forbidden\nroute-referer = (?i)buyessaynow\\.biz break:403 Forbidden\nroute-referer = (?i)buyessayonline19\\.blogspot\\.ru break:403 Forbidden\nroute-referer = (?i)buyfriend\\.ru break:403 Forbidden\nroute-referer = (?i)buyk\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)buynorxx\\.com break:403 Forbidden\nroute-referer = (?i)buypharmacydrug\\.com break:403 Forbidden\nroute-referer = (?i)buypillsonline24h\\.com break:403 Forbidden\nroute-referer = (?i)buypillsorderonline\\.com break:403 Forbidden\nroute-referer = (?i)buypuppies\\.ca break:403 Forbidden\nroute-referer = (?i)buyscabiescream\\.com break:403 Forbidden\nroute-referer = (?i)buytizanidineonline\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)buytizanidineonlinenoprescription\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)buyviagraa\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)bvps8\\.com break:403 Forbidden\nroute-referer = (?i)bycontext\\.com break:403 Forbidden\nroute-referer = (?i)byme\\.se break:403 Forbidden\nroute-referer = (?i)bytimedance\\.ru break:403 Forbidden\nroute-referer = (?i)c\\-english\\.ru break:403 Forbidden\nroute-referer = (?i)c2bit\\.hk break:403 Forbidden\nroute-referer = (?i)californianews\\.cf break:403 Forbidden\nroute-referer = (?i)call\\-of\\-duty\\.info break:403 Forbidden\nroute-referer = (?i)callejondelpozo\\.es break:403 Forbidden\nroute-referer = (?i)calvet\\.altervista\\.org break:403 Forbidden\nroute-referer = (?i)cancerfungus\\.com break:403 Forbidden\nroute-referer = (?i)candida\\-international\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)candida\\-society\\.org\\.uk break:403 Forbidden\nroute-referer = (?i)cannazon\\-market\\.org break:403 Forbidden\nroute-referer = (?i)canoncdriverq3\\.pen\\.io break:403 Forbidden\nroute-referer = (?i)canyougethighofftizanidine\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)canzoni\\.ru break:403 Forbidden\nroute-referer = (?i)carabela\\.com\\.do break:403 Forbidden\nroute-referer = (?i)carbon\\-linger\\-hierarchy\\-suntan\\.top break:403 Forbidden\nroute-referer = (?i)carder\\.me break:403 Forbidden\nroute-referer = (?i)carder\\.tv break:403 Forbidden\nroute-referer = (?i)carders\\.ug break:403 Forbidden\nroute-referer = (?i)cardiosport\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)cardsdumps\\.com break:403 Forbidden\nroute-referer = (?i)cardsharp1\\.ru break:403 Forbidden\nroute-referer = (?i)cardul\\.ru break:403 Forbidden\nroute-referer = (?i)carezi\\.com break:403 Forbidden\nroute-referer = (?i)carfax\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)carivka\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)carloans\\.com break:403 Forbidden\nroute-referer = (?i)carscrim\\.com break:403 Forbidden\nroute-referer = (?i)carsdined\\.org break:403 Forbidden\nroute-referer = (?i)carsnumber\\.com break:403 Forbidden\nroute-referer = (?i)carson\\.getenjoyment\\.net break:403 Forbidden\nroute-referer = (?i)carsoncitypizza\\.com break:403 Forbidden\nroute-referer = (?i)cartechnic\\.ru break:403 Forbidden\nroute-referer = (?i)casablancamanor\\.co\\.za break:403 Forbidden\nroute-referer = (?i)cashforum\\.cc break:403 Forbidden\nroute-referer = (?i)casino\\-top3\\.fun break:403 Forbidden\nroute-referer = (?i)casino\\-top3\\.online break:403 Forbidden\nroute-referer = (?i)casino\\-top3\\.ru break:403 Forbidden\nroute-referer = (?i)casino\\-top3\\.site break:403 Forbidden\nroute-referer = (?i)casino\\-top3\\.space break:403 Forbidden\nroute-referer = (?i)casino\\-top3\\.website break:403 Forbidden\nroute-referer = (?i)casino\\-v\\.site break:403 Forbidden\nroute-referer = (?i)casino\\-vulkane\\.com break:403 Forbidden\nroute-referer = (?i)casino\\-x\\-now\\.ru break:403 Forbidden\nroute-referer = (?i)casino\\-x\\.host break:403 Forbidden\nroute-referer = (?i)casinosbewertung\\.de break:403 Forbidden\nroute-referer = (?i)casinox\\-jp\\.com break:403 Forbidden\nroute-referer = (?i)castingbank\\.ru break:403 Forbidden\nroute-referer = (?i)catalogs\\-parts\\.com break:403 Forbidden\nroute-referer = (?i)catherinemill\\.xyz break:403 Forbidden\nroute-referer = (?i)catterybengal\\.com break:403 Forbidden\nroute-referer = (?i)cattyhealth\\.com break:403 Forbidden\nroute-referer = (?i)cauxmall\\.xyz break:403 Forbidden\nroute-referer = (?i)cayado\\.snn\\.gr break:403 Forbidden\nroute-referer = (?i)cazino\\-v\\.online break:403 Forbidden\nroute-referer = (?i)cazino\\-v\\.ru break:403 Forbidden\nroute-referer = (?i)cbcseward\\.com break:403 Forbidden\nroute-referer = (?i)cbox\\.ws break:403 Forbidden\nroute-referer = (?i)ccfullzshop\\.com break:403 Forbidden\nroute-referer = (?i)celestepage\\.xyz break:403 Forbidden\nroute-referer = (?i)celldog\\.ru break:403 Forbidden\nroute-referer = (?i)cenokos\\.ru break:403 Forbidden\nroute-referer = (?i)cenoval\\.ru break:403 Forbidden\nroute-referer = (?i)centre\\-indigo\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)centrumcoachingu\\.com break:403 Forbidden\nroute-referer = (?i)cercacamion\\.it break:403 Forbidden\nroute-referer = (?i)certifywebsite\\.win break:403 Forbidden\nroute-referer = (?i)cezartabac\\.ro break:403 Forbidden\nroute-referer = (?i)cfsrating\\.sonicwall\\.com break:403 Forbidden\nroute-referer = (?i)cgi2\\.nintendo\\.co\\.jp break:403 Forbidden\nroute-referer = (?i)chainii\\.ru break:403 Forbidden\nroute-referer = (?i)channel\\-badge\\-betray\\-volcanic\\.com break:403 Forbidden\nroute-referer = (?i)chastnoeporno\\.com break:403 Forbidden\nroute-referer = (?i)chat\\.ru break:403 Forbidden\nroute-referer = (?i)chatmall\\.xyz break:403 Forbidden\nroute-referer = (?i)chatrazvrat\\.ru break:403 Forbidden\nroute-referer = (?i)chatroulette\\.life break:403 Forbidden\nroute-referer = (?i)chcu\\.net break:403 Forbidden\nroute-referer = (?i)cheap\\-trusted\\-backlinks\\.com break:403 Forbidden\nroute-referer = (?i)cheapkeys\\.ovh break:403 Forbidden\nroute-referer = (?i)cheappills24h\\.com break:403 Forbidden\nroute-referer = (?i)chee\\-by\\.biz break:403 Forbidden\nroute-referer = (?i)chelyabinsk\\.dienai\\.ru break:403 Forbidden\nroute-referer = (?i)chelyabinsk\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)cherrypointplace\\.ca break:403 Forbidden\nroute-referer = (?i)cherubinimobili\\.it break:403 Forbidden\nroute-referer = (?i)chimiver\\.info break:403 Forbidden\nroute-referer = (?i)chinese\\-amezon\\.com break:403 Forbidden\nroute-referer = (?i)chip35\\.ru break:403 Forbidden\nroute-referer = (?i)chipmp3\\.ru break:403 Forbidden\nroute-referer = (?i)chizhik\\-2\\.ru break:403 Forbidden\nroute-referer = (?i)chomexun\\.com break:403 Forbidden\nroute-referer = (?i)choosecuisine\\.com break:403 Forbidden\nroute-referer = (?i)ci\\.ua break:403 Forbidden\nroute-referer = (?i)ciarustde\\.online break:403 Forbidden\nroute-referer = (?i)cigarpass\\.com break:403 Forbidden\nroute-referer = (?i)cilolamall\\.xyz break:403 Forbidden\nroute-referer = (?i)cinemaenergy\\-hd\\.ru break:403 Forbidden\nroute-referer = (?i)ciproandtizanidine\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)citizenclsdriveri7\\.pen\\.io break:403 Forbidden\nroute-referer = (?i)cityadspix\\.com break:403 Forbidden\nroute-referer = (?i)citybur\\.ru break:403 Forbidden\nroute-referer = (?i)cityreys\\.ru break:403 Forbidden\nroute-referer = (?i)civilwartheater\\.com break:403 Forbidden\nroute-referer = (?i)clarithromycin500mg\\.com break:403 Forbidden\nroute-referer = (?i)clash\\-clans\\.ru break:403 Forbidden\nroute-referer = (?i)classicakuhni\\.ru break:403 Forbidden\nroute-referer = (?i)cleandom\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)cleaningservices\\.kiev\\.ua break:403 Forbidden\nroute-referer = (?i)clicksor\\.com break:403 Forbidden\nroute-referer = (?i)climate\\.by break:403 Forbidden\nroute-referer = (?i)clmforexeu\\.com break:403 Forbidden\nroute-referer = (?i)clothing\\-deal\\.club break:403 Forbidden\nroute-referer = (?i)cloudsendchef\\.com break:403 Forbidden\nroute-referer = (?i)club\\-lukojl\\.ru break:403 Forbidden\nroute-referer = (?i)club\\-musics\\.ru break:403 Forbidden\nroute-referer = (?i)club\\-samodelkin\\.ru break:403 Forbidden\nroute-referer = (?i)cmd\\.kz break:403 Forbidden\nroute-referer = (?i)cmrrsale\\.xyz break:403 Forbidden\nroute-referer = (?i)cmseshop\\.xyz break:403 Forbidden\nroute-referer = (?i)cobaltpro\\.ru break:403 Forbidden\nroute-referer = (?i)cocyq\\.inwtrade\\.com break:403 Forbidden\nroute-referer = (?i)coderstate\\.com break:403 Forbidden\nroute-referer = (?i)codq\\.info break:403 Forbidden\nroute-referer = (?i)codysbbq\\.com break:403 Forbidden\nroute-referer = (?i)coeus\\-solutions\\.de break:403 Forbidden\nroute-referer = (?i)coffeemashiny\\.ru break:403 Forbidden\nroute-referer = (?i)coinswitch\\.cash break:403 Forbidden\nroute-referer = (?i)coldfilm\\.ru break:403 Forbidden\nroute-referer = (?i)coleso\\.md break:403 Forbidden\nroute-referer = (?i)collectinviolity\\.com break:403 Forbidden\nroute-referer = (?i)collegeessay19\\.blogspot\\.ru break:403 Forbidden\nroute-referer = (?i)columb\\.net\\.ua break:403 Forbidden\nroute-referer = (?i)cometorussia\\.net break:403 Forbidden\nroute-referer = (?i)comissionka\\.net break:403 Forbidden\nroute-referer = (?i)commentag\\.com break:403 Forbidden\nroute-referer = (?i)commerage\\.ru break:403 Forbidden\nroute-referer = (?i)comp\\-pomosch\\.ru break:403 Forbidden\nroute-referer = (?i)compliance\\-alex\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-alex\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-alexa\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-alexa\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-andrew\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-andrew\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-barak\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-barak\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-brian\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-brian\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-checker\\-7\\.info break:403 Forbidden\nroute-referer = (?i)compliance\\-don\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-don\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-donald\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-elena\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-elena\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-fred\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-fred\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-george\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-george\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-irvin\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-irvin\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-ivan\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-ivan\\.xyz break:403 Forbidden\nroute-referer = (?i)compliance\\-jack\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-jane\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-jess\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-jessica\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-john\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-josh\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-julia\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-julianna\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-margo\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-mark\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-mary\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-nelson\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-olga\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-viktor\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-walt\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-walter\\.top break:403 Forbidden\nroute-referer = (?i)compliance\\-willy\\.top break:403 Forbidden\nroute-referer = (?i)computer\\-remont\\.ru break:403 Forbidden\nroute-referer = (?i)comuneshop\\.xyz break:403 Forbidden\nroute-referer = (?i)conciergegroup\\.org break:403 Forbidden\nroute-referer = (?i)concretepol\\.com break:403 Forbidden\nroute-referer = (?i)connectikastudio\\.com break:403 Forbidden\nroute-referer = (?i)constanceonline\\.top break:403 Forbidden\nroute-referer = (?i)constantaservice\\.net break:403 Forbidden\nroute-referer = (?i)construmac\\.com\\.mx break:403 Forbidden\nroute-referer = (?i)contextualyield\\.com break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-aa\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-bb\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-cc\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-dd\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-ee\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-ff\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-gg\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-hh\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-ii\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-jj\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-kk\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-ll\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-mm\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-nn\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-oo\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-pp\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-qq\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-rr\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-ss\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-tt\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-uu\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-vv\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-ww\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-xx\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-yy\\.xyz break:403 Forbidden\nroute-referer = (?i)cookie\\-law\\-enforcement\\-zz\\.xyz break:403 Forbidden\nroute-referer = (?i)cookielawblog\\.wordpress\\.com break:403 Forbidden\nroute-referer = (?i)cookingmeat\\.ru break:403 Forbidden\nroute-referer = (?i)cool\\-mining\\.com break:403 Forbidden\nroute-referer = (?i)cool\\-wedding\\.net break:403 Forbidden\nroute-referer = (?i)coop\\-gamers\\.ru break:403 Forbidden\nroute-referer = (?i)copblock\\.org break:403 Forbidden\nroute-referer = (?i)copyrightclaims\\.org break:403 Forbidden\nroute-referer = (?i)copyrightinstitute\\.org break:403 Forbidden\nroute-referer = (?i)coral\\-info\\.com break:403 Forbidden\nroute-referer = (?i)cosmediqueresults\\.com break:403 Forbidden\nroute-referer = (?i)countravel\\.net break:403 Forbidden\nroute-referer = (?i)covadhosting\\.biz break:403 Forbidden\nroute-referer = (?i)covblog\\.top break:403 Forbidden\nroute-referer = (?i)coverage\\-my\\.com break:403 Forbidden\nroute-referer = (?i)covetnica\\.com break:403 Forbidden\nroute-referer = (?i)covid\\-schutzmasken\\.de break:403 Forbidden\nroute-referer = (?i)cowblog\\.fr break:403 Forbidden\nroute-referer = (?i)cp24\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)cpnbshop\\.xyz break:403 Forbidden\nroute-referer = (?i)cranly\\.net break:403 Forbidden\nroute-referer = (?i)crazy\\-mining\\.org break:403 Forbidden\nroute-referer = (?i)crd\\.clan\\.su break:403 Forbidden\nroute-referer = (?i)creams\\.makeforum\\.eu break:403 Forbidden\nroute-referer = (?i)credit\\-card\\-tinkoff\\.ru break:403 Forbidden\nroute-referer = (?i)credit\\-cards\\-online24\\.ru break:403 Forbidden\nroute-referer = (?i)credit\\.co\\.ua break:403 Forbidden\nroute-referer = (?i)creditmoney\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)crest\\-poloski\\.ru break:403 Forbidden\nroute-referer = (?i)crest3d\\.ru break:403 Forbidden\nroute-referer = (?i)crirussian\\.ru break:403 Forbidden\nroute-referer = (?i)cruiseraf\\.net break:403 Forbidden\nroute-referer = (?i)crypto\\-bear\\.com break:403 Forbidden\nroute-referer = (?i)crypto\\-bears\\.com break:403 Forbidden\nroute-referer = (?i)crypto\\-mining\\.club break:403 Forbidden\nroute-referer = (?i)crypto\\-wallets\\.org break:403 Forbidden\nroute-referer = (?i)crypto1x1\\.com break:403 Forbidden\nroute-referer = (?i)crystalslot\\.com break:403 Forbidden\nroute-referer = (?i)cubook\\.supernew\\.org break:403 Forbidden\nroute-referer = (?i)curenaturalicancro\\.com break:403 Forbidden\nroute-referer = (?i)curenaturalicancro\\.nl break:403 Forbidden\nroute-referer = (?i)customsua\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)cutalltheshit\\.com break:403 Forbidden\nroute-referer = (?i)cvety24\\.by break:403 Forbidden\nroute-referer = (?i)cvta\\.xyz break:403 Forbidden\nroute-referer = (?i)cxpromote\\.com break:403 Forbidden\nroute-referer = (?i)cyber\\-monday\\.ga break:403 Forbidden\nroute-referer = (?i)cyclobenzaprinevstizanidine\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)cymbaltaandtizanidine\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)cyprusbuyproperties\\.com break:403 Forbidden\nroute-referer = (?i)czcedu\\.com break:403 Forbidden\nroute-referer = (?i)dacha\\-svoimi\\-rukami\\.com break:403 Forbidden\nroute-referer = (?i)dailyblog\\.xyz break:403 Forbidden\nroute-referer = (?i)dailyrank\\.net break:403 Forbidden\nroute-referer = (?i)dailyseo\\.xyz break:403 Forbidden\nroute-referer = (?i)dailystorm\\.ru break:403 Forbidden\nroute-referer = (?i)dailystrength\\.org break:403 Forbidden\nroute-referer = (?i)dailytraffic\\.shop break:403 Forbidden\nroute-referer = (?i)dame\\-ns\\.kz break:403 Forbidden\nroute-referer = (?i)damedingel\\.ya\\.ru break:403 Forbidden\nroute-referer = (?i)damianis\\.ru break:403 Forbidden\nroute-referer = (?i)danashop\\.ru break:403 Forbidden\nroute-referer = (?i)danceuniverse\\.ru break:403 Forbidden\nroute-referer = (?i)danhale\\.xyz break:403 Forbidden\nroute-referer = (?i)dantk\\.kz break:403 Forbidden\nroute-referer = (?i)daptravel\\.com break:403 Forbidden\nroute-referer = (?i)darcysassoon\\.top break:403 Forbidden\nroute-referer = (?i)darkbooks\\.org break:403 Forbidden\nroute-referer = (?i)darknet\\-hydra\\-onion\\.biz break:403 Forbidden\nroute-referer = (?i)darknet\\.sb break:403 Forbidden\nroute-referer = (?i)darknetsitesguide\\.com break:403 Forbidden\nroute-referer = (?i)darleneblog\\.online break:403 Forbidden\nroute-referer = (?i)darodar\\.com break:403 Forbidden\nroute-referer = (?i)datsun\\-do\\.com break:403 Forbidden\nroute-referer = (?i)dav\\.kz break:403 Forbidden\nroute-referer = (?i)davilaonline\\.shop break:403 Forbidden\nroute-referer = (?i)dawlenie\\.com break:403 Forbidden\nroute-referer = (?i)dbmkfhqk\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)dbutton\\.net break:403 Forbidden\nroute-referer = (?i)dcdcapital\\.com break:403 Forbidden\nroute-referer = (?i)ddlmega\\.net break:403 Forbidden\nroute-referer = (?i)ddpills\\.com break:403 Forbidden\nroute-referer = (?i)de\\.zapmeta\\.com break:403 Forbidden\nroute-referer = (?i)dear\\-diary\\.ru break:403 Forbidden\nroute-referer = (?i)deart\\-13\\.ru break:403 Forbidden\nroute-referer = (?i)deda\\-moroza\\-zakaz\\.ru break:403 Forbidden\nroute-referer = (?i)deirdre\\.top break:403 Forbidden\nroute-referer = (?i)dekorkeramik\\.ru break:403 Forbidden\nroute-referer = (?i)delayreferat\\.ru break:403 Forbidden\nroute-referer = (?i)delfin\\-aqua\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)delo\\.fund break:403 Forbidden\nroute-referer = (?i)deluxewatch\\.su break:403 Forbidden\nroute-referer = (?i)demenageur\\.com break:403 Forbidden\nroute-referer = (?i)den\\-noch24\\.ru break:403 Forbidden\nroute-referer = (?i)dengi\\-v\\-kredit\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)denisecarey\\.top break:403 Forbidden\nroute-referer = (?i)deniseconnie\\.top break:403 Forbidden\nroute-referer = (?i)deniven\\.1bb\\.ru break:403 Forbidden\nroute-referer = (?i)dent\\-home\\.ru break:403 Forbidden\nroute-referer = (?i)dentuled\\.net break:403 Forbidden\nroute-referer = (?i)depositfiles\\-porn\\.com break:403 Forbidden\nroute-referer = (?i)depositfiles\\-porn\\.ga break:403 Forbidden\nroute-referer = (?i)dermatovenerologiya\\.com break:403 Forbidden\nroute-referer = (?i)deryie\\.com break:403 Forbidden\nroute-referer = (?i)descargar\\-musica\\-gratis\\.net break:403 Forbidden\nroute-referer = (?i)descargar\\-musicas\\-gratis\\.com break:403 Forbidden\nroute-referer = (?i)design\\-lands\\.ru break:403 Forbidden\nroute-referer = (?i)designdevise\\.com break:403 Forbidden\nroute-referer = (?i)detailedvideos\\.com break:403 Forbidden\nroute-referer = (?i)detalizaciya\\-tut\\.biz break:403 Forbidden\nroute-referer = (?i)detective01\\.ru break:403 Forbidden\nroute-referer = (?i)detki\\-opt\\.ru break:403 Forbidden\nroute-referer = (?i)detoolzon\\.xyz break:403 Forbidden\nroute-referer = (?i)detskie\\-konstruktory\\.ru break:403 Forbidden\nroute-referer = (?i)detskie\\-zabavi\\.ru break:403 Forbidden\nroute-referer = (?i)deutsche\\-poesie\\.com break:403 Forbidden\nroute-referer = (?i)dev\\-seo\\.blog break:403 Forbidden\nroute-referer = (?i)devochki\\-video\\.ru break:403 Forbidden\nroute-referer = (?i)dezeypmall\\.xyz break:403 Forbidden\nroute-referer = (?i)dgdsoutlet\\.xyz break:403 Forbidden\nroute-referer = (?i)diarioaconcagua\\.com break:403 Forbidden\nroute-referer = (?i)diatelier\\.ru break:403 Forbidden\nroute-referer = (?i)dicru\\.info break:403 Forbidden\nroute-referer = (?i)diebesten\\.co break:403 Forbidden\nroute-referer = (?i)dienai\\.ru break:403 Forbidden\nroute-referer = (?i)dienmaytot\\.xyz break:403 Forbidden\nroute-referer = (?i)diesel\\-parts28\\.ru break:403 Forbidden\nroute-referer = (?i)digest\\-project\\.ru break:403 Forbidden\nroute-referer = (?i)digilander\\.libero\\.it break:403 Forbidden\nroute-referer = (?i)digital\\-video\\-processing\\.com break:403 Forbidden\nroute-referer = (?i)digitalfaq\\.com break:403 Forbidden\nroute-referer = (?i)dimkino\\.ru break:403 Forbidden\nroute-referer = (?i)dinkolove\\.ya\\.ru break:403 Forbidden\nroute-referer = (?i)diplom\\-nk\\.com break:403 Forbidden\nroute-referer = (?i)diplomas\\-ru\\.com break:403 Forbidden\nroute-referer = (?i)dipstar\\.org break:403 Forbidden\nroute-referer = (?i)directrev\\.com break:403 Forbidden\nroute-referer = (?i)discounttaxi\\.kz break:403 Forbidden\nroute-referer = (?i)discover\\-prior\\-full\\-stack\\-services\\.party break:403 Forbidden\nroute-referer = (?i)discover\\-prior\\-ppc\\-service\\.party break:403 Forbidden\nroute-referer = (?i)discover\\-top\\-seo\\-service\\.review break:403 Forbidden\nroute-referer = (?i)distonija\\.com break:403 Forbidden\nroute-referer = (?i)divan\\-dekor\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)dividendo\\.ru break:403 Forbidden\nroute-referer = (?i)diy\\-handmade\\-ideas\\.com break:403 Forbidden\nroute-referer = (?i)djekxa\\.ru break:403 Forbidden\nroute-referer = (?i)djonwatch\\.ru break:403 Forbidden\nroute-referer = (?i)djstools\\.com break:403 Forbidden\nroute-referer = (?i)dktr\\.ru break:403 Forbidden\nroute-referer = (?i)dldsshop\\.xyz break:403 Forbidden\nroute-referer = (?i)dlya\\-android\\.org break:403 Forbidden\nroute-referer = (?i)dms\\-sw\\.ru break:403 Forbidden\nroute-referer = (?i)dna\\-sklad\\.ru break:403 Forbidden\nroute-referer = (?i)dnepr\\-avtospar\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)dneprsvet\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)dnmetall\\.ru break:403 Forbidden\nroute-referer = (?i)docs4all\\.com break:403 Forbidden\nroute-referer = (?i)docsarchive\\.net break:403 Forbidden\nroute-referer = (?i)docsportal\\.net break:403 Forbidden\nroute-referer = (?i)docstoc\\.com break:403 Forbidden\nroute-referer = (?i)doctmalls\\.xyz break:403 Forbidden\nroute-referer = (?i)doctornadezhda\\.ru break:403 Forbidden\nroute-referer = (?i)documentbase\\.net break:403 Forbidden\nroute-referer = (?i)documentserver\\.net break:403 Forbidden\nroute-referer = (?i)documentsite\\.net break:403 Forbidden\nroute-referer = (?i)dodge\\-forum\\.eu break:403 Forbidden\nroute-referer = (?i)doeco\\.ru break:403 Forbidden\nroute-referer = (?i)doggyhealthy\\.com break:403 Forbidden\nroute-referer = (?i)dogovorpodryada\\.ru break:403 Forbidden\nroute-referer = (?i)dogshowsonice\\.com break:403 Forbidden\nroute-referer = (?i)dogsrun\\.net break:403 Forbidden\nroute-referer = (?i)dojki\\-devki\\.ru break:403 Forbidden\nroute-referer = (?i)dojki\\-hd\\.com break:403 Forbidden\nroute-referer = (?i)doktoronline\\.no break:403 Forbidden\nroute-referer = (?i)dokumentalkino\\.net break:403 Forbidden\nroute-referer = (?i)dom\\-international\\.ru break:403 Forbidden\nroute-referer = (?i)domain\\-tracker\\.com break:403 Forbidden\nroute-referer = (?i)domashneeruporno\\.com break:403 Forbidden\nroute-referer = (?i)domashniy\\-hotel\\.ru break:403 Forbidden\nroute-referer = (?i)domashniy\\-recepti\\.ru break:403 Forbidden\nroute-referer = (?i)dombestofferhdd\\.info break:403 Forbidden\nroute-referer = (?i)domcran\\.net break:403 Forbidden\nroute-referer = (?i)domik\\-derevne\\.ru break:403 Forbidden\nroute-referer = (?i)dominateforex\\.ml break:403 Forbidden\nroute-referer = (?i)domination\\.ml break:403 Forbidden\nroute-referer = (?i)dominterior\\.org break:403 Forbidden\nroute-referer = (?i)dommdom\\.com break:403 Forbidden\nroute-referer = (?i)domovozik\\.ru break:403 Forbidden\nroute-referer = (?i)domoysshop\\.ru break:403 Forbidden\nroute-referer = (?i)dompechey\\.by break:403 Forbidden\nroute-referer = (?i)domsadiogorod\\.ru break:403 Forbidden\nroute-referer = (?i)donvito\\.unas\\.cz break:403 Forbidden\nroute-referer = (?i)doreenblog\\.online break:403 Forbidden\nroute-referer = (?i)doska\\-vsem\\.ru break:403 Forbidden\nroute-referer = (?i)dostavka\\-v\\-krym\\.com break:403 Forbidden\nroute-referer = (?i)dostavka\\-v\\-ukrainu\\.ru break:403 Forbidden\nroute-referer = (?i)dosug\\-lux\\.ru break:403 Forbidden\nroute-referer = (?i)dosugrostov\\.site break:403 Forbidden\nroute-referer = (?i)download\\-of\\-the\\-warez\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)downloadkakaotalk\\.com break:403 Forbidden\nroute-referer = (?i)downloadmefiranaratb1972\\.xpg\\.com\\.br break:403 Forbidden\nroute-referer = (?i)doxyporno\\.com break:403 Forbidden\nroute-referer = (?i)doxysexy\\.com break:403 Forbidden\nroute-referer = (?i)doyouknowtheword\\-flummox\\.ml break:403 Forbidden\nroute-referer = (?i)dprkboards\\.com break:403 Forbidden\nroute-referer = (?i)draniki\\.org break:403 Forbidden\nroute-referer = (?i)dreamland\\-bg\\.com break:403 Forbidden\nroute-referer = (?i)dreams\\-works\\.net break:403 Forbidden\nroute-referer = (?i)drev\\.biz break:403 Forbidden\nroute-referer = (?i)driving\\.kiev\\.ua break:403 Forbidden\nroute-referer = (?i)drugs\\-no\\-rx\\.info break:403 Forbidden\nroute-referer = (?i)drugspowerstore\\.com break:403 Forbidden\nroute-referer = (?i)drugstoreforyou\\.com break:403 Forbidden\nroute-referer = (?i)drupa\\.com break:403 Forbidden\nroute-referer = (?i)druzhbany\\.ru break:403 Forbidden\nroute-referer = (?i)druzhininevgeniy63\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)dspautomations\\.com break:403 Forbidden\nroute-referer = (?i)dstroy\\.su break:403 Forbidden\nroute-referer = (?i)duitbux\\.info break:403 Forbidden\nroute-referer = (?i)dumpsccshop\\.com break:403 Forbidden\nroute-referer = (?i)dvd\\-famille\\.com break:403 Forbidden\nroute-referer = (?i)dvk\\-stroi\\.ru break:403 Forbidden\nroute-referer = (?i)dvr\\.biz\\.ua break:403 Forbidden\nroute-referer = (?i)dzinerstudio\\.com break:403 Forbidden\nroute-referer = (?i)e\\-avon\\.ru break:403 Forbidden\nroute-referer = (?i)e\\-buyeasy\\.com break:403 Forbidden\nroute-referer = (?i)e\\-collantes\\.com break:403 Forbidden\nroute-referer = (?i)e\\-commerce\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)e\\-commerce\\-seo1\\.com break:403 Forbidden\nroute-referer = (?i)e\\-kwiaciarz\\.pl break:403 Forbidden\nroute-referer = (?i)e\\-stroymart\\.kz break:403 Forbidden\nroute-referer = (?i)e2click\\.com break:403 Forbidden\nroute-referer = (?i)eandsgallery\\.com break:403 Forbidden\nroute-referer = (?i)eaptekaplus\\.ru break:403 Forbidden\nroute-referer = (?i)earn\\-from\\-articles\\.com break:403 Forbidden\nroute-referer = (?i)earnian\\-money\\.info break:403 Forbidden\nroute-referer = (?i)earnity\\-money\\.info break:403 Forbidden\nroute-referer = (?i)easycommerce\\.cf break:403 Forbidden\nroute-referer = (?i)easync\\.io break:403 Forbidden\nroute-referer = (?i)easytuningshop\\.ru break:403 Forbidden\nroute-referer = (?i)eavuinsr\\.online break:403 Forbidden\nroute-referer = (?i)ecblog\\.xyz break:403 Forbidden\nroute-referer = (?i)ecommerce\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)ecommerce\\-seo\\.org break:403 Forbidden\nroute-referer = (?i)ecomp3\\.ru break:403 Forbidden\nroute-referer = (?i)econom\\.co break:403 Forbidden\nroute-referer = (?i)ecookna\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)edakgfvwql\\.ru break:403 Forbidden\nroute-referer = (?i)edelstahlschornstein\\-123\\.de break:403 Forbidden\nroute-referer = (?i)editmedios\\.com break:403 Forbidden\nroute-referer = (?i)edmed\\-sonline\\.com break:403 Forbidden\nroute-referer = (?i)ednetstore\\.xyz break:403 Forbidden\nroute-referer = (?i)edshopping\\.net break:403 Forbidden\nroute-referer = (?i)eduardoluis\\.com break:403 Forbidden\nroute-referer = (?i)education\\-cz\\.ru break:403 Forbidden\nroute-referer = (?i)educhess\\.ru break:403 Forbidden\nroute-referer = (?i)edudocs\\.net break:403 Forbidden\nroute-referer = (?i)eduinfosite\\.com break:403 Forbidden\nroute-referer = (?i)eduserver\\.net break:403 Forbidden\nroute-referer = (?i)eecz\\.org break:403 Forbidden\nroute-referer = (?i)eets\\.net break:403 Forbidden\nroute-referer = (?i)ege\\-essay\\.ru break:403 Forbidden\nroute-referer = (?i)ege\\-krasnoyarsk\\.ru break:403 Forbidden\nroute-referer = (?i)egovaleo\\.it break:403 Forbidden\nroute-referer = (?i)egvar\\.net break:403 Forbidden\nroute-referer = (?i)ek\\-invest\\.ru break:403 Forbidden\nroute-referer = (?i)ekatalog\\.xyz break:403 Forbidden\nroute-referer = (?i)ekaterinburg\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)ekbspravka\\.ru break:403 Forbidden\nroute-referer = (?i)eko\\-gazon\\.ru break:403 Forbidden\nroute-referer = (?i)ekobata\\.ru break:403 Forbidden\nroute-referer = (?i)ekoproekt\\-kr\\.ru break:403 Forbidden\nroute-referer = (?i)ekspertmed\\.com break:403 Forbidden\nroute-referer = (?i)ekto\\.ee break:403 Forbidden\nroute-referer = (?i)el\\-nation\\.com break:403 Forbidden\nroute-referer = (?i)elainasblog\\.xyz break:403 Forbidden\nroute-referer = (?i)eldoradorent\\.az break:403 Forbidden\nroute-referer = (?i)election\\.interferencer\\.ru break:403 Forbidden\nroute-referer = (?i)electric\\-blue\\-industries\\.com break:403 Forbidden\nroute-referer = (?i)electricwheelchairsarea\\.com break:403 Forbidden\nroute-referer = (?i)electro\\-prom\\.com break:403 Forbidden\nroute-referer = (?i)elegante\\-vitrage\\.ru break:403 Forbidden\nroute-referer = (?i)elektrikovich\\.ru break:403 Forbidden\nroute-referer = (?i)elektrischezi\\.canalblog\\.com break:403 Forbidden\nroute-referer = (?i)elektrischeziga\\.livejournal\\.com break:403 Forbidden\nroute-referer = (?i)elektrischezigarette1\\.blog\\.pl break:403 Forbidden\nroute-referer = (?i)elektrischezigarette1\\.onsugar\\.com break:403 Forbidden\nroute-referer = (?i)elektrischezigarette2\\.devhub\\.com break:403 Forbidden\nroute-referer = (?i)elektrischezigarette2\\.onsugar\\.com break:403 Forbidden\nroute-referer = (?i)elektrischezigarettekaufen2\\.cowblog\\.fr break:403 Forbidden\nroute-referer = (?i)elektrischezigaretten1\\.blogse\\.nl break:403 Forbidden\nroute-referer = (?i)elektrischezigaretten2\\.beeplog\\.com break:403 Forbidden\nroute-referer = (?i)elektronischezi\\.livejournal\\.com break:403 Forbidden\nroute-referer = (?i)elektronischezigarette2\\.mex\\.tl break:403 Forbidden\nroute-referer = (?i)elektronischezigarettekaufen1\\.beeplog\\.com break:403 Forbidden\nroute-referer = (?i)elektronischezigarettekaufen1\\.myblog\\.de break:403 Forbidden\nroute-referer = (?i)elektronischezigarettekaufen2\\.tumblr\\.com break:403 Forbidden\nroute-referer = (?i)elektrozigarette1\\.dreamwidth\\.org break:403 Forbidden\nroute-referer = (?i)elektrozigarette2\\.webs\\.com break:403 Forbidden\nroute-referer = (?i)elektrozigarette2\\.wordpressy\\.pl break:403 Forbidden\nroute-referer = (?i)elektrozigarettekaufen1\\.devhub\\.com break:403 Forbidden\nroute-referer = (?i)elektrozigarettekaufen2\\.blogse\\.nl break:403 Forbidden\nroute-referer = (?i)elektrozigaretten1\\.postbit\\.com break:403 Forbidden\nroute-referer = (?i)elektrozigaretten1\\.tumblr\\.com break:403 Forbidden\nroute-referer = (?i)elektrozigaretten1\\.webs\\.com break:403 Forbidden\nroute-referer = (?i)elektrozigaretten2\\.yn\\.lt break:403 Forbidden\nroute-referer = (?i)elementspluss\\.ru break:403 Forbidden\nroute-referer = (?i)elenatkachenko\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)elentur\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)elidelcream\\.weebly\\.com break:403 Forbidden\nroute-referer = (?i)elitesportsadvisor\\.com break:403 Forbidden\nroute-referer = (?i)elizabethbruno\\.top break:403 Forbidden\nroute-referer = (?i)elkacentr\\.ru break:403 Forbidden\nroute-referer = (?i)ellemarket\\.com break:403 Forbidden\nroute-referer = (?i)elmifarhangi\\.com break:403 Forbidden\nroute-referer = (?i)eloconcream\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)eloxal\\.ru break:403 Forbidden\nroute-referer = (?i)elvel\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)embedle\\.com break:403 Forbidden\nroute-referer = (?i)emctestlab\\.ru break:403 Forbidden\nroute-referer = (?i)emerson\\-rus\\.ru break:403 Forbidden\nroute-referer = (?i)emicef\\.com break:403 Forbidden\nroute-referer = (?i)empire\\-market\\.org break:403 Forbidden\nroute-referer = (?i)empire\\-market\\.xyz break:403 Forbidden\nroute-referer = (?i)empiremarket\\-link\\.org break:403 Forbidden\nroute-referer = (?i)empiremarketlink24\\.com break:403 Forbidden\nroute-referer = (?i)empirestuff\\.org break:403 Forbidden\nroute-referer = (?i)empis\\.magix\\.net break:403 Forbidden\nroute-referer = (?i)encmbtia\\.online break:403 Forbidden\nroute-referer = (?i)energomash\\.net break:403 Forbidden\nroute-referer = (?i)energy\\-ua\\.com break:403 Forbidden\nroute-referer = (?i)energydiet\\-info\\.ru break:403 Forbidden\nroute-referer = (?i)energydiet24\\.ru break:403 Forbidden\nroute-referer = (?i)energysexy\\.com break:403 Forbidden\nroute-referer = (?i)enginebay\\.ru break:403 Forbidden\nroute-referer = (?i)englishdictionaryfree\\.com break:403 Forbidden\nroute-referer = (?i)englishtopic\\.ru break:403 Forbidden\nroute-referer = (?i)enter\\-unicredit\\.ru break:403 Forbidden\nroute-referer = (?i)entgetadsincome\\.info break:403 Forbidden\nroute-referer = (?i)envistore\\.xyz break:403 Forbidden\nroute-referer = (?i)eonpal\\.com break:403 Forbidden\nroute-referer = (?i)epcpolo\\.com break:403 Forbidden\nroute-referer = (?i)epicdiving\\.com break:403 Forbidden\nroute-referer = (?i)eraglass\\.com break:403 Forbidden\nroute-referer = (?i)erank\\.eu break:403 Forbidden\nroute-referer = (?i)eredijovon\\.com break:403 Forbidden\nroute-referer = (?i)ereko\\.ru break:403 Forbidden\nroute-referer = (?i)erias\\.xyz break:403 Forbidden\nroute-referer = (?i)eric\\-artem\\.com break:403 Forbidden\nroute-referer = (?i)ericshome\\.store break:403 Forbidden\nroute-referer = (?i)erinhome\\.xyz break:403 Forbidden\nroute-referer = (?i)ero\\-video\\-chat\\.org break:403 Forbidden\nroute-referer = (?i)erofus\\.online break:403 Forbidden\nroute-referer = (?i)eropho\\.com break:403 Forbidden\nroute-referer = (?i)eropho\\.net break:403 Forbidden\nroute-referer = (?i)erot\\.co break:403 Forbidden\nroute-referer = (?i)erotag\\.com break:403 Forbidden\nroute-referer = (?i)eroticheskij\\-video\\-chat\\.ru break:403 Forbidden\nroute-referer = (?i)erotikstories\\.ru break:403 Forbidden\nroute-referer = (?i)es\\-pfrf\\.ru break:403 Forbidden\nroute-referer = (?i)es5\\.com break:403 Forbidden\nroute-referer = (?i)escort\\-russian\\.com break:403 Forbidden\nroute-referer = (?i)escortplius\\.com break:403 Forbidden\nroute-referer = (?i)eshop\\.md break:403 Forbidden\nroute-referer = (?i)eskei83\\.com break:403 Forbidden\nroute-referer = (?i)esnm\\.ru break:403 Forbidden\nroute-referer = (?i)esoterikforum\\.at break:403 Forbidden\nroute-referer = (?i)essaytags\\.com break:403 Forbidden\nroute-referer = (?i)estdj\\.com break:403 Forbidden\nroute-referer = (?i)este\\-line\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)etairikavideo\\.gr break:403 Forbidden\nroute-referer = (?i)etehnika\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)etotupo\\.ru break:403 Forbidden\nroute-referer = (?i)ets\\-2\\-mod\\.ru break:403 Forbidden\nroute-referer = (?i)etsfshop\\.xyz break:403 Forbidden\nroute-referer = (?i)eu\\-cookie\\-law\\-enforcement\\-4\\.xyz break:403 Forbidden\nroute-referer = (?i)eu\\-cookie\\-law\\-enforcement\\-5\\.xyz break:403 Forbidden\nroute-referer = (?i)eu\\-cookie\\-law\\-enforcement\\-6\\.xyz break:403 Forbidden\nroute-referer = (?i)eu\\-cookie\\-law\\-enforcement\\-7\\.xyz break:403 Forbidden\nroute-referer = (?i)eu\\-cookie\\-law\\-enforcement1\\.xyz break:403 Forbidden\nroute-referer = (?i)eu\\-cookie\\-law\\-enforcement2\\.xyz break:403 Forbidden\nroute-referer = (?i)eu\\-cookie\\-law\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)eu\\-cookie\\-law\\.info break:403 Forbidden\nroute-referer = (?i)eurocredit\\.xyz break:403 Forbidden\nroute-referer = (?i)euromasterclass\\.ru break:403 Forbidden\nroute-referer = (?i)euronis\\-free\\.com break:403 Forbidden\nroute-referer = (?i)europages\\.com\\.ru break:403 Forbidden\nroute-referer = (?i)europeanwatches\\.ru break:403 Forbidden\nroute-referer = (?i)eurosamodelki\\.ru break:403 Forbidden\nroute-referer = (?i)euroskat\\.ru break:403 Forbidden\nroute-referer = (?i)evaashop\\.ru break:403 Forbidden\nroute-referer = (?i)event\\-tracking\\.com break:403 Forbidden\nroute-referer = (?i)eventiyahall\\.ru break:403 Forbidden\nroute-referer = (?i)evreuxshop\\.xyz break:403 Forbidden\nroute-referer = (?i)exchangeit\\.gq break:403 Forbidden\nroute-referer = (?i)exchanges\\-bet\\.com break:403 Forbidden\nroute-referer = (?i)exclusive\\-profit\\.com break:403 Forbidden\nroute-referer = (?i)exdocsfiles\\.com break:403 Forbidden\nroute-referer = (?i)execedmall\\.xyz break:403 Forbidden\nroute-referer = (?i)executehosting\\.com break:403 Forbidden\nroute-referer = (?i)exotic\\-video\\-chat\\.ru break:403 Forbidden\nroute-referer = (?i)expdom\\.com break:403 Forbidden\nroute-referer = (?i)expediacustomerservicenumber\\.online break:403 Forbidden\nroute-referer = (?i)expert\\-find\\.ru break:403 Forbidden\nroute-referer = (?i)expertnaya\\-ocenka\\.ru break:403 Forbidden\nroute-referer = (?i)explore\\-prior\\-web\\-service\\.review break:403 Forbidden\nroute-referer = (?i)express\\-vyvoz\\.ru break:403 Forbidden\nroute-referer = (?i)expresstoplivo\\.ru break:403 Forbidden\nroute-referer = (?i)extener\\.com break:403 Forbidden\nroute-referer = (?i)extener\\.org break:403 Forbidden\nroute-referer = (?i)extrabot\\.com break:403 Forbidden\nroute-referer = (?i)extremez\\.net break:403 Forbidden\nroute-referer = (?i)eyes\\-on\\-you\\.ga break:403 Forbidden\nroute-referer = (?i)eyessurgery\\.ru break:403 Forbidden\nroute-referer = (?i)ez8motelseaworldsandiego\\.com break:403 Forbidden\nroute-referer = (?i)ezigarettekaufen\\.myblog\\.de break:403 Forbidden\nroute-referer = (?i)ezigarettekaufen1\\.hpage\\.com break:403 Forbidden\nroute-referer = (?i)ezigarettekaufen2\\.blox\\.pl break:403 Forbidden\nroute-referer = (?i)ezigarettekaufen2\\.mpbloggar\\.se break:403 Forbidden\nroute-referer = (?i)ezigarettekaufen2\\.yolasite\\.com break:403 Forbidden\nroute-referer = (?i)ezigarettenkaufen1\\.deviantart\\.com break:403 Forbidden\nroute-referer = (?i)ezigarettenkaufen1\\.pagina\\.gr break:403 Forbidden\nroute-referer = (?i)ezigarettenkaufen2\\.dreamwidth\\.org break:403 Forbidden\nroute-referer = (?i)ezigarettenshop1\\.yolasite\\.com break:403 Forbidden\nroute-referer = (?i)ezigarettenshop2\\.myblog\\.de break:403 Forbidden\nroute-referer = (?i)ezigarettenshop2\\.postbit\\.com break:403 Forbidden\nroute-referer = (?i)ezigaretteshop\\.webs\\.com break:403 Forbidden\nroute-referer = (?i)ezigaretteshop2\\.mywapblog\\.com break:403 Forbidden\nroute-referer = (?i)ezigaretteshop2\\.vefblog\\.net break:403 Forbidden\nroute-referer = (?i)ezofest\\.sk break:403 Forbidden\nroute-referer = (?i)ezrvrentals\\.com break:403 Forbidden\nroute-referer = (?i)f\\-loaded\\.de break:403 Forbidden\nroute-referer = (?i)f\\-online\\.de break:403 Forbidden\nroute-referer = (?i)f00kclan\\.de break:403 Forbidden\nroute-referer = (?i)f012\\.de break:403 Forbidden\nroute-referer = (?i)f07\\.de break:403 Forbidden\nroute-referer = (?i)f0815\\.de break:403 Forbidden\nroute-referer = (?i)f1nder\\.org break:403 Forbidden\nroute-referer = (?i)facebook\\-mobile\\.xyz break:403 Forbidden\nroute-referer = (?i)fainaidea\\.com break:403 Forbidden\nroute-referer = (?i)faithe\\.top break:403 Forbidden\nroute-referer = (?i)falco3d\\.com break:403 Forbidden\nroute-referer = (?i)falcoware\\.com break:403 Forbidden\nroute-referer = (?i)family1st\\.ca break:403 Forbidden\nroute-referer = (?i)familyholiday\\.ml break:403 Forbidden\nroute-referer = (?i)familyphysician\\.ru break:403 Forbidden\nroute-referer = (?i)fanoboi\\.com break:403 Forbidden\nroute-referer = (?i)fartunabest\\.ru break:403 Forbidden\nroute-referer = (?i)fashion\\-mk\\.net break:403 Forbidden\nroute-referer = (?i)fashiong\\.ru break:403 Forbidden\nroute-referer = (?i)fashionindeed\\.ml break:403 Forbidden\nroute-referer = (?i)fast\\-wordpress\\-start\\.com break:403 Forbidden\nroute-referer = (?i)fastgg\\.net break:403 Forbidden\nroute-referer = (?i)fatrizscae\\.online break:403 Forbidden\nroute-referer = (?i)favorcosmetics\\.com break:403 Forbidden\nroute-referer = (?i)favoritemoney\\.ru break:403 Forbidden\nroute-referer = (?i)favoritki\\-msk\\.ru break:403 Forbidden\nroute-referer = (?i)favornews\\.com break:403 Forbidden\nroute-referer = (?i)fazika\\.ru break:403 Forbidden\nroute-referer = (?i)fba\\-mexico\\.com break:403 Forbidden\nroute-referer = (?i)fbdownloader\\.com break:403 Forbidden\nroute-referer = (?i)fbfreegifts\\.com break:403 Forbidden\nroute-referer = (?i)fc\\-007\\.com break:403 Forbidden\nroute-referer = (?i)fealq\\.com break:403 Forbidden\nroute-referer = (?i)feargames\\.ru break:403 Forbidden\nroute-referer = (?i)feedback\\.sharemyfile\\.ru break:403 Forbidden\nroute-referer = (?i)feedouble\\.com break:403 Forbidden\nroute-referer = (?i)feedouble\\.net break:403 Forbidden\nroute-referer = (?i)feel\\-planet\\.com break:403 Forbidden\nroute-referer = (?i)feeriaclub\\.ru break:403 Forbidden\nroute-referer = (?i)feiacmr\\.shop break:403 Forbidden\nroute-referer = (?i)feminist\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)femmesdenudees\\.com break:403 Forbidden\nroute-referer = (?i)fenoyl\\.batcave\\.net break:403 Forbidden\nroute-referer = (?i)ferieboligkbh\\.dk break:403 Forbidden\nroute-referer = (?i)fermersovet\\.ru break:403 Forbidden\nroute-referer = (?i)fetishinside\\.com break:403 Forbidden\nroute-referer = (?i)fialka\\.tomsk\\.ru break:403 Forbidden\nroute-referer = (?i)fidalsa\\.de break:403 Forbidden\nroute-referer = (?i)fierrohack\\.ru break:403 Forbidden\nroute-referer = (?i)figensahin\\.com break:403 Forbidden\nroute-referer = (?i)filesclub\\.net break:403 Forbidden\nroute-referer = (?i)filesdatabase\\.net break:403 Forbidden\nroute-referer = (?i)filesvine\\.com break:403 Forbidden\nroute-referer = (?i)film\\-one\\.ru break:403 Forbidden\nroute-referer = (?i)filmetricsasia\\.com break:403 Forbidden\nroute-referer = (?i)filmgo\\.ru break:403 Forbidden\nroute-referer = (?i)filmidivx\\.com break:403 Forbidden\nroute-referer = (?i)films2018\\.com break:403 Forbidden\nroute-referer = (?i)filter\\-ot\\-zheleza\\.ru break:403 Forbidden\nroute-referer = (?i)financial\\-simulation\\.com break:403 Forbidden\nroute-referer = (?i)finansov\\.info break:403 Forbidden\nroute-referer = (?i)findacheaplawyers\\.com break:403 Forbidden\nroute-referer = (?i)finder\\.cool break:403 Forbidden\nroute-referer = (?i)findercarphotos\\.com break:403 Forbidden\nroute-referer = (?i)fineblog\\.top break:403 Forbidden\nroute-referer = (?i)finstroy\\.net break:403 Forbidden\nroute-referer = (?i)finteks\\.ru break:403 Forbidden\nroute-referer = (?i)firma\\-legion\\.ru break:403 Forbidden\nroute-referer = (?i)firmgeo\\.xyz break:403 Forbidden\nroute-referer = (?i)firstblog\\.top break:403 Forbidden\nroute-referer = (?i)fit\\-discount\\.ru break:403 Forbidden\nroute-referer = (?i)fitness\\-video\\.net break:403 Forbidden\nroute-referer = (?i)fitodar\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)fiuagts\\.online break:403 Forbidden\nroute-referer = (?i)fiuxy\\.com break:403 Forbidden\nroute-referer = (?i)fiverr\\.com break:403 Forbidden\nroute-referer = (?i)fix\\-website\\-errors\\.com break:403 Forbidden\nroute-referer = (?i)fizika\\.tv break:403 Forbidden\nroute-referer = (?i)flash4fun\\.com break:403 Forbidden\nroute-referer = (?i)flavors\\.me break:403 Forbidden\nroute-referer = (?i)flex4launch\\.ru break:403 Forbidden\nroute-referer = (?i)flexderek\\.com break:403 Forbidden\nroute-referer = (?i)floating\\-share\\-buttons\\.com break:403 Forbidden\nroute-referer = (?i)flooringinstallation\\-edmonton\\.com break:403 Forbidden\nroute-referer = (?i)flowersbazar\\.com break:403 Forbidden\nroute-referer = (?i)flowertherapy\\.ru break:403 Forbidden\nroute-referer = (?i)flowwwers\\.com break:403 Forbidden\nroute-referer = (?i)flprog\\.com break:403 Forbidden\nroute-referer = (?i)flyblog\\.xyz break:403 Forbidden\nroute-referer = (?i)flytourisme\\.org break:403 Forbidden\nroute-referer = (?i)fm\\-upgrade\\.ru break:403 Forbidden\nroute-referer = (?i)fmgrupe\\.it break:403 Forbidden\nroute-referer = (?i)foojo\\.net break:403 Forbidden\nroute-referer = (?i)for\\-marketersy\\.info break:403 Forbidden\nroute-referer = (?i)for\\-your\\.website break:403 Forbidden\nroute-referer = (?i)forensicpsychiatry\\.ru break:403 Forbidden\nroute-referer = (?i)forex\\-indextop20\\.ru break:403 Forbidden\nroute-referer = (?i)forex\\-procto\\.ru break:403 Forbidden\nroute-referer = (?i)forex\\.osobye\\.ru break:403 Forbidden\nroute-referer = (?i)forex21\\.ru break:403 Forbidden\nroute-referer = (?i)forexgb\\.ru break:403 Forbidden\nroute-referer = (?i)forexunion\\.net break:403 Forbidden\nroute-referer = (?i)forminecrafters\\.ru break:403 Forbidden\nroute-referer = (?i)forms\\-mtm\\.ru break:403 Forbidden\nroute-referer = (?i)forpostlock\\.ru break:403 Forbidden\nroute-referer = (?i)forsex\\.info break:403 Forbidden\nroute-referer = (?i)fortwosmartcar\\.pw break:403 Forbidden\nroute-referer = (?i)forum\\-engineering\\.ru break:403 Forbidden\nroute-referer = (?i)forum\\.poker4life\\.ru break:403 Forbidden\nroute-referer = (?i)forum\\.tvmir\\.org break:403 Forbidden\nroute-referer = (?i)forum20\\.smailik\\.org break:403 Forbidden\nroute-referer = (?i)forum69\\.info break:403 Forbidden\nroute-referer = (?i)forums\\.toucharcade\\.com break:403 Forbidden\nroute-referer = (?i)fotoxxxru\\.com break:403 Forbidden\nroute-referer = (?i)foxinsocks\\.ru break:403 Forbidden\nroute-referer = (?i)foxjuegos\\.com break:403 Forbidden\nroute-referer = (?i)foxtechfpv\\.com break:403 Forbidden\nroute-referer = (?i)foxweber\\.com break:403 Forbidden\nroute-referer = (?i)fpclub\\.ru break:403 Forbidden\nroute-referer = (?i)fr\\.netlog\\.com break:403 Forbidden\nroute-referer = (?i)francaise\\-poesie\\.com break:403 Forbidden\nroute-referer = (?i)frankofficial\\.ru break:403 Forbidden\nroute-referer = (?i)frauplus\\.ru break:403 Forbidden\nroute-referer = (?i)free\\-fb\\-traffic\\.com break:403 Forbidden\nroute-referer = (?i)free\\-fbook\\-traffic\\.com break:403 Forbidden\nroute-referer = (?i)free\\-floating\\-buttons\\.com break:403 Forbidden\nroute-referer = (?i)free\\-games\\-download\\.falcoware\\.com break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\-aaa\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\-bbb\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\-ccc\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\-ddd\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\-eee\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\-fff\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\.co break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\.com break:403 Forbidden\nroute-referer = (?i)free\\-share\\-buttons\\.top break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\-aaa\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\-bbb\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\-ccc\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\-ddd\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\-eee\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\-fff\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\-hhh\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\-iii\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\.com break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\.org break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons1\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons2\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons3\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons4\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons5\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons6\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-social\\-buttons7\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-traffic\\.xyz break:403 Forbidden\nroute-referer = (?i)free\\-video\\-chat\\.ru break:403 Forbidden\nroute-referer = (?i)free\\-video\\-tool\\.com break:403 Forbidden\nroute-referer = (?i)free\\-website\\-traffic\\.com break:403 Forbidden\nroute-referer = (?i)freeasecret\\.com break:403 Forbidden\nroute-referer = (?i)freenode\\.info break:403 Forbidden\nroute-referer = (?i)freeseedsonline\\.com break:403 Forbidden\nroute-referer = (?i)freetangodownload\\.com break:403 Forbidden\nroute-referer = (?i)freewebs\\.com break:403 Forbidden\nroute-referer = (?i)freewhatsappload\\.com break:403 Forbidden\nroute-referer = (?i)freewlan\\.info break:403 Forbidden\nroute-referer = (?i)freshberry\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)freshnails\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)front\\.ru break:403 Forbidden\nroute-referer = (?i)front\\.to break:403 Forbidden\nroute-referer = (?i)fsalas\\.com break:403 Forbidden\nroute-referer = (?i)fsin\\-pokypka\\.ru break:403 Forbidden\nroute-referer = (?i)ftns\\.ru break:403 Forbidden\nroute-referer = (?i)fuck\\-paid\\-share\\-buttons\\.xyz break:403 Forbidden\nroute-referer = (?i)fuel\\-gas\\.com break:403 Forbidden\nroute-referer = (?i)fullzdumps\\.cc break:403 Forbidden\nroute-referer = (?i)fungirlsgames\\.net break:403 Forbidden\nroute-referer = (?i)funnypica\\.com break:403 Forbidden\nroute-referer = (?i)furniture\\-ukraine\\.com break:403 Forbidden\nroute-referer = (?i)furniturehomewares\\.com break:403 Forbidden\nroute-referer = (?i)futbolkisales\\.ru break:403 Forbidden\nroute-referer = (?i)fvetgoods\\.xyz break:403 Forbidden\nroute-referer = (?i)fxtips\\.ru break:403 Forbidden\nroute-referer = (?i)g7m\\.pl break:403 Forbidden\nroute-referer = (?i)gabeshop\\.ru break:403 Forbidden\nroute-referer = (?i)gabysuniqueboutique\\.com break:403 Forbidden\nroute-referer = (?i)gael\\-s\\.ru break:403 Forbidden\nroute-referer = (?i)gagrasector\\.ru break:403 Forbidden\nroute-referer = (?i)galaxy\\-family\\.ru break:403 Forbidden\nroute-referer = (?i)galaxyflowers\\.ru break:403 Forbidden\nroute-referer = (?i)galblog\\.top break:403 Forbidden\nroute-referer = (?i)galeon\\.com break:403 Forbidden\nroute-referer = (?i)gamblingpp\\.ru break:403 Forbidden\nroute-referer = (?i)game\\-mmorpg\\.net break:403 Forbidden\nroute-referer = (?i)game\\-top\\.su break:403 Forbidden\nroute-referer = (?i)game300\\.ru break:403 Forbidden\nroute-referer = (?i)games\\.kolossale\\.ru break:403 Forbidden\nroute-referer = (?i)gammatraffic\\.com break:403 Forbidden\nroute-referer = (?i)gandikapper\\.ru break:403 Forbidden\nroute-referer = (?i)gaokr\\.xyz break:403 Forbidden\nroute-referer = (?i)gap\\-search\\.com break:403 Forbidden\nroute-referer = (?i)garantprava\\.com break:403 Forbidden\nroute-referer = (?i)gardene\\.ru break:403 Forbidden\nroute-referer = (?i)gasvleningrade\\.ru break:403 Forbidden\nroute-referer = (?i)gatwick\\.ru break:403 Forbidden\nroute-referer = (?i)gays\\-video\\-chat\\.ru break:403 Forbidden\nroute-referer = (?i)gaz\\-voshod\\.ru break:403 Forbidden\nroute-referer = (?i)gazel\\-72\\.ru break:403 Forbidden\nroute-referer = (?i)gazobeton\\-p\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)gazoblok\\.net\\.ua break:403 Forbidden\nroute-referer = (?i)gbh\\-invest\\.ru break:403 Forbidden\nroute-referer = (?i)gcmx\\.net break:403 Forbidden\nroute-referer = (?i)gcup\\.ru break:403 Forbidden\nroute-referer = (?i)gdcentre\\.ru break:403 Forbidden\nroute-referer = (?i)gearcraft\\.us break:403 Forbidden\nroute-referer = (?i)gearsadspromo\\.club break:403 Forbidden\nroute-referer = (?i)gelezki\\.com break:403 Forbidden\nroute-referer = (?i)geliyballon\\.ru break:403 Forbidden\nroute-referer = (?i)gelstate\\.ru break:403 Forbidden\nroute-referer = (?i)generalporn\\.org break:403 Forbidden\nroute-referer = (?i)genericlowlatencyasiodriverhq\\.aircus\\.com break:403 Forbidden\nroute-referer = (?i)geniusfood\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)gentamicineyedrops\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)georgeblog\\.online break:403 Forbidden\nroute-referer = (?i)gepatit\\-info\\.top break:403 Forbidden\nroute-referer = (?i)germes\\-trans\\.com break:403 Forbidden\nroute-referer = (?i)get\\-best\\-copywriting\\-service\\.stream break:403 Forbidden\nroute-referer = (?i)get\\-clickir\\.info break:403 Forbidden\nroute-referer = (?i)get\\-clickize\\.info break:403 Forbidden\nroute-referer = (?i)get\\-free\\-social\\-traffic\\.com break:403 Forbidden\nroute-referer = (?i)get\\-free\\-traffic\\-now\\.com break:403 Forbidden\nroute-referer = (?i)get\\-more\\-freeen\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)get\\-more\\-freeer\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)get\\-more\\-freeish\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)get\\-more\\-freeize\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)get\\-more\\-freele\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)get\\-morebit\\-free\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)get\\-prime\\-seo\\-services\\.review break:403 Forbidden\nroute-referer = (?i)get\\-seo\\-help\\.com break:403 Forbidden\nroute-referer = (?i)get\\-your\\-social\\-buttons\\.info break:403 Forbidden\nroute-referer = (?i)getaadsincome\\.info break:403 Forbidden\nroute-referer = (?i)getadsincomeian\\.info break:403 Forbidden\nroute-referer = (?i)getadsincomely\\.info break:403 Forbidden\nroute-referer = (?i)getadsincomeof\\.info break:403 Forbidden\nroute-referer = (?i)getbottraffic4free\\.club break:403 Forbidden\nroute-referer = (?i)getbottraffic4free\\.host break:403 Forbidden\nroute-referer = (?i)getbottraffic4free\\.xyz break:403 Forbidden\nroute-referer = (?i)getbytadsincome\\.info break:403 Forbidden\nroute-referer = (?i)getfy\\-click\\.info break:403 Forbidden\nroute-referer = (?i)getism\\-more\\-free\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)getity\\-more\\-free\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)getityadsincome\\.info break:403 Forbidden\nroute-referer = (?i)getive\\-more\\-free\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)getlamborghini\\.ga break:403 Forbidden\nroute-referer = (?i)getoutofdebtfree\\.org break:403 Forbidden\nroute-referer = (?i)getprismatic\\.com break:403 Forbidden\nroute-referer = (?i)getpy\\-click\\.info break:403 Forbidden\nroute-referer = (?i)getpy\\-more\\-free\\-visitors\\.info break:403 Forbidden\nroute-referer = (?i)getrichquick\\.ml break:403 Forbidden\nroute-referer = (?i)getrichquickly\\.info break:403 Forbidden\nroute-referer = (?i)getyourprofit\\.net break:403 Forbidden\nroute-referer = (?i)gevciamst\\.online break:403 Forbidden\nroute-referer = (?i)gezlev\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)gfaq\\.ru break:403 Forbidden\nroute-referer = (?i)ghazel\\.ru break:403 Forbidden\nroute-referer = (?i)ghernnqr\\.skyrock\\.com break:403 Forbidden\nroute-referer = (?i)gheus\\.altervista\\.org break:403 Forbidden\nroute-referer = (?i)ghostvisitor\\.com break:403 Forbidden\nroute-referer = (?i)gidonline\\.one break:403 Forbidden\nroute-referer = (?i)gidro\\-partner\\.ru break:403 Forbidden\nroute-referer = (?i)giftbig\\.ru break:403 Forbidden\nroute-referer = (?i)girlporn\\.ru break:403 Forbidden\nroute-referer = (?i)girls\\-ufa\\.ru break:403 Forbidden\nroute-referer = (?i)girlsatgames\\.ru break:403 Forbidden\nroute-referer = (?i)gk\\-atlant\\.info break:403 Forbidden\nroute-referer = (?i)gk\\-casino\\.fun break:403 Forbidden\nroute-referer = (?i)gk\\-casino\\.online break:403 Forbidden\nroute-referer = (?i)gk\\-casino\\.ru break:403 Forbidden\nroute-referer = (?i)gk\\-casino\\.site break:403 Forbidden\nroute-referer = (?i)gk\\-casino\\.space break:403 Forbidden\nroute-referer = (?i)gk\\-casino\\.website break:403 Forbidden\nroute-referer = (?i)gkvector\\.ru break:403 Forbidden\nroute-referer = (?i)glall\\.ru break:403 Forbidden\nroute-referer = (?i)glass\\-msk\\.ru break:403 Forbidden\nroute-referer = (?i)glavprofit\\.ru break:403 Forbidden\nroute-referer = (?i)glcomputers\\.ru break:403 Forbidden\nroute-referer = (?i)glktfw\\.net break:403 Forbidden\nroute-referer = (?i)global\\-smm\\.ru break:403 Forbidden\nroute-referer = (?i)globalscam\\.ga break:403 Forbidden\nroute-referer = (?i)globatur\\.ru break:403 Forbidden\nroute-referer = (?i)globetrotting\\-culture\\.ru break:403 Forbidden\nroute-referer = (?i)glogow\\.pl break:403 Forbidden\nroute-referer = (?i)glopages\\.ru break:403 Forbidden\nroute-referer = (?i)go2album\\.com break:403 Forbidden\nroute-referer = (?i)gobongo\\.info break:403 Forbidden\nroute-referer = (?i)goforexvps\\.com break:403 Forbidden\nroute-referer = (?i)gogps\\.me break:403 Forbidden\nroute-referer = (?i)gojiberriess\\.apishops\\.ru break:403 Forbidden\nroute-referer = (?i)gok\\-kasten\\.net break:403 Forbidden\nroute-referer = (?i)goldandcard\\.ru break:403 Forbidden\nroute-referer = (?i)golden\\-catalog\\.pro break:403 Forbidden\nroute-referer = (?i)golden\\-praga\\.ru break:403 Forbidden\nroute-referer = (?i)goldenggames\\.com break:403 Forbidden\nroute-referer = (?i)goldvaultmetals\\.com break:403 Forbidden\nroute-referer = (?i)golmau\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)golyedevushki\\.com break:403 Forbidden\nroute-referer = (?i)gonextmedia\\.com break:403 Forbidden\nroute-referer = (?i)good\\-potolok\\.ru break:403 Forbidden\nroute-referer = (?i)goodbyecellulite\\.ru break:403 Forbidden\nroute-referer = (?i)goodcoffeepremium\\.com break:403 Forbidden\nroute-referer = (?i)goodhumor24\\.com break:403 Forbidden\nroute-referer = (?i)goodnightjournal\\.com break:403 Forbidden\nroute-referer = (?i)goodprotein\\.ru break:403 Forbidden\nroute-referer = (?i)google\\-liar\\.ru break:403 Forbidden\nroute-referer = (?i)googlefeud\\.com break:403 Forbidden\nroute-referer = (?i)googlemare\\.com break:403 Forbidden\nroute-referer = (?i)googlsucks\\.com break:403 Forbidden\nroute-referer = (?i)gorabagrata\\.ru break:403 Forbidden\nroute-referer = (?i)gorgaz\\.info break:403 Forbidden\nroute-referer = (?i)goroda\\-vsego\\-mira\\.ru break:403 Forbidden\nroute-referer = (?i)gorodservis\\.ru break:403 Forbidden\nroute-referer = (?i)gosreg\\.amchs\\.ru break:403 Forbidden\nroute-referer = (?i)gototal\\.co\\.nz break:403 Forbidden\nroute-referer = (?i)gourcy\\.altervista\\.org break:403 Forbidden\nroute-referer = (?i)goyua\\.xyz break:403 Forbidden\nroute-referer = (?i)gq\\-catalog\\.gq break:403 Forbidden\nroute-referer = (?i)graceonline\\.shop break:403 Forbidden\nroute-referer = (?i)grafaman\\.ru break:403 Forbidden\nroute-referer = (?i)grand\\-chlen\\.ru break:403 Forbidden\nroute-referer = (?i)graphid\\.com break:403 Forbidden\nroute-referer = (?i)gratuitbaise\\.com break:403 Forbidden\nroute-referer = (?i)greatblog\\.top break:403 Forbidden\nroute-referer = (?i)greatgrace\\.ru break:403 Forbidden\nroute-referer = (?i)greentechsy\\.com break:403 Forbidden\nroute-referer = (?i)grizzlysgrill\\.com break:403 Forbidden\nroute-referer = (?i)groshi\\-kredut\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)groupmoney\\.ru break:403 Forbidden\nroute-referer = (?i)growmyfunds\\.ca break:403 Forbidden\nroute-referer = (?i)growshop\\.es break:403 Forbidden\nroute-referer = (?i)growth\\-hackingan\\.info break:403 Forbidden\nroute-referer = (?i)growth\\-hackingead\\.info break:403 Forbidden\nroute-referer = (?i)growth\\-hackingeads\\.info break:403 Forbidden\nroute-referer = (?i)growth\\-hackingor\\.info break:403 Forbidden\nroute-referer = (?i)growth\\-hackingy\\.info break:403 Forbidden\nroute-referer = (?i)grupografico\\-pilar\\.com\\.ar break:403 Forbidden\nroute-referer = (?i)gruzchiki24\\.ru break:403 Forbidden\nroute-referer = (?i)gsbs\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)gsmlab\\.pl break:403 Forbidden\nroute-referer = (?i)gsmtlf\\.ru break:403 Forbidden\nroute-referer = (?i)gta\\-club\\.ru break:403 Forbidden\nroute-referer = (?i)gta\\-top\\.ru break:403 Forbidden\nroute-referer = (?i)gttpsale\\.xyz break:403 Forbidden\nroute-referer = (?i)guardlink\\.com break:403 Forbidden\nroute-referer = (?i)guardlink\\.org break:403 Forbidden\nroute-referer = (?i)guge\\.io break:403 Forbidden\nroute-referer = (?i)guidetopetersburg\\.com break:403 Forbidden\nroute-referer = (?i)gungamesz\\.com break:403 Forbidden\nroute-referer = (?i)guruofcasino\\.com break:403 Forbidden\nroute-referer = (?i)gwhwpxbw\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)gxcb\\.net break:403 Forbidden\nroute-referer = (?i)h2monline\\.com break:403 Forbidden\nroute-referer = (?i)hacktougroup\\.ru break:403 Forbidden\nroute-referer = (?i)hagirkblog\\.space break:403 Forbidden\nroute-referer = (?i)hahashka\\.ru break:403 Forbidden\nroute-referer = (?i)haikuware\\.com break:403 Forbidden\nroute-referer = (?i)halat\\.xyz break:403 Forbidden\nroute-referer = (?i)halefa\\.com break:403 Forbidden\nroute-referer = (?i)hamyshop\\.xyz break:403 Forbidden\nroute-referer = (?i)handicapvansarea\\.com break:403 Forbidden\nroute-referer = (?i)handicapvantoday\\.com break:403 Forbidden\nroute-referer = (?i)handsandlegs\\.ru break:403 Forbidden\nroute-referer = (?i)hanink\\.biz\\.ly break:403 Forbidden\nroute-referer = (?i)hankspring\\.xyz break:403 Forbidden\nroute-referer = (?i)happysong\\.ru break:403 Forbidden\nroute-referer = (?i)hard\\-porn\\.mobi break:403 Forbidden\nroute-referer = (?i)hardcore\\.anzwers\\.net break:403 Forbidden\nroute-referer = (?i)hardosale\\.xyz break:403 Forbidden\nroute-referer = (?i)harpro\\.net break:403 Forbidden\nroute-referer = (?i)havepussy\\.com break:403 Forbidden\nroute-referer = (?i)hawaiisurf\\.com break:403 Forbidden\nroute-referer = (?i)hazardky\\.net break:403 Forbidden\nroute-referer = (?i)hd1080film\\.ru break:403 Forbidden\nroute-referer = (?i)hd720kino\\.ru break:403 Forbidden\nroute-referer = (?i)hdfreeporno\\.net break:403 Forbidden\nroute-referer = (?i)hdhc\\.site break:403 Forbidden\nroute-referer = (?i)hdmoviecamera\\.net break:403 Forbidden\nroute-referer = (?i)hdmoviecams\\.com break:403 Forbidden\nroute-referer = (?i)hdmoviecams\\.net break:403 Forbidden\nroute-referer = (?i)hdsmartvideoreg\\.ru break:403 Forbidden\nroute-referer = (?i)headpharmacy\\.com break:403 Forbidden\nroute-referer = (?i)healbio\\.ru break:403 Forbidden\nroute-referer = (?i)healgastro\\.com break:403 Forbidden\nroute-referer = (?i)healing\\-dysplasia\\.ru break:403 Forbidden\nroute-referer = (?i)healmytrauma\\.info break:403 Forbidden\nroute-referer = (?i)healthhacks\\.ru break:403 Forbidden\nroute-referer = (?i)heeha\\.net break:403 Forbidden\nroute-referer = (?i)hem\\.passagen\\.se break:403 Forbidden\nroute-referer = (?i)hentai\\-manga\\.porn break:403 Forbidden\nroute-referer = (?i)heroero\\.com break:403 Forbidden\nroute-referer = (?i)hexometer\\.com break:403 Forbidden\nroute-referer = (?i)hifidesign\\.ru break:403 Forbidden\nroute-referer = (?i)hilaryblog\\.top break:403 Forbidden\nroute-referer = (?i)hill\\-accent\\-withdraw\\-sentiment\\.info break:403 Forbidden\nroute-referer = (?i)himandmall\\.xyz break:403 Forbidden\nroute-referer = (?i)hit\\-kino\\.ru break:403 Forbidden\nroute-referer = (?i)hitree\\.shop break:403 Forbidden\nroute-referer = (?i)hitsbox\\.info break:403 Forbidden\nroute-referer = (?i)hiwibyh\\.bugs3\\.com break:403 Forbidden\nroute-referer = (?i)hiwpro\\.xyz break:403 Forbidden\nroute-referer = (?i)hkdiiohi\\.skyrock\\.com break:403 Forbidden\nroute-referer = (?i)hkjrsale\\.xyz break:403 Forbidden\nroute-referer = (?i)hmmm\\.cz break:403 Forbidden\nroute-referer = (?i)hmywwogw\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)hobild\\.net break:403 Forbidden\nroute-referer = (?i)hol\\.es break:403 Forbidden\nroute-referer = (?i)holiday\\-shop\\.ru break:403 Forbidden\nroute-referer = (?i)holidaypics\\.org break:403 Forbidden\nroute-referer = (?i)holistickenko\\.com break:403 Forbidden\nroute-referer = (?i)holodkovich\\.com break:403 Forbidden\nroute-referer = (?i)home\\.myplaycity\\.com break:403 Forbidden\nroute-referer = (?i)homeafrikalike\\.tk break:403 Forbidden\nroute-referer = (?i)homedo\\.fabpage\\.com break:403 Forbidden\nroute-referer = (?i)homeinns\\.com break:403 Forbidden\nroute-referer = (?i)homelygarden\\.com break:403 Forbidden\nroute-referer = (?i)homemade\\.gq break:403 Forbidden\nroute-referer = (?i)homemypicture\\.tk break:403 Forbidden\nroute-referer = (?i)honesty\\-homemade\\-grizzly\\-humanlike\\.com break:403 Forbidden\nroute-referer = (?i)hongfanji\\.com break:403 Forbidden\nroute-referer = (?i)hoporno\\.com break:403 Forbidden\nroute-referer = (?i)horoshieokna\\.com break:403 Forbidden\nroute-referer = (?i)host\\-protection\\.com break:403 Forbidden\nroute-referer = (?i)hostcritique\\.com break:403 Forbidden\nroute-referer = (?i)hoste\\.octopis\\.com break:403 Forbidden\nroute-referer = (?i)hostiman\\.ru break:403 Forbidden\nroute-referer = (?i)hosting\\-tracker\\.com break:403 Forbidden\nroute-referer = (?i)hostingclub\\.lk break:403 Forbidden\nroute-referer = (?i)hostsshop\\.ru break:403 Forbidden\nroute-referer = (?i)hotblognetwork\\.com break:403 Forbidden\nroute-referer = (?i)hotdl\\.in break:403 Forbidden\nroute-referer = (?i)hotspot\\.ipb\\.co\\.id break:403 Forbidden\nroute-referer = (?i)hottour\\.com break:403 Forbidden\nroute-referer = (?i)hotwatersdamps\\.com break:403 Forbidden\nroute-referer = (?i)houdom\\.net break:403 Forbidden\nroute-referer = (?i)housedesigning\\.ru break:403 Forbidden\nroute-referer = (?i)housediz\\.com break:403 Forbidden\nroute-referer = (?i)housekuba\\.org break:403 Forbidden\nroute-referer = (?i)housemilan\\.ru break:403 Forbidden\nroute-referer = (?i)houseofgaga\\.ru break:403 Forbidden\nroute-referer = (?i)houseofrose\\.com break:403 Forbidden\nroute-referer = (?i)houston\\-vikings\\.com break:403 Forbidden\nroute-referer = (?i)how\\-i\\-build\\-website\\.review break:403 Forbidden\nroute-referer = (?i)how\\-i\\-promote\\-website\\.review break:403 Forbidden\nroute-referer = (?i)how\\-to\\-buy\\-bitcoin\\.club break:403 Forbidden\nroute-referer = (?i)how\\-to\\-buy\\-bitcoin\\.stream break:403 Forbidden\nroute-referer = (?i)how\\-to\\-buy\\-bitcoins\\-cheap\\.party break:403 Forbidden\nroute-referer = (?i)how\\-to\\-buy\\-bitcoins\\-cheap\\.review break:403 Forbidden\nroute-referer = (?i)how\\-to\\-buy\\-bitcoins\\-cheap\\.stream break:403 Forbidden\nroute-referer = (?i)how\\-to\\-buy\\-bitcoins\\-cheap\\.trade break:403 Forbidden\nroute-referer = (?i)how\\-to\\-buy\\-bitcoins\\.stream break:403 Forbidden\nroute-referer = (?i)how\\-to\\-buy\\-bitcoins\\.trade break:403 Forbidden\nroute-referer = (?i)how\\-to\\-earn\\-quick\\-money\\.com break:403 Forbidden\nroute-referer = (?i)how\\-to\\-promote\\-website\\.faith break:403 Forbidden\nroute-referer = (?i)how\\-to\\-promote\\-website\\.review break:403 Forbidden\nroute-referer = (?i)howlongdoestizanidinestayinyoursystem\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)howmuchdoestizanidinecost\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)howopen\\.ru break:403 Forbidden\nroute-referer = (?i)howtostopreferralspam\\.com break:403 Forbidden\nroute-referer = (?i)howtostopreferralspam\\.eu break:403 Forbidden\nroute-referer = (?i)hoztorg\\-opt\\.ru break:403 Forbidden\nroute-referer = (?i)hplaserjetpdriver8y\\.pen\\.io break:403 Forbidden\nroute-referer = (?i)hptwaakw\\.blog\\.fc2\\.com break:403 Forbidden\nroute-referer = (?i)hrtonline\\.xyz break:403 Forbidden\nroute-referer = (?i)hscsscotland\\.com break:403 Forbidden\nroute-referer = (?i)hseipaa\\.kz break:403 Forbidden\nroute-referer = (?i)hsoutdoor\\.com break:403 Forbidden\nroute-referer = (?i)hspline\\.com break:403 Forbidden\nroute-referer = (?i)https\\-legalrc\\.biz break:403 Forbidden\nroute-referer = (?i)hugblog\\.xyz break:403 Forbidden\nroute-referer = (?i)huhn\\.altervista\\.org break:403 Forbidden\nroute-referer = (?i)hulfingtonpost\\.com break:403 Forbidden\nroute-referer = (?i)hully\\.altervista\\.org break:403 Forbidden\nroute-referer = (?i)humanorightswatch\\.org break:403 Forbidden\nroute-referer = (?i)hundejo\\.com break:403 Forbidden\nroute-referer = (?i)huntdown\\.info break:403 Forbidden\nroute-referer = (?i)husky\\-shop\\.cz break:403 Forbidden\nroute-referer = (?i)hustoon\\.over\\-blog\\.com break:403 Forbidden\nroute-referer = (?i)hvd\\-store\\.com break:403 Forbidden\nroute-referer = (?i)hydra\\-2019\\.ru break:403 Forbidden\nroute-referer = (?i)hydra\\-2020\\.online break:403 Forbidden\nroute-referer = (?i)hydra\\-2020\\.ru break:403 Forbidden\nroute-referer = (?i)hydra\\-centr\\.fun break:403 Forbidden\nroute-referer = (?i)hydra\\-dealer\\.com break:403 Forbidden\nroute-referer = (?i)hydra\\-guide\\.org break:403 Forbidden\nroute-referer = (?i)hydra\\-new\\.online break:403 Forbidden\nroute-referer = (?i)hydra\\-onion\\-faq\\.com break:403 Forbidden\nroute-referer = (?i)hydra\\-pc\\.com break:403 Forbidden\nroute-referer = (?i)hydra\\-shop\\.org break:403 Forbidden\nroute-referer = (?i)hydra\\-site\\.ru break:403 Forbidden\nroute-referer = (?i)hydra\\-slon\\.net break:403 Forbidden\nroute-referer = (?i)hydra\\-vhod2020\\.com break:403 Forbidden\nroute-referer = (?i)hydra\\-zerkalo20\\.com break:403 Forbidden\nroute-referer = (?i)hydra\\.online break:403 Forbidden\nroute-referer = (?i)hydra1717\\.com break:403 Forbidden\nroute-referer = (?i)hydra2\\.market break:403 Forbidden\nroute-referer = (?i)hydra2020\\.top break:403 Forbidden\nroute-referer = (?i)hydra2020gate\\.com break:403 Forbidden\nroute-referer = (?i)hydra2020market\\.com break:403 Forbidden\nroute-referer = (?i)hydra2020onion\\.com break:403 Forbidden\nroute-referer = (?i)hydra2020ru\\.com break:403 Forbidden\nroute-referer = (?i)hydra2020zerkala\\.com break:403 Forbidden\nroute-referer = (?i)hydra2020zerkalo\\.com break:403 Forbidden\nroute-referer = (?i)hydra20onion\\.com break:403 Forbidden\nroute-referer = (?i)hydra20online\\.com break:403 Forbidden\nroute-referer = (?i)hydra20original\\.com break:403 Forbidden\nroute-referer = (?i)hydra2use\\.com break:403 Forbidden\nroute-referer = (?i)hydra2zahod\\.com break:403 Forbidden\nroute-referer = (?i)hydraena\\.com break:403 Forbidden\nroute-referer = (?i)hydrahow\\.com break:403 Forbidden\nroute-referer = (?i)hydrahudra\\.com break:403 Forbidden\nroute-referer = (?i)hydraland\\.net break:403 Forbidden\nroute-referer = (?i)hydramarket2020\\.com break:403 Forbidden\nroute-referer = (?i)hydramirror2020\\.com break:403 Forbidden\nroute-referer = (?i)hydranten\\.net break:403 Forbidden\nroute-referer = (?i)hydraonion2019\\.net break:403 Forbidden\nroute-referer = (?i)hydrarusmarket\\.com break:403 Forbidden\nroute-referer = (?i)hydraruz\\-2020\\.com break:403 Forbidden\nroute-referer = (?i)hydraruzonion2020\\.com break:403 Forbidden\nroute-referer = (?i)hydraruzonionx\\.ru break:403 Forbidden\nroute-referer = (?i)hydraruzxpnew4af\\.com\\.co break:403 Forbidden\nroute-referer = (?i)hydraruzxpnew4af\\.ink break:403 Forbidden\nroute-referer = (?i)hydraruzxpnew4aff\\.ru break:403 Forbidden\nroute-referer = (?i)hydraruzxpwnew4afonion\\.com break:403 Forbidden\nroute-referer = (?i)hydraulicoilcooler\\.net break:403 Forbidden\nroute-referer = (?i)hydrauliczny\\.com break:403 Forbidden\nroute-referer = (?i)hydravizoficial\\.info break:403 Forbidden\nroute-referer = (?i)hydrazerkalo2019\\.net break:403 Forbidden\nroute-referer = (?i)hydrazerkalo2020\\.com break:403 Forbidden\nroute-referer = (?i)hydropump\\.su break:403 Forbidden\nroute-referer = (?i)hyip\\-zanoza\\.me break:403 Forbidden\nroute-referer = (?i)hyipmanager\\.in break:403 Forbidden\nroute-referer = (?i)i\\-spare\\.ru break:403 Forbidden\nroute-referer = (?i)ialgramer\\.shop break:403 Forbidden\nroute-referer = (?i)iamsport\\.org break:403 Forbidden\nroute-referer = (?i)ib\\-homecredit\\.ru break:403 Forbidden\nroute-referer = (?i)ib\\-rencredit\\.ru break:403 Forbidden\nroute-referer = (?i)iblogpress\\.xyz break:403 Forbidden\nroute-referer = (?i)iceton\\.net break:403 Forbidden\nroute-referer = (?i)ico\\.re break:403 Forbidden\nroute-referer = (?i)ictizanidinehcl4mg\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)idc\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)idealtits\\.net break:403 Forbidden\nroute-referer = (?i)ideayz\\.com break:403 Forbidden\nroute-referer = (?i)idegenvezeto\\.eu break:403 Forbidden\nroute-referer = (?i)ideibiznesa2015\\.ru break:403 Forbidden\nroute-referer = (?i)ieeeoutlet\\.xyz break:403 Forbidden\nroute-referer = (?i)ifirestarter\\.ru break:403 Forbidden\nroute-referer = (?i)ifmo\\.ru break:403 Forbidden\nroute-referer = (?i)igadgetsworld\\.com break:403 Forbidden\nroute-referer = (?i)igamingtop\\.com break:403 Forbidden\nroute-referer = (?i)igru\\-xbox\\.net break:403 Forbidden\nroute-referer = (?i)ilikevitaly\\.com break:403 Forbidden\nroute-referer = (?i)illagedusexe\\.com break:403 Forbidden\nroute-referer = (?i)ilmen\\.net break:403 Forbidden\nroute-referer = (?i)iloveitaly\\.ro break:403 Forbidden\nroute-referer = (?i)iloveitaly\\.ru break:403 Forbidden\nroute-referer = (?i)ilovevitaly\\.co break:403 Forbidden\nroute-referer = (?i)ilovevitaly\\.com break:403 Forbidden\nroute-referer = (?i)ilovevitaly\\.info break:403 Forbidden\nroute-referer = (?i)ilovevitaly\\.org break:403 Forbidden\nroute-referer = (?i)ilovevitaly\\.ro break:403 Forbidden\nroute-referer = (?i)ilovevitaly\\.ru break:403 Forbidden\nroute-referer = (?i)ilovevitaly\\.xyz break:403 Forbidden\nroute-referer = (?i)imediadesk\\.com break:403 Forbidden\nroute-referer = (?i)iminent\\.com break:403 Forbidden\nroute-referer = (?i)immigrational\\.info break:403 Forbidden\nroute-referer = (?i)immobiliaremassaro\\.com break:403 Forbidden\nroute-referer = (?i)immobilieralgerie\\.net break:403 Forbidden\nroute-referer = (?i)imperia31\\.ru break:403 Forbidden\nroute-referer = (?i)imperiafilm\\.ru break:403 Forbidden\nroute-referer = (?i)impotentik\\.com break:403 Forbidden\nroute-referer = (?i)impresagaia\\.it break:403 Forbidden\nroute-referer = (?i)in\\-mostbet\\.ru break:403 Forbidden\nroute-referer = (?i)in\\-sto\\.ru break:403 Forbidden\nroute-referer = (?i)inbabes\\.sexushost\\.com break:403 Forbidden\nroute-referer = (?i)inboxdollars\\.com break:403 Forbidden\nroute-referer = (?i)incanto\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)incitystroy\\.ru break:403 Forbidden\nroute-referer = (?i)incomekey\\.net break:403 Forbidden\nroute-referer = (?i)incoonline\\.xyz break:403 Forbidden\nroute-referer = (?i)increasewwwtraffic\\.info break:403 Forbidden\nroute-referer = (?i)indetiske\\.ya\\.ru break:403 Forbidden\nroute-referer = (?i)indo\\-export\\.ru break:403 Forbidden\nroute-referer = (?i)inet\\-shop\\.su break:403 Forbidden\nroute-referer = (?i)infazavr\\.ru break:403 Forbidden\nroute-referer = (?i)infektsii\\.com break:403 Forbidden\nroute-referer = (?i)infobabki\\.ru break:403 Forbidden\nroute-referer = (?i)infodocsportal\\.com break:403 Forbidden\nroute-referer = (?i)infogame\\.name break:403 Forbidden\nroute-referer = (?i)infokonkurs\\.ru break:403 Forbidden\nroute-referer = (?i)inform\\-ua\\.info break:403 Forbidden\nroute-referer = (?i)ingramreed\\.xyz break:403 Forbidden\nroute-referer = (?i)inmoll\\.com break:403 Forbidden\nroute-referer = (?i)innodgfdriverhm\\.aircus\\.com break:403 Forbidden\nroute-referer = (?i)insider\\.pro break:403 Forbidden\nroute-referer = (?i)installspartners\\.com break:403 Forbidden\nroute-referer = (?i)instasexyblog\\.com break:403 Forbidden\nroute-referer = (?i)insultu\\-net\\.ru break:403 Forbidden\nroute-referer = (?i)intelhdgraphicsgtdrive6w\\.metroblog\\.com break:403 Forbidden\nroute-referer = (?i)interferencer\\.ru break:403 Forbidden\nroute-referer = (?i)interfucks\\.net break:403 Forbidden\nroute-referer = (?i)intermesh\\.net break:403 Forbidden\nroute-referer = (?i)internet\\-apteka\\.ru break:403 Forbidden\nroute-referer = (?i)intex\\-air\\.ru break:403 Forbidden\nroute-referer = (?i)intimchats\\.ru break:403 Forbidden\nroute-referer = (?i)intimver\\.3dgayxxx\\.com break:403 Forbidden\nroute-referer = (?i)invest\\-pamm\\.ru break:403 Forbidden\nroute-referer = (?i)investingclub\\.ru break:403 Forbidden\nroute-referer = (?i)investpamm\\.ru break:403 Forbidden\nroute-referer = (?i)investsuccess\\.org break:403 Forbidden\nroute-referer = (?i)invivo\\.hu break:403 Forbidden\nroute-referer = (?i)inzn\\.ru break:403 Forbidden\nroute-referer = (?i)io9\\.com break:403 Forbidden\nroute-referer = (?i)ipod\\-app\\-reviews\\.com break:403 Forbidden\nroute-referer = (?i)ipostroika\\.ru break:403 Forbidden\nroute-referer = (?i)iqoption\\-bin\\.com break:403 Forbidden\nroute-referer = (?i)iqoption\\.com break:403 Forbidden\nroute-referer = (?i)iqoption\\.pro break:403 Forbidden\nroute-referer = (?i)iradiology\\.ru break:403 Forbidden\nroute-referer = (?i)iridsale\\.xyz break:403 Forbidden\nroute-referer = (?i)ishgetadsincome\\.info break:403 Forbidden\nroute-referer = (?i)isistaylorporn\\.info break:403 Forbidden\nroute-referer = (?i)iskalko\\.ru break:403 Forbidden\nroute-referer = (?i)iskussnica\\.ru break:403 Forbidden\nroute-referer = (?i)isotoner\\.com break:403 Forbidden\nroute-referer = (?i)ispaniya\\-costa\\-blanca\\.ru break:403 Forbidden\nroute-referer = (?i)istanbulit\\.com break:403 Forbidden\nroute-referer = (?i)istizanidineacontrolledsubstance\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)istizanidineanarcoticdrug\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)istizanidineanopiate\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)istizanidinelikexanax\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)istock\\-mebel\\.ru break:403 Forbidden\nroute-referer = (?i)it\\-max\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)it\\-worlds\\.com break:403 Forbidden\nroute-referer = (?i)itbc\\.kiev\\.ua break:403 Forbidden\nroute-referer = (?i)itrevolution\\.cf break:403 Forbidden\nroute-referer = (?i)itronics\\.ca break:403 Forbidden\nroute-referer = (?i)itsdp3\\.com break:403 Forbidden\nroute-referer = (?i)ivegetadsincome\\.info break:403 Forbidden\nroute-referer = (?i)iyfsearch\\.com break:403 Forbidden\nroute-referer = (?i)izamorfix\\.ru break:403 Forbidden\nroute-referer = (?i)izhevsk\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)izhevskjob\\.xyz break:403 Forbidden\nroute-referer = (?i)izhstrelok\\.ru break:403 Forbidden\nroute-referer = (?i)izi24\\.ru break:403 Forbidden\nroute-referer = (?i)j\\-times\\.ru break:403 Forbidden\nroute-referer = (?i)jabug\\.xyz break:403 Forbidden\nroute-referer = (?i)jacblog\\.xyz break:403 Forbidden\nroute-referer = (?i)jackonline\\.store break:403 Forbidden\nroute-referer = (?i)janemill\\.xyz break:403 Forbidden\nroute-referer = (?i)janettabridal\\.com break:403 Forbidden\nroute-referer = (?i)japfm\\.com break:403 Forbidden\nroute-referer = (?i)jasonpartington\\.com break:403 Forbidden\nroute-referer = (?i)jav\\-fetish\\.com break:403 Forbidden\nroute-referer = (?i)jav\\-fetish\\.site break:403 Forbidden\nroute-referer = (?i)jav\\-idol\\.com break:403 Forbidden\nroute-referer = (?i)javatex\\.co\\.id break:403 Forbidden\nroute-referer = (?i)javcoast\\.com break:403 Forbidden\nroute-referer = (?i)javlibrary\\.cc break:403 Forbidden\nroute-referer = (?i)jaxcube\\.info break:403 Forbidden\nroute-referer = (?i)jazzstyle4us\\.com break:403 Forbidden\nroute-referer = (?i)jeffbullas\\.xyz break:403 Forbidden\nroute-referer = (?i)jennyfire\\.ru break:403 Forbidden\nroute-referer = (?i)jikem\\.com break:403 Forbidden\nroute-referer = (?i)jintub\\.com break:403 Forbidden\nroute-referer = (?i)jjbabskoe\\.ru break:403 Forbidden\nroute-referer = (?i)job\\-opros\\.ru break:403 Forbidden\nroute-referer = (?i)job\\-prosto\\.ru break:403 Forbidden\nroute-referer = (?i)jobfree24\\.pl break:403 Forbidden\nroute-referer = (?i)jobgirl24\\.ru break:403 Forbidden\nroute-referer = (?i)jobius\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)johnnyhaley\\.top break:403 Forbidden\nroute-referer = (?i)joinandplay\\.me break:403 Forbidden\nroute-referer = (?i)joingames\\.org break:403 Forbidden\nroute-referer = (?i)josephineblog\\.top break:403 Forbidden\nroute-referer = (?i)journalhome\\.com break:403 Forbidden\nroute-referer = (?i)joyceblog\\.top break:403 Forbidden\nroute-referer = (?i)joycee\\.xyz break:403 Forbidden\nroute-referer = (?i)judyandsimon\\.com break:403 Forbidden\nroute-referer = (?i)juliadiets\\.com break:403 Forbidden\nroute-referer = (?i)juliaworld\\.net break:403 Forbidden\nroute-referer = (?i)jumkite\\.com break:403 Forbidden\nroute-referer = (?i)justkillingti\\.me break:403 Forbidden\nroute-referer = (?i)justprofit\\.xyz break:403 Forbidden\nroute-referer = (?i)jweber\\.ru break:403 Forbidden\nroute-referer = (?i)jwss\\.cc break:403 Forbidden\nroute-referer = (?i)jyrxd\\.com break:403 Forbidden\nroute-referer = (?i)kaac\\.ru break:403 Forbidden\nroute-referer = (?i)kabbalah\\-red\\-bracelets\\.com break:403 Forbidden\nroute-referer = (?i)kabinet\\-5ka\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-alfaclick\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-binbank\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-card\\-5ka\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-click\\-alfabank\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-esia\\-gosuslugi\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-faberlic\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-gosuslugi\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-ipoteka\\-domclick\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-karta\\-5ka\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-lk\\-megafon\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-lk\\-rt\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-login\\-mts\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-mil\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-mos\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-my\\-beeline\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-my\\-pochtabank\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-nalog\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-online\\-bm\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-online\\-open\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-online\\-rsb\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-online\\-rshb\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-online\\-sberbank\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-online\\-sovcombank\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-online\\-vtb\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-pfr\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-pfrf\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-platon\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-qiwi\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-tele2\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-tinkoff\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-tricolor\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-ttk\\.ru break:403 Forbidden\nroute-referer = (?i)kabinet\\-vtb24\\.ru break:403 Forbidden\nroute-referer = (?i)kaircm\\.shop break:403 Forbidden\nroute-referer = (?i)kakablog\\.net break:403 Forbidden\nroute-referer = (?i)kakadu\\-interior\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)kakworldoftanks\\.ru break:403 Forbidden\nroute-referer = (?i)kalb\\.ru break:403 Forbidden\nroute-referer = (?i)kambasoft\\.com break:403 Forbidden\nroute-referer = (?i)kamin\\-sam\\.ru break:403 Forbidden\nroute-referer = (?i)kamorel\\.com break:403 Forbidden\nroute-referer = (?i)kanakox\\.com break:403 Forbidden\nroute-referer = (?i)karachev\\-city\\.ru break:403 Forbidden\nroute-referer = (?i)karadene\\.com break:403 Forbidden\nroute-referer = (?i)karapuz\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)karusel\\-market\\.ru break:403 Forbidden\nroute-referer = (?i)katjimej\\.blog\\.fc2\\.com break:403 Forbidden\nroute-referer = (?i)katrd\\.xyz break:403 Forbidden\nroute-referer = (?i)katushka\\.net break:403 Forbidden\nroute-referer = (?i)kaz\\.kz break:403 Forbidden\nroute-referer = (?i)kazan\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)kazka\\.ru break:403 Forbidden\nroute-referer = (?i)kazlenta\\.kz break:403 Forbidden\nroute-referer = (?i)kazrent\\.com break:403 Forbidden\nroute-referer = (?i)kellyonline\\.xyz break:403 Forbidden\nroute-referer = (?i)kendrablog\\.online break:403 Forbidden\nroute-referer = (?i)kenyagoods\\.xyz break:403 Forbidden\nroute-referer = (?i)kerch\\.site break:403 Forbidden\nroute-referer = (?i)ketrzyn\\.pl break:403 Forbidden\nroute-referer = (?i)kevblog\\.top break:403 Forbidden\nroute-referer = (?i)kevinsnow\\.online break:403 Forbidden\nroute-referer = (?i)kexihao\\.xyz break:403 Forbidden\nroute-referer = (?i)keywords\\-monitoring\\-success\\.com break:403 Forbidden\nroute-referer = (?i)keywords\\-monitoring\\-your\\-success\\.com break:403 Forbidden\nroute-referer = (?i)kharkov\\.ua break:403 Forbidden\nroute-referer = (?i)kharlov\\.ua break:403 Forbidden\nroute-referer = (?i)kidd\\.reunionwatch\\.com break:403 Forbidden\nroute-referer = (?i)kierowca\\-praca\\.pl break:403 Forbidden\nroute-referer = (?i)kiev\\.ua break:403 Forbidden\nroute-referer = (?i)kimblog\\.top break:403 Forbidden\nroute-referer = (?i)kinnarimasajes\\.com break:403 Forbidden\nroute-referer = (?i)kino\\-filmi\\.com break:403 Forbidden\nroute-referer = (?i)kino\\-fun\\.ru break:403 Forbidden\nroute-referer = (?i)kino\\-key\\.info break:403 Forbidden\nroute-referer = (?i)kino2018\\.cc break:403 Forbidden\nroute-referer = (?i)kinobaks\\.com break:403 Forbidden\nroute-referer = (?i)kinobum\\.org break:403 Forbidden\nroute-referer = (?i)kinoflux\\.net break:403 Forbidden\nroute-referer = (?i)kinohit1\\.ru break:403 Forbidden\nroute-referer = (?i)kinopolet\\.net break:403 Forbidden\nroute-referer = (?i)kinosed\\.net break:403 Forbidden\nroute-referer = (?i)kinostar\\.online break:403 Forbidden\nroute-referer = (?i)kinotorka\\.ru break:403 Forbidden\nroute-referer = (?i)kiprinform\\.com break:403 Forbidden\nroute-referer = (?i)kiwe\\-analytics\\.com break:403 Forbidden\nroute-referer = (?i)kiwi237au\\.tk break:403 Forbidden\nroute-referer = (?i)kiyany\\-za\\-spravedluvist\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)kletkimehan\\.ru break:403 Forbidden\nroute-referer = (?i)klfd\\.net break:403 Forbidden\nroute-referer = (?i)kndxbkdx\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)knigonosha\\.net break:403 Forbidden\nroute-referer = (?i)kochanelli\\.com break:403 Forbidden\nroute-referer = (?i)kolcasale\\.xyz break:403 Forbidden\nroute-referer = (?i)koleso24\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)kollekcioner\\.ru break:403 Forbidden\nroute-referer = (?i)kolotiloff\\.ru break:403 Forbidden\nroute-referer = (?i)komp\\-pomosch\\.ru break:403 Forbidden\nroute-referer = (?i)komputernaya\\-pomosh\\-moscow\\.ru break:403 Forbidden\nroute-referer = (?i)komputers\\-best\\.ru break:403 Forbidden\nroute-referer = (?i)komukc\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)kongoultry\\.net break:403 Forbidden\nroute-referer = (?i)konkursov\\.net break:403 Forbidden\nroute-referer = (?i)koopilka\\.com break:403 Forbidden\nroute-referer = (?i)koptims\\.tiu\\.ru break:403 Forbidden\nroute-referer = (?i)koronirealestate\\.gr break:403 Forbidden\nroute-referer = (?i)kosova\\.de break:403 Forbidden\nroute-referer = (?i)kosunnyclub\\.com break:403 Forbidden\nroute-referer = (?i)kotaku\\.com break:403 Forbidden\nroute-referer = (?i)kozhakoshek\\.com break:403 Forbidden\nroute-referer = (?i)kozhasobak\\.com break:403 Forbidden\nroute-referer = (?i)kozhniebolezni\\.com break:403 Forbidden\nroute-referer = (?i)kpcconline\\.xyz break:403 Forbidden\nroute-referer = (?i)krafte\\.ru break:403 Forbidden\nroute-referer = (?i)krasivoe\\-hd\\.com break:403 Forbidden\nroute-referer = (?i)krasivoe\\-hd\\.net break:403 Forbidden\nroute-referer = (?i)krasnodar\\-avtolombard\\.ru break:403 Forbidden\nroute-referer = (?i)krasnodar\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)krasota\\-zdorovie\\.pw break:403 Forbidden\nroute-referer = (?i)krasota\\.ru break:403 Forbidden\nroute-referer = (?i)kredutu\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)kredytbank\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)kruiz\\-sochi\\.ru break:403 Forbidden\nroute-referer = (?i)krumble\\-adsde\\.info break:403 Forbidden\nroute-referer = (?i)krumble\\-adsen\\.info break:403 Forbidden\nroute-referer = (?i)krumble\\-adsic\\.info break:403 Forbidden\nroute-referer = (?i)krumbleent\\-ads\\.info break:403 Forbidden\nroute-referer = (?i)krynica\\.info break:403 Forbidden\nroute-referer = (?i)ktotut\\.net break:403 Forbidden\nroute-referer = (?i)kumuk\\.info break:403 Forbidden\nroute-referer = (?i)kupit\\-adenu\\.ru break:403 Forbidden\nroute-referer = (?i)kursy\\-ege\\.ru break:403 Forbidden\nroute-referer = (?i)kustanay\\.kz break:403 Forbidden\nroute-referer = (?i)kvartir\\-remont\\.biz break:403 Forbidden\nroute-referer = (?i)kvartira\\-sutochno\\.com break:403 Forbidden\nroute-referer = (?i)kvartiry\\-remont\\.ucoz\\.ru break:403 Forbidden\nroute-referer = (?i)kw21\\.org break:403 Forbidden\nroute-referer = (?i)l2soft\\.eu break:403 Forbidden\nroute-referer = (?i)la\\-fa\\.ru break:403 Forbidden\nroute-referer = (?i)labguamec\\.online break:403 Forbidden\nroute-referer = (?i)labplus\\.ru break:403 Forbidden\nroute-referer = (?i)labvis\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)ladov\\.ru break:403 Forbidden\nroute-referer = (?i)lafppshop\\.xyz break:403 Forbidden\nroute-referer = (?i)laitrcus\\.online break:403 Forbidden\nroute-referer = (?i)lakiikraski\\.ru break:403 Forbidden\nroute-referer = (?i)lalalove\\.ru break:403 Forbidden\nroute-referer = (?i)lambreshop\\.xyz break:403 Forbidden\nroute-referer = (?i)laminat\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)lampokrat\\.ws break:403 Forbidden\nroute-referer = (?i)lanasshop\\.ru break:403 Forbidden\nroute-referer = (?i)landliver\\.org break:403 Forbidden\nroute-referer = (?i)landoftracking\\.com break:403 Forbidden\nroute-referer = (?i)languagecode\\.com break:403 Forbidden\nroute-referer = (?i)lankarns\\.com break:403 Forbidden\nroute-referer = (?i)laparfumotec\\.com break:403 Forbidden\nroute-referer = (?i)lapitec\\.eu break:403 Forbidden\nroute-referer = (?i)laptop\\-4\\-less\\.com break:403 Forbidden\nroute-referer = (?i)laptoper\\.net break:403 Forbidden\nroute-referer = (?i)larchik\\.net break:403 Forbidden\nroute-referer = (?i)larutti\\.ru break:403 Forbidden\nroute-referer = (?i)laudit\\.ru break:403 Forbidden\nroute-referer = (?i)law\\-check\\-eight\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-check\\-nine\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-check\\-seven\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-check\\-two\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-aa\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-bb\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-bot\\-aa\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-bot\\-bb\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-bot\\-cc\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-bot\\-dd\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-bot\\-ee\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-bot\\-ff\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-bot\\-hh\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-bot\\-ii\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-cc\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-check\\-eight\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-check\\-five\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-check\\-four\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-check\\-nine\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-check\\-one\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-check\\-six\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-check\\-three\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-check\\-two\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-dd\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-ee\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-eight\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-ff\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-five\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-four\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-gg\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-hh\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-one\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-seven\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-three\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-enforcement\\-two\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-five\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-four\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-one\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-six\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-three\\.xyz break:403 Forbidden\nroute-referer = (?i)law\\-two\\.xyz break:403 Forbidden\nroute-referer = (?i)lawrenceblog\\.online break:403 Forbidden\nroute-referer = (?i)laxdrills\\.com break:403 Forbidden\nroute-referer = (?i)layola\\.biz\\.tc break:403 Forbidden\nroute-referer = (?i)lazy\\-z\\.com break:403 Forbidden\nroute-referer = (?i)lcecshop\\.xyz break:403 Forbidden\nroute-referer = (?i)leadwayau\\.com break:403 Forbidden\nroute-referer = (?i)leboard\\.ru break:403 Forbidden\nroute-referer = (?i)lebowmall\\.xyz break:403 Forbidden\nroute-referer = (?i)ledalfa\\.by break:403 Forbidden\nroute-referer = (?i)leddjc\\.net break:403 Forbidden\nroute-referer = (?i)ledis\\.top break:403 Forbidden\nroute-referer = (?i)ledpolice\\.ru break:403 Forbidden\nroute-referer = (?i)ledx\\.by break:403 Forbidden\nroute-referer = (?i)leeboyrussia\\.com break:403 Forbidden\nroute-referer = (?i)legalrc\\.biz break:403 Forbidden\nroute-referer = (?i)lego4x4\\.ru break:403 Forbidden\nroute-referer = (?i)lenvred\\.org break:403 Forbidden\nroute-referer = (?i)leon\\-official\\.site break:403 Forbidden\nroute-referer = (?i)lernur\\.net break:403 Forbidden\nroute-referer = (?i)lerporn\\.info break:403 Forbidden\nroute-referer = (?i)leto\\-dacha\\.ru break:403 Forbidden\nroute-referer = (?i)letolove\\.ru break:403 Forbidden\nroute-referer = (?i)letsgotofriday\\.com break:403 Forbidden\nroute-referer = (?i)levaquin750mg\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)lezbiyanki\\.net break:403 Forbidden\nroute-referer = (?i)lflash\\.ru break:403 Forbidden\nroute-referer = (?i)li\\-er\\.ru break:403 Forbidden\nroute-referer = (?i)lida\\-ru\\.com break:403 Forbidden\nroute-referer = (?i)lider82\\.ru break:403 Forbidden\nroute-referer = (?i)life\\.biz\\.ua break:403 Forbidden\nroute-referer = (?i)lifebyleese\\.com break:403 Forbidden\nroute-referer = (?i)lifespeaker\\.ru break:403 Forbidden\nroute-referer = (?i)ligastavok\\-in\\.ru break:403 Forbidden\nroute-referer = (?i)light\\.ifmo\\.ru break:403 Forbidden\nroute-referer = (?i)lighthearteds\\.shop break:403 Forbidden\nroute-referer = (?i)likesdesign\\.com break:403 Forbidden\nroute-referer = (?i)lilishopstogether\\.com break:403 Forbidden\nroute-referer = (?i)lindsayblog\\.online break:403 Forbidden\nroute-referer = (?i)linerdrilling\\.com break:403 Forbidden\nroute-referer = (?i)link\\.web\\-list\\.xyz break:403 Forbidden\nroute-referer = (?i)lipidofobia\\.com\\.br break:403 Forbidden\nroute-referer = (?i)liquimondo\\.com break:403 Forbidden\nroute-referer = (?i)lirunet\\.ru break:403 Forbidden\nroute-referer = (?i)lisque\\.batcave\\.net break:403 Forbidden\nroute-referer = (?i)littleberry\\.ru break:403 Forbidden\nroute-referer = (?i)live\\-sexchat\\.ru break:403 Forbidden\nroute-referer = (?i)live\\-xbet\\.com break:403 Forbidden\nroute-referer = (?i)livefixer\\.com break:403 Forbidden\nroute-referer = (?i)liveinternet\\.ro break:403 Forbidden\nroute-referer = (?i)liveinternet\\.ru break:403 Forbidden\nroute-referer = (?i)livejournal\\.top break:403 Forbidden\nroute-referer = (?i)livia\\-pache\\.ru break:403 Forbidden\nroute-referer = (?i)livingroomdecoratingideas\\.website break:403 Forbidden\nroute-referer = (?i)livingsimply\\.com break:403 Forbidden\nroute-referer = (?i)lk\\-gosuslugi\\.ru break:403 Forbidden\nroute-referer = (?i)lk\\-lk\\-rt\\.ru break:403 Forbidden\nroute-referer = (?i)llastbuy\\.ru break:403 Forbidden\nroute-referer = (?i)lmrauction\\.com break:403 Forbidden\nroute-referer = (?i)loadopia\\.com break:403 Forbidden\nroute-referer = (?i)local\\-seo\\-for\\-multiple\\-locations\\.com break:403 Forbidden\nroute-referer = (?i)login\\-tinkoff\\.ru break:403 Forbidden\nroute-referer = (?i)loginduepunti\\.it break:403 Forbidden\nroute-referer = (?i)logo\\-all\\.ru break:403 Forbidden\nroute-referer = (?i)lol\\-smurfs\\.com break:403 Forbidden\nroute-referer = (?i)lolz\\.guru break:403 Forbidden\nroute-referer = (?i)lolzteam\\.online break:403 Forbidden\nroute-referer = (?i)lolzteam\\.org break:403 Forbidden\nroute-referer = (?i)lomb\\.co break:403 Forbidden\nroute-referer = (?i)lombardfinder\\.ru break:403 Forbidden\nroute-referer = (?i)lombia\\.co break:403 Forbidden\nroute-referer = (?i)lombia\\.com break:403 Forbidden\nroute-referer = (?i)lomza\\.info break:403 Forbidden\nroute-referer = (?i)londonstratford\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)lookover\\.ru break:403 Forbidden\nroute-referer = (?i)lost\\-alpha\\.ru break:403 Forbidden\nroute-referer = (?i)lotoflotto\\.ru break:403 Forbidden\nroute-referer = (?i)loveorganic\\.ch break:403 Forbidden\nroute-referer = (?i)low\\-format\\.ru break:403 Forbidden\nroute-referer = (?i)lowpricesiterx\\.com break:403 Forbidden\nroute-referer = (?i)lsex\\.xyz break:403 Forbidden\nroute-referer = (?i)lsitenonrepeat\\.com break:403 Forbidden\nroute-referer = (?i)luckybull\\.io break:403 Forbidden\nroute-referer = (?i)luckyshop\\.net\\.ua break:403 Forbidden\nroute-referer = (?i)lukoilcard\\.ru break:403 Forbidden\nroute-referer = (?i)lumb\\.co break:403 Forbidden\nroute-referer = (?i)lutherstable\\.org break:403 Forbidden\nroute-referer = (?i)luton\\-invest\\.ru break:403 Forbidden\nroute-referer = (?i)luxmagazine\\.cf break:403 Forbidden\nroute-referer = (?i)luxup\\.ru break:403 Forbidden\nroute-referer = (?i)luxurybet\\.ru break:403 Forbidden\nroute-referer = (?i)m\\-google\\.xyz break:403 Forbidden\nroute-referer = (?i)m\\.ok\\.ru break:403 Forbidden\nroute-referer = (?i)m1media\\.net break:403 Forbidden\nroute-referer = (?i)macresource\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)madisonclothingny\\.com break:403 Forbidden\nroute-referer = (?i)madjonline\\.xyz break:403 Forbidden\nroute-referer = (?i)madot\\.onlinewebshop\\.net break:403 Forbidden\nroute-referer = (?i)mafcards\\.ru break:403 Forbidden\nroute-referer = (?i)magazintiande\\.ru break:403 Forbidden\nroute-referer = (?i)magda\\-gadalka\\.ru break:403 Forbidden\nroute-referer = (?i)magento\\-crew\\.net break:403 Forbidden\nroute-referer = (?i)magicart\\.store break:403 Forbidden\nroute-referer = (?i)magicdiet\\.gq break:403 Forbidden\nroute-referer = (?i)magnetic\\-bracelets\\.ru break:403 Forbidden\nroute-referer = (?i)maigralr\\.site break:403 Forbidden\nroute-referer = (?i)mail\\.allnews24\\.in break:403 Forbidden\nroute-referer = (?i)mainhunter\\.com break:403 Forbidden\nroute-referer = (?i)mainlinehobby\\.net break:403 Forbidden\nroute-referer = (?i)make\\-money\\-online\\.com break:403 Forbidden\nroute-referer = (?i)makedo\\.ru break:403 Forbidden\nroute-referer = (?i)makemoneyonline\\.com break:403 Forbidden\nroute-referer = (?i)makeprogress\\.ga break:403 Forbidden\nroute-referer = (?i)makler\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)maladot\\.com break:403 Forbidden\nroute-referer = (?i)malbgoods\\.xyz break:403 Forbidden\nroute-referer = (?i)malls\\.com break:403 Forbidden\nroute-referer = (?i)maltadailypost\\.com break:403 Forbidden\nroute-referer = (?i)mamidushop\\.xyz break:403 Forbidden\nroute-referer = (?i)mamylik\\.ru break:403 Forbidden\nroute-referer = (?i)manimpotence\\.com break:403 Forbidden\nroute-referer = (?i)manipulyator\\-peterburg\\.ru break:403 Forbidden\nroute-referer = (?i)manonstore\\.xyz break:403 Forbidden\nroute-referer = (?i)manualterap\\.roleforum\\.ru break:403 Forbidden\nroute-referer = (?i)manwang\\.net break:403 Forbidden\nroute-referer = (?i)maofengjx\\.com break:403 Forbidden\nroute-referer = (?i)marathonbet\\-in\\.ru break:403 Forbidden\nroute-referer = (?i)marblestyle\\.ru break:403 Forbidden\nroute-referer = (?i)marcogrup\\.com break:403 Forbidden\nroute-referer = (?i)maridan\\.com\\.au break:403 Forbidden\nroute-referer = (?i)maridan\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)marihome\\.online break:403 Forbidden\nroute-referer = (?i)marinetraffic\\.com break:403 Forbidden\nroute-referer = (?i)marjorieblog\\.online break:403 Forbidden\nroute-referer = (?i)marketland\\.ml break:403 Forbidden\nroute-referer = (?i)marktforschung\\-stuttgart\\.com break:403 Forbidden\nroute-referer = (?i)marmitaco\\.cat break:403 Forbidden\nroute-referer = (?i)martinahome\\.xyz break:403 Forbidden\nroute-referer = (?i)martlinker\\.com break:403 Forbidden\nroute-referer = (?i)massage\\-info\\.nl break:403 Forbidden\nroute-referer = (?i)masserect\\.com break:403 Forbidden\nroute-referer = (?i)master\\-muznachas\\.ru break:403 Forbidden\nroute-referer = (?i)masterseek\\.com break:403 Forbidden\nroute-referer = (?i)mastershef\\.club break:403 Forbidden\nroute-referer = (?i)masturbate\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)mathoutlet\\.xyz break:403 Forbidden\nroute-referer = (?i)matomete\\.net break:403 Forbidden\nroute-referer = (?i)matras\\.space break:403 Forbidden\nroute-referer = (?i)mattgibson\\.us break:403 Forbidden\nroute-referer = (?i)mature\\.free\\-websites\\.com break:403 Forbidden\nroute-referer = (?i)max\\-apprais\\.com break:403 Forbidden\nroute-referer = (?i)maximilitary\\.ru break:403 Forbidden\nroute-referer = (?i)maxinesamson\\.top break:403 Forbidden\nroute-referer = (?i)maxthon\\.com break:403 Forbidden\nroute-referer = (?i)maxxximoda\\.ru break:403 Forbidden\nroute-referer = (?i)mazda\\-roadsters\\.com break:403 Forbidden\nroute-referer = (?i)mbiologi\\.ru break:403 Forbidden\nroute-referer = (?i)mebel\\-alait\\.ru break:403 Forbidden\nroute-referer = (?i)mebel\\-arts\\.com break:403 Forbidden\nroute-referer = (?i)mebel\\-ekb\\.com break:403 Forbidden\nroute-referer = (?i)mebel\\-iz\\-dereva\\.kiev\\.ua break:403 Forbidden\nroute-referer = (?i)mebelcomplekt\\.ru break:403 Forbidden\nroute-referer = (?i)mebeldekor\\.com\\.au break:403 Forbidden\nroute-referer = (?i)mebeldekor\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)meblieco\\.com break:403 Forbidden\nroute-referer = (?i)med\\-dopomoga\\.com break:403 Forbidden\nroute-referer = (?i)med\\-recept\\.ru break:403 Forbidden\nroute-referer = (?i)med\\-zdorovie\\.com\\.au break:403 Forbidden\nroute-referer = (?i)med\\-zdorovie\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)medanestesia\\.ru break:403 Forbidden\nroute-referer = (?i)medbrowse\\.info break:403 Forbidden\nroute-referer = (?i)medcor\\-list\\.ru break:403 Forbidden\nroute-referer = (?i)medi\\-fitt\\.hu break:403 Forbidden\nroute-referer = (?i)medic\\-al\\.ru break:403 Forbidden\nroute-referer = (?i)medicaltranslate\\.ru break:403 Forbidden\nroute-referer = (?i)medicinacom\\.ru break:403 Forbidden\nroute-referer = (?i)medicineseasybuy\\.com break:403 Forbidden\nroute-referer = (?i)medicovi\\.com break:403 Forbidden\nroute-referer = (?i)medictube\\.ru break:403 Forbidden\nroute-referer = (?i)medispainstitute\\.com\\.au break:403 Forbidden\nroute-referer = (?i)medkletki\\.ru break:403 Forbidden\nroute-referer = (?i)medkritika\\.ru break:403 Forbidden\nroute-referer = (?i)medmajor\\.ru break:403 Forbidden\nroute-referer = (?i)medosmotr\\-ufa\\.ru break:403 Forbidden\nroute-referer = (?i)meds\\-online24\\.com break:403 Forbidden\nroute-referer = (?i)medtherapy\\.ru break:403 Forbidden\nroute-referer = (?i)meduza\\-consult\\.ru break:403 Forbidden\nroute-referer = (?i)meendo\\-free\\-traffic\\.ga break:403 Forbidden\nroute-referer = (?i)megaapteka\\.ru break:403 Forbidden\nroute-referer = (?i)megakino\\.net break:403 Forbidden\nroute-referer = (?i)megalit\\-d\\.ru break:403 Forbidden\nroute-referer = (?i)megapolis\\-96\\.ru break:403 Forbidden\nroute-referer = (?i)megatkani\\.ru break:403 Forbidden\nroute-referer = (?i)megavolt\\.net\\.ua break:403 Forbidden\nroute-referer = (?i)melbet\\-in\\.ru break:403 Forbidden\nroute-referer = (?i)melissahome\\.top break:403 Forbidden\nroute-referer = (?i)members\\.ghanaweb\\.com break:403 Forbidden\nroute-referer = (?i)memovn\\.com break:403 Forbidden\nroute-referer = (?i)menhealed\\.net break:403 Forbidden\nroute-referer = (?i)mercanmall\\.xyz break:403 Forbidden\nroute-referer = (?i)mere\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)mericanmopedstore\\.com break:403 Forbidden\nroute-referer = (?i)meriton\\.ru break:403 Forbidden\nroute-referer = (?i)meroyharte\\.top break:403 Forbidden\nroute-referer = (?i)mesto\\-x\\.com break:403 Forbidden\nroute-referer = (?i)metallo\\-konstruktsii\\.ru break:403 Forbidden\nroute-referer = (?i)metallosajding\\.ru break:403 Forbidden\nroute-referer = (?i)metarip\\.ru break:403 Forbidden\nroute-referer = (?i)metaxalonevstizanidine\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)meteocast\\.net break:403 Forbidden\nroute-referer = (?i)meuikcr\\.online break:403 Forbidden\nroute-referer = (?i)mex\\-annushka\\.ru break:403 Forbidden\nroute-referer = (?i)mhp\\.su break:403 Forbidden\nroute-referer = (?i)mhrdmall\\.xyz break:403 Forbidden\nroute-referer = (?i)miaxxx\\.com break:403 Forbidden\nroute-referer = (?i)micasainvest\\.com break:403 Forbidden\nroute-referer = (?i)michellblog\\.online break:403 Forbidden\nroute-referer = (?i)microsearch\\.ru break:403 Forbidden\nroute-referer = (?i)microsoftportal\\.net break:403 Forbidden\nroute-referer = (?i)midnight\\.im break:403 Forbidden\nroute-referer = (?i)mielec\\.pl break:403 Forbidden\nroute-referer = (?i)mifepriston\\.net break:403 Forbidden\nroute-referer = (?i)migente\\.com break:403 Forbidden\nroute-referer = (?i)migera\\.net break:403 Forbidden\nroute-referer = (?i)migronis\\.com break:403 Forbidden\nroute-referer = (?i)mikozstop\\.com break:403 Forbidden\nroute-referer = (?i)mikrobiologies\\.ru break:403 Forbidden\nroute-referer = (?i)mikrocement\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)mikrozaim\\.site break:403 Forbidden\nroute-referer = (?i)mikrozaym2you\\.ru break:403 Forbidden\nroute-referer = (?i)minecraft\\-neo\\.ru break:403 Forbidden\nroute-referer = (?i)minecraft\\-rus\\.org break:403 Forbidden\nroute-referer = (?i)minegam\\.com break:403 Forbidden\nroute-referer = (?i)minghaimuyuan\\.net break:403 Forbidden\nroute-referer = (?i)mini\\.7zap\\.com break:403 Forbidden\nroute-referer = (?i)miningblack\\.net break:403 Forbidden\nroute-referer = (?i)minyetki\\.ru break:403 Forbidden\nroute-referer = (?i)mir\\-betting\\.ru break:403 Forbidden\nroute-referer = (?i)mir\\-business\\-24\\.ru break:403 Forbidden\nroute-referer = (?i)mir\\-limuzinov\\.ru break:403 Forbidden\nroute-referer = (?i)mirfairytale\\.ru break:403 Forbidden\nroute-referer = (?i)mirmedinfo\\.ru break:403 Forbidden\nroute-referer = (?i)mirobuvi\\.com\\.au break:403 Forbidden\nroute-referer = (?i)mirobuvi\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)mirtorrent\\.net break:403 Forbidden\nroute-referer = (?i)mirzonru\\.net break:403 Forbidden\nroute-referer = (?i)misselle\\.ru break:403 Forbidden\nroute-referer = (?i)mister\\-shop\\.com break:403 Forbidden\nroute-referer = (?i)mitrasound\\.ru break:403 Forbidden\nroute-referer = (?i)mixed\\-wrestling\\.ru break:403 Forbidden\nroute-referer = (?i)mksoap\\.ru break:403 Forbidden\nroute-referer = (?i)mksport\\.ru break:403 Forbidden\nroute-referer = (?i)mmdoors\\.ru break:403 Forbidden\nroute-referer = (?i)mmm\\.lc break:403 Forbidden\nroute-referer = (?i)mmm\\.sb break:403 Forbidden\nroute-referer = (?i)mmog\\-play\\.ru break:403 Forbidden\nroute-referer = (?i)mmoguider\\.ru break:403 Forbidden\nroute-referer = (?i)mnogabukaff\\.net break:403 Forbidden\nroute-referer = (?i)mobicover\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)mobile\\.ok\\.ru break:403 Forbidden\nroute-referer = (?i)mobilemedia\\.md break:403 Forbidden\nroute-referer = (?i)mobisport\\.ru break:403 Forbidden\nroute-referer = (?i)mobot\\.site break:403 Forbidden\nroute-referer = (?i)mobplayer\\.net break:403 Forbidden\nroute-referer = (?i)mobplayer\\.ru break:403 Forbidden\nroute-referer = (?i)mockupui\\.com break:403 Forbidden\nroute-referer = (?i)modabutik\\.ru break:403 Forbidden\nroute-referer = (?i)modforwot\\.ru break:403 Forbidden\nroute-referer = (?i)modnie\\-futbolki\\.net break:403 Forbidden\nroute-referer = (?i)moe1\\.ru break:403 Forbidden\nroute-referer = (?i)moesonce\\.com break:403 Forbidden\nroute-referer = (?i)moi\\-glazki\\.ru break:403 Forbidden\nroute-referer = (?i)moinozhki\\.com break:403 Forbidden\nroute-referer = (?i)moiragracie\\.top break:403 Forbidden\nroute-referer = (?i)moisadogorod\\.ru break:403 Forbidden\nroute-referer = (?i)mokrayakiska\\.com break:403 Forbidden\nroute-referer = (?i)mole\\.pluto\\.ro break:403 Forbidden\nroute-referer = (?i)monarhs\\.info break:403 Forbidden\nroute-referer = (?i)monetizationking\\.net break:403 Forbidden\nroute-referer = (?i)money\\-every\\-day\\.com break:403 Forbidden\nroute-referer = (?i)money\\-for\\-placing\\-articles\\.com break:403 Forbidden\nroute-referer = (?i)money7777\\.info break:403 Forbidden\nroute-referer = (?i)moneymaster\\.ru break:403 Forbidden\nroute-referer = (?i)moneytop\\.ru break:403 Forbidden\nroute-referer = (?i)moneyzzz\\.ru break:403 Forbidden\nroute-referer = (?i)monicablog\\.xyz break:403 Forbidden\nroute-referer = (?i)monitorwebsitespeed\\.com break:403 Forbidden\nroute-referer = (?i)moomi\\-daeri\\.com break:403 Forbidden\nroute-referer = (?i)moon\\.market break:403 Forbidden\nroute-referer = (?i)moonci\\.ru break:403 Forbidden\nroute-referer = (?i)more\\-letom\\.ru break:403 Forbidden\nroute-referer = (?i)morf\\.snn\\.gr break:403 Forbidden\nroute-referer = (?i)morlat\\.altervista\\.org break:403 Forbidden\nroute-referer = (?i)moroccosurfadventures\\.com break:403 Forbidden\nroute-referer = (?i)moscow\\-clining\\.ru break:403 Forbidden\nroute-referer = (?i)moscow\\-region\\.ru break:403 Forbidden\nroute-referer = (?i)moscow\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)mosdverka\\.ru break:403 Forbidden\nroute-referer = (?i)mosputana\\.info break:403 Forbidden\nroute-referer = (?i)mosputana\\.top break:403 Forbidden\nroute-referer = (?i)mosrif\\.ru break:403 Forbidden\nroute-referer = (?i)mossiemckenzie\\.shop break:403 Forbidden\nroute-referer = (?i)mossmesi\\.com break:403 Forbidden\nroute-referer = (?i)most\\-kerch\\.org break:403 Forbidden\nroute-referer = (?i)most\\.gov\\.iq break:403 Forbidden\nroute-referer = (?i)mostantikor\\.ru break:403 Forbidden\nroute-referer = (?i)mostbet\\-285\\.com break:403 Forbidden\nroute-referer = (?i)mostbet\\-original\\.ru break:403 Forbidden\nroute-referer = (?i)mostcool\\.top break:403 Forbidden\nroute-referer = (?i)mostorgnerud\\.ru break:403 Forbidden\nroute-referer = (?i)motion\\-interactive\\.com break:403 Forbidden\nroute-referer = (?i)mototsikl\\.org break:403 Forbidden\nroute-referer = (?i)mountainstream\\.ms break:403 Forbidden\nroute-referer = (?i)moy\\-dokument\\.com break:403 Forbidden\nroute-referer = (?i)moy\\-evroopt\\.ru break:403 Forbidden\nroute-referer = (?i)moyakuhnia\\.ru break:403 Forbidden\nroute-referer = (?i)moyaskidka\\.ru break:403 Forbidden\nroute-referer = (?i)moyaterapiya\\.ru break:403 Forbidden\nroute-referer = (?i)moygorod\\-online\\.ru break:403 Forbidden\nroute-referer = (?i)moyparnik\\.com break:403 Forbidden\nroute-referer = (?i)mp3films\\.ru break:403 Forbidden\nroute-referer = (?i)mpftpupload\\.com break:403 Forbidden\nroute-referer = (?i)mrbojikobi4\\.biz break:403 Forbidden\nroute-referer = (?i)mrcsa\\.com\\.au break:403 Forbidden\nroute-referer = (?i)mriyadh\\.com break:403 Forbidden\nroute-referer = (?i)mrmoneymustache\\.com break:403 Forbidden\nroute-referer = (?i)mrt\\-info\\.ru break:403 Forbidden\nroute-referer = (?i)mrwhite\\.biz break:403 Forbidden\nroute-referer = (?i)msk\\-diplomat\\.com break:403 Forbidden\nroute-referer = (?i)msk\\-sprawka\\.com break:403 Forbidden\nroute-referer = (?i)mtras\\.xyz break:403 Forbidden\nroute-referer = (?i)mtsguru\\.ru break:403 Forbidden\nroute-referer = (?i)mug\\-na\\-chas\\-moscow\\.ru break:403 Forbidden\nroute-referer = (?i)muizre\\.ru break:403 Forbidden\nroute-referer = (?i)mukis\\.ru break:403 Forbidden\nroute-referer = (?i)mundoaberrante\\.com break:403 Forbidden\nroute-referer = (?i)muscle\\-factory\\.com\\.au break:403 Forbidden\nroute-referer = (?i)muscle\\-factory\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)music\\.utrolive\\.ru break:403 Forbidden\nroute-referer = (?i)musicas\\.baixar\\-musicas\\-gratis\\.com break:403 Forbidden\nroute-referer = (?i)musichallaudio\\.ru break:403 Forbidden\nroute-referer = (?i)musicprojectfoundation\\.com break:403 Forbidden\nroute-referer = (?i)musicstock\\.me break:403 Forbidden\nroute-referer = (?i)musicvidz\\.ru break:403 Forbidden\nroute-referer = (?i)muz\\-baza\\.net break:403 Forbidden\nroute-referer = (?i)muz\\-shoes\\.ru break:403 Forbidden\nroute-referer = (?i)muznachas\\-service\\.ru break:403 Forbidden\nroute-referer = (?i)muztops\\.ru break:403 Forbidden\nroute-referer = (?i)mvmagoods\\.xyz break:403 Forbidden\nroute-referer = (?i)mwductwork\\.com break:403 Forbidden\nroute-referer = (?i)my\\-bc\\.ru break:403 Forbidden\nroute-referer = (?i)my\\.opera\\.com break:403 Forbidden\nroute-referer = (?i)mybestoffers\\.club break:403 Forbidden\nroute-referer = (?i)myborder\\.ru break:403 Forbidden\nroute-referer = (?i)mybuh\\.kz break:403 Forbidden\nroute-referer = (?i)mycaf\\.it break:403 Forbidden\nroute-referer = (?i)mycheaptraffic\\.com break:403 Forbidden\nroute-referer = (?i)mycollegereview\\.com break:403 Forbidden\nroute-referer = (?i)mydirtystuff\\.com break:403 Forbidden\nroute-referer = (?i)mydoctorok\\.ru break:403 Forbidden\nroute-referer = (?i)mydownloadengine\\.com break:403 Forbidden\nroute-referer = (?i)mydownlodablefiles\\.com break:403 Forbidden\nroute-referer = (?i)myecomir\\.com break:403 Forbidden\nroute-referer = (?i)myfreemp3\\.eu break:403 Forbidden\nroute-referer = (?i)myftpupload\\.com break:403 Forbidden\nroute-referer = (?i)myindospace\\.com break:403 Forbidden\nroute-referer = (?i)mylida\\.org break:403 Forbidden\nroute-referer = (?i)myliveblog\\.ru break:403 Forbidden\nroute-referer = (?i)mypets\\.by break:403 Forbidden\nroute-referer = (?i)myplaycity\\.com break:403 Forbidden\nroute-referer = (?i)myprintscreen\\.com break:403 Forbidden\nroute-referer = (?i)mysexpics\\.ru break:403 Forbidden\nroute-referer = (?i)mytherealshop\\.com break:403 Forbidden\nroute-referer = (?i)mytraffic\\.shop break:403 Forbidden\nroute-referer = (?i)na\\-telefon\\.biz break:403 Forbidden\nroute-referer = (?i)na15\\.ru break:403 Forbidden\nroute-referer = (?i)nacap\\.ru break:403 Forbidden\nroute-referer = (?i)nachalka21\\.ru break:403 Forbidden\nroute-referer = (?i)nagdak\\.ru break:403 Forbidden\nroute-referer = (?i)nakozhe\\.com break:403 Forbidden\nroute-referer = (?i)nalogovyy\\-kodeks\\.ru break:403 Forbidden\nroute-referer = (?i)nancyblog\\.top break:403 Forbidden\nroute-referer = (?i)nanochskazki\\.ru break:403 Forbidden\nroute-referer = (?i)nanwar\\.xyz break:403 Forbidden\nroute-referer = (?i)naobumium\\.info break:403 Forbidden\nroute-referer = (?i)naphi\\.xyz break:403 Forbidden\nroute-referer = (?i)naphukete\\.ru break:403 Forbidden\nroute-referer = (?i)nardulan\\.com break:403 Forbidden\nroute-referer = (?i)narkologiya\\-belgorod\\.ru break:403 Forbidden\nroute-referer = (?i)narkologiya\\-orel\\.ru break:403 Forbidden\nroute-referer = (?i)narkologiya\\-penza\\.ru break:403 Forbidden\nroute-referer = (?i)narkologiya\\-peterburg\\.ru break:403 Forbidden\nroute-referer = (?i)narkologiya\\-voronezh\\.ru break:403 Forbidden\nroute-referer = (?i)narkomaniya\\-stop\\.ru break:403 Forbidden\nroute-referer = (?i)narosty\\.com break:403 Forbidden\nroute-referer = (?i)narutonaruto\\.ru break:403 Forbidden\nroute-referer = (?i)nastroyke\\.net break:403 Forbidden\nroute-referer = (?i)natali\\-forex\\.com break:403 Forbidden\nroute-referer = (?i)nate\\.com break:403 Forbidden\nroute-referer = (?i)natprof\\.ru break:403 Forbidden\nroute-referer = (?i)naturalpharm\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)naval\\.jislaaik\\.com break:403 Forbidden\nroute-referer = (?i)navek\\.by break:403 Forbidden\nroute-referer = (?i)nbok\\.net break:403 Forbidden\nroute-referer = (?i)nbsproject\\.ru break:403 Forbidden\nroute-referer = (?i)nebbiasale\\.xyz break:403 Forbidden\nroute-referer = (?i)needtosellmyhousefast\\.com break:403 Forbidden\nroute-referer = (?i)negral\\.pluto\\.ro break:403 Forbidden\nroute-referer = (?i)net\\-profits\\.xyz break:403 Forbidden\nroute-referer = (?i)netallergy\\.ru break:403 Forbidden\nroute-referer = (?i)nethouse\\.ru break:403 Forbidden\nroute-referer = (?i)netlify\\.com break:403 Forbidden\nroute-referer = (?i)netpics\\.org break:403 Forbidden\nroute-referer = (?i)nevansk\\.ru break:403 Forbidden\nroute-referer = (?i)nevapotolok\\.ru break:403 Forbidden\nroute-referer = (?i)new\\-apps\\.ru break:403 Forbidden\nroute-referer = (?i)newagebev\\.com break:403 Forbidden\nroute-referer = (?i)newbieseoblog\\.online break:403 Forbidden\nroute-referer = (?i)newsfj\\.net break:403 Forbidden\nroute-referer = (?i)newsrosprom\\.ru break:403 Forbidden\nroute-referer = (?i)newstaffadsshop\\.club break:403 Forbidden\nroute-referer = (?i)newstraveller\\.ru break:403 Forbidden\nroute-referer = (?i)newstudio\\.tv break:403 Forbidden\nroute-referer = (?i)nextconseil\\.com break:403 Forbidden\nroute-referer = (?i)nfocusdriver\\.com break:403 Forbidden\nroute-referer = (?i)ngps1\\.ru break:403 Forbidden\nroute-referer = (?i)nhmrcsale\\.xyz break:403 Forbidden\nroute-referer = (?i)nhsports\\.cl break:403 Forbidden\nroute-referer = (?i)nicola\\.top break:403 Forbidden\nroute-referer = (?i)nicolaonline\\.top break:403 Forbidden\nroute-referer = (?i)niki\\-mlt\\.ru break:403 Forbidden\nroute-referer = (?i)nikitsyringedrivelg\\.pen\\.io break:403 Forbidden\nroute-referer = (?i)ninacecillia\\.top break:403 Forbidden\nroute-referer = (?i)niuting\\.org break:403 Forbidden\nroute-referer = (?i)nizniynovgorod\\.dienai\\.ru break:403 Forbidden\nroute-referer = (?i)nl\\.netlog\\.com break:403 Forbidden\nroute-referer = (?i)no\\-rx\\.info break:403 Forbidden\nroute-referer = (?i)noclegonline\\.info break:403 Forbidden\nroute-referer = (?i)nomerounddec\\.cf break:403 Forbidden\nroute-referer = (?i)nonews\\.co break:403 Forbidden\nroute-referer = (?i)nordstar\\.pro break:403 Forbidden\nroute-referer = (?i)notaria\\-desalas\\.com break:403 Forbidden\nroute-referer = (?i)notebook\\-pro\\.ru break:403 Forbidden\nroute-referer = (?i)notfastfood\\.ru break:403 Forbidden\nroute-referer = (?i)noumeda\\.com break:403 Forbidden\nroute-referer = (?i)novalskincare\\.net break:403 Forbidden\nroute-referer = (?i)novgorod\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)novosibirsk\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)novosti\\-avto\\.ru break:403 Forbidden\nroute-referer = (?i)novosti\\-hi\\-tech\\.ru break:403 Forbidden\nroute-referer = (?i)novostic\\.ru break:403 Forbidden\nroute-referer = (?i)now\\-hydra2020\\.com break:403 Forbidden\nroute-referer = (?i)npoet\\.ru break:403 Forbidden\nroute-referer = (?i)ntdtv\\.ru break:403 Forbidden\nroute-referer = (?i)nubuilderian\\.info break:403 Forbidden\nroute-referer = (?i)nucia\\.biz\\.ly break:403 Forbidden\nroute-referer = (?i)nudepatch\\.net break:403 Forbidden\nroute-referer = (?i)nudo\\.ca break:403 Forbidden\nroute-referer = (?i)nufaq\\.com break:403 Forbidden\nroute-referer = (?i)nullrefer\\.com break:403 Forbidden\nroute-referer = (?i)nutriwestncahi\\.com break:403 Forbidden\nroute-referer = (?i)nuup\\.info break:403 Forbidden\nroute-referer = (?i)nvformula\\.ru break:403 Forbidden\nroute-referer = (?i)nvkzsale\\.xyz break:403 Forbidden\nroute-referer = (?i)nwrcz\\.com break:403 Forbidden\nroute-referer = (?i)nyfinance\\.ml break:403 Forbidden\nroute-referer = (?i)nyinfo\\.org break:403 Forbidden\nroute-referer = (?i)o\\-o\\-11\\-o\\-o\\.com break:403 Forbidden\nroute-referer = (?i)o\\-o\\-6\\-o\\-o\\.com break:403 Forbidden\nroute-referer = (?i)o\\-o\\-6\\-o\\-o\\.ru break:403 Forbidden\nroute-referer = (?i)o\\-o\\-8\\-o\\-o\\.com break:403 Forbidden\nroute-referer = (?i)o\\-o\\-8\\-o\\-o\\.ru break:403 Forbidden\nroute-referer = (?i)o\\-promyshlennosti\\.ru break:403 Forbidden\nroute-referer = (?i)o00\\.in break:403 Forbidden\nroute-referer = (?i)oblismall\\.xyz break:403 Forbidden\nroute-referer = (?i)obnal\\.org break:403 Forbidden\nroute-referer = (?i)obnallpro\\.cc break:403 Forbidden\nroute-referer = (?i)obsessionphrases\\.com break:403 Forbidden\nroute-referer = (?i)obuv\\-kupit\\.ru break:403 Forbidden\nroute-referer = (?i)obyavka\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)obzor\\-casino\\-x\\.online break:403 Forbidden\nroute-referer = (?i)obzor\\-casino\\-x\\.ru break:403 Forbidden\nroute-referer = (?i)ochistka\\-stokov\\.ru break:403 Forbidden\nroute-referer = (?i)odesproperty\\.com break:403 Forbidden\nroute-referer = (?i)odiabetikah\\.com break:403 Forbidden\nroute-referer = (?i)odsadsmobile\\.biz break:403 Forbidden\nroute-referer = (?i)odywpjtw\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)ofermerah\\.com break:403 Forbidden\nroute-referer = (?i)offers\\.bycontext\\.com break:403 Forbidden\nroute-referer = (?i)office\\-windows\\.ru break:403 Forbidden\nroute-referer = (?i)office2web\\.com break:403 Forbidden\nroute-referer = (?i)officedocuments\\.net break:403 Forbidden\nroute-referer = (?i)offtime\\.ru break:403 Forbidden\nroute-referer = (?i)ogorodnic\\.com break:403 Forbidden\nroute-referer = (?i)ok\\.ru break:403 Forbidden\nroute-referer = (?i)oklogistic\\.ru break:403 Forbidden\nroute-referer = (?i)okna\\-systems\\.pro break:403 Forbidden\nroute-referer = (?i)okno\\.ooo break:403 Forbidden\nroute-referer = (?i)okoshkah\\.com break:403 Forbidden\nroute-referer = (?i)okroshki\\.ru break:403 Forbidden\nroute-referer = (?i)oktube\\.ru break:403 Forbidden\nroute-referer = (?i)oledonline\\.xyz break:403 Forbidden\nroute-referer = (?i)olovoley\\.ru break:403 Forbidden\nroute-referer = (?i)olvanto\\.ru break:403 Forbidden\nroute-referer = (?i)omega\\.best break:403 Forbidden\nroute-referer = (?i)omsk\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)one\\-a\\-plus\\.xyz break:403 Forbidden\nroute-referer = (?i)one\\-gear\\.com break:403 Forbidden\nroute-referer = (?i)onefilms\\.net break:403 Forbidden\nroute-referer = (?i)onenews24\\.ru break:403 Forbidden\nroute-referer = (?i)onion20hydra\\.ru break:403 Forbidden\nroute-referer = (?i)onionhydra\\.net break:403 Forbidden\nroute-referer = (?i)onionshydra\\.com break:403 Forbidden\nroute-referer = (?i)online\\-akbars\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-binbank\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-hit\\.info break:403 Forbidden\nroute-referer = (?i)online\\-intim\\.com break:403 Forbidden\nroute-referer = (?i)online\\-mkb\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-pharma\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-pochtabank\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-raiffeisen\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-sbank\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-templatestore\\.com break:403 Forbidden\nroute-referer = (?i)online\\-video\\-chat\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-vostbank\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-vtb\\.ru break:403 Forbidden\nroute-referer = (?i)online\\-x\\.ru break:403 Forbidden\nroute-referer = (?i)online\\.ktc45\\.ru break:403 Forbidden\nroute-referer = (?i)onlinebay\\.ru break:403 Forbidden\nroute-referer = (?i)onlinedic\\.net break:403 Forbidden\nroute-referer = (?i)onlinedomains\\.ru break:403 Forbidden\nroute-referer = (?i)onlinefilmz\\.net break:403 Forbidden\nroute-referer = (?i)onlineserialy\\.ru break:403 Forbidden\nroute-referer = (?i)onlinetvseries\\.me break:403 Forbidden\nroute-referer = (?i)onlinewot\\.ru break:403 Forbidden\nroute-referer = (?i)onlinewritingjobs17\\.blogspot\\.ru break:403 Forbidden\nroute-referer = (?i)onload\\.pw break:403 Forbidden\nroute-referer = (?i)onlyforemont\\.ru break:403 Forbidden\nroute-referer = (?i)onlythegames\\.com break:403 Forbidden\nroute-referer = (?i)onlywoman\\.org break:403 Forbidden\nroute-referer = (?i)oohlivecams\\.com break:403 Forbidden\nroute-referer = (?i)ooo\\-gotovie\\.ru break:403 Forbidden\nroute-referer = (?i)ooo\\-olni\\.ru break:403 Forbidden\nroute-referer = (?i)oooh\\.pro break:403 Forbidden\nroute-referer = (?i)openfrost\\.com break:403 Forbidden\nroute-referer = (?i)openfrost\\.net break:403 Forbidden\nroute-referer = (?i)openlibrary\\.org break:403 Forbidden\nroute-referer = (?i)openmediasoft\\.com break:403 Forbidden\nroute-referer = (?i)ops\\.picscout\\.com break:403 Forbidden\nroute-referer = (?i)optitrade24\\.com break:403 Forbidden\nroute-referer = (?i)optsol\\.ru break:403 Forbidden\nroute-referer = (?i)oqex\\.io break:403 Forbidden\nroute-referer = (?i)oracle\\-patches\\.ru break:403 Forbidden\nroute-referer = (?i)orakul\\.spb\\.ru break:403 Forbidden\nroute-referer = (?i)oranga\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)order\\-prime\\-smm\\-service\\.party break:403 Forbidden\nroute-referer = (?i)ordernorxx\\.com break:403 Forbidden\nroute-referer = (?i)orel\\-reshka\\.net break:403 Forbidden\nroute-referer = (?i)oren\\-cats\\.ru break:403 Forbidden\nroute-referer = (?i)origin\\-my\\.ru break:403 Forbidden\nroute-referer = (?i)ororodnik\\.goodbb\\.ru break:403 Forbidden\nroute-referer = (?i)osb\\.se11\\.ru break:403 Forbidden\nroute-referer = (?i)osoznanie\\-narkotikam\\.net break:403 Forbidden\nroute-referer = (?i)osteochondrosis\\.ru break:403 Forbidden\nroute-referer = (?i)ostroike\\.org break:403 Forbidden\nroute-referer = (?i)ostrovtaxi\\.ru break:403 Forbidden\nroute-referer = (?i)otbelivanie\\-zubov\\.com break:403 Forbidden\nroute-referer = (?i)otdbiaxaem\\-vmeste\\.ru break:403 Forbidden\nroute-referer = (?i)otdyx\\-s\\-komfortom\\.ru break:403 Forbidden\nroute-referer = (?i)oudallas\\.net break:403 Forbidden\nroute-referer = (?i)ourtherapy\\.ru break:403 Forbidden\nroute-referer = (?i)outshop\\.ru break:403 Forbidden\nroute-referer = (?i)ovirus\\.ru break:403 Forbidden\nroute-referer = (?i)own\\-ahrefs\\.com break:403 Forbidden\nroute-referer = (?i)ownshop\\.cf break:403 Forbidden\nroute-referer = (?i)owohho\\.com break:403 Forbidden\nroute-referer = (?i)ozas\\.net break:403 Forbidden\nroute-referer = (?i)p\\-business\\.ru break:403 Forbidden\nroute-referer = (?i)paceform\\.com break:403 Forbidden\nroute-referer = (?i)pacobarrero\\.com break:403 Forbidden\nroute-referer = (?i)pageinsider\\.org break:403 Forbidden\nroute-referer = (?i)paidonlinesites\\.com break:403 Forbidden\nroute-referer = (?i)painting\\-planet\\.com break:403 Forbidden\nroute-referer = (?i)palma\\-de\\-sochi\\.ru break:403 Forbidden\nroute-referer = (?i)palvira\\.com\\.au break:403 Forbidden\nroute-referer = (?i)palvira\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)pamjatnik\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)pammik\\.ru break:403 Forbidden\nroute-referer = (?i)pamyatnik\\-spb\\.ru break:403 Forbidden\nroute-referer = (?i)pamyatnik\\-tsena\\.ru break:403 Forbidden\nroute-referer = (?i)pandoshop\\.xyz break:403 Forbidden\nroute-referer = (?i)paparazzistudios\\.com\\.au break:403 Forbidden\nroute-referer = (?i)paperwritingservice17\\.blogspot\\.ru break:403 Forbidden\nroute-referer = (?i)paradontozanet\\.ru break:403 Forbidden\nroute-referer = (?i)parcsmalls\\.xyz break:403 Forbidden\nroute-referer = (?i)paretto\\.ru break:403 Forbidden\nroute-referer = (?i)parking\\-invest\\.ru break:403 Forbidden\nroute-referer = (?i)partizan19\\.ru break:403 Forbidden\nroute-referer = (?i)partnerskie\\-programmy\\.net break:403 Forbidden\nroute-referer = (?i)patonsale\\.xyz break:403 Forbidden\nroute-referer = (?i)paulinho\\.ru break:403 Forbidden\nroute-referer = (?i)pay\\.ru break:403 Forbidden\nroute-referer = (?i)paydayonlinecom\\.com break:403 Forbidden\nroute-referer = (?i)pc\\-services\\.ru break:403 Forbidden\nroute-referer = (?i)pechikamini\\.ru break:403 Forbidden\nroute-referer = (?i)pecmastore\\.xyz break:403 Forbidden\nroute-referer = (?i)pensplan\\.com break:403 Forbidden\nroute-referer = (?i)pensplan4u\\.com break:403 Forbidden\nroute-referer = (?i)penzu\\.xyz break:403 Forbidden\nroute-referer = (?i)percin\\.biz\\.ly break:403 Forbidden\nroute-referer = (?i)perfection\\-pleasure\\.ru break:403 Forbidden\nroute-referer = (?i)perform\\-like\\-alibabaity\\.info break:403 Forbidden\nroute-referer = (?i)perform\\-likeism\\-alibaba\\.info break:403 Forbidden\nroute-referer = (?i)perimetor\\.ru break:403 Forbidden\nroute-referer = (?i)perm\\.dienai\\.ru break:403 Forbidden\nroute-referer = (?i)perm\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)perper\\.ru break:403 Forbidden\nroute-referer = (?i)perso\\.wanadoo\\.es break:403 Forbidden\nroute-referer = (?i)personalhoro\\.ru break:403 Forbidden\nroute-referer = (?i)petedrummond\\.com break:403 Forbidden\nroute-referer = (?i)petroleumgeo\\.com break:403 Forbidden\nroute-referer = (?i)petrovka\\-online\\.com break:403 Forbidden\nroute-referer = (?i)petrushka\\-restoran\\.ru break:403 Forbidden\nroute-referer = (?i)petscar\\.ru break:403 Forbidden\nroute-referer = (?i)pfrf\\-kabinet\\.ru break:403 Forbidden\nroute-referer = (?i)pharm\\-\\-shop\\.ru break:403 Forbidden\nroute-referer = (?i)phimarshcer\\.online break:403 Forbidden\nroute-referer = (?i)phimmakinhdi\\.com break:403 Forbidden\nroute-referer = (?i)phobia\\.us break:403 Forbidden\nroute-referer = (?i)photo\\-clip\\.ru break:403 Forbidden\nroute-referer = (?i)photo\\.houseofgaga\\.ru break:403 Forbidden\nroute-referer = (?i)photochki\\.com break:403 Forbidden\nroute-referer = (?i)photokitchendesign\\.com break:403 Forbidden\nroute-referer = (?i)photorepair\\.ru break:403 Forbidden\nroute-referer = (?i)php\\-market\\.ru break:403 Forbidden\nroute-referer = (?i)physfunc\\.ru break:403 Forbidden\nroute-referer = (?i)picscout\\.com break:403 Forbidden\nroute-referer = (?i)picturesmania\\.com break:403 Forbidden\nroute-referer = (?i)pills24h\\.com break:403 Forbidden\nroute-referer = (?i)piluli\\.info break:403 Forbidden\nroute-referer = (?i)pinkduck\\.ga break:403 Forbidden\nroute-referer = (?i)pinupcasinos\\.ru break:403 Forbidden\nroute-referer = (?i)pinupcasinos1\\.ru break:403 Forbidden\nroute-referer = (?i)pinupp1\\.com break:403 Forbidden\nroute-referer = (?i)pipki\\.pp\\.ua break:403 Forbidden\nroute-referer = (?i)piratbike\\.ru break:403 Forbidden\nroute-referer = (?i)pirateday\\.ru break:403 Forbidden\nroute-referer = (?i)pirelli\\-matador\\.ru break:403 Forbidden\nroute-referer = (?i)pisze\\.pisz\\.pl break:403 Forbidden\nroute-referer = (?i)piter\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)piulatte\\.cz break:403 Forbidden\nroute-referer = (?i)pizdeishn\\.com break:403 Forbidden\nroute-referer = (?i)pizdeishn\\.net break:403 Forbidden\nroute-referer = (?i)pizza\\-imperia\\.com break:403 Forbidden\nroute-referer = (?i)pizza\\-tycoon\\.com break:403 Forbidden\nroute-referer = (?i)pk\\-pomosch\\.ru break:403 Forbidden\nroute-referer = (?i)pk\\-services\\.ru break:403 Forbidden\nroute-referer = (?i)pkr1hand\\.com break:403 Forbidden\nroute-referer = (?i)plagscan\\.com break:403 Forbidden\nroute-referer = (?i)plastweb\\.ru break:403 Forbidden\nroute-referer = (?i)platesauto\\.com break:403 Forbidden\nroute-referer = (?i)platinumdeals\\.gr break:403 Forbidden\nroute-referer = (?i)plohaya\\-kreditnaya\\-istoriya\\.ru break:403 Forbidden\nroute-referer = (?i)plusnetwork\\.com break:403 Forbidden\nroute-referer = (?i)pochemychka\\.net break:403 Forbidden\nroute-referer = (?i)podarkilove\\.ru break:403 Forbidden\nroute-referer = (?i)poddon\\-moskva\\.ru break:403 Forbidden\nroute-referer = (?i)podemnik\\.pro break:403 Forbidden\nroute-referer = (?i)podseka1\\.ru break:403 Forbidden\nroute-referer = (?i)pogodnyyeavarii\\.gq break:403 Forbidden\nroute-referer = (?i)pogosh\\.com break:403 Forbidden\nroute-referer = (?i)pogruztehnik\\.ru break:403 Forbidden\nroute-referer = (?i)poisk\\-zakona\\.ru break:403 Forbidden\nroute-referer = (?i)poiskzakona\\.ru break:403 Forbidden\nroute-referer = (?i)pokemongooo\\.ml break:403 Forbidden\nroute-referer = (?i)poker\\-royal777\\.com break:403 Forbidden\nroute-referer = (?i)pokupaylegko\\.ru break:403 Forbidden\nroute-referer = (?i)polcin\\.de break:403 Forbidden\nroute-referer = (?i)polemikon\\.ru break:403 Forbidden\nroute-referer = (?i)politika\\.bg break:403 Forbidden\nroute-referer = (?i)polyana\\-skazok\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)pomoc\\-drogowa\\.cba\\.pl break:403 Forbidden\nroute-referer = (?i)pony\\-business\\.com break:403 Forbidden\nroute-referer = (?i)popads\\.net break:403 Forbidden\nroute-referer = (?i)popelina\\.com break:403 Forbidden\nroute-referer = (?i)pops\\.foundation break:403 Forbidden\nroute-referer = (?i)popugauka\\.ru break:403 Forbidden\nroute-referer = (?i)popugaychiki\\.com break:403 Forbidden\nroute-referer = (?i)popular\\-church\\-arrow\\-voucher\\.info break:403 Forbidden\nroute-referer = (?i)popup\\-fdm\\.xyz break:403 Forbidden\nroute-referer = (?i)popup\\-hgd\\.xyz break:403 Forbidden\nroute-referer = (?i)popup\\-jdh\\.xyz break:403 Forbidden\nroute-referer = (?i)porn\\-video\\-chat\\.ru break:403 Forbidden\nroute-referer = (?i)porn\\-w\\.org break:403 Forbidden\nroute-referer = (?i)porndl\\.org break:403 Forbidden\nroute-referer = (?i)pornhive\\.org break:403 Forbidden\nroute-referer = (?i)pornhub\\-forum\\.ga break:403 Forbidden\nroute-referer = (?i)pornhub\\-forum\\.uni\\.me break:403 Forbidden\nroute-referer = (?i)pornhub\\-ru\\.com break:403 Forbidden\nroute-referer = (?i)pornhubforum\\.tk break:403 Forbidden\nroute-referer = (?i)porno\\-asia\\.com break:403 Forbidden\nroute-referer = (?i)porno\\-chaman\\.info break:403 Forbidden\nroute-referer = (?i)porno\\-dojki\\.net break:403 Forbidden\nroute-referer = (?i)porno\\-gallery\\.ru break:403 Forbidden\nroute-referer = (?i)porno\\-play\\.net break:403 Forbidden\nroute-referer = (?i)porno\\-raskazy\\.ru break:403 Forbidden\nroute-referer = (?i)porno\\-transsexuals\\.ru break:403 Forbidden\nroute-referer = (?i)porno\\-video\\-chati\\.ru break:403 Forbidden\nroute-referer = (?i)porno2xl\\.net break:403 Forbidden\nroute-referer = (?i)pornobest\\.su break:403 Forbidden\nroute-referer = (?i)pornoblood\\.com break:403 Forbidden\nroute-referer = (?i)pornobrazzers\\.biz break:403 Forbidden\nroute-referer = (?i)pornodojd\\.ru break:403 Forbidden\nroute-referer = (?i)pornoelita\\.info break:403 Forbidden\nroute-referer = (?i)pornofiljmi\\.com break:403 Forbidden\nroute-referer = (?i)pornoforadult\\.com break:403 Forbidden\nroute-referer = (?i)pornofoto\\.org break:403 Forbidden\nroute-referer = (?i)pornogig\\.com break:403 Forbidden\nroute-referer = (?i)pornohd1080\\.online break:403 Forbidden\nroute-referer = (?i)pornokajf\\.com break:403 Forbidden\nroute-referer = (?i)pornoklad\\.net break:403 Forbidden\nroute-referer = (?i)pornoklad\\.ru break:403 Forbidden\nroute-referer = (?i)pornokorol\\.com break:403 Forbidden\nroute-referer = (?i)pornonik\\.com break:403 Forbidden\nroute-referer = (?i)pornophoto\\.xyz break:403 Forbidden\nroute-referer = (?i)pornoplen\\.com break:403 Forbidden\nroute-referer = (?i)pornorasskazy\\.net break:403 Forbidden\nroute-referer = (?i)pornosemki\\.info break:403 Forbidden\nroute-referer = (?i)pornoslave\\.net break:403 Forbidden\nroute-referer = (?i)pornotubexxx\\.name break:403 Forbidden\nroute-referer = (?i)porodasobak\\.net break:403 Forbidden\nroute-referer = (?i)portal\\-eu\\.ru break:403 Forbidden\nroute-referer = (?i)portnoff\\.od\\.au break:403 Forbidden\nroute-referer = (?i)portnoff\\.od\\.ua break:403 Forbidden\nroute-referer = (?i)poshiv\\-chehol\\.ru break:403 Forbidden\nroute-referer = (?i)positive2b\\.ru break:403 Forbidden\nroute-referer = (?i)pospektr\\.ru break:403 Forbidden\nroute-referer = (?i)postclass\\.com break:403 Forbidden\nroute-referer = (?i)posteezy\\.xyz break:403 Forbidden\nroute-referer = (?i)potolokelekor\\.ru break:403 Forbidden\nroute-referer = (?i)povodok\\-shop\\.ru break:403 Forbidden\nroute-referer = (?i)powitania\\.pl break:403 Forbidden\nroute-referer = (?i)pozdravleniya\\-c\\.ru break:403 Forbidden\nroute-referer = (?i)pozdrawleniya\\.com break:403 Forbidden\nroute-referer = (?i)pozdrawleniya\\.ru break:403 Forbidden\nroute-referer = (?i)pozvonim\\.com break:403 Forbidden\nroute-referer = (?i)pp\\-budpostach\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)pravoholding\\.ru break:403 Forbidden\nroute-referer = (?i)predmety\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)prezidentshop\\.ru break:403 Forbidden\nroute-referer = (?i)priceg\\.com break:403 Forbidden\nroute-referer = (?i)pricheskaonline\\.ru break:403 Forbidden\nroute-referer = (?i)pricheski\\-video\\.com break:403 Forbidden\nroute-referer = (?i)primfootball\\.com break:403 Forbidden\nroute-referer = (?i)primoblog\\.xyz break:403 Forbidden\nroute-referer = (?i)princeadvantagesales\\.com break:403 Forbidden\nroute-referer = (?i)print\\-technology\\.ru break:403 Forbidden\nroute-referer = (?i)printie\\.com break:403 Forbidden\nroute-referer = (?i)printingpeach\\.com break:403 Forbidden\nroute-referer = (?i)priora\\-2\\.com break:403 Forbidden\nroute-referer = (?i)privatbank46\\.ru break:403 Forbidden\nroute-referer = (?i)private\\-service\\.best break:403 Forbidden\nroute-referer = (?i)privatov\\-zapisi\\.ru break:403 Forbidden\nroute-referer = (?i)privhosting\\.com break:403 Forbidden\nroute-referer = (?i)prizesk\\.com break:403 Forbidden\nroute-referer = (?i)prizrn\\.site break:403 Forbidden\nroute-referer = (?i)prlog\\.ru break:403 Forbidden\nroute-referer = (?i)pro\\-okis\\.ru break:403 Forbidden\nroute-referer = (?i)probenzo\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)procrafts\\.ru break:403 Forbidden\nroute-referer = (?i)prodaemdveri\\.com break:403 Forbidden\nroute-referer = (?i)producm\\.ru break:403 Forbidden\nroute-referer = (?i)prodvigator\\.au break:403 Forbidden\nroute-referer = (?i)prodvigator\\.ua break:403 Forbidden\nroute-referer = (?i)proekt\\-gaz\\.ru break:403 Forbidden\nroute-referer = (?i)proekt\\-mos\\.ru break:403 Forbidden\nroute-referer = (?i)professionalsolutions\\.eu break:403 Forbidden\nroute-referer = (?i)professionalwritingservices15\\.blogspot\\.ru break:403 Forbidden\nroute-referer = (?i)profnastil\\-moscow\\.ru break:403 Forbidden\nroute-referer = (?i)proftests\\.net break:403 Forbidden\nroute-referer = (?i)progressive\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)prohoster\\.info break:403 Forbidden\nroute-referer = (?i)prointer\\.net\\.au break:403 Forbidden\nroute-referer = (?i)prointer\\.net\\.ua break:403 Forbidden\nroute-referer = (?i)projectforte\\.ru break:403 Forbidden\nroute-referer = (?i)projefrio\\.com\\.br break:403 Forbidden\nroute-referer = (?i)prokotov\\.com break:403 Forbidden\nroute-referer = (?i)prom23\\.ru break:403 Forbidden\nroute-referer = (?i)prombudpostach\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)promodj\\.com break:403 Forbidden\nroute-referer = (?i)promoforum\\.ru break:403 Forbidden\nroute-referer = (?i)promoteapps\\.online break:403 Forbidden\nroute-referer = (?i)promotion\\-for99\\.com break:403 Forbidden\nroute-referer = (?i)pron\\.pro break:403 Forbidden\nroute-referer = (?i)pronekut\\.com break:403 Forbidden\nroute-referer = (?i)proposal\\-engine\\.com break:403 Forbidden\nroute-referer = (?i)propranolol40mg\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)proquoshop\\.xyz break:403 Forbidden\nroute-referer = (?i)prosmibank\\.ru break:403 Forbidden\nroute-referer = (?i)prostitutki\\-almata\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-astana\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-belgoroda\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-kharkova\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-kiev\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-novgoroda\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-odessa\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-rostova\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-rostova\\.ru\\.com break:403 Forbidden\nroute-referer = (?i)prostitutki\\-tolyatti\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-tyumeni\\.org break:403 Forbidden\nroute-referer = (?i)prostitutki\\-yaroslavlya\\.org break:403 Forbidden\nroute-referer = (?i)prostoacc\\.com break:403 Forbidden\nroute-referer = (?i)psa48\\.ru break:403 Forbidden\nroute-referer = (?i)psiosale\\.xyz break:403 Forbidden\nroute-referer = (?i)pskcijdc\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)psn\\-card\\.ru break:403 Forbidden\nroute-referer = (?i)psvita\\.ru break:403 Forbidden\nroute-referer = (?i)psychocryonics\\.net break:403 Forbidden\nroute-referer = (?i)ptashkatextil\\.ua break:403 Forbidden\nroute-referer = (?i)ptfic\\.org break:403 Forbidden\nroute-referer = (?i)punch\\.media break:403 Forbidden\nroute-referer = (?i)purchasepillsnorx\\.com break:403 Forbidden\nroute-referer = (?i)puteshestvennik\\.com break:403 Forbidden\nroute-referer = (?i)putevka24\\.ru break:403 Forbidden\nroute-referer = (?i)putitin\\.me break:403 Forbidden\nroute-referer = (?i)puzo2arbuza\\.ru break:403 Forbidden\nroute-referer = (?i)puzzleweb\\.ru break:403 Forbidden\nroute-referer = (?i)pyrodesigns\\.com\\.au break:403 Forbidden\nroute-referer = (?i)q\\-moto\\.ru break:403 Forbidden\nroute-referer = (?i)qcstrtvt\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)qexyfu\\.bugs3\\.com break:403 Forbidden\nroute-referer = (?i)qitt\\.ru break:403 Forbidden\nroute-referer = (?i)qoinex\\.top break:403 Forbidden\nroute-referer = (?i)qtrstar\\.xyz break:403 Forbidden\nroute-referer = (?i)qualitymarketzone\\.com break:403 Forbidden\nroute-referer = (?i)quick\\-seeker\\.com break:403 Forbidden\nroute-referer = (?i)quickchange\\.cc break:403 Forbidden\nroute-referer = (?i)quit\\-smoking\\.ga break:403 Forbidden\nroute-referer = (?i)qwarckoine\\.com break:403 Forbidden\nroute-referer = (?i)qwesa\\.ru break:403 Forbidden\nroute-referer = (?i)qxnr\\.net break:403 Forbidden\nroute-referer = (?i)r\\-control\\.ru break:403 Forbidden\nroute-referer = (?i)rabot\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)rabotaetvse\\.ru break:403 Forbidden\nroute-referer = (?i)rachelblog\\.online break:403 Forbidden\nroute-referer = (?i)radiogambling\\.com break:403 Forbidden\nroute-referer = (?i)rainbirds\\.ru break:403 Forbidden\nroute-referer = (?i)ranedaly\\.net break:403 Forbidden\nroute-referer = (?i)rangapoker\\.com break:403 Forbidden\nroute-referer = (?i)rangjued\\.com break:403 Forbidden\nroute-referer = (?i)rank\\-checker\\.online break:403 Forbidden\nroute-referer = (?i)rankchecker\\.online break:403 Forbidden\nroute-referer = (?i)ranking2017\\.ga break:403 Forbidden\nroute-referer = (?i)rankings\\-analytics\\.com break:403 Forbidden\nroute-referer = (?i)ranksays\\.com break:403 Forbidden\nroute-referer = (?i)rankscanner\\.com break:403 Forbidden\nroute-referer = (?i)ranksignals\\.com break:403 Forbidden\nroute-referer = (?i)ranksonic\\.com break:403 Forbidden\nroute-referer = (?i)ranksonic\\.info break:403 Forbidden\nroute-referer = (?i)ranksonic\\.net break:403 Forbidden\nroute-referer = (?i)ranksonic\\.org break:403 Forbidden\nroute-referer = (?i)rapevideosmovies\\.com break:403 Forbidden\nroute-referer = (?i)rapidgator\\-porn\\.ga break:403 Forbidden\nroute-referer = (?i)rapidhits\\.net break:403 Forbidden\nroute-referer = (?i)rapidsites\\.pro break:403 Forbidden\nroute-referer = (?i)raschtextil\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)rasteniya\\-vs\\-zombi\\.ru break:403 Forbidden\nroute-referer = (?i)ratraiser\\.online break:403 Forbidden\nroute-referer = (?i)rattan\\.co\\.ua break:403 Forbidden\nroute-referer = (?i)raymondblog\\.top break:403 Forbidden\nroute-referer = (?i)razamicroelectronics\\.com break:403 Forbidden\nroute-referer = (?i)razborka\\-skoda\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)rb\\-str\\.ru break:403 Forbidden\nroute-referer = (?i)rcb101\\.ru break:403 Forbidden\nroute-referer = (?i)rczhan\\.com break:403 Forbidden\nroute-referer = (?i)real\\-time\\-analytics\\.com break:403 Forbidden\nroute-referer = (?i)realnye\\-otzyvy\\.info break:403 Forbidden\nroute-referer = (?i)realresultslist\\.com break:403 Forbidden\nroute-referer = (?i)realting\\-moscow\\.ru break:403 Forbidden\nroute-referer = (?i)recinziireale\\.com break:403 Forbidden\nroute-referer = (?i)recipedays\\.com break:403 Forbidden\nroute-referer = (?i)recipedays\\.ru break:403 Forbidden\nroute-referer = (?i)rednise\\.com break:403 Forbidden\nroute-referer = (?i)redraincine\\.com break:403 Forbidden\nroute-referer = (?i)refererx\\.com break:403 Forbidden\nroute-referer = (?i)refpawro\\.xyz break:403 Forbidden\nroute-referer = (?i)refudiatethissarah\\.info break:403 Forbidden\nroute-referer = (?i)reginablog\\.top break:403 Forbidden\nroute-referer = (?i)reginanahum\\.top break:403 Forbidden\nroute-referer = (?i)regionshop\\.biz break:403 Forbidden\nroute-referer = (?i)registratciya\\-v\\-moskve\\.ru break:403 Forbidden\nroute-referer = (?i)reklama\\-i\\-rabota\\.ru break:403 Forbidden\nroute-referer = (?i)reklama1\\.ru break:403 Forbidden\nroute-referer = (?i)reklamnoe\\.agency break:403 Forbidden\nroute-referer = (?i)reklamuss\\.ru break:403 Forbidden\nroute-referer = (?i)releshop\\.ru break:403 Forbidden\nroute-referer = (?i)rembash\\.ru break:403 Forbidden\nroute-referer = (?i)remedyotc\\.com break:403 Forbidden\nroute-referer = (?i)remkompov\\.ru break:403 Forbidden\nroute-referer = (?i)remmling\\.de break:403 Forbidden\nroute-referer = (?i)remont\\-comp\\-pomosh\\.ru break:403 Forbidden\nroute-referer = (?i)remont\\-fridge\\-tv\\.ru break:403 Forbidden\nroute-referer = (?i)remont\\-komputerov\\-notebook\\.ru break:403 Forbidden\nroute-referer = (?i)remont\\-kvartirspb\\.com break:403 Forbidden\nroute-referer = (?i)remont\\-mobile\\-phones\\.ru break:403 Forbidden\nroute-referer = (?i)remont\\-ustanovka\\-tehniki\\.ru break:403 Forbidden\nroute-referer = (?i)remontgruzovik\\.ru break:403 Forbidden\nroute-referer = (?i)remontvau\\.ru break:403 Forbidden\nroute-referer = (?i)remote\\-dba\\.de break:403 Forbidden\nroute-referer = (?i)remotecomputingservices\\.net break:403 Forbidden\nroute-referer = (?i)rent2spb\\.ru break:403 Forbidden\nroute-referer = (?i)rentalmaty\\.kz break:403 Forbidden\nroute-referer = (?i)replica\\-watch\\.ru break:403 Forbidden\nroute-referer = (?i)replicaclub\\.ru break:403 Forbidden\nroute-referer = (?i)research\\.ifmo\\.ru break:403 Forbidden\nroute-referer = (?i)resell\\-seo\\-services\\.com break:403 Forbidden\nroute-referer = (?i)resellerclub\\.com break:403 Forbidden\nroute-referer = (?i)residualforlife\\.com break:403 Forbidden\nroute-referer = (?i)responsive\\-test\\.net break:403 Forbidden\nroute-referer = (?i)respublica\\-otel\\.ru break:403 Forbidden\nroute-referer = (?i)resurs\\-2012\\.ru break:403 Forbidden\nroute-referer = (?i)retreatia\\.com break:403 Forbidden\nroute-referer = (?i)reversing\\.cc break:403 Forbidden\nroute-referer = (?i)revolgc\\.pro break:403 Forbidden\nroute-referer = (?i)reyel1985\\.webnode\\.fr break:403 Forbidden\nroute-referer = (?i)rezeptiblud\\.ru break:403 Forbidden\nroute-referer = (?i)rfavon\\.ru break:403 Forbidden\nroute-referer = (?i)rfd\\-split\\.hr break:403 Forbidden\nroute-referer = (?i)rfesc\\.net break:403 Forbidden\nroute-referer = (?i)rialp\\.getenjoyment\\.net break:403 Forbidden\nroute-referer = (?i)richinvestmonitor\\.com break:403 Forbidden\nroute-referer = (?i)rida\\.tokyo break:403 Forbidden\nroute-referer = (?i)riedismall\\.xyz break:403 Forbidden\nroute-referer = (?i)rietisvi\\.co break:403 Forbidden\nroute-referer = (?i)rightenergysolutions\\.com\\.au break:403 Forbidden\nroute-referer = (?i)ring4rhino\\.com break:403 Forbidden\nroute-referer = (?i)ringporno\\.com break:403 Forbidden\nroute-referer = (?i)rique\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)risparmiocasa\\.bz\\.it break:403 Forbidden\nroute-referer = (?i)rkmbonline\\.xyz break:403 Forbidden\nroute-referer = (?i)robocheck\\.info break:403 Forbidden\nroute-referer = (?i)robot\\-forex\\.biz break:403 Forbidden\nroute-referer = (?i)roleforum\\.ru break:403 Forbidden\nroute-referer = (?i)roma\\-kukareku\\.livejournal\\.com break:403 Forbidden\nroute-referer = (?i)roof\\-city\\.ru break:403 Forbidden\nroute-referer = (?i)room\\-mebel\\.ru break:403 Forbidden\nroute-referer = (?i)ros\\-ctm\\.ru break:403 Forbidden\nroute-referer = (?i)rospromtest\\.ru break:403 Forbidden\nroute-referer = (?i)rossanasaavedra\\.net break:403 Forbidden\nroute-referer = (?i)rossmark\\.ru break:403 Forbidden\nroute-referer = (?i)rostov\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)royal\\-betting\\.net break:403 Forbidden\nroute-referer = (?i)royal\\-casino\\.online break:403 Forbidden\nroute-referer = (?i)royal\\-casino\\.ru break:403 Forbidden\nroute-referer = (?i)royal\\-casinos\\.online break:403 Forbidden\nroute-referer = (?i)royal\\-casinos\\.ru break:403 Forbidden\nroute-referer = (?i)royal\\-cazino\\.online break:403 Forbidden\nroute-referer = (?i)royal\\-cazino\\.ru break:403 Forbidden\nroute-referer = (?i)royal\\-investments\\.net break:403 Forbidden\nroute-referer = (?i)rozalli\\.com break:403 Forbidden\nroute-referer = (?i)roznica\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)rp9\\.ru break:403 Forbidden\nroute-referer = (?i)rrutw\\.com break:403 Forbidden\nroute-referer = (?i)rspectr\\.com break:403 Forbidden\nroute-referer = (?i)ru\\-lk\\-rt\\.ru break:403 Forbidden\nroute-referer = (?i)ru\\-onion\\.com break:403 Forbidden\nroute-referer = (?i)ru\\-online\\-sberbank\\.ru break:403 Forbidden\nroute-referer = (?i)ruex\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)rufreechats\\.com break:403 Forbidden\nroute-referer = (?i)ruhydraru\\.ru break:403 Forbidden\nroute-referer = (?i)ruinfocomp\\.ru break:403 Forbidden\nroute-referer = (?i)rulate\\.ru break:403 Forbidden\nroute-referer = (?i)rumamba\\.com break:403 Forbidden\nroute-referer = (?i)runetki\\-online\\.net break:403 Forbidden\nroute-referer = (?i)runovschool\\.ua break:403 Forbidden\nroute-referer = (?i)runstocks\\.com break:403 Forbidden\nroute-referer = (?i)rupolitshow\\.ru break:403 Forbidden\nroute-referer = (?i)rus\\-lit\\.com break:403 Forbidden\nroute-referer = (?i)rus\\-teh\\.narod\\.ru break:403 Forbidden\nroute-referer = (?i)ruscams\\-com\\.ru break:403 Forbidden\nroute-referer = (?i)ruscopybook\\.com break:403 Forbidden\nroute-referer = (?i)rusenvironmental\\.net break:403 Forbidden\nroute-referer = (?i)rusexy\\.xyz break:403 Forbidden\nroute-referer = (?i)rusoft\\-zone\\.ru break:403 Forbidden\nroute-referer = (?i)ruspoety\\.ru break:403 Forbidden\nroute-referer = (?i)russia\\-tao\\.ru break:403 Forbidden\nroute-referer = (?i)russia\\-today\\-video\\.ru break:403 Forbidden\nroute-referer = (?i)russian\\-postindex\\.ru break:403 Forbidden\nroute-referer = (?i)russian\\-translator\\.com break:403 Forbidden\nroute-referer = (?i)russian\\-videochats\\.ru break:403 Forbidden\nroute-referer = (?i)russintv\\.fr break:403 Forbidden\nroute-referer = (?i)russkie\\-sochineniya\\.ru break:403 Forbidden\nroute-referer = (?i)russkoe\\-zdorovie\\.ru break:403 Forbidden\nroute-referer = (?i)rustag\\.ru break:403 Forbidden\nroute-referer = (?i)rutor\\.group break:403 Forbidden\nroute-referer = (?i)rvtv\\.ru break:403 Forbidden\nroute-referer = (?i)rxshop\\.md break:403 Forbidden\nroute-referer = (?i)rybalka\\-opt\\.ru break:403 Forbidden\nroute-referer = (?i)s\\-forum\\.biz break:403 Forbidden\nroute-referer = (?i)s\\-luna\\.me break:403 Forbidden\nroute-referer = (?i)sabaapress\\.com break:403 Forbidden\nroute-referer = (?i)sabinablog\\.xyz break:403 Forbidden\nroute-referer = (?i)sack\\.net break:403 Forbidden\nroute-referer = (?i)sad\\-torg\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)sady\\-urala\\.ru break:403 Forbidden\nroute-referer = (?i)sahohev\\.000host\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)saitevpatorii\\.com break:403 Forbidden\nroute-referer = (?i)sakhboard\\.ru break:403 Forbidden\nroute-referer = (?i)sale\\-japan\\.com break:403 Forbidden\nroute-referer = (?i)saletool\\.ru break:403 Forbidden\nroute-referer = (?i)saltspray\\.ru break:403 Forbidden\nroute-referer = (?i)salutmontreal\\.com break:403 Forbidden\nroute-referer = (?i)samanthablog\\.online break:403 Forbidden\nroute-referer = (?i)samara\\-airport\\.com break:403 Forbidden\nroute-referer = (?i)samara\\-comfort\\.ru break:403 Forbidden\nroute-referer = (?i)samchist\\.ru break:403 Forbidden\nroute-referer = (?i)samlaurabrown\\.top break:403 Forbidden\nroute-referer = (?i)samo\\-soznanie\\.ru break:403 Forbidden\nroute-referer = (?i)samogonius\\.ru break:403 Forbidden\nroute-referer = (?i)sanatorrii\\.ru break:403 Forbidden\nroute-referer = (?i)sanjosestartups\\.com break:403 Forbidden\nroute-referer = (?i)santaren\\.by break:403 Forbidden\nroute-referer = (?i)santasgift\\.ml break:403 Forbidden\nroute-referer = (?i)santechnik\\.jimdo\\.com break:403 Forbidden\nroute-referer = (?i)santehnovich\\.ru break:403 Forbidden\nroute-referer = (?i)sapaship\\.ru break:403 Forbidden\nroute-referer = (?i)sarafangel\\.ru break:403 Forbidden\nroute-referer = (?i)sarahmilne\\.top break:403 Forbidden\nroute-referer = (?i)saratov\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)sarf3omlat\\.com break:403 Forbidden\nroute-referer = (?i)sashagreyblog\\.ga break:403 Forbidden\nroute-referer = (?i)saudegoods\\.xyz break:403 Forbidden\nroute-referer = (?i)sauna\\-v\\-ufe\\.ru break:403 Forbidden\nroute-referer = (?i)sauni\\-lipetsk\\.ru break:403 Forbidden\nroute-referer = (?i)sauni\\-moskva\\.ru break:403 Forbidden\nroute-referer = (?i)savetubevideo\\.com break:403 Forbidden\nroute-referer = (?i)savetubevideo\\.info break:403 Forbidden\nroute-referer = (?i)savne\\.org break:403 Forbidden\nroute-referer = (?i)sax\\-sex\\.com break:403 Forbidden\nroute-referer = (?i)sbdl\\.no break:403 Forbidden\nroute-referer = (?i)sbornik\\-zakonov\\.ru break:403 Forbidden\nroute-referer = (?i)sc\\-specialhost\\.com break:403 Forbidden\nroute-referer = (?i)scanner\\-alex\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-alexa\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-andrew\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-barak\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-brian\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-don\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-donald\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-elena\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-fred\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-george\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-irvin\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-ivan\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-jack\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-jane\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-jess\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-jessica\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-john\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-josh\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-julia\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-julianna\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-margo\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-mark\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-marwin\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-mary\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-nelson\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-olga\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-viktor\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-walt\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-walter\\.top break:403 Forbidden\nroute-referer = (?i)scanner\\-willy\\.top break:403 Forbidden\nroute-referer = (?i)scansafe\\.net break:403 Forbidden\nroute-referer = (?i)scat\\.porn break:403 Forbidden\nroute-referer = (?i)scenarii\\-1\\-sentyabrya\\.uroki\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)school\\-diplomat\\.ru break:403 Forbidden\nroute-referer = (?i)sciedsale\\.xyz break:403 Forbidden\nroute-referer = (?i)score\\-prime\\-web\\-service\\.stream break:403 Forbidden\nroute-referer = (?i)screen\\-led\\.ru break:403 Forbidden\nroute-referer = (?i)screentoolkit\\.com break:403 Forbidden\nroute-referer = (?i)scripted\\.com break:403 Forbidden\nroute-referer = (?i)sdelai\\-prosto\\.ru break:403 Forbidden\nroute-referer = (?i)sdelatmebel\\.ru break:403 Forbidden\nroute-referer = (?i)sdi\\-pme\\.com break:403 Forbidden\nroute-referer = (?i)search\\-error\\.com break:403 Forbidden\nroute-referer = (?i)search\\-helper\\.ru break:403 Forbidden\nroute-referer = (?i)searchencrypt\\.com break:403 Forbidden\nroute-referer = (?i)searchlock\\.com break:403 Forbidden\nroute-referer = (?i)seccioncontrabajo\\.com break:403 Forbidden\nroute-referer = (?i)secret\\.xn\\-\\-oogle\\-wmc\\.com break:403 Forbidden\nroute-referer = (?i)secretscook\\.ru break:403 Forbidden\nroute-referer = (?i)security\\-corporation\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)securityallianceservices\\.com break:403 Forbidden\nroute-referer = (?i)see\\-your\\-website\\-here\\.com break:403 Forbidden\nroute-referer = (?i)seekanvdoo22\\.live break:403 Forbidden\nroute-referer = (?i)seisasale\\.xyz break:403 Forbidden\nroute-referer = (?i)seksotur\\.ru break:403 Forbidden\nroute-referer = (?i)sel\\-hoz\\.com break:403 Forbidden\nroute-referer = (?i)selfhotdog\\.com break:403 Forbidden\nroute-referer = (?i)sell\\-fb\\-group\\-here\\.com break:403 Forbidden\nroute-referer = (?i)semalt\\.com break:403 Forbidden\nroute-referer = (?i)semalt\\.net break:403 Forbidden\nroute-referer = (?i)semalt\\.semalt\\.com break:403 Forbidden\nroute-referer = (?i)semaltmedia\\.com break:403 Forbidden\nroute-referer = (?i)semxiu\\.com break:403 Forbidden\nroute-referer = (?i)senacertificados\\.co break:403 Forbidden\nroute-referer = (?i)senger\\.atspace\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)seo\\-2\\-0\\.com break:403 Forbidden\nroute-referer = (?i)seo\\-b2b\\.com break:403 Forbidden\nroute-referer = (?i)seo\\-platform\\.com break:403 Forbidden\nroute-referer = (?i)seo\\-services\\-b2b\\.com break:403 Forbidden\nroute-referer = (?i)seo\\-services\\-wordpress\\.com break:403 Forbidden\nroute-referer = (?i)seo\\-smm\\.kz break:403 Forbidden\nroute-referer = (?i)seo\\-tips\\.top break:403 Forbidden\nroute-referer = (?i)seo\\-traffic\\.xyz break:403 Forbidden\nroute-referer = (?i)seoanalyses\\.com break:403 Forbidden\nroute-referer = (?i)seobook\\.top break:403 Forbidden\nroute-referer = (?i)seocheckupx\\.com break:403 Forbidden\nroute-referer = (?i)seocheckupx\\.net break:403 Forbidden\nroute-referer = (?i)seoexperimenty\\.ru break:403 Forbidden\nroute-referer = (?i)seojokes\\.net break:403 Forbidden\nroute-referer = (?i)seokicks\\.de break:403 Forbidden\nroute-referer = (?i)seopub\\.net break:403 Forbidden\nroute-referer = (?i)seoriseome\\.netlify\\.app break:403 Forbidden\nroute-referer = (?i)seoservices2018\\.com break:403 Forbidden\nroute-referer = (?i)serenamall\\.xyz break:403 Forbidden\nroute-referer = (?i)serialsway\\.ucoz\\.ru break:403 Forbidden\nroute-referer = (?i)serialsx\\.ru break:403 Forbidden\nroute-referer = (?i)servemlixo\\.xyz break:403 Forbidden\nroute-referer = (?i)servisural\\.ru break:403 Forbidden\nroute-referer = (?i)serw\\.clicksor\\.com break:403 Forbidden\nroute-referer = (?i)seryeznie\\-znakomstva\\.ru break:403 Forbidden\nroute-referer = (?i)setioweb\\.com break:403 Forbidden\nroute-referer = (?i)sex\\-dating\\.co break:403 Forbidden\nroute-referer = (?i)sex\\-porno\\.site break:403 Forbidden\nroute-referer = (?i)sex\\-spying\\.ru break:403 Forbidden\nroute-referer = (?i)sex\\-videochats\\.ru break:403 Forbidden\nroute-referer = (?i)sexkrasivo\\.net break:403 Forbidden\nroute-referer = (?i)sexpornotales\\.net break:403 Forbidden\nroute-referer = (?i)sexreliz\\.com break:403 Forbidden\nroute-referer = (?i)sexreliz\\.net break:403 Forbidden\nroute-referer = (?i)sexsaoy\\.com break:403 Forbidden\nroute-referer = (?i)sexuria\\.net break:403 Forbidden\nroute-referer = (?i)sexvideo\\-sex\\.com break:403 Forbidden\nroute-referer = (?i)sexvporno\\.ru break:403 Forbidden\nroute-referer = (?i)sexwife\\.net break:403 Forbidden\nroute-referer = (?i)sexy\\-girl\\-chat\\.ru break:403 Forbidden\nroute-referer = (?i)sexyali\\.com break:403 Forbidden\nroute-referer = (?i)sexyteens\\.hol\\.es break:403 Forbidden\nroute-referer = (?i)sexytrend\\.ru break:403 Forbidden\nroute-referer = (?i)sfd\\-chess\\.ru break:403 Forbidden\nroute-referer = (?i)shagtomsk\\.ru break:403 Forbidden\nroute-referer = (?i)shakhtar\\-doneck\\.ru break:403 Forbidden\nroute-referer = (?i)shamcisale\\.xyz break:403 Forbidden\nroute-referer = (?i)shanscasino1\\.ru break:403 Forbidden\nroute-referer = (?i)share\\-button\\.xyz break:403 Forbidden\nroute-referer = (?i)share\\-buttons\\-for\\-free\\.com break:403 Forbidden\nroute-referer = (?i)share\\-buttons\\.xyz break:403 Forbidden\nroute-referer = (?i)sharebutton\\.io break:403 Forbidden\nroute-referer = (?i)sharebutton\\.net break:403 Forbidden\nroute-referer = (?i)sharebutton\\.org break:403 Forbidden\nroute-referer = (?i)sharebutton\\.to break:403 Forbidden\nroute-referer = (?i)sharemyfile\\.ru break:403 Forbidden\nroute-referer = (?i)shariki\\-zuma\\-lines\\.ru break:403 Forbidden\nroute-referer = (?i)shcrose\\.com break:403 Forbidden\nroute-referer = (?i)sheki\\-spb\\.ru break:403 Forbidden\nroute-referer = (?i)shemy\\-vishivki\\.com break:403 Forbidden\nroute-referer = (?i)shiksabd\\.com break:403 Forbidden\nroute-referer = (?i)shinikiev\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)ship\\-marvel\\.co\\.ua break:403 Forbidden\nroute-referer = (?i)shisenshop\\.xyz break:403 Forbidden\nroute-referer = (?i)shisha\\-swag\\.de break:403 Forbidden\nroute-referer = (?i)shlyahten\\.ru break:403 Forbidden\nroute-referer = (?i)shnyagi\\.net break:403 Forbidden\nroute-referer = (?i)shodanhq\\.com break:403 Forbidden\nroute-referer = (?i)shop\\-electron\\.ru break:403 Forbidden\nroute-referer = (?i)shop\\-garena\\.ru break:403 Forbidden\nroute-referer = (?i)shop\\.garena\\.ru\\.com break:403 Forbidden\nroute-referer = (?i)shop\\.xz618\\.com break:403 Forbidden\nroute-referer = (?i)shop2hydra\\.com break:403 Forbidden\nroute-referer = (?i)shop4fit\\.ru break:403 Forbidden\nroute-referer = (?i)shopfishing\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)shoppinglocation\\.com break:403 Forbidden\nroute-referer = (?i)shoppingmiracles\\.co\\.uk break:403 Forbidden\nroute-referer = (?i)shoprybalka\\.ru break:403 Forbidden\nroute-referer = (?i)shops\\-ru\\.ru break:403 Forbidden\nroute-referer = (?i)shopsellcardsdumps\\.com break:403 Forbidden\nroute-referer = (?i)shopvilleroyboch\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)shopwme\\.ru break:403 Forbidden\nroute-referer = (?i)shtaketniki\\.ru break:403 Forbidden\nroute-referer = (?i)shtormmall\\.xyz break:403 Forbidden\nroute-referer = (?i)shulepov\\.ru break:403 Forbidden\nroute-referer = (?i)sib\\-kukla\\.ru break:403 Forbidden\nroute-referer = (?i)sibecoprom\\.ru break:403 Forbidden\nroute-referer = (?i)sibkukla\\.ru break:403 Forbidden\nroute-referer = (?i)sideeffectsoftizanidine\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)sign\\-service\\.ru break:403 Forbidden\nroute-referer = (?i)signx\\.info break:403 Forbidden\nroute-referer = (?i)sihugoods\\.xyz break:403 Forbidden\nroute-referer = (?i)silverage\\.ru break:403 Forbidden\nroute-referer = (?i)silvergull\\.ru break:403 Forbidden\nroute-referer = (?i)silvermature\\.net break:403 Forbidden\nroute-referer = (?i)sim\\-dealer\\.ru break:403 Forbidden\nroute-referer = (?i)sim\\-service\\.net break:403 Forbidden\nroute-referer = (?i)similarmoviesdb\\.com break:403 Forbidden\nroute-referer = (?i)simoncinicancertherapy\\.com break:403 Forbidden\nroute-referer = (?i)simple\\-share\\-buttons\\.com break:403 Forbidden\nroute-referer = (?i)simplepooltips\\.com break:403 Forbidden\nroute-referer = (?i)sims\\-sims\\.ru break:403 Forbidden\nroute-referer = (?i)sinel\\.info break:403 Forbidden\nroute-referer = (?i)sinestesia\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)singularwebs\\.net break:403 Forbidden\nroute-referer = (?i)sinhronperevod\\.ru break:403 Forbidden\nroute-referer = (?i)siongetadsincome\\.info break:403 Forbidden\nroute-referer = (?i)sirhoutlet\\.xyz break:403 Forbidden\nroute-referer = (?i)siritshop\\.xyz break:403 Forbidden\nroute-referer = (?i)sisiynas\\.ru break:403 Forbidden\nroute-referer = (?i)site\\-auditor\\.online break:403 Forbidden\nroute-referer = (?i)site\\-speed\\-check\\.site break:403 Forbidden\nroute-referer = (?i)site\\-speed\\-checker\\.site break:403 Forbidden\nroute-referer = (?i)site3\\.free\\-share\\-buttons\\.com break:403 Forbidden\nroute-referer = (?i)site5\\.com break:403 Forbidden\nroute-referer = (?i)siteexpress\\.co\\.il break:403 Forbidden\nroute-referer = (?i)siteripz\\.net break:403 Forbidden\nroute-referer = (?i)sitesadd\\.com break:403 Forbidden\nroute-referer = (?i)sitevaluation\\.com break:403 Forbidden\nroute-referer = (?i)sitevaluation\\.org break:403 Forbidden\nroute-referer = (?i)sivs\\.ru break:403 Forbidden\nroute-referer = (?i)sjmsw\\.net break:403 Forbidden\nroute-referer = (?i)sk\\.golden\\-praga\\.ru break:403 Forbidden\nroute-referer = (?i)ski\\-centers\\.com break:403 Forbidden\nroute-referer = (?i)skidku\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)skinali\\.com break:403 Forbidden\nroute-referer = (?i)skinali\\.photo\\-clip\\.ru break:403 Forbidden\nroute-referer = (?i)sklad\\-24\\.ru break:403 Forbidden\nroute-referer = (?i)skladvaz\\.ru break:403 Forbidden\nroute-referer = (?i)sky\\-mine\\.ru break:403 Forbidden\nroute-referer = (?i)skylta\\.com break:403 Forbidden\nroute-referer = (?i)sladkoevideo\\.com break:403 Forbidden\nroute-referer = (?i)slashpet\\.com break:403 Forbidden\nroute-referer = (?i)slavic\\-magic\\.ru break:403 Forbidden\nroute-referer = (?i)slavkokacunko\\.de break:403 Forbidden\nroute-referer = (?i)sledstvie\\-veli\\.net break:403 Forbidden\nroute-referer = (?i)slftsdybbg\\.ru break:403 Forbidden\nroute-referer = (?i)slkrm\\.ru break:403 Forbidden\nroute-referer = (?i)slomm\\.ru break:403 Forbidden\nroute-referer = (?i)slonechka\\.ru break:403 Forbidden\nroute-referer = (?i)sloopyjoes\\.com\\.top break:403 Forbidden\nroute-referer = (?i)slotron\\.com break:403 Forbidden\nroute-referer = (?i)slow\\-website\\.xyz break:403 Forbidden\nroute-referer = (?i)slujbauborki\\.ru break:403 Forbidden\nroute-referer = (?i)smailik\\.org break:403 Forbidden\nroute-referer = (?i)small\\-game\\.com break:403 Forbidden\nroute-referer = (?i)small\\-games\\.biz break:403 Forbidden\nroute-referer = (?i)smartpet\\.ru break:403 Forbidden\nroute-referer = (?i)smartphonediscount\\.info break:403 Forbidden\nroute-referer = (?i)sms2x2\\.ru break:403 Forbidden\nroute-referer = (?i)smstraf\\.ru break:403 Forbidden\nroute-referer = (?i)smt4\\.ru break:403 Forbidden\nroute-referer = (?i)smzt\\.shop break:403 Forbidden\nroute-referer = (?i)snabs\\.kz break:403 Forbidden\nroute-referer = (?i)snaiper\\-bg\\.net break:403 Forbidden\nroute-referer = (?i)sneakerfreaker\\.com break:403 Forbidden\nroute-referer = (?i)snegozaderzhatel\\.ru break:403 Forbidden\nroute-referer = (?i)snip\\.to break:403 Forbidden\nroute-referer = (?i)snip\\.tw break:403 Forbidden\nroute-referer = (?i)snjatie\\-geroinovoy\\-lomki\\.ru break:403 Forbidden\nroute-referer = (?i)snomer1\\.ru break:403 Forbidden\nroute-referer = (?i)snyatie\\-lomki\\-v\\-stacionare\\.ru break:403 Forbidden\nroute-referer = (?i)soaksoak\\.ru break:403 Forbidden\nroute-referer = (?i)soblaznu\\.net break:403 Forbidden\nroute-referer = (?i)soc\\-econom\\-problems\\.ru break:403 Forbidden\nroute-referer = (?i)soc\\-proof\\.su break:403 Forbidden\nroute-referer = (?i)socas\\.pluto\\.ro break:403 Forbidden\nroute-referer = (?i)sochi\\-3d\\.ru break:403 Forbidden\nroute-referer = (?i)social\\-button\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-aa\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-aaa\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-bb\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-bbb\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-cc\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-ccc\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-dd\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-ddd\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-ee\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-eee\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-ff\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-fff\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-gg\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-ggg\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-hh\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-ii\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\-iii\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\.com break:403 Forbidden\nroute-referer = (?i)social\\-buttons\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-fun\\.ru break:403 Forbidden\nroute-referer = (?i)social\\-s\\-ggg\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-s\\-hhh\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-s\\-iii\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-search\\.me break:403 Forbidden\nroute-referer = (?i)social\\-traffic\\-1\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-traffic\\-2\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-traffic\\-3\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-traffic\\-4\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-traffic\\-5\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-traffic\\-6\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-traffic\\-7\\.xyz break:403 Forbidden\nroute-referer = (?i)social\\-vestnik\\.ru break:403 Forbidden\nroute-referer = (?i)social\\-widget\\.xyz break:403 Forbidden\nroute-referer = (?i)socialbookmarksubmission\\.org break:403 Forbidden\nroute-referer = (?i)socialbutton\\.xyz break:403 Forbidden\nroute-referer = (?i)socialbuttons\\.xyz break:403 Forbidden\nroute-referer = (?i)socialine\\.net break:403 Forbidden\nroute-referer = (?i)socialseet\\.ru break:403 Forbidden\nroute-referer = (?i)socialtrade\\.biz break:403 Forbidden\nroute-referer = (?i)sofit\\-dmd\\.ru break:403 Forbidden\nroute-referer = (?i)soft\\-program\\.com break:403 Forbidden\nroute-referer = (?i)softomix\\.com break:403 Forbidden\nroute-referer = (?i)softomix\\.net break:403 Forbidden\nroute-referer = (?i)softomix\\.org break:403 Forbidden\nroute-referer = (?i)softomix\\.ru break:403 Forbidden\nroute-referer = (?i)softtor\\.com break:403 Forbidden\nroute-referer = (?i)softxaker\\.ru break:403 Forbidden\nroute-referer = (?i)sohoindia\\.net break:403 Forbidden\nroute-referer = (?i)soki\\.tv break:403 Forbidden\nroute-referer = (?i)solartek\\.ru break:403 Forbidden\nroute-referer = (?i)solitaire\\-game\\.ru break:403 Forbidden\nroute-referer = (?i)solnplast\\.ru break:403 Forbidden\nroute-referer = (?i)sonata\\-arctica\\.wz\\.cz break:403 Forbidden\nroute-referer = (?i)songoo\\.wz\\.cz break:403 Forbidden\nroute-referer = (?i)sonnikforme\\.ru break:403 Forbidden\nroute-referer = (?i)sonyelektronik\\.com break:403 Forbidden\nroute-referer = (?i)sosdepotdebilan\\.com break:403 Forbidden\nroute-referer = (?i)sotkal\\.lark\\.ru break:403 Forbidden\nroute-referer = (?i)soundfrost\\.org break:403 Forbidden\nroute-referer = (?i)soup\\.io break:403 Forbidden\nroute-referer = (?i)souvenirua\\.com break:403 Forbidden\nroute-referer = (?i)sovetogorod\\.ru break:403 Forbidden\nroute-referer = (?i)sovetskie\\-plakaty\\.ru break:403 Forbidden\nroute-referer = (?i)soviet\\-portal\\.do\\.am break:403 Forbidden\nroute-referer = (?i)sowhoz\\.ru break:403 Forbidden\nroute-referer = (?i)soyuzexpedition\\.ru break:403 Forbidden\nroute-referer = (?i)sp\\-laptop\\.ru break:403 Forbidden\nroute-referer = (?i)sp\\-zakupki\\.ru break:403 Forbidden\nroute-referer = (?i)space2019\\.top break:403 Forbidden\nroute-referer = (?i)spacebarnot\\.work break:403 Forbidden\nroute-referer = (?i)spain\\-poetry\\.com break:403 Forbidden\nroute-referer = (?i)spartania\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)spb\\-plitka\\.ru break:403 Forbidden\nroute-referer = (?i)spb\\-scenar\\.ru break:403 Forbidden\nroute-referer = (?i)spb\\.ru break:403 Forbidden\nroute-referer = (?i)spbchampionat\\.ru break:403 Forbidden\nroute-referer = (?i)special\\-porn\\.com break:403 Forbidden\nroute-referer = (?i)specstroy36\\.ru break:403 Forbidden\nroute-referer = (?i)speedup\\-my\\.site break:403 Forbidden\nroute-referer = (?i)spin2016\\.cf break:403 Forbidden\nroute-referer = (?i)sport\\-video\\-obzor\\.ru break:403 Forbidden\nroute-referer = (?i)sportbetfair\\.com break:403 Forbidden\nroute-referer = (?i)sportobzori\\.ru break:403 Forbidden\nroute-referer = (?i)sportwizard\\.ru break:403 Forbidden\nroute-referer = (?i)spravka130\\.ru break:403 Forbidden\nroute-referer = (?i)spravkavspb\\.net break:403 Forbidden\nroute-referer = (?i)spravkavspb\\.work break:403 Forbidden\nroute-referer = (?i)sprawka\\-help\\.com break:403 Forbidden\nroute-referer = (?i)spscmall\\.xyz break:403 Forbidden\nroute-referer = (?i)spuemonti\\.net break:403 Forbidden\nroute-referer = (?i)spy\\-app\\.info break:403 Forbidden\nroute-referer = (?i)spy\\-sts\\.com break:403 Forbidden\nroute-referer = (?i)sqadia\\.com break:403 Forbidden\nroute-referer = (?i)squarespace\\.top break:403 Forbidden\nroute-referer = (?i)squidoo\\.com break:403 Forbidden\nroute-referer = (?i)srecorder\\.com break:403 Forbidden\nroute-referer = (?i)sribno\\.net break:403 Forbidden\nroute-referer = (?i)ssn\\.is break:403 Forbidden\nroute-referer = (?i)sssexxx\\.net break:403 Forbidden\nroute-referer = (?i)ssve\\.ru break:403 Forbidden\nroute-referer = (?i)st\\-komf\\.ru break:403 Forbidden\nroute-referer = (?i)sta\\-grand\\.ru break:403 Forbidden\nroute-referer = (?i)stairliftstrue\\.com break:403 Forbidden\nroute-referer = (?i)star61\\.de break:403 Forbidden\nroute-referer = (?i)stardevine\\.com break:403 Forbidden\nroute-referer = (?i)stariy\\-baku\\.com break:403 Forbidden\nroute-referer = (?i)start\\.myplaycity\\.com break:403 Forbidden\nroute-referer = (?i)startraffic\\.online break:403 Forbidden\nroute-referer = (?i)startufa\\.ru break:403 Forbidden\nroute-referer = (?i)startwp\\.org break:403 Forbidden\nroute-referer = (?i)stat\\.lviv\\.ua break:403 Forbidden\nroute-referer = (?i)statashop\\.xyz break:403 Forbidden\nroute-referer = (?i)static\\.seders\\.website break:403 Forbidden\nroute-referer = (?i)statustroll\\.com break:403 Forbidden\nroute-referer = (?i)stauga\\.altervista\\.org break:403 Forbidden\nroute-referer = (?i)stavimdveri\\.ru break:403 Forbidden\nroute-referer = (?i)steame\\.ru break:403 Forbidden\nroute-referer = (?i)steelmaster\\.lv break:403 Forbidden\nroute-referer = (?i)stiralkovich\\.ru break:403 Forbidden\nroute-referer = (?i)stocktwists\\.com break:403 Forbidden\nroute-referer = (?i)stoki\\.ru break:403 Forbidden\nroute-referer = (?i)stoletie\\.ru break:403 Forbidden\nroute-referer = (?i)stoliar\\.org break:403 Forbidden\nroute-referer = (?i)stomatologi\\.moscow break:403 Forbidden\nroute-referer = (?i)stop\\-nark\\.ru break:403 Forbidden\nroute-referer = (?i)stop\\-zavisimost\\.com break:403 Forbidden\nroute-referer = (?i)store\\-rx\\.com break:403 Forbidden\nroute-referer = (?i)strady\\.org\\.ua break:403 Forbidden\nroute-referer = (?i)strana\\-krasoty\\.ru break:403 Forbidden\nroute-referer = (?i)strana\\-solnca\\.ru break:403 Forbidden\nroute-referer = (?i)stream\\-tds\\.com break:403 Forbidden\nroute-referer = (?i)streetfire\\.net break:403 Forbidden\nroute-referer = (?i)streetfooduncovered\\.com break:403 Forbidden\nroute-referer = (?i)streha\\-metalko\\.si break:403 Forbidden\nroute-referer = (?i)strigkaomsk\\.ru break:403 Forbidden\nroute-referer = (?i)stroi\\-24\\.ru break:403 Forbidden\nroute-referer = (?i)stroicol\\.net break:403 Forbidden\nroute-referer = (?i)stroimajor\\.ru break:403 Forbidden\nroute-referer = (?i)stroiminsk\\.com break:403 Forbidden\nroute-referer = (?i)stroiminsk\\.org break:403 Forbidden\nroute-referer = (?i)stromerrealty\\.com break:403 Forbidden\nroute-referer = (?i)strongholdsb\\.ru break:403 Forbidden\nroute-referer = (?i)strongtools\\.ga break:403 Forbidden\nroute-referer = (?i)stroy\\-matrix\\.ru break:403 Forbidden\nroute-referer = (?i)stroyalp\\.ru break:403 Forbidden\nroute-referer = (?i)stroydetali\\.ru break:403 Forbidden\nroute-referer = (?i)stroyka\\-gid\\.ru break:403 Forbidden\nroute-referer = (?i)stroyka47\\.ru break:403 Forbidden\nroute-referer = (?i)stroymonolit\\.su break:403 Forbidden\nroute-referer = (?i)studentguide\\.ru break:403 Forbidden\nroute-referer = (?i)studiofaca\\.com break:403 Forbidden\nroute-referer = (?i)stuff\\-about\\-money\\.com break:403 Forbidden\nroute-referer = (?i)stuffhydra\\.com break:403 Forbidden\nroute-referer = (?i)stylecaster\\.top break:403 Forbidden\nroute-referer = (?i)styro\\.ru break:403 Forbidden\nroute-referer = (?i)su1ufa\\.ru break:403 Forbidden\nroute-referer = (?i)success\\-seo\\.com break:403 Forbidden\nroute-referer = (?i)suckoutlet\\.xyz break:403 Forbidden\nroute-referer = (?i)sudachitravel\\.com break:403 Forbidden\nroute-referer = (?i)sugarkun\\.com break:403 Forbidden\nroute-referer = (?i)sugvant\\.ru break:403 Forbidden\nroute-referer = (?i)sundrugstore\\.com break:403 Forbidden\nroute-referer = (?i)super\\-seo\\-guru\\.com break:403 Forbidden\nroute-referer = (?i)superiends\\.org break:403 Forbidden\nroute-referer = (?i)supermama\\.top break:403 Forbidden\nroute-referer = (?i)supermesta\\.ru break:403 Forbidden\nroute-referer = (?i)supermodni\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)supernew\\.org break:403 Forbidden\nroute-referer = (?i)superoboi\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)superpages\\.com break:403 Forbidden\nroute-referer = (?i)superslots\\-casino\\.online break:403 Forbidden\nroute-referer = (?i)superslots\\-casino\\.site break:403 Forbidden\nroute-referer = (?i)superslots\\-cazino\\.online break:403 Forbidden\nroute-referer = (?i)superslots\\-cazino\\.site break:403 Forbidden\nroute-referer = (?i)superslotz\\-casino\\.site break:403 Forbidden\nroute-referer = (?i)superslotz\\-cazino\\.site break:403 Forbidden\nroute-referer = (?i)supertraffic\\.xyz break:403 Forbidden\nroute-referer = (?i)supervesti\\.ru break:403 Forbidden\nroute-referer = (?i)surflinksmedical\\.com break:403 Forbidden\nroute-referer = (?i)susanholtphotography\\.com break:403 Forbidden\nroute-referer = (?i)suzanneboswell\\.top break:403 Forbidden\nroute-referer = (?i)svadba\\-teplohod\\.ru break:403 Forbidden\nroute-referer = (?i)svarbit\\.com break:403 Forbidden\nroute-referer = (?i)svarog\\-jez\\.com break:403 Forbidden\nroute-referer = (?i)svensk\\-poesi\\.com break:403 Forbidden\nroute-referer = (?i)svet\\-depo\\.ru break:403 Forbidden\nroute-referer = (?i)svetka\\.info break:403 Forbidden\nroute-referer = (?i)svetlotorg\\.ru break:403 Forbidden\nroute-referer = (?i)svetoch\\.moscow break:403 Forbidden\nroute-referer = (?i)svetodiodoff\\.ru break:403 Forbidden\nroute-referer = (?i)svoimi\\-rukamy\\.com break:403 Forbidden\nroute-referer = (?i)svs\\-avto\\.com break:403 Forbidden\nroute-referer = (?i)swagbucks\\.com break:403 Forbidden\nroute-referer = (?i)swaplab\\.io break:403 Forbidden\nroute-referer = (?i)sweet\\.tv break:403 Forbidden\nroute-referer = (?i)sygraem\\.com break:403 Forbidden\nroute-referer = (?i)szansadlarolnikow\\.com\\.pl break:403 Forbidden\nroute-referer = (?i)t\\-machinery\\.ru break:403 Forbidden\nroute-referer = (?i)t\\-rec\\.su break:403 Forbidden\nroute-referer = (?i)t3chtonic\\.com break:403 Forbidden\nroute-referer = (?i)taartstore\\.xyz break:403 Forbidden\nroute-referer = (?i)tagmeanvice\\.live break:403 Forbidden\nroute-referer = (?i)taihouse\\.ru break:403 Forbidden\nroute-referer = (?i)tam\\-gde\\-more\\.ru break:403 Forbidden\nroute-referer = (?i)tamada69\\.com break:403 Forbidden\nroute-referer = (?i)tammyblog\\.online break:403 Forbidden\nroute-referer = (?i)targetpay\\.nl break:403 Forbidden\nroute-referer = (?i)tasteidea\\.com break:403 Forbidden\nroute-referer = (?i)tastyfoodideas\\.com break:403 Forbidden\nroute-referer = (?i)tattoo\\-stickers\\.ru break:403 Forbidden\nroute-referer = (?i)tattoo33\\.ru break:403 Forbidden\nroute-referer = (?i)tattooha\\.com break:403 Forbidden\nroute-referer = (?i)taximytishi\\.ru break:403 Forbidden\nroute-referer = (?i)tccp\\.xyz break:403 Forbidden\nroute-referer = (?i)tcenavoprosa\\.ru break:403 Forbidden\nroute-referer = (?i)tcsinksale\\.xyz break:403 Forbidden\nroute-referer = (?i)tcyh\\.net break:403 Forbidden\nroute-referer = (?i)td\\-33\\.ru break:403 Forbidden\nroute-referer = (?i)td\\-abs\\.ru break:403 Forbidden\nroute-referer = (?i)td\\-l\\-market\\.ru break:403 Forbidden\nroute-referer = (?i)td\\-perimetr\\.ru break:403 Forbidden\nroute-referer = (?i)tdbatik\\.com break:403 Forbidden\nroute-referer = (?i)tds\\-west\\.ru break:403 Forbidden\nroute-referer = (?i)teastory\\.co break:403 Forbidden\nroute-referer = (?i)techart24\\.com break:403 Forbidden\nroute-referer = (?i)technika\\-remont\\.ru break:403 Forbidden\nroute-referer = (?i)technopellet\\.gr break:403 Forbidden\nroute-referer = (?i)tecspb\\.ru break:403 Forbidden\nroute-referer = (?i)tedxrj\\.com break:403 Forbidden\nroute-referer = (?i)tedy\\.su break:403 Forbidden\nroute-referer = (?i)teedle\\.co break:403 Forbidden\nroute-referer = (?i)tehngr\\.ru break:403 Forbidden\nroute-referer = (?i)telegramdownload10\\.com break:403 Forbidden\nroute-referer = (?i)telesvoboda\\.ru break:403 Forbidden\nroute-referer = (?i)telfer\\.ru break:403 Forbidden\nroute-referer = (?i)teman\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)tennis\\-bet\\.ru break:403 Forbidden\nroute-referer = (?i)tentcomplekt\\.ru break:403 Forbidden\nroute-referer = (?i)teplohod\\-gnezdo\\.ru break:403 Forbidden\nroute-referer = (?i)teplokomplex\\.ru break:403 Forbidden\nroute-referer = (?i)teplolidoma\\.ru break:403 Forbidden\nroute-referer = (?i)terapist\\.xyz break:403 Forbidden\nroute-referer = (?i)teresablog\\.top break:403 Forbidden\nroute-referer = (?i)tesla\\-audit\\.ru break:403 Forbidden\nroute-referer = (?i)teslathemes\\.com break:403 Forbidden\nroute-referer = (?i)test\\-extra\\-full\\-stack\\-services\\.stream break:403 Forbidden\nroute-referer = (?i)test\\-prime\\-smm\\-service\\.review break:403 Forbidden\nroute-referer = (?i)test\\.xyz break:403 Forbidden\nroute-referer = (?i)texbaza\\.by break:403 Forbidden\nroute-referer = (?i)texnika\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)tgsubs\\.com break:403 Forbidden\nroute-referer = (?i)tgtclick\\.com break:403 Forbidden\nroute-referer = (?i)thaimassage\\-slon\\.ru break:403 Forbidden\nroute-referer = (?i)thaoduoctoc\\.com break:403 Forbidden\nroute-referer = (?i)the\\-torrent\\-tracker\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)the\\-usa\\-games\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)the\\-world\\.ru break:403 Forbidden\nroute-referer = (?i)theautoprofit\\.ml break:403 Forbidden\nroute-referer = (?i)thebluenoodle\\.com break:403 Forbidden\nroute-referer = (?i)thecoral\\.com\\.br break:403 Forbidden\nroute-referer = (?i)thedownloadfreeonlinegames\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)thedownloadfromwarez\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)thefds\\.net break:403 Forbidden\nroute-referer = (?i)thegreensociety\\.net break:403 Forbidden\nroute-referer = (?i)theguardlan\\.com break:403 Forbidden\nroute-referer = (?i)theheroes\\.ru break:403 Forbidden\nroute-referer = (?i)thejournal\\.ru break:403 Forbidden\nroute-referer = (?i)thelotter\\.su break:403 Forbidden\nroute-referer = (?i)thepokertimer\\.com break:403 Forbidden\nroute-referer = (?i)therealshop\\.exaccess\\.com break:403 Forbidden\nroute-referer = (?i)thesensehousehotel\\.com break:403 Forbidden\nroute-referer = (?i)thesmartsearch\\.net break:403 Forbidden\nroute-referer = (?i)thewomenlife\\.com break:403 Forbidden\nroute-referer = (?i)thiegs\\.reco\\.ws break:403 Forbidden\nroute-referer = (?i)thin\\.me\\.pn break:403 Forbidden\nroute-referer = (?i)tiandeural\\.ru break:403 Forbidden\nroute-referer = (?i)tiens2010\\.ru break:403 Forbidden\nroute-referer = (?i)timeallnews\\.ru break:403 Forbidden\nroute-referer = (?i)timer4web\\.com break:403 Forbidden\nroute-referer = (?i)timetorelax\\.biz break:403 Forbidden\nroute-referer = (?i)timmy\\.by break:403 Forbidden\nroute-referer = (?i)tip8\\.co break:403 Forbidden\nroute-referer = (?i)tizanidine4mg\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidine4mgprice\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidine4mgstreetprice\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidine4mgstreetvalue\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidine4mgtablets\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidine4mguses\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidine6mg\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineandcipro\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineandgabapentin\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineandhydrocodone\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinecapsules\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinecost\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinedosage\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinedosageforsleep\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinedruginteractions\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinedrugtest\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineduringpregnancy\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinefibromyalgia\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineformigraines\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineforopiatewithdrawal\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehcl2mg\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehcl2mgsideeffects\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehcl2mgtablet\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehcl4mgisitanarcotic\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehcl4mgtab\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehcl4mgtabinfo\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehcl4mgtablet\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehclsideeffects\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehydrochloride2mg\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineinfo\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineingredients\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineinteractions\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinemusclerelaxant\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinenarcotic\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineonline\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineoral\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineorflexeril\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinepain\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinepills\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinerecreationaluse\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinerestlesslegsyndrome\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineshowupondrugtest\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinesideeffects\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinesideeffectsweightloss\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinesleepaid\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinestreetprice\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinestreetvalue\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidineusedfor\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinevscyclobenzaprine\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinevssoma\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinevsvalium\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinewithdrawal\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinewithdrawalsymptoms\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tizanidinezanaflex\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)tkanorganizma\\.ru break:403 Forbidden\nroute-referer = (?i)tksn\\.ru break:403 Forbidden\nroute-referer = (?i)tocan\\.biz break:403 Forbidden\nroute-referer = (?i)tocan\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)tokshow\\.online break:403 Forbidden\nroute-referer = (?i)toloka\\.hurtom\\.com break:403 Forbidden\nroute-referer = (?i)tomatis\\.gospartner\\.com break:403 Forbidden\nroute-referer = (?i)tomck\\.com break:403 Forbidden\nroute-referer = (?i)tommysautomotivecare\\.com break:403 Forbidden\nroute-referer = (?i)top\\-gan\\.ru break:403 Forbidden\nroute-referer = (?i)top\\-instagram\\.info break:403 Forbidden\nroute-referer = (?i)top\\-kasyna\\.com break:403 Forbidden\nroute-referer = (?i)top\\-l2\\.com break:403 Forbidden\nroute-referer = (?i)top1\\-seo\\-service\\.com break:403 Forbidden\nroute-referer = (?i)top10\\-online\\-games\\.com break:403 Forbidden\nroute-referer = (?i)top10\\-way\\.com break:403 Forbidden\nroute-referer = (?i)top250movies\\.ru break:403 Forbidden\nroute-referer = (?i)top8\\.co break:403 Forbidden\nroute-referer = (?i)topgurudeals\\.com break:403 Forbidden\nroute-referer = (?i)topmebeltorg\\.ru break:403 Forbidden\nroute-referer = (?i)topmira\\.com break:403 Forbidden\nroute-referer = (?i)toposvita\\.com break:403 Forbidden\nroute-referer = (?i)topquality\\.cf break:403 Forbidden\nroute-referer = (?i)topseoservices\\.co break:403 Forbidden\nroute-referer = (?i)topshef\\.ru break:403 Forbidden\nroute-referer = (?i)topvidos\\.ru break:403 Forbidden\nroute-referer = (?i)tor\\.vc break:403 Forbidden\nroute-referer = (?i)torobrand\\.com break:403 Forbidden\nroute-referer = (?i)torontoplumbinggroup\\.com break:403 Forbidden\nroute-referer = (?i)torospa\\.ru break:403 Forbidden\nroute-referer = (?i)torrentgamer\\.net break:403 Forbidden\nroute-referer = (?i)torrentred\\.games break:403 Forbidden\nroute-referer = (?i)torrents\\-tracker\\.com break:403 Forbidden\nroute-referer = (?i)torrnada\\.ru break:403 Forbidden\nroute-referer = (?i)torture\\.ml break:403 Forbidden\nroute-referer = (?i)totppgoods\\.xyz break:403 Forbidden\nroute-referer = (?i)touchmods\\.fr break:403 Forbidden\nroute-referer = (?i)tourburlington\\.com break:403 Forbidden\nroute-referer = (?i)tovaroboom\\.vast\\.ru break:403 Forbidden\nroute-referer = (?i)tpu\\.ru break:403 Forbidden\nroute-referer = (?i)track\\-rankings\\.online break:403 Forbidden\nroute-referer = (?i)tracker24\\-gps\\.ru break:403 Forbidden\nroute-referer = (?i)trade365\\.org break:403 Forbidden\nroute-referer = (?i)traderzplanet\\.co\\.in break:403 Forbidden\nroute-referer = (?i)trafaret74\\.ru break:403 Forbidden\nroute-referer = (?i)trafers\\.com break:403 Forbidden\nroute-referer = (?i)traffic\\-cash\\.xyz break:403 Forbidden\nroute-referer = (?i)traffic\\-paradise\\.org break:403 Forbidden\nroute-referer = (?i)traffic2cash\\.net break:403 Forbidden\nroute-referer = (?i)traffic2cash\\.org break:403 Forbidden\nroute-referer = (?i)traffic2cash\\.xyz break:403 Forbidden\nroute-referer = (?i)traffic2money\\.com break:403 Forbidden\nroute-referer = (?i)trafficbot\\.life break:403 Forbidden\nroute-referer = (?i)trafficbot4free\\.xyz break:403 Forbidden\nroute-referer = (?i)trafficdrive\\.club break:403 Forbidden\nroute-referer = (?i)trafficgenius\\.xyz break:403 Forbidden\nroute-referer = (?i)trafficmonetize\\.org break:403 Forbidden\nroute-referer = (?i)trafficmonetizer\\.org break:403 Forbidden\nroute-referer = (?i)trafficstudio\\.club break:403 Forbidden\nroute-referer = (?i)traffictomoney\\.com break:403 Forbidden\nroute-referer = (?i)trahvid\\.com break:403 Forbidden\nroute-referer = (?i)tramadolandtizanidine\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)transit\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)transsex\\-videochat\\.ru break:403 Forbidden\nroute-referer = (?i)traphouselatino\\.net break:403 Forbidden\nroute-referer = (?i)travel\\-semantics\\.com break:403 Forbidden\nroute-referer = (?i)travgoods\\.xyz break:403 Forbidden\nroute-referer = (?i)traxdom\\.ru break:403 Forbidden\nroute-referer = (?i)trex\\-casino\\.com break:403 Forbidden\nroute-referer = (?i)trex\\.casino break:403 Forbidden\nroute-referer = (?i)tri\\-slona\\.org break:403 Forbidden\nroute-referer = (?i)trick\\-negotiation\\-cup\\-wonder\\.com break:403 Forbidden\nroute-referer = (?i)tricolortv\\-online\\.com break:403 Forbidden\nroute-referer = (?i)trieste\\.io break:403 Forbidden\nroute-referer = (?i)trion\\.od\\.au break:403 Forbidden\nroute-referer = (?i)trion\\.od\\.ua break:403 Forbidden\nroute-referer = (?i)triumf\\-realty\\.ru break:403 Forbidden\nroute-referer = (?i)trk\\-4\\.net break:403 Forbidden\nroute-referer = (?i)trubywriting\\.com break:403 Forbidden\nroute-referer = (?i)truck\\-spite\\-lawyer\\-activity\\.top break:403 Forbidden\nroute-referer = (?i)truebeauty\\.cc break:403 Forbidden\nroute-referer = (?i)tsatu\\.edu\\.ua break:403 Forbidden\nroute-referer = (?i)tsc\\-koleso\\.ru break:403 Forbidden\nroute-referer = (?i)tsstcorpcddvdwshbbdriverfb\\.aircus\\.com break:403 Forbidden\nroute-referer = (?i)ttechno\\.net break:403 Forbidden\nroute-referer = (?i)tuberkulezanet\\.ru break:403 Forbidden\nroute-referer = (?i)tuberkuleznik\\.ru break:403 Forbidden\nroute-referer = (?i)tudusale\\.xyz break:403 Forbidden\nroute-referer = (?i)tula\\.mdverey\\.ru break:403 Forbidden\nroute-referer = (?i)tuningdom\\.ru break:403 Forbidden\nroute-referer = (?i)tupper\\-posuda\\.ru break:403 Forbidden\nroute-referer = (?i)tupper\\-shop\\.ru break:403 Forbidden\nroute-referer = (?i)turbo\\-suslik\\.org break:403 Forbidden\nroute-referer = (?i)turist\\-strani\\.ru break:403 Forbidden\nroute-referer = (?i)turkeyreport\\.tk break:403 Forbidden\nroute-referer = (?i)turvgori\\.ru break:403 Forbidden\nroute-referer = (?i)tvand\\.ru break:403 Forbidden\nroute-referer = (?i)tvfru\\.org break:403 Forbidden\nroute-referer = (?i)tvgoals\\.tv break:403 Forbidden\nroute-referer = (?i)tvoystartup\\.ru break:403 Forbidden\nroute-referer = (?i)twincitiescarservice\\.com break:403 Forbidden\nroute-referer = (?i)twojebook\\.pl break:403 Forbidden\nroute-referer = (?i)twsufa\\.ru break:403 Forbidden\nroute-referer = (?i)twu\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)tytoona\\.com break:403 Forbidden\nroute-referer = (?i)tyumen\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)u\\-cheats\\.ru break:403 Forbidden\nroute-referer = (?i)u17795\\.netangels\\.ru break:403 Forbidden\nroute-referer = (?i)ua\\-company\\.ru break:403 Forbidden\nroute-referer = (?i)ua\\.tc break:403 Forbidden\nroute-referer = (?i)uaecdsale\\.xyz break:403 Forbidden\nroute-referer = (?i)uasb\\.ru break:403 Forbidden\nroute-referer = (?i)ublaze\\.ru break:403 Forbidden\nroute-referer = (?i)ucanfly\\.ru break:403 Forbidden\nroute-referer = (?i)ucban\\.xyz break:403 Forbidden\nroute-referer = (?i)uchebavchehii\\.ru break:403 Forbidden\nroute-referer = (?i)uchil\\.net break:403 Forbidden\nroute-referer = (?i)ucoz\\.ru break:403 Forbidden\nroute-referer = (?i)ucsfstore\\.xyz break:403 Forbidden\nroute-referer = (?i)ucsol\\.ru break:403 Forbidden\nroute-referer = (?i)uctraffic\\.com break:403 Forbidden\nroute-referer = (?i)udav\\.net break:403 Forbidden\nroute-referer = (?i)ufa\\.dienai\\.ru break:403 Forbidden\nroute-referer = (?i)ufa\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)ufolabs\\.net break:403 Forbidden\nroute-referer = (?i)uginekologa\\.com break:403 Forbidden\nroute-referer = (?i)ukrainian\\-poetry\\.com break:403 Forbidden\nroute-referer = (?i)ukrcargo\\.com break:403 Forbidden\nroute-referer = (?i)ukrtvory\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)ukstmalls\\.xyz break:403 Forbidden\nroute-referer = (?i)ul\\-potolki\\.ru break:403 Forbidden\nroute-referer = (?i)ultimateuninstall\\.com break:403 Forbidden\nroute-referer = (?i)um\\-razum\\.ru break:403 Forbidden\nroute-referer = (?i)umg\\-stroy\\.ru break:403 Forbidden\nroute-referer = (?i)umityangin\\.net break:403 Forbidden\nroute-referer = (?i)undergroundcityphoto\\.com break:403 Forbidden\nroute-referer = (?i)uni\\.me break:403 Forbidden\nroute-referer = (?i)unibus\\.su break:403 Forbidden\nroute-referer = (?i)unimodemhalfduplefw\\.pen\\.io break:403 Forbidden\nroute-referer = (?i)uniqgen\\.net break:403 Forbidden\nroute-referer = (?i)unitygame3d\\.com break:403 Forbidden\nroute-referer = (?i)univerfiles\\.com break:403 Forbidden\nroute-referer = (?i)unlimitdocs\\.net break:403 Forbidden\nroute-referer = (?i)unmaroll\\.ya\\.ru break:403 Forbidden\nroute-referer = (?i)unpredictable\\.ga break:403 Forbidden\nroute-referer = (?i)upcronline\\.xyz break:403 Forbidden\nroute-referer = (?i)uptime\\-alpha\\.net break:403 Forbidden\nroute-referer = (?i)uptime\\-as\\.net break:403 Forbidden\nroute-referer = (?i)uptime\\-beta\\.net break:403 Forbidden\nroute-referer = (?i)uptime\\-delta\\.net break:403 Forbidden\nroute-referer = (?i)uptime\\-eu\\.net break:403 Forbidden\nroute-referer = (?i)uptime\\-gamma\\.net break:403 Forbidden\nroute-referer = (?i)uptime\\-us\\.net break:403 Forbidden\nroute-referer = (?i)uptime\\.com break:403 Forbidden\nroute-referer = (?i)uptimebot\\.net break:403 Forbidden\nroute-referer = (?i)uptimechecker\\.com break:403 Forbidden\nroute-referer = (?i)ural\\-buldozer\\.ru break:403 Forbidden\nroute-referer = (?i)urbanblog\\.shop break:403 Forbidden\nroute-referer = (?i)urbanchr\\.online break:403 Forbidden\nroute-referer = (?i)urblog\\.xyz break:403 Forbidden\nroute-referer = (?i)urccvfmc\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)urlopener\\.blogspot\\.com\\.au break:403 Forbidden\nroute-referer = (?i)urlopener\\.com break:403 Forbidden\nroute-referer = (?i)urlumbrella\\.com break:403 Forbidden\nroute-referer = (?i)uruto\\.ru break:403 Forbidden\nroute-referer = (?i)us\\-america\\.ru break:403 Forbidden\nroute-referer = (?i)usadacha\\.net break:403 Forbidden\nroute-referer = (?i)userequip\\.com break:403 Forbidden\nroute-referer = (?i)uslugi\\-tatarstan\\.ru break:403 Forbidden\nroute-referer = (?i)ussearche\\.cf break:403 Forbidden\nroute-referer = (?i)ustion\\.ru break:403 Forbidden\nroute-referer = (?i)uterkysale\\.xyz break:403 Forbidden\nroute-referer = (?i)utrolive\\.ru break:403 Forbidden\nroute-referer = (?i)uusmsale\\.xyz break:403 Forbidden\nroute-referer = (?i)uyut\\-dom\\.pro break:403 Forbidden\nroute-referer = (?i)uyutmaster73\\.ru break:403 Forbidden\nroute-referer = (?i)uzpaket\\.com break:403 Forbidden\nroute-referer = (?i)uzungil\\.com break:403 Forbidden\nroute-referer = (?i)v\\-casino\\.fun break:403 Forbidden\nroute-referer = (?i)v\\-casino\\.host break:403 Forbidden\nroute-referer = (?i)v\\-casino\\.ru break:403 Forbidden\nroute-referer = (?i)v\\-casino\\.site break:403 Forbidden\nroute-referer = (?i)v\\-casino\\.website break:403 Forbidden\nroute-referer = (?i)v\\-casino\\.xyz break:403 Forbidden\nroute-referer = (?i)v\\-cazino\\.online break:403 Forbidden\nroute-referer = (?i)v\\-cazino\\.ru break:403 Forbidden\nroute-referer = (?i)vabasa\\.inwtrade\\.com break:403 Forbidden\nroute-referer = (?i)vaderenergy\\.ru break:403 Forbidden\nroute-referer = (?i)vadimkravtcov\\.ru break:403 Forbidden\nroute-referer = (?i)valid\\-cc\\.com break:403 Forbidden\nroute-referer = (?i)validccseller\\.com break:403 Forbidden\nroute-referer = (?i)validus\\.pro break:403 Forbidden\nroute-referer = (?i)valkiria\\-tk\\.ru break:403 Forbidden\nroute-referer = (?i)vanessablog\\.online break:403 Forbidden\nroute-referer = (?i)vape\\-x\\.ru break:403 Forbidden\nroute-referer = (?i)vapmedia\\.org break:403 Forbidden\nroute-referer = (?i)vapsy\\.com break:403 Forbidden\nroute-referer = (?i)vardenafil20\\.com break:403 Forbidden\nroute-referer = (?i)varikozdok\\.ru break:403 Forbidden\nroute-referer = (?i)vashsvet\\.com break:403 Forbidden\nroute-referer = (?i)vavada\\-casino\\.host break:403 Forbidden\nroute-referer = (?i)vavada\\-casino\\.top break:403 Forbidden\nroute-referer = (?i)vavada\\-cazino\\.host break:403 Forbidden\nroute-referer = (?i)vavada\\-cazino\\.site break:403 Forbidden\nroute-referer = (?i)vavilone\\.com break:403 Forbidden\nroute-referer = (?i)vbabule\\.net break:403 Forbidden\nroute-referer = (?i)vbikse\\.com break:403 Forbidden\nroute-referer = (?i)vc\\.ru break:403 Forbidden\nroute-referer = (?i)vchulkah\\.net break:403 Forbidden\nroute-referer = (?i)vduplo\\.ru break:403 Forbidden\nroute-referer = (?i)veerotech\\.com break:403 Forbidden\nroute-referer = (?i)vegascosmetics\\.ru break:403 Forbidden\nroute-referer = (?i)vekzdorov\\.ru break:403 Forbidden\nroute-referer = (?i)veles\\.shop break:403 Forbidden\nroute-referer = (?i)velobikestock\\.com break:403 Forbidden\nroute-referer = (?i)veloland\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)venta\\-prom\\.ru break:403 Forbidden\nroute-referer = (?i)ventelnos\\.com break:403 Forbidden\nroute-referer = (?i)ventopt\\.by break:403 Forbidden\nroute-referer = (?i)veronicablog\\.top break:403 Forbidden\nroute-referer = (?i)vescenter\\.ru break:403 Forbidden\nroute-referer = (?i)veselokloun\\.ru break:403 Forbidden\nroute-referer = (?i)vesnatehno\\.com break:403 Forbidden\nroute-referer = (?i)vesnatehno\\.ru break:403 Forbidden\nroute-referer = (?i)vesta\\-lada\\.net break:403 Forbidden\nroute-referer = (?i)vetbvc\\.ru break:403 Forbidden\nroute-referer = (?i)vezdevoz\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)vezuviy\\.su break:403 Forbidden\nroute-referer = (?i)vgoloveboli\\.net break:403 Forbidden\nroute-referer = (?i)via\\-gra\\.webstarts\\.com break:403 Forbidden\nroute-referer = (?i)viagra\\-soft\\.ru break:403 Forbidden\nroute-referer = (?i)viagra\\.pp\\.ua break:403 Forbidden\nroute-referer = (?i)viagroid\\.ru break:403 Forbidden\nroute-referer = (?i)viandpet\\.com break:403 Forbidden\nroute-referer = (?i)viberdownload10\\.com break:403 Forbidden\nroute-referer = (?i)video\\-\\-production\\.com break:403 Forbidden\nroute-referer = (?i)video\\-chat\\.in break:403 Forbidden\nroute-referer = (?i)video\\-girl\\-online\\.ru break:403 Forbidden\nroute-referer = (?i)video\\-hollywood\\.ru break:403 Forbidden\nroute-referer = (?i)video\\-woman\\.com break:403 Forbidden\nroute-referer = (?i)videochat\\-dating\\.ru break:403 Forbidden\nroute-referer = (?i)videochat\\.guru break:403 Forbidden\nroute-referer = (?i)videochat\\.mx break:403 Forbidden\nroute-referer = (?i)videochat\\.tv\\.br break:403 Forbidden\nroute-referer = (?i)videochat\\.world break:403 Forbidden\nroute-referer = (?i)videochaty\\.ru break:403 Forbidden\nroute-referer = (?i)videofrost\\.com break:403 Forbidden\nroute-referer = (?i)videofrost\\.net break:403 Forbidden\nroute-referer = (?i)videokrik\\.net break:403 Forbidden\nroute-referer = (?i)videos\\-for\\-your\\-business\\.com break:403 Forbidden\nroute-referer = (?i)videosbox\\.ru break:403 Forbidden\nroute-referer = (?i)videotop\\.biz break:403 Forbidden\nroute-referer = (?i)videotuber\\.ru break:403 Forbidden\nroute-referer = (?i)vidzwap\\.xyz break:403 Forbidden\nroute-referer = (?i)viel\\.su break:403 Forbidden\nroute-referer = (?i)vigrx\\-original\\.ru break:403 Forbidden\nroute-referer = (?i)viktoria\\-center\\.ru break:403 Forbidden\nroute-referer = (?i)vilingstore\\.net break:403 Forbidden\nroute-referer = (?i)vinsit\\.ru break:403 Forbidden\nroute-referer = (?i)vip\\-dom\\.in break:403 Forbidden\nroute-referer = (?i)vip\\-parfumeria\\.ru break:403 Forbidden\nroute-referer = (?i)vipsiterip\\.org break:403 Forbidden\nroute-referer = (?i)virtchats\\.ru break:403 Forbidden\nroute-referer = (?i)virtual\\-love\\-video\\.ru break:403 Forbidden\nroute-referer = (?i)virtual\\-sex\\-chat\\.ru break:403 Forbidden\nroute-referer = (?i)virtual\\-sex\\-time\\.ru break:403 Forbidden\nroute-referer = (?i)virtual\\-sex\\-videochat\\.ru break:403 Forbidden\nroute-referer = (?i)virtual\\-zaim\\.ru break:403 Forbidden\nroute-referer = (?i)virtualbb\\.com break:403 Forbidden\nroute-referer = (?i)virus\\-schutzmasken\\.de break:403 Forbidden\nroute-referer = (?i)visa\\-china\\.ru break:403 Forbidden\nroute-referer = (?i)visa\\-pasport\\.ru break:403 Forbidden\nroute-referer = (?i)vita\\.com\\.hr break:403 Forbidden\nroute-referer = (?i)vitanail\\.ru break:403 Forbidden\nroute-referer = (?i)viven\\.host\\.sk break:403 Forbidden\nroute-referer = (?i)vizag\\.kharkov\\.ua break:403 Forbidden\nroute-referer = (?i)vk\\-mus\\.ru break:403 Forbidden\nroute-referer = (?i)vk\\.com break:403 Forbidden\nroute-referer = (?i)vkak\\.ru break:403 Forbidden\nroute-referer = (?i)vkonche\\.com break:403 Forbidden\nroute-referer = (?i)vkontaktemusic\\.ru break:403 Forbidden\nroute-referer = (?i)vkontarkte\\.com break:403 Forbidden\nroute-referer = (?i)vksaver\\-all\\.ru break:403 Forbidden\nroute-referer = (?i)vksex\\.ru break:403 Forbidden\nroute-referer = (?i)vladhistory\\.com break:403 Forbidden\nroute-referer = (?i)vladtime\\.ru break:403 Forbidden\nroute-referer = (?i)vltai\\.com break:403 Forbidden\nroute-referer = (?i)vmnmvzsmn\\.over\\-blog\\.com break:403 Forbidden\nroute-referer = (?i)vod\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)vodabur\\.by break:403 Forbidden\nroute-referer = (?i)vodaodessa\\.com break:403 Forbidden\nroute-referer = (?i)voditeltrezviy\\.ru break:403 Forbidden\nroute-referer = (?i)vodkoved\\.ru break:403 Forbidden\nroute-referer = (?i)volgograd\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)volond\\.com break:403 Forbidden\nroute-referer = (?i)voloomoney\\.com break:403 Forbidden\nroute-referer = (?i)volume\\-pills\\.biz break:403 Forbidden\nroute-referer = (?i)voprosotvet24\\.ru break:403 Forbidden\nroute-referer = (?i)voronezh\\.xrus\\.org break:403 Forbidden\nroute-referer = (?i)vostgard\\.com break:403 Forbidden\nroute-referer = (?i)vostoktrade\\.info break:403 Forbidden\nroute-referer = (?i)vote\\-up\\.ru break:403 Forbidden\nroute-referer = (?i)vozbujdenie\\.com break:403 Forbidden\nroute-referer = (?i)vpdr\\.pl break:403 Forbidden\nroute-referer = (?i)vpnhowto\\.info break:403 Forbidden\nroute-referer = (?i)vrazbor59\\.ru break:403 Forbidden\nroute-referer = (?i)vriel\\.batcave\\.net break:403 Forbidden\nroute-referer = (?i)vrnelectro\\.ru break:403 Forbidden\nroute-referer = (?i)vrnhnmall\\.xyz break:403 Forbidden\nroute-referer = (?i)vrotike\\.ru break:403 Forbidden\nroute-referer = (?i)vsdelke\\.ru break:403 Forbidden\nroute-referer = (?i)vseigru\\.one break:403 Forbidden\nroute-referer = (?i)vseigry\\.fun break:403 Forbidden\nroute-referer = (?i)vseprobrak\\.ru break:403 Forbidden\nroute-referer = (?i)vsesubwaysurfers\\.com break:403 Forbidden\nroute-referer = (?i)vseuznaem\\.com break:403 Forbidden\nroute-referer = (?i)vucms\\.com break:403 Forbidden\nroute-referer = (?i)vulkan\\-nadengi\\.ru break:403 Forbidden\nroute-referer = (?i)vulkan\\-oficial\\.com break:403 Forbidden\nroute-referer = (?i)vulkanrussia1\\.ru break:403 Forbidden\nroute-referer = (?i)vykup\\-avto\\-krasnodar\\.ru break:403 Forbidden\nroute-referer = (?i)vykupavto\\-krasnodar\\.ru break:403 Forbidden\nroute-referer = (?i)vzheludke\\.com break:403 Forbidden\nroute-referer = (?i)vzlom\\-na\\-zakaz\\.com break:403 Forbidden\nroute-referer = (?i)vzubah\\.com break:403 Forbidden\nroute-referer = (?i)vzube\\.com break:403 Forbidden\nroute-referer = (?i)vzubkah\\.com break:403 Forbidden\nroute-referer = (?i)w2mobile\\-za\\.com break:403 Forbidden\nroute-referer = (?i)w3javascript\\.com break:403 Forbidden\nroute-referer = (?i)w7s\\.ru break:403 Forbidden\nroute-referer = (?i)wakeupseoconsultant\\.com break:403 Forbidden\nroute-referer = (?i)wallabag\\.malooma\\.bzh break:403 Forbidden\nroute-referer = (?i)wallet\\-prlzn\\.space break:403 Forbidden\nroute-referer = (?i)wallinside\\.top break:403 Forbidden\nroute-referer = (?i)wallpaperdesk\\.info break:403 Forbidden\nroute-referer = (?i)wallpapers\\-all\\.com break:403 Forbidden\nroute-referer = (?i)wallpapers\\-best\\.com break:403 Forbidden\nroute-referer = (?i)wallpapersdesk\\.info break:403 Forbidden\nroute-referer = (?i)wallstore\\.xyz break:403 Forbidden\nroute-referer = (?i)wandamary\\.online break:403 Forbidden\nroute-referer = (?i)wapsite\\.me break:403 Forbidden\nroute-referer = (?i)warmex\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)warningwar\\.ru break:403 Forbidden\nroute-referer = (?i)wasabisale\\.xyz break:403 Forbidden\nroute-referer = (?i)watch\\-movies\\.ru break:403 Forbidden\nroute-referer = (?i)wave\\-games\\.ru break:403 Forbidden\nroute-referer = (?i)wayfcoin\\.space break:403 Forbidden\nroute-referer = (?i)wbjm\\.net break:403 Forbidden\nroute-referer = (?i)wcb\\.su break:403 Forbidden\nroute-referer = (?i)wdfdocando\\.com break:403 Forbidden\nroute-referer = (?i)wdss\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)we\\-ping\\-for\\-youian\\.info break:403 Forbidden\nroute-referer = (?i)we\\-ping\\-for\\-youic\\.info break:403 Forbidden\nroute-referer = (?i)web\\-analytics\\.date break:403 Forbidden\nroute-referer = (?i)web\\-betting\\.ru break:403 Forbidden\nroute-referer = (?i)web\\-lazy\\-services\\.review break:403 Forbidden\nroute-referer = (?i)web\\-list\\.xyz break:403 Forbidden\nroute-referer = (?i)web\\-revenue\\.xyz break:403 Forbidden\nroute-referer = (?i)web\\.cvut\\.cz break:403 Forbidden\nroute-referer = (?i)webalex\\.pro break:403 Forbidden\nroute-referer = (?i)webinstantservice\\.com break:403 Forbidden\nroute-referer = (?i)webix\\.me break:403 Forbidden\nroute-referer = (?i)webjam\\.com break:403 Forbidden\nroute-referer = (?i)weblibrary\\.win break:403 Forbidden\nroute-referer = (?i)webmaster\\-traffic\\.com break:403 Forbidden\nroute-referer = (?i)webmonetizer\\.net break:403 Forbidden\nroute-referer = (?i)webradiology\\.ru break:403 Forbidden\nroute-referer = (?i)webs\\.com break:403 Forbidden\nroute-referer = (?i)website\\-analytics\\.online break:403 Forbidden\nroute-referer = (?i)website\\-analyzer\\.info break:403 Forbidden\nroute-referer = (?i)website\\-errors\\-scanner\\.com break:403 Forbidden\nroute-referer = (?i)website\\-services\\-promotion\\.bid break:403 Forbidden\nroute-referer = (?i)website\\-services\\-promotion\\.review break:403 Forbidden\nroute-referer = (?i)website\\-services\\-promotion\\.stream break:403 Forbidden\nroute-referer = (?i)website\\-services\\-promotion\\.win break:403 Forbidden\nroute-referer = (?i)website\\-services\\-seo\\.bid break:403 Forbidden\nroute-referer = (?i)website\\-services\\-seo\\.stream break:403 Forbidden\nroute-referer = (?i)website\\-services\\-seo\\.win break:403 Forbidden\nroute-referer = (?i)website\\-services\\-smm\\.bid break:403 Forbidden\nroute-referer = (?i)website\\-services\\-smm\\.review break:403 Forbidden\nroute-referer = (?i)website\\-services\\-smm\\.stream break:403 Forbidden\nroute-referer = (?i)website\\-services\\-smm\\.win break:403 Forbidden\nroute-referer = (?i)website\\-services\\.review break:403 Forbidden\nroute-referer = (?i)website\\-services\\.stream break:403 Forbidden\nroute-referer = (?i)website\\-services\\.win break:403 Forbidden\nroute-referer = (?i)website\\-speed\\-check\\.site break:403 Forbidden\nroute-referer = (?i)website\\-speed\\-checker\\.site break:403 Forbidden\nroute-referer = (?i)website\\-speed\\-up\\.site break:403 Forbidden\nroute-referer = (?i)website\\-speed\\-up\\.top break:403 Forbidden\nroute-referer = (?i)website\\-stealer\\-warning\\-alert\\.hdmoviecams\\.com break:403 Forbidden\nroute-referer = (?i)websitebottraffic\\.club break:403 Forbidden\nroute-referer = (?i)websitebottraffic\\.host break:403 Forbidden\nroute-referer = (?i)websites\\-reviews\\.com break:403 Forbidden\nroute-referer = (?i)websocial\\.me break:403 Forbidden\nroute-referer = (?i)webtherapy\\.ru break:403 Forbidden\nroute-referer = (?i)weburlopener\\.com break:403 Forbidden\nroute-referer = (?i)wedding\\-salon\\.net break:403 Forbidden\nroute-referer = (?i)weebly\\.com break:403 Forbidden\nroute-referer = (?i)weekes\\.biz\\.tc break:403 Forbidden\nroute-referer = (?i)weightatraining\\.com break:403 Forbidden\nroute-referer = (?i)weightbelts\\.ru break:403 Forbidden\nroute-referer = (?i)welck\\.octopis\\.com break:403 Forbidden\nroute-referer = (?i)welcomeauto\\.ru break:403 Forbidden\nroute-referer = (?i)weprik\\.ru break:403 Forbidden\nroute-referer = (?i)wetgames\\.ru break:403 Forbidden\nroute-referer = (?i)wfdesigngroup\\.com break:403 Forbidden\nroute-referer = (?i)whatistizanidine2mg\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)whatistizanidinehclusedfor\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)whatsappdownload10\\.com break:403 Forbidden\nroute-referer = (?i)whereiskentoday\\.com break:403 Forbidden\nroute-referer = (?i)wicivow\\.007h\\.ml break:403 Forbidden\nroute-referer = (?i)wikes\\.20fr\\.com break:403 Forbidden\nroute-referer = (?i)williamrobsonproperty\\.com break:403 Forbidden\nroute-referer = (?i)winx\\-play\\.ru break:403 Forbidden\nroute-referer = (?i)witherrom55\\.eklablog\\.fr break:403 Forbidden\nroute-referer = (?i)wjxmenye\\.com break:403 Forbidden\nroute-referer = (?i)wmasterlead\\.com break:403 Forbidden\nroute-referer = (?i)wnoz\\.de break:403 Forbidden\nroute-referer = (?i)woman\\-h\\.ru break:403 Forbidden\nroute-referer = (?i)woman\\-orgasm\\.ru break:403 Forbidden\nroute-referer = (?i)woman\\-tampon\\.ru break:403 Forbidden\nroute-referer = (?i)womens\\-journal\\.net break:403 Forbidden\nroute-referer = (?i)womensplay\\.net break:403 Forbidden\nroute-referer = (?i)womensterritory\\.ru break:403 Forbidden\nroute-referer = (?i)wordpress\\-crew\\.net break:403 Forbidden\nroute-referer = (?i)wordpresscore\\.com break:403 Forbidden\nroute-referer = (?i)work\\-from\\-home\\-earn\\-money\\-online\\.com break:403 Forbidden\nroute-referer = (?i)workius\\.ru break:403 Forbidden\nroute-referer = (?i)workona\\.com break:403 Forbidden\nroute-referer = (?i)works\\.if\\.ua break:403 Forbidden\nroute-referer = (?i)world\\-mmo\\.com break:403 Forbidden\nroute-referer = (?i)worldgamenews\\.com break:403 Forbidden\nroute-referer = (?i)worldhistory\\.biz break:403 Forbidden\nroute-referer = (?i)worldis\\.me break:403 Forbidden\nroute-referer = (?i)worldlovers\\.ru break:403 Forbidden\nroute-referer = (?i)worldmed\\.info break:403 Forbidden\nroute-referer = (?i)worldofbtc\\.com break:403 Forbidden\nroute-referer = (?i)wormix\\-cheats\\.ru break:403 Forbidden\nroute-referer = (?i)wowas31\\.ucoz\\.ru break:403 Forbidden\nroute-referer = (?i)woweb\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)wpnull\\.org break:403 Forbidden\nroute-referer = (?i)wptraffic\\.xyz break:403 Forbidden\nroute-referer = (?i)wrazilwispolecznie\\.pl break:403 Forbidden\nroute-referer = (?i)wrc\\-info\\.ru break:403 Forbidden\nroute-referer = (?i)writingservices17\\.blogspot\\.ru break:403 Forbidden\nroute-referer = (?i)wrona\\.it break:403 Forbidden\nroute-referer = (?i)wstroika\\.ru break:403 Forbidden\nroute-referer = (?i)wufak\\.com break:403 Forbidden\nroute-referer = (?i)wurr\\.voila\\.net break:403 Forbidden\nroute-referer = (?i)ww1943\\.ru break:403 Forbidden\nroute-referer = (?i)ww2awards\\.info break:403 Forbidden\nroute-referer = (?i)www\\-lk\\-rt\\.ru break:403 Forbidden\nroute-referer = (?i)www\\.gelendzhic\\.ru break:403 Forbidden\nroute-referer = (?i)www1\\.free\\-share\\-buttons\\.top break:403 Forbidden\nroute-referer = (?i)wzgyyq\\.com break:403 Forbidden\nroute-referer = (?i)x\\-lime\\.com break:403 Forbidden\nroute-referer = (?i)x\\-lime\\.net break:403 Forbidden\nroute-referer = (?i)x\\-musics\\.com break:403 Forbidden\nroute-referer = (?i)x\\-stars\\.ru break:403 Forbidden\nroute-referer = (?i)x5market\\.ru break:403 Forbidden\nroute-referer = (?i)xaker26\\.net break:403 Forbidden\nroute-referer = (?i)xbaboon\\.com break:403 Forbidden\nroute-referer = (?i)xboxster\\.ru break:403 Forbidden\nroute-referer = (?i)xexe\\.club break:403 Forbidden\nroute-referer = (?i)xfire\\.com break:403 Forbidden\nroute-referer = (?i)xgftnlrt\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)xion\\.cash break:403 Forbidden\nroute-referer = (?i)xjrul\\.com break:403 Forbidden\nroute-referer = (?i)xkaz\\.org break:403 Forbidden\nroute-referer = (?i)xlolitka\\.com break:403 Forbidden\nroute-referer = (?i)xmnb\\.net break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-\\-\\-\\-53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-\\-\\-6cdbciescapvf0a8bibwx0a1bu\\.xn\\-\\-90ais break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-\\-6kcaacnblni5c5bicdpcmficy\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-\\-6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-\\-6kcamwewcd9bayelq\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-\\-7kcaaxchbbmgncr7chzy0k0hk\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-\\-7kceclhb4abre1b4a0ccl2fxch1a\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-\\-8kcatubaocd1bneepefojs1h2e\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-\\-clckdac3bsfgdft3aebjp5etek\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-7sbabb9a1b7bddgm6a1i\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-7sbabhjc3ccc5aggbzfmfi\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-7sbabhv4abd8aih6bb7k\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-7sbabm1ahc4b2aqff\\.su break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-7sbabn5abjehfwi8bj\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-7sbaphztdjeboffeiof6c\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-7sbbpe3afguye\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-7sbho2agebbhlivy\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-8sbaki4azawu5b\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-8sbarihbihxpxqgaf0g1e\\.xn\\-\\-80adxhks break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-8sbbjimdeyfsi\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-8sbdbjgb1ap7a9c4czbh\\.xn\\-\\-p1acf break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-8sbhefaln6acifdaon5c6f4axh\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-8sblgmbj1a1bk8l\\.xn\\-\\-\\-\\-161\\-4vemb6cjl7anbaea3afninj\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-8sbowe2akbcd4h\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-8sbpmgeilbd8achi0c\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-btbdvdh4aafrfciljm6k\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-ctbbcjd3dbsehgi\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-ctbfcdjl8baejhfb1oh\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-ctbigni3aj4h\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-dtbffp5aagjgfm\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-ftbeoaiyg1ak1cb7d\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-gtbdb0beu1bb8gj\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-itbbudqejbfpg3l\\.com break:403 Forbidden\nroute-referer = (?i)xn\\-\\-\\-\\-jtbjfcbdfr0afji4m\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-78\\-6kc6akkhn3a3k\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-78\\-6kcmzqfpcb1amd1q\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80aaafbn2bc2ahdfrfkln6l\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80aaajbdbddwj2alwjieei2afr3v\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80aaajkrncdlqdh6ane8t\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80aaaks3bbhabgbigamdr2h\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80aabcsc3bqirlt\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80aanaardaperhcem4a6i\\.com break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80ab4aa2g\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80adaggc5bdhlfamsfdij4p7b\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80adgcaax6acohn6r\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80aeahghtf8ac5i\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80aeb6argv\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80aebzmbfeebe\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80ahdheogk5l\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80ahvj9e\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80ajbshivpvn2i\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-80ajjbdhgmudixfjc8c5a9df8b\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-90acenikpebbdd4f6d\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-90acjmaltae3acm\\.xn\\-\\-p1acf break:403 Forbidden\nroute-referer = (?i)xn\\-\\-90adhhccf5aeewt7j\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-b1adccayqiirhu\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-b1ag5cfn\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-b1agm2d\\.net break:403 Forbidden\nroute-referer = (?i)xn\\-\\-c1acygb\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-d1abj0abs9d\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)xn\\-\\-d1aifoe0a9a\\.top break:403 Forbidden\nroute-referer = (?i)xn\\-\\-e1aaajzchnkg\\.ru\\.com break:403 Forbidden\nroute-referer = (?i)xn\\-\\-e1aahcgdjkg4aeje6j\\.kz break:403 Forbidden\nroute-referer = (?i)xn\\-\\-e1agf4c\\.xn\\-\\-80adxhks break:403 Forbidden\nroute-referer = (?i)xn\\-\\-e1aggki3c\\.xn\\-\\-80adxhks break:403 Forbidden\nroute-referer = (?i)xn\\-\\-h1ahbi\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)xn\\-\\-hxazdsfy\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)xn\\-\\-l1aengat\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xn\\-\\-mhg\\.com break:403 Forbidden\nroute-referer = (?i)xn\\-\\-oogle\\-wmc\\.com break:403 Forbidden\nroute-referer = (?i)xn\\-\\-q1a\\.xn\\-\\-b1aube0e\\.xn\\-\\-c1acygb\\.xn\\-\\-p1ai break:403 Forbidden\nroute-referer = (?i)xnxx\\-n\\.com break:403 Forbidden\nroute-referer = (?i)xolodremont\\.ru break:403 Forbidden\nroute-referer = (?i)xpert\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)xportvusbdriver8i\\.snack\\.ws break:403 Forbidden\nroute-referer = (?i)xpresscare\\.ru break:403 Forbidden\nroute-referer = (?i)xrp\\-ripple\\.info break:403 Forbidden\nroute-referer = (?i)xrus\\.org break:403 Forbidden\nroute-referer = (?i)xsion\\.net break:403 Forbidden\nroute-referer = (?i)xtraffic\\.plus break:403 Forbidden\nroute-referer = (?i)xtrafficplus\\.com break:403 Forbidden\nroute-referer = (?i)xtrafficplus\\.online break:403 Forbidden\nroute-referer = (?i)xtrafficplus\\.shop break:403 Forbidden\nroute-referer = (?i)xtrafficplus\\.xyz break:403 Forbidden\nroute-referer = (?i)xtubeporno\\.net break:403 Forbidden\nroute-referer = (?i)xvideosbay\\.com break:403 Forbidden\nroute-referer = (?i)xxart\\.ru break:403 Forbidden\nroute-referer = (?i)xxx\\-treker\\.ru break:403 Forbidden\nroute-referer = (?i)xxxhamster\\.me break:403 Forbidden\nroute-referer = (?i)xxxtube69\\.com break:403 Forbidden\nroute-referer = (?i)xxxvideochat\\.ru break:403 Forbidden\nroute-referer = (?i)xz618\\.com break:403 Forbidden\nroute-referer = (?i)xzlive\\.com break:403 Forbidden\nroute-referer = (?i)yaderenergy\\.ru break:403 Forbidden\nroute-referer = (?i)yaminecraft\\.ru break:403 Forbidden\nroute-referer = (?i)yeartwit\\.com break:403 Forbidden\nroute-referer = (?i)yellowstonevisitortours\\.com break:403 Forbidden\nroute-referer = (?i)yes\\-com\\.com break:403 Forbidden\nroute-referer = (?i)yes\\-do\\-now\\.com break:403 Forbidden\nroute-referer = (?i)yhirurga\\.ru break:403 Forbidden\nroute-referer = (?i)ykecwqlixx\\.ru break:403 Forbidden\nroute-referer = (?i)ynymnwbm\\.bloger\\.index\\.hr break:403 Forbidden\nroute-referer = (?i)yodse\\.io break:403 Forbidden\nroute-referer = (?i)yoga4\\.ru break:403 Forbidden\nroute-referer = (?i)youandcredit\\.ru break:403 Forbidden\nroute-referer = (?i)youbloodyripper\\.com break:403 Forbidden\nroute-referer = (?i)youdesigner\\.kz break:403 Forbidden\nroute-referer = (?i)yougame\\.biz break:403 Forbidden\nroute-referer = (?i)yougetsignal\\.com break:403 Forbidden\nroute-referer = (?i)youghbould\\.wordpress\\.com break:403 Forbidden\nroute-referer = (?i)youhack\\.info break:403 Forbidden\nroute-referer = (?i)youjizz\\.vc break:403 Forbidden\nroute-referer = (?i)youporn\\-forum\\.ga break:403 Forbidden\nroute-referer = (?i)youporn\\-forum\\.uni\\.me break:403 Forbidden\nroute-referer = (?i)youporn\\-ru\\.com break:403 Forbidden\nroute-referer = (?i)your\\-good\\-links\\.com break:403 Forbidden\nroute-referer = (?i)your\\-tales\\.ru break:403 Forbidden\nroute-referer = (?i)yourdesires\\.ru break:403 Forbidden\nroute-referer = (?i)youresponsive\\.com break:403 Forbidden\nroute-referer = (?i)yourothersite\\.com break:403 Forbidden\nroute-referer = (?i)yoursearch\\.me break:403 Forbidden\nroute-referer = (?i)yourserverisdown\\.com break:403 Forbidden\nroute-referer = (?i)yoursite\\.com break:403 Forbidden\nroute-referer = (?i)yourtraffic\\.club break:403 Forbidden\nroute-referer = (?i)youtoner\\.it break:403 Forbidden\nroute-referer = (?i)youtubedownload\\.org break:403 Forbidden\nroute-referer = (?i)yqpc\\.net break:403 Forbidden\nroute-referer = (?i)yuarra\\.pluto\\.ro break:403 Forbidden\nroute-referer = (?i)yubikk\\.info break:403 Forbidden\nroute-referer = (?i)yugk\\.net break:403 Forbidden\nroute-referer = (?i)yugo\\-star\\.ru break:403 Forbidden\nroute-referer = (?i)yunque\\.pluto\\.ro break:403 Forbidden\nroute-referer = (?i)yur\\-p\\.ru break:403 Forbidden\nroute-referer = (?i)yurcons\\.pro break:403 Forbidden\nroute-referer = (?i)yurgorod\\.ru break:403 Forbidden\nroute-referer = (?i)yuristproffi\\.ru break:403 Forbidden\nroute-referer = (?i)zagadki\\.in\\.ua break:403 Forbidden\nroute-referer = (?i)zahodi2hydra\\.net break:403 Forbidden\nroute-referer = (?i)zahvat\\.ru break:403 Forbidden\nroute-referer = (?i)zaidia\\.xhost\\.ro break:403 Forbidden\nroute-referer = (?i)zaim\\-pod\\-zalog\\-krasnodar\\.ru break:403 Forbidden\nroute-referer = (?i)zaimhelp\\.ru break:403 Forbidden\nroute-referer = (?i)zajm\\-pod\\-zalog\\-nedvizhimosti\\.ru break:403 Forbidden\nroute-referer = (?i)zakazfutbolki\\.com break:403 Forbidden\nroute-referer = (?i)zakaznoy\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)zakazvzloma\\.com break:403 Forbidden\nroute-referer = (?i)zakis\\-azota24\\.ru break:403 Forbidden\nroute-referer = (?i)zakisazota\\-official\\.com break:403 Forbidden\nroute-referer = (?i)zakon\\-ob\\-obrazovanii\\.ru break:403 Forbidden\nroute-referer = (?i)zaloadi\\.ru break:403 Forbidden\nroute-referer = (?i)zamolotkom\\.ru break:403 Forbidden\nroute-referer = (?i)zapnado\\.ru break:403 Forbidden\nroute-referer = (?i)zarabotat\\-na\\-sajte\\.ru break:403 Forbidden\nroute-referer = (?i)zarabotat\\-v\\-internete\\.biz break:403 Forbidden\nroute-referer = (?i)zarenica\\.net break:403 Forbidden\nroute-referer = (?i)zastenchivosti\\.net break:403 Forbidden\nroute-referer = (?i)zastroyka\\.org break:403 Forbidden\nroute-referer = (?i)zavod\\-gm\\.ru break:403 Forbidden\nroute-referer = (?i)zazagames\\.org break:403 Forbidden\nroute-referer = (?i)zdesformula\\.ru break:403 Forbidden\nroute-referer = (?i)zdesoboi\\.com break:403 Forbidden\nroute-referer = (?i)zdm\\-auto\\.com break:403 Forbidden\nroute-referer = (?i)zdm\\-auto\\.ru break:403 Forbidden\nroute-referer = (?i)zdorovie\\-nogi\\.info break:403 Forbidden\nroute-referer = (?i)zebradudka\\.com break:403 Forbidden\nroute-referer = (?i)zelena\\-mriya\\.com\\.ua break:403 Forbidden\nroute-referer = (?i)zeleznobeton\\.ru break:403 Forbidden\nroute-referer = (?i)zerocash\\.msk\\.ru break:403 Forbidden\nroute-referer = (?i)zexhgoods\\.xyz break:403 Forbidden\nroute-referer = (?i)zhcsapp\\.net break:403 Forbidden\nroute-referer = (?i)zhoobintravel\\.com break:403 Forbidden\nroute-referer = (?i)zhorapankratov7\\.blogspot\\.com break:403 Forbidden\nroute-referer = (?i)zigarettenonl\\.canalblog\\.com break:403 Forbidden\nroute-referer = (?i)zigarettenonlinekaufen\\.tumblr\\.com break:403 Forbidden\nroute-referer = (?i)zigarettenonlinekaufen1\\.bloog\\.pl break:403 Forbidden\nroute-referer = (?i)zigarettenonlinekaufen1\\.blox\\.pl break:403 Forbidden\nroute-referer = (?i)zigarettenonlinekaufen2\\.bloog\\.pl break:403 Forbidden\nroute-referer = (?i)zigarettenonlinekaufen2\\.drupalgardens\\.com break:403 Forbidden\nroute-referer = (?i)zigzog\\.ru break:403 Forbidden\nroute-referer = (?i)zlatnajesen\\.com break:403 Forbidden\nroute-referer = (?i)zmoda\\.hostreo\\.com break:403 Forbidden\nroute-referer = (?i)znakomstva\\-moskva77\\.ru break:403 Forbidden\nroute-referer = (?i)znakomstva\\-piter78\\.ru break:403 Forbidden\nroute-referer = (?i)znakomstvaonlain\\.ru break:403 Forbidden\nroute-referer = (?i)znaniyapolza\\.ru break:403 Forbidden\nroute-referer = (?i)zojirushi\\-products\\.ru break:403 Forbidden\nroute-referer = (?i)zolotoy\\-lis\\.ru break:403 Forbidden\nroute-referer = (?i)zonefiles\\.bid break:403 Forbidden\nroute-referer = (?i)zoominfo\\.com break:403 Forbidden\nroute-referer = (?i)zot\\.moscow break:403 Forbidden\nroute-referer = (?i)zt\\-m\\.ru break:403 Forbidden\nroute-referer = (?i)zuchn\\.com break:403 Forbidden\nroute-referer = (?i)zverokruh\\-shop\\.cz break:403 Forbidden\nroute-referer = (?i)zvetki\\.ru break:403 Forbidden\nroute-referer = (?i)zvooq\\.eu break:403 Forbidden\nroute-referer = (?i)zvuker\\.net break:403 Forbidden\nroute-referer = (?i)zyzzcentral\\.ru break:403 Forbidden\nroute-label = referral_spam"
  },
  {
    "path": "run.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\ndate_default_timezone_set('UTC');\nrequire_once __DIR__ . '/vendor/autoload.php';\n\nuse StevieRay\\CLI\\CommandLineInterface;\n\n$cli = new CommandLineInterface();\nexit($cli->run($argv));\n"
  },
  {
    "path": "src/CLI/CommandLineInterface.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\CLI;\n\nuse StevieRay\\Generator;\nuse RuntimeException;\n\nclass CommandLineInterface\n{\n    private const array SUPPORTED_TYPES = [\n        'apache',\n        'nginx',\n        'varnish',\n        'iis',\n        'uwsgi',\n        'caddy',\n        'caddy2',\n        'haproxy',\n        'lighttpd',\n        'google',\n    ];\n\n    /**\n     * @param array<int, string> $argv\n     */\n    public function run(array $argv): int\n    {\n        $options = $this->parseOptions($argv);\n\n        if ($options['help']) {\n            $this->showHelp();\n\n            return 0;\n        }\n\n        if ($options['version']) {\n            $this->showVersion();\n\n            return 0;\n        }\n\n        try {\n            $generator = new Generator($options['output']);\n\n            if ($options['dry-run']) {\n                $this->showDryRun($generator);\n\n                return 0;\n            }\n\n            if ($options['types'] !== []) {\n                $generator->generateSpecificConfigs($options['types']);\n                echo 'Generated specific configuration files: ' . implode(', ', $options['types']) . \"\\n\";\n            } else {\n                $generator->generateFiles();\n                echo \"Generated all configuration files.\\n\";\n            }\n\n            $this->showStatistics($generator);\n\n            return 0;\n        } catch (\\Exception $e) {\n            $this->showError($e->getMessage());\n\n            return 1;\n        }\n    }\n\n    /**\n     * Parse command line options\n     *\n     * @param array<int, string> $argv\n     * @return array{\n     *   help: bool,\n     *   version: bool,\n     *   'dry-run': bool,\n     *   output: string,\n     *   types: array<int, string>\n     * }\n     */\n    private function parseOptions(array $argv): array\n    {\n        $options = [\n            'help' => false,\n            'version' => false,\n            'dry-run' => false,\n            'output' => __DIR__ . '/../../',\n            'types' => [],\n        ];\n\n        $args = array_slice($argv, 1); // Skip script name\n\n        for ($i = 0; $i < count($args); $i++) {\n            $arg = $args[$i];\n\n            match ($arg) {\n                '--help', '-h' => $options['help'] = true,\n                '--version', '-v' => $options['version'] = true,\n                '--dry-run' => $options['dry-run'] = true,\n                '--output', '-o' => $this->handleOutputOption($args, $i, $options),\n                '--types', '-t' => $this->handleTypesOption($args, $i, $options),\n                default => throw new RuntimeException(\"Unknown option: $arg\"),\n            };\n        }\n\n        return $options;\n    }\n\n    /**\n     * Handle --output option\n     *\n     * @param array<int, string> $args\n     * @param int $i\n     * @param array{help: bool, version: bool, 'dry-run': bool, output: string, types: array<int, string>} $options\n     * @return void\n     */\n    private function handleOutputOption(array $args, int &$i, array &$options): void\n    {\n        if (isset($args[$i + 1])) {\n            $options['output'] = $args[++$i];\n        } else {\n            throw new RuntimeException('--output requires a directory path');\n        }\n    }\n\n    /**\n     * Handle --types option\n     *\n     * @param array<int, string> $args\n     * @param int $i\n     * @param array{help: bool, version: bool, 'dry-run': bool, output: string, types: array<int, string>} $options\n     * @return void\n     */\n    private function handleTypesOption(array $args, int &$i, array &$options): void\n    {\n        if (isset($args[$i + 1])) {\n            $types = explode(',', $args[++$i]);\n            $types = array_map('trim', $types);\n\n            foreach ($types as $type) {\n                if (!in_array($type, self::SUPPORTED_TYPES, true)) {\n                    throw new RuntimeException(\n                        \"Unsupported type: $type. Supported types: \" . implode(', ', self::SUPPORTED_TYPES)\n                    );\n                }\n            }\n\n            $options['types'] = $types;\n        } else {\n            throw new RuntimeException('--types requires a comma-separated list');\n        }\n    }\n\n    /**\n     * Show help information\n     */\n    private function showHelp(): void\n    {\n        echo \"Referrer Spam Blocker Generator\\n\\n\";\n        echo \"Usage: php run.php [options]\\n\\n\";\n        echo \"Options:\\n\";\n        echo \"  -h, --help              Show this help message\\n\";\n        echo \"  -v, --version           Show version information\\n\";\n        echo \"  --dry-run               Show what would be generated without creating files\\n\";\n        echo \"  -o, --output <dir>      Output directory (default: project root)\\n\";\n        echo \"  -t, --types <list>      Generate only specific types (comma-separated)\\n\";\n        echo '                          Supported types: ' . implode(', ', self::SUPPORTED_TYPES) . \"\\n\\n\";\n        echo \"Examples:\\n\";\n        echo \"  php run.php                                    # Generate all configs\\n\";\n        echo \"  php run.php --types apache,nginx              # Generate only Apache and Nginx\\n\";\n        echo \"  php run.php --output /tmp --dry-run           # Show what would be generated\\n\";\n        echo \"  php run.php --types google --output ./config  # Generate only Google Analytics files\\n\\n\";\n    }\n\n    /**\n     * Show version information\n     */\n    private function showVersion(): void\n    {\n        echo \"Referrer Spam Blocker Generator\\n\";\n    }\n\n    /**\n     * Show dry run information\n     *\n     * @param Generator $generator\n     */\n    private function showDryRun(Generator $generator): void\n    {\n        echo \"DRY RUN - No files will be created\\n\\n\";\n\n        $stats = $generator->getStatistics();\n        echo \"Would generate:\\n\";\n        echo \"- Total domains: {$stats['total_domains']}\\n\";\n        echo \"- Configuration files: {$stats['config_files']}\\n\";\n        echo \"- Output directory: {$stats['output_directory']}\\n\\n\";\n\n        echo \"Configuration types:\\n\";\n        foreach ($generator->getConfigGenerators() as $generator) {\n            echo \"- {$generator->getDescription()} ({$generator->getFilename()})\\n\";\n        }\n        echo \"\\n\";\n    }\n\n    /**\n     * Show generation statistics\n     *\n     * @param Generator $generator\n     */\n    private function showStatistics(Generator $generator): void\n    {\n        $stats = $generator->getStatistics();\n\n        echo \"\\nGeneration completed successfully!\\n\";\n        echo \"Statistics:\\n\";\n        echo \"- Total domains processed: {$stats['total_domains']}\\n\";\n        echo '- Configuration files generated: ' . count($stats['generated_files']) . \"\\n\";\n        echo \"- Output directory: {$stats['output_directory']}\\n\";\n\n        if ($stats['generated_files'] !== []) {\n            echo \"\\nGenerated files:\\n\";\n            foreach ($stats['generated_files'] as $file) {\n                echo \"- $file\\n\";\n            }\n        }\n        echo \"\\n\";\n    }\n\n    /**\n     * Show error message\n     *\n     * @param string $message\n     */\n    private function showError(string $message): void\n    {\n        echo \"Error: $message\\n\";\n        echo \"Use --help for usage information.\\n\";\n    }\n}\n"
  },
  {
    "path": "src/Config/AbstractConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nabstract class AbstractConfigGenerator implements ConfigGeneratorInterface\n{\n    protected const string PROJECT_URL = 'https://github.com/Stevie-Ray/referrer-spam-blocker';\n\n    /**\n     * Escape a domain for use in configuration files\n     *\n     * @param string $domain\n     * @return string\n     */\n    protected function escapeDomain(string $domain): string\n    {\n        return preg_quote($domain, '/');\n    }\n\n    /**\n     * Create a header comment for configuration files\n     *\n     * @param string $date\n     * @return string\n     */\n    protected function createHeader(string $date): string\n    {\n        return '# ' . self::PROJECT_URL . \"\\n# Updated \" . $date . \"\\n\";\n    }\n\n    /**\n     * Validate that domains array is not empty\n     *\n     * @param array<string> $domains\n     * @return void\n     * @throws \\InvalidArgumentException\n     */\n    protected function validateDomains(array $domains): void\n    {\n        if ($domains === []) {\n            throw new \\InvalidArgumentException('Domains array cannot be empty');\n        }\n    }\n\n    /**\n     * Format domains for use in configuration\n     *\n     * @param array<string> $domains\n     * @return array<string>\n     */\n    protected function formatDomains(array $domains): array\n    {\n        return array_map($this->escapeDomain(...), $domains);\n    }\n}\n"
  },
  {
    "path": "src/Config/ApacheConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass ApacheConfigGenerator extends AbstractConfigGenerator\n{\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return '.htaccess';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'Apache .htaccess configuration file';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n        $formattedDomains = $this->formatDomains($domains);\n\n        $header = $this->createHeader($date);\n        $modRewriteSection = $this->generateModRewriteSection($formattedDomains);\n        $modSetEnvIfSection = $this->generateModSetEnvIfSection($formattedDomains);\n        $authSection = $this->generateAuthSection();\n\n        return $header . \"\\n\\n\" . $modRewriteSection . \"\\n\\n\" . $modSetEnvIfSection . \"\\n\\n\" . $authSection;\n    }\n\n    /**\n     * Generate mod_rewrite section\n     *\n     * @param array<string> $domains\n     * @return string\n     */\n    private function generateModRewriteSection(array $domains): string\n    {\n        $content = \"<IfModule mod_rewrite.c>\\n\\nRewriteEngine On\\n\\n\";\n\n        $lastIndex = count($domains) - 1;\n        foreach ($domains as $index => $domain) {\n            $flag = ($index === $lastIndex) ? '[NC]' : '[NC,OR]';\n            $content .= 'RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*' . $domain . '.*$ ' . $flag . \"\\n\";\n        }\n\n        $content .= \"RewriteRule ^(.*)$ – [F,L]\\n\\n</IfModule>\";\n\n        return $content;\n    }\n\n    /**\n     * Generate mod_setenvif section\n     *\n     * @param array<string> $domains\n     * @return string\n     */\n    private function generateModSetEnvIfSection(array $domains): string\n    {\n        $content = \"<IfModule mod_setenvif.c>\\n\\n\";\n\n        foreach ($domains as $domain) {\n            $content .= 'SetEnvIfNoCase Referer ' . $domain . \" spambot=yes\\n\";\n        }\n\n        $content .= \"\\n</IfModule>\";\n\n        return $content;\n    }\n\n    /**\n     * Generate authorization section for both Apache 2.2 and 2.4\n     *\n     * @return string\n     */\n    private function generateAuthSection(): string\n    {\n        return \"# Apache 2.2\\n\" .\n               \"<IfModule !mod_authz_core.c>\\n\" .\n               \"\\t<IfModule mod_authz_host.c>\\n\" .\n               \"\\t\\tOrder allow,deny\\n\" .\n               \"\\t\\tAllow from all\\n\" .\n               \"\\t\\tDeny from env=spambot\\n\" .\n               \"\\t</IfModule>\\n\" .\n               \"</IfModule>\\n\" .\n               \"# Apache 2.4\\n\" .\n               \"<IfModule mod_authz_core.c>\\n\" .\n               \"\\t<RequireAll>\\n\" .\n               \"\\t\\tRequire all granted\\n\" .\n               \"\\t\\tRequire not env spambot\\n\" .\n               \"\\t</RequireAll>\\n\" .\n               '</IfModule>';\n    }\n}\n"
  },
  {
    "path": "src/Config/CaddyConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass CaddyConfigGenerator extends AbstractConfigGenerator\n{\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return 'referral-spam.caddy';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'Caddy v1 configuration file';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n\n        $header = $this->createHeader($date);\n        $instructions = $this->generateInstructions();\n        $redirectRules = $this->generateRedirectRules($domains);\n\n        return $header . \"\\n\" . $instructions . \"\\n\" . $redirectRules;\n    }\n\n    /**\n     * Generate installation instructions\n     *\n     * @return string\n     */\n    private function generateInstructions(): string\n    {\n        return \"#\\n\" .\n               \"# Move this file next to your Caddy config file given through -conf, and include it by doing:\\n\" .\n               \"#\\n\" .\n               \"#     include ./referral-spam.caddy;\\n\" .\n               \"#\\n\" .\n               \"# Then start your caddy server. All the referrers will now be redirected to a 444 HTTP answer\\n\" .\n               \"#\\n\";\n    }\n\n    /**\n     * Generate redirect rules for Caddy v1\n     *\n     * @param array<string> $domains\n     * @return string\n     */\n    private function generateRedirectRules(array $domains): string\n    {\n        $redirRules = '';\n\n        foreach ($domains as $domain) {\n            if ($redirRules !== '') {\n                $redirRules .= \"\\n\\t\";\n            }\n            $redirRules .= 'if {>Referer} is ' . $domain;\n        }\n\n        return \"redir 444 {\\n\\tif_op or\\n\\t\" . $redirRules . \"\\n}\";\n    }\n}\n"
  },
  {
    "path": "src/Config/CaddyV2ConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass CaddyV2ConfigGenerator extends AbstractConfigGenerator\n{\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return 'referral-spam.caddy2';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'Caddy v2 configuration file';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n\n        $header = $this->createHeader($date);\n        $instructions = $this->generateInstructions();\n        $blockerRules = $this->generateBlockerRules($domains);\n\n        return $header . \"\\n\" . $instructions . \"\\n\" . $blockerRules;\n    }\n\n    /**\n     * Generate installation instructions\n     *\n     * @return string\n     */\n    private function generateInstructions(): string\n    {\n        return \"#\\n\" .\n               \"# Move this file next to your main Caddyfile, and include it by doing:\\n\" .\n               \"#\\n\" .\n               \"#     import ./referral-spam.caddy2\\n\" .\n               \"#\\n\" .\n               \"# Then start your caddy server. All the referrers will now be redirected to a 444 HTTP answer\\n\" .\n               \"#\\n\";\n    }\n\n    /**\n     * Generate blocker rules for Caddy v2\n     *\n     * @param array<string> $domains\n     * @return string\n     */\n    private function generateBlockerRules(array $domains): string\n    {\n        $redirRules = [];\n\n        foreach ($domains as $domain) {\n            $redirRules[] = str_replace('.', '\\.', $domain);\n        }\n\n        $redirRulesString = implode('|', $redirRules);\n\n        return \"@blocker {\\n\" .\n               '    header_regexp Referer \"^' . $redirRulesString . \"$\\\"\\n\" .\n               \"}\\n\" .\n               \"respond @blocker \\\"Traffic blocked\\\" 444 {\\n\" .\n               \"     close\\n\" .\n               '}';\n    }\n}\n"
  },
  {
    "path": "src/Config/ConfigGeneratorInterface.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\ninterface ConfigGeneratorInterface\n{\n    /**\n     * Generate configuration content for the server\n     *\n     * @param array<string> $domains\n     * @param string $date\n     * @return string\n     */\n    public function generate(array $domains, string $date): string;\n\n    /**\n     * Get the filename for this configuration\n     *\n     * @return string\n     */\n    public function getFilename(): string;\n\n    /**\n     * Get the description of this configuration type\n     *\n     * @return string\n     */\n    public function getDescription(): string;\n}\n"
  },
  {
    "path": "src/Config/GoogleAnalyticsConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass GoogleAnalyticsConfigGenerator extends AbstractConfigGenerator implements MultiFileConfigGeneratorInterface\n{\n    private const int GOOGLE_ANALYTICS_LIMIT = 30000;\n\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return 'google-exclude-{index}.txt';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'Google Analytics exclude files';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n        $formattedDomains = $this->formatDomains($domains);\n\n        $regexString = implode('|', $formattedDomains);\n        $splits = $this->splitByCharacterLimit($regexString);\n\n        // Return the first split as the main content\n        return $splits[0] ?? '';\n    }\n\n    #[\\Override]\n    public function generateMultiple(array $domains, string $date): array\n    {\n        $this->validateDomains($domains);\n        $formattedDomains = $this->formatDomains($domains);\n\n        $regexString = implode('|', $formattedDomains);\n        $splits = $this->splitByCharacterLimit($regexString);\n\n        $files = [];\n        foreach ($splits as $index => $split) {\n            $filename = 'google-exclude-' . ($index + 1) . '.txt';\n            $files[$filename] = $split;\n        }\n\n        return $files;\n    }\n\n    /**\n     * Split the regex string by Google Analytics character limit\n     *\n     * @param string $regexString\n     * @return array<string>\n     */\n    private function splitByCharacterLimit(string $regexString): array\n    {\n        $splits = [];\n        $dataLength = strlen($regexString);\n        $lastPosition = 0;\n\n        while ($lastPosition < $dataLength) {\n            // Check if remaining data fits within the limit\n            if (($dataLength - $lastPosition) <= self::GOOGLE_ANALYTICS_LIMIT) {\n                // Rest of the regex (no pipe at the end)\n                $dataSplit = substr($regexString, $lastPosition);\n                $lastPosition = $dataLength; // Break\n            } else {\n                // Search for the last occurrence of | in the boundary limits\n                $pipePosition = strrpos(substr($regexString, $lastPosition, self::GOOGLE_ANALYTICS_LIMIT), '|');\n\n                if ($pipePosition === false) {\n                    // No pipe found, take the full limit\n                    $dataSplit = substr($regexString, $lastPosition, self::GOOGLE_ANALYTICS_LIMIT);\n                    $lastPosition += self::GOOGLE_ANALYTICS_LIMIT;\n                } else {\n                    $dataSplit = substr($regexString, $lastPosition, $pipePosition);\n                    $lastPosition += $pipePosition + 1; // +1 to skip the pipe\n                }\n            }\n\n            $splits[] = $dataSplit;\n        }\n\n        return $splits;\n    }\n}\n"
  },
  {
    "path": "src/Config/HAProxyConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass HAProxyConfigGenerator extends AbstractConfigGenerator\n{\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return 'referral-spam.haproxy';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'HAProxy configuration file';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n        $formattedDomains = $this->formatDomains($domains);\n\n        $header = $this->createHeader($date);\n        $instructions = $this->generateInstructions();\n        $domainList = $this->generateDomainList($formattedDomains);\n\n        return $header . \"\\n\" . $instructions . \"\\n\" . $domainList;\n    }\n\n    /**\n     * Generate installation instructions\n     *\n     * @return string\n     */\n    private function generateInstructions(): string\n    {\n        return \"#\\n\" .\n               \"# Use it in your HAProxy config by adding all domains.txt items,\\n\" .\n               \"# in any frontend, listen or backend block:\\n\" .\n               \"#\\n\" .\n               \"#     acl spam_referer hdr_sub(referer) -i -f /etc/haproxy/referral-spam.haproxy\\n\" .\n               \"#     http-request deny if spam_referer\\n\" .\n               \"#\\n\";\n    }\n\n    /**\n     * Generate the domain list for HAProxy\n     *\n     * @param array<string> $domains\n     * @return string\n     */\n    private function generateDomainList(array $domains): string\n    {\n        return implode(\"\\n\", $domains) . \"\\n\";\n    }\n}\n"
  },
  {
    "path": "src/Config/IISConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass IISConfigGenerator extends AbstractConfigGenerator\n{\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return 'web.config';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'IIS web.config file';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n        $formattedDomains = $this->formatDomains($domains);\n\n        $header = '<!-- ' . self::PROJECT_URL . \" -->\\n<!-- Updated \" . $date . \" -->\\n\";\n        $xmlContent = $this->generateXmlContent($domains, $formattedDomains);\n\n        return $header . $xmlContent;\n    }\n\n    /**\n     * Generate the XML content for IIS configuration\n     *\n     * @param array<string> $domains\n     * @param array<string> $formattedDomains\n     * @return string\n     */\n    private function generateXmlContent(array $domains, array $formattedDomains): string\n    {\n        $content = \"<?xml version=\\\"1.0\\\" encoding=\\\"UTF-8\\\"?>\\n\" .\n                   \"<configuration>\\n\\t<system.webServer>\\n\\t\\t<rewrite>\\n\\t\\t\\t<rules>\\n\";\n\n        foreach ($domains as $index => $domain) {\n            $content .= \"\\t\\t\\t\\t<rule name=\\\"Referrer Spam \" . $domain . '\" stopProcessing=\"true\">' .\n                       '<match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(' .\n                       $formattedDomains[$index] . \")\\\"/></conditions><action type=\\\"AbortRequest\\\" /></rule>\\n\";\n        }\n\n        $content .= \"\\t\\t\\t</rules>\\n\\t\\t</rewrite>\\n\\t</system.webServer>\\n</configuration>\";\n\n        return $content;\n    }\n}\n"
  },
  {
    "path": "src/Config/LighttpdConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass LighttpdConfigGenerator extends AbstractConfigGenerator\n{\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return 'referral-spam.lighttpd.conf';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'Lighttpd configuration file';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n        $formattedDomains = $this->formatDomains($domains);\n\n        $header = $this->createHeader($date);\n        $instructions = $this->generateInstructions();\n        $rewriteRules = $this->generateRewriteRules($formattedDomains);\n\n        return $header . \"\\n\" . $instructions . \"\\n\" . $rewriteRules;\n    }\n\n    /**\n     * Generate installation instructions\n     *\n     * @return string\n     */\n    private function generateInstructions(): string\n    {\n        return \"#\\n\" .\n               \"# Lighttpd Referrer Spam Blocker Configuration\\n\" .\n               \"#\\n\" .\n               \"# Include this file in your main lighttpd.conf:\\n\" .\n               \"#\\n\" .\n               \"#     include \\\"referral-spam.lighttpd.conf\\\"\\n\" .\n               \"#\\n\" .\n               \"# Make sure mod_rewrite is enabled in your server.modules:\\n\" .\n               \"#\\n\" .\n               \"#     server.modules = (\\\"mod_rewrite\\\", ...)\\n\" .\n               \"#\\n\";\n    }\n\n    /**\n     * Generate rewrite rules for Lighttpd\n     *\n     * @param array<string> $domains\n     * @return string\n     */\n    private function generateRewriteRules(array $domains): string\n    {\n        $content = \"# Block referrer spam\\n\";\n        $content .= \"# Note: Lighttpd has regex size limits, so we split into multiple conditions\\n\";\n        $content .= \"# If you have many domains, consider using mod_magnet for better performance\\n\\n\";\n\n        // Split domains into chunks to avoid regex size limits\n        $chunks = array_chunk($domains, 100);\n        $chunkIndex = 0;\n\n        foreach ($chunks as $chunk) {\n            $chunkIndex++;\n            $content .= \"# Block group \" . $chunkIndex . \"\\n\";\n            $content .= \"\\$HTTP[\\\"referer\\\"] =~ \\\"(\";\n\n            $patterns = [];\n            foreach ($chunk as $domain) {\n                $patterns[] = $domain;\n            }\n\n            $content .= implode('|', $patterns);\n            $content .= \")\\\" {\\n\";\n            $content .= \"    url.redirect = (\\\"^/(.*)\\\" => \\\"http://127.0.0.1/\\\")\\n\";\n            $content .= \"}\\n\\n\";\n        }\n\n        $content .= \"# Alternative: Use mod_magnet for better performance with large domain lists\\n\";\n        $content .= \"# See: https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModMagnet\\n\";\n\n        return $content;\n    }\n}\n"
  },
  {
    "path": "src/Config/MultiFileConfigGeneratorInterface.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\ninterface MultiFileConfigGeneratorInterface extends ConfigGeneratorInterface\n{\n    /**\n     * Generate configuration content for multiple files\n     *\n     * @param array<string> $domains\n     * @param string $date\n     * @return array<string, string> Array of filename => content\n     */\n    public function generateMultiple(array $domains, string $date): array;\n}\n"
  },
  {
    "path": "src/Config/NginxConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass NginxConfigGenerator extends AbstractConfigGenerator\n{\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return 'referral-spam.conf';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'Nginx configuration file';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n\n        $header = $this->createHeader($date);\n        $instructions = $this->generateInstructions();\n        $mapSection = $this->generateMapSection($domains);\n\n        return $header . \"\\n\" . $instructions . \"\\n\" . $mapSection;\n    }\n\n    /**\n     * Generate installation instructions\n     *\n     * @return string\n     */\n    private function generateInstructions(): string\n    {\n        return \"#\\n\" .\n               \"# /etc/nginx/referral-spam.conf\\n\" .\n               \"#\\n\" .\n               \"# IMPORTANT: You must increase the map hash bucket size to support the large domain list.\\n\" .\n               \"# Add the following to your /etc/nginx/nginx.conf (in the http block):\\n\" .\n               \"#\\n\" .\n               \"#     map_hash_bucket_size 128;\\n\" .\n               \"#\\n\" .\n               \"# With referral-spam.conf in /etc/nginx, include it globally from within /etc/nginx/nginx.conf:\\n\" .\n               \"#\\n\" .\n               \"#     include referral-spam.conf;\\n\" .\n               \"#\\n\" .\n               \"# Add the following to each /etc/nginx/site-available/your-site.conf that needs protection:\\n\" .\n               \"#\\n\" .\n               \"#      server {\\n\" .\n               \"#        if (\\$bad_referer) {\\n\" .\n               \"#          return 444;\\n\" .\n               \"#        }\\n\" .\n               \"#      }\\n\" .\n               \"#\\n\" .\n               \"# Performance note: This configuration uses a performance-optimized approach with\\n\" .\n               \"# hostname matching instead of thousands of regex patterns. Only one regex is\\n\" .\n               \"# evaluated per request to extract the domain from the Referer header.\\n\" .\n               \"#\\n\";\n    }\n\n    /**\n     * Generate the map section for Nginx using performance-optimized approach\n     *\n     * This uses two maps:\n     * 1. Extract the domain from the Referer header (one regex evaluation)\n     * 2. Match against domain hosts using hostnames parameter (no regex)\n     *\n     * This reduces from thousands of regex evaluations to just 1 per request.\n     *\n     * @param array<string> $domains\n     * @return string\n     */\n    private function generateMapSection(array $domains): string\n    {\n        // First map: Extract domain from Referer header (one regex evaluation)\n        $content = \"# Extract the domain from the Referer header\\n\";\n        $content .= \"map \\$http_referer \\$http_referer_host {\\n\";\n        $content .= \"\\t\\\"~^(?:https?://)?([^/]+)\\\" \\$1;\\n\";\n        $content .= \"}\\n\\n\";\n\n        // Second map: Match against domain hosts using hostnames (no regex)\n        $content .= \"# Match against spam domains using hostname matching\\n\";\n        $content .= \"map \\$http_referer_host \\$bad_referer {\\n\";\n        $content .= \"\\thostnames;\\n\";\n        $content .= \"\\tdefault 0;\\n\\n\";\n\n        foreach ($domains as $domain) {\n            // Leading dot ensures we block both bare domains and subdomains\n            $content .= \"\\t.\" . $domain . \" 1;\\n\";\n        }\n\n        $content .= \"\\n}\";\n\n        return $content;\n    }\n}\n"
  },
  {
    "path": "src/Config/UwsgiConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass UwsgiConfigGenerator extends AbstractConfigGenerator\n{\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return 'referral_spam.res';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'uWSGI configuration file';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n        $formattedDomains = $this->formatDomains($domains);\n\n        $header = $this->createHeader($date);\n        $instructions = $this->generateInstructions();\n        $routes = $this->generateRoutes($formattedDomains);\n\n        return $header . \"\\n\" . $instructions . \"\\n\" . $routes;\n    }\n\n    /**\n     * Generate installation instructions\n     *\n     * @return string\n     */\n    private function generateInstructions(): string\n    {\n        return \"#\\n\" .\n               \"# Put referral-spam.res in /path/to/vassals, then include it from within\\n\" .\n               \"# /path/to/vassals/vassal.ini:\\n\" .\n               \"#\\n\" .\n               \"# ini = referral_spam.res:blacklist_spam\\n\\n\";\n    }\n\n    /**\n     * Generate the route rules for uWSGI\n     *\n     * @param array<string> $domains\n     * @return string\n     */\n    private function generateRoutes(array $domains): string\n    {\n        $content = \"[blacklist_spam]\\n\";\n\n        foreach ($domains as $domain) {\n            $content .= 'route-referer = (?i)' . $domain . \" break:403 Forbidden\\n\";\n        }\n\n        $content .= 'route-label = referral_spam';\n\n        return $content;\n    }\n}\n"
  },
  {
    "path": "src/Config/VarnishConfigGenerator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Config;\n\nclass VarnishConfigGenerator extends AbstractConfigGenerator\n{\n    #[\\Override]\n    public function getFilename(): string\n    {\n        return 'referral-spam.vcl';\n    }\n\n    #[\\Override]\n    public function getDescription(): string\n    {\n        return 'Varnish configuration file';\n    }\n\n    #[\\Override]\n    public function generate(array $domains, string $date): string\n    {\n        $this->validateDomains($domains);\n        $formattedDomains = $this->formatDomains($domains);\n\n        $header = $this->createHeader($date);\n        $subroutine = $this->generateSubroutine($formattedDomains);\n\n        return $header . \"\\n\" . $subroutine;\n    }\n\n    /**\n     * Generate the Varnish subroutine\n     *\n     * @param array<string> $domains\n     * @return string\n     */\n    private function generateSubroutine(array $domains): string\n    {\n        $content = \"sub block_referral_spam {\\n\\tif (\\n\";\n\n        $lastIndex = count($domains) - 1;\n        foreach ($domains as $index => $domain) {\n            $separator = ($index === $lastIndex) ? \"\\n\" : \" ||\\n\";\n            $content .= \"\\t\\treq.http.Referer ~ \\\"(?i)\" . $domain . '\"' . $separator;\n        }\n\n        $content .= \"\\t) {\\n\\t\\t\\treturn (synth(444, \\\"No Response\\\"));\\n\\t}\\n}\";\n\n        return $content;\n    }\n}\n"
  },
  {
    "path": "src/Domain/DomainProcessor.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Domain;\n\nuse Algo26\\IdnaConvert\\Exception\\AlreadyPunycodeException;\nuse Algo26\\IdnaConvert\\Exception\\InvalidCharacterException;\nuse Algo26\\IdnaConvert\\ToIdn;\nuse Algo26\\IdnaConvert\\EncodingHelper\\ToUtf8;\nuse RuntimeException;\n\nclass DomainProcessor\n{\n    private const string DEFAULT_DOMAINS_FILE = __DIR__ . '/../domains.txt';\n    private const string IDN_PATTERN = '/[А-Яа-яЁёöɢ]/u';\n\n    private readonly string $domainsFile;\n\n    private readonly ToIdn $idnConverter;\n\n    private readonly ToUtf8 $encodingHelper;\n\n    public function __construct(?string $domainsFile = null)\n    {\n        $this->domainsFile = $domainsFile ?? self::DEFAULT_DOMAINS_FILE;\n        $this->idnConverter = new ToIdn();\n        $this->encodingHelper = new ToUtf8();\n    }\n\n    /**\n     * Process domains from the domains.txt file\n     *\n     * @return array<string>\n     * @throws AlreadyPunycodeException\n     * @throws InvalidCharacterException\n     * @throws RuntimeException\n     */\n    public function processDomains(): array\n    {\n        $domains = $this->readDomainsFile();\n        $processedDomains = $this->processDomainList($domains);\n        $uniqueDomains = $this->deduplicateAndSort($processedDomains);\n\n        $this->updateDomainsFile($uniqueDomains);\n\n        return $uniqueDomains;\n    }\n\n    /**\n     * Read domains from the domains.txt file\n     *\n     * @return array<string>\n     * @throws RuntimeException\n     */\n    private function readDomainsFile(): array\n    {\n        $handle = @fopen($this->domainsFile, 'r');\n        if (!$handle) {\n            throw new RuntimeException('Error opening file ' . $this->domainsFile);\n        }\n\n        $domains = [];\n        while (($line = fgets($handle)) !== false) {\n            $line = (string) $line; // Ensure string type\n            $cleanedLine = preg_replace('/\\s\\s+/', ' ', $line);\n            if ($cleanedLine !== null) {\n                $domain = trim($cleanedLine);\n                if ($domain !== '') {\n                    $domains[] = $domain;\n                }\n            }\n        }\n        fclose($handle);\n\n        return $domains;\n    }\n\n    /**\n     * Process a list of domains (IDN conversion, validation)\n     *\n     * @param array<string> $domains\n     * @return array<string>\n     * @throws AlreadyPunycodeException\n     * @throws InvalidCharacterException\n     */\n    private function processDomainList(array $domains): array\n    {\n        $processedDomains = [];\n\n        foreach ($domains as $domain) {\n            $processedDomain = $this->processDomain($domain);\n            if ($processedDomain !== null) {\n                $processedDomains[] = $processedDomain;\n            }\n        }\n\n        return $processedDomains;\n    }\n\n    /**\n     * Process a single domain\n     *\n     * @param string $domain\n     * @return string|null\n     * @throws AlreadyPunycodeException\n     * @throws InvalidCharacterException\n     */\n    private function processDomain(string $domain): ?string\n    {\n        $domain = trim($domain);\n\n        if ($domain === '') {\n            return null;\n        }\n\n        // Convert internationalized domain names\n        if (preg_match(self::IDN_PATTERN, $domain)) {\n            /** @var string $convertedDomain */\n            $convertedDomain = $this->encodingHelper->convert($domain);\n            $domain = $this->idnConverter->convert($convertedDomain);\n        }\n\n        // Basic domain validation\n        if (!$this->isValidDomain($domain)) {\n            return null;\n        }\n\n        return $domain;\n    }\n\n    /**\n     * Check if a domain is valid\n     *\n     * @param string $domain\n     * @return bool\n     */\n    private function isValidDomain(string $domain): bool\n    {\n        // Basic domain validation - can be enhanced with more sophisticated checks\n        return $domain !== '' &&\n               strlen($domain) <= 253 &&\n               preg_match(\n                   '/^[a-zA-Z0-9]([a-zA-Z0-9\\-]*[a-zA-Z0-9])?(\\.[a-zA-Z0-9]([a-zA-Z0-9\\-]*[a-zA-Z0-9])?)*$/',\n                   $domain\n               ) === 1;\n    }\n\n    /**\n     * Deduplicate and sort domains\n     *\n     * @param array<string> $domains\n     * @return array<string>\n     */\n    private function deduplicateAndSort(array $domains): array\n    {\n        $uniqueDomains = array_unique($domains);\n        sort($uniqueDomains, SORT_STRING);\n\n        return $uniqueDomains;\n    }\n\n    /**\n     * Update the domains.txt file with processed domains\n     *\n     * @param array<string> $domains\n     * @return void\n     */\n    private function updateDomainsFile(array $domains): void\n    {\n        if (!is_writable($this->domainsFile)) {\n            throw new RuntimeException('Permission denied: cannot write to ' . $this->domainsFile);\n        }\n\n        $content = implode(\"\\n\", $domains) . \"\\n\";\n        if (file_put_contents($this->domainsFile, $content) === false) {\n            throw new RuntimeException('Failed to write to ' . $this->domainsFile);\n        }\n    }\n}\n"
  },
  {
    "path": "src/Generator.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay;\n\nuse StevieRay\\Domain\\DomainProcessor;\nuse StevieRay\\Service\\FileWriter;\nuse StevieRay\\Config\\ConfigGeneratorInterface;\nuse StevieRay\\Config\\MultiFileConfigGeneratorInterface;\nuse StevieRay\\Config\\ApacheConfigGenerator;\nuse StevieRay\\Config\\NginxConfigGenerator;\nuse StevieRay\\Config\\VarnishConfigGenerator;\nuse StevieRay\\Config\\IISConfigGenerator;\nuse StevieRay\\Config\\UwsgiConfigGenerator;\nuse StevieRay\\Config\\CaddyConfigGenerator;\nuse StevieRay\\Config\\CaddyV2ConfigGenerator;\nuse StevieRay\\Config\\GoogleAnalyticsConfigGenerator;\nuse StevieRay\\Config\\HAProxyConfigGenerator;\nuse StevieRay\\Config\\LighttpdConfigGenerator;\nuse Algo26\\IdnaConvert\\Exception\\AlreadyPunycodeException;\nuse Algo26\\IdnaConvert\\Exception\\InvalidCharacterException;\nuse RuntimeException;\n\nclass Generator\n{\n    private readonly DomainProcessor $domainProcessor;\n\n    private readonly FileWriter $fileWriter;\n\n    /** @var array<ConfigGeneratorInterface> */\n    private readonly array $configGenerators;\n\n    public function __construct(string $outputDirectory)\n    {\n        $this->domainProcessor = new DomainProcessor();\n        $this->fileWriter = new FileWriter($outputDirectory);\n        $this->configGenerators = $this->initializeConfigGenerators();\n    }\n\n    /**\n     * Generate all configuration files\n     *\n     * @return void\n     * @throws AlreadyPunycodeException\n     * @throws InvalidCharacterException\n     * @throws RuntimeException\n     */\n    public function generateFiles(): void\n    {\n        $date = date('Y-m-d H:i:s');\n        $domains = $this->domainProcessor->processDomains();\n\n        foreach ($this->configGenerators as $generator) {\n            $this->generateConfigFile($generator, $domains, $date);\n        }\n    }\n\n    /**\n     * Generate a specific configuration file\n     *\n     * @param ConfigGeneratorInterface $generator\n     * @param array<string> $domains\n     * @param string $date\n     * @return void\n     * @throws RuntimeException\n     */\n    private function generateConfigFile(ConfigGeneratorInterface $generator, array $domains, string $date): void\n    {\n        try {\n            if ($generator instanceof MultiFileConfigGeneratorInterface) {\n                // Handle multiple files for generators like Google Analytics\n                $files = $generator->generateMultiple($domains, $date);\n                $this->fileWriter->writeFiles($files);\n            } else {\n                // Handle single file\n                $content = $generator->generate($domains, $date);\n                $this->fileWriter->writeFile($generator->getFilename(), $content);\n            }\n        } catch (\\Exception $e) {\n            throw new RuntimeException(\n                \"Failed to generate {$generator->getDescription()}: \" . $e->getMessage(),\n                0,\n                $e\n            );\n        }\n    }\n\n    /**\n     * Initialize all configuration generators\n     *\n     * @return array<ConfigGeneratorInterface>\n     */\n    private function initializeConfigGenerators(): array\n    {\n        return [\n            new ApacheConfigGenerator(),\n            new NginxConfigGenerator(),\n            new VarnishConfigGenerator(),\n            new IISConfigGenerator(),\n            new UwsgiConfigGenerator(),\n            new CaddyConfigGenerator(),\n            new CaddyV2ConfigGenerator(),\n            new HAProxyConfigGenerator(),\n            new LighttpdConfigGenerator(),\n            new GoogleAnalyticsConfigGenerator(),\n        ];\n    }\n\n    /**\n     * Get available configuration generators\n     *\n     * @return array<ConfigGeneratorInterface>\n     */\n    public function getConfigGenerators(): array\n    {\n        return $this->configGenerators;\n    }\n\n    /**\n     * Get statistics about the generation process\n     *\n     * @return array{\n     *   total_domains: int<0, max>,\n     *   config_files: int<0, max>,\n     *   output_directory: string,\n     *   generated_files: array<array-key, string>\n     * }\n     */\n    public function getStatistics(): array\n    {\n        $domains = $this->domainProcessor->processDomains();\n\n        return [\n            'total_domains' => count($domains),\n            'config_files' => count($this->configGenerators),\n            'output_directory' => $this->fileWriter->getOutputDirectory(),\n            'generated_files' => $this->getGeneratedFileList(),\n        ];\n    }\n\n    /**\n     * Get list of generated files\n     *\n     * @return array<string>\n     */\n    private function getGeneratedFileList(): array\n    {\n        $files = [];\n\n        foreach ($this->configGenerators as $generator) {\n            if ($generator instanceof MultiFileConfigGeneratorInterface) {\n                // Count Google Analytics files\n                $index = 1;\n                while ($this->fileWriter->fileExists(\"google-exclude-{$index}.txt\")) {\n                    $files[] = \"google-exclude-{$index}.txt\";\n                    $index++;\n                }\n            } elseif ($this->fileWriter->fileExists($generator->getFilename())) {\n                $files[] = $generator->getFilename();\n            }\n        }\n\n        return $files;\n    }\n\n    /**\n     * Generate only specific configuration types\n     *\n     * @param array<string> $types\n     * @return void\n     * @throws AlreadyPunycodeException\n     * @throws InvalidCharacterException\n     * @throws RuntimeException\n     */\n    public function generateSpecificConfigs(array $types): void\n    {\n        $date = date('Y-m-d H:i:s');\n        $domains = $this->domainProcessor->processDomains();\n\n        $allowedTypes = array_map('strtolower', $types);\n\n        foreach ($this->configGenerators as $generator) {\n            $generatorType = strtolower($generator->getDescription());\n\n            foreach ($allowedTypes as $type) {\n                if (str_contains($generatorType, $type)) {\n                    $this->generateConfigFile($generator, $domains, $date);\n\n                    break;\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/README.md",
    "content": "<h1 align=\"center\">Referrer Spam Blocker Generator :robot:</h1>\n\n<p align=\"center\"><strong>Converts <em>domains.txt</em> to valid server configuration</strong></p>\n\n<p align=\"center\">Supported Servers: Apache, Nginx, IIS, uWSGI, Caddy & Varnish (+ Google Analytics segments)</p>\n\n\n<br />\n\n[![Latest Stable Version](https://img.shields.io/packagist/v/stevie-ray/referrer-spam-blocker)](https://packagist.org/packages/Stevie-Ray/referrer-spam-blocker)\n[![Build Status](https://travis-ci.org/Stevie-Ray/referrer-spam-blocker.svg)](https://travis-ci.org/Stevie-Ray/referrer-spam-blocker)\n[![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/github/stevie-ray/referrer-spam-blocker)](https://libraries.io/github/Stevie-Ray/referrer-spam-blocker)\n[![Code Quality](https://img.shields.io/scrutinizer/g/Stevie-Ray/referrer-spam-blocker)](https://scrutinizer-ci.com/g/Stevie-Ray/referrer-spam-blocker/?branch=master)\n[![Packagist](https://img.shields.io/packagist/dt/Stevie-Ray/referrer-spam-blocker)](https://packagist.org/packages/stevie-ray/referrer-spam-blocker/stats)\n[![License](https://img.shields.io/packagist/l/stevie-ray/referrer-spam-blocker)](https://packagist.org/packages/Stevie-Ray/referrer-spam-blocker)\n- - - -\n\n## Install\n\nFirst, create a fork of the repository and copy the files to your local machine.\n\n```sh\ngit clone https://github.com/yourname/referrer-spam-blocker.git\n```\n\nInstall the [composer](https://getcomposer.org/) dependencies.\n\nTip: run these commands to globally install `composer` on your system:\n\n```sh\ncurl -sS https://getcomposer.org/installer | php\nmv composer.phar /usr/local/bin/composer\n```\n\nUse the `composer` install in the root folder:\n\n```sh\ncomposer install\n```\n\n\n## Usage\n\nIn your CLI (or webbrowser) run the **run.php** file to generate the files.\nThis can be done using a local server like [MAMP](https://www.mamp.info/en/) or on a remote server.\n\n```sh\nphp run.php\n```\n\nThe new domains are now included in your local files. Commit and push your work to your repository and create a [pull request](https://github.com/Stevie-Ray/referrer-spam-blocker/pulls/).\n\n\n## Contributing\n \nIf you'd like to add a new referrer spammer to the list, [click here to edit the domains.txt file](https://github.com/Stevie-Ray/referrer-spam-blocker/edit/master/src/domains.txt) and create a pull request. Alternatively you can create a [new issue](https://github.com/Stevie-Ray/referrer-spam-blocker/issues/new). In your issue or pull request please explain where the referrer domain appeared and why you think it is a spammer. **Please open one pull request per new domain**.\n \nIf you open a pull request, it is appreciated if you run the **run.php** file. It sorts the domains, creates the files and checks if somebody already reported the domain.\n\n\n## Like it?\n\n- [Buy me a beer](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4XC7KX75K6636) 🍺\n\n\n"
  },
  {
    "path": "src/Service/FileWriter.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Service;\n\nuse RuntimeException;\n\nclass FileWriter\n{\n    private readonly string $outputDirectory;\n\n    private readonly int $filePermissions;\n\n    public function __construct(string $outputDirectory, int $filePermissions = 0644)\n    {\n        $this->outputDirectory = rtrim($outputDirectory, '/');\n        $this->filePermissions = $filePermissions;\n    }\n\n    /**\n     * Write content to a file\n     *\n     * @param string $filename\n     * @param string $content\n     * @return void\n     * @throws RuntimeException\n     */\n    public function writeFile(string $filename, string $content): void\n    {\n        $filePath = $this->outputDirectory . '/' . $filename;\n\n        // Ensure the directory exists\n        $this->ensureDirectoryExists(dirname($filePath));\n\n        // Check if file is writable (or doesn't exist yet)\n        if (file_exists($filePath) && !is_writable($filePath)) {\n            throw new RuntimeException(\"Permission denied: cannot write to $filePath\");\n        }\n\n        // Write the content\n        if (file_put_contents($filePath, $content) === false) {\n            throw new RuntimeException(\"Failed to write content to $filePath\");\n        }\n\n        // Set file permissions\n        if (!chmod($filePath, $this->filePermissions)) {\n            throw new RuntimeException(\"Failed to set permissions on $filePath\");\n        }\n    }\n\n    /**\n     * Write multiple files at once\n     *\n     * @param array<string, string> $files\n     * @return void\n     * @throws RuntimeException\n     */\n    public function writeFiles(array $files): void\n    {\n        foreach ($files as $filename => $content) {\n            $this->writeFile($filename, $content);\n        }\n    }\n\n    /**\n     * Ensure directory exists and is writable\n     *\n     * @param string $directory\n     * @return void\n     * @throws RuntimeException\n     */\n    private function ensureDirectoryExists(string $directory): void\n    {\n        if (!is_dir($directory)) {\n            if (!mkdir($directory, 0755, true)) {\n                throw new RuntimeException(\"Failed to create directory: $directory\");\n            }\n        }\n\n        if (!is_writable($directory)) {\n            throw new RuntimeException(\"Directory is not writable: $directory\");\n        }\n    }\n\n    /**\n     * Get the output directory\n     *\n     * @return string\n     */\n    public function getOutputDirectory(): string\n    {\n        return $this->outputDirectory;\n    }\n\n    /**\n     * Check if a file exists\n     *\n     * @param string $filename\n     * @return bool\n     */\n    public function fileExists(string $filename): bool\n    {\n        return file_exists($this->outputDirectory . '/' . $filename);\n    }\n}\n"
  },
  {
    "path": "src/domains.txt",
    "content": "0-0.fr\n000free.us\n007agent-i.fr\n00author.com\n00go.com\n00it.com\n01casino-x.ru\n033nachtvandeliteratuur.nl\n03e.info\n03p.info\n0n-line.tv\n1-88.vip\n1-99seo.com\n1-best-seo.com\n1-free-share-buttons.com\n100-reasons-for-seo.com\n100dollars-seo.com\n100searchengines.com\n101flag.ru\n11235813.webzdarma.cz\n12-reasons-for-seo.net\n12masterov.com\n12u.info\n15-reasons-for-seo.com\n16lv.com\n1hwy.com\n1kinobig.ru\n1kreditzaim.ru\n1pamm.ru\n1st-urist.ru\n1webmaster.ml\n1wek.top\n1winru.ru\n1x-slot.site\n1x-slots.site\n1xbet-entry.ru\n1xbetcc.com\n1xbetonlines1.ru\n1xbetportugal.com\n1xbetts.ru\n1xslot-casino.online\n1xslot-casino.ru\n1xslot-casino.site\n1xslot.site\n1xslots-africa.site\n1xslots-brasil.site\n1xslots-casino.site\n1xslots.africa\n1xslots.site\n2-best-seo.com\n2-easy.xyz\n2-go-now.xyz\n2015god.org\n24chasa.bg\n24h.doctor\n24videos.tv\n24x7-server-support.site\n256bit.by\n273-fz.ru\n2ads.co.uk\n2itech.ru\n2kata.ru\n2nt.ru\n2your.site\n3-best-seo.com\n3-letter-domains.net\n3dgame3d.com\n3dracergames.com\n3waynetworks.com\n4-best-seo.com\n40momporntube.com\n45en.ru\n45tahunkhongguan.com\n4inn.ru\n4ip.su\n4istoshop.com\n4webmasters.com\n4webmasters.org\n4xcasino.ru\n5-best-seo.com\n5-steps-to-start-business.com\n5elementov.ru\n5forex.ru\n6-best-seo.com\n69-13-59.ru\n6hopping.com\n7-best-seo.com\n70casino.online\n76brighton.co.uk\n76brighton.com\n7kop.ru\n7makemoneyonline.com\n7milliondollars.com\n7ooo.ru\n7zap.com\n8-best-seo.com\n84lv.com\n8xv8.com\n9-best-seo.com\n99-reasons-for-seo.com\nQIWI.xyz\na-elita.in.ua\na-hau.mk\na14download.com\nabacoasale.xyz\nabaiak.com\nabbanreddy.com\nabc.xyz\nabcdefh.xyz\nabcdeg.xyz\nabclauncher.com\nabiente.ru\nabovetherivernc.com\nabtasty.com\nabuser.shop\nacademia-nsk.org\nacads.net\nacarreo.ru\naccount-my1.xyz\naccs-store.ru\nactata.co\nactualremont.ru\nacunetix-referrer.com\nadanih.com\nadcash.com\naddblueoff.com.ua\nadelachrist.top\nadelly.bg\nadf.ly\nadpostmalta.com\nadrenalinebot.net\nadrenalinebot.ru\nadspart.com\nadtiger.tk\nadult-video-chat.ru\nadultfullhd.com\nadventureparkcostarica.com\nadvertisefree.co.uk\nadviceforum.info\nadvocatemsk.ru\nadvokateg.co\nadvokateg.com\nadvokateg.ru\nadvokateg.xyz\naerodizain.com\naerogo.com\naerotour.ru\naffiliate-programs.biz\naffordablewebsitesandmobileapps.com\nafora.ru\nafshan.shop\nagreda.pluto.ro\nagro-gid.com\nagtl.com.ua\nahecmarket.xyz\nahhjf.com\nahrefs.com\nai-seo-services.com\naibolita.com\naidarmebel.kz\naimeesblog.xyz\naimiot.net\naitiman.ae\nakama.com\nakmussale.xyz\nakuhni.by\nakusherok.ru\nakvamaster.dp.ua\nalborzan.com\nalbuteroli.com\nalcobutik24.com\nalert-fdm.xyz\nalert-fjg.xyz\nalert-hgd.xyz\nalert-jdh.xyz\nalertomall.xyz\nalessandraleone.com\nalexsander.ch\nalfa-medosmotr.ru\nalfa9.com\nalfabot.xyz\nalfapro.ru\nalguiblog.online\nalibestsale.com\naliexpress.com\naliexsale.ru\nalif-ba-ta.com\nalinabaniecka.pl\nalive-ua.com\naliviahome.online\nalkanfarma.org\nall-news.kz\nall4bath.ru\nall4invest.ru\nallcredits.su\nallcryptonews.com\nalldownload.pw\nallergick.com\nallergija.com\nallfan.ru\nallforminecraft.ru\nallknow.info\nallkrim.com\nallmarketsnewdayli.gdn\nallnews.md\nallnews24.in\nallpdfmags.net\nallproblog.com\nallsilver925.co.il\nalltheviews.com\nallvacancy.ru\nallwomen.info\nallwrighter.ru\nalma-mramor.com.ua\nalot.com\nalp-rk.ru\nalphaforum.ru\nalphaopt24.ru\nalpharma.net\nalpinaskate.com\naltermix.ua\nalveris.ru\nam-se.com\namanda-porn.ga\namatocanizalez.net\namazon-seo-service.com\namoi.tn\namoremio.by\namos-kids.ru\namospalla.es\namp-project.pro\namt-k.ru\namtel-vredestein.com\namylynnandrews.xyz\nanabolics.shop\nanal-acrobats.hol.es\nanalytics-ads.xyz\nanalyze-best-copywriting-services.party\nanalyze-extra-analytic-service.stream\nananumous.ru\nanapa-inns.ru\nandrewancheta.com\nandroid-style.com\nandroid-systems.ru\nandroid-vsem.org\nandroid4fun.org\nandroids-store.com\nanimalphotos.xyz\nanimebox.com.ua\nanimenime.ru\nannaeydlish.top\nanrtmall.xyz\nanti-crisis-seo.com\nanticrawler.org\nantiguabarbuda.ru\nantonovich-design.com.ua\nanydesk.site\naosheng-tech.com\naoul.top\napartmentbay.ru\napartmentratings.com\napilian.xyz\napishops.ru\napollon-market-url.org\napplepharma.ru\napteka-doc.ru\napteka-pharm.ru\napteka.info\napxeo.info\narabic-poetry.com\naramaicmedia.org\narate.ru\narcadepages.com\narcarticle.online\narchitecturebest.com\narendadogovor.ru\narendakvartir.kz\narendas.net\narendovalka.xyz\nargo-visa.ru\narkansale.xyz\narkartex.ru\narkkivoltti.net\narpe.top\narraty.altervista.org\nartblog.top\nartclipart.ru\nartdeko.info\nartefakct.com\nartpaint-market.ru\nartparquet.ru\nartpress.top\nartsmarket.xyz\narturs.moscow\naruplighting.com\nasacopaco.tk\nascotgoods.xyz\nasia-forum.ru\nask-yug.com\nasmxsatadriverin.aircus.com\nastimvnc.online\nasupro.com\nasynt.net\naszokshop.xyz\natlant-auto.info\natlasvkusov.ru\natleticpharm.org\natley.eu.pn\natmagroup.ru\natoblog.online\natyks.ru\naucoinhomes.com\naudiobangout.com\nausergrubhof.info\naustralia-opening-times.com\nauto-b2b-seo-service.com\nauto-complex.by\nauto-kia-fulldrive.ru\nauto-moto-elektronika.cz\nauto-news-digest.ru\nauto-seo-service.com\nauto-seo-service.org\nauto-zapchasti.org\nauto.rusvile.lt\nauto4style.ru\nautoblog.org.ua\nautobrennero.it\nautobudpostach.club\nautofuct.ru\nautoloans.com\nautolombard-krasnodar.ru\nautomate-amazon-affiliation.com\nautomobile-spec.com\nautonew.biz\nautoseo-service.org\nautoseo-traffic.com\nautoseo-trial-for-1.com\nautoseoservice.org\nautoseotips.com\nautoservic.by\nautotop.com.ua\nautovideobroadcast.com\nautowebmarket.com.ua\navcoast.com\navek.ru\naviapanda.ru\naviaseller.su\naviav.ru.com\navitocars.ru\naviva-limoux.com\navkzarabotok.com\navkzarabotok.info\navon-severozapad.ru\navtoarenda.by\navtocredit-legko.ru\navtointeres.ru\navtorskoe-vino.ru\navtovolop.ru\navtovykup.kz\nawency.com\naworlds.com\naxcus.top\nayerbo.xhost.ro\nayongoods.xyz\nazadnegar.com\nazartclub.org\nazartniy-bonus.com\nazazu.ru\nazbuka-mo.ru\nazbukadiets.ru\nazbukafree.com\nazlex.uz\nb-buyeasy.com\nb2b-lounge.com\nbablonow.ru\nbaciakte.online\nbackgroundpictures.net\nbacklinks-fast-top.com\nbag77.ru\nbahisgunceladresi.com\nbaixar-musicas-gratis.com\nbala.getenjoyment.net\nbaladur.ru\nbalakhna.online\nbalayazh.com\nbalitouroffice.com\nbalkanfarma.org\nbalkanfarma.ru\nbalois.worldbreak.com\nbambi.ck.ua\nbanan.tv\nbankcrediti.ru\nbankhummer.co\nbankiem.pl\nbarbarahome.top\nbard-real.com.ua\nbashtime.ru\nbasisches-wasser.net\nbatietiket.com\nbatut-fun.ru\nbausparen.bz.it\nbavariagid.de\nbavsac.com\nbazaronline24.ru\nbbtec.net\nbdf-tracker.top\nbeachtoday.ru\nbeamfall.info\nbeauby.ru\nbeauty-clinic.ru\nbeauty-lesson.com\nbeclean-nn.ru\nbedroomlighting.us\nbegalka.xyz\nbelinvestdom.by\nbelreferatov.net\nberdasovivan.ru\nberemenyashka.com\nberglion.com\nberkinan.xyz\nberlininsl.com\nberrymall.ru\nbest-deal-hdd.pro\nbest-mam.ru\nbest-offer-hdd-1.info\nbest-offer-hdd-1.space\nbest-offer-hdd-1.top\nbest-offer-hdd.pro\nbest-offer-hdd.xyz\nbest-ping-service-usa-1.info\nbest-ping-service-usa-1.space\nbest-ping-service-usa-1.top\nbest-ping-service-usa.blue\nbest-ping-service-usa.me\nbest-ping-service-usa.space\nbest-ping-service-usa.top\nbest-ping-service-usa.xyz\nbest-printmsk.ru\nbest-seo-offer.com\nbest-seo-service.tk\nbest-seo-software.xyz\nbest-seo-solution.com\nbestbookclub.ru\nbestchoice.cf\nbestempresas.es\nbestfortraders.com\nbesthatcheries.com\nbestleofferhdd.info\nbestmobilityscooterstoday.com\nbestofferfyhdd.info\nbestofferhddacy.info\nbestofferhddbyt.info\nbestofferhddeed.info\nbestofferhddity.info\nbestofferifyhdd.info\nbestofferswalkmydogouteveryday.gq\nbestorofferhdd.info\nbestplacetobuyeriacta.jw.lt\nbestvpnrating.com\nbestwebsiteawards.com\nbestwebsitesawards.com\nbet-prognoz.com\nbet-winner1.ru\nbet2much.ru\nbetonka.pro\nbetslive.ru\nbetterhealthbeauty.com\nbettorschool.ru\nbetune.onlinewebshop.net\nbetwinservice.com\nbeyan.host.sk\nbez-zabora.ru\nbezcmexa.ru\nbezlimitko.xyz\nbezprostatita.com\nbezsporno.ru\nbeztuberkuleza.ru\nbhf.vc\nbibprsale.xyz\nbif-ru.info\nbigcities.org\nbiglistofwebsites.com\nbiketank.ga\nbilliard-classic.com.ua\nbilligerstrom.co\nbillyblog.online\nbimatoprost-careprost.com\nbimatoprost-careprost.com.ua\nbin-brokers.com\nbinokna.ru\nbinomo.kz\nbio-japan.net\nbio-market.kz\nbio.trade-jp.net\nbioca.org\nbiplanecentre.ru\nbird1.ru\nbirzha-truda.eu\nbisign.info\nbitcoin-ua.top\nbitcoins-forum.club\nbitcoins-forum.info\nbitcoins-forum.online\nbitcoins-forum.pro\nbitcoins-live.ru\nbiteg.xyz\nbitniex.com\nbiz-law.ru\nbiznesluxe.ru\nbiznesrealnost.ru\nbiznesschat.net\nbizru.info\nbki24.info\nbkns.vn\nblack-friday.ga\nblack-tip.top\nblackhatworth.com\nblackle.com\nblackplanet.com\nblackwitchcraft.ru\nblancablog.online\nblavia.00author.com\nbleacherreport.com\nblockchaintop.nl\nblockworld.ru\nblog.f00kclan.de\nblog.koorg.ru\nblog.latuti.net\nblog.remote-computer.de\nblog.xsk.in\nblog.yam.com\nblog100.org\nblog2019.top\nblog2019.xyz\nblog4u.top\nblogarun.co\nbloggen.be\nbloggers.nl\nblogig.org\nblogking.top\nbloglag.com\nblognet.top\nblogorganictraffic.shop\nblogos.kz\nblogping.xyz\nblogs.rediff.com\nblogseo.xyz\nblogstar.fun\nblogster.com\nblogtotal.de\nblogtraffic.shop\nblogua.org\nblue-square.biz\nbluerobot.info\nbmusshop.xyz\nbo-vtb24.ru\nboard.f00d.de\nbobba.dzaba.com\nbodybuilding-shop.biz\nboleznikogi.com\nbolezniorganov.ru\nboltalko.xyz\nboltushkiclub.ru\nbombla.org\nbonkers.name\nbonniesblog.online\nbonus-betting.ru\nbonus-spasibo-sberbank.ru\nbonus-vtb.ru\nbonux.nextview.ru\nbookmaker-bet.com\nbookmark4you.biz\nbookmark4you.com\nbookmark4you.com.biz\nbooks-top.com\nboole.onlinewebshop.net\nboost-my-site.com\nboost24.biz\nboostmyppc.com\nbosefux.esy.es\nbosman.pluto.ro\nbostonline.xyz\nbot-traffic.icu\nbot-traffic.xyz\nbotamycos.fr\nbottraffic.live\nbottraffic143.xyz\nbottraffic329.xyz\nbottraffic4free.club\nbottraffic4free.host\nbottraffic999.xyz\nbouda.kvalitne.cz\nbowigosale.xyz\nbpro1.top\nbradleylive.xyz\nbrains2.biz\nbrakehawk.com\nbrandnewtube.com\nbrandov.ru\nbrateg.xyz\nbrauni.com.ua\nbravica.biz\nbravica.com\nbravica.me\nbravica.net\nbravica.news\nbravica.online\nbravica.pro\nbravica.ru\nbravica.su\nbreak-the-chains.com\nbreget74.ru\nbrendbutik.ru\nbriankatrine.top\nbrickmaster.pro\nbrillianty.info\nbristolhostel.com\nbristolhotel.com\nbristolhotel.com.ua\nbritneyblog.online\nbrk-rti.ru\nbrokergid.ru\nbrooklyn-ads.com\nbrooklynsays.com\nbrothers-smaller.ru\nbrus-vsem.ru\nbrus.city\nbrusilov.ru\nbsell.ru\nbtcnix.com\nbtt-club.pro\nbudilneg.xyz\nbudmavtomatika.com.ua\nbudpost.com.ua\nbufetout.ru\nbugof.gq\nbuhproffi.ru\nbuigas.00it.com\nbuildnw.ru\nbuildwithwendy.com\nbuketeg.xyz\nbukleteg.xyz\nbulgaria-web-developers.com\nbuqayy0.livejournal.com\nbur-rk.ru\nburger-imperia.com\nburn-fat.ga\nbusiness-online-sberbank.ru\nbuttons-for-website.com\nbuttons-for-your-website.com\nbuy-cheap-online.info\nbuy-cheap-pills-order-online.com\nbuy-forum.ru\nbuy-meds24.com\nbuyantiviralwp.com\nbuyessay3.blogspot.ru\nbuyessaynow.biz\nbuyessayonline19.blogspot.ru\nbuyfriend.ru\nbuyk.host.sk\nbuynorxx.com\nbuypharmacydrug.com\nbuypillsonline24h.com\nbuypillsorderonline.com\nbuypuppies.ca\nbuyscabiescream.com\nbuytizanidineonline.blogspot.com\nbuytizanidineonlinenoprescription.blogspot.com\nbuyviagraa.blogspot.com\nbvps8.com\nbycontext.com\nbyme.se\nbytimedance.ru\nc-english.ru\nc2bit.hk\ncalifornianews.cf\ncall-of-duty.info\ncallejondelpozo.es\ncalvet.altervista.org\ncancerfungus.com\ncandida-international.blogspot.com\ncandida-society.org.uk\ncannazon-market.org\ncanoncdriverq3.pen.io\ncanyougethighofftizanidine.blogspot.com\ncanzoni.ru\ncarabela.com.do\ncarbon-linger-hierarchy-suntan.top\ncarder.me\ncarder.tv\ncarders.ug\ncardiosport.com.ua\ncardsdumps.com\ncardsharp1.ru\ncardul.ru\ncarezi.com\ncarfax.com.ua\ncarivka.com.ua\ncarloans.com\ncarscrim.com\ncarsdined.org\ncarsnumber.com\ncarson.getenjoyment.net\ncarsoncitypizza.com\ncartechnic.ru\ncasablancamanor.co.za\ncashforum.cc\ncasino-top3.fun\ncasino-top3.online\ncasino-top3.ru\ncasino-top3.site\ncasino-top3.space\ncasino-top3.website\ncasino-v.site\ncasino-vulkane.com\ncasino-x-now.ru\ncasino-x.host\ncasinosbewertung.de\ncasinox-jp.com\ncastingbank.ru\ncatalogs-parts.com\ncatherinemill.xyz\ncatterybengal.com\ncattyhealth.com\ncauxmall.xyz\ncayado.snn.gr\ncazino-v.online\ncazino-v.ru\ncbcseward.com\ncbox.ws\nccfullzshop.com\ncelestepage.xyz\ncelldog.ru\ncenokos.ru\ncenoval.ru\ncentre-indigo.org.ua\ncentrumcoachingu.com\ncercacamion.it\ncertifywebsite.win\ncezartabac.ro\ncfsrating.sonicwall.com\ncgi2.nintendo.co.jp\nchainii.ru\nchannel-badge-betray-volcanic.com\nchastnoeporno.com\nchat.ru\nchatmall.xyz\nchatrazvrat.ru\nchatroulette.life\nchcu.net\ncheap-trusted-backlinks.com\ncheapkeys.ovh\ncheappills24h.com\nchee-by.biz\nchelyabinsk.dienai.ru\nchelyabinsk.xrus.org\ncherrypointplace.ca\ncherubinimobili.it\nchimiver.info\nchinese-amezon.com\nchip35.ru\nchipmp3.ru\nchizhik-2.ru\nchomexun.com\nchoosecuisine.com\nci.ua\nciarustde.online\ncigarpass.com\ncilolamall.xyz\ncinemaenergy-hd.ru\nciproandtizanidine.blogspot.com\ncitizenclsdriveri7.pen.io\ncityadspix.com\ncitybur.ru\ncityreys.ru\ncivilwartheater.com\nclarithromycin500mg.com\nclash-clans.ru\nclassicakuhni.ru\ncleandom.in.ua\ncleaningservices.kiev.ua\nclicksor.com\nclimate.by\nclmforexeu.com\nclothing-deal.club\ncloudsendchef.com\nclub-lukojl.ru\nclub-musics.ru\nclub-samodelkin.ru\ncmd.kz\ncmrrsale.xyz\ncmseshop.xyz\ncobaltpro.ru\ncocyq.inwtrade.com\ncoderstate.com\ncodq.info\ncodysbbq.com\ncoeus-solutions.de\ncoffeemashiny.ru\ncoinswitch.cash\ncoldfilm.ru\ncoleso.md\ncollectinviolity.com\ncollegeessay19.blogspot.ru\ncolumb.net.ua\ncometorussia.net\ncomissionka.net\ncommentag.com\ncommerage.ru\ncomp-pomosch.ru\ncompliance-alex.top\ncompliance-alex.xyz\ncompliance-alexa.top\ncompliance-alexa.xyz\ncompliance-andrew.top\ncompliance-andrew.xyz\ncompliance-barak.top\ncompliance-barak.xyz\ncompliance-brian.top\ncompliance-brian.xyz\ncompliance-checker-7.info\ncompliance-don.top\ncompliance-don.xyz\ncompliance-donald.xyz\ncompliance-elena.top\ncompliance-elena.xyz\ncompliance-fred.top\ncompliance-fred.xyz\ncompliance-george.top\ncompliance-george.xyz\ncompliance-irvin.top\ncompliance-irvin.xyz\ncompliance-ivan.top\ncompliance-ivan.xyz\ncompliance-jack.top\ncompliance-jane.top\ncompliance-jess.top\ncompliance-jessica.top\ncompliance-john.top\ncompliance-josh.top\ncompliance-julia.top\ncompliance-julianna.top\ncompliance-margo.top\ncompliance-mark.top\ncompliance-mary.top\ncompliance-nelson.top\ncompliance-olga.top\ncompliance-viktor.top\ncompliance-walt.top\ncompliance-walter.top\ncompliance-willy.top\ncomputer-remont.ru\ncomuneshop.xyz\nconciergegroup.org\nconcretepol.com\nconnectikastudio.com\nconstanceonline.top\nconstantaservice.net\nconstrumac.com.mx\ncontextualyield.com\ncookie-law-enforcement-aa.xyz\ncookie-law-enforcement-bb.xyz\ncookie-law-enforcement-cc.xyz\ncookie-law-enforcement-dd.xyz\ncookie-law-enforcement-ee.xyz\ncookie-law-enforcement-ff.xyz\ncookie-law-enforcement-gg.xyz\ncookie-law-enforcement-hh.xyz\ncookie-law-enforcement-ii.xyz\ncookie-law-enforcement-jj.xyz\ncookie-law-enforcement-kk.xyz\ncookie-law-enforcement-ll.xyz\ncookie-law-enforcement-mm.xyz\ncookie-law-enforcement-nn.xyz\ncookie-law-enforcement-oo.xyz\ncookie-law-enforcement-pp.xyz\ncookie-law-enforcement-qq.xyz\ncookie-law-enforcement-rr.xyz\ncookie-law-enforcement-ss.xyz\ncookie-law-enforcement-tt.xyz\ncookie-law-enforcement-uu.xyz\ncookie-law-enforcement-vv.xyz\ncookie-law-enforcement-ww.xyz\ncookie-law-enforcement-xx.xyz\ncookie-law-enforcement-yy.xyz\ncookie-law-enforcement-zz.xyz\ncookielawblog.wordpress.com\ncookingmeat.ru\ncool-mining.com\ncool-wedding.net\ncoop-gamers.ru\ncopblock.org\ncopyrightclaims.org\ncopyrightinstitute.org\ncoral-info.com\ncosmediqueresults.com\ncountravel.net\ncovadhosting.biz\ncovblog.top\ncoverage-my.com\ncovetnica.com\ncovid-schutzmasken.de\ncowblog.fr\ncp24.com.ua\ncpnbshop.xyz\ncranly.net\ncrazy-mining.org\ncrd.clan.su\ncreams.makeforum.eu\ncredit-card-tinkoff.ru\ncredit-cards-online24.ru\ncredit.co.ua\ncreditmoney.com.ua\ncrest-poloski.ru\ncrest3d.ru\ncrirussian.ru\ncruiseraf.net\ncrypto-bear.com\ncrypto-bears.com\ncrypto-mining.club\ncrypto-wallets.org\ncrypto1x1.com\ncrystalslot.com\ncubook.supernew.org\ncurenaturalicancro.com\ncurenaturalicancro.nl\ncustomsua.com.ua\ncutalltheshit.com\ncvety24.by\ncvta.xyz\ncxpromote.com\ncyber-monday.ga\ncyclobenzaprinevstizanidine.blogspot.com\ncymbaltaandtizanidine.blogspot.com\ncyprusbuyproperties.com\nczcedu.com\ndacha-svoimi-rukami.com\ndailyblog.xyz\ndailyrank.net\ndailyseo.xyz\ndailystorm.ru\ndailystrength.org\ndailytraffic.shop\ndame-ns.kz\ndamedingel.ya.ru\ndamianis.ru\ndanashop.ru\ndanceuniverse.ru\ndanhale.xyz\ndantk.kz\ndaptravel.com\ndarcysassoon.top\ndarkbooks.org\ndarknet-hydra-onion.biz\ndarknet.sb\ndarknetsitesguide.com\ndarleneblog.online\ndarodar.com\ndatsun-do.com\ndav.kz\ndavilaonline.shop\ndawlenie.com\ndbmkfhqk.bloger.index.hr\ndbutton.net\ndcdcapital.com\nddlmega.net\nddpills.com\nde.zapmeta.com\ndear-diary.ru\ndeart-13.ru\ndeda-moroza-zakaz.ru\ndeirdre.top\ndekorkeramik.ru\ndelayreferat.ru\ndelfin-aqua.com.ua\ndelo.fund\ndeluxewatch.su\ndemenageur.com\nden-noch24.ru\ndengi-v-kredit.in.ua\ndenisecarey.top\ndeniseconnie.top\ndeniven.1bb.ru\ndent-home.ru\ndentuled.net\ndepositfiles-porn.com\ndepositfiles-porn.ga\ndermatovenerologiya.com\nderyie.com\ndescargar-musica-gratis.net\ndescargar-musicas-gratis.com\ndesign-lands.ru\ndesigndevise.com\ndetailedvideos.com\ndetalizaciya-tut.biz\ndetective01.ru\ndetki-opt.ru\ndetoolzon.xyz\ndetskie-konstruktory.ru\ndetskie-zabavi.ru\ndeutsche-poesie.com\ndev-seo.blog\ndevochki-video.ru\ndezeypmall.xyz\ndgdsoutlet.xyz\ndiarioaconcagua.com\ndiatelier.ru\ndicru.info\ndiebesten.co\ndienai.ru\ndienmaytot.xyz\ndiesel-parts28.ru\ndigest-project.ru\ndigilander.libero.it\ndigital-video-processing.com\ndigitalfaq.com\ndimkino.ru\ndinkolove.ya.ru\ndiplom-nk.com\ndiplomas-ru.com\ndipstar.org\ndirectrev.com\ndiscounttaxi.kz\ndiscover-prior-full-stack-services.party\ndiscover-prior-ppc-service.party\ndiscover-top-seo-service.review\ndistonija.com\ndivan-dekor.com.ua\ndividendo.ru\ndiy-handmade-ideas.com\ndjekxa.ru\ndjonwatch.ru\ndjstools.com\ndktr.ru\ndldsshop.xyz\ndlya-android.org\ndms-sw.ru\ndna-sklad.ru\ndnepr-avtospar.com.ua\ndneprsvet.com.ua\ndnmetall.ru\ndocs4all.com\ndocsarchive.net\ndocsportal.net\ndocstoc.com\ndoctmalls.xyz\ndoctornadezhda.ru\ndocumentbase.net\ndocumentserver.net\ndocumentsite.net\ndodge-forum.eu\ndoeco.ru\ndoggyhealthy.com\ndogovorpodryada.ru\ndogshowsonice.com\ndogsrun.net\ndojki-devki.ru\ndojki-hd.com\ndoktoronline.no\ndokumentalkino.net\ndom-international.ru\ndomain-tracker.com\ndomashneeruporno.com\ndomashniy-hotel.ru\ndomashniy-recepti.ru\ndombestofferhdd.info\ndomcran.net\ndomik-derevne.ru\ndominateforex.ml\ndomination.ml\ndominterior.org\ndommdom.com\ndomovozik.ru\ndomoysshop.ru\ndompechey.by\ndomsadiogorod.ru\ndonvito.unas.cz\ndoreenblog.online\ndoska-vsem.ru\ndostavka-v-krym.com\ndostavka-v-ukrainu.ru\ndosug-lux.ru\ndosugrostov.site\ndownload-of-the-warez.blogspot.com\ndownloadkakaotalk.com\ndownloadmefiranaratb1972.xpg.com.br\ndoxyporno.com\ndoxysexy.com\ndoyouknowtheword-flummox.ml\ndprkboards.com\ndraniki.org\ndreamland-bg.com\ndreams-works.net\ndrev.biz\ndriving.kiev.ua\ndrugs-no-rx.info\ndrugspowerstore.com\ndrugstoreforyou.com\ndrupa.com\ndruzhbany.ru\ndruzhininevgeniy63.blogspot.com\ndspautomations.com\ndstroy.su\nduitbux.info\ndumpsccshop.com\ndvd-famille.com\ndvk-stroi.ru\ndvr.biz.ua\ndzinerstudio.com\ne-avon.ru\ne-buyeasy.com\ne-collantes.com\ne-commerce-seo.com\ne-commerce-seo1.com\ne-kwiaciarz.pl\ne-stroymart.kz\ne2click.com\neandsgallery.com\neaptekaplus.ru\nearn-from-articles.com\nearnian-money.info\nearnity-money.info\neasycommerce.cf\neasync.io\neasytuningshop.ru\neavuinsr.online\necblog.xyz\necommerce-seo.com\necommerce-seo.org\necomp3.ru\neconom.co\necookna.com.ua\nedakgfvwql.ru\nedelstahlschornstein-123.de\neditmedios.com\nedmed-sonline.com\nednetstore.xyz\nedshopping.net\neduardoluis.com\neducation-cz.ru\neduchess.ru\nedudocs.net\neduinfosite.com\neduserver.net\neecz.org\neets.net\nege-essay.ru\nege-krasnoyarsk.ru\negovaleo.it\negvar.net\nek-invest.ru\nekatalog.xyz\nekaterinburg.xrus.org\nekbspravka.ru\neko-gazon.ru\nekobata.ru\nekoproekt-kr.ru\nekspertmed.com\nekto.ee\nel-nation.com\nelainasblog.xyz\neldoradorent.az\nelection.interferencer.ru\nelectric-blue-industries.com\nelectricwheelchairsarea.com\nelectro-prom.com\nelegante-vitrage.ru\nelektrikovich.ru\nelektrischezi.canalblog.com\nelektrischeziga.livejournal.com\nelektrischezigarette1.blog.pl\nelektrischezigarette1.onsugar.com\nelektrischezigarette2.devhub.com\nelektrischezigarette2.onsugar.com\nelektrischezigarettekaufen2.cowblog.fr\nelektrischezigaretten1.blogse.nl\nelektrischezigaretten2.beeplog.com\nelektronischezi.livejournal.com\nelektronischezigarette2.mex.tl\nelektronischezigarettekaufen1.beeplog.com\nelektronischezigarettekaufen1.myblog.de\nelektronischezigarettekaufen2.tumblr.com\nelektrozigarette1.dreamwidth.org\nelektrozigarette2.webs.com\nelektrozigarette2.wordpressy.pl\nelektrozigarettekaufen1.devhub.com\nelektrozigarettekaufen2.blogse.nl\nelektrozigaretten1.postbit.com\nelektrozigaretten1.tumblr.com\nelektrozigaretten1.webs.com\nelektrozigaretten2.yn.lt\nelementspluss.ru\nelenatkachenko.com.ua\nelentur.com.ua\nelidelcream.weebly.com\nelitesportsadvisor.com\nelizabethbruno.top\nelkacentr.ru\nellemarket.com\nelmifarhangi.com\neloconcream.blogspot.com\neloxal.ru\nelvel.com.ua\nembedle.com\nemctestlab.ru\nemerson-rus.ru\nemicef.com\nempire-market.org\nempire-market.xyz\nempiremarket-link.org\nempiremarketlink24.com\nempirestuff.org\nempis.magix.net\nencmbtia.online\nenergomash.net\nenergy-ua.com\nenergydiet-info.ru\nenergydiet24.ru\nenergysexy.com\nenginebay.ru\nenglishdictionaryfree.com\nenglishtopic.ru\nenter-unicredit.ru\nentgetadsincome.info\nenvistore.xyz\neonpal.com\nepcpolo.com\nepicdiving.com\neraglass.com\nerank.eu\neredijovon.com\nereko.ru\nerias.xyz\neric-artem.com\nericshome.store\nerinhome.xyz\nero-video-chat.org\nerofus.online\neropho.com\neropho.net\nerot.co\nerotag.com\neroticheskij-video-chat.ru\nerotikstories.ru\nes-pfrf.ru\nes5.com\nescort-russian.com\nescortplius.com\neshop.md\neskei83.com\nesnm.ru\nesoterikforum.at\nessaytags.com\nestdj.com\neste-line.com.ua\netairikavideo.gr\netehnika.com.ua\netotupo.ru\nets-2-mod.ru\netsfshop.xyz\neu-cookie-law-enforcement-4.xyz\neu-cookie-law-enforcement-5.xyz\neu-cookie-law-enforcement-6.xyz\neu-cookie-law-enforcement-7.xyz\neu-cookie-law-enforcement1.xyz\neu-cookie-law-enforcement2.xyz\neu-cookie-law.blogspot.com\neu-cookie-law.info\neurocredit.xyz\neuromasterclass.ru\neuronis-free.com\neuropages.com.ru\neuropeanwatches.ru\neurosamodelki.ru\neuroskat.ru\nevaashop.ru\nevent-tracking.com\neventiyahall.ru\nevreuxshop.xyz\nexchangeit.gq\nexchanges-bet.com\nexclusive-profit.com\nexdocsfiles.com\nexecedmall.xyz\nexecutehosting.com\nexotic-video-chat.ru\nexpdom.com\nexpediacustomerservicenumber.online\nexpert-find.ru\nexpertnaya-ocenka.ru\nexplore-prior-web-service.review\nexpress-vyvoz.ru\nexpresstoplivo.ru\nextener.com\nextener.org\nextrabot.com\nextremez.net\neyes-on-you.ga\neyessurgery.ru\nez8motelseaworldsandiego.com\nezigarettekaufen.myblog.de\nezigarettekaufen1.hpage.com\nezigarettekaufen2.blox.pl\nezigarettekaufen2.mpbloggar.se\nezigarettekaufen2.yolasite.com\nezigarettenkaufen1.deviantart.com\nezigarettenkaufen1.pagina.gr\nezigarettenkaufen2.dreamwidth.org\nezigarettenshop1.yolasite.com\nezigarettenshop2.myblog.de\nezigarettenshop2.postbit.com\nezigaretteshop.webs.com\nezigaretteshop2.mywapblog.com\nezigaretteshop2.vefblog.net\nezofest.sk\nezrvrentals.com\nf-loaded.de\nf-online.de\nf00kclan.de\nf012.de\nf07.de\nf0815.de\nf1nder.org\nfacebook-mobile.xyz\nfainaidea.com\nfaithe.top\nfalco3d.com\nfalcoware.com\nfamily1st.ca\nfamilyholiday.ml\nfamilyphysician.ru\nfanoboi.com\nfartunabest.ru\nfashion-mk.net\nfashiong.ru\nfashionindeed.ml\nfast-wordpress-start.com\nfastgg.net\nfatrizscae.online\nfavorcosmetics.com\nfavoritemoney.ru\nfavoritki-msk.ru\nfavornews.com\nfazika.ru\nfba-mexico.com\nfbdownloader.com\nfbfreegifts.com\nfc-007.com\nfealq.com\nfeargames.ru\nfeedback.sharemyfile.ru\nfeedouble.com\nfeedouble.net\nfeel-planet.com\nfeeriaclub.ru\nfeiacmr.shop\nfeminist.org.ua\nfemmesdenudees.com\nfenoyl.batcave.net\nferieboligkbh.dk\nfermersovet.ru\nfetishinside.com\nfialka.tomsk.ru\nfidalsa.de\nfierrohack.ru\nfigensahin.com\nfilesclub.net\nfilesdatabase.net\nfilesvine.com\nfilm-one.ru\nfilmetricsasia.com\nfilmgo.ru\nfilmidivx.com\nfilms2018.com\nfilter-ot-zheleza.ru\nfinancial-simulation.com\nfinansov.info\nfindacheaplawyers.com\nfinder.cool\nfindercarphotos.com\nfineblog.top\nfinstroy.net\nfinteks.ru\nfirma-legion.ru\nfirmgeo.xyz\nfirstblog.top\nfit-discount.ru\nfitness-video.net\nfitodar.com.ua\nfiuagts.online\nfiuxy.com\nfiverr.com\nfix-website-errors.com\nfizika.tv\nflash4fun.com\nflavors.me\nflex4launch.ru\nflexderek.com\nfloating-share-buttons.com\nflooringinstallation-edmonton.com\nflowersbazar.com\nflowertherapy.ru\nflowwwers.com\nflprog.com\nflyblog.xyz\nflytourisme.org\nfm-upgrade.ru\nfmgrupe.it\nfoojo.net\nfor-marketersy.info\nfor-your.website\nforensicpsychiatry.ru\nforex-indextop20.ru\nforex-procto.ru\nforex.osobye.ru\nforex21.ru\nforexgb.ru\nforexunion.net\nforminecrafters.ru\nforms-mtm.ru\nforpostlock.ru\nforsex.info\nfortwosmartcar.pw\nforum-engineering.ru\nforum.poker4life.ru\nforum.tvmir.org\nforum20.smailik.org\nforum69.info\nforums.toucharcade.com\nfotoxxxru.com\nfoxinsocks.ru\nfoxjuegos.com\nfoxtechfpv.com\nfoxweber.com\nfpclub.ru\nfr.netlog.com\nfrancaise-poesie.com\nfrankofficial.ru\nfrauplus.ru\nfree-fb-traffic.com\nfree-fbook-traffic.com\nfree-floating-buttons.com\nfree-games-download.falcoware.com\nfree-share-buttons-aaa.xyz\nfree-share-buttons-bbb.xyz\nfree-share-buttons-ccc.xyz\nfree-share-buttons-ddd.xyz\nfree-share-buttons-eee.xyz\nfree-share-buttons-fff.xyz\nfree-share-buttons.blogspot.com\nfree-share-buttons.co\nfree-share-buttons.com\nfree-share-buttons.top\nfree-social-buttons-aaa.xyz\nfree-social-buttons-bbb.xyz\nfree-social-buttons-ccc.xyz\nfree-social-buttons-ddd.xyz\nfree-social-buttons-eee.xyz\nfree-social-buttons-fff.xyz\nfree-social-buttons-hhh.xyz\nfree-social-buttons-iii.xyz\nfree-social-buttons.com\nfree-social-buttons.org\nfree-social-buttons.xyz\nfree-social-buttons1.xyz\nfree-social-buttons2.xyz\nfree-social-buttons3.xyz\nfree-social-buttons4.xyz\nfree-social-buttons5.xyz\nfree-social-buttons6.xyz\nfree-social-buttons7.xyz\nfree-traffic.xyz\nfree-video-chat.ru\nfree-video-tool.com\nfree-website-traffic.com\nfreeasecret.com\nfreenode.info\nfreeseedsonline.com\nfreetangodownload.com\nfreewebs.com\nfreewhatsappload.com\nfreewlan.info\nfreshberry.com.ua\nfreshnails.com.ua\nfront.ru\nfront.to\nfsalas.com\nfsin-pokypka.ru\nftns.ru\nfuck-paid-share-buttons.xyz\nfuel-gas.com\nfullzdumps.cc\nfungirlsgames.net\nfunnypica.com\nfurniture-ukraine.com\nfurniturehomewares.com\nfutbolkisales.ru\nfvetgoods.xyz\nfxtips.ru\ng7m.pl\ngabeshop.ru\ngabysuniqueboutique.com\ngael-s.ru\ngagrasector.ru\ngalaxy-family.ru\ngalaxyflowers.ru\ngalblog.top\ngaleon.com\ngamblingpp.ru\ngame-mmorpg.net\ngame-top.su\ngame300.ru\ngames.kolossale.ru\ngammatraffic.com\ngandikapper.ru\ngaokr.xyz\ngap-search.com\ngarantprava.com\ngardene.ru\ngasvleningrade.ru\ngatwick.ru\ngays-video-chat.ru\ngaz-voshod.ru\ngazel-72.ru\ngazobeton-p.com.ua\ngazoblok.net.ua\ngbh-invest.ru\ngcmx.net\ngcup.ru\ngdcentre.ru\ngearcraft.us\ngearsadspromo.club\ngelezki.com\ngeliyballon.ru\ngelstate.ru\ngeneralporn.org\ngenericlowlatencyasiodriverhq.aircus.com\ngeniusfood.co.uk\ngentamicineyedrops.blogspot.com\ngeorgeblog.online\ngepatit-info.top\ngermes-trans.com\nget-best-copywriting-service.stream\nget-clickir.info\nget-clickize.info\nget-free-social-traffic.com\nget-free-traffic-now.com\nget-more-freeen-visitors.info\nget-more-freeer-visitors.info\nget-more-freeish-visitors.info\nget-more-freeize-visitors.info\nget-more-freele-visitors.info\nget-morebit-free-visitors.info\nget-prime-seo-services.review\nget-seo-help.com\nget-your-social-buttons.info\ngetaadsincome.info\ngetadsincomeian.info\ngetadsincomely.info\ngetadsincomeof.info\ngetbottraffic4free.club\ngetbottraffic4free.host\ngetbottraffic4free.xyz\ngetbytadsincome.info\ngetfy-click.info\ngetism-more-free-visitors.info\ngetity-more-free-visitors.info\ngetityadsincome.info\ngetive-more-free-visitors.info\ngetlamborghini.ga\ngetoutofdebtfree.org\ngetprismatic.com\ngetpy-click.info\ngetpy-more-free-visitors.info\ngetrichquick.ml\ngetrichquickly.info\ngetyourprofit.net\ngevciamst.online\ngezlev.com.ua\ngfaq.ru\nghazel.ru\nghernnqr.skyrock.com\ngheus.altervista.org\nghostvisitor.com\ngidonline.one\ngidro-partner.ru\ngiftbig.ru\ngirlporn.ru\ngirls-ufa.ru\ngirlsatgames.ru\ngk-atlant.info\ngk-casino.fun\ngk-casino.online\ngk-casino.ru\ngk-casino.site\ngk-casino.space\ngk-casino.website\ngkvector.ru\nglall.ru\nglass-msk.ru\nglavprofit.ru\nglcomputers.ru\nglktfw.net\nglobal-smm.ru\nglobalscam.ga\nglobatur.ru\nglobetrotting-culture.ru\nglogow.pl\nglopages.ru\ngo2album.com\ngobongo.info\ngoforexvps.com\ngogps.me\ngojiberriess.apishops.ru\ngok-kasten.net\ngoldandcard.ru\ngolden-catalog.pro\ngolden-praga.ru\ngoldenggames.com\ngoldvaultmetals.com\ngolmau.host.sk\ngolyedevushki.com\ngonextmedia.com\ngood-potolok.ru\ngoodbyecellulite.ru\ngoodcoffeepremium.com\ngoodhumor24.com\ngoodnightjournal.com\ngoodprotein.ru\ngoogle-liar.ru\ngooglefeud.com\ngooglemare.com\ngooglsucks.com\ngorabagrata.ru\ngorgaz.info\ngoroda-vsego-mira.ru\ngorodservis.ru\ngosreg.amchs.ru\ngototal.co.nz\ngourcy.altervista.org\ngoyua.xyz\ngq-catalog.gq\ngraceonline.shop\ngrafaman.ru\ngrand-chlen.ru\ngraphid.com\ngratuitbaise.com\ngreatblog.top\ngreatgrace.ru\ngreentechsy.com\ngrizzlysgrill.com\ngroshi-kredut.com.ua\ngroupmoney.ru\ngrowmyfunds.ca\ngrowshop.es\ngrowth-hackingan.info\ngrowth-hackingead.info\ngrowth-hackingeads.info\ngrowth-hackingor.info\ngrowth-hackingy.info\ngrupografico-pilar.com.ar\ngruzchiki24.ru\ngsbs.com.ua\ngsmlab.pl\ngsmtlf.ru\ngta-club.ru\ngta-top.ru\ngttpsale.xyz\nguardlink.com\nguardlink.org\nguge.io\nguidetopetersburg.com\ngungamesz.com\nguruofcasino.com\ngwhwpxbw.bloger.index.hr\ngxcb.net\nh2monline.com\nhacktougroup.ru\nhagirkblog.space\nhahashka.ru\nhaikuware.com\nhalat.xyz\nhalefa.com\nhamyshop.xyz\nhandicapvansarea.com\nhandicapvantoday.com\nhandsandlegs.ru\nhanink.biz.ly\nhankspring.xyz\nhappysong.ru\nhard-porn.mobi\nhardcore.anzwers.net\nhardosale.xyz\nharpro.net\nhavepussy.com\nhawaiisurf.com\nhazardky.net\nhd1080film.ru\nhd720kino.ru\nhdfreeporno.net\nhdhc.site\nhdmoviecamera.net\nhdmoviecams.com\nhdmoviecams.net\nhdsmartvideoreg.ru\nheadpharmacy.com\nhealbio.ru\nhealgastro.com\nhealing-dysplasia.ru\nhealmytrauma.info\nhealthhacks.ru\nheeha.net\nhem.passagen.se\nhentai-manga.porn\nheroero.com\nhexometer.com\nhifidesign.ru\nhilaryblog.top\nhill-accent-withdraw-sentiment.info\nhimandmall.xyz\nhit-kino.ru\nhitree.shop\nhitsbox.info\nhiwibyh.bugs3.com\nhiwpro.xyz\nhkdiiohi.skyrock.com\nhkjrsale.xyz\nhmmm.cz\nhmywwogw.bloger.index.hr\nhobild.net\nhol.es\nholiday-shop.ru\nholidaypics.org\nholistickenko.com\nholodkovich.com\nhome.myplaycity.com\nhomeafrikalike.tk\nhomedo.fabpage.com\nhomeinns.com\nhomelygarden.com\nhomemade.gq\nhomemypicture.tk\nhonesty-homemade-grizzly-humanlike.com\nhongfanji.com\nhoporno.com\nhoroshieokna.com\nhost-protection.com\nhostcritique.com\nhoste.octopis.com\nhostiman.ru\nhosting-tracker.com\nhostingclub.lk\nhostsshop.ru\nhotblognetwork.com\nhotdl.in\nhotspot.ipb.co.id\nhottour.com\nhotwatersdamps.com\nhoudom.net\nhousedesigning.ru\nhousediz.com\nhousekuba.org\nhousemilan.ru\nhouseofgaga.ru\nhouseofrose.com\nhouston-vikings.com\nhow-i-build-website.review\nhow-i-promote-website.review\nhow-to-buy-bitcoin.club\nhow-to-buy-bitcoin.stream\nhow-to-buy-bitcoins-cheap.party\nhow-to-buy-bitcoins-cheap.review\nhow-to-buy-bitcoins-cheap.stream\nhow-to-buy-bitcoins-cheap.trade\nhow-to-buy-bitcoins.stream\nhow-to-buy-bitcoins.trade\nhow-to-earn-quick-money.com\nhow-to-promote-website.faith\nhow-to-promote-website.review\nhowlongdoestizanidinestayinyoursystem.blogspot.com\nhowmuchdoestizanidinecost.blogspot.com\nhowopen.ru\nhowtostopreferralspam.com\nhowtostopreferralspam.eu\nhoztorg-opt.ru\nhplaserjetpdriver8y.pen.io\nhptwaakw.blog.fc2.com\nhrtonline.xyz\nhscsscotland.com\nhseipaa.kz\nhsoutdoor.com\nhspline.com\nhttps-legalrc.biz\nhugblog.xyz\nhuhn.altervista.org\nhulfingtonpost.com\nhully.altervista.org\nhumanorightswatch.org\nhundejo.com\nhuntdown.info\nhusky-shop.cz\nhustoon.over-blog.com\nhvd-store.com\nhydra-2019.ru\nhydra-2020.online\nhydra-2020.ru\nhydra-centr.fun\nhydra-dealer.com\nhydra-guide.org\nhydra-new.online\nhydra-onion-faq.com\nhydra-pc.com\nhydra-shop.org\nhydra-site.ru\nhydra-slon.net\nhydra-vhod2020.com\nhydra-zerkalo20.com\nhydra.online\nhydra1717.com\nhydra2.market\nhydra2020.top\nhydra2020gate.com\nhydra2020market.com\nhydra2020onion.com\nhydra2020ru.com\nhydra2020zerkala.com\nhydra2020zerkalo.com\nhydra20onion.com\nhydra20online.com\nhydra20original.com\nhydra2use.com\nhydra2zahod.com\nhydraena.com\nhydrahow.com\nhydrahudra.com\nhydraland.net\nhydramarket2020.com\nhydramirror2020.com\nhydranten.net\nhydraonion2019.net\nhydrarusmarket.com\nhydraruz-2020.com\nhydraruzonion2020.com\nhydraruzonionx.ru\nhydraruzxpnew4af.com.co\nhydraruzxpnew4af.ink\nhydraruzxpnew4aff.ru\nhydraruzxpwnew4afonion.com\nhydraulicoilcooler.net\nhydrauliczny.com\nhydravizoficial.info\nhydrazerkalo2019.net\nhydrazerkalo2020.com\nhydropump.su\nhyip-zanoza.me\nhyipmanager.in\ni-spare.ru\nialgramer.shop\niamsport.org\nib-homecredit.ru\nib-rencredit.ru\niblogpress.xyz\niceton.net\nico.re\nictizanidinehcl4mg.blogspot.com\nidc.com.ua\nidealtits.net\nideayz.com\nidegenvezeto.eu\nideibiznesa2015.ru\nieeeoutlet.xyz\nifirestarter.ru\nifmo.ru\nigadgetsworld.com\nigamingtop.com\nigru-xbox.net\nilikevitaly.com\nillagedusexe.com\nilmen.net\niloveitaly.ro\niloveitaly.ru\nilovevitaly.co\nilovevitaly.com\nilovevitaly.info\nilovevitaly.org\nilovevitaly.ro\nilovevitaly.ru\nilovevitaly.xyz\nimediadesk.com\niminent.com\nimmigrational.info\nimmobiliaremassaro.com\nimmobilieralgerie.net\nimperia31.ru\nimperiafilm.ru\nimpotentik.com\nimpresagaia.it\nin-mostbet.ru\nin-sto.ru\ninbabes.sexushost.com\ninboxdollars.com\nincanto.in.ua\nincitystroy.ru\nincomekey.net\nincoonline.xyz\nincreasewwwtraffic.info\nindetiske.ya.ru\nindo-export.ru\ninet-shop.su\ninfazavr.ru\ninfektsii.com\ninfobabki.ru\ninfodocsportal.com\ninfogame.name\ninfokonkurs.ru\ninform-ua.info\ningramreed.xyz\ninmoll.com\ninnodgfdriverhm.aircus.com\ninsider.pro\ninstallspartners.com\ninstasexyblog.com\ninsultu-net.ru\nintelhdgraphicsgtdrive6w.metroblog.com\ninterferencer.ru\ninterfucks.net\nintermesh.net\ninternet-apteka.ru\nintex-air.ru\nintimchats.ru\nintimver.3dgayxxx.com\ninvest-pamm.ru\ninvestingclub.ru\ninvestpamm.ru\ninvestsuccess.org\ninvivo.hu\ninzn.ru\nio9.com\nipod-app-reviews.com\nipostroika.ru\niqoption-bin.com\niqoption.com\niqoption.pro\niradiology.ru\niridsale.xyz\nishgetadsincome.info\nisistaylorporn.info\niskalko.ru\niskussnica.ru\nisotoner.com\nispaniya-costa-blanca.ru\nistanbulit.com\nistizanidineacontrolledsubstance.blogspot.com\nistizanidineanarcoticdrug.blogspot.com\nistizanidineanopiate.blogspot.com\nistizanidinelikexanax.blogspot.com\nistock-mebel.ru\nit-max.com.ua\nit-worlds.com\nitbc.kiev.ua\nitrevolution.cf\nitronics.ca\nitsdp3.com\nivegetadsincome.info\niyfsearch.com\nizamorfix.ru\nizhevsk.xrus.org\nizhevskjob.xyz\nizhstrelok.ru\nizi24.ru\nj-times.ru\njabug.xyz\njacblog.xyz\njackonline.store\njanemill.xyz\njanettabridal.com\njapfm.com\njasonpartington.com\njav-fetish.com\njav-fetish.site\njav-idol.com\njavatex.co.id\njavcoast.com\njavlibrary.cc\njaxcube.info\njazzstyle4us.com\njeffbullas.xyz\njennyfire.ru\njikem.com\njintub.com\njjbabskoe.ru\njob-opros.ru\njob-prosto.ru\njobfree24.pl\njobgirl24.ru\njobius.com.ua\njohnnyhaley.top\njoinandplay.me\njoingames.org\njosephineblog.top\njournalhome.com\njoyceblog.top\njoycee.xyz\njudyandsimon.com\njuliadiets.com\njuliaworld.net\njumkite.com\njustkillingti.me\njustprofit.xyz\njweber.ru\njwss.cc\njyrxd.com\nkaac.ru\nkabbalah-red-bracelets.com\nkabinet-5ka.ru\nkabinet-alfaclick.ru\nkabinet-binbank.ru\nkabinet-card-5ka.ru\nkabinet-click-alfabank.ru\nkabinet-esia-gosuslugi.ru\nkabinet-faberlic.ru\nkabinet-gosuslugi.ru\nkabinet-ipoteka-domclick.ru\nkabinet-karta-5ka.ru\nkabinet-lk-megafon.ru\nkabinet-lk-rt.ru\nkabinet-login-mts.ru\nkabinet-mil.ru\nkabinet-mos.ru\nkabinet-my-beeline.ru\nkabinet-my-pochtabank.ru\nkabinet-nalog.ru\nkabinet-online-bm.ru\nkabinet-online-open.ru\nkabinet-online-rsb.ru\nkabinet-online-rshb.ru\nkabinet-online-sberbank.ru\nkabinet-online-sovcombank.ru\nkabinet-online-vtb.ru\nkabinet-pfr.ru\nkabinet-pfrf.ru\nkabinet-platon.ru\nkabinet-qiwi.ru\nkabinet-tele2.ru\nkabinet-tinkoff.ru\nkabinet-tricolor.ru\nkabinet-ttk.ru\nkabinet-vtb24.ru\nkaircm.shop\nkakablog.net\nkakadu-interior.com.ua\nkakworldoftanks.ru\nkalb.ru\nkambasoft.com\nkamin-sam.ru\nkamorel.com\nkanakox.com\nkarachev-city.ru\nkaradene.com\nkarapuz.org.ua\nkarusel-market.ru\nkatjimej.blog.fc2.com\nkatrd.xyz\nkatushka.net\nkaz.kz\nkazan.xrus.org\nkazka.ru\nkazlenta.kz\nkazrent.com\nkellyonline.xyz\nkendrablog.online\nkenyagoods.xyz\nkerch.site\nketrzyn.pl\nkevblog.top\nkevinsnow.online\nkexihao.xyz\nkeywords-monitoring-success.com\nkeywords-monitoring-your-success.com\nkharkov.ua\nkharlov.ua\nkidd.reunionwatch.com\nkierowca-praca.pl\nkiev.ua\nkimblog.top\nkinnarimasajes.com\nkino-filmi.com\nkino-fun.ru\nkino-key.info\nkino2018.cc\nkinobaks.com\nkinobum.org\nkinoflux.net\nkinohit1.ru\nkinopolet.net\nkinosed.net\nkinostar.online\nkinotorka.ru\nkiprinform.com\nkiwe-analytics.com\nkiwi237au.tk\nkiyany-za-spravedluvist.com.ua\nkletkimehan.ru\nklfd.net\nkndxbkdx.bloger.index.hr\nknigonosha.net\nkochanelli.com\nkolcasale.xyz\nkoleso24.com.ua\nkollekcioner.ru\nkolotiloff.ru\nkomp-pomosch.ru\nkomputernaya-pomosh-moscow.ru\nkomputers-best.ru\nkomukc.com.ua\nkongoultry.net\nkonkursov.net\nkoopilka.com\nkoptims.tiu.ru\nkoronirealestate.gr\nkosova.de\nkosunnyclub.com\nkotaku.com\nkozhakoshek.com\nkozhasobak.com\nkozhniebolezni.com\nkpcconline.xyz\nkrafte.ru\nkrasivoe-hd.com\nkrasivoe-hd.net\nkrasnodar-avtolombard.ru\nkrasnodar.xrus.org\nkrasota-zdorovie.pw\nkrasota.ru\nkredutu.com.ua\nkredytbank.com.ua\nkruiz-sochi.ru\nkrumble-adsde.info\nkrumble-adsen.info\nkrumble-adsic.info\nkrumbleent-ads.info\nkrynica.info\nktotut.net\nkumuk.info\nkupit-adenu.ru\nkursy-ege.ru\nkustanay.kz\nkvartir-remont.biz\nkvartira-sutochno.com\nkvartiry-remont.ucoz.ru\nkw21.org\nl2soft.eu\nla-fa.ru\nlabguamec.online\nlabplus.ru\nlabvis.host.sk\nladov.ru\nlafppshop.xyz\nlaitrcus.online\nlakiikraski.ru\nlalalove.ru\nlambreshop.xyz\nlaminat.com.ua\nlampokrat.ws\nlanasshop.ru\nlandliver.org\nlandoftracking.com\nlanguagecode.com\nlankarns.com\nlaparfumotec.com\nlapitec.eu\nlaptop-4-less.com\nlaptoper.net\nlarchik.net\nlarutti.ru\nlaudit.ru\nlaw-check-eight.xyz\nlaw-check-nine.xyz\nlaw-check-seven.xyz\nlaw-check-two.xyz\nlaw-enforcement-aa.xyz\nlaw-enforcement-bb.xyz\nlaw-enforcement-bot-aa.xyz\nlaw-enforcement-bot-bb.xyz\nlaw-enforcement-bot-cc.xyz\nlaw-enforcement-bot-dd.xyz\nlaw-enforcement-bot-ee.xyz\nlaw-enforcement-bot-ff.xyz\nlaw-enforcement-bot-hh.xyz\nlaw-enforcement-bot-ii.xyz\nlaw-enforcement-cc.xyz\nlaw-enforcement-check-eight.xyz\nlaw-enforcement-check-five.xyz\nlaw-enforcement-check-four.xyz\nlaw-enforcement-check-nine.xyz\nlaw-enforcement-check-one.xyz\nlaw-enforcement-check-six.xyz\nlaw-enforcement-check-three.xyz\nlaw-enforcement-check-two.xyz\nlaw-enforcement-dd.xyz\nlaw-enforcement-ee.xyz\nlaw-enforcement-eight.xyz\nlaw-enforcement-ff.xyz\nlaw-enforcement-five.xyz\nlaw-enforcement-four.xyz\nlaw-enforcement-gg.xyz\nlaw-enforcement-hh.xyz\nlaw-enforcement-one.xyz\nlaw-enforcement-seven.xyz\nlaw-enforcement-three.xyz\nlaw-enforcement-two.xyz\nlaw-five.xyz\nlaw-four.xyz\nlaw-one.xyz\nlaw-six.xyz\nlaw-three.xyz\nlaw-two.xyz\nlawrenceblog.online\nlaxdrills.com\nlayola.biz.tc\nlazy-z.com\nlcecshop.xyz\nleadwayau.com\nleboard.ru\nlebowmall.xyz\nledalfa.by\nleddjc.net\nledis.top\nledpolice.ru\nledx.by\nleeboyrussia.com\nlegalrc.biz\nlego4x4.ru\nlenvred.org\nleon-official.site\nlernur.net\nlerporn.info\nleto-dacha.ru\nletolove.ru\nletsgotofriday.com\nlevaquin750mg.blogspot.com\nlezbiyanki.net\nlflash.ru\nli-er.ru\nlida-ru.com\nlider82.ru\nlife.biz.ua\nlifebyleese.com\nlifespeaker.ru\nligastavok-in.ru\nlight.ifmo.ru\nlighthearteds.shop\nlikesdesign.com\nlilishopstogether.com\nlindsayblog.online\nlinerdrilling.com\nlink.web-list.xyz\nlipidofobia.com.br\nliquimondo.com\nlirunet.ru\nlisque.batcave.net\nlittleberry.ru\nlive-sexchat.ru\nlive-xbet.com\nlivefixer.com\nliveinternet.ro\nliveinternet.ru\nlivejournal.top\nlivia-pache.ru\nlivingroomdecoratingideas.website\nlivingsimply.com\nlk-gosuslugi.ru\nlk-lk-rt.ru\nllastbuy.ru\nlmrauction.com\nloadopia.com\nlocal-seo-for-multiple-locations.com\nlogin-tinkoff.ru\nloginduepunti.it\nlogo-all.ru\nlol-smurfs.com\nlolz.guru\nlolzteam.online\nlolzteam.org\nlomb.co\nlombardfinder.ru\nlombia.co\nlombia.com\nlomza.info\nlondonstratford.co.uk\nlookover.ru\nlost-alpha.ru\nlotoflotto.ru\nloveorganic.ch\nlow-format.ru\nlowpricesiterx.com\nlsex.xyz\nlsitenonrepeat.com\nluckybull.io\nluckyshop.net.ua\nlukoilcard.ru\nlumb.co\nlutherstable.org\nluton-invest.ru\nluxmagazine.cf\nluxup.ru\nluxurybet.ru\nm-google.xyz\nm.ok.ru\nm1media.net\nmacresource.co.uk\nmadisonclothingny.com\nmadjonline.xyz\nmadot.onlinewebshop.net\nmafcards.ru\nmagazintiande.ru\nmagda-gadalka.ru\nmagento-crew.net\nmagicart.store\nmagicdiet.gq\nmagnetic-bracelets.ru\nmaigralr.site\nmail.allnews24.in\nmainhunter.com\nmainlinehobby.net\nmake-money-online.com\nmakedo.ru\nmakemoneyonline.com\nmakeprogress.ga\nmakler.org.ua\nmaladot.com\nmalbgoods.xyz\nmalls.com\nmaltadailypost.com\nmamidushop.xyz\nmamylik.ru\nmanimpotence.com\nmanipulyator-peterburg.ru\nmanonstore.xyz\nmanualterap.roleforum.ru\nmanwang.net\nmaofengjx.com\nmarathonbet-in.ru\nmarblestyle.ru\nmarcogrup.com\nmaridan.com.au\nmaridan.com.ua\nmarihome.online\nmarinetraffic.com\nmarjorieblog.online\nmarketland.ml\nmarktforschung-stuttgart.com\nmarmitaco.cat\nmartinahome.xyz\nmartlinker.com\nmassage-info.nl\nmasserect.com\nmaster-muznachas.ru\nmasterseek.com\nmastershef.club\nmasturbate.co.uk\nmathoutlet.xyz\nmatomete.net\nmatras.space\nmattgibson.us\nmature.free-websites.com\nmax-apprais.com\nmaximilitary.ru\nmaxinesamson.top\nmaxthon.com\nmaxxximoda.ru\nmazda-roadsters.com\nmbiologi.ru\nmebel-alait.ru\nmebel-arts.com\nmebel-ekb.com\nmebel-iz-dereva.kiev.ua\nmebelcomplekt.ru\nmebeldekor.com.au\nmebeldekor.com.ua\nmeblieco.com\nmed-dopomoga.com\nmed-recept.ru\nmed-zdorovie.com.au\nmed-zdorovie.com.ua\nmedanestesia.ru\nmedbrowse.info\nmedcor-list.ru\nmedi-fitt.hu\nmedic-al.ru\nmedicaltranslate.ru\nmedicinacom.ru\nmedicineseasybuy.com\nmedicovi.com\nmedictube.ru\nmedispainstitute.com.au\nmedkletki.ru\nmedkritika.ru\nmedmajor.ru\nmedosmotr-ufa.ru\nmeds-online24.com\nmedtherapy.ru\nmeduza-consult.ru\nmeendo-free-traffic.ga\nmegaapteka.ru\nmegakino.net\nmegalit-d.ru\nmegapolis-96.ru\nmegatkani.ru\nmegavolt.net.ua\nmelbet-in.ru\nmelissahome.top\nmembers.ghanaweb.com\nmemovn.com\nmenhealed.net\nmercanmall.xyz\nmere.host.sk\nmericanmopedstore.com\nmeriton.ru\nmeroyharte.top\nmesto-x.com\nmetallo-konstruktsii.ru\nmetallosajding.ru\nmetarip.ru\nmetaxalonevstizanidine.blogspot.com\nmeteocast.net\nmeuikcr.online\nmex-annushka.ru\nmhp.su\nmhrdmall.xyz\nmiaxxx.com\nmicasainvest.com\nmichellblog.online\nmicrosearch.ru\nmicrosoftportal.net\nmidnight.im\nmielec.pl\nmifepriston.net\nmigente.com\nmigera.net\nmigronis.com\nmikozstop.com\nmikrobiologies.ru\nmikrocement.com.ua\nmikrozaim.site\nmikrozaym2you.ru\nminecraft-neo.ru\nminecraft-rus.org\nminegam.com\nminghaimuyuan.net\nmini.7zap.com\nminingblack.net\nminyetki.ru\nmir-betting.ru\nmir-business-24.ru\nmir-limuzinov.ru\nmirfairytale.ru\nmirmedinfo.ru\nmirobuvi.com.au\nmirobuvi.com.ua\nmirtorrent.net\nmirzonru.net\nmisselle.ru\nmister-shop.com\nmitrasound.ru\nmixed-wrestling.ru\nmksoap.ru\nmksport.ru\nmmdoors.ru\nmmm.lc\nmmm.sb\nmmog-play.ru\nmmoguider.ru\nmnogabukaff.net\nmobicover.com.ua\nmobile.ok.ru\nmobilemedia.md\nmobisport.ru\nmobot.site\nmobplayer.net\nmobplayer.ru\nmockupui.com\nmodabutik.ru\nmodforwot.ru\nmodnie-futbolki.net\nmoe1.ru\nmoesonce.com\nmoi-glazki.ru\nmoinozhki.com\nmoiragracie.top\nmoisadogorod.ru\nmokrayakiska.com\nmole.pluto.ro\nmonarhs.info\nmonetizationking.net\nmoney-every-day.com\nmoney-for-placing-articles.com\nmoney7777.info\nmoneymaster.ru\nmoneytop.ru\nmoneyzzz.ru\nmonicablog.xyz\nmonitorwebsitespeed.com\nmoomi-daeri.com\nmoon.market\nmoonci.ru\nmore-letom.ru\nmorf.snn.gr\nmorlat.altervista.org\nmoroccosurfadventures.com\nmoscow-clining.ru\nmoscow-region.ru\nmoscow.xrus.org\nmosdverka.ru\nmosputana.info\nmosputana.top\nmosrif.ru\nmossiemckenzie.shop\nmossmesi.com\nmost-kerch.org\nmost.gov.iq\nmostantikor.ru\nmostbet-285.com\nmostbet-original.ru\nmostcool.top\nmostorgnerud.ru\nmotion-interactive.com\nmototsikl.org\nmountainstream.ms\nmoy-dokument.com\nmoy-evroopt.ru\nmoyakuhnia.ru\nmoyaskidka.ru\nmoyaterapiya.ru\nmoygorod-online.ru\nmoyparnik.com\nmp3films.ru\nmpftpupload.com\nmrbojikobi4.biz\nmrcsa.com.au\nmriyadh.com\nmrmoneymustache.com\nmrt-info.ru\nmrwhite.biz\nmsk-diplomat.com\nmsk-sprawka.com\nmtras.xyz\nmtsguru.ru\nmug-na-chas-moscow.ru\nmuizre.ru\nmukis.ru\nmundoaberrante.com\nmuscle-factory.com.au\nmuscle-factory.com.ua\nmusic.utrolive.ru\nmusicas.baixar-musicas-gratis.com\nmusichallaudio.ru\nmusicprojectfoundation.com\nmusicstock.me\nmusicvidz.ru\nmuz-baza.net\nmuz-shoes.ru\nmuznachas-service.ru\nmuztops.ru\nmvmagoods.xyz\nmwductwork.com\nmy-bc.ru\nmy.opera.com\nmybestoffers.club\nmyborder.ru\nmybuh.kz\nmycaf.it\nmycheaptraffic.com\nmycollegereview.com\nmydirtystuff.com\nmydoctorok.ru\nmydownloadengine.com\nmydownlodablefiles.com\nmyecomir.com\nmyfreemp3.eu\nmyftpupload.com\nmyindospace.com\nmylida.org\nmyliveblog.ru\nmypets.by\nmyplaycity.com\nmyprintscreen.com\nmysexpics.ru\nmytherealshop.com\nmytraffic.shop\nna-telefon.biz\nna15.ru\nnacap.ru\nnachalka21.ru\nnagdak.ru\nnakozhe.com\nnalogovyy-kodeks.ru\nnancyblog.top\nnanochskazki.ru\nnanwar.xyz\nnaobumium.info\nnaphi.xyz\nnaphukete.ru\nnardulan.com\nnarkologiya-belgorod.ru\nnarkologiya-orel.ru\nnarkologiya-penza.ru\nnarkologiya-peterburg.ru\nnarkologiya-voronezh.ru\nnarkomaniya-stop.ru\nnarosty.com\nnarutonaruto.ru\nnastroyke.net\nnatali-forex.com\nnate.com\nnatprof.ru\nnaturalpharm.com.ua\nnaval.jislaaik.com\nnavek.by\nnbok.net\nnbsproject.ru\nnebbiasale.xyz\nneedtosellmyhousefast.com\nnegral.pluto.ro\nnet-profits.xyz\nnetallergy.ru\nnethouse.ru\nnetlify.com\nnetpics.org\nnevansk.ru\nnevapotolok.ru\nnew-apps.ru\nnewagebev.com\nnewbieseoblog.online\nnewsfj.net\nnewsrosprom.ru\nnewstaffadsshop.club\nnewstraveller.ru\nnewstudio.tv\nnextconseil.com\nnfocusdriver.com\nngps1.ru\nnhmrcsale.xyz\nnhsports.cl\nnicola.top\nnicolaonline.top\nniki-mlt.ru\nnikitsyringedrivelg.pen.io\nninacecillia.top\nniuting.org\nnizniynovgorod.dienai.ru\nnl.netlog.com\nno-rx.info\nnoclegonline.info\nnomerounddec.cf\nnonews.co\nnordstar.pro\nnotaria-desalas.com\nnotebook-pro.ru\nnotfastfood.ru\nnoumeda.com\nnovalskincare.net\nnovgorod.xrus.org\nnovosibirsk.xrus.org\nnovosti-avto.ru\nnovosti-hi-tech.ru\nnovostic.ru\nnow-hydra2020.com\nnpoet.ru\nntdtv.ru\nnubuilderian.info\nnucia.biz.ly\nnudepatch.net\nnudo.ca\nnufaq.com\nnullrefer.com\nnutriwestncahi.com\nnuup.info\nnvformula.ru\nnvkzsale.xyz\nnwrcz.com\nnyfinance.ml\nnyinfo.org\no-o-11-o-o.com\no-o-6-o-o.com\no-o-6-o-o.ru\no-o-8-o-o.com\no-o-8-o-o.ru\no-promyshlennosti.ru\no00.in\noblismall.xyz\nobnal.org\nobnallpro.cc\nobsessionphrases.com\nobuv-kupit.ru\nobyavka.org.ua\nobzor-casino-x.online\nobzor-casino-x.ru\nochistka-stokov.ru\nodesproperty.com\nodiabetikah.com\nodsadsmobile.biz\nodywpjtw.bloger.index.hr\nofermerah.com\noffers.bycontext.com\noffice-windows.ru\noffice2web.com\nofficedocuments.net\nofftime.ru\nogorodnic.com\nok.ru\noklogistic.ru\nokna-systems.pro\nokno.ooo\nokoshkah.com\nokroshki.ru\noktube.ru\noledonline.xyz\nolovoley.ru\nolvanto.ru\nomega.best\nomsk.xrus.org\none-a-plus.xyz\none-gear.com\nonefilms.net\nonenews24.ru\nonion20hydra.ru\nonionhydra.net\nonionshydra.com\nonline-akbars.ru\nonline-binbank.ru\nonline-hit.info\nonline-intim.com\nonline-mkb.ru\nonline-pharma.ru\nonline-pochtabank.ru\nonline-raiffeisen.ru\nonline-sbank.ru\nonline-templatestore.com\nonline-video-chat.ru\nonline-vostbank.ru\nonline-vtb.ru\nonline-x.ru\nonline.ktc45.ru\nonlinebay.ru\nonlinedic.net\nonlinedomains.ru\nonlinefilmz.net\nonlineserialy.ru\nonlinetvseries.me\nonlinewot.ru\nonlinewritingjobs17.blogspot.ru\nonload.pw\nonlyforemont.ru\nonlythegames.com\nonlywoman.org\noohlivecams.com\nooo-gotovie.ru\nooo-olni.ru\noooh.pro\nopenfrost.com\nopenfrost.net\nopenlibrary.org\nopenmediasoft.com\nops.picscout.com\noptitrade24.com\noptsol.ru\noqex.io\noracle-patches.ru\norakul.spb.ru\noranga.host.sk\norder-prime-smm-service.party\nordernorxx.com\norel-reshka.net\noren-cats.ru\norigin-my.ru\nororodnik.goodbb.ru\nosb.se11.ru\nosoznanie-narkotikam.net\nosteochondrosis.ru\nostroike.org\nostrovtaxi.ru\notbelivanie-zubov.com\notdbiaxaem-vmeste.ru\notdyx-s-komfortom.ru\noudallas.net\nourtherapy.ru\noutshop.ru\novirus.ru\nown-ahrefs.com\nownshop.cf\nowohho.com\nozas.net\np-business.ru\npaceform.com\npacobarrero.com\npageinsider.org\npaidonlinesites.com\npainting-planet.com\npalma-de-sochi.ru\npalvira.com.au\npalvira.com.ua\npamjatnik.com.ua\npammik.ru\npamyatnik-spb.ru\npamyatnik-tsena.ru\npandoshop.xyz\npaparazzistudios.com.au\npaperwritingservice17.blogspot.ru\nparadontozanet.ru\nparcsmalls.xyz\nparetto.ru\nparking-invest.ru\npartizan19.ru\npartnerskie-programmy.net\npatonsale.xyz\npaulinho.ru\npay.ru\npaydayonlinecom.com\npc-services.ru\npechikamini.ru\npecmastore.xyz\npensplan.com\npensplan4u.com\npenzu.xyz\npercin.biz.ly\nperfection-pleasure.ru\nperform-like-alibabaity.info\nperform-likeism-alibaba.info\nperimetor.ru\nperm.dienai.ru\nperm.xrus.org\nperper.ru\nperso.wanadoo.es\npersonalhoro.ru\npetedrummond.com\npetroleumgeo.com\npetrovka-online.com\npetrushka-restoran.ru\npetscar.ru\npfrf-kabinet.ru\npharm--shop.ru\nphimarshcer.online\nphimmakinhdi.com\nphobia.us\nphoto-clip.ru\nphoto.houseofgaga.ru\nphotochki.com\nphotokitchendesign.com\nphotorepair.ru\nphp-market.ru\nphysfunc.ru\npicscout.com\npicturesmania.com\npills24h.com\npiluli.info\npinkduck.ga\npinupcasinos.ru\npinupcasinos1.ru\npinupp1.com\npipki.pp.ua\npiratbike.ru\npirateday.ru\npirelli-matador.ru\npisze.pisz.pl\npiter.xrus.org\npiulatte.cz\npizdeishn.com\npizdeishn.net\npizza-imperia.com\npizza-tycoon.com\npk-pomosch.ru\npk-services.ru\npkr1hand.com\nplagscan.com\nplastweb.ru\nplatesauto.com\nplatinumdeals.gr\nplohaya-kreditnaya-istoriya.ru\nplusnetwork.com\npochemychka.net\npodarkilove.ru\npoddon-moskva.ru\npodemnik.pro\npodseka1.ru\npogodnyyeavarii.gq\npogosh.com\npogruztehnik.ru\npoisk-zakona.ru\npoiskzakona.ru\npokemongooo.ml\npoker-royal777.com\npokupaylegko.ru\npolcin.de\npolemikon.ru\npolitika.bg\npolyana-skazok.org.ua\npomoc-drogowa.cba.pl\npony-business.com\npopads.net\npopelina.com\npops.foundation\npopugauka.ru\npopugaychiki.com\npopular-church-arrow-voucher.info\npopup-fdm.xyz\npopup-hgd.xyz\npopup-jdh.xyz\nporn-video-chat.ru\nporn-w.org\nporndl.org\npornhive.org\npornhub-forum.ga\npornhub-forum.uni.me\npornhub-ru.com\npornhubforum.tk\nporno-asia.com\nporno-chaman.info\nporno-dojki.net\nporno-gallery.ru\nporno-play.net\nporno-raskazy.ru\nporno-transsexuals.ru\nporno-video-chati.ru\nporno2xl.net\npornobest.su\npornoblood.com\npornobrazzers.biz\npornodojd.ru\npornoelita.info\npornofiljmi.com\npornoforadult.com\npornofoto.org\npornogig.com\npornohd1080.online\npornokajf.com\npornoklad.net\npornoklad.ru\npornokorol.com\npornonik.com\npornophoto.xyz\npornoplen.com\npornorasskazy.net\npornosemki.info\npornoslave.net\npornotubexxx.name\nporodasobak.net\nportal-eu.ru\nportnoff.od.au\nportnoff.od.ua\nposhiv-chehol.ru\npositive2b.ru\npospektr.ru\npostclass.com\nposteezy.xyz\npotolokelekor.ru\npovodok-shop.ru\npowitania.pl\npozdravleniya-c.ru\npozdrawleniya.com\npozdrawleniya.ru\npozvonim.com\npp-budpostach.com.ua\npravoholding.ru\npredmety.in.ua\nprezidentshop.ru\npriceg.com\npricheskaonline.ru\npricheski-video.com\nprimfootball.com\nprimoblog.xyz\nprinceadvantagesales.com\nprint-technology.ru\nprintie.com\nprintingpeach.com\npriora-2.com\nprivatbank46.ru\nprivate-service.best\nprivatov-zapisi.ru\nprivhosting.com\nprizesk.com\nprizrn.site\nprlog.ru\npro-okis.ru\nprobenzo.com.ua\nprocrafts.ru\nprodaemdveri.com\nproducm.ru\nprodvigator.au\nprodvigator.ua\nproekt-gaz.ru\nproekt-mos.ru\nprofessionalsolutions.eu\nprofessionalwritingservices15.blogspot.ru\nprofnastil-moscow.ru\nproftests.net\nprogressive-seo.com\nprohoster.info\nprointer.net.au\nprointer.net.ua\nprojectforte.ru\nprojefrio.com.br\nprokotov.com\nprom23.ru\nprombudpostach.com.ua\npromodj.com\npromoforum.ru\npromoteapps.online\npromotion-for99.com\npron.pro\npronekut.com\nproposal-engine.com\npropranolol40mg.blogspot.com\nproquoshop.xyz\nprosmibank.ru\nprostitutki-almata.org\nprostitutki-astana.org\nprostitutki-belgoroda.org\nprostitutki-kharkova.org\nprostitutki-kiev.org\nprostitutki-novgoroda.org\nprostitutki-odessa.org\nprostitutki-rostova.org\nprostitutki-rostova.ru.com\nprostitutki-tolyatti.org\nprostitutki-tyumeni.org\nprostitutki-yaroslavlya.org\nprostoacc.com\npsa48.ru\npsiosale.xyz\npskcijdc.bloger.index.hr\npsn-card.ru\npsvita.ru\npsychocryonics.net\nptashkatextil.ua\nptfic.org\npunch.media\npurchasepillsnorx.com\nputeshestvennik.com\nputevka24.ru\nputitin.me\npuzo2arbuza.ru\npuzzleweb.ru\npyrodesigns.com.au\nq-moto.ru\nqcstrtvt.bloger.index.hr\nqexyfu.bugs3.com\nqitt.ru\nqoinex.top\nqtrstar.xyz\nqualitymarketzone.com\nquick-seeker.com\nquickchange.cc\nquit-smoking.ga\nqwarckoine.com\nqwesa.ru\nqxnr.net\nr-control.ru\nrabot.host.sk\nrabotaetvse.ru\nrachelblog.online\nradiogambling.com\nrainbirds.ru\nranedaly.net\nrangapoker.com\nrangjued.com\nrank-checker.online\nrankchecker.online\nranking2017.ga\nrankings-analytics.com\nranksays.com\nrankscanner.com\nranksignals.com\nranksonic.com\nranksonic.info\nranksonic.net\nranksonic.org\nrapevideosmovies.com\nrapidgator-porn.ga\nrapidhits.net\nrapidsites.pro\nraschtextil.com.ua\nrasteniya-vs-zombi.ru\nratraiser.online\nrattan.co.ua\nraymondblog.top\nrazamicroelectronics.com\nrazborka-skoda.org.ua\nrb-str.ru\nrcb101.ru\nrczhan.com\nreal-time-analytics.com\nrealnye-otzyvy.info\nrealresultslist.com\nrealting-moscow.ru\nrecinziireale.com\nrecipedays.com\nrecipedays.ru\nrednise.com\nredraincine.com\nrefererx.com\nrefpawro.xyz\nrefudiatethissarah.info\nreginablog.top\nreginanahum.top\nregionshop.biz\nregistratciya-v-moskve.ru\nreklama-i-rabota.ru\nreklama1.ru\nreklamnoe.agency\nreklamuss.ru\nreleshop.ru\nrembash.ru\nremedyotc.com\nremkompov.ru\nremmling.de\nremont-comp-pomosh.ru\nremont-fridge-tv.ru\nremont-komputerov-notebook.ru\nremont-kvartirspb.com\nremont-mobile-phones.ru\nremont-ustanovka-tehniki.ru\nremontgruzovik.ru\nremontvau.ru\nremote-dba.de\nremotecomputingservices.net\nrent2spb.ru\nrentalmaty.kz\nreplica-watch.ru\nreplicaclub.ru\nresearch.ifmo.ru\nresell-seo-services.com\nresellerclub.com\nresidualforlife.com\nresponsive-test.net\nrespublica-otel.ru\nresurs-2012.ru\nretreatia.com\nreversing.cc\nrevolgc.pro\nreyel1985.webnode.fr\nrezeptiblud.ru\nrfavon.ru\nrfd-split.hr\nrfesc.net\nrialp.getenjoyment.net\nrichinvestmonitor.com\nrida.tokyo\nriedismall.xyz\nrietisvi.co\nrightenergysolutions.com.au\nring4rhino.com\nringporno.com\nrique.host.sk\nrisparmiocasa.bz.it\nrkmbonline.xyz\nrobocheck.info\nrobot-forex.biz\nroleforum.ru\nroma-kukareku.livejournal.com\nroof-city.ru\nroom-mebel.ru\nros-ctm.ru\nrospromtest.ru\nrossanasaavedra.net\nrossmark.ru\nrostov.xrus.org\nroyal-betting.net\nroyal-casino.online\nroyal-casino.ru\nroyal-casinos.online\nroyal-casinos.ru\nroyal-cazino.online\nroyal-cazino.ru\nroyal-investments.net\nrozalli.com\nroznica.com.ua\nrp9.ru\nrrutw.com\nrspectr.com\nru-lk-rt.ru\nru-onion.com\nru-online-sberbank.ru\nruex.org.ua\nrufreechats.com\nruhydraru.ru\nruinfocomp.ru\nrulate.ru\nrumamba.com\nrunetki-online.net\nrunovschool.ua\nrunstocks.com\nrupolitshow.ru\nrus-lit.com\nrus-teh.narod.ru\nruscams-com.ru\nruscopybook.com\nrusenvironmental.net\nrusexy.xyz\nrusoft-zone.ru\nruspoety.ru\nrussia-tao.ru\nrussia-today-video.ru\nrussian-postindex.ru\nrussian-translator.com\nrussian-videochats.ru\nrussintv.fr\nrusskie-sochineniya.ru\nrusskoe-zdorovie.ru\nrustag.ru\nrutor.group\nrvtv.ru\nrxshop.md\nrybalka-opt.ru\ns-forum.biz\ns-luna.me\nsabaapress.com\nsabinablog.xyz\nsack.net\nsad-torg.com.ua\nsady-urala.ru\nsahohev.000host.co.uk\nsaitevpatorii.com\nsakhboard.ru\nsale-japan.com\nsaletool.ru\nsaltspray.ru\nsalutmontreal.com\nsamanthablog.online\nsamara-airport.com\nsamara-comfort.ru\nsamchist.ru\nsamlaurabrown.top\nsamo-soznanie.ru\nsamogonius.ru\nsanatorrii.ru\nsanjosestartups.com\nsantaren.by\nsantasgift.ml\nsantechnik.jimdo.com\nsantehnovich.ru\nsapaship.ru\nsarafangel.ru\nsarahmilne.top\nsaratov.xrus.org\nsarf3omlat.com\nsashagreyblog.ga\nsaudegoods.xyz\nsauna-v-ufe.ru\nsauni-lipetsk.ru\nsauni-moskva.ru\nsavetubevideo.com\nsavetubevideo.info\nsavne.org\nsax-sex.com\nsbdl.no\nsbornik-zakonov.ru\nsc-specialhost.com\nscanner-alex.top\nscanner-alexa.top\nscanner-andrew.top\nscanner-barak.top\nscanner-brian.top\nscanner-don.top\nscanner-donald.top\nscanner-elena.top\nscanner-fred.top\nscanner-george.top\nscanner-irvin.top\nscanner-ivan.top\nscanner-jack.top\nscanner-jane.top\nscanner-jess.top\nscanner-jessica.top\nscanner-john.top\nscanner-josh.top\nscanner-julia.top\nscanner-julianna.top\nscanner-margo.top\nscanner-mark.top\nscanner-marwin.top\nscanner-mary.top\nscanner-nelson.top\nscanner-olga.top\nscanner-viktor.top\nscanner-walt.top\nscanner-walter.top\nscanner-willy.top\nscansafe.net\nscat.porn\nscenarii-1-sentyabrya.uroki.org.ua\nschool-diplomat.ru\nsciedsale.xyz\nscore-prime-web-service.stream\nscreen-led.ru\nscreentoolkit.com\nscripted.com\nsdelai-prosto.ru\nsdelatmebel.ru\nsdi-pme.com\nsearch-error.com\nsearch-helper.ru\nsearchencrypt.com\nsearchlock.com\nseccioncontrabajo.com\nsecret.xn--oogle-wmc.com\nsecretscook.ru\nsecurity-corporation.com.ua\nsecurityallianceservices.com\nsee-your-website-here.com\nseekanvdoo22.live\nseisasale.xyz\nseksotur.ru\nsel-hoz.com\nselfhotdog.com\nsell-fb-group-here.com\nsemalt.com\nsemalt.net\nsemalt.semalt.com\nsemaltmedia.com\nsemxiu.com\nsenacertificados.co\nsenger.atspace.co.uk\nseo-2-0.com\nseo-b2b.com\nseo-platform.com\nseo-services-b2b.com\nseo-services-wordpress.com\nseo-smm.kz\nseo-tips.top\nseo-traffic.xyz\nseoanalyses.com\nseobook.top\nseocheckupx.com\nseocheckupx.net\nseoexperimenty.ru\nseojokes.net\nseokicks.de\nseopub.net\nseoriseome.netlify.app\nseoservices2018.com\nserenamall.xyz\nserialsway.ucoz.ru\nserialsx.ru\nservemlixo.xyz\nservisural.ru\nserw.clicksor.com\nseryeznie-znakomstva.ru\nsetioweb.com\nsex-dating.co\nsex-porno.site\nsex-spying.ru\nsex-videochats.ru\nsexkrasivo.net\nsexpornotales.net\nsexreliz.com\nsexreliz.net\nsexsaoy.com\nsexuria.net\nsexvideo-sex.com\nsexvporno.ru\nsexwife.net\nsexy-girl-chat.ru\nsexyali.com\nsexyteens.hol.es\nsexytrend.ru\nsfd-chess.ru\nshagtomsk.ru\nshakhtar-doneck.ru\nshamcisale.xyz\nshanscasino1.ru\nshare-button.xyz\nshare-buttons-for-free.com\nshare-buttons.xyz\nsharebutton.io\nsharebutton.net\nsharebutton.org\nsharebutton.to\nsharemyfile.ru\nshariki-zuma-lines.ru\nshcrose.com\nsheki-spb.ru\nshemy-vishivki.com\nshiksabd.com\nshinikiev.com.ua\nship-marvel.co.ua\nshisenshop.xyz\nshisha-swag.de\nshlyahten.ru\nshnyagi.net\nshodanhq.com\nshop-electron.ru\nshop-garena.ru\nshop.garena.ru.com\nshop.xz618.com\nshop2hydra.com\nshop4fit.ru\nshopfishing.com.ua\nshoppinglocation.com\nshoppingmiracles.co.uk\nshoprybalka.ru\nshops-ru.ru\nshopsellcardsdumps.com\nshopvilleroyboch.com.ua\nshopwme.ru\nshtaketniki.ru\nshtormmall.xyz\nshulepov.ru\nsib-kukla.ru\nsibecoprom.ru\nsibkukla.ru\nsideeffectsoftizanidine.blogspot.com\nsign-service.ru\nsignx.info\nsihugoods.xyz\nsilverage.ru\nsilvergull.ru\nsilvermature.net\nsim-dealer.ru\nsim-service.net\nsimilarmoviesdb.com\nsimoncinicancertherapy.com\nsimple-share-buttons.com\nsimplepooltips.com\nsims-sims.ru\nsinel.info\nsinestesia.host.sk\nsingularwebs.net\nsinhronperevod.ru\nsiongetadsincome.info\nsirhoutlet.xyz\nsiritshop.xyz\nsisiynas.ru\nsite-auditor.online\nsite-speed-check.site\nsite-speed-checker.site\nsite3.free-share-buttons.com\nsite5.com\nsiteexpress.co.il\nsiteripz.net\nsitesadd.com\nsitevaluation.com\nsitevaluation.org\nsivs.ru\nsjmsw.net\nsk.golden-praga.ru\nski-centers.com\nskidku.org.ua\nskinali.com\nskinali.photo-clip.ru\nsklad-24.ru\nskladvaz.ru\nsky-mine.ru\nskylta.com\nsladkoevideo.com\nslashpet.com\nslavic-magic.ru\nslavkokacunko.de\nsledstvie-veli.net\nslftsdybbg.ru\nslkrm.ru\nslomm.ru\nslonechka.ru\nsloopyjoes.com.top\nslotron.com\nslow-website.xyz\nslujbauborki.ru\nsmailik.org\nsmall-game.com\nsmall-games.biz\nsmartpet.ru\nsmartphonediscount.info\nsms2x2.ru\nsmstraf.ru\nsmt4.ru\nsmzt.shop\nsnabs.kz\nsnaiper-bg.net\nsneakerfreaker.com\nsnegozaderzhatel.ru\nsnip.to\nsnip.tw\nsnjatie-geroinovoy-lomki.ru\nsnomer1.ru\nsnyatie-lomki-v-stacionare.ru\nsoaksoak.ru\nsoblaznu.net\nsoc-econom-problems.ru\nsoc-proof.su\nsocas.pluto.ro\nsochi-3d.ru\nsocial-button.xyz\nsocial-buttons-aa.xyz\nsocial-buttons-aaa.xyz\nsocial-buttons-bb.xyz\nsocial-buttons-bbb.xyz\nsocial-buttons-cc.xyz\nsocial-buttons-ccc.xyz\nsocial-buttons-dd.xyz\nsocial-buttons-ddd.xyz\nsocial-buttons-ee.xyz\nsocial-buttons-eee.xyz\nsocial-buttons-ff.xyz\nsocial-buttons-fff.xyz\nsocial-buttons-gg.xyz\nsocial-buttons-ggg.xyz\nsocial-buttons-hh.xyz\nsocial-buttons-ii.xyz\nsocial-buttons-iii.xyz\nsocial-buttons.com\nsocial-buttons.xyz\nsocial-fun.ru\nsocial-s-ggg.xyz\nsocial-s-hhh.xyz\nsocial-s-iii.xyz\nsocial-search.me\nsocial-traffic-1.xyz\nsocial-traffic-2.xyz\nsocial-traffic-3.xyz\nsocial-traffic-4.xyz\nsocial-traffic-5.xyz\nsocial-traffic-6.xyz\nsocial-traffic-7.xyz\nsocial-vestnik.ru\nsocial-widget.xyz\nsocialbookmarksubmission.org\nsocialbutton.xyz\nsocialbuttons.xyz\nsocialine.net\nsocialseet.ru\nsocialtrade.biz\nsofit-dmd.ru\nsoft-program.com\nsoftomix.com\nsoftomix.net\nsoftomix.org\nsoftomix.ru\nsofttor.com\nsoftxaker.ru\nsohoindia.net\nsoki.tv\nsolartek.ru\nsolitaire-game.ru\nsolnplast.ru\nsonata-arctica.wz.cz\nsongoo.wz.cz\nsonnikforme.ru\nsonyelektronik.com\nsosdepotdebilan.com\nsotkal.lark.ru\nsoundfrost.org\nsoup.io\nsouvenirua.com\nsovetogorod.ru\nsovetskie-plakaty.ru\nsoviet-portal.do.am\nsowhoz.ru\nsoyuzexpedition.ru\nsp-laptop.ru\nsp-zakupki.ru\nspace2019.top\nspacebarnot.work\nspain-poetry.com\nspartania.com.ua\nspb-plitka.ru\nspb-scenar.ru\nspb.ru\nspbchampionat.ru\nspecial-porn.com\nspecstroy36.ru\nspeedup-my.site\nspin2016.cf\nsport-video-obzor.ru\nsportbetfair.com\nsportobzori.ru\nsportwizard.ru\nspravka130.ru\nspravkavspb.net\nspravkavspb.work\nsprawka-help.com\nspscmall.xyz\nspuemonti.net\nspy-app.info\nspy-sts.com\nsqadia.com\nsquarespace.top\nsquidoo.com\nsrecorder.com\nsribno.net\nssn.is\nsssexxx.net\nssve.ru\nst-komf.ru\nsta-grand.ru\nstairliftstrue.com\nstar61.de\nstardevine.com\nstariy-baku.com\nstart.myplaycity.com\nstartraffic.online\nstartufa.ru\nstartwp.org\nstat.lviv.ua\nstatashop.xyz\nstatic.seders.website\nstatustroll.com\nstauga.altervista.org\nstavimdveri.ru\nsteame.ru\nsteelmaster.lv\nstiralkovich.ru\nstocktwists.com\nstoki.ru\nstoletie.ru\nstoliar.org\nstomatologi.moscow\nstop-nark.ru\nstop-zavisimost.com\nstore-rx.com\nstrady.org.ua\nstrana-krasoty.ru\nstrana-solnca.ru\nstream-tds.com\nstreetfire.net\nstreetfooduncovered.com\nstreha-metalko.si\nstrigkaomsk.ru\nstroi-24.ru\nstroicol.net\nstroimajor.ru\nstroiminsk.com\nstroiminsk.org\nstromerrealty.com\nstrongholdsb.ru\nstrongtools.ga\nstroy-matrix.ru\nstroyalp.ru\nstroydetali.ru\nstroyka-gid.ru\nstroyka47.ru\nstroymonolit.su\nstudentguide.ru\nstudiofaca.com\nstuff-about-money.com\nstuffhydra.com\nstylecaster.top\nstyro.ru\nsu1ufa.ru\nsuccess-seo.com\nsuckoutlet.xyz\nsudachitravel.com\nsugarkun.com\nsugvant.ru\nsundrugstore.com\nsuper-seo-guru.com\nsuperiends.org\nsupermama.top\nsupermesta.ru\nsupermodni.com.ua\nsupernew.org\nsuperoboi.com.ua\nsuperpages.com\nsuperslots-casino.online\nsuperslots-casino.site\nsuperslots-cazino.online\nsuperslots-cazino.site\nsuperslotz-casino.site\nsuperslotz-cazino.site\nsupertraffic.xyz\nsupervesti.ru\nsurflinksmedical.com\nsusanholtphotography.com\nsuzanneboswell.top\nsvadba-teplohod.ru\nsvarbit.com\nsvarog-jez.com\nsvensk-poesi.com\nsvet-depo.ru\nsvetka.info\nsvetlotorg.ru\nsvetoch.moscow\nsvetodiodoff.ru\nsvoimi-rukamy.com\nsvs-avto.com\nswagbucks.com\nswaplab.io\nsweet.tv\nsygraem.com\nszansadlarolnikow.com.pl\nt-machinery.ru\nt-rec.su\nt3chtonic.com\ntaartstore.xyz\ntagmeanvice.live\ntaihouse.ru\ntam-gde-more.ru\ntamada69.com\ntammyblog.online\ntargetpay.nl\ntasteidea.com\ntastyfoodideas.com\ntattoo-stickers.ru\ntattoo33.ru\ntattooha.com\ntaximytishi.ru\ntccp.xyz\ntcenavoprosa.ru\ntcsinksale.xyz\ntcyh.net\ntd-33.ru\ntd-abs.ru\ntd-l-market.ru\ntd-perimetr.ru\ntdbatik.com\ntds-west.ru\nteastory.co\ntechart24.com\ntechnika-remont.ru\ntechnopellet.gr\ntecspb.ru\ntedxrj.com\ntedy.su\nteedle.co\ntehngr.ru\ntelegramdownload10.com\ntelesvoboda.ru\ntelfer.ru\nteman.com.ua\ntennis-bet.ru\ntentcomplekt.ru\nteplohod-gnezdo.ru\nteplokomplex.ru\nteplolidoma.ru\nterapist.xyz\nteresablog.top\ntesla-audit.ru\nteslathemes.com\ntest-extra-full-stack-services.stream\ntest-prime-smm-service.review\ntest.xyz\ntexbaza.by\ntexnika.com.ua\ntgsubs.com\ntgtclick.com\nthaimassage-slon.ru\nthaoduoctoc.com\nthe-torrent-tracker.blogspot.com\nthe-usa-games.blogspot.com\nthe-world.ru\ntheautoprofit.ml\nthebluenoodle.com\nthecoral.com.br\nthedownloadfreeonlinegames.blogspot.com\nthedownloadfromwarez.blogspot.com\nthefds.net\nthegreensociety.net\ntheguardlan.com\ntheheroes.ru\nthejournal.ru\nthelotter.su\nthepokertimer.com\ntherealshop.exaccess.com\nthesensehousehotel.com\nthesmartsearch.net\nthewomenlife.com\nthiegs.reco.ws\nthin.me.pn\ntiandeural.ru\ntiens2010.ru\ntimeallnews.ru\ntimer4web.com\ntimetorelax.biz\ntimmy.by\ntip8.co\ntizanidine4mg.blogspot.com\ntizanidine4mgprice.blogspot.com\ntizanidine4mgstreetprice.blogspot.com\ntizanidine4mgstreetvalue.blogspot.com\ntizanidine4mgtablets.blogspot.com\ntizanidine4mguses.blogspot.com\ntizanidine6mg.blogspot.com\ntizanidineandcipro.blogspot.com\ntizanidineandgabapentin.blogspot.com\ntizanidineandhydrocodone.blogspot.com\ntizanidinecapsules.blogspot.com\ntizanidinecost.blogspot.com\ntizanidinedosage.blogspot.com\ntizanidinedosageforsleep.blogspot.com\ntizanidinedruginteractions.blogspot.com\ntizanidinedrugtest.blogspot.com\ntizanidineduringpregnancy.blogspot.com\ntizanidinefibromyalgia.blogspot.com\ntizanidineformigraines.blogspot.com\ntizanidineforopiatewithdrawal.blogspot.com\ntizanidinehcl2mg.blogspot.com\ntizanidinehcl2mgsideeffects.blogspot.com\ntizanidinehcl2mgtablet.blogspot.com\ntizanidinehcl4mgisitanarcotic.blogspot.com\ntizanidinehcl4mgtab.blogspot.com\ntizanidinehcl4mgtabinfo.blogspot.com\ntizanidinehcl4mgtablet.blogspot.com\ntizanidinehclsideeffects.blogspot.com\ntizanidinehydrochloride2mg.blogspot.com\ntizanidinehydrochloride4mgstreetvalue.blogspot.com\ntizanidineinfo.blogspot.com\ntizanidineingredients.blogspot.com\ntizanidineinteractions.blogspot.com\ntizanidinemusclerelaxant.blogspot.com\ntizanidinenarcotic.blogspot.com\ntizanidineonline.blogspot.com\ntizanidineoral.blogspot.com\ntizanidineorflexeril.blogspot.com\ntizanidinepain.blogspot.com\ntizanidinepills.blogspot.com\ntizanidinerecreationaluse.blogspot.com\ntizanidinerestlesslegsyndrome.blogspot.com\ntizanidineshowupondrugtest.blogspot.com\ntizanidinesideeffects.blogspot.com\ntizanidinesideeffectsweightloss.blogspot.com\ntizanidinesleepaid.blogspot.com\ntizanidinestreetprice.blogspot.com\ntizanidinestreetvalue.blogspot.com\ntizanidineusedfor.blogspot.com\ntizanidinevscyclobenzaprine.blogspot.com\ntizanidinevssoma.blogspot.com\ntizanidinevsvalium.blogspot.com\ntizanidinewithdrawal.blogspot.com\ntizanidinewithdrawalsymptoms.blogspot.com\ntizanidinezanaflex.blogspot.com\ntkanorganizma.ru\ntksn.ru\ntocan.biz\ntocan.com.ua\ntokshow.online\ntoloka.hurtom.com\ntomatis.gospartner.com\ntomck.com\ntommysautomotivecare.com\ntop-gan.ru\ntop-instagram.info\ntop-kasyna.com\ntop-l2.com\ntop1-seo-service.com\ntop10-online-games.com\ntop10-way.com\ntop250movies.ru\ntop8.co\ntopgurudeals.com\ntopmebeltorg.ru\ntopmira.com\ntoposvita.com\ntopquality.cf\ntopseoservices.co\ntopshef.ru\ntopvidos.ru\ntor.vc\ntorobrand.com\ntorontoplumbinggroup.com\ntorospa.ru\ntorrentgamer.net\ntorrentred.games\ntorrents-tracker.com\ntorrnada.ru\ntorture.ml\ntotppgoods.xyz\ntouchmods.fr\ntourburlington.com\ntovaroboom.vast.ru\ntpu.ru\ntrack-rankings.online\ntracker24-gps.ru\ntrade365.org\ntraderzplanet.co.in\ntrafaret74.ru\ntrafers.com\ntraffic-cash.xyz\ntraffic-paradise.org\ntraffic2cash.net\ntraffic2cash.org\ntraffic2cash.xyz\ntraffic2money.com\ntrafficbot.life\ntrafficbot4free.xyz\ntrafficdrive.club\ntrafficgenius.xyz\ntrafficmonetize.org\ntrafficmonetizer.org\ntrafficstudio.club\ntraffictomoney.com\ntrahvid.com\ntramadolandtizanidine.blogspot.com\ntransit.in.ua\ntranssex-videochat.ru\ntraphouselatino.net\ntravel-semantics.com\ntravgoods.xyz\ntraxdom.ru\ntrex-casino.com\ntrex.casino\ntri-slona.org\ntrick-negotiation-cup-wonder.com\ntricolortv-online.com\ntrieste.io\ntrion.od.au\ntrion.od.ua\ntriumf-realty.ru\ntrk-4.net\ntrubywriting.com\ntruck-spite-lawyer-activity.top\ntruebeauty.cc\ntsatu.edu.ua\ntsc-koleso.ru\ntsstcorpcddvdwshbbdriverfb.aircus.com\nttechno.net\ntuberkulezanet.ru\ntuberkuleznik.ru\ntudusale.xyz\ntula.mdverey.ru\ntuningdom.ru\ntupper-posuda.ru\ntupper-shop.ru\nturbo-suslik.org\nturist-strani.ru\nturkeyreport.tk\nturvgori.ru\ntvand.ru\ntvfru.org\ntvgoals.tv\ntvoystartup.ru\ntwincitiescarservice.com\ntwojebook.pl\ntwsufa.ru\ntwu.com.ua\ntytoona.com\ntyumen.xrus.org\nu-cheats.ru\nu17795.netangels.ru\nua-company.ru\nua.tc\nuaecdsale.xyz\nuasb.ru\nublaze.ru\nucanfly.ru\nucban.xyz\nuchebavchehii.ru\nuchil.net\nucoz.ru\nucsfstore.xyz\nucsol.ru\nuctraffic.com\nudav.net\nufa.dienai.ru\nufa.xrus.org\nufolabs.net\nuginekologa.com\nukrainian-poetry.com\nukrcargo.com\nukrtvory.in.ua\nukstmalls.xyz\nul-potolki.ru\nultimateuninstall.com\num-razum.ru\numg-stroy.ru\numityangin.net\nundergroundcityphoto.com\nuni.me\nunibus.su\nunimodemhalfduplefw.pen.io\nuniqgen.net\nunitygame3d.com\nuniverfiles.com\nunlimitdocs.net\nunmaroll.ya.ru\nunpredictable.ga\nupcronline.xyz\nuptime-alpha.net\nuptime-as.net\nuptime-beta.net\nuptime-delta.net\nuptime-eu.net\nuptime-gamma.net\nuptime-us.net\nuptime.com\nuptimebot.net\nuptimechecker.com\nural-buldozer.ru\nurbanblog.shop\nurbanchr.online\nurblog.xyz\nurccvfmc.bloger.index.hr\nurlopener.blogspot.com.au\nurlopener.com\nurlumbrella.com\nuruto.ru\nus-america.ru\nusadacha.net\nuserequip.com\nuslugi-tatarstan.ru\nussearche.cf\nustion.ru\nuterkysale.xyz\nutrolive.ru\nuusmsale.xyz\nuyut-dom.pro\nuyutmaster73.ru\nuzpaket.com\nuzungil.com\nv-casino.fun\nv-casino.host\nv-casino.ru\nv-casino.site\nv-casino.website\nv-casino.xyz\nv-cazino.online\nv-cazino.ru\nvabasa.inwtrade.com\nvaderenergy.ru\nvadimkravtcov.ru\nvalid-cc.com\nvalidccseller.com\nvalidus.pro\nvalkiria-tk.ru\nvanessablog.online\nvape-x.ru\nvapmedia.org\nvapsy.com\nvardenafil20.com\nvarikozdok.ru\nvashsvet.com\nvavada-casino.host\nvavada-casino.top\nvavada-cazino.host\nvavada-cazino.site\nvavilone.com\nvbabule.net\nvbikse.com\nvc.ru\nvchulkah.net\nvduplo.ru\nveerotech.com\nvegascosmetics.ru\nvekzdorov.ru\nveles.shop\nvelobikestock.com\nveloland.in.ua\nventa-prom.ru\nventelnos.com\nventopt.by\nveronicablog.top\nvescenter.ru\nveselokloun.ru\nvesnatehno.com\nvesnatehno.ru\nvesta-lada.net\nvetbvc.ru\nvezdevoz.com.ua\nvezuviy.su\nvgoloveboli.net\nvia-gra.webstarts.com\nviagra-soft.ru\nviagra.pp.ua\nviagroid.ru\nviandpet.com\nviberdownload10.com\nvideo--production.com\nvideo-chat.in\nvideo-girl-online.ru\nvideo-hollywood.ru\nvideo-woman.com\nvideochat-dating.ru\nvideochat.guru\nvideochat.mx\nvideochat.tv.br\nvideochat.world\nvideochaty.ru\nvideofrost.com\nvideofrost.net\nvideokrik.net\nvideos-for-your-business.com\nvideosbox.ru\nvideotop.biz\nvideotuber.ru\nvidzwap.xyz\nviel.su\nvigrx-original.ru\nviktoria-center.ru\nvilingstore.net\nvinsit.ru\nvip-dom.in\nvip-parfumeria.ru\nvipsiterip.org\nvirtchats.ru\nvirtual-love-video.ru\nvirtual-sex-chat.ru\nvirtual-sex-time.ru\nvirtual-sex-videochat.ru\nvirtual-zaim.ru\nvirtualbb.com\nvirus-schutzmasken.de\nvisa-china.ru\nvisa-pasport.ru\nvita.com.hr\nvitanail.ru\nviven.host.sk\nvizag.kharkov.ua\nvk-mus.ru\nvk.com\nvkak.ru\nvkonche.com\nvkontaktemusic.ru\nvkontarkte.com\nvksaver-all.ru\nvksex.ru\nvladhistory.com\nvladtime.ru\nvltai.com\nvmnmvzsmn.over-blog.com\nvod.com.ua\nvodabur.by\nvodaodessa.com\nvoditeltrezviy.ru\nvodkoved.ru\nvolgograd.xrus.org\nvolond.com\nvoloomoney.com\nvolume-pills.biz\nvoprosotvet24.ru\nvoronezh.xrus.org\nvostgard.com\nvostoktrade.info\nvote-up.ru\nvozbujdenie.com\nvpdr.pl\nvpnhowto.info\nvrazbor59.ru\nvriel.batcave.net\nvrnelectro.ru\nvrnhnmall.xyz\nvrotike.ru\nvsdelke.ru\nvseigru.one\nvseigry.fun\nvseprobrak.ru\nvsesubwaysurfers.com\nvseuznaem.com\nvucms.com\nvulkan-nadengi.ru\nvulkan-oficial.com\nvulkanrussia1.ru\nvykup-avto-krasnodar.ru\nvykupavto-krasnodar.ru\nvzheludke.com\nvzlom-na-zakaz.com\nvzubah.com\nvzube.com\nvzubkah.com\nw2mobile-za.com\nw3javascript.com\nw7s.ru\nwakeupseoconsultant.com\nwallabag.malooma.bzh\nwallet-prlzn.space\nwallinside.top\nwallpaperdesk.info\nwallpapers-all.com\nwallpapers-best.com\nwallpapersdesk.info\nwallstore.xyz\nwandamary.online\nwapsite.me\nwarmex.com.ua\nwarningwar.ru\nwasabisale.xyz\nwatch-movies.ru\nwave-games.ru\nwayfcoin.space\nwbjm.net\nwcb.su\nwdfdocando.com\nwdss.com.ua\nwe-ping-for-youian.info\nwe-ping-for-youic.info\nweb-analytics.date\nweb-betting.ru\nweb-lazy-services.review\nweb-list.xyz\nweb-revenue.xyz\nweb.cvut.cz\nwebalex.pro\nwebinstantservice.com\nwebix.me\nwebjam.com\nweblibrary.win\nwebmaster-traffic.com\nwebmonetizer.net\nwebradiology.ru\nwebs.com\nwebsite-analytics.online\nwebsite-analyzer.info\nwebsite-errors-scanner.com\nwebsite-services-promotion.bid\nwebsite-services-promotion.review\nwebsite-services-promotion.stream\nwebsite-services-promotion.win\nwebsite-services-seo.bid\nwebsite-services-seo.stream\nwebsite-services-seo.win\nwebsite-services-smm.bid\nwebsite-services-smm.review\nwebsite-services-smm.stream\nwebsite-services-smm.win\nwebsite-services.review\nwebsite-services.stream\nwebsite-services.win\nwebsite-speed-check.site\nwebsite-speed-checker.site\nwebsite-speed-up.site\nwebsite-speed-up.top\nwebsite-stealer-warning-alert.hdmoviecams.com\nwebsitebottraffic.club\nwebsitebottraffic.host\nwebsites-reviews.com\nwebsocial.me\nwebtherapy.ru\nweburlopener.com\nwedding-salon.net\nweebly.com\nweekes.biz.tc\nweightatraining.com\nweightbelts.ru\nwelck.octopis.com\nwelcomeauto.ru\nweprik.ru\nwetgames.ru\nwfdesigngroup.com\nwhatistizanidine2mg.blogspot.com\nwhatistizanidinehclusedfor.blogspot.com\nwhatsappdownload10.com\nwhereiskentoday.com\nwicivow.007h.ml\nwikes.20fr.com\nwilliamrobsonproperty.com\nwinx-play.ru\nwitherrom55.eklablog.fr\nwjxmenye.com\nwmasterlead.com\nwnoz.de\nwoman-h.ru\nwoman-orgasm.ru\nwoman-tampon.ru\nwomens-journal.net\nwomensplay.net\nwomensterritory.ru\nwordpress-crew.net\nwordpresscore.com\nwork-from-home-earn-money-online.com\nworkius.ru\nworkona.com\nworks.if.ua\nworld-mmo.com\nworldgamenews.com\nworldhistory.biz\nworldis.me\nworldlovers.ru\nworldmed.info\nworldofbtc.com\nwormix-cheats.ru\nwowas31.ucoz.ru\nwoweb.com.ua\nwpnull.org\nwptraffic.xyz\nwrazilwispolecznie.pl\nwrc-info.ru\nwritingservices17.blogspot.ru\nwrona.it\nwstroika.ru\nwufak.com\nwurr.voila.net\nww1943.ru\nww2awards.info\nwww-lk-rt.ru\nwww.gelendzhic.ru\nwww1.free-share-buttons.top\nwzgyyq.com\nx-lime.com\nx-lime.net\nx-musics.com\nx-stars.ru\nx5market.ru\nxaker26.net\nxbaboon.com\nxboxster.ru\nxexe.club\nxfire.com\nxgftnlrt.bloger.index.hr\nxion.cash\nxjrul.com\nxkaz.org\nxlolitka.com\nxmnb.net\nxn-------53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k.xn--p1ai\nxn------6cdbciescapvf0a8bibwx0a1bu.xn--90ais\nxn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai\nxn-----6kcacs9ajdmhcwdcbwwcnbgd13a.xn--p1ai\nxn-----6kcamwewcd9bayelq.xn--p1ai\nxn-----7kcaaxchbbmgncr7chzy0k0hk.xn--p1ai\nxn-----7kceclhb4abre1b4a0ccl2fxch1a.xn--p1ai\nxn-----8kcatubaocd1bneepefojs1h2e.xn--p1ai\nxn-----clckdac3bsfgdft3aebjp5etek.xn--p1ai\nxn----7sbabb9a1b7bddgm6a1i.xn--p1ai\nxn----7sbabhjc3ccc5aggbzfmfi.xn--p1ai\nxn----7sbabhv4abd8aih6bb7k.xn--p1ai\nxn----7sbabm1ahc4b2aqff.su\nxn----7sbabn5abjehfwi8bj.xn--p1ai\nxn----7sbaphztdjeboffeiof6c.xn--p1ai\nxn----7sbbpe3afguye.xn--p1ai\nxn----7sbho2agebbhlivy.xn--p1ai\nxn----8sbaki4azawu5b.xn--p1ai\nxn----8sbarihbihxpxqgaf0g1e.xn--80adxhks\nxn----8sbbjimdeyfsi.xn--p1ai\nxn----8sbdbjgb1ap7a9c4czbh.xn--p1acf\nxn----8sbhefaln6acifdaon5c6f4axh.xn--p1ai\nxn----8sblgmbj1a1bk8l.xn----161-4vemb6cjl7anbaea3afninj.xn--p1ai\nxn----8sbowe2akbcd4h.xn--p1ai\nxn----8sbpmgeilbd8achi0c.xn--p1ai\nxn----btbdvdh4aafrfciljm6k.xn--p1ai\nxn----ctbbcjd3dbsehgi.xn--p1ai\nxn----ctbfcdjl8baejhfb1oh.xn--p1ai\nxn----ctbigni3aj4h.xn--p1ai\nxn----dtbffp5aagjgfm.xn--p1ai\nxn----ftbeoaiyg1ak1cb7d.xn--p1ai\nxn----gtbdb0beu1bb8gj.xn--p1ai\nxn----itbbudqejbfpg3l.com\nxn----jtbjfcbdfr0afji4m.xn--p1ai\nxn--78-6kc6akkhn3a3k.xn--p1ai\nxn--78-6kcmzqfpcb1amd1q.xn--p1ai\nxn--80aaafbn2bc2ahdfrfkln6l.xn--p1ai\nxn--80aaajbdbddwj2alwjieei2afr3v.xn--p1ai\nxn--80aaajkrncdlqdh6ane8t.xn--p1ai\nxn--80aaaks3bbhabgbigamdr2h.xn--p1ai\nxn--80aabcsc3bqirlt.xn--p1ai\nxn--80aanaardaperhcem4a6i.com\nxn--80ab4aa2g.xn--p1ai\nxn--80adaggc5bdhlfamsfdij4p7b.xn--p1ai\nxn--80adgcaax6acohn6r.xn--p1ai\nxn--80aeahghtf8ac5i.xn--p1ai\nxn--80aeb6argv.xn--p1ai\nxn--80aebzmbfeebe.xn--p1ai\nxn--80ahdheogk5l.xn--p1ai\nxn--80ahvj9e.xn--p1ai\nxn--80ajbshivpvn2i.xn--p1ai\nxn--80ajjbdhgmudixfjc8c5a9df8b.xn--p1ai\nxn--90acenikpebbdd4f6d.xn--p1ai\nxn--90acjmaltae3acm.xn--p1acf\nxn--90adhhccf5aeewt7j.xn--p1ai\nxn--b1adccayqiirhu.xn--p1ai\nxn--b1ag5cfn.xn--p1ai\nxn--b1agm2d.net\nxn--c1acygb.xn--p1ai\nxn--d1abj0abs9d.in.ua\nxn--d1aifoe0a9a.top\nxn--e1aaajzchnkg.ru.com\nxn--e1aahcgdjkg4aeje6j.kz\nxn--e1agf4c.xn--80adxhks\nxn--e1aggki3c.xn--80adxhks\nxn--h1ahbi.com.ua\nxn--hxazdsfy.blogspot.com\nxn--l1aengat.xn--p1ai\nxn--mhg.com\nxn--oogle-wmc.com\nxn--q1a.xn--b1aube0e.xn--c1acygb.xn--p1ai\nxnxx-n.com\nxolodremont.ru\nxpert.com.ua\nxportvusbdriver8i.snack.ws\nxpresscare.ru\nxrp-ripple.info\nxrus.org\nxsion.net\nxtraffic.plus\nxtrafficplus.com\nxtrafficplus.online\nxtrafficplus.shop\nxtrafficplus.xyz\nxtubeporno.net\nxvideosbay.com\nxxart.ru\nxxx-treker.ru\nxxxhamster.me\nxxxtube69.com\nxxxvideochat.ru\nxz618.com\nxzlive.com\nyaderenergy.ru\nyaminecraft.ru\nyeartwit.com\nyellowstonevisitortours.com\nyes-com.com\nyes-do-now.com\nyhirurga.ru\nykecwqlixx.ru\nynymnwbm.bloger.index.hr\nyodse.io\nyoga4.ru\nyouandcredit.ru\nyoubloodyripper.com\nyoudesigner.kz\nyougame.biz\nyougetsignal.com\nyoughbould.wordpress.com\nyouhack.info\nyoujizz.vc\nyouporn-forum.ga\nyouporn-forum.uni.me\nyouporn-ru.com\nyour-good-links.com\nyour-tales.ru\nyourdesires.ru\nyouresponsive.com\nyourothersite.com\nyoursearch.me\nyourserverisdown.com\nyoursite.com\nyourtraffic.club\nyoutoner.it\nyoutubedownload.org\nyqpc.net\nyuarra.pluto.ro\nyubikk.info\nyugk.net\nyugo-star.ru\nyunque.pluto.ro\nyur-p.ru\nyurcons.pro\nyurgorod.ru\nyuristproffi.ru\nzagadki.in.ua\nzahodi2hydra.net\nzahvat.ru\nzaidia.xhost.ro\nzaim-pod-zalog-krasnodar.ru\nzaimhelp.ru\nzajm-pod-zalog-nedvizhimosti.ru\nzakazfutbolki.com\nzakaznoy.com.ua\nzakazvzloma.com\nzakis-azota24.ru\nzakisazota-official.com\nzakon-ob-obrazovanii.ru\nzaloadi.ru\nzamolotkom.ru\nzapnado.ru\nzarabotat-na-sajte.ru\nzarabotat-v-internete.biz\nzarenica.net\nzastenchivosti.net\nzastroyka.org\nzavod-gm.ru\nzazagames.org\nzdesformula.ru\nzdesoboi.com\nzdm-auto.com\nzdm-auto.ru\nzdorovie-nogi.info\nzebradudka.com\nzelena-mriya.com.ua\nzeleznobeton.ru\nzerocash.msk.ru\nzexhgoods.xyz\nzhcsapp.net\nzhoobintravel.com\nzhorapankratov7.blogspot.com\nzigarettenonl.canalblog.com\nzigarettenonlinekaufen.tumblr.com\nzigarettenonlinekaufen1.bloog.pl\nzigarettenonlinekaufen1.blox.pl\nzigarettenonlinekaufen2.bloog.pl\nzigarettenonlinekaufen2.drupalgardens.com\nzigzog.ru\nzlatnajesen.com\nzmoda.hostreo.com\nznakomstva-moskva77.ru\nznakomstva-piter78.ru\nznakomstvaonlain.ru\nznaniyapolza.ru\nzojirushi-products.ru\nzolotoy-lis.ru\nzonefiles.bid\nzoominfo.com\nzot.moscow\nzt-m.ru\nzuchn.com\nzverokruh-shop.cz\nzvetki.ru\nzvooq.eu\nzvuker.net\nzyzzcentral.ru\n"
  },
  {
    "path": "tests/Integration/.gitkeep",
    "content": ""
  },
  {
    "path": "tests/Unit/Config/ApacheConfigGeneratorTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Tests\\Unit\\Config;\n\nuse PHPUnit\\Framework\\TestCase;\nuse StevieRay\\Config\\ApacheConfigGenerator;\n\nclass ApacheConfigGeneratorTest extends TestCase\n{\n    private ApacheConfigGenerator $generator;\n\n    protected function setUp(): void\n    {\n        $this->generator = new ApacheConfigGenerator();\n    }\n\n    public function testGetFilename(): void\n    {\n        $this->assertEquals('.htaccess', $this->generator->getFilename());\n    }\n\n    public function testGetDescription(): void\n    {\n        $this->assertEquals('Apache .htaccess configuration file', $this->generator->getDescription());\n    }\n\n    public function testGenerateWithValidDomains(): void\n    {\n        $domains = ['example.com', 'test.org'];\n        $date = '2024-01-01 12:00:00';\n\n        $result = $this->generator->generate($domains, $date);\n\n        $this->assertStringContainsString('# https://github.com/Stevie-Ray/referrer-spam-blocker', $result);\n        $this->assertStringContainsString('# Updated 2024-01-01 12:00:00', $result);\n        $this->assertStringContainsString('<IfModule mod_rewrite.c>', $result);\n        $this->assertStringContainsString('RewriteEngine On', $result);\n        $this->assertStringContainsString(\n            'RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*example\\.com.*$ [NC,OR]',\n            $result\n        );\n        $this->assertStringContainsString(\n            'RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*test\\.org.*$ [NC]',\n            $result\n        );\n        $this->assertStringContainsString('RewriteRule ^(.*)$ – [F,L]', $result);\n        $this->assertStringContainsString('<IfModule mod_setenvif.c>', $result);\n        $this->assertStringContainsString('SetEnvIfNoCase Referer example\\\\.com spambot=yes', $result);\n        $this->assertStringContainsString('SetEnvIfNoCase Referer test\\\\.org spambot=yes', $result);\n        $this->assertStringContainsString('# Apache 2.2', $result);\n        $this->assertStringContainsString('# Apache 2.4', $result);\n    }\n\n    public function testGenerateWithEmptyDomains(): void\n    {\n        $this->expectException(\\InvalidArgumentException::class);\n        $this->expectExceptionMessage('Domains array cannot be empty');\n\n        $this->generator->generate([], '2024-01-01 12:00:00');\n    }\n\n    public function testGenerateWithSingleDomain(): void\n    {\n        $domains = ['example.com'];\n        $date = '2024-01-01 12:00:00';\n\n        $result = $this->generator->generate($domains, $date);\n\n        $this->assertStringContainsString(\n            'RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*example\\.com.*$ [NC]',\n            $result\n        );\n        $this->assertStringNotContainsString('[NC,OR]', $result);\n    }\n\n    public function testGenerateWithSpecialCharacters(): void\n    {\n        $domains = ['example.com', 'test-domain.org'];\n        $date = '2024-01-01 12:00:00';\n\n        $result = $this->generator->generate($domains, $date);\n\n        $this->assertStringContainsString(\n            'RewriteCond %{HTTP_REFERER} ^http(s)?://(www.)?.*test\\-domain\\.org.*$ [NC]',\n            $result\n        );\n    }\n\n    public function testGenerateModRewriteSection(): void\n    {\n        $domains = ['example.com', 'test.org', 'domain.net'];\n        $date = '2024-01-01 12:00:00';\n\n        $result = $this->generator->generate($domains, $date);\n\n        // Check that all domains are included\n        $this->assertStringContainsString('example\\\\.com', $result);\n        $this->assertStringContainsString('test\\\\.org', $result);\n        $this->assertStringContainsString('domain\\\\.net', $result);\n\n        // Check that only the last domain doesn't have [NC,OR]\n        $this->assertStringContainsString('example\\\\.com.*$ [NC,OR]', $result);\n        $this->assertStringContainsString('test\\\\.org.*$ [NC,OR]', $result);\n        $this->assertStringContainsString('domain\\\\.net.*$ [NC]', $result);\n    }\n\n    public function testGenerateModSetEnvIfSection(): void\n    {\n        $domains = ['example.com', 'test.org'];\n        $date = '2024-01-01 12:00:00';\n\n        $result = $this->generator->generate($domains, $date);\n\n        $this->assertStringContainsString('SetEnvIfNoCase Referer example\\\\.com spambot=yes', $result);\n        $this->assertStringContainsString('SetEnvIfNoCase Referer test\\\\.org spambot=yes', $result);\n    }\n\n    public function testGenerateAuthSection(): void\n    {\n        $domains = ['example.com'];\n        $date = '2024-01-01 12:00:00';\n\n        $result = $this->generator->generate($domains, $date);\n\n        // Check Apache 2.2 section\n        $this->assertStringContainsString('# Apache 2.2', $result);\n        $this->assertStringContainsString('<IfModule !mod_authz_core.c>', $result);\n        $this->assertStringContainsString('<IfModule mod_authz_host.c>', $result);\n        $this->assertStringContainsString('Order allow,deny', $result);\n        $this->assertStringContainsString('Allow from all', $result);\n        $this->assertStringContainsString('Deny from env=spambot', $result);\n\n        // Check Apache 2.4 section\n        $this->assertStringContainsString('# Apache 2.4', $result);\n        $this->assertStringContainsString('<IfModule mod_authz_core.c>', $result);\n        $this->assertStringContainsString('<RequireAll>', $result);\n        $this->assertStringContainsString('Require all granted', $result);\n        $this->assertStringContainsString('Require not env spambot', $result);\n    }\n}\n"
  },
  {
    "path": "tests/Unit/Domain/DomainProcessorTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Tests\\Unit\\Domain;\n\nuse PHPUnit\\Framework\\TestCase;\nuse StevieRay\\Domain\\DomainProcessor;\nuse RuntimeException;\n\nclass DomainProcessorTest extends TestCase\n{\n    private DomainProcessor $processor;\n\n    private string $tempDomainsFile;\n\n    protected function setUp(): void\n    {\n        $this->tempDomainsFile = sys_get_temp_dir() . '/test-domains.txt';\n        $this->processor = new DomainProcessor($this->tempDomainsFile);\n    }\n\n    protected function tearDown(): void\n    {\n        if (file_exists($this->tempDomainsFile)) {\n            unlink($this->tempDomainsFile);\n        }\n    }\n\n    public function testProcessDomainsWithValidDomains(): void\n    {\n        $domains = [\n            'example.com',\n            'test.org',\n            'domain.net',\n        ];\n\n        $this->createTempDomainsFile($domains);\n\n        $result = $this->processor->processDomains();\n\n        $this->assertCount(3, $result);\n        $this->assertEquals(['domain.net', 'example.com', 'test.org'], $result);\n    }\n\n    public function testProcessDomainsWithDuplicates(): void\n    {\n        $domains = [\n            'example.com',\n            'test.org',\n            'example.com', // Duplicate\n            'domain.net',\n            'test.org',    // Duplicate\n        ];\n\n        $this->createTempDomainsFile($domains);\n\n        $result = $this->processor->processDomains();\n\n        $this->assertCount(3, $result);\n        $this->assertEquals(['domain.net', 'example.com', 'test.org'], $result);\n    }\n\n    public function testProcessDomainsWithEmptyLines(): void\n    {\n        $domains = [\n            'example.com',\n            '',\n            'test.org',\n            '   ',\n            'domain.net',\n        ];\n\n        $this->createTempDomainsFile($domains);\n\n        $result = $this->processor->processDomains();\n\n        $this->assertCount(3, $result);\n        $this->assertEquals(['domain.net', 'example.com', 'test.org'], $result);\n    }\n\n    public function testProcessDomainsWithInvalidDomains(): void\n    {\n        $domains = [\n            'example.com',\n            'invalid-domain-', // Invalid\n            'test.org',\n            'domain.net',\n        ];\n\n        $this->createTempDomainsFile($domains);\n\n        $result = $this->processor->processDomains();\n\n        $this->assertCount(3, $result);\n        $this->assertEquals(['domain.net', 'example.com', 'test.org'], $result);\n    }\n\n    public function testProcessDomainsWithInternationalizedDomains(): void\n    {\n        $domains = [\n            'example.com',\n            'xn--e1aybc.xn--p1ai', // Valid punycode for тест.рф\n            'test.org',\n        ];\n\n        $this->createTempDomainsFile($domains);\n\n        $result = $this->processor->processDomains();\n\n        $this->assertCount(3, $result);\n        $this->assertContains('example.com', $result);\n        $this->assertContains('xn--e1aybc.xn--p1ai', $result);\n        $this->assertContains('test.org', $result);\n    }\n\n    public function testProcessDomainsWithNonExistentFile(): void\n    {\n        $processor = new DomainProcessor('/non/existent/file.txt');\n\n        $this->expectException(RuntimeException::class);\n        $this->expectExceptionMessage('Error opening file /non/existent/file.txt');\n\n        $processor->processDomains();\n    }\n\n    public function testProcessDomainsWithUnwritableFile(): void\n    {\n        $domains = ['example.com'];\n        $this->createTempDomainsFile($domains);\n\n        // Make file read-only\n        chmod($this->tempDomainsFile, 0444);\n        $processor = new DomainProcessor($this->tempDomainsFile);\n\n        $this->expectException(RuntimeException::class);\n        $this->expectExceptionMessage('Permission denied: cannot write to');\n\n        $processor->processDomains();\n    }\n\n    /**\n     * @param array<string> $domains\n     */\n    private function createTempDomainsFile(array $domains): void\n    {\n        $content = implode(\"\\n\", $domains) . \"\\n\";\n        file_put_contents($this->tempDomainsFile, $content);\n    }\n}\n"
  },
  {
    "path": "tests/Unit/GeneratorTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Tests\\Unit;\n\nuse PHPUnit\\Framework\\TestCase;\nuse StevieRay\\Generator;\nuse StevieRay\\Config\\ConfigGeneratorInterface;\n\nclass GeneratorTest extends TestCase\n{\n    private string $tempDir;\n\n    private Generator $generator;\n\n    protected function setUp(): void\n    {\n        $this->tempDir = sys_get_temp_dir() . '/generator-test-' . uniqid();\n        mkdir($this->tempDir, 0755, true);\n        $this->generator = new Generator($this->tempDir);\n    }\n\n    protected function tearDown(): void\n    {\n        $this->removeDirectory($this->tempDir);\n    }\n\n    public function testGetConfigGenerators(): void\n    {\n        $generators = $this->generator->getConfigGenerators();\n\n        $this->assertCount(10, $generators); // 10 different config types\n\n        foreach ($generators as $generator) {\n            $this->assertInstanceOf(ConfigGeneratorInterface::class, $generator);\n        }\n    }\n\n    public function testGetStatistics(): void\n    {\n        $stats = $this->generator->getStatistics();\n\n        $this->assertArrayHasKey('total_domains', $stats);\n        $this->assertArrayHasKey('config_files', $stats);\n        $this->assertArrayHasKey('output_directory', $stats);\n        $this->assertArrayHasKey('generated_files', $stats);\n\n        $this->assertIsInt($stats['total_domains']);\n        $this->assertIsInt($stats['config_files']);\n        $this->assertIsString($stats['output_directory']);\n        $this->assertIsArray($stats['generated_files']);\n\n        $this->assertEquals(10, $stats['config_files']); // 10 different config types\n        $this->assertEquals($this->tempDir, $stats['output_directory']);\n    }\n\n    public function testGenerateSpecificConfigs(): void\n    {\n        $types = ['apache', 'nginx'];\n\n        $this->generator->generateSpecificConfigs($types);\n\n        // Check that only Apache and Nginx files were created\n        $this->assertFileExists($this->tempDir . '/.htaccess');\n        $this->assertFileExists($this->tempDir . '/referral-spam.conf');\n\n        // Check that other files were not created\n        $this->assertFileDoesNotExist($this->tempDir . '/referral-spam.vcl');\n        $this->assertFileDoesNotExist($this->tempDir . '/web.config');\n    }\n\n    public function testGenerateSpecificConfigsWithInvalidType(): void\n    {\n        $types = ['apache', 'invalid-type'];\n\n        $this->generator->generateSpecificConfigs($types);\n\n        // Should still generate Apache config\n        $this->assertFileExists($this->tempDir . '/.htaccess');\n    }\n\n    public function testGenerateSpecificConfigsWithEmptyArray(): void\n    {\n        $types = [];\n\n        $this->generator->generateSpecificConfigs($types);\n\n        // Should not generate any files\n        $files = scandir($this->tempDir);\n        if ($files === false) {\n            $files = [];\n        }\n        $files = array_filter($files, fn ($file) => $file !== '.' && $file !== '..');\n\n        $this->assertEmpty($files);\n    }\n\n    public function testGenerateFiles(): void\n    {\n        $this->generator->generateFiles();\n\n        // Check that all expected files were created\n        $expectedFiles = [\n            '.htaccess',\n            'referral-spam.conf',\n            'referral-spam.vcl',\n            'web.config',\n            'referral_spam.res',\n            'referral-spam.caddy',\n            'referral-spam.caddy2',\n            'referral-spam.haproxy',\n            'referral-spam.lighttpd.conf',\n        ];\n\n        foreach ($expectedFiles as $file) {\n            $this->assertFileExists($this->tempDir . '/' . $file);\n        }\n\n        // Check that Google Analytics files were created (at least one)\n        $googleFiles = glob($this->tempDir . '/google-exclude-*.txt');\n        $this->assertNotEmpty($googleFiles);\n    }\n\n    public function testGeneratedFilesHaveContent(): void\n    {\n        $this->generator->generateFiles();\n\n        $files = [\n            '.htaccess',\n            'referral-spam.conf',\n            'referral-spam.vcl',\n            'web.config',\n            'referral_spam.res',\n            'referral-spam.caddy',\n            'referral-spam.caddy2',\n            'referral-spam.haproxy',\n            'referral-spam.lighttpd.conf',\n        ];\n\n        foreach ($files as $file) {\n            $filePath = $this->tempDir . '/' . $file;\n            $content = file_get_contents($filePath);\n\n            $this->assertNotEmpty($content);\n            if ($content !== false) {\n                $this->assertStringContainsString('https://github.com/Stevie-Ray/referrer-spam-blocker', $content);\n            }\n        }\n    }\n\n    public function testGeneratedFilesHaveCorrectPermissions(): void\n    {\n        $this->generator->generateFiles();\n\n        $files = [\n            '.htaccess',\n            'referral-spam.conf',\n            'referral-spam.vcl',\n            'web.config',\n            'referral_spam.res',\n            'referral-spam.caddy',\n            'referral-spam.caddy2',\n            'referral-spam.haproxy',\n            'referral-spam.lighttpd.conf',\n        ];\n\n        foreach ($files as $file) {\n            $filePath = $this->tempDir . '/' . $file;\n            $permissions = fileperms($filePath);\n            $permissions = substr(sprintf('%o', $permissions), -4);\n\n            $this->assertEquals('0644', $permissions);\n        }\n    }\n\n    public function testGoogleAnalyticsFilesAreSplitCorrectly(): void\n    {\n        $this->generator->generateFiles();\n\n        $googleFiles = glob($this->tempDir . '/google-exclude-*.txt');\n        $this->assertNotEmpty($googleFiles);\n\n        if (is_array($googleFiles)) {\n            foreach ($googleFiles as $file) {\n                $content = file_get_contents($file);\n                $this->assertNotEmpty($content);\n\n                // Check that each file doesn't exceed Google Analytics limit\n                if ($content !== false) {\n                    $this->assertLessThanOrEqual(30000, strlen($content));\n                }\n            }\n        }\n    }\n\n    private function removeDirectory(string $dir): void\n    {\n        if (!is_dir($dir)) {\n            return;\n        }\n\n        $scanResult = scandir($dir);\n        if ($scanResult === false) {\n            $files = [];\n        } else {\n            $files = array_diff($scanResult, ['.', '..']);\n        }\n        foreach ($files as $file) {\n            $path = $dir . '/' . $file;\n            if (is_dir($path)) {\n                $this->removeDirectory($path);\n            } else {\n                unlink($path);\n            }\n        }\n        rmdir($dir);\n    }\n}\n"
  },
  {
    "path": "tests/Unit/Service/FileWriterTest.php",
    "content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace StevieRay\\Tests\\Unit\\Service;\n\nuse PHPUnit\\Framework\\TestCase;\nuse StevieRay\\Service\\FileWriter;\nuse RuntimeException;\n\nclass FileWriterTest extends TestCase\n{\n    private string $tempDir;\n\n    private FileWriter $fileWriter;\n\n    protected function setUp(): void\n    {\n        $this->tempDir = sys_get_temp_dir() . '/filewriter-test-' . uniqid();\n        mkdir($this->tempDir, 0755, true);\n        $this->fileWriter = new FileWriter($this->tempDir);\n    }\n\n    protected function tearDown(): void\n    {\n        $this->removeDirectory($this->tempDir);\n    }\n\n    public function testWriteFile(): void\n    {\n        $filename = 'test.txt';\n        $content = 'Test content';\n\n        $this->fileWriter->writeFile($filename, $content);\n\n        $filePath = $this->tempDir . '/' . $filename;\n        $this->assertFileExists($filePath);\n        $this->assertEquals($content, file_get_contents($filePath));\n        $this->assertEquals('0644', substr(sprintf('%o', fileperms($filePath)), -4));\n    }\n\n    public function testWriteFileWithSubdirectory(): void\n    {\n        $filename = 'subdir/test.txt';\n        $content = 'Test content';\n\n        $this->fileWriter->writeFile($filename, $content);\n\n        $filePath = $this->tempDir . '/' . $filename;\n        $this->assertFileExists($filePath);\n        $this->assertEquals($content, file_get_contents($filePath));\n    }\n\n    public function testWriteFiles(): void\n    {\n        $files = [\n            'file1.txt' => 'Content 1',\n            'file2.txt' => 'Content 2',\n            'subdir/file3.txt' => 'Content 3',\n        ];\n\n        $this->fileWriter->writeFiles($files);\n\n        foreach ($files as $filename => $content) {\n            $filePath = $this->tempDir . '/' . $filename;\n            $this->assertFileExists($filePath);\n            $this->assertEquals($content, file_get_contents($filePath));\n        }\n    }\n\n    public function testWriteFileWithUnwritableDirectory(): void\n    {\n        // Create a read-only directory\n        $readOnlyDir = $this->tempDir . '/readonly';\n        mkdir($readOnlyDir, 0444);\n\n        $fileWriter = new FileWriter($readOnlyDir);\n\n        $this->expectException(RuntimeException::class);\n        $this->expectExceptionMessage('Directory is not writable');\n\n        $fileWriter->writeFile('test.txt', 'content');\n    }\n\n    public function testWriteFileWithUnwritableFile(): void\n    {\n        $filename = 'test.txt';\n        $filePath = $this->tempDir . '/' . $filename;\n\n        // Create a read-only file\n        file_put_contents($filePath, 'existing content');\n        chmod($filePath, 0444);\n\n        $this->expectException(RuntimeException::class);\n        $this->expectExceptionMessage('Permission denied: cannot write to');\n\n        $this->fileWriter->writeFile($filename, 'new content');\n    }\n\n    public function testGetOutputDirectory(): void\n    {\n        $this->assertEquals($this->tempDir, $this->fileWriter->getOutputDirectory());\n    }\n\n    public function testFileExists(): void\n    {\n        $filename = 'test.txt';\n\n        $this->assertFalse($this->fileWriter->fileExists($filename));\n\n        $this->fileWriter->writeFile($filename, 'content');\n\n        $this->assertTrue($this->fileWriter->fileExists($filename));\n    }\n\n    public function testCustomFilePermissions(): void\n    {\n        $fileWriter = new FileWriter($this->tempDir, 0600);\n        $filename = 'test.txt';\n        $content = 'Test content';\n\n        $fileWriter->writeFile($filename, $content);\n\n        $filePath = $this->tempDir . '/' . $filename;\n        $this->assertEquals('0600', substr(sprintf('%o', fileperms($filePath)), -4));\n    }\n\n    public function testWriteFileWithTrailingSlash(): void\n    {\n        $fileWriter = new FileWriter($this->tempDir . '/');\n        $filename = 'test.txt';\n        $content = 'Test content';\n\n        $fileWriter->writeFile($filename, $content);\n\n        $filePath = $this->tempDir . '/' . $filename;\n        $this->assertFileExists($filePath);\n        $this->assertEquals($content, file_get_contents($filePath));\n    }\n\n    private function removeDirectory(string $dir): void\n    {\n        if (!is_dir($dir)) {\n            return;\n        }\n\n        $scanResult = scandir($dir);\n        if ($scanResult === false) {\n            $files = [];\n        } else {\n            $files = array_diff($scanResult, ['.', '..']);\n        }\n        foreach ($files as $file) {\n            $path = $dir . '/' . $file;\n            if (is_dir($path)) {\n                $this->removeDirectory($path);\n            } else {\n                unlink($path);\n            }\n        }\n        rmdir($dir);\n    }\n}\n"
  },
  {
    "path": "web.config",
    "content": "<!-- https://github.com/Stevie-Ray/referrer-spam-blocker -->\n<!-- Updated 2026-03-04 18:14:04 -->\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<configuration>\n\t<system.webServer>\n\t\t<rewrite>\n\t\t\t<rules>\n\t\t\t\t<rule name=\"Referrer Spam 0-0.fr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(0\\-0\\.fr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 000free.us\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(000free\\.us)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 007agent-i.fr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(007agent\\-i\\.fr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 00author.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(00author\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 00go.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(00go\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 00it.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(00it\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 01casino-x.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(01casino\\-x\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 033nachtvandeliteratuur.nl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(033nachtvandeliteratuur\\.nl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 03e.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(03e\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 03p.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(03p\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 0n-line.tv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(0n\\-line\\.tv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1-88.vip\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1\\-88\\.vip)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1-99seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1\\-99seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1-best-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1\\-best\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1-free-share-buttons.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1\\-free\\-share\\-buttons\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 100-reasons-for-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(100\\-reasons\\-for\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 100dollars-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(100dollars\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 100searchengines.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(100searchengines\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 101flag.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(101flag\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 11235813.webzdarma.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(11235813\\.webzdarma\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 12-reasons-for-seo.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(12\\-reasons\\-for\\-seo\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 12masterov.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(12masterov\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 12u.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(12u\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 15-reasons-for-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(15\\-reasons\\-for\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 16lv.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(16lv\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1hwy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1hwy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1kinobig.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1kinobig\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1kreditzaim.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1kreditzaim\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1pamm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1pamm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1st-urist.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1st\\-urist\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1webmaster.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1webmaster\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1wek.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1wek\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1winru.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1winru\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1x-slot.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1x\\-slot\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1x-slots.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1x\\-slots\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xbet-entry.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xbet\\-entry\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xbetcc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xbetcc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xbetonlines1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xbetonlines1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xbetportugal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xbetportugal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xbetts.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xbetts\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xslot-casino.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xslot\\-casino\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xslot-casino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xslot\\-casino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xslot-casino.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xslot\\-casino\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xslot.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xslot\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xslots-africa.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xslots\\-africa\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xslots-brasil.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xslots\\-brasil\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xslots-casino.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xslots\\-casino\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xslots.africa\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xslots\\.africa)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 1xslots.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(1xslots\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 2-best-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(2\\-best\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 2-easy.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(2\\-easy\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 2-go-now.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(2\\-go\\-now\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 2015god.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(2015god\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 24chasa.bg\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(24chasa\\.bg)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 24h.doctor\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(24h\\.doctor)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 24videos.tv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(24videos\\.tv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 24x7-server-support.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(24x7\\-server\\-support\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 256bit.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(256bit\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 273-fz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(273\\-fz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 2ads.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(2ads\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 2itech.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(2itech\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 2kata.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(2kata\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 2nt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(2nt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 2your.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(2your\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 3-best-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(3\\-best\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 3-letter-domains.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(3\\-letter\\-domains\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 3dgame3d.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(3dgame3d\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 3dracergames.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(3dracergames\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 3waynetworks.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(3waynetworks\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 4-best-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(4\\-best\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 40momporntube.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(40momporntube\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 45en.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(45en\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 45tahunkhongguan.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(45tahunkhongguan\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 4inn.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(4inn\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 4ip.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(4ip\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 4istoshop.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(4istoshop\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 4webmasters.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(4webmasters\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 4webmasters.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(4webmasters\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 4xcasino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(4xcasino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 5-best-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(5\\-best\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 5-steps-to-start-business.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(5\\-steps\\-to\\-start\\-business\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 5elementov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(5elementov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 5forex.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(5forex\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 6-best-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(6\\-best\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 69-13-59.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(69\\-13\\-59\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 6hopping.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(6hopping\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 7-best-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(7\\-best\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 70casino.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(70casino\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 76brighton.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(76brighton\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 76brighton.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(76brighton\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 7kop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(7kop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 7makemoneyonline.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(7makemoneyonline\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 7milliondollars.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(7milliondollars\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 7ooo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(7ooo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 7zap.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(7zap\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 8-best-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(8\\-best\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 84lv.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(84lv\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 8xv8.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(8xv8\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 9-best-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(9\\-best\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam 99-reasons-for-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(99\\-reasons\\-for\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam QIWI.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(QIWI\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam a-elita.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(a\\-elita\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam a-hau.mk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(a\\-hau\\.mk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam a14download.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(a14download\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abacoasale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abacoasale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abaiak.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abaiak\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abbanreddy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abbanreddy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abc.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abc\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abcdefh.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abcdefh\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abcdeg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abcdeg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abclauncher.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abclauncher\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abiente.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abiente\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abovetherivernc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abovetherivernc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abtasty.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abtasty\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam abuser.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(abuser\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam academia-nsk.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(academia\\-nsk\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam acads.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(acads\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam acarreo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(acarreo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam account-my1.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(account\\-my1\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam accs-store.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(accs\\-store\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam actata.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(actata\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam actualremont.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(actualremont\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam acunetix-referrer.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(acunetix\\-referrer\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adanih.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adanih\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adcash.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adcash\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam addblueoff.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(addblueoff\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adelachrist.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adelachrist\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adelly.bg\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adelly\\.bg)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adf.ly\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adf\\.ly)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adpostmalta.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adpostmalta\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adrenalinebot.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adrenalinebot\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adrenalinebot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adrenalinebot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adspart.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adspart\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adtiger.tk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adtiger\\.tk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adult-video-chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adult\\-video\\-chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adultfullhd.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adultfullhd\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adventureparkcostarica.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adventureparkcostarica\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam advertisefree.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(advertisefree\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam adviceforum.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(adviceforum\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam advocatemsk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(advocatemsk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam advokateg.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(advokateg\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam advokateg.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(advokateg\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam advokateg.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(advokateg\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam advokateg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(advokateg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aerodizain.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aerodizain\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aerogo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aerogo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aerotour.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aerotour\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam affiliate-programs.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(affiliate\\-programs\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam affordablewebsitesandmobileapps.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(affordablewebsitesandmobileapps\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam afora.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(afora\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam afshan.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(afshan\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam agreda.pluto.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(agreda\\.pluto\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam agro-gid.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(agro\\-gid\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam agtl.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(agtl\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ahecmarket.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ahecmarket\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ahhjf.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ahhjf\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ahrefs.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ahrefs\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ai-seo-services.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ai\\-seo\\-services\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aibolita.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aibolita\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aidarmebel.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aidarmebel\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aimeesblog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aimeesblog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aimiot.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aimiot\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aitiman.ae\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aitiman\\.ae)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam akama.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(akama\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam akmussale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(akmussale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam akuhni.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(akuhni\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam akusherok.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(akusherok\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam akvamaster.dp.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(akvamaster\\.dp\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alborzan.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alborzan\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam albuteroli.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(albuteroli\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alcobutik24.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alcobutik24\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alert-fdm.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alert\\-fdm\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alert-fjg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alert\\-fjg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alert-hgd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alert\\-hgd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alert-jdh.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alert\\-jdh\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alertomall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alertomall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alessandraleone.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alessandraleone\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alexsander.ch\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alexsander\\.ch)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alfa-medosmotr.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alfa\\-medosmotr\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alfa9.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alfa9\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alfabot.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alfabot\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alfapro.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alfapro\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alguiblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alguiblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alibestsale.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alibestsale\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aliexpress.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aliexpress\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aliexsale.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aliexsale\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alif-ba-ta.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alif\\-ba\\-ta\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alinabaniecka.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alinabaniecka\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alive-ua.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alive\\-ua\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aliviahome.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aliviahome\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alkanfarma.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alkanfarma\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam all-news.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(all\\-news\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam all4bath.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(all4bath\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam all4invest.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(all4invest\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allcredits.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allcredits\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allcryptonews.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allcryptonews\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alldownload.pw\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alldownload\\.pw)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allergick.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allergick\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allergija.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allergija\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allfan.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allfan\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allforminecraft.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allforminecraft\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allknow.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allknow\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allkrim.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allkrim\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allmarketsnewdayli.gdn\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allmarketsnewdayli\\.gdn)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allnews.md\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allnews\\.md)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allnews24.in\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allnews24\\.in)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allpdfmags.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allpdfmags\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allproblog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allproblog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allsilver925.co.il\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allsilver925\\.co\\.il)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alltheviews.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alltheviews\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allvacancy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allvacancy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allwomen.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allwomen\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam allwrighter.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(allwrighter\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alma-mramor.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alma\\-mramor\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alp-rk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alp\\-rk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alphaforum.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alphaforum\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alphaopt24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alphaopt24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alpharma.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alpharma\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alpinaskate.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alpinaskate\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam altermix.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(altermix\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam alveris.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(alveris\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam am-se.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(am\\-se\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amanda-porn.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amanda\\-porn\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amatocanizalez.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amatocanizalez\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amazon-seo-service.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amazon\\-seo\\-service\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amoi.tn\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amoi\\.tn)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amoremio.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amoremio\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amos-kids.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amos\\-kids\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amospalla.es\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amospalla\\.es)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amp-project.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amp\\-project\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amt-k.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amt\\-k\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amtel-vredestein.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amtel\\-vredestein\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam amylynnandrews.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(amylynnandrews\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam anabolics.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(anabolics\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam anal-acrobats.hol.es\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(anal\\-acrobats\\.hol\\.es)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam analytics-ads.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(analytics\\-ads\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam analyze-best-copywriting-services.party\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(analyze\\-best\\-copywriting\\-services\\.party)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam analyze-extra-analytic-service.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(analyze\\-extra\\-analytic\\-service\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ananumous.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ananumous\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam anapa-inns.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(anapa\\-inns\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam andrewancheta.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(andrewancheta\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam android-style.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(android\\-style\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam android-systems.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(android\\-systems\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam android-vsem.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(android\\-vsem\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam android4fun.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(android4fun\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam androids-store.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(androids\\-store\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam animalphotos.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(animalphotos\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam animebox.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(animebox\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam animenime.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(animenime\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam annaeydlish.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(annaeydlish\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam anrtmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(anrtmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam anti-crisis-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(anti\\-crisis\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam anticrawler.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(anticrawler\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam antiguabarbuda.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(antiguabarbuda\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam antonovich-design.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(antonovich\\-design\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam anydesk.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(anydesk\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aosheng-tech.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aosheng\\-tech\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aoul.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aoul\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam apartmentbay.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(apartmentbay\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam apartmentratings.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(apartmentratings\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam apilian.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(apilian\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam apishops.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(apishops\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam apollon-market-url.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(apollon\\-market\\-url\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam applepharma.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(applepharma\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam apteka-doc.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(apteka\\-doc\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam apteka-pharm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(apteka\\-pharm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam apteka.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(apteka\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam apxeo.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(apxeo\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arabic-poetry.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arabic\\-poetry\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aramaicmedia.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aramaicmedia\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arate.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arate\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arcadepages.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arcadepages\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arcarticle.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arcarticle\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam architecturebest.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(architecturebest\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arendadogovor.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arendadogovor\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arendakvartir.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arendakvartir\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arendas.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arendas\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arendovalka.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arendovalka\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam argo-visa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(argo\\-visa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arkansale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arkansale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arkartex.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arkartex\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arkkivoltti.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arkkivoltti\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arpe.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arpe\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arraty.altervista.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arraty\\.altervista\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam artblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(artblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam artclipart.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(artclipart\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam artdeko.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(artdeko\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam artefakct.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(artefakct\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam artpaint-market.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(artpaint\\-market\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam artparquet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(artparquet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam artpress.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(artpress\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam artsmarket.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(artsmarket\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam arturs.moscow\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(arturs\\.moscow)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aruplighting.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aruplighting\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam asacopaco.tk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(asacopaco\\.tk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ascotgoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ascotgoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam asia-forum.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(asia\\-forum\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ask-yug.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ask\\-yug\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam asmxsatadriverin.aircus.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(asmxsatadriverin\\.aircus\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam astimvnc.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(astimvnc\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam asupro.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(asupro\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam asynt.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(asynt\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aszokshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aszokshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam atlant-auto.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(atlant\\-auto\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam atlasvkusov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(atlasvkusov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam atleticpharm.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(atleticpharm\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam atley.eu.pn\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(atley\\.eu\\.pn)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam atmagroup.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(atmagroup\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam atoblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(atoblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam atyks.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(atyks\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aucoinhomes.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aucoinhomes\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam audiobangout.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(audiobangout\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ausergrubhof.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ausergrubhof\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam australia-opening-times.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(australia\\-opening\\-times\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto-b2b-seo-service.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto\\-b2b\\-seo\\-service\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto-complex.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto\\-complex\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto-kia-fulldrive.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto\\-kia\\-fulldrive\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto-moto-elektronika.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto\\-moto\\-elektronika\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto-news-digest.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto\\-news\\-digest\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto-seo-service.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto\\-seo\\-service\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto-seo-service.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto\\-seo\\-service\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto-zapchasti.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto\\-zapchasti\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto.rusvile.lt\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto\\.rusvile\\.lt)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam auto4style.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(auto4style\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autoblog.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autoblog\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autobrennero.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autobrennero\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autobudpostach.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autobudpostach\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autofuct.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autofuct\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autoloans.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autoloans\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autolombard-krasnodar.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autolombard\\-krasnodar\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam automate-amazon-affiliation.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(automate\\-amazon\\-affiliation\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam automobile-spec.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(automobile\\-spec\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autonew.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autonew\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autoseo-service.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autoseo\\-service\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autoseo-traffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autoseo\\-traffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autoseo-trial-for-1.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autoseo\\-trial\\-for\\-1\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autoseoservice.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autoseoservice\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autoseotips.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autoseotips\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autoservic.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autoservic\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autotop.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autotop\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autovideobroadcast.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autovideobroadcast\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam autowebmarket.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(autowebmarket\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avcoast.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avcoast\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avek.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avek\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aviapanda.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aviapanda\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aviaseller.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aviaseller\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aviav.ru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aviav\\.ru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avitocars.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avitocars\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aviva-limoux.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aviva\\-limoux\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avkzarabotok.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avkzarabotok\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avkzarabotok.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avkzarabotok\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avon-severozapad.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avon\\-severozapad\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avtoarenda.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avtoarenda\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avtocredit-legko.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avtocredit\\-legko\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avtointeres.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avtointeres\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avtorskoe-vino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avtorskoe\\-vino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avtovolop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avtovolop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam avtovykup.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(avtovykup\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam awency.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(awency\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam aworlds.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(aworlds\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam axcus.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(axcus\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ayerbo.xhost.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ayerbo\\.xhost\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ayongoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ayongoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam azadnegar.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(azadnegar\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam azartclub.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(azartclub\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam azartniy-bonus.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(azartniy\\-bonus\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam azazu.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(azazu\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam azbuka-mo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(azbuka\\-mo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam azbukadiets.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(azbukadiets\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam azbukafree.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(azbukafree\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam azlex.uz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(azlex\\.uz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam b-buyeasy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(b\\-buyeasy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam b2b-lounge.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(b2b\\-lounge\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bablonow.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bablonow\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam baciakte.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(baciakte\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam backgroundpictures.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(backgroundpictures\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam backlinks-fast-top.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(backlinks\\-fast\\-top\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bag77.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bag77\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bahisgunceladresi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bahisgunceladresi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam baixar-musicas-gratis.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(baixar\\-musicas\\-gratis\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bala.getenjoyment.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bala\\.getenjoyment\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam baladur.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(baladur\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam balakhna.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(balakhna\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam balayazh.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(balayazh\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam balitouroffice.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(balitouroffice\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam balkanfarma.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(balkanfarma\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam balkanfarma.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(balkanfarma\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam balois.worldbreak.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(balois\\.worldbreak\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bambi.ck.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bambi\\.ck\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam banan.tv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(banan\\.tv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bankcrediti.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bankcrediti\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bankhummer.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bankhummer\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bankiem.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bankiem\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam barbarahome.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(barbarahome\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bard-real.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bard\\-real\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bashtime.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bashtime\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam basisches-wasser.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(basisches\\-wasser\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam batietiket.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(batietiket\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam batut-fun.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(batut\\-fun\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bausparen.bz.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bausparen\\.bz\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bavariagid.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bavariagid\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bavsac.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bavsac\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bazaronline24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bazaronline24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bbtec.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bbtec\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bdf-tracker.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bdf\\-tracker\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam beachtoday.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(beachtoday\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam beamfall.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(beamfall\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam beauby.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(beauby\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam beauty-clinic.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(beauty\\-clinic\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam beauty-lesson.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(beauty\\-lesson\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam beclean-nn.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(beclean\\-nn\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bedroomlighting.us\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bedroomlighting\\.us)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam begalka.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(begalka\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam belinvestdom.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(belinvestdom\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam belreferatov.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(belreferatov\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam berdasovivan.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(berdasovivan\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam beremenyashka.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(beremenyashka\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam berglion.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(berglion\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam berkinan.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(berkinan\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam berlininsl.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(berlininsl\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam berrymall.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(berrymall\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-deal-hdd.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-deal\\-hdd\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-mam.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-mam\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-offer-hdd-1.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-offer\\-hdd\\-1\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-offer-hdd-1.space\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-offer\\-hdd\\-1\\.space)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-offer-hdd-1.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-offer\\-hdd\\-1\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-offer-hdd.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-offer\\-hdd\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-offer-hdd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-offer\\-hdd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-ping-service-usa-1.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-ping\\-service\\-usa\\-1\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-ping-service-usa-1.space\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-ping\\-service\\-usa\\-1\\.space)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-ping-service-usa-1.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-ping\\-service\\-usa\\-1\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-ping-service-usa.blue\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-ping\\-service\\-usa\\.blue)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-ping-service-usa.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-ping\\-service\\-usa\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-ping-service-usa.space\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-ping\\-service\\-usa\\.space)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-ping-service-usa.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-ping\\-service\\-usa\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-ping-service-usa.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-ping\\-service\\-usa\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-printmsk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-printmsk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-seo-offer.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-seo\\-offer\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-seo-service.tk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-seo\\-service\\.tk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-seo-software.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-seo\\-software\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam best-seo-solution.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(best\\-seo\\-solution\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestbookclub.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestbookclub\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestchoice.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestchoice\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestempresas.es\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestempresas\\.es)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestfortraders.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestfortraders\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam besthatcheries.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(besthatcheries\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestleofferhdd.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestleofferhdd\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestmobilityscooterstoday.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestmobilityscooterstoday\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestofferfyhdd.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestofferfyhdd\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestofferhddacy.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestofferhddacy\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestofferhddbyt.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestofferhddbyt\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestofferhddeed.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestofferhddeed\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestofferhddity.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestofferhddity\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestofferifyhdd.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestofferifyhdd\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestofferswalkmydogouteveryday.gq\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestofferswalkmydogouteveryday\\.gq)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestorofferhdd.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestorofferhdd\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestplacetobuyeriacta.jw.lt\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestplacetobuyeriacta\\.jw\\.lt)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestvpnrating.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestvpnrating\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestwebsiteawards.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestwebsiteawards\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bestwebsitesawards.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bestwebsitesawards\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bet-prognoz.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bet\\-prognoz\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bet-winner1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bet\\-winner1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bet2much.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bet2much\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam betonka.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(betonka\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam betslive.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(betslive\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam betterhealthbeauty.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(betterhealthbeauty\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bettorschool.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bettorschool\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam betune.onlinewebshop.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(betune\\.onlinewebshop\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam betwinservice.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(betwinservice\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam beyan.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(beyan\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bez-zabora.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bez\\-zabora\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bezcmexa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bezcmexa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bezlimitko.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bezlimitko\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bezprostatita.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bezprostatita\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bezsporno.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bezsporno\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam beztuberkuleza.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(beztuberkuleza\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bhf.vc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bhf\\.vc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bibprsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bibprsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bif-ru.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bif\\-ru\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bigcities.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bigcities\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam biglistofwebsites.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(biglistofwebsites\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam biketank.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(biketank\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam billiard-classic.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(billiard\\-classic\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam billigerstrom.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(billigerstrom\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam billyblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(billyblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bimatoprost-careprost.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bimatoprost\\-careprost\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bimatoprost-careprost.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bimatoprost\\-careprost\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bin-brokers.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bin\\-brokers\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam binokna.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(binokna\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam binomo.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(binomo\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bio-japan.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bio\\-japan\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bio-market.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bio\\-market\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bio.trade-jp.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bio\\.trade\\-jp\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bioca.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bioca\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam biplanecentre.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(biplanecentre\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bird1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bird1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam birzha-truda.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(birzha\\-truda\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bisign.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bisign\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bitcoin-ua.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bitcoin\\-ua\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bitcoins-forum.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bitcoins\\-forum\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bitcoins-forum.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bitcoins\\-forum\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bitcoins-forum.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bitcoins\\-forum\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bitcoins-forum.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bitcoins\\-forum\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bitcoins-live.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bitcoins\\-live\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam biteg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(biteg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bitniex.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bitniex\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam biz-law.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(biz\\-law\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam biznesluxe.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(biznesluxe\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam biznesrealnost.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(biznesrealnost\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam biznesschat.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(biznesschat\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bizru.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bizru\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bki24.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bki24\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bkns.vn\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bkns\\.vn)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam black-friday.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(black\\-friday\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam black-tip.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(black\\-tip\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blackhatworth.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blackhatworth\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blackle.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blackle\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blackplanet.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blackplanet\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blackwitchcraft.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blackwitchcraft\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blancablog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blancablog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blavia.00author.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blavia\\.00author\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bleacherreport.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bleacherreport\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blockchaintop.nl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blockchaintop\\.nl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blockworld.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blockworld\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog.f00kclan.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog\\.f00kclan\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog.koorg.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog\\.koorg\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog.latuti.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog\\.latuti\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog.remote-computer.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog\\.remote\\-computer\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog.xsk.in\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog\\.xsk\\.in)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog.yam.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog\\.yam\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog100.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog100\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog2019.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog2019\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog2019.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog2019\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blog4u.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blog4u\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogarun.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogarun\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bloggen.be\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bloggen\\.be)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bloggers.nl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bloggers\\.nl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogig.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogig\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogking.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogking\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bloglag.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bloglag\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blognet.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blognet\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogorganictraffic.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogorganictraffic\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogos.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogos\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogping.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogping\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogs.rediff.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogs\\.rediff\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogseo.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogseo\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogstar.fun\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogstar\\.fun)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogster.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogster\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogtotal.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogtotal\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogtraffic.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogtraffic\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blogua.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blogua\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam blue-square.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(blue\\-square\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bluerobot.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bluerobot\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bmusshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bmusshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bo-vtb24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bo\\-vtb24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam board.f00d.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(board\\.f00d\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bobba.dzaba.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bobba\\.dzaba\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bodybuilding-shop.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bodybuilding\\-shop\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam boleznikogi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(boleznikogi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bolezniorganov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bolezniorganov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam boltalko.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(boltalko\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam boltushkiclub.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(boltushkiclub\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bombla.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bombla\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bonkers.name\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bonkers\\.name)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bonniesblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bonniesblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bonus-betting.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bonus\\-betting\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bonus-spasibo-sberbank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bonus\\-spasibo\\-sberbank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bonus-vtb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bonus\\-vtb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bonux.nextview.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bonux\\.nextview\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bookmaker-bet.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bookmaker\\-bet\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bookmark4you.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bookmark4you\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bookmark4you.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bookmark4you\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bookmark4you.com.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bookmark4you\\.com\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam books-top.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(books\\-top\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam boole.onlinewebshop.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(boole\\.onlinewebshop\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam boost-my-site.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(boost\\-my\\-site\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam boost24.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(boost24\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam boostmyppc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(boostmyppc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bosefux.esy.es\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bosefux\\.esy\\.es)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bosman.pluto.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bosman\\.pluto\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bostonline.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bostonline\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bot-traffic.icu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bot\\-traffic\\.icu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bot-traffic.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bot\\-traffic\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam botamycos.fr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(botamycos\\.fr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bottraffic.live\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bottraffic\\.live)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bottraffic143.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bottraffic143\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bottraffic329.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bottraffic329\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bottraffic4free.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bottraffic4free\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bottraffic4free.host\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bottraffic4free\\.host)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bottraffic999.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bottraffic999\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bouda.kvalitne.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bouda\\.kvalitne\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bowigosale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bowigosale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bpro1.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bpro1\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bradleylive.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bradleylive\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brains2.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brains2\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brakehawk.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brakehawk\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brandnewtube.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brandnewtube\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brandov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brandov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brateg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brateg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brauni.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brauni\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bravica.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bravica\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bravica.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bravica\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bravica.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bravica\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bravica.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bravica\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bravica.news\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bravica\\.news)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bravica.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bravica\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bravica.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bravica\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bravica.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bravica\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bravica.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bravica\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam break-the-chains.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(break\\-the\\-chains\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam breget74.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(breget74\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brendbutik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brendbutik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam briankatrine.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(briankatrine\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brickmaster.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brickmaster\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brillianty.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brillianty\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bristolhostel.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bristolhostel\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bristolhotel.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bristolhotel\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bristolhotel.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bristolhotel\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam britneyblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(britneyblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brk-rti.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brk\\-rti\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brokergid.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brokergid\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brooklyn-ads.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brooklyn\\-ads\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brooklynsays.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brooklynsays\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brothers-smaller.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brothers\\-smaller\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brus-vsem.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brus\\-vsem\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brus.city\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brus\\.city)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam brusilov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(brusilov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bsell.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bsell\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam btcnix.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(btcnix\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam btt-club.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(btt\\-club\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam budilneg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(budilneg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam budmavtomatika.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(budmavtomatika\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam budpost.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(budpost\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bufetout.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bufetout\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bugof.gq\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bugof\\.gq)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buhproffi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buhproffi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buigas.00it.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buigas\\.00it\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buildnw.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buildnw\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buildwithwendy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buildwithwendy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buketeg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buketeg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bukleteg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bukleteg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bulgaria-web-developers.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bulgaria\\-web\\-developers\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buqayy0.livejournal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buqayy0\\.livejournal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bur-rk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bur\\-rk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam burger-imperia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(burger\\-imperia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam burn-fat.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(burn\\-fat\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam business-online-sberbank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(business\\-online\\-sberbank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buttons-for-website.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buttons\\-for\\-website\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buttons-for-your-website.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buttons\\-for\\-your\\-website\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buy-cheap-online.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buy\\-cheap\\-online\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buy-cheap-pills-order-online.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buy\\-cheap\\-pills\\-order\\-online\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buy-forum.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buy\\-forum\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buy-meds24.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buy\\-meds24\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buyantiviralwp.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buyantiviralwp\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buyessay3.blogspot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buyessay3\\.blogspot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buyessaynow.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buyessaynow\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buyessayonline19.blogspot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buyessayonline19\\.blogspot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buyfriend.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buyfriend\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buyk.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buyk\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buynorxx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buynorxx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buypharmacydrug.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buypharmacydrug\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buypillsonline24h.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buypillsonline24h\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buypillsorderonline.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buypillsorderonline\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buypuppies.ca\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buypuppies\\.ca)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buyscabiescream.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buyscabiescream\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buytizanidineonline.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buytizanidineonline\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buytizanidineonlinenoprescription.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buytizanidineonlinenoprescription\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam buyviagraa.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(buyviagraa\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bvps8.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bvps8\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bycontext.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bycontext\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam byme.se\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(byme\\.se)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam bytimedance.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(bytimedance\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam c-english.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(c\\-english\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam c2bit.hk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(c2bit\\.hk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam californianews.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(californianews\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam call-of-duty.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(call\\-of\\-duty\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam callejondelpozo.es\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(callejondelpozo\\.es)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam calvet.altervista.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(calvet\\.altervista\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cancerfungus.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cancerfungus\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam candida-international.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(candida\\-international\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam candida-society.org.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(candida\\-society\\.org\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cannazon-market.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cannazon\\-market\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam canoncdriverq3.pen.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(canoncdriverq3\\.pen\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam canyougethighofftizanidine.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(canyougethighofftizanidine\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam canzoni.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(canzoni\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carabela.com.do\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carabela\\.com\\.do)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carbon-linger-hierarchy-suntan.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carbon\\-linger\\-hierarchy\\-suntan\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carder.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carder\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carder.tv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carder\\.tv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carders.ug\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carders\\.ug)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cardiosport.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cardiosport\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cardsdumps.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cardsdumps\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cardsharp1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cardsharp1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cardul.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cardul\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carezi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carezi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carfax.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carfax\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carivka.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carivka\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carloans.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carloans\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carscrim.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carscrim\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carsdined.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carsdined\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carsnumber.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carsnumber\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carson.getenjoyment.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carson\\.getenjoyment\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam carsoncitypizza.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(carsoncitypizza\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cartechnic.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cartechnic\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casablancamanor.co.za\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casablancamanor\\.co\\.za)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cashforum.cc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cashforum\\.cc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-top3.fun\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-top3\\.fun)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-top3.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-top3\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-top3.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-top3\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-top3.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-top3\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-top3.space\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-top3\\.space)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-top3.website\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-top3\\.website)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-v.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-v\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-vulkane.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-vulkane\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-x-now.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-x\\-now\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casino-x.host\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casino\\-x\\.host)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casinosbewertung.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casinosbewertung\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam casinox-jp.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(casinox\\-jp\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam castingbank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(castingbank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam catalogs-parts.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(catalogs\\-parts\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam catherinemill.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(catherinemill\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam catterybengal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(catterybengal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cattyhealth.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cattyhealth\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cauxmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cauxmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cayado.snn.gr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cayado\\.snn\\.gr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cazino-v.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cazino\\-v\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cazino-v.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cazino\\-v\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cbcseward.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cbcseward\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cbox.ws\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cbox\\.ws)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ccfullzshop.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ccfullzshop\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam celestepage.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(celestepage\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam celldog.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(celldog\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cenokos.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cenokos\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cenoval.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cenoval\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam centre-indigo.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(centre\\-indigo\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam centrumcoachingu.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(centrumcoachingu\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cercacamion.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cercacamion\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam certifywebsite.win\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(certifywebsite\\.win)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cezartabac.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cezartabac\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cfsrating.sonicwall.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cfsrating\\.sonicwall\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cgi2.nintendo.co.jp\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cgi2\\.nintendo\\.co\\.jp)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chainii.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chainii\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam channel-badge-betray-volcanic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(channel\\-badge\\-betray\\-volcanic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chastnoeporno.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chastnoeporno\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chatmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chatmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chatrazvrat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chatrazvrat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chatroulette.life\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chatroulette\\.life)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chcu.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chcu\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cheap-trusted-backlinks.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cheap\\-trusted\\-backlinks\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cheapkeys.ovh\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cheapkeys\\.ovh)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cheappills24h.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cheappills24h\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chee-by.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chee\\-by\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chelyabinsk.dienai.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chelyabinsk\\.dienai\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chelyabinsk.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chelyabinsk\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cherrypointplace.ca\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cherrypointplace\\.ca)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cherubinimobili.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cherubinimobili\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chimiver.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chimiver\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chinese-amezon.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chinese\\-amezon\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chip35.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chip35\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chipmp3.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chipmp3\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chizhik-2.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chizhik\\-2\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam chomexun.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(chomexun\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam choosecuisine.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(choosecuisine\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ci.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ci\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ciarustde.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ciarustde\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cigarpass.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cigarpass\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cilolamall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cilolamall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cinemaenergy-hd.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cinemaenergy\\-hd\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ciproandtizanidine.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ciproandtizanidine\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam citizenclsdriveri7.pen.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(citizenclsdriveri7\\.pen\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cityadspix.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cityadspix\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam citybur.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(citybur\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cityreys.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cityreys\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam civilwartheater.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(civilwartheater\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam clarithromycin500mg.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(clarithromycin500mg\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam clash-clans.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(clash\\-clans\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam classicakuhni.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(classicakuhni\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cleandom.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cleandom\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cleaningservices.kiev.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cleaningservices\\.kiev\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam clicksor.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(clicksor\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam climate.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(climate\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam clmforexeu.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(clmforexeu\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam clothing-deal.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(clothing\\-deal\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cloudsendchef.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cloudsendchef\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam club-lukojl.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(club\\-lukojl\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam club-musics.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(club\\-musics\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam club-samodelkin.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(club\\-samodelkin\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cmd.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cmd\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cmrrsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cmrrsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cmseshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cmseshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cobaltpro.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cobaltpro\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cocyq.inwtrade.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cocyq\\.inwtrade\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam coderstate.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(coderstate\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam codq.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(codq\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam codysbbq.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(codysbbq\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam coeus-solutions.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(coeus\\-solutions\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam coffeemashiny.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(coffeemashiny\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam coinswitch.cash\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(coinswitch\\.cash)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam coldfilm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(coldfilm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam coleso.md\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(coleso\\.md)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam collectinviolity.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(collectinviolity\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam collegeessay19.blogspot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(collegeessay19\\.blogspot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam columb.net.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(columb\\.net\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cometorussia.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cometorussia\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam comissionka.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(comissionka\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam commentag.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(commentag\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam commerage.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(commerage\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam comp-pomosch.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(comp\\-pomosch\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-alex.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-alex\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-alex.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-alex\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-alexa.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-alexa\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-alexa.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-alexa\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-andrew.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-andrew\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-andrew.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-andrew\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-barak.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-barak\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-barak.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-barak\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-brian.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-brian\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-brian.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-brian\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-checker-7.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-checker\\-7\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-don.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-don\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-don.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-don\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-donald.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-donald\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-elena.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-elena\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-elena.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-elena\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-fred.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-fred\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-fred.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-fred\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-george.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-george\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-george.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-george\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-irvin.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-irvin\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-irvin.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-irvin\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-ivan.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-ivan\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-ivan.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-ivan\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-jack.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-jack\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-jane.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-jane\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-jess.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-jess\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-jessica.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-jessica\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-john.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-john\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-josh.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-josh\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-julia.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-julia\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-julianna.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-julianna\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-margo.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-margo\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-mark.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-mark\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-mary.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-mary\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-nelson.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-nelson\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-olga.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-olga\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-viktor.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-viktor\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-walt.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-walt\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-walter.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-walter\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam compliance-willy.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(compliance\\-willy\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam computer-remont.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(computer\\-remont\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam comuneshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(comuneshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam conciergegroup.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(conciergegroup\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam concretepol.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(concretepol\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam connectikastudio.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(connectikastudio\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam constanceonline.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(constanceonline\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam constantaservice.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(constantaservice\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam construmac.com.mx\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(construmac\\.com\\.mx)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam contextualyield.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(contextualyield\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-aa.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-aa\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-bb.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-bb\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-cc.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-cc\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-dd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-dd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-ee.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-ee\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-ff.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-ff\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-gg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-gg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-hh.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-hh\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-ii.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-ii\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-jj.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-jj\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-kk.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-kk\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-ll.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-ll\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-mm.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-mm\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-nn.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-nn\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-oo.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-oo\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-pp.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-pp\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-qq.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-qq\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-rr.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-rr\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-ss.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-ss\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-tt.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-tt\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-uu.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-uu\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-vv.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-vv\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-ww.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-ww\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-xx.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-xx\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-yy.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-yy\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookie-law-enforcement-zz.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookie\\-law\\-enforcement\\-zz\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookielawblog.wordpress.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookielawblog\\.wordpress\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cookingmeat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cookingmeat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cool-mining.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cool\\-mining\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cool-wedding.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cool\\-wedding\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam coop-gamers.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(coop\\-gamers\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam copblock.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(copblock\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam copyrightclaims.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(copyrightclaims\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam copyrightinstitute.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(copyrightinstitute\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam coral-info.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(coral\\-info\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cosmediqueresults.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cosmediqueresults\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam countravel.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(countravel\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam covadhosting.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(covadhosting\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam covblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(covblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam coverage-my.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(coverage\\-my\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam covetnica.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(covetnica\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam covid-schutzmasken.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(covid\\-schutzmasken\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cowblog.fr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cowblog\\.fr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cp24.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cp24\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cpnbshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cpnbshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cranly.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cranly\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crazy-mining.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crazy\\-mining\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crd.clan.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crd\\.clan\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam creams.makeforum.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(creams\\.makeforum\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam credit-card-tinkoff.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(credit\\-card\\-tinkoff\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam credit-cards-online24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(credit\\-cards\\-online24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam credit.co.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(credit\\.co\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam creditmoney.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(creditmoney\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crest-poloski.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crest\\-poloski\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crest3d.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crest3d\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crirussian.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crirussian\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cruiseraf.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cruiseraf\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crypto-bear.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crypto\\-bear\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crypto-bears.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crypto\\-bears\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crypto-mining.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crypto\\-mining\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crypto-wallets.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crypto\\-wallets\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crypto1x1.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crypto1x1\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam crystalslot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(crystalslot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cubook.supernew.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cubook\\.supernew\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam curenaturalicancro.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(curenaturalicancro\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam curenaturalicancro.nl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(curenaturalicancro\\.nl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam customsua.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(customsua\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cutalltheshit.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cutalltheshit\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cvety24.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cvety24\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cvta.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cvta\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cxpromote.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cxpromote\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cyber-monday.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cyber\\-monday\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cyclobenzaprinevstizanidine.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cyclobenzaprinevstizanidine\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cymbaltaandtizanidine.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cymbaltaandtizanidine\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam cyprusbuyproperties.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(cyprusbuyproperties\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam czcedu.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(czcedu\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dacha-svoimi-rukami.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dacha\\-svoimi\\-rukami\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dailyblog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dailyblog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dailyrank.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dailyrank\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dailyseo.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dailyseo\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dailystorm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dailystorm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dailystrength.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dailystrength\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dailytraffic.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dailytraffic\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dame-ns.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dame\\-ns\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam damedingel.ya.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(damedingel\\.ya\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam damianis.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(damianis\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam danashop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(danashop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam danceuniverse.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(danceuniverse\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam danhale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(danhale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dantk.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dantk\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam daptravel.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(daptravel\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam darcysassoon.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(darcysassoon\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam darkbooks.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(darkbooks\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam darknet-hydra-onion.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(darknet\\-hydra\\-onion\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam darknet.sb\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(darknet\\.sb)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam darknetsitesguide.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(darknetsitesguide\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam darleneblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(darleneblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam darodar.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(darodar\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam datsun-do.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(datsun\\-do\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dav.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dav\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam davilaonline.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(davilaonline\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dawlenie.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dawlenie\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dbmkfhqk.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dbmkfhqk\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dbutton.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dbutton\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dcdcapital.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dcdcapital\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ddlmega.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ddlmega\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ddpills.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ddpills\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam de.zapmeta.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(de\\.zapmeta\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dear-diary.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dear\\-diary\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam deart-13.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(deart\\-13\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam deda-moroza-zakaz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(deda\\-moroza\\-zakaz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam deirdre.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(deirdre\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dekorkeramik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dekorkeramik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam delayreferat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(delayreferat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam delfin-aqua.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(delfin\\-aqua\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam delo.fund\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(delo\\.fund)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam deluxewatch.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(deluxewatch\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam demenageur.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(demenageur\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam den-noch24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(den\\-noch24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dengi-v-kredit.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dengi\\-v\\-kredit\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam denisecarey.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(denisecarey\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam deniseconnie.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(deniseconnie\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam deniven.1bb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(deniven\\.1bb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dent-home.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dent\\-home\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dentuled.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dentuled\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam depositfiles-porn.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(depositfiles\\-porn\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam depositfiles-porn.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(depositfiles\\-porn\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dermatovenerologiya.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dermatovenerologiya\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam deryie.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(deryie\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam descargar-musica-gratis.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(descargar\\-musica\\-gratis\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam descargar-musicas-gratis.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(descargar\\-musicas\\-gratis\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam design-lands.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(design\\-lands\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam designdevise.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(designdevise\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam detailedvideos.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(detailedvideos\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam detalizaciya-tut.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(detalizaciya\\-tut\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam detective01.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(detective01\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam detki-opt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(detki\\-opt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam detoolzon.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(detoolzon\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam detskie-konstruktory.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(detskie\\-konstruktory\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam detskie-zabavi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(detskie\\-zabavi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam deutsche-poesie.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(deutsche\\-poesie\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dev-seo.blog\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dev\\-seo\\.blog)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam devochki-video.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(devochki\\-video\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dezeypmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dezeypmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dgdsoutlet.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dgdsoutlet\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam diarioaconcagua.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(diarioaconcagua\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam diatelier.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(diatelier\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dicru.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dicru\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam diebesten.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(diebesten\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dienai.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dienai\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dienmaytot.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dienmaytot\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam diesel-parts28.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(diesel\\-parts28\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam digest-project.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(digest\\-project\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam digilander.libero.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(digilander\\.libero\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam digital-video-processing.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(digital\\-video\\-processing\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam digitalfaq.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(digitalfaq\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dimkino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dimkino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dinkolove.ya.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dinkolove\\.ya\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam diplom-nk.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(diplom\\-nk\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam diplomas-ru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(diplomas\\-ru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dipstar.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dipstar\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam directrev.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(directrev\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam discounttaxi.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(discounttaxi\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam discover-prior-full-stack-services.party\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(discover\\-prior\\-full\\-stack\\-services\\.party)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam discover-prior-ppc-service.party\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(discover\\-prior\\-ppc\\-service\\.party)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam discover-top-seo-service.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(discover\\-top\\-seo\\-service\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam distonija.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(distonija\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam divan-dekor.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(divan\\-dekor\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dividendo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dividendo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam diy-handmade-ideas.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(diy\\-handmade\\-ideas\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam djekxa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(djekxa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam djonwatch.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(djonwatch\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam djstools.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(djstools\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dktr.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dktr\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dldsshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dldsshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dlya-android.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dlya\\-android\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dms-sw.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dms\\-sw\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dna-sklad.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dna\\-sklad\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dnepr-avtospar.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dnepr\\-avtospar\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dneprsvet.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dneprsvet\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dnmetall.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dnmetall\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam docs4all.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(docs4all\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam docsarchive.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(docsarchive\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam docsportal.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(docsportal\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam docstoc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(docstoc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doctmalls.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doctmalls\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doctornadezhda.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doctornadezhda\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam documentbase.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(documentbase\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam documentserver.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(documentserver\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam documentsite.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(documentsite\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dodge-forum.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dodge\\-forum\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doeco.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doeco\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doggyhealthy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doggyhealthy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dogovorpodryada.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dogovorpodryada\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dogshowsonice.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dogshowsonice\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dogsrun.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dogsrun\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dojki-devki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dojki\\-devki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dojki-hd.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dojki\\-hd\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doktoronline.no\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doktoronline\\.no)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dokumentalkino.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dokumentalkino\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dom-international.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dom\\-international\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domain-tracker.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domain\\-tracker\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domashneeruporno.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domashneeruporno\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domashniy-hotel.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domashniy\\-hotel\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domashniy-recepti.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domashniy\\-recepti\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dombestofferhdd.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dombestofferhdd\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domcran.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domcran\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domik-derevne.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domik\\-derevne\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dominateforex.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dominateforex\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domination.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domination\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dominterior.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dominterior\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dommdom.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dommdom\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domovozik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domovozik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domoysshop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domoysshop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dompechey.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dompechey\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam domsadiogorod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(domsadiogorod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam donvito.unas.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(donvito\\.unas\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doreenblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doreenblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doska-vsem.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doska\\-vsem\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dostavka-v-krym.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dostavka\\-v\\-krym\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dostavka-v-ukrainu.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dostavka\\-v\\-ukrainu\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dosug-lux.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dosug\\-lux\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dosugrostov.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dosugrostov\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam download-of-the-warez.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(download\\-of\\-the\\-warez\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam downloadkakaotalk.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(downloadkakaotalk\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam downloadmefiranaratb1972.xpg.com.br\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(downloadmefiranaratb1972\\.xpg\\.com\\.br)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doxyporno.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doxyporno\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doxysexy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doxysexy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam doyouknowtheword-flummox.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(doyouknowtheword\\-flummox\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dprkboards.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dprkboards\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam draniki.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(draniki\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dreamland-bg.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dreamland\\-bg\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dreams-works.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dreams\\-works\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam drev.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(drev\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam driving.kiev.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(driving\\.kiev\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam drugs-no-rx.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(drugs\\-no\\-rx\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam drugspowerstore.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(drugspowerstore\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam drugstoreforyou.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(drugstoreforyou\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam drupa.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(drupa\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam druzhbany.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(druzhbany\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam druzhininevgeniy63.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(druzhininevgeniy63\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dspautomations.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dspautomations\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dstroy.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dstroy\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam duitbux.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(duitbux\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dumpsccshop.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dumpsccshop\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dvd-famille.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dvd\\-famille\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dvk-stroi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dvk\\-stroi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dvr.biz.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dvr\\.biz\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam dzinerstudio.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(dzinerstudio\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam e-avon.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(e\\-avon\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam e-buyeasy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(e\\-buyeasy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam e-collantes.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(e\\-collantes\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam e-commerce-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(e\\-commerce\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam e-commerce-seo1.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(e\\-commerce\\-seo1\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam e-kwiaciarz.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(e\\-kwiaciarz\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam e-stroymart.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(e\\-stroymart\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam e2click.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(e2click\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eandsgallery.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eandsgallery\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eaptekaplus.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eaptekaplus\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam earn-from-articles.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(earn\\-from\\-articles\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam earnian-money.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(earnian\\-money\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam earnity-money.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(earnity\\-money\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam easycommerce.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(easycommerce\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam easync.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(easync\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam easytuningshop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(easytuningshop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eavuinsr.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eavuinsr\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ecblog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ecblog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ecommerce-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ecommerce\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ecommerce-seo.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ecommerce\\-seo\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ecomp3.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ecomp3\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam econom.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(econom\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ecookna.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ecookna\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam edakgfvwql.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(edakgfvwql\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam edelstahlschornstein-123.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(edelstahlschornstein\\-123\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam editmedios.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(editmedios\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam edmed-sonline.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(edmed\\-sonline\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ednetstore.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ednetstore\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam edshopping.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(edshopping\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eduardoluis.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eduardoluis\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam education-cz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(education\\-cz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam educhess.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(educhess\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam edudocs.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(edudocs\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eduinfosite.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eduinfosite\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eduserver.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eduserver\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eecz.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eecz\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eets.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eets\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ege-essay.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ege\\-essay\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ege-krasnoyarsk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ege\\-krasnoyarsk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam egovaleo.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(egovaleo\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam egvar.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(egvar\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ek-invest.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ek\\-invest\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ekatalog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ekatalog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ekaterinburg.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ekaterinburg\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ekbspravka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ekbspravka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eko-gazon.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eko\\-gazon\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ekobata.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ekobata\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ekoproekt-kr.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ekoproekt\\-kr\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ekspertmed.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ekspertmed\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ekto.ee\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ekto\\.ee)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam el-nation.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(el\\-nation\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elainasblog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elainasblog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eldoradorent.az\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eldoradorent\\.az)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam election.interferencer.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(election\\.interferencer\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam electric-blue-industries.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(electric\\-blue\\-industries\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam electricwheelchairsarea.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(electricwheelchairsarea\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam electro-prom.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(electro\\-prom\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elegante-vitrage.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elegante\\-vitrage\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrikovich.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrikovich\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrischezi.canalblog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrischezi\\.canalblog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrischeziga.livejournal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrischeziga\\.livejournal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrischezigarette1.blog.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrischezigarette1\\.blog\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrischezigarette1.onsugar.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrischezigarette1\\.onsugar\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrischezigarette2.devhub.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrischezigarette2\\.devhub\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrischezigarette2.onsugar.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrischezigarette2\\.onsugar\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrischezigarettekaufen2.cowblog.fr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrischezigarettekaufen2\\.cowblog\\.fr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrischezigaretten1.blogse.nl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrischezigaretten1\\.blogse\\.nl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrischezigaretten2.beeplog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrischezigaretten2\\.beeplog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektronischezi.livejournal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektronischezi\\.livejournal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektronischezigarette2.mex.tl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektronischezigarette2\\.mex\\.tl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektronischezigarettekaufen1.beeplog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektronischezigarettekaufen1\\.beeplog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektronischezigarettekaufen1.myblog.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektronischezigarettekaufen1\\.myblog\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektronischezigarettekaufen2.tumblr.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektronischezigarettekaufen2\\.tumblr\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrozigarette1.dreamwidth.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrozigarette1\\.dreamwidth\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrozigarette2.webs.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrozigarette2\\.webs\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrozigarette2.wordpressy.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrozigarette2\\.wordpressy\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrozigarettekaufen1.devhub.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrozigarettekaufen1\\.devhub\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrozigarettekaufen2.blogse.nl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrozigarettekaufen2\\.blogse\\.nl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrozigaretten1.postbit.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrozigaretten1\\.postbit\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrozigaretten1.tumblr.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrozigaretten1\\.tumblr\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrozigaretten1.webs.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrozigaretten1\\.webs\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elektrozigaretten2.yn.lt\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elektrozigaretten2\\.yn\\.lt)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elementspluss.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elementspluss\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elenatkachenko.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elenatkachenko\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elentur.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elentur\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elidelcream.weebly.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elidelcream\\.weebly\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elitesportsadvisor.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elitesportsadvisor\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elizabethbruno.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elizabethbruno\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elkacentr.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elkacentr\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ellemarket.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ellemarket\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elmifarhangi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elmifarhangi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eloconcream.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eloconcream\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eloxal.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eloxal\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam elvel.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(elvel\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam embedle.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(embedle\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam emctestlab.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(emctestlab\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam emerson-rus.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(emerson\\-rus\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam emicef.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(emicef\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam empire-market.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(empire\\-market\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam empire-market.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(empire\\-market\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam empiremarket-link.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(empiremarket\\-link\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam empiremarketlink24.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(empiremarketlink24\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam empirestuff.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(empirestuff\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam empis.magix.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(empis\\.magix\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam encmbtia.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(encmbtia\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam energomash.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(energomash\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam energy-ua.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(energy\\-ua\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam energydiet-info.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(energydiet\\-info\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam energydiet24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(energydiet24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam energysexy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(energysexy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam enginebay.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(enginebay\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam englishdictionaryfree.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(englishdictionaryfree\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam englishtopic.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(englishtopic\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam enter-unicredit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(enter\\-unicredit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam entgetadsincome.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(entgetadsincome\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam envistore.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(envistore\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eonpal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eonpal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam epcpolo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(epcpolo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam epicdiving.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(epicdiving\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eraglass.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eraglass\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam erank.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(erank\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eredijovon.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eredijovon\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ereko.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ereko\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam erias.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(erias\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eric-artem.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eric\\-artem\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ericshome.store\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ericshome\\.store)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam erinhome.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(erinhome\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ero-video-chat.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ero\\-video\\-chat\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam erofus.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(erofus\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eropho.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eropho\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eropho.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eropho\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam erot.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(erot\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam erotag.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(erotag\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eroticheskij-video-chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eroticheskij\\-video\\-chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam erotikstories.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(erotikstories\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam es-pfrf.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(es\\-pfrf\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam es5.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(es5\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam escort-russian.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(escort\\-russian\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam escortplius.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(escortplius\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eshop.md\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eshop\\.md)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eskei83.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eskei83\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam esnm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(esnm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam esoterikforum.at\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(esoterikforum\\.at)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam essaytags.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(essaytags\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam estdj.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(estdj\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam este-line.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(este\\-line\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam etairikavideo.gr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(etairikavideo\\.gr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam etehnika.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(etehnika\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam etotupo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(etotupo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ets-2-mod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ets\\-2\\-mod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam etsfshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(etsfshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eu-cookie-law-enforcement-4.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eu\\-cookie\\-law\\-enforcement\\-4\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eu-cookie-law-enforcement-5.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eu\\-cookie\\-law\\-enforcement\\-5\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eu-cookie-law-enforcement-6.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eu\\-cookie\\-law\\-enforcement\\-6\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eu-cookie-law-enforcement-7.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eu\\-cookie\\-law\\-enforcement\\-7\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eu-cookie-law-enforcement1.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eu\\-cookie\\-law\\-enforcement1\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eu-cookie-law-enforcement2.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eu\\-cookie\\-law\\-enforcement2\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eu-cookie-law.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eu\\-cookie\\-law\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eu-cookie-law.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eu\\-cookie\\-law\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eurocredit.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eurocredit\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam euromasterclass.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(euromasterclass\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam euronis-free.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(euronis\\-free\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam europages.com.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(europages\\.com\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam europeanwatches.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(europeanwatches\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eurosamodelki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eurosamodelki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam euroskat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(euroskat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam evaashop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(evaashop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam event-tracking.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(event\\-tracking\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eventiyahall.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eventiyahall\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam evreuxshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(evreuxshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam exchangeit.gq\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(exchangeit\\.gq)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam exchanges-bet.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(exchanges\\-bet\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam exclusive-profit.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(exclusive\\-profit\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam exdocsfiles.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(exdocsfiles\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam execedmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(execedmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam executehosting.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(executehosting\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam exotic-video-chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(exotic\\-video\\-chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam expdom.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(expdom\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam expediacustomerservicenumber.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(expediacustomerservicenumber\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam expert-find.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(expert\\-find\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam expertnaya-ocenka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(expertnaya\\-ocenka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam explore-prior-web-service.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(explore\\-prior\\-web\\-service\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam express-vyvoz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(express\\-vyvoz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam expresstoplivo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(expresstoplivo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam extener.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(extener\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam extener.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(extener\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam extrabot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(extrabot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam extremez.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(extremez\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eyes-on-you.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eyes\\-on\\-you\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam eyessurgery.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(eyessurgery\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ez8motelseaworldsandiego.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ez8motelseaworldsandiego\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettekaufen.myblog.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettekaufen\\.myblog\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettekaufen1.hpage.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettekaufen1\\.hpage\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettekaufen2.blox.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettekaufen2\\.blox\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettekaufen2.mpbloggar.se\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettekaufen2\\.mpbloggar\\.se)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettekaufen2.yolasite.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettekaufen2\\.yolasite\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettenkaufen1.deviantart.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettenkaufen1\\.deviantart\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettenkaufen1.pagina.gr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettenkaufen1\\.pagina\\.gr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettenkaufen2.dreamwidth.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettenkaufen2\\.dreamwidth\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettenshop1.yolasite.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettenshop1\\.yolasite\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettenshop2.myblog.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettenshop2\\.myblog\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigarettenshop2.postbit.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigarettenshop2\\.postbit\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigaretteshop.webs.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigaretteshop\\.webs\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigaretteshop2.mywapblog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigaretteshop2\\.mywapblog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezigaretteshop2.vefblog.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezigaretteshop2\\.vefblog\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezofest.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezofest\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ezrvrentals.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ezrvrentals\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam f-loaded.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(f\\-loaded\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam f-online.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(f\\-online\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam f00kclan.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(f00kclan\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam f012.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(f012\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam f07.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(f07\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam f0815.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(f0815\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam f1nder.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(f1nder\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam facebook-mobile.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(facebook\\-mobile\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fainaidea.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fainaidea\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam faithe.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(faithe\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam falco3d.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(falco3d\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam falcoware.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(falcoware\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam family1st.ca\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(family1st\\.ca)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam familyholiday.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(familyholiday\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam familyphysician.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(familyphysician\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fanoboi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fanoboi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fartunabest.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fartunabest\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fashion-mk.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fashion\\-mk\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fashiong.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fashiong\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fashionindeed.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fashionindeed\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fast-wordpress-start.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fast\\-wordpress\\-start\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fastgg.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fastgg\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fatrizscae.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fatrizscae\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam favorcosmetics.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(favorcosmetics\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam favoritemoney.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(favoritemoney\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam favoritki-msk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(favoritki\\-msk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam favornews.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(favornews\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fazika.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fazika\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fba-mexico.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fba\\-mexico\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fbdownloader.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fbdownloader\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fbfreegifts.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fbfreegifts\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fc-007.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fc\\-007\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fealq.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fealq\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam feargames.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(feargames\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam feedback.sharemyfile.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(feedback\\.sharemyfile\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam feedouble.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(feedouble\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam feedouble.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(feedouble\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam feel-planet.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(feel\\-planet\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam feeriaclub.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(feeriaclub\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam feiacmr.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(feiacmr\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam feminist.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(feminist\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam femmesdenudees.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(femmesdenudees\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fenoyl.batcave.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fenoyl\\.batcave\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ferieboligkbh.dk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ferieboligkbh\\.dk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fermersovet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fermersovet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fetishinside.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fetishinside\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fialka.tomsk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fialka\\.tomsk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fidalsa.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fidalsa\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fierrohack.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fierrohack\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam figensahin.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(figensahin\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam filesclub.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(filesclub\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam filesdatabase.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(filesdatabase\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam filesvine.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(filesvine\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam film-one.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(film\\-one\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam filmetricsasia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(filmetricsasia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam filmgo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(filmgo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam filmidivx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(filmidivx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam films2018.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(films2018\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam filter-ot-zheleza.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(filter\\-ot\\-zheleza\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam financial-simulation.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(financial\\-simulation\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam finansov.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(finansov\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam findacheaplawyers.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(findacheaplawyers\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam finder.cool\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(finder\\.cool)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam findercarphotos.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(findercarphotos\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fineblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fineblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam finstroy.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(finstroy\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam finteks.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(finteks\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam firma-legion.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(firma\\-legion\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam firmgeo.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(firmgeo\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam firstblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(firstblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fit-discount.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fit\\-discount\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fitness-video.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fitness\\-video\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fitodar.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fitodar\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fiuagts.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fiuagts\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fiuxy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fiuxy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fiverr.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fiverr\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fix-website-errors.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fix\\-website\\-errors\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fizika.tv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fizika\\.tv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flash4fun.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flash4fun\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flavors.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flavors\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flex4launch.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flex4launch\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flexderek.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flexderek\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam floating-share-buttons.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(floating\\-share\\-buttons\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flooringinstallation-edmonton.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flooringinstallation\\-edmonton\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flowersbazar.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flowersbazar\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flowertherapy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flowertherapy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flowwwers.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flowwwers\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flprog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flprog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flyblog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flyblog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam flytourisme.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(flytourisme\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fm-upgrade.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fm\\-upgrade\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fmgrupe.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fmgrupe\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam foojo.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(foojo\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam for-marketersy.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(for\\-marketersy\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam for-your.website\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(for\\-your\\.website)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forensicpsychiatry.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forensicpsychiatry\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forex-indextop20.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forex\\-indextop20\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forex-procto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forex\\-procto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forex.osobye.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forex\\.osobye\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forex21.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forex21\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forexgb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forexgb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forexunion.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forexunion\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forminecrafters.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forminecrafters\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forms-mtm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forms\\-mtm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forpostlock.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forpostlock\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forsex.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forsex\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fortwosmartcar.pw\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fortwosmartcar\\.pw)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forum-engineering.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forum\\-engineering\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forum.poker4life.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forum\\.poker4life\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forum.tvmir.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forum\\.tvmir\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forum20.smailik.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forum20\\.smailik\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forum69.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forum69\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam forums.toucharcade.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(forums\\.toucharcade\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fotoxxxru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fotoxxxru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam foxinsocks.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(foxinsocks\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam foxjuegos.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(foxjuegos\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam foxtechfpv.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(foxtechfpv\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam foxweber.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(foxweber\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fpclub.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fpclub\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fr.netlog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fr\\.netlog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam francaise-poesie.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(francaise\\-poesie\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam frankofficial.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(frankofficial\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam frauplus.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(frauplus\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-fb-traffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-fb\\-traffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-fbook-traffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-fbook\\-traffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-floating-buttons.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-floating\\-buttons\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-games-download.falcoware.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-games\\-download\\.falcoware\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons-aaa.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\-aaa\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons-bbb.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\-bbb\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons-ccc.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\-ccc\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons-ddd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\-ddd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons-eee.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\-eee\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons-fff.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\-fff\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-share-buttons.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-share\\-buttons\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons-aaa.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\-aaa\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons-bbb.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\-bbb\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons-ccc.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\-ccc\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons-ddd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\-ddd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons-eee.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\-eee\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons-fff.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\-fff\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons-hhh.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\-hhh\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons-iii.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\-iii\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons1.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons1\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons2.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons2\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons3.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons3\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons4.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons4\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons5.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons5\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons6.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons6\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-social-buttons7.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-social\\-buttons7\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-traffic.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-traffic\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-video-chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-video\\-chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-video-tool.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-video\\-tool\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam free-website-traffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(free\\-website\\-traffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam freeasecret.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(freeasecret\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam freenode.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(freenode\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam freeseedsonline.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(freeseedsonline\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam freetangodownload.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(freetangodownload\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam freewebs.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(freewebs\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam freewhatsappload.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(freewhatsappload\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam freewlan.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(freewlan\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam freshberry.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(freshberry\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam freshnails.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(freshnails\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam front.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(front\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam front.to\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(front\\.to)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fsalas.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fsalas\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fsin-pokypka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fsin\\-pokypka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ftns.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ftns\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fuck-paid-share-buttons.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fuck\\-paid\\-share\\-buttons\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fuel-gas.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fuel\\-gas\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fullzdumps.cc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fullzdumps\\.cc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fungirlsgames.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fungirlsgames\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam funnypica.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(funnypica\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam furniture-ukraine.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(furniture\\-ukraine\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam furniturehomewares.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(furniturehomewares\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam futbolkisales.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(futbolkisales\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fvetgoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fvetgoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam fxtips.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(fxtips\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam g7m.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(g7m\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gabeshop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gabeshop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gabysuniqueboutique.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gabysuniqueboutique\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gael-s.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gael\\-s\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gagrasector.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gagrasector\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam galaxy-family.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(galaxy\\-family\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam galaxyflowers.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(galaxyflowers\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam galblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(galblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam galeon.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(galeon\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gamblingpp.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gamblingpp\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam game-mmorpg.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(game\\-mmorpg\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam game-top.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(game\\-top\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam game300.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(game300\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam games.kolossale.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(games\\.kolossale\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gammatraffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gammatraffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gandikapper.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gandikapper\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gaokr.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gaokr\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gap-search.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gap\\-search\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam garantprava.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(garantprava\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gardene.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gardene\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gasvleningrade.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gasvleningrade\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gatwick.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gatwick\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gays-video-chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gays\\-video\\-chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gaz-voshod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gaz\\-voshod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gazel-72.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gazel\\-72\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gazobeton-p.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gazobeton\\-p\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gazoblok.net.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gazoblok\\.net\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gbh-invest.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gbh\\-invest\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gcmx.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gcmx\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gcup.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gcup\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gdcentre.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gdcentre\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gearcraft.us\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gearcraft\\.us)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gearsadspromo.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gearsadspromo\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gelezki.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gelezki\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam geliyballon.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(geliyballon\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gelstate.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gelstate\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam generalporn.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(generalporn\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam genericlowlatencyasiodriverhq.aircus.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(genericlowlatencyasiodriverhq\\.aircus\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam geniusfood.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(geniusfood\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gentamicineyedrops.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gentamicineyedrops\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam georgeblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(georgeblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gepatit-info.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gepatit\\-info\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam germes-trans.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(germes\\-trans\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-best-copywriting-service.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-best\\-copywriting\\-service\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-clickir.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-clickir\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-clickize.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-clickize\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-free-social-traffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-free\\-social\\-traffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-free-traffic-now.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-free\\-traffic\\-now\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-more-freeen-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-more\\-freeen\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-more-freeer-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-more\\-freeer\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-more-freeish-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-more\\-freeish\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-more-freeize-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-more\\-freeize\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-more-freele-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-more\\-freele\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-morebit-free-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-morebit\\-free\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-prime-seo-services.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-prime\\-seo\\-services\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-seo-help.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-seo\\-help\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam get-your-social-buttons.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(get\\-your\\-social\\-buttons\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getaadsincome.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getaadsincome\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getadsincomeian.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getadsincomeian\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getadsincomely.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getadsincomely\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getadsincomeof.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getadsincomeof\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getbottraffic4free.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getbottraffic4free\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getbottraffic4free.host\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getbottraffic4free\\.host)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getbottraffic4free.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getbottraffic4free\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getbytadsincome.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getbytadsincome\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getfy-click.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getfy\\-click\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getism-more-free-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getism\\-more\\-free\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getity-more-free-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getity\\-more\\-free\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getityadsincome.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getityadsincome\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getive-more-free-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getive\\-more\\-free\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getlamborghini.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getlamborghini\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getoutofdebtfree.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getoutofdebtfree\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getprismatic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getprismatic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getpy-click.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getpy\\-click\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getpy-more-free-visitors.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getpy\\-more\\-free\\-visitors\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getrichquick.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getrichquick\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getrichquickly.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getrichquickly\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam getyourprofit.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(getyourprofit\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gevciamst.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gevciamst\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gezlev.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gezlev\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gfaq.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gfaq\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ghazel.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ghazel\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ghernnqr.skyrock.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ghernnqr\\.skyrock\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gheus.altervista.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gheus\\.altervista\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ghostvisitor.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ghostvisitor\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gidonline.one\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gidonline\\.one)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gidro-partner.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gidro\\-partner\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam giftbig.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(giftbig\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam girlporn.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(girlporn\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam girls-ufa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(girls\\-ufa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam girlsatgames.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(girlsatgames\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gk-atlant.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gk\\-atlant\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gk-casino.fun\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gk\\-casino\\.fun)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gk-casino.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gk\\-casino\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gk-casino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gk\\-casino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gk-casino.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gk\\-casino\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gk-casino.space\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gk\\-casino\\.space)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gk-casino.website\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gk\\-casino\\.website)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gkvector.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gkvector\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam glall.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(glall\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam glass-msk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(glass\\-msk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam glavprofit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(glavprofit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam glcomputers.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(glcomputers\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam glktfw.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(glktfw\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam global-smm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(global\\-smm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam globalscam.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(globalscam\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam globatur.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(globatur\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam globetrotting-culture.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(globetrotting\\-culture\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam glogow.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(glogow\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam glopages.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(glopages\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam go2album.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(go2album\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gobongo.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gobongo\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goforexvps.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goforexvps\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gogps.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gogps\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gojiberriess.apishops.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gojiberriess\\.apishops\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gok-kasten.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gok\\-kasten\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goldandcard.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goldandcard\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam golden-catalog.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(golden\\-catalog\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam golden-praga.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(golden\\-praga\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goldenggames.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goldenggames\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goldvaultmetals.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goldvaultmetals\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam golmau.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(golmau\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam golyedevushki.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(golyedevushki\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gonextmedia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gonextmedia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam good-potolok.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(good\\-potolok\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goodbyecellulite.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goodbyecellulite\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goodcoffeepremium.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goodcoffeepremium\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goodhumor24.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goodhumor24\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goodnightjournal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goodnightjournal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goodprotein.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goodprotein\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam google-liar.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(google\\-liar\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam googlefeud.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(googlefeud\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam googlemare.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(googlemare\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam googlsucks.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(googlsucks\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gorabagrata.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gorabagrata\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gorgaz.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gorgaz\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goroda-vsego-mira.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goroda\\-vsego\\-mira\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gorodservis.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gorodservis\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gosreg.amchs.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gosreg\\.amchs\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gototal.co.nz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gototal\\.co\\.nz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gourcy.altervista.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gourcy\\.altervista\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam goyua.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(goyua\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gq-catalog.gq\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gq\\-catalog\\.gq)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam graceonline.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(graceonline\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam grafaman.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(grafaman\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam grand-chlen.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(grand\\-chlen\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam graphid.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(graphid\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gratuitbaise.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gratuitbaise\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam greatblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(greatblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam greatgrace.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(greatgrace\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam greentechsy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(greentechsy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam grizzlysgrill.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(grizzlysgrill\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam groshi-kredut.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(groshi\\-kredut\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam groupmoney.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(groupmoney\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam growmyfunds.ca\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(growmyfunds\\.ca)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam growshop.es\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(growshop\\.es)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam growth-hackingan.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(growth\\-hackingan\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam growth-hackingead.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(growth\\-hackingead\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam growth-hackingeads.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(growth\\-hackingeads\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam growth-hackingor.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(growth\\-hackingor\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam growth-hackingy.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(growth\\-hackingy\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam grupografico-pilar.com.ar\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(grupografico\\-pilar\\.com\\.ar)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gruzchiki24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gruzchiki24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gsbs.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gsbs\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gsmlab.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gsmlab\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gsmtlf.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gsmtlf\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gta-club.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gta\\-club\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gta-top.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gta\\-top\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gttpsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gttpsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam guardlink.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(guardlink\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam guardlink.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(guardlink\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam guge.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(guge\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam guidetopetersburg.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(guidetopetersburg\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gungamesz.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gungamesz\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam guruofcasino.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(guruofcasino\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gwhwpxbw.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gwhwpxbw\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam gxcb.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(gxcb\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam h2monline.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(h2monline\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hacktougroup.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hacktougroup\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hagirkblog.space\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hagirkblog\\.space)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hahashka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hahashka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam haikuware.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(haikuware\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam halat.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(halat\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam halefa.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(halefa\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hamyshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hamyshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam handicapvansarea.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(handicapvansarea\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam handicapvantoday.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(handicapvantoday\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam handsandlegs.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(handsandlegs\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hanink.biz.ly\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hanink\\.biz\\.ly)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hankspring.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hankspring\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam happysong.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(happysong\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hard-porn.mobi\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hard\\-porn\\.mobi)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hardcore.anzwers.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hardcore\\.anzwers\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hardosale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hardosale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam harpro.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(harpro\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam havepussy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(havepussy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hawaiisurf.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hawaiisurf\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hazardky.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hazardky\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hd1080film.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hd1080film\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hd720kino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hd720kino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hdfreeporno.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hdfreeporno\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hdhc.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hdhc\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hdmoviecamera.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hdmoviecamera\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hdmoviecams.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hdmoviecams\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hdmoviecams.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hdmoviecams\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hdsmartvideoreg.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hdsmartvideoreg\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam headpharmacy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(headpharmacy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam healbio.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(healbio\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam healgastro.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(healgastro\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam healing-dysplasia.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(healing\\-dysplasia\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam healmytrauma.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(healmytrauma\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam healthhacks.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(healthhacks\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam heeha.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(heeha\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hem.passagen.se\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hem\\.passagen\\.se)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hentai-manga.porn\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hentai\\-manga\\.porn)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam heroero.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(heroero\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hexometer.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hexometer\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hifidesign.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hifidesign\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hilaryblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hilaryblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hill-accent-withdraw-sentiment.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hill\\-accent\\-withdraw\\-sentiment\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam himandmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(himandmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hit-kino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hit\\-kino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hitree.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hitree\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hitsbox.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hitsbox\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hiwibyh.bugs3.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hiwibyh\\.bugs3\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hiwpro.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hiwpro\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hkdiiohi.skyrock.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hkdiiohi\\.skyrock\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hkjrsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hkjrsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hmmm.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hmmm\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hmywwogw.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hmywwogw\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hobild.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hobild\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hol.es\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hol\\.es)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam holiday-shop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(holiday\\-shop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam holidaypics.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(holidaypics\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam holistickenko.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(holistickenko\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam holodkovich.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(holodkovich\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam home.myplaycity.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(home\\.myplaycity\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam homeafrikalike.tk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(homeafrikalike\\.tk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam homedo.fabpage.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(homedo\\.fabpage\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam homeinns.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(homeinns\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam homelygarden.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(homelygarden\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam homemade.gq\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(homemade\\.gq)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam homemypicture.tk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(homemypicture\\.tk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam honesty-homemade-grizzly-humanlike.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(honesty\\-homemade\\-grizzly\\-humanlike\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hongfanji.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hongfanji\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hoporno.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hoporno\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam horoshieokna.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(horoshieokna\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam host-protection.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(host\\-protection\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hostcritique.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hostcritique\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hoste.octopis.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hoste\\.octopis\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hostiman.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hostiman\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hosting-tracker.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hosting\\-tracker\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hostingclub.lk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hostingclub\\.lk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hostsshop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hostsshop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hotblognetwork.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hotblognetwork\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hotdl.in\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hotdl\\.in)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hotspot.ipb.co.id\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hotspot\\.ipb\\.co\\.id)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hottour.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hottour\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hotwatersdamps.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hotwatersdamps\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam houdom.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(houdom\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam housedesigning.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(housedesigning\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam housediz.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(housediz\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam housekuba.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(housekuba\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam housemilan.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(housemilan\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam houseofgaga.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(houseofgaga\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam houseofrose.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(houseofrose\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam houston-vikings.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(houston\\-vikings\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-i-build-website.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-i\\-build\\-website\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-i-promote-website.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-i\\-promote\\-website\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-buy-bitcoin.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-buy\\-bitcoin\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-buy-bitcoin.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-buy\\-bitcoin\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-buy-bitcoins-cheap.party\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-buy\\-bitcoins\\-cheap\\.party)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-buy-bitcoins-cheap.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-buy\\-bitcoins\\-cheap\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-buy-bitcoins-cheap.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-buy\\-bitcoins\\-cheap\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-buy-bitcoins-cheap.trade\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-buy\\-bitcoins\\-cheap\\.trade)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-buy-bitcoins.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-buy\\-bitcoins\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-buy-bitcoins.trade\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-buy\\-bitcoins\\.trade)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-earn-quick-money.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-earn\\-quick\\-money\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-promote-website.faith\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-promote\\-website\\.faith)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam how-to-promote-website.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(how\\-to\\-promote\\-website\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam howlongdoestizanidinestayinyoursystem.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(howlongdoestizanidinestayinyoursystem\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam howmuchdoestizanidinecost.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(howmuchdoestizanidinecost\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam howopen.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(howopen\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam howtostopreferralspam.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(howtostopreferralspam\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam howtostopreferralspam.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(howtostopreferralspam\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hoztorg-opt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hoztorg\\-opt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hplaserjetpdriver8y.pen.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hplaserjetpdriver8y\\.pen\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hptwaakw.blog.fc2.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hptwaakw\\.blog\\.fc2\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hrtonline.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hrtonline\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hscsscotland.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hscsscotland\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hseipaa.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hseipaa\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hsoutdoor.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hsoutdoor\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hspline.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hspline\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam https-legalrc.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(https\\-legalrc\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hugblog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hugblog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam huhn.altervista.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(huhn\\.altervista\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hulfingtonpost.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hulfingtonpost\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hully.altervista.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hully\\.altervista\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam humanorightswatch.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(humanorightswatch\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hundejo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hundejo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam huntdown.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(huntdown\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam husky-shop.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(husky\\-shop\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hustoon.over-blog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hustoon\\.over\\-blog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hvd-store.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hvd\\-store\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-2019.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-2019\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-2020.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-2020\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-2020.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-2020\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-centr.fun\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-centr\\.fun)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-dealer.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-dealer\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-guide.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-guide\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-new.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-new\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-onion-faq.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-onion\\-faq\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-pc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-pc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-shop.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-shop\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-site.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-site\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-slon.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-slon\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-vhod2020.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-vhod2020\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra-zerkalo20.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\-zerkalo20\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra1717.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra1717\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2.market\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2\\.market)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2020.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2020\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2020gate.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2020gate\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2020market.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2020market\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2020onion.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2020onion\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2020ru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2020ru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2020zerkala.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2020zerkala\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2020zerkalo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2020zerkalo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra20onion.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra20onion\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra20online.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra20online\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra20original.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra20original\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2use.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2use\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydra2zahod.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydra2zahod\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraena.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraena\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydrahow.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydrahow\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydrahudra.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydrahudra\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraland.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraland\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydramarket2020.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydramarket2020\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydramirror2020.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydramirror2020\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydranten.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydranten\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraonion2019.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraonion2019\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydrarusmarket.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydrarusmarket\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraruz-2020.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraruz\\-2020\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraruzonion2020.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraruzonion2020\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraruzonionx.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraruzonionx\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraruzxpnew4af.com.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraruzxpnew4af\\.com\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraruzxpnew4af.ink\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraruzxpnew4af\\.ink)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraruzxpnew4aff.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraruzxpnew4aff\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraruzxpwnew4afonion.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraruzxpwnew4afonion\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydraulicoilcooler.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydraulicoilcooler\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydrauliczny.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydrauliczny\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydravizoficial.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydravizoficial\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydrazerkalo2019.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydrazerkalo2019\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydrazerkalo2020.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydrazerkalo2020\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hydropump.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hydropump\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hyip-zanoza.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hyip\\-zanoza\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam hyipmanager.in\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(hyipmanager\\.in)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam i-spare.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(i\\-spare\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ialgramer.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ialgramer\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iamsport.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iamsport\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ib-homecredit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ib\\-homecredit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ib-rencredit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ib\\-rencredit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iblogpress.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iblogpress\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iceton.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iceton\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ico.re\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ico\\.re)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ictizanidinehcl4mg.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ictizanidinehcl4mg\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam idc.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(idc\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam idealtits.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(idealtits\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ideayz.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ideayz\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam idegenvezeto.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(idegenvezeto\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ideibiznesa2015.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ideibiznesa2015\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ieeeoutlet.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ieeeoutlet\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ifirestarter.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ifirestarter\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ifmo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ifmo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam igadgetsworld.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(igadgetsworld\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam igamingtop.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(igamingtop\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam igru-xbox.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(igru\\-xbox\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ilikevitaly.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ilikevitaly\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam illagedusexe.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(illagedusexe\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ilmen.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ilmen\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iloveitaly.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iloveitaly\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iloveitaly.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iloveitaly\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ilovevitaly.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ilovevitaly\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ilovevitaly.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ilovevitaly\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ilovevitaly.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ilovevitaly\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ilovevitaly.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ilovevitaly\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ilovevitaly.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ilovevitaly\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ilovevitaly.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ilovevitaly\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ilovevitaly.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ilovevitaly\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam imediadesk.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(imediadesk\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iminent.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iminent\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam immigrational.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(immigrational\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam immobiliaremassaro.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(immobiliaremassaro\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam immobilieralgerie.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(immobilieralgerie\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam imperia31.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(imperia31\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam imperiafilm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(imperiafilm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam impotentik.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(impotentik\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam impresagaia.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(impresagaia\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam in-mostbet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(in\\-mostbet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam in-sto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(in\\-sto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam inbabes.sexushost.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(inbabes\\.sexushost\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam inboxdollars.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(inboxdollars\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam incanto.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(incanto\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam incitystroy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(incitystroy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam incomekey.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(incomekey\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam incoonline.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(incoonline\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam increasewwwtraffic.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(increasewwwtraffic\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam indetiske.ya.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(indetiske\\.ya\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam indo-export.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(indo\\-export\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam inet-shop.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(inet\\-shop\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam infazavr.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(infazavr\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam infektsii.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(infektsii\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam infobabki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(infobabki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam infodocsportal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(infodocsportal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam infogame.name\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(infogame\\.name)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam infokonkurs.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(infokonkurs\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam inform-ua.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(inform\\-ua\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ingramreed.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ingramreed\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam inmoll.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(inmoll\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam innodgfdriverhm.aircus.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(innodgfdriverhm\\.aircus\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam insider.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(insider\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam installspartners.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(installspartners\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam instasexyblog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(instasexyblog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam insultu-net.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(insultu\\-net\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam intelhdgraphicsgtdrive6w.metroblog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(intelhdgraphicsgtdrive6w\\.metroblog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam interferencer.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(interferencer\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam interfucks.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(interfucks\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam intermesh.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(intermesh\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam internet-apteka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(internet\\-apteka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam intex-air.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(intex\\-air\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam intimchats.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(intimchats\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam intimver.3dgayxxx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(intimver\\.3dgayxxx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam invest-pamm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(invest\\-pamm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam investingclub.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(investingclub\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam investpamm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(investpamm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam investsuccess.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(investsuccess\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam invivo.hu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(invivo\\.hu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam inzn.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(inzn\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam io9.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(io9\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ipod-app-reviews.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ipod\\-app\\-reviews\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ipostroika.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ipostroika\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iqoption-bin.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iqoption\\-bin\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iqoption.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iqoption\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iqoption.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iqoption\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iradiology.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iradiology\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iridsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iridsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ishgetadsincome.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ishgetadsincome\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam isistaylorporn.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(isistaylorporn\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iskalko.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iskalko\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iskussnica.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iskussnica\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam isotoner.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(isotoner\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ispaniya-costa-blanca.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ispaniya\\-costa\\-blanca\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam istanbulit.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(istanbulit\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam istizanidineacontrolledsubstance.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(istizanidineacontrolledsubstance\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam istizanidineanarcoticdrug.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(istizanidineanarcoticdrug\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam istizanidineanopiate.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(istizanidineanopiate\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam istizanidinelikexanax.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(istizanidinelikexanax\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam istock-mebel.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(istock\\-mebel\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam it-max.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(it\\-max\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam it-worlds.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(it\\-worlds\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam itbc.kiev.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(itbc\\.kiev\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam itrevolution.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(itrevolution\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam itronics.ca\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(itronics\\.ca)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam itsdp3.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(itsdp3\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ivegetadsincome.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ivegetadsincome\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam iyfsearch.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(iyfsearch\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam izamorfix.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(izamorfix\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam izhevsk.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(izhevsk\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam izhevskjob.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(izhevskjob\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam izhstrelok.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(izhstrelok\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam izi24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(izi24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam j-times.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(j\\-times\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jabug.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jabug\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jacblog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jacblog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jackonline.store\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jackonline\\.store)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam janemill.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(janemill\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam janettabridal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(janettabridal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam japfm.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(japfm\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jasonpartington.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jasonpartington\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jav-fetish.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jav\\-fetish\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jav-fetish.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jav\\-fetish\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jav-idol.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jav\\-idol\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam javatex.co.id\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(javatex\\.co\\.id)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam javcoast.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(javcoast\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam javlibrary.cc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(javlibrary\\.cc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jaxcube.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jaxcube\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jazzstyle4us.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jazzstyle4us\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jeffbullas.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jeffbullas\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jennyfire.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jennyfire\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jikem.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jikem\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jintub.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jintub\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jjbabskoe.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jjbabskoe\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam job-opros.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(job\\-opros\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam job-prosto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(job\\-prosto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jobfree24.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jobfree24\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jobgirl24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jobgirl24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jobius.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jobius\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam johnnyhaley.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(johnnyhaley\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam joinandplay.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(joinandplay\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam joingames.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(joingames\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam josephineblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(josephineblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam journalhome.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(journalhome\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam joyceblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(joyceblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam joycee.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(joycee\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam judyandsimon.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(judyandsimon\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam juliadiets.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(juliadiets\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam juliaworld.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(juliaworld\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jumkite.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jumkite\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam justkillingti.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(justkillingti\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam justprofit.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(justprofit\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jweber.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jweber\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jwss.cc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jwss\\.cc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam jyrxd.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(jyrxd\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kaac.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kaac\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabbalah-red-bracelets.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabbalah\\-red\\-bracelets\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-5ka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-5ka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-alfaclick.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-alfaclick\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-binbank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-binbank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-card-5ka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-card\\-5ka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-click-alfabank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-click\\-alfabank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-esia-gosuslugi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-esia\\-gosuslugi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-faberlic.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-faberlic\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-gosuslugi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-gosuslugi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-ipoteka-domclick.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-ipoteka\\-domclick\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-karta-5ka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-karta\\-5ka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-lk-megafon.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-lk\\-megafon\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-lk-rt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-lk\\-rt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-login-mts.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-login\\-mts\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-mil.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-mil\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-mos.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-mos\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-my-beeline.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-my\\-beeline\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-my-pochtabank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-my\\-pochtabank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-nalog.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-nalog\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-online-bm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-online\\-bm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-online-open.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-online\\-open\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-online-rsb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-online\\-rsb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-online-rshb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-online\\-rshb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-online-sberbank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-online\\-sberbank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-online-sovcombank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-online\\-sovcombank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-online-vtb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-online\\-vtb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-pfr.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-pfr\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-pfrf.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-pfrf\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-platon.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-platon\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-qiwi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-qiwi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-tele2.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-tele2\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-tinkoff.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-tinkoff\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-tricolor.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-tricolor\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-ttk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-ttk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kabinet-vtb24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kabinet\\-vtb24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kaircm.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kaircm\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kakablog.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kakablog\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kakadu-interior.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kakadu\\-interior\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kakworldoftanks.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kakworldoftanks\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kalb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kalb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kambasoft.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kambasoft\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kamin-sam.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kamin\\-sam\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kamorel.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kamorel\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kanakox.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kanakox\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam karachev-city.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(karachev\\-city\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam karadene.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(karadene\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam karapuz.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(karapuz\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam karusel-market.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(karusel\\-market\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam katjimej.blog.fc2.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(katjimej\\.blog\\.fc2\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam katrd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(katrd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam katushka.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(katushka\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kaz.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kaz\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kazan.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kazan\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kazka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kazka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kazlenta.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kazlenta\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kazrent.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kazrent\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kellyonline.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kellyonline\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kendrablog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kendrablog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kenyagoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kenyagoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kerch.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kerch\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ketrzyn.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ketrzyn\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kevblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kevblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kevinsnow.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kevinsnow\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kexihao.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kexihao\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam keywords-monitoring-success.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(keywords\\-monitoring\\-success\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam keywords-monitoring-your-success.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(keywords\\-monitoring\\-your\\-success\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kharkov.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kharkov\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kharlov.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kharlov\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kidd.reunionwatch.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kidd\\.reunionwatch\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kierowca-praca.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kierowca\\-praca\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kiev.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kiev\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kimblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kimblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kinnarimasajes.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kinnarimasajes\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kino-filmi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kino\\-filmi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kino-fun.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kino\\-fun\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kino-key.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kino\\-key\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kino2018.cc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kino2018\\.cc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kinobaks.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kinobaks\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kinobum.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kinobum\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kinoflux.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kinoflux\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kinohit1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kinohit1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kinopolet.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kinopolet\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kinosed.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kinosed\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kinostar.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kinostar\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kinotorka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kinotorka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kiprinform.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kiprinform\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kiwe-analytics.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kiwe\\-analytics\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kiwi237au.tk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kiwi237au\\.tk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kiyany-za-spravedluvist.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kiyany\\-za\\-spravedluvist\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kletkimehan.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kletkimehan\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam klfd.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(klfd\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kndxbkdx.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kndxbkdx\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam knigonosha.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(knigonosha\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kochanelli.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kochanelli\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kolcasale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kolcasale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam koleso24.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(koleso24\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kollekcioner.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kollekcioner\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kolotiloff.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kolotiloff\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam komp-pomosch.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(komp\\-pomosch\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam komputernaya-pomosh-moscow.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(komputernaya\\-pomosh\\-moscow\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam komputers-best.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(komputers\\-best\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam komukc.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(komukc\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kongoultry.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kongoultry\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam konkursov.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(konkursov\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam koopilka.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(koopilka\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam koptims.tiu.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(koptims\\.tiu\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam koronirealestate.gr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(koronirealestate\\.gr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kosova.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kosova\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kosunnyclub.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kosunnyclub\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kotaku.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kotaku\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kozhakoshek.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kozhakoshek\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kozhasobak.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kozhasobak\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kozhniebolezni.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kozhniebolezni\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kpcconline.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kpcconline\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krafte.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krafte\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krasivoe-hd.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krasivoe\\-hd\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krasivoe-hd.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krasivoe\\-hd\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krasnodar-avtolombard.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krasnodar\\-avtolombard\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krasnodar.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krasnodar\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krasota-zdorovie.pw\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krasota\\-zdorovie\\.pw)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krasota.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krasota\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kredutu.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kredutu\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kredytbank.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kredytbank\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kruiz-sochi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kruiz\\-sochi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krumble-adsde.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krumble\\-adsde\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krumble-adsen.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krumble\\-adsen\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krumble-adsic.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krumble\\-adsic\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krumbleent-ads.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krumbleent\\-ads\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam krynica.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(krynica\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ktotut.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ktotut\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kumuk.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kumuk\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kupit-adenu.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kupit\\-adenu\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kursy-ege.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kursy\\-ege\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kustanay.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kustanay\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kvartir-remont.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kvartir\\-remont\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kvartira-sutochno.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kvartira\\-sutochno\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kvartiry-remont.ucoz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kvartiry\\-remont\\.ucoz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam kw21.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(kw21\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam l2soft.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(l2soft\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam la-fa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(la\\-fa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam labguamec.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(labguamec\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam labplus.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(labplus\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam labvis.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(labvis\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ladov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ladov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lafppshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lafppshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam laitrcus.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(laitrcus\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lakiikraski.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lakiikraski\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lalalove.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lalalove\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lambreshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lambreshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam laminat.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(laminat\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lampokrat.ws\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lampokrat\\.ws)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lanasshop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lanasshop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam landliver.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(landliver\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam landoftracking.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(landoftracking\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam languagecode.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(languagecode\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lankarns.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lankarns\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam laparfumotec.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(laparfumotec\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lapitec.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lapitec\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam laptop-4-less.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(laptop\\-4\\-less\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam laptoper.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(laptoper\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam larchik.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(larchik\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam larutti.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(larutti\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam laudit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(laudit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-check-eight.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-check\\-eight\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-check-nine.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-check\\-nine\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-check-seven.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-check\\-seven\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-check-two.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-check\\-two\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-aa.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-aa\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-bb.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-bb\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-bot-aa.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-bot\\-aa\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-bot-bb.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-bot\\-bb\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-bot-cc.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-bot\\-cc\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-bot-dd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-bot\\-dd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-bot-ee.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-bot\\-ee\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-bot-ff.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-bot\\-ff\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-bot-hh.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-bot\\-hh\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-bot-ii.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-bot\\-ii\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-cc.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-cc\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-check-eight.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-check\\-eight\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-check-five.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-check\\-five\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-check-four.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-check\\-four\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-check-nine.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-check\\-nine\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-check-one.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-check\\-one\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-check-six.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-check\\-six\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-check-three.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-check\\-three\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-check-two.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-check\\-two\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-dd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-dd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-ee.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-ee\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-eight.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-eight\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-ff.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-ff\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-five.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-five\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-four.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-four\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-gg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-gg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-hh.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-hh\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-one.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-one\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-seven.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-seven\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-three.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-three\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-enforcement-two.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-enforcement\\-two\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-five.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-five\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-four.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-four\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-one.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-one\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-six.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-six\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-three.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-three\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam law-two.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(law\\-two\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lawrenceblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lawrenceblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam laxdrills.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(laxdrills\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam layola.biz.tc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(layola\\.biz\\.tc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lazy-z.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lazy\\-z\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lcecshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lcecshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam leadwayau.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(leadwayau\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam leboard.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(leboard\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lebowmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lebowmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ledalfa.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ledalfa\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam leddjc.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(leddjc\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ledis.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ledis\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ledpolice.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ledpolice\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ledx.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ledx\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam leeboyrussia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(leeboyrussia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam legalrc.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(legalrc\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lego4x4.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lego4x4\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lenvred.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lenvred\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam leon-official.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(leon\\-official\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lernur.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lernur\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lerporn.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lerporn\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam leto-dacha.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(leto\\-dacha\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam letolove.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(letolove\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam letsgotofriday.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(letsgotofriday\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam levaquin750mg.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(levaquin750mg\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lezbiyanki.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lezbiyanki\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lflash.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lflash\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam li-er.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(li\\-er\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lida-ru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lida\\-ru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lider82.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lider82\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam life.biz.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(life\\.biz\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lifebyleese.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lifebyleese\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lifespeaker.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lifespeaker\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ligastavok-in.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ligastavok\\-in\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam light.ifmo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(light\\.ifmo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lighthearteds.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lighthearteds\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam likesdesign.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(likesdesign\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lilishopstogether.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lilishopstogether\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lindsayblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lindsayblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam linerdrilling.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(linerdrilling\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam link.web-list.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(link\\.web\\-list\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lipidofobia.com.br\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lipidofobia\\.com\\.br)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam liquimondo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(liquimondo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lirunet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lirunet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lisque.batcave.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lisque\\.batcave\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam littleberry.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(littleberry\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam live-sexchat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(live\\-sexchat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam live-xbet.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(live\\-xbet\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam livefixer.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(livefixer\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam liveinternet.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(liveinternet\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam liveinternet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(liveinternet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam livejournal.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(livejournal\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam livia-pache.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(livia\\-pache\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam livingroomdecoratingideas.website\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(livingroomdecoratingideas\\.website)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam livingsimply.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(livingsimply\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lk-gosuslugi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lk\\-gosuslugi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lk-lk-rt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lk\\-lk\\-rt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam llastbuy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(llastbuy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lmrauction.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lmrauction\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam loadopia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(loadopia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam local-seo-for-multiple-locations.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(local\\-seo\\-for\\-multiple\\-locations\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam login-tinkoff.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(login\\-tinkoff\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam loginduepunti.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(loginduepunti\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam logo-all.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(logo\\-all\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lol-smurfs.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lol\\-smurfs\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lolz.guru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lolz\\.guru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lolzteam.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lolzteam\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lolzteam.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lolzteam\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lomb.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lomb\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lombardfinder.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lombardfinder\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lombia.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lombia\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lombia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lombia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lomza.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lomza\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam londonstratford.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(londonstratford\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lookover.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lookover\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lost-alpha.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lost\\-alpha\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lotoflotto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lotoflotto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam loveorganic.ch\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(loveorganic\\.ch)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam low-format.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(low\\-format\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lowpricesiterx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lowpricesiterx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lsex.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lsex\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lsitenonrepeat.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lsitenonrepeat\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam luckybull.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(luckybull\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam luckyshop.net.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(luckyshop\\.net\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lukoilcard.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lukoilcard\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lumb.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lumb\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam lutherstable.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(lutherstable\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam luton-invest.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(luton\\-invest\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam luxmagazine.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(luxmagazine\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam luxup.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(luxup\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam luxurybet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(luxurybet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam m-google.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(m\\-google\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam m.ok.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(m\\.ok\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam m1media.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(m1media\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam macresource.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(macresource\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam madisonclothingny.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(madisonclothingny\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam madjonline.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(madjonline\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam madot.onlinewebshop.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(madot\\.onlinewebshop\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mafcards.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mafcards\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam magazintiande.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(magazintiande\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam magda-gadalka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(magda\\-gadalka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam magento-crew.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(magento\\-crew\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam magicart.store\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(magicart\\.store)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam magicdiet.gq\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(magicdiet\\.gq)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam magnetic-bracelets.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(magnetic\\-bracelets\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maigralr.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maigralr\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mail.allnews24.in\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mail\\.allnews24\\.in)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mainhunter.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mainhunter\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mainlinehobby.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mainlinehobby\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam make-money-online.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(make\\-money\\-online\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam makedo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(makedo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam makemoneyonline.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(makemoneyonline\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam makeprogress.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(makeprogress\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam makler.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(makler\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maladot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maladot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam malbgoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(malbgoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam malls.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(malls\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maltadailypost.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maltadailypost\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mamidushop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mamidushop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mamylik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mamylik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam manimpotence.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(manimpotence\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam manipulyator-peterburg.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(manipulyator\\-peterburg\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam manonstore.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(manonstore\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam manualterap.roleforum.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(manualterap\\.roleforum\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam manwang.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(manwang\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maofengjx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maofengjx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam marathonbet-in.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(marathonbet\\-in\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam marblestyle.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(marblestyle\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam marcogrup.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(marcogrup\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maridan.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maridan\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maridan.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maridan\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam marihome.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(marihome\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam marinetraffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(marinetraffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam marjorieblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(marjorieblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam marketland.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(marketland\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam marktforschung-stuttgart.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(marktforschung\\-stuttgart\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam marmitaco.cat\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(marmitaco\\.cat)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam martinahome.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(martinahome\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam martlinker.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(martlinker\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam massage-info.nl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(massage\\-info\\.nl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam masserect.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(masserect\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam master-muznachas.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(master\\-muznachas\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam masterseek.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(masterseek\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mastershef.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mastershef\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam masturbate.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(masturbate\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mathoutlet.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mathoutlet\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam matomete.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(matomete\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam matras.space\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(matras\\.space)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mattgibson.us\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mattgibson\\.us)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mature.free-websites.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mature\\.free\\-websites\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam max-apprais.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(max\\-apprais\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maximilitary.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maximilitary\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maxinesamson.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maxinesamson\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maxthon.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maxthon\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam maxxximoda.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(maxxximoda\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mazda-roadsters.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mazda\\-roadsters\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mbiologi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mbiologi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mebel-alait.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mebel\\-alait\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mebel-arts.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mebel\\-arts\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mebel-ekb.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mebel\\-ekb\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mebel-iz-dereva.kiev.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mebel\\-iz\\-dereva\\.kiev\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mebelcomplekt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mebelcomplekt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mebeldekor.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mebeldekor\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mebeldekor.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mebeldekor\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam meblieco.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(meblieco\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam med-dopomoga.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(med\\-dopomoga\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam med-recept.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(med\\-recept\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam med-zdorovie.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(med\\-zdorovie\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam med-zdorovie.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(med\\-zdorovie\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medanestesia.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medanestesia\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medbrowse.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medbrowse\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medcor-list.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medcor\\-list\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medi-fitt.hu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medi\\-fitt\\.hu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medic-al.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medic\\-al\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medicaltranslate.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medicaltranslate\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medicinacom.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medicinacom\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medicineseasybuy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medicineseasybuy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medicovi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medicovi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medictube.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medictube\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medispainstitute.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medispainstitute\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medkletki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medkletki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medkritika.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medkritika\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medmajor.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medmajor\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medosmotr-ufa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medosmotr\\-ufa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam meds-online24.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(meds\\-online24\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam medtherapy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(medtherapy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam meduza-consult.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(meduza\\-consult\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam meendo-free-traffic.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(meendo\\-free\\-traffic\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam megaapteka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(megaapteka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam megakino.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(megakino\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam megalit-d.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(megalit\\-d\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam megapolis-96.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(megapolis\\-96\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam megatkani.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(megatkani\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam megavolt.net.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(megavolt\\.net\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam melbet-in.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(melbet\\-in\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam melissahome.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(melissahome\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam members.ghanaweb.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(members\\.ghanaweb\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam memovn.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(memovn\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam menhealed.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(menhealed\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mercanmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mercanmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mere.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mere\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mericanmopedstore.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mericanmopedstore\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam meriton.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(meriton\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam meroyharte.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(meroyharte\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mesto-x.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mesto\\-x\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam metallo-konstruktsii.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(metallo\\-konstruktsii\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam metallosajding.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(metallosajding\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam metarip.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(metarip\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam metaxalonevstizanidine.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(metaxalonevstizanidine\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam meteocast.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(meteocast\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam meuikcr.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(meuikcr\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mex-annushka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mex\\-annushka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mhp.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mhp\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mhrdmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mhrdmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam miaxxx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(miaxxx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam micasainvest.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(micasainvest\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam michellblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(michellblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam microsearch.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(microsearch\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam microsoftportal.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(microsoftportal\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam midnight.im\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(midnight\\.im)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mielec.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mielec\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mifepriston.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mifepriston\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam migente.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(migente\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam migera.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(migera\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam migronis.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(migronis\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mikozstop.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mikozstop\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mikrobiologies.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mikrobiologies\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mikrocement.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mikrocement\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mikrozaim.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mikrozaim\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mikrozaym2you.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mikrozaym2you\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam minecraft-neo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(minecraft\\-neo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam minecraft-rus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(minecraft\\-rus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam minegam.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(minegam\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam minghaimuyuan.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(minghaimuyuan\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mini.7zap.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mini\\.7zap\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam miningblack.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(miningblack\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam minyetki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(minyetki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mir-betting.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mir\\-betting\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mir-business-24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mir\\-business\\-24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mir-limuzinov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mir\\-limuzinov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mirfairytale.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mirfairytale\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mirmedinfo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mirmedinfo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mirobuvi.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mirobuvi\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mirobuvi.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mirobuvi\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mirtorrent.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mirtorrent\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mirzonru.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mirzonru\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam misselle.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(misselle\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mister-shop.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mister\\-shop\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mitrasound.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mitrasound\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mixed-wrestling.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mixed\\-wrestling\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mksoap.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mksoap\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mksport.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mksport\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mmdoors.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mmdoors\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mmm.lc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mmm\\.lc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mmm.sb\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mmm\\.sb)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mmog-play.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mmog\\-play\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mmoguider.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mmoguider\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mnogabukaff.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mnogabukaff\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mobicover.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mobicover\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mobile.ok.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mobile\\.ok\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mobilemedia.md\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mobilemedia\\.md)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mobisport.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mobisport\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mobot.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mobot\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mobplayer.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mobplayer\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mobplayer.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mobplayer\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mockupui.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mockupui\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam modabutik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(modabutik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam modforwot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(modforwot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam modnie-futbolki.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(modnie\\-futbolki\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moe1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moe1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moesonce.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moesonce\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moi-glazki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moi\\-glazki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moinozhki.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moinozhki\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moiragracie.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moiragracie\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moisadogorod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moisadogorod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mokrayakiska.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mokrayakiska\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mole.pluto.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mole\\.pluto\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam monarhs.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(monarhs\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam monetizationking.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(monetizationking\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam money-every-day.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(money\\-every\\-day\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam money-for-placing-articles.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(money\\-for\\-placing\\-articles\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam money7777.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(money7777\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moneymaster.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moneymaster\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moneytop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moneytop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moneyzzz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moneyzzz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam monicablog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(monicablog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam monitorwebsitespeed.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(monitorwebsitespeed\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moomi-daeri.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moomi\\-daeri\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moon.market\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moon\\.market)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moonci.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moonci\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam more-letom.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(more\\-letom\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam morf.snn.gr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(morf\\.snn\\.gr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam morlat.altervista.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(morlat\\.altervista\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moroccosurfadventures.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moroccosurfadventures\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moscow-clining.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moscow\\-clining\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moscow-region.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moscow\\-region\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moscow.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moscow\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mosdverka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mosdverka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mosputana.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mosputana\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mosputana.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mosputana\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mosrif.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mosrif\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mossiemckenzie.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mossiemckenzie\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mossmesi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mossmesi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam most-kerch.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(most\\-kerch\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam most.gov.iq\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(most\\.gov\\.iq)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mostantikor.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mostantikor\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mostbet-285.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mostbet\\-285\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mostbet-original.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mostbet\\-original\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mostcool.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mostcool\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mostorgnerud.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mostorgnerud\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam motion-interactive.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(motion\\-interactive\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mototsikl.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mototsikl\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mountainstream.ms\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mountainstream\\.ms)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moy-dokument.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moy\\-dokument\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moy-evroopt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moy\\-evroopt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moyakuhnia.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moyakuhnia\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moyaskidka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moyaskidka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moyaterapiya.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moyaterapiya\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moygorod-online.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moygorod\\-online\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam moyparnik.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(moyparnik\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mp3films.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mp3films\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mpftpupload.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mpftpupload\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mrbojikobi4.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mrbojikobi4\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mrcsa.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mrcsa\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mriyadh.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mriyadh\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mrmoneymustache.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mrmoneymustache\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mrt-info.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mrt\\-info\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mrwhite.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mrwhite\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam msk-diplomat.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(msk\\-diplomat\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam msk-sprawka.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(msk\\-sprawka\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mtras.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mtras\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mtsguru.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mtsguru\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mug-na-chas-moscow.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mug\\-na\\-chas\\-moscow\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam muizre.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(muizre\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mukis.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mukis\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mundoaberrante.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mundoaberrante\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam muscle-factory.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(muscle\\-factory\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam muscle-factory.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(muscle\\-factory\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam music.utrolive.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(music\\.utrolive\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam musicas.baixar-musicas-gratis.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(musicas\\.baixar\\-musicas\\-gratis\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam musichallaudio.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(musichallaudio\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam musicprojectfoundation.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(musicprojectfoundation\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam musicstock.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(musicstock\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam musicvidz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(musicvidz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam muz-baza.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(muz\\-baza\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam muz-shoes.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(muz\\-shoes\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam muznachas-service.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(muznachas\\-service\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam muztops.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(muztops\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mvmagoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mvmagoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mwductwork.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mwductwork\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam my-bc.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(my\\-bc\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam my.opera.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(my\\.opera\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mybestoffers.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mybestoffers\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam myborder.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(myborder\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mybuh.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mybuh\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mycaf.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mycaf\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mycheaptraffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mycheaptraffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mycollegereview.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mycollegereview\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mydirtystuff.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mydirtystuff\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mydoctorok.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mydoctorok\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mydownloadengine.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mydownloadengine\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mydownlodablefiles.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mydownlodablefiles\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam myecomir.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(myecomir\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam myfreemp3.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(myfreemp3\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam myftpupload.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(myftpupload\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam myindospace.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(myindospace\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mylida.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mylida\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam myliveblog.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(myliveblog\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mypets.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mypets\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam myplaycity.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(myplaycity\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam myprintscreen.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(myprintscreen\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mysexpics.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mysexpics\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mytherealshop.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mytherealshop\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam mytraffic.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(mytraffic\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam na-telefon.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(na\\-telefon\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam na15.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(na15\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nacap.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nacap\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nachalka21.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nachalka21\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nagdak.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nagdak\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nakozhe.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nakozhe\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nalogovyy-kodeks.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nalogovyy\\-kodeks\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nancyblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nancyblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nanochskazki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nanochskazki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nanwar.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nanwar\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam naobumium.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(naobumium\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam naphi.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(naphi\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam naphukete.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(naphukete\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nardulan.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nardulan\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam narkologiya-belgorod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(narkologiya\\-belgorod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam narkologiya-orel.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(narkologiya\\-orel\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam narkologiya-penza.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(narkologiya\\-penza\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam narkologiya-peterburg.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(narkologiya\\-peterburg\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam narkologiya-voronezh.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(narkologiya\\-voronezh\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam narkomaniya-stop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(narkomaniya\\-stop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam narosty.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(narosty\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam narutonaruto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(narutonaruto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nastroyke.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nastroyke\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam natali-forex.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(natali\\-forex\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nate.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nate\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam natprof.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(natprof\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam naturalpharm.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(naturalpharm\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam naval.jislaaik.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(naval\\.jislaaik\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam navek.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(navek\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nbok.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nbok\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nbsproject.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nbsproject\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nebbiasale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nebbiasale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam needtosellmyhousefast.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(needtosellmyhousefast\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam negral.pluto.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(negral\\.pluto\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam net-profits.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(net\\-profits\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam netallergy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(netallergy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nethouse.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nethouse\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam netlify.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(netlify\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam netpics.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(netpics\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nevansk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nevansk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nevapotolok.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nevapotolok\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam new-apps.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(new\\-apps\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam newagebev.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(newagebev\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam newbieseoblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(newbieseoblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam newsfj.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(newsfj\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam newsrosprom.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(newsrosprom\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam newstaffadsshop.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(newstaffadsshop\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam newstraveller.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(newstraveller\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam newstudio.tv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(newstudio\\.tv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nextconseil.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nextconseil\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nfocusdriver.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nfocusdriver\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ngps1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ngps1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nhmrcsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nhmrcsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nhsports.cl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nhsports\\.cl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nicola.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nicola\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nicolaonline.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nicolaonline\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam niki-mlt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(niki\\-mlt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nikitsyringedrivelg.pen.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nikitsyringedrivelg\\.pen\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ninacecillia.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ninacecillia\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam niuting.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(niuting\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nizniynovgorod.dienai.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nizniynovgorod\\.dienai\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nl.netlog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nl\\.netlog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam no-rx.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(no\\-rx\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam noclegonline.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(noclegonline\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nomerounddec.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nomerounddec\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nonews.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nonews\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nordstar.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nordstar\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam notaria-desalas.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(notaria\\-desalas\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam notebook-pro.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(notebook\\-pro\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam notfastfood.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(notfastfood\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam noumeda.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(noumeda\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam novalskincare.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(novalskincare\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam novgorod.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(novgorod\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam novosibirsk.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(novosibirsk\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam novosti-avto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(novosti\\-avto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam novosti-hi-tech.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(novosti\\-hi\\-tech\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam novostic.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(novostic\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam now-hydra2020.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(now\\-hydra2020\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam npoet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(npoet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ntdtv.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ntdtv\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nubuilderian.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nubuilderian\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nucia.biz.ly\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nucia\\.biz\\.ly)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nudepatch.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nudepatch\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nudo.ca\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nudo\\.ca)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nufaq.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nufaq\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nullrefer.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nullrefer\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nutriwestncahi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nutriwestncahi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nuup.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nuup\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nvformula.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nvformula\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nvkzsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nvkzsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nwrcz.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nwrcz\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nyfinance.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nyfinance\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam nyinfo.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(nyinfo\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam o-o-11-o-o.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(o\\-o\\-11\\-o\\-o\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam o-o-6-o-o.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(o\\-o\\-6\\-o\\-o\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam o-o-6-o-o.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(o\\-o\\-6\\-o\\-o\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam o-o-8-o-o.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(o\\-o\\-8\\-o\\-o\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam o-o-8-o-o.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(o\\-o\\-8\\-o\\-o\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam o-promyshlennosti.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(o\\-promyshlennosti\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam o00.in\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(o00\\.in)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oblismall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oblismall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam obnal.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(obnal\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam obnallpro.cc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(obnallpro\\.cc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam obsessionphrases.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(obsessionphrases\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam obuv-kupit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(obuv\\-kupit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam obyavka.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(obyavka\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam obzor-casino-x.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(obzor\\-casino\\-x\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam obzor-casino-x.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(obzor\\-casino\\-x\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ochistka-stokov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ochistka\\-stokov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam odesproperty.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(odesproperty\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam odiabetikah.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(odiabetikah\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam odsadsmobile.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(odsadsmobile\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam odywpjtw.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(odywpjtw\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ofermerah.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ofermerah\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam offers.bycontext.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(offers\\.bycontext\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam office-windows.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(office\\-windows\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam office2web.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(office2web\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam officedocuments.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(officedocuments\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam offtime.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(offtime\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ogorodnic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ogorodnic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ok.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ok\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oklogistic.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oklogistic\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam okna-systems.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(okna\\-systems\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam okno.ooo\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(okno\\.ooo)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam okoshkah.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(okoshkah\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam okroshki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(okroshki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oktube.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oktube\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oledonline.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oledonline\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam olovoley.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(olovoley\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam olvanto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(olvanto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam omega.best\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(omega\\.best)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam omsk.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(omsk\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam one-a-plus.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(one\\-a\\-plus\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam one-gear.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(one\\-gear\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onefilms.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onefilms\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onenews24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onenews24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onion20hydra.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onion20hydra\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onionhydra.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onionhydra\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onionshydra.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onionshydra\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-akbars.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-akbars\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-binbank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-binbank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-hit.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-hit\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-intim.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-intim\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-mkb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-mkb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-pharma.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-pharma\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-pochtabank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-pochtabank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-raiffeisen.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-raiffeisen\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-sbank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-sbank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-templatestore.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-templatestore\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-video-chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-video\\-chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-vostbank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-vostbank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-vtb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-vtb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online-x.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\-x\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam online.ktc45.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(online\\.ktc45\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlinebay.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlinebay\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlinedic.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlinedic\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlinedomains.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlinedomains\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlinefilmz.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlinefilmz\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlineserialy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlineserialy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlinetvseries.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlinetvseries\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlinewot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlinewot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlinewritingjobs17.blogspot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlinewritingjobs17\\.blogspot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onload.pw\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onload\\.pw)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlyforemont.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlyforemont\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlythegames.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlythegames\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam onlywoman.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(onlywoman\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oohlivecams.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oohlivecams\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ooo-gotovie.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ooo\\-gotovie\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ooo-olni.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ooo\\-olni\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oooh.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oooh\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam openfrost.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(openfrost\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam openfrost.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(openfrost\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam openlibrary.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(openlibrary\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam openmediasoft.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(openmediasoft\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ops.picscout.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ops\\.picscout\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam optitrade24.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(optitrade24\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam optsol.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(optsol\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oqex.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oqex\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oracle-patches.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oracle\\-patches\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam orakul.spb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(orakul\\.spb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oranga.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oranga\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam order-prime-smm-service.party\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(order\\-prime\\-smm\\-service\\.party)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ordernorxx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ordernorxx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam orel-reshka.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(orel\\-reshka\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oren-cats.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oren\\-cats\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam origin-my.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(origin\\-my\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ororodnik.goodbb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ororodnik\\.goodbb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam osb.se11.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(osb\\.se11\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam osoznanie-narkotikam.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(osoznanie\\-narkotikam\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam osteochondrosis.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(osteochondrosis\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ostroike.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ostroike\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ostrovtaxi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ostrovtaxi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam otbelivanie-zubov.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(otbelivanie\\-zubov\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam otdbiaxaem-vmeste.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(otdbiaxaem\\-vmeste\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam otdyx-s-komfortom.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(otdyx\\-s\\-komfortom\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam oudallas.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(oudallas\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ourtherapy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ourtherapy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam outshop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(outshop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ovirus.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ovirus\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam own-ahrefs.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(own\\-ahrefs\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ownshop.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ownshop\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam owohho.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(owohho\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ozas.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ozas\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam p-business.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(p\\-business\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam paceform.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(paceform\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pacobarrero.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pacobarrero\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pageinsider.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pageinsider\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam paidonlinesites.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(paidonlinesites\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam painting-planet.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(painting\\-planet\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam palma-de-sochi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(palma\\-de\\-sochi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam palvira.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(palvira\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam palvira.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(palvira\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pamjatnik.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pamjatnik\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pammik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pammik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pamyatnik-spb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pamyatnik\\-spb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pamyatnik-tsena.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pamyatnik\\-tsena\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pandoshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pandoshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam paparazzistudios.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(paparazzistudios\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam paperwritingservice17.blogspot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(paperwritingservice17\\.blogspot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam paradontozanet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(paradontozanet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam parcsmalls.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(parcsmalls\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam paretto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(paretto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam parking-invest.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(parking\\-invest\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam partizan19.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(partizan19\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam partnerskie-programmy.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(partnerskie\\-programmy\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam patonsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(patonsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam paulinho.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(paulinho\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pay.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pay\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam paydayonlinecom.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(paydayonlinecom\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pc-services.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pc\\-services\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pechikamini.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pechikamini\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pecmastore.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pecmastore\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pensplan.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pensplan\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pensplan4u.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pensplan4u\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam penzu.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(penzu\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam percin.biz.ly\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(percin\\.biz\\.ly)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam perfection-pleasure.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(perfection\\-pleasure\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam perform-like-alibabaity.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(perform\\-like\\-alibabaity\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam perform-likeism-alibaba.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(perform\\-likeism\\-alibaba\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam perimetor.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(perimetor\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam perm.dienai.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(perm\\.dienai\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam perm.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(perm\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam perper.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(perper\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam perso.wanadoo.es\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(perso\\.wanadoo\\.es)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam personalhoro.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(personalhoro\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam petedrummond.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(petedrummond\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam petroleumgeo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(petroleumgeo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam petrovka-online.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(petrovka\\-online\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam petrushka-restoran.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(petrushka\\-restoran\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam petscar.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(petscar\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pfrf-kabinet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pfrf\\-kabinet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pharm--shop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pharm\\-\\-shop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam phimarshcer.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(phimarshcer\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam phimmakinhdi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(phimmakinhdi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam phobia.us\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(phobia\\.us)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam photo-clip.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(photo\\-clip\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam photo.houseofgaga.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(photo\\.houseofgaga\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam photochki.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(photochki\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam photokitchendesign.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(photokitchendesign\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam photorepair.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(photorepair\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam php-market.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(php\\-market\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam physfunc.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(physfunc\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam picscout.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(picscout\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam picturesmania.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(picturesmania\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pills24h.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pills24h\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam piluli.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(piluli\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pinkduck.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pinkduck\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pinupcasinos.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pinupcasinos\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pinupcasinos1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pinupcasinos1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pinupp1.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pinupp1\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pipki.pp.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pipki\\.pp\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam piratbike.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(piratbike\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pirateday.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pirateday\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pirelli-matador.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pirelli\\-matador\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pisze.pisz.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pisze\\.pisz\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam piter.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(piter\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam piulatte.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(piulatte\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pizdeishn.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pizdeishn\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pizdeishn.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pizdeishn\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pizza-imperia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pizza\\-imperia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pizza-tycoon.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pizza\\-tycoon\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pk-pomosch.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pk\\-pomosch\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pk-services.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pk\\-services\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pkr1hand.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pkr1hand\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam plagscan.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(plagscan\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam plastweb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(plastweb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam platesauto.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(platesauto\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam platinumdeals.gr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(platinumdeals\\.gr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam plohaya-kreditnaya-istoriya.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(plohaya\\-kreditnaya\\-istoriya\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam plusnetwork.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(plusnetwork\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pochemychka.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pochemychka\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam podarkilove.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(podarkilove\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam poddon-moskva.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(poddon\\-moskva\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam podemnik.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(podemnik\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam podseka1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(podseka1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pogodnyyeavarii.gq\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pogodnyyeavarii\\.gq)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pogosh.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pogosh\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pogruztehnik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pogruztehnik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam poisk-zakona.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(poisk\\-zakona\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam poiskzakona.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(poiskzakona\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pokemongooo.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pokemongooo\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam poker-royal777.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(poker\\-royal777\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pokupaylegko.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pokupaylegko\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam polcin.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(polcin\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam polemikon.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(polemikon\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam politika.bg\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(politika\\.bg)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam polyana-skazok.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(polyana\\-skazok\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pomoc-drogowa.cba.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pomoc\\-drogowa\\.cba\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pony-business.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pony\\-business\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam popads.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(popads\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam popelina.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(popelina\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pops.foundation\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pops\\.foundation)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam popugauka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(popugauka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam popugaychiki.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(popugaychiki\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam popular-church-arrow-voucher.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(popular\\-church\\-arrow\\-voucher\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam popup-fdm.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(popup\\-fdm\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam popup-hgd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(popup\\-hgd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam popup-jdh.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(popup\\-jdh\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porn-video-chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porn\\-video\\-chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porn-w.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porn\\-w\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porndl.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porndl\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornhive.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornhive\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornhub-forum.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornhub\\-forum\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornhub-forum.uni.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornhub\\-forum\\.uni\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornhub-ru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornhub\\-ru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornhubforum.tk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornhubforum\\.tk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porno-asia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porno\\-asia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porno-chaman.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porno\\-chaman\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porno-dojki.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porno\\-dojki\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porno-gallery.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porno\\-gallery\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porno-play.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porno\\-play\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porno-raskazy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porno\\-raskazy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porno-transsexuals.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porno\\-transsexuals\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porno-video-chati.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porno\\-video\\-chati\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porno2xl.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porno2xl\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornobest.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornobest\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornoblood.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornoblood\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornobrazzers.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornobrazzers\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornodojd.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornodojd\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornoelita.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornoelita\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornofiljmi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornofiljmi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornoforadult.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornoforadult\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornofoto.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornofoto\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornogig.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornogig\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornohd1080.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornohd1080\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornokajf.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornokajf\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornoklad.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornoklad\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornoklad.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornoklad\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornokorol.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornokorol\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornonik.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornonik\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornophoto.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornophoto\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornoplen.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornoplen\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornorasskazy.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornorasskazy\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornosemki.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornosemki\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornoslave.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornoslave\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pornotubexxx.name\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pornotubexxx\\.name)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam porodasobak.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(porodasobak\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam portal-eu.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(portal\\-eu\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam portnoff.od.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(portnoff\\.od\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam portnoff.od.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(portnoff\\.od\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam poshiv-chehol.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(poshiv\\-chehol\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam positive2b.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(positive2b\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pospektr.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pospektr\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam postclass.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(postclass\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam posteezy.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(posteezy\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam potolokelekor.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(potolokelekor\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam povodok-shop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(povodok\\-shop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam powitania.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(powitania\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pozdravleniya-c.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pozdravleniya\\-c\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pozdrawleniya.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pozdrawleniya\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pozdrawleniya.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pozdrawleniya\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pozvonim.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pozvonim\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pp-budpostach.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pp\\-budpostach\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pravoholding.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pravoholding\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam predmety.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(predmety\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prezidentshop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prezidentshop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam priceg.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(priceg\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pricheskaonline.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pricheskaonline\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pricheski-video.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pricheski\\-video\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam primfootball.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(primfootball\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam primoblog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(primoblog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam princeadvantagesales.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(princeadvantagesales\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam print-technology.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(print\\-technology\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam printie.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(printie\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam printingpeach.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(printingpeach\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam priora-2.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(priora\\-2\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam privatbank46.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(privatbank46\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam private-service.best\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(private\\-service\\.best)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam privatov-zapisi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(privatov\\-zapisi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam privhosting.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(privhosting\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prizesk.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prizesk\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prizrn.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prizrn\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prlog.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prlog\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pro-okis.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pro\\-okis\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam probenzo.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(probenzo\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam procrafts.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(procrafts\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prodaemdveri.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prodaemdveri\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam producm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(producm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prodvigator.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prodvigator\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prodvigator.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prodvigator\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam proekt-gaz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(proekt\\-gaz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam proekt-mos.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(proekt\\-mos\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam professionalsolutions.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(professionalsolutions\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam professionalwritingservices15.blogspot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(professionalwritingservices15\\.blogspot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam profnastil-moscow.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(profnastil\\-moscow\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam proftests.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(proftests\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam progressive-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(progressive\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prohoster.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prohoster\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prointer.net.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prointer\\.net\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prointer.net.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prointer\\.net\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam projectforte.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(projectforte\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam projefrio.com.br\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(projefrio\\.com\\.br)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prokotov.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prokotov\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prom23.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prom23\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prombudpostach.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prombudpostach\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam promodj.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(promodj\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam promoforum.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(promoforum\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam promoteapps.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(promoteapps\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam promotion-for99.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(promotion\\-for99\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pron.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pron\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pronekut.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pronekut\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam proposal-engine.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(proposal\\-engine\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam propranolol40mg.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(propranolol40mg\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam proquoshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(proquoshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prosmibank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prosmibank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-almata.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-almata\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-astana.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-astana\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-belgoroda.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-belgoroda\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-kharkova.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-kharkova\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-kiev.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-kiev\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-novgoroda.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-novgoroda\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-odessa.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-odessa\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-rostova.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-rostova\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-rostova.ru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-rostova\\.ru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-tolyatti.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-tolyatti\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-tyumeni.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-tyumeni\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostitutki-yaroslavlya.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostitutki\\-yaroslavlya\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam prostoacc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(prostoacc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam psa48.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(psa48\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam psiosale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(psiosale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pskcijdc.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pskcijdc\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam psn-card.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(psn\\-card\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam psvita.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(psvita\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam psychocryonics.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(psychocryonics\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ptashkatextil.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ptashkatextil\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ptfic.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ptfic\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam punch.media\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(punch\\.media)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam purchasepillsnorx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(purchasepillsnorx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam puteshestvennik.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(puteshestvennik\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam putevka24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(putevka24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam putitin.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(putitin\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam puzo2arbuza.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(puzo2arbuza\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam puzzleweb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(puzzleweb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam pyrodesigns.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(pyrodesigns\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam q-moto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(q\\-moto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam qcstrtvt.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(qcstrtvt\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam qexyfu.bugs3.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(qexyfu\\.bugs3\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam qitt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(qitt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam qoinex.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(qoinex\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam qtrstar.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(qtrstar\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam qualitymarketzone.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(qualitymarketzone\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam quick-seeker.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(quick\\-seeker\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam quickchange.cc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(quickchange\\.cc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam quit-smoking.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(quit\\-smoking\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam qwarckoine.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(qwarckoine\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam qwesa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(qwesa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam qxnr.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(qxnr\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam r-control.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(r\\-control\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rabot.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rabot\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rabotaetvse.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rabotaetvse\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rachelblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rachelblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam radiogambling.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(radiogambling\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rainbirds.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rainbirds\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ranedaly.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ranedaly\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rangapoker.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rangapoker\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rangjued.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rangjued\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rank-checker.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rank\\-checker\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rankchecker.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rankchecker\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ranking2017.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ranking2017\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rankings-analytics.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rankings\\-analytics\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ranksays.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ranksays\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rankscanner.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rankscanner\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ranksignals.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ranksignals\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ranksonic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ranksonic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ranksonic.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ranksonic\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ranksonic.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ranksonic\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ranksonic.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ranksonic\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rapevideosmovies.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rapevideosmovies\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rapidgator-porn.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rapidgator\\-porn\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rapidhits.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rapidhits\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rapidsites.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rapidsites\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam raschtextil.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(raschtextil\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rasteniya-vs-zombi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rasteniya\\-vs\\-zombi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ratraiser.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ratraiser\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rattan.co.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rattan\\.co\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam raymondblog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(raymondblog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam razamicroelectronics.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(razamicroelectronics\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam razborka-skoda.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(razborka\\-skoda\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rb-str.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rb\\-str\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rcb101.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rcb101\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rczhan.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rczhan\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam real-time-analytics.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(real\\-time\\-analytics\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam realnye-otzyvy.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(realnye\\-otzyvy\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam realresultslist.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(realresultslist\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam realting-moscow.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(realting\\-moscow\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam recinziireale.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(recinziireale\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam recipedays.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(recipedays\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam recipedays.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(recipedays\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rednise.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rednise\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam redraincine.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(redraincine\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam refererx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(refererx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam refpawro.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(refpawro\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam refudiatethissarah.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(refudiatethissarah\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam reginablog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(reginablog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam reginanahum.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(reginanahum\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam regionshop.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(regionshop\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam registratciya-v-moskve.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(registratciya\\-v\\-moskve\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam reklama-i-rabota.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(reklama\\-i\\-rabota\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam reklama1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(reklama1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam reklamnoe.agency\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(reklamnoe\\.agency)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam reklamuss.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(reklamuss\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam releshop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(releshop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rembash.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rembash\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remedyotc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remedyotc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remkompov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remkompov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remmling.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remmling\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remont-comp-pomosh.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remont\\-comp\\-pomosh\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remont-fridge-tv.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remont\\-fridge\\-tv\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remont-komputerov-notebook.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remont\\-komputerov\\-notebook\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remont-kvartirspb.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remont\\-kvartirspb\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remont-mobile-phones.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remont\\-mobile\\-phones\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remont-ustanovka-tehniki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remont\\-ustanovka\\-tehniki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remontgruzovik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remontgruzovik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remontvau.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remontvau\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remote-dba.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remote\\-dba\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam remotecomputingservices.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(remotecomputingservices\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rent2spb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rent2spb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rentalmaty.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rentalmaty\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam replica-watch.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(replica\\-watch\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam replicaclub.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(replicaclub\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam research.ifmo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(research\\.ifmo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam resell-seo-services.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(resell\\-seo\\-services\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam resellerclub.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(resellerclub\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam residualforlife.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(residualforlife\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam responsive-test.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(responsive\\-test\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam respublica-otel.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(respublica\\-otel\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam resurs-2012.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(resurs\\-2012\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam retreatia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(retreatia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam reversing.cc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(reversing\\.cc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam revolgc.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(revolgc\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam reyel1985.webnode.fr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(reyel1985\\.webnode\\.fr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rezeptiblud.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rezeptiblud\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rfavon.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rfavon\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rfd-split.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rfd\\-split\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rfesc.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rfesc\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rialp.getenjoyment.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rialp\\.getenjoyment\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam richinvestmonitor.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(richinvestmonitor\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rida.tokyo\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rida\\.tokyo)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam riedismall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(riedismall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rietisvi.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rietisvi\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rightenergysolutions.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rightenergysolutions\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ring4rhino.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ring4rhino\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ringporno.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ringporno\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rique.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rique\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam risparmiocasa.bz.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(risparmiocasa\\.bz\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rkmbonline.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rkmbonline\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam robocheck.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(robocheck\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam robot-forex.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(robot\\-forex\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam roleforum.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(roleforum\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam roma-kukareku.livejournal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(roma\\-kukareku\\.livejournal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam roof-city.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(roof\\-city\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam room-mebel.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(room\\-mebel\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ros-ctm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ros\\-ctm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rospromtest.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rospromtest\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rossanasaavedra.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rossanasaavedra\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rossmark.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rossmark\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rostov.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rostov\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam royal-betting.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(royal\\-betting\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam royal-casino.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(royal\\-casino\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam royal-casino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(royal\\-casino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam royal-casinos.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(royal\\-casinos\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam royal-casinos.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(royal\\-casinos\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam royal-cazino.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(royal\\-cazino\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam royal-cazino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(royal\\-cazino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam royal-investments.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(royal\\-investments\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rozalli.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rozalli\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam roznica.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(roznica\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rp9.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rp9\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rrutw.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rrutw\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rspectr.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rspectr\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ru-lk-rt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ru\\-lk\\-rt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ru-onion.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ru\\-onion\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ru-online-sberbank.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ru\\-online\\-sberbank\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ruex.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ruex\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rufreechats.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rufreechats\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ruhydraru.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ruhydraru\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ruinfocomp.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ruinfocomp\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rulate.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rulate\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rumamba.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rumamba\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam runetki-online.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(runetki\\-online\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam runovschool.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(runovschool\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam runstocks.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(runstocks\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rupolitshow.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rupolitshow\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rus-lit.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rus\\-lit\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rus-teh.narod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rus\\-teh\\.narod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ruscams-com.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ruscams\\-com\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ruscopybook.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ruscopybook\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rusenvironmental.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rusenvironmental\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rusexy.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rusexy\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rusoft-zone.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rusoft\\-zone\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ruspoety.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ruspoety\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam russia-tao.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(russia\\-tao\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam russia-today-video.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(russia\\-today\\-video\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam russian-postindex.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(russian\\-postindex\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam russian-translator.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(russian\\-translator\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam russian-videochats.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(russian\\-videochats\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam russintv.fr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(russintv\\.fr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam russkie-sochineniya.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(russkie\\-sochineniya\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam russkoe-zdorovie.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(russkoe\\-zdorovie\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rustag.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rustag\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rutor.group\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rutor\\.group)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rvtv.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rvtv\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rxshop.md\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rxshop\\.md)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam rybalka-opt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(rybalka\\-opt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam s-forum.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(s\\-forum\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam s-luna.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(s\\-luna\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sabaapress.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sabaapress\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sabinablog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sabinablog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sack.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sack\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sad-torg.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sad\\-torg\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sady-urala.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sady\\-urala\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sahohev.000host.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sahohev\\.000host\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam saitevpatorii.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(saitevpatorii\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sakhboard.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sakhboard\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sale-japan.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sale\\-japan\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam saletool.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(saletool\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam saltspray.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(saltspray\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam salutmontreal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(salutmontreal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam samanthablog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(samanthablog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam samara-airport.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(samara\\-airport\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam samara-comfort.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(samara\\-comfort\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam samchist.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(samchist\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam samlaurabrown.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(samlaurabrown\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam samo-soznanie.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(samo\\-soznanie\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam samogonius.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(samogonius\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sanatorrii.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sanatorrii\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sanjosestartups.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sanjosestartups\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam santaren.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(santaren\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam santasgift.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(santasgift\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam santechnik.jimdo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(santechnik\\.jimdo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam santehnovich.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(santehnovich\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sapaship.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sapaship\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sarafangel.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sarafangel\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sarahmilne.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sarahmilne\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam saratov.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(saratov\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sarf3omlat.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sarf3omlat\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sashagreyblog.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sashagreyblog\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam saudegoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(saudegoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sauna-v-ufe.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sauna\\-v\\-ufe\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sauni-lipetsk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sauni\\-lipetsk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sauni-moskva.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sauni\\-moskva\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam savetubevideo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(savetubevideo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam savetubevideo.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(savetubevideo\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam savne.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(savne\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sax-sex.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sax\\-sex\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sbdl.no\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sbdl\\.no)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sbornik-zakonov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sbornik\\-zakonov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sc-specialhost.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sc\\-specialhost\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-alex.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-alex\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-alexa.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-alexa\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-andrew.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-andrew\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-barak.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-barak\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-brian.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-brian\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-don.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-don\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-donald.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-donald\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-elena.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-elena\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-fred.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-fred\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-george.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-george\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-irvin.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-irvin\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-ivan.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-ivan\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-jack.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-jack\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-jane.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-jane\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-jess.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-jess\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-jessica.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-jessica\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-john.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-john\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-josh.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-josh\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-julia.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-julia\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-julianna.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-julianna\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-margo.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-margo\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-mark.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-mark\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-marwin.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-marwin\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-mary.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-mary\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-nelson.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-nelson\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-olga.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-olga\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-viktor.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-viktor\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-walt.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-walt\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-walter.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-walter\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scanner-willy.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scanner\\-willy\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scansafe.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scansafe\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scat.porn\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scat\\.porn)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scenarii-1-sentyabrya.uroki.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scenarii\\-1\\-sentyabrya\\.uroki\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam school-diplomat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(school\\-diplomat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sciedsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sciedsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam score-prime-web-service.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(score\\-prime\\-web\\-service\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam screen-led.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(screen\\-led\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam screentoolkit.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(screentoolkit\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam scripted.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(scripted\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sdelai-prosto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sdelai\\-prosto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sdelatmebel.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sdelatmebel\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sdi-pme.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sdi\\-pme\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam search-error.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(search\\-error\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam search-helper.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(search\\-helper\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam searchencrypt.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(searchencrypt\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam searchlock.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(searchlock\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seccioncontrabajo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seccioncontrabajo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam secret.xn--oogle-wmc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(secret\\.xn\\-\\-oogle\\-wmc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam secretscook.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(secretscook\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam security-corporation.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(security\\-corporation\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam securityallianceservices.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(securityallianceservices\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam see-your-website-here.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(see\\-your\\-website\\-here\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seekanvdoo22.live\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seekanvdoo22\\.live)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seisasale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seisasale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seksotur.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seksotur\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sel-hoz.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sel\\-hoz\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam selfhotdog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(selfhotdog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sell-fb-group-here.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sell\\-fb\\-group\\-here\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam semalt.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(semalt\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam semalt.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(semalt\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam semalt.semalt.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(semalt\\.semalt\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam semaltmedia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(semaltmedia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam semxiu.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(semxiu\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam senacertificados.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(senacertificados\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam senger.atspace.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(senger\\.atspace\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seo-2-0.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seo\\-2\\-0\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seo-b2b.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seo\\-b2b\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seo-platform.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seo\\-platform\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seo-services-b2b.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seo\\-services\\-b2b\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seo-services-wordpress.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seo\\-services\\-wordpress\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seo-smm.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seo\\-smm\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seo-tips.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seo\\-tips\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seo-traffic.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seo\\-traffic\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seoanalyses.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seoanalyses\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seobook.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seobook\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seocheckupx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seocheckupx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seocheckupx.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seocheckupx\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seoexperimenty.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seoexperimenty\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seojokes.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seojokes\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seokicks.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seokicks\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seopub.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seopub\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seoriseome.netlify.app\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seoriseome\\.netlify\\.app)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seoservices2018.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seoservices2018\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam serenamall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(serenamall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam serialsway.ucoz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(serialsway\\.ucoz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam serialsx.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(serialsx\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam servemlixo.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(servemlixo\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam servisural.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(servisural\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam serw.clicksor.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(serw\\.clicksor\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam seryeznie-znakomstva.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(seryeznie\\-znakomstva\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam setioweb.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(setioweb\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sex-dating.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sex\\-dating\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sex-porno.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sex\\-porno\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sex-spying.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sex\\-spying\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sex-videochats.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sex\\-videochats\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexkrasivo.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexkrasivo\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexpornotales.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexpornotales\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexreliz.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexreliz\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexreliz.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexreliz\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexsaoy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexsaoy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexuria.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexuria\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexvideo-sex.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexvideo\\-sex\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexvporno.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexvporno\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexwife.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexwife\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexy-girl-chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexy\\-girl\\-chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexyali.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexyali\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexyteens.hol.es\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexyteens\\.hol\\.es)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sexytrend.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sexytrend\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sfd-chess.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sfd\\-chess\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shagtomsk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shagtomsk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shakhtar-doneck.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shakhtar\\-doneck\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shamcisale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shamcisale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shanscasino1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shanscasino1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam share-button.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(share\\-button\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam share-buttons-for-free.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(share\\-buttons\\-for\\-free\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam share-buttons.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(share\\-buttons\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sharebutton.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sharebutton\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sharebutton.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sharebutton\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sharebutton.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sharebutton\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sharebutton.to\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sharebutton\\.to)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sharemyfile.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sharemyfile\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shariki-zuma-lines.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shariki\\-zuma\\-lines\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shcrose.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shcrose\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sheki-spb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sheki\\-spb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shemy-vishivki.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shemy\\-vishivki\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shiksabd.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shiksabd\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shinikiev.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shinikiev\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ship-marvel.co.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ship\\-marvel\\.co\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shisenshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shisenshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shisha-swag.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shisha\\-swag\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shlyahten.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shlyahten\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shnyagi.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shnyagi\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shodanhq.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shodanhq\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shop-electron.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shop\\-electron\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shop-garena.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shop\\-garena\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shop.garena.ru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shop\\.garena\\.ru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shop.xz618.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shop\\.xz618\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shop2hydra.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shop2hydra\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shop4fit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shop4fit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shopfishing.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shopfishing\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shoppinglocation.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shoppinglocation\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shoppingmiracles.co.uk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shoppingmiracles\\.co\\.uk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shoprybalka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shoprybalka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shops-ru.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shops\\-ru\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shopsellcardsdumps.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shopsellcardsdumps\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shopvilleroyboch.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shopvilleroyboch\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shopwme.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shopwme\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shtaketniki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shtaketniki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shtormmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shtormmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam shulepov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(shulepov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sib-kukla.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sib\\-kukla\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sibecoprom.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sibecoprom\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sibkukla.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sibkukla\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sideeffectsoftizanidine.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sideeffectsoftizanidine\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sign-service.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sign\\-service\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam signx.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(signx\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sihugoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sihugoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam silverage.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(silverage\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam silvergull.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(silvergull\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam silvermature.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(silvermature\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sim-dealer.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sim\\-dealer\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sim-service.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sim\\-service\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam similarmoviesdb.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(similarmoviesdb\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam simoncinicancertherapy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(simoncinicancertherapy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam simple-share-buttons.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(simple\\-share\\-buttons\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam simplepooltips.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(simplepooltips\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sims-sims.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sims\\-sims\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sinel.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sinel\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sinestesia.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sinestesia\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam singularwebs.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(singularwebs\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sinhronperevod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sinhronperevod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam siongetadsincome.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(siongetadsincome\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sirhoutlet.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sirhoutlet\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam siritshop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(siritshop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sisiynas.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sisiynas\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam site-auditor.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(site\\-auditor\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam site-speed-check.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(site\\-speed\\-check\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam site-speed-checker.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(site\\-speed\\-checker\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam site3.free-share-buttons.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(site3\\.free\\-share\\-buttons\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam site5.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(site5\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam siteexpress.co.il\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(siteexpress\\.co\\.il)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam siteripz.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(siteripz\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sitesadd.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sitesadd\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sitevaluation.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sitevaluation\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sitevaluation.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sitevaluation\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sivs.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sivs\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sjmsw.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sjmsw\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sk.golden-praga.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sk\\.golden\\-praga\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ski-centers.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ski\\-centers\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam skidku.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(skidku\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam skinali.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(skinali\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam skinali.photo-clip.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(skinali\\.photo\\-clip\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sklad-24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sklad\\-24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam skladvaz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(skladvaz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sky-mine.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sky\\-mine\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam skylta.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(skylta\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sladkoevideo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sladkoevideo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slashpet.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slashpet\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slavic-magic.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slavic\\-magic\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slavkokacunko.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slavkokacunko\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sledstvie-veli.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sledstvie\\-veli\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slftsdybbg.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slftsdybbg\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slkrm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slkrm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slomm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slomm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slonechka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slonechka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sloopyjoes.com.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sloopyjoes\\.com\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slotron.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slotron\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slow-website.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slow\\-website\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam slujbauborki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(slujbauborki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam smailik.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(smailik\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam small-game.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(small\\-game\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam small-games.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(small\\-games\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam smartpet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(smartpet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam smartphonediscount.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(smartphonediscount\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sms2x2.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sms2x2\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam smstraf.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(smstraf\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam smt4.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(smt4\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam smzt.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(smzt\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam snabs.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(snabs\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam snaiper-bg.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(snaiper\\-bg\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sneakerfreaker.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sneakerfreaker\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam snegozaderzhatel.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(snegozaderzhatel\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam snip.to\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(snip\\.to)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam snip.tw\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(snip\\.tw)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam snjatie-geroinovoy-lomki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(snjatie\\-geroinovoy\\-lomki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam snomer1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(snomer1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam snyatie-lomki-v-stacionare.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(snyatie\\-lomki\\-v\\-stacionare\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soaksoak.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soaksoak\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soblaznu.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soblaznu\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soc-econom-problems.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soc\\-econom\\-problems\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soc-proof.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soc\\-proof\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam socas.pluto.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(socas\\.pluto\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sochi-3d.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sochi\\-3d\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-button.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-button\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-aa.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-aa\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-aaa.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-aaa\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-bb.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-bb\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-bbb.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-bbb\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-cc.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-cc\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-ccc.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-ccc\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-dd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-dd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-ddd.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-ddd\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-ee.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-ee\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-eee.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-eee\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-ff.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-ff\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-fff.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-fff\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-gg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-gg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-ggg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-ggg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-hh.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-hh\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-ii.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-ii\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons-iii.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\-iii\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-buttons.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-buttons\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-fun.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-fun\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-s-ggg.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-s\\-ggg\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-s-hhh.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-s\\-hhh\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-s-iii.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-s\\-iii\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-search.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-search\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-traffic-1.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-traffic\\-1\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-traffic-2.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-traffic\\-2\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-traffic-3.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-traffic\\-3\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-traffic-4.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-traffic\\-4\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-traffic-5.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-traffic\\-5\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-traffic-6.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-traffic\\-6\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-traffic-7.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-traffic\\-7\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-vestnik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-vestnik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam social-widget.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(social\\-widget\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam socialbookmarksubmission.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(socialbookmarksubmission\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam socialbutton.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(socialbutton\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam socialbuttons.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(socialbuttons\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam socialine.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(socialine\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam socialseet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(socialseet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam socialtrade.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(socialtrade\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sofit-dmd.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sofit\\-dmd\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soft-program.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soft\\-program\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam softomix.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(softomix\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam softomix.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(softomix\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam softomix.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(softomix\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam softomix.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(softomix\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam softtor.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(softtor\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam softxaker.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(softxaker\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sohoindia.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sohoindia\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soki.tv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soki\\.tv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam solartek.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(solartek\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam solitaire-game.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(solitaire\\-game\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam solnplast.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(solnplast\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sonata-arctica.wz.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sonata\\-arctica\\.wz\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam songoo.wz.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(songoo\\.wz\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sonnikforme.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sonnikforme\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sonyelektronik.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sonyelektronik\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sosdepotdebilan.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sosdepotdebilan\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sotkal.lark.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sotkal\\.lark\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soundfrost.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soundfrost\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soup.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soup\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam souvenirua.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(souvenirua\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sovetogorod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sovetogorod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sovetskie-plakaty.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sovetskie\\-plakaty\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soviet-portal.do.am\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soviet\\-portal\\.do\\.am)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sowhoz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sowhoz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam soyuzexpedition.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(soyuzexpedition\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sp-laptop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sp\\-laptop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sp-zakupki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sp\\-zakupki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam space2019.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(space2019\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spacebarnot.work\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spacebarnot\\.work)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spain-poetry.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spain\\-poetry\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spartania.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spartania\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spb-plitka.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spb\\-plitka\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spb-scenar.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spb\\-scenar\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spbchampionat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spbchampionat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam special-porn.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(special\\-porn\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam specstroy36.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(specstroy36\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam speedup-my.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(speedup\\-my\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spin2016.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spin2016\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sport-video-obzor.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sport\\-video\\-obzor\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sportbetfair.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sportbetfair\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sportobzori.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sportobzori\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sportwizard.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sportwizard\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spravka130.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spravka130\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spravkavspb.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spravkavspb\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spravkavspb.work\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spravkavspb\\.work)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sprawka-help.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sprawka\\-help\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spscmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spscmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spuemonti.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spuemonti\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spy-app.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spy\\-app\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam spy-sts.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(spy\\-sts\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sqadia.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sqadia\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam squarespace.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(squarespace\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam squidoo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(squidoo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam srecorder.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(srecorder\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sribno.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sribno\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ssn.is\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ssn\\.is)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sssexxx.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sssexxx\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ssve.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ssve\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam st-komf.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(st\\-komf\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sta-grand.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sta\\-grand\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stairliftstrue.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stairliftstrue\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam star61.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(star61\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stardevine.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stardevine\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stariy-baku.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stariy\\-baku\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam start.myplaycity.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(start\\.myplaycity\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam startraffic.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(startraffic\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam startufa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(startufa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam startwp.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(startwp\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stat.lviv.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stat\\.lviv\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam statashop.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(statashop\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam static.seders.website\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(static\\.seders\\.website)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam statustroll.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(statustroll\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stauga.altervista.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stauga\\.altervista\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stavimdveri.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stavimdveri\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam steame.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(steame\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam steelmaster.lv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(steelmaster\\.lv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stiralkovich.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stiralkovich\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stocktwists.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stocktwists\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stoki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stoki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stoletie.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stoletie\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stoliar.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stoliar\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stomatologi.moscow\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stomatologi\\.moscow)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stop-nark.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stop\\-nark\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stop-zavisimost.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stop\\-zavisimost\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam store-rx.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(store\\-rx\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam strady.org.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(strady\\.org\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam strana-krasoty.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(strana\\-krasoty\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam strana-solnca.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(strana\\-solnca\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stream-tds.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stream\\-tds\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam streetfire.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(streetfire\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam streetfooduncovered.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(streetfooduncovered\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam streha-metalko.si\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(streha\\-metalko\\.si)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam strigkaomsk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(strigkaomsk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroi-24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroi\\-24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroicol.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroicol\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroimajor.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroimajor\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroiminsk.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroiminsk\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroiminsk.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroiminsk\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stromerrealty.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stromerrealty\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam strongholdsb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(strongholdsb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam strongtools.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(strongtools\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroy-matrix.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroy\\-matrix\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroyalp.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroyalp\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroydetali.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroydetali\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroyka-gid.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroyka\\-gid\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroyka47.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroyka47\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stroymonolit.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stroymonolit\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam studentguide.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(studentguide\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam studiofaca.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(studiofaca\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stuff-about-money.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stuff\\-about\\-money\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stuffhydra.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stuffhydra\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam stylecaster.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(stylecaster\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam styro.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(styro\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam su1ufa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(su1ufa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam success-seo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(success\\-seo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam suckoutlet.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(suckoutlet\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sudachitravel.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sudachitravel\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sugarkun.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sugarkun\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sugvant.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sugvant\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sundrugstore.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sundrugstore\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam super-seo-guru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(super\\-seo\\-guru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam superiends.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(superiends\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam supermama.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(supermama\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam supermesta.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(supermesta\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam supermodni.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(supermodni\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam supernew.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(supernew\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam superoboi.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(superoboi\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam superpages.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(superpages\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam superslots-casino.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(superslots\\-casino\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam superslots-casino.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(superslots\\-casino\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam superslots-cazino.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(superslots\\-cazino\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam superslots-cazino.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(superslots\\-cazino\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam superslotz-casino.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(superslotz\\-casino\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam superslotz-cazino.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(superslotz\\-cazino\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam supertraffic.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(supertraffic\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam supervesti.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(supervesti\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam surflinksmedical.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(surflinksmedical\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam susanholtphotography.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(susanholtphotography\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam suzanneboswell.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(suzanneboswell\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svadba-teplohod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svadba\\-teplohod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svarbit.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svarbit\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svarog-jez.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svarog\\-jez\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svensk-poesi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svensk\\-poesi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svet-depo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svet\\-depo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svetka.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svetka\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svetlotorg.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svetlotorg\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svetoch.moscow\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svetoch\\.moscow)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svetodiodoff.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svetodiodoff\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svoimi-rukamy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svoimi\\-rukamy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam svs-avto.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(svs\\-avto\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam swagbucks.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(swagbucks\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam swaplab.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(swaplab\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sweet.tv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sweet\\.tv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam sygraem.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(sygraem\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam szansadlarolnikow.com.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(szansadlarolnikow\\.com\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam t-machinery.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(t\\-machinery\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam t-rec.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(t\\-rec\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam t3chtonic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(t3chtonic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam taartstore.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(taartstore\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tagmeanvice.live\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tagmeanvice\\.live)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam taihouse.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(taihouse\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tam-gde-more.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tam\\-gde\\-more\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tamada69.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tamada69\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tammyblog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tammyblog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam targetpay.nl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(targetpay\\.nl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tasteidea.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tasteidea\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tastyfoodideas.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tastyfoodideas\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tattoo-stickers.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tattoo\\-stickers\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tattoo33.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tattoo33\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tattooha.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tattooha\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam taximytishi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(taximytishi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tccp.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tccp\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tcenavoprosa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tcenavoprosa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tcsinksale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tcsinksale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tcyh.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tcyh\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam td-33.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(td\\-33\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam td-abs.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(td\\-abs\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam td-l-market.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(td\\-l\\-market\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam td-perimetr.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(td\\-perimetr\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tdbatik.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tdbatik\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tds-west.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tds\\-west\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam teastory.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(teastory\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam techart24.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(techart24\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam technika-remont.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(technika\\-remont\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam technopellet.gr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(technopellet\\.gr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tecspb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tecspb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tedxrj.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tedxrj\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tedy.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tedy\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam teedle.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(teedle\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tehngr.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tehngr\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam telegramdownload10.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(telegramdownload10\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam telesvoboda.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(telesvoboda\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam telfer.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(telfer\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam teman.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(teman\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tennis-bet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tennis\\-bet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tentcomplekt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tentcomplekt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam teplohod-gnezdo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(teplohod\\-gnezdo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam teplokomplex.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(teplokomplex\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam teplolidoma.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(teplolidoma\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam terapist.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(terapist\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam teresablog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(teresablog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tesla-audit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tesla\\-audit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam teslathemes.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(teslathemes\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam test-extra-full-stack-services.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(test\\-extra\\-full\\-stack\\-services\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam test-prime-smm-service.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(test\\-prime\\-smm\\-service\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam test.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(test\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam texbaza.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(texbaza\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam texnika.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(texnika\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tgsubs.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tgsubs\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tgtclick.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tgtclick\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thaimassage-slon.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thaimassage\\-slon\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thaoduoctoc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thaoduoctoc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam the-torrent-tracker.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(the\\-torrent\\-tracker\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam the-usa-games.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(the\\-usa\\-games\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam the-world.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(the\\-world\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam theautoprofit.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(theautoprofit\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thebluenoodle.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thebluenoodle\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thecoral.com.br\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thecoral\\.com\\.br)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thedownloadfreeonlinegames.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thedownloadfreeonlinegames\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thedownloadfromwarez.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thedownloadfromwarez\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thefds.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thefds\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thegreensociety.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thegreensociety\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam theguardlan.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(theguardlan\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam theheroes.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(theheroes\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thejournal.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thejournal\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thelotter.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thelotter\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thepokertimer.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thepokertimer\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam therealshop.exaccess.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(therealshop\\.exaccess\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thesensehousehotel.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thesensehousehotel\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thesmartsearch.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thesmartsearch\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thewomenlife.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thewomenlife\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thiegs.reco.ws\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thiegs\\.reco\\.ws)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam thin.me.pn\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(thin\\.me\\.pn)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tiandeural.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tiandeural\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tiens2010.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tiens2010\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam timeallnews.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(timeallnews\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam timer4web.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(timer4web\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam timetorelax.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(timetorelax\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam timmy.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(timmy\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tip8.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tip8\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidine4mg.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidine4mg\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidine4mgprice.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidine4mgprice\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidine4mgstreetprice.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidine4mgstreetprice\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidine4mgstreetvalue.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidine4mgstreetvalue\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidine4mgtablets.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidine4mgtablets\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidine4mguses.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidine4mguses\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidine6mg.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidine6mg\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineandcipro.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineandcipro\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineandgabapentin.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineandgabapentin\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineandhydrocodone.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineandhydrocodone\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinecapsules.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinecapsules\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinecost.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinecost\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinedosage.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinedosage\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinedosageforsleep.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinedosageforsleep\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinedruginteractions.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinedruginteractions\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinedrugtest.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinedrugtest\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineduringpregnancy.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineduringpregnancy\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinefibromyalgia.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinefibromyalgia\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineformigraines.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineformigraines\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineforopiatewithdrawal.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineforopiatewithdrawal\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehcl2mg.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehcl2mg\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehcl2mgsideeffects.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehcl2mgsideeffects\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehcl2mgtablet.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehcl2mgtablet\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehcl4mgisitanarcotic.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehcl4mgisitanarcotic\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehcl4mgtab.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehcl4mgtab\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehcl4mgtabinfo.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehcl4mgtabinfo\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehcl4mgtablet.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehcl4mgtablet\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehclsideeffects.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehclsideeffects\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehydrochloride2mg.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehydrochloride2mg\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinehydrochloride4mgstreetvalue.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinehydrochloride4mgstreetvalue\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineinfo.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineinfo\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineingredients.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineingredients\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineinteractions.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineinteractions\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinemusclerelaxant.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinemusclerelaxant\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinenarcotic.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinenarcotic\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineonline.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineonline\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineoral.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineoral\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineorflexeril.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineorflexeril\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinepain.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinepain\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinepills.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinepills\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinerecreationaluse.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinerecreationaluse\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinerestlesslegsyndrome.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinerestlesslegsyndrome\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineshowupondrugtest.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineshowupondrugtest\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinesideeffects.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinesideeffects\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinesideeffectsweightloss.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinesideeffectsweightloss\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinesleepaid.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinesleepaid\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinestreetprice.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinestreetprice\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinestreetvalue.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinestreetvalue\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidineusedfor.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidineusedfor\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinevscyclobenzaprine.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinevscyclobenzaprine\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinevssoma.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinevssoma\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinevsvalium.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinevsvalium\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinewithdrawal.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinewithdrawal\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinewithdrawalsymptoms.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinewithdrawalsymptoms\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tizanidinezanaflex.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tizanidinezanaflex\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tkanorganizma.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tkanorganizma\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tksn.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tksn\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tocan.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tocan\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tocan.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tocan\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tokshow.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tokshow\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam toloka.hurtom.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(toloka\\.hurtom\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tomatis.gospartner.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tomatis\\.gospartner\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tomck.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tomck\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tommysautomotivecare.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tommysautomotivecare\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam top-gan.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(top\\-gan\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam top-instagram.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(top\\-instagram\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam top-kasyna.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(top\\-kasyna\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam top-l2.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(top\\-l2\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam top1-seo-service.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(top1\\-seo\\-service\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam top10-online-games.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(top10\\-online\\-games\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam top10-way.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(top10\\-way\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam top250movies.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(top250movies\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam top8.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(top8\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam topgurudeals.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(topgurudeals\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam topmebeltorg.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(topmebeltorg\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam topmira.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(topmira\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam toposvita.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(toposvita\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam topquality.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(topquality\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam topseoservices.co\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(topseoservices\\.co)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam topshef.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(topshef\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam topvidos.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(topvidos\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tor.vc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tor\\.vc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam torobrand.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(torobrand\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam torontoplumbinggroup.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(torontoplumbinggroup\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam torospa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(torospa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam torrentgamer.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(torrentgamer\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam torrentred.games\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(torrentred\\.games)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam torrents-tracker.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(torrents\\-tracker\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam torrnada.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(torrnada\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam torture.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(torture\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam totppgoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(totppgoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam touchmods.fr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(touchmods\\.fr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tourburlington.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tourburlington\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tovaroboom.vast.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tovaroboom\\.vast\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tpu.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tpu\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam track-rankings.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(track\\-rankings\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tracker24-gps.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tracker24\\-gps\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trade365.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trade365\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traderzplanet.co.in\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traderzplanet\\.co\\.in)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trafaret74.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trafaret74\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trafers.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trafers\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traffic-cash.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traffic\\-cash\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traffic-paradise.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traffic\\-paradise\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traffic2cash.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traffic2cash\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traffic2cash.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traffic2cash\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traffic2cash.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traffic2cash\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traffic2money.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traffic2money\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trafficbot.life\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trafficbot\\.life)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trafficbot4free.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trafficbot4free\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trafficdrive.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trafficdrive\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trafficgenius.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trafficgenius\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trafficmonetize.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trafficmonetize\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trafficmonetizer.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trafficmonetizer\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trafficstudio.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trafficstudio\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traffictomoney.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traffictomoney\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trahvid.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trahvid\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tramadolandtizanidine.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tramadolandtizanidine\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam transit.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(transit\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam transsex-videochat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(transsex\\-videochat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traphouselatino.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traphouselatino\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam travel-semantics.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(travel\\-semantics\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam travgoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(travgoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam traxdom.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(traxdom\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trex-casino.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trex\\-casino\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trex.casino\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trex\\.casino)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tri-slona.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tri\\-slona\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trick-negotiation-cup-wonder.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trick\\-negotiation\\-cup\\-wonder\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tricolortv-online.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tricolortv\\-online\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trieste.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trieste\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trion.od.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trion\\.od\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trion.od.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trion\\.od\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam triumf-realty.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(triumf\\-realty\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trk-4.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trk\\-4\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam trubywriting.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(trubywriting\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam truck-spite-lawyer-activity.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(truck\\-spite\\-lawyer\\-activity\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam truebeauty.cc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(truebeauty\\.cc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tsatu.edu.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tsatu\\.edu\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tsc-koleso.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tsc\\-koleso\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tsstcorpcddvdwshbbdriverfb.aircus.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tsstcorpcddvdwshbbdriverfb\\.aircus\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ttechno.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ttechno\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tuberkulezanet.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tuberkulezanet\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tuberkuleznik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tuberkuleznik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tudusale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tudusale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tula.mdverey.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tula\\.mdverey\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tuningdom.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tuningdom\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tupper-posuda.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tupper\\-posuda\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tupper-shop.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tupper\\-shop\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam turbo-suslik.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(turbo\\-suslik\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam turist-strani.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(turist\\-strani\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam turkeyreport.tk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(turkeyreport\\.tk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam turvgori.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(turvgori\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tvand.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tvand\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tvfru.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tvfru\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tvgoals.tv\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tvgoals\\.tv)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tvoystartup.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tvoystartup\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam twincitiescarservice.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(twincitiescarservice\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam twojebook.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(twojebook\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam twsufa.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(twsufa\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam twu.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(twu\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tytoona.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tytoona\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam tyumen.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(tyumen\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam u-cheats.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(u\\-cheats\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam u17795.netangels.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(u17795\\.netangels\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ua-company.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ua\\-company\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ua.tc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ua\\.tc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uaecdsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uaecdsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uasb.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uasb\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ublaze.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ublaze\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ucanfly.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ucanfly\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ucban.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ucban\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uchebavchehii.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uchebavchehii\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uchil.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uchil\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ucoz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ucoz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ucsfstore.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ucsfstore\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ucsol.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ucsol\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uctraffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uctraffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam udav.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(udav\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ufa.dienai.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ufa\\.dienai\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ufa.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ufa\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ufolabs.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ufolabs\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uginekologa.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uginekologa\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ukrainian-poetry.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ukrainian\\-poetry\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ukrcargo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ukrcargo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ukrtvory.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ukrtvory\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ukstmalls.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ukstmalls\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ul-potolki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ul\\-potolki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ultimateuninstall.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ultimateuninstall\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam um-razum.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(um\\-razum\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam umg-stroy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(umg\\-stroy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam umityangin.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(umityangin\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam undergroundcityphoto.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(undergroundcityphoto\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uni.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uni\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam unibus.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(unibus\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam unimodemhalfduplefw.pen.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(unimodemhalfduplefw\\.pen\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uniqgen.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uniqgen\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam unitygame3d.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(unitygame3d\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam univerfiles.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(univerfiles\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam unlimitdocs.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(unlimitdocs\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam unmaroll.ya.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(unmaroll\\.ya\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam unpredictable.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(unpredictable\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam upcronline.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(upcronline\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptime-alpha.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptime\\-alpha\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptime-as.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptime\\-as\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptime-beta.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptime\\-beta\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptime-delta.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptime\\-delta\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptime-eu.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptime\\-eu\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptime-gamma.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptime\\-gamma\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptime-us.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptime\\-us\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptime.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptime\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptimebot.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptimebot\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uptimechecker.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uptimechecker\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ural-buldozer.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ural\\-buldozer\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam urbanblog.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(urbanblog\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam urbanchr.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(urbanchr\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam urblog.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(urblog\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam urccvfmc.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(urccvfmc\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam urlopener.blogspot.com.au\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(urlopener\\.blogspot\\.com\\.au)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam urlopener.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(urlopener\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam urlumbrella.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(urlumbrella\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uruto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uruto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam us-america.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(us\\-america\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam usadacha.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(usadacha\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam userequip.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(userequip\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uslugi-tatarstan.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uslugi\\-tatarstan\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ussearche.cf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ussearche\\.cf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ustion.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ustion\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uterkysale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uterkysale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam utrolive.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(utrolive\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uusmsale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uusmsale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uyut-dom.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uyut\\-dom\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uyutmaster73.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uyutmaster73\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uzpaket.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uzpaket\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam uzungil.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(uzungil\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam v-casino.fun\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(v\\-casino\\.fun)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam v-casino.host\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(v\\-casino\\.host)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam v-casino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(v\\-casino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam v-casino.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(v\\-casino\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam v-casino.website\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(v\\-casino\\.website)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam v-casino.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(v\\-casino\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam v-cazino.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(v\\-cazino\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam v-cazino.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(v\\-cazino\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vabasa.inwtrade.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vabasa\\.inwtrade\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vaderenergy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vaderenergy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vadimkravtcov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vadimkravtcov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam valid-cc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(valid\\-cc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam validccseller.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(validccseller\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam validus.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(validus\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam valkiria-tk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(valkiria\\-tk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vanessablog.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vanessablog\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vape-x.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vape\\-x\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vapmedia.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vapmedia\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vapsy.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vapsy\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vardenafil20.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vardenafil20\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam varikozdok.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(varikozdok\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vashsvet.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vashsvet\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vavada-casino.host\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vavada\\-casino\\.host)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vavada-casino.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vavada\\-casino\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vavada-cazino.host\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vavada\\-cazino\\.host)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vavada-cazino.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vavada\\-cazino\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vavilone.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vavilone\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vbabule.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vbabule\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vbikse.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vbikse\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vc.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vc\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vchulkah.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vchulkah\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vduplo.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vduplo\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam veerotech.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(veerotech\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vegascosmetics.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vegascosmetics\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vekzdorov.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vekzdorov\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam veles.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(veles\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam velobikestock.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(velobikestock\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam veloland.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(veloland\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam venta-prom.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(venta\\-prom\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ventelnos.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ventelnos\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ventopt.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ventopt\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam veronicablog.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(veronicablog\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vescenter.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vescenter\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam veselokloun.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(veselokloun\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vesnatehno.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vesnatehno\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vesnatehno.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vesnatehno\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vesta-lada.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vesta\\-lada\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vetbvc.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vetbvc\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vezdevoz.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vezdevoz\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vezuviy.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vezuviy\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vgoloveboli.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vgoloveboli\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam via-gra.webstarts.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(via\\-gra\\.webstarts\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam viagra-soft.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(viagra\\-soft\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam viagra.pp.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(viagra\\.pp\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam viagroid.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(viagroid\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam viandpet.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(viandpet\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam viberdownload10.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(viberdownload10\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam video--production.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(video\\-\\-production\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam video-chat.in\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(video\\-chat\\.in)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam video-girl-online.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(video\\-girl\\-online\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam video-hollywood.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(video\\-hollywood\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam video-woman.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(video\\-woman\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videochat-dating.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videochat\\-dating\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videochat.guru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videochat\\.guru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videochat.mx\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videochat\\.mx)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videochat.tv.br\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videochat\\.tv\\.br)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videochat.world\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videochat\\.world)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videochaty.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videochaty\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videofrost.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videofrost\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videofrost.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videofrost\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videokrik.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videokrik\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videos-for-your-business.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videos\\-for\\-your\\-business\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videosbox.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videosbox\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videotop.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videotop\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam videotuber.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(videotuber\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vidzwap.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vidzwap\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam viel.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(viel\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vigrx-original.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vigrx\\-original\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam viktoria-center.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(viktoria\\-center\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vilingstore.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vilingstore\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vinsit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vinsit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vip-dom.in\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vip\\-dom\\.in)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vip-parfumeria.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vip\\-parfumeria\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vipsiterip.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vipsiterip\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam virtchats.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(virtchats\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam virtual-love-video.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(virtual\\-love\\-video\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam virtual-sex-chat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(virtual\\-sex\\-chat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam virtual-sex-time.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(virtual\\-sex\\-time\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam virtual-sex-videochat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(virtual\\-sex\\-videochat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam virtual-zaim.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(virtual\\-zaim\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam virtualbb.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(virtualbb\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam virus-schutzmasken.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(virus\\-schutzmasken\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam visa-china.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(visa\\-china\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam visa-pasport.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(visa\\-pasport\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vita.com.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vita\\.com\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vitanail.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vitanail\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam viven.host.sk\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(viven\\.host\\.sk)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vizag.kharkov.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vizag\\.kharkov\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vk-mus.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vk\\-mus\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vk.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vk\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vkak.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vkak\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vkonche.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vkonche\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vkontaktemusic.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vkontaktemusic\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vkontarkte.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vkontarkte\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vksaver-all.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vksaver\\-all\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vksex.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vksex\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vladhistory.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vladhistory\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vladtime.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vladtime\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vltai.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vltai\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vmnmvzsmn.over-blog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vmnmvzsmn\\.over\\-blog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vod.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vod\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vodabur.by\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vodabur\\.by)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vodaodessa.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vodaodessa\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam voditeltrezviy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(voditeltrezviy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vodkoved.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vodkoved\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam volgograd.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(volgograd\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam volond.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(volond\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam voloomoney.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(voloomoney\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam volume-pills.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(volume\\-pills\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam voprosotvet24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(voprosotvet24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam voronezh.xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(voronezh\\.xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vostgard.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vostgard\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vostoktrade.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vostoktrade\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vote-up.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vote\\-up\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vozbujdenie.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vozbujdenie\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vpdr.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vpdr\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vpnhowto.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vpnhowto\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vrazbor59.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vrazbor59\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vriel.batcave.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vriel\\.batcave\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vrnelectro.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vrnelectro\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vrnhnmall.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vrnhnmall\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vrotike.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vrotike\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vsdelke.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vsdelke\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vseigru.one\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vseigru\\.one)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vseigry.fun\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vseigry\\.fun)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vseprobrak.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vseprobrak\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vsesubwaysurfers.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vsesubwaysurfers\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vseuznaem.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vseuznaem\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vucms.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vucms\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vulkan-nadengi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vulkan\\-nadengi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vulkan-oficial.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vulkan\\-oficial\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vulkanrussia1.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vulkanrussia1\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vykup-avto-krasnodar.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vykup\\-avto\\-krasnodar\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vykupavto-krasnodar.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vykupavto\\-krasnodar\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vzheludke.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vzheludke\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vzlom-na-zakaz.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vzlom\\-na\\-zakaz\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vzubah.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vzubah\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vzube.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vzube\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam vzubkah.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(vzubkah\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam w2mobile-za.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(w2mobile\\-za\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam w3javascript.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(w3javascript\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam w7s.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(w7s\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wakeupseoconsultant.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wakeupseoconsultant\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wallabag.malooma.bzh\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wallabag\\.malooma\\.bzh)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wallet-prlzn.space\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wallet\\-prlzn\\.space)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wallinside.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wallinside\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wallpaperdesk.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wallpaperdesk\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wallpapers-all.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wallpapers\\-all\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wallpapers-best.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wallpapers\\-best\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wallpapersdesk.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wallpapersdesk\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wallstore.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wallstore\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wandamary.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wandamary\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wapsite.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wapsite\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam warmex.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(warmex\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam warningwar.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(warningwar\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wasabisale.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wasabisale\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam watch-movies.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(watch\\-movies\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wave-games.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wave\\-games\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wayfcoin.space\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wayfcoin\\.space)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wbjm.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wbjm\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wcb.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wcb\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wdfdocando.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wdfdocando\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wdss.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wdss\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam we-ping-for-youian.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(we\\-ping\\-for\\-youian\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam we-ping-for-youic.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(we\\-ping\\-for\\-youic\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam web-analytics.date\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(web\\-analytics\\.date)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam web-betting.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(web\\-betting\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam web-lazy-services.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(web\\-lazy\\-services\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam web-list.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(web\\-list\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam web-revenue.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(web\\-revenue\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam web.cvut.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(web\\.cvut\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam webalex.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(webalex\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam webinstantservice.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(webinstantservice\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam webix.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(webix\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam webjam.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(webjam\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam weblibrary.win\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(weblibrary\\.win)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam webmaster-traffic.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(webmaster\\-traffic\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam webmonetizer.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(webmonetizer\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam webradiology.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(webradiology\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam webs.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(webs\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-analytics.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-analytics\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-analyzer.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-analyzer\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-errors-scanner.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-errors\\-scanner\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-promotion.bid\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-promotion\\.bid)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-promotion.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-promotion\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-promotion.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-promotion\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-promotion.win\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-promotion\\.win)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-seo.bid\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-seo\\.bid)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-seo.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-seo\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-seo.win\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-seo\\.win)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-smm.bid\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-smm\\.bid)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-smm.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-smm\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-smm.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-smm\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services-smm.win\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\-smm\\.win)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services.review\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\.review)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services.stream\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\.stream)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-services.win\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-services\\.win)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-speed-check.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-speed\\-check\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-speed-checker.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-speed\\-checker\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-speed-up.site\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-speed\\-up\\.site)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-speed-up.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-speed\\-up\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam website-stealer-warning-alert.hdmoviecams.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(website\\-stealer\\-warning\\-alert\\.hdmoviecams\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam websitebottraffic.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(websitebottraffic\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam websitebottraffic.host\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(websitebottraffic\\.host)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam websites-reviews.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(websites\\-reviews\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam websocial.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(websocial\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam webtherapy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(webtherapy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam weburlopener.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(weburlopener\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wedding-salon.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wedding\\-salon\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam weebly.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(weebly\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam weekes.biz.tc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(weekes\\.biz\\.tc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam weightatraining.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(weightatraining\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam weightbelts.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(weightbelts\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam welck.octopis.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(welck\\.octopis\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam welcomeauto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(welcomeauto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam weprik.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(weprik\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wetgames.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wetgames\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wfdesigngroup.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wfdesigngroup\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam whatistizanidine2mg.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(whatistizanidine2mg\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam whatistizanidinehclusedfor.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(whatistizanidinehclusedfor\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam whatsappdownload10.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(whatsappdownload10\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam whereiskentoday.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(whereiskentoday\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wicivow.007h.ml\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wicivow\\.007h\\.ml)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wikes.20fr.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wikes\\.20fr\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam williamrobsonproperty.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(williamrobsonproperty\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam winx-play.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(winx\\-play\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam witherrom55.eklablog.fr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(witherrom55\\.eklablog\\.fr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wjxmenye.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wjxmenye\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wmasterlead.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wmasterlead\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wnoz.de\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wnoz\\.de)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam woman-h.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(woman\\-h\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam woman-orgasm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(woman\\-orgasm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam woman-tampon.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(woman\\-tampon\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam womens-journal.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(womens\\-journal\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam womensplay.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(womensplay\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam womensterritory.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(womensterritory\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wordpress-crew.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wordpress\\-crew\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wordpresscore.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wordpresscore\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam work-from-home-earn-money-online.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(work\\-from\\-home\\-earn\\-money\\-online\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam workius.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(workius\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam workona.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(workona\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam works.if.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(works\\.if\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam world-mmo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(world\\-mmo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam worldgamenews.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(worldgamenews\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam worldhistory.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(worldhistory\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam worldis.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(worldis\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam worldlovers.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(worldlovers\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam worldmed.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(worldmed\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam worldofbtc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(worldofbtc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wormix-cheats.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wormix\\-cheats\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wowas31.ucoz.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wowas31\\.ucoz\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam woweb.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(woweb\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wpnull.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wpnull\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wptraffic.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wptraffic\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wrazilwispolecznie.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wrazilwispolecznie\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wrc-info.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wrc\\-info\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam writingservices17.blogspot.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(writingservices17\\.blogspot\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wrona.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wrona\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wstroika.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wstroika\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wufak.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wufak\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wurr.voila.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wurr\\.voila\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ww1943.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ww1943\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ww2awards.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ww2awards\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam www-lk-rt.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(www\\-lk\\-rt\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam www.gelendzhic.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(www\\.gelendzhic\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam www1.free-share-buttons.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(www1\\.free\\-share\\-buttons\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam wzgyyq.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(wzgyyq\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam x-lime.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(x\\-lime\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam x-lime.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(x\\-lime\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam x-musics.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(x\\-musics\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam x-stars.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(x\\-stars\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam x5market.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(x5market\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xaker26.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xaker26\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xbaboon.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xbaboon\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xboxster.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xboxster\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xexe.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xexe\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xfire.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xfire\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xgftnlrt.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xgftnlrt\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xion.cash\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xion\\.cash)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xjrul.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xjrul\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xkaz.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xkaz\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xlolitka.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xlolitka\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xmnb.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xmnb\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn-------53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-\\-\\-\\-53dbcapga5atlplfdm6ag1ab1bvehl0b7toa0k\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn------6cdbciescapvf0a8bibwx0a1bu.xn--90ais\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-\\-\\-6cdbciescapvf0a8bibwx0a1bu\\.xn\\-\\-90ais)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-\\-6kcaacnblni5c5bicdpcmficy\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn-----6kcacs9ajdmhcwdcbwwcnbgd13a.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-\\-6kcacs9ajdmhcwdcbwwcnbgd13a\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn-----6kcamwewcd9bayelq.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-\\-6kcamwewcd9bayelq\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn-----7kcaaxchbbmgncr7chzy0k0hk.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-\\-7kcaaxchbbmgncr7chzy0k0hk\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn-----7kceclhb4abre1b4a0ccl2fxch1a.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-\\-7kceclhb4abre1b4a0ccl2fxch1a\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn-----8kcatubaocd1bneepefojs1h2e.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-\\-8kcatubaocd1bneepefojs1h2e\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn-----clckdac3bsfgdft3aebjp5etek.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-\\-clckdac3bsfgdft3aebjp5etek\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----7sbabb9a1b7bddgm6a1i.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-7sbabb9a1b7bddgm6a1i\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----7sbabhjc3ccc5aggbzfmfi.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-7sbabhjc3ccc5aggbzfmfi\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----7sbabhv4abd8aih6bb7k.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-7sbabhv4abd8aih6bb7k\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----7sbabm1ahc4b2aqff.su\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-7sbabm1ahc4b2aqff\\.su)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----7sbabn5abjehfwi8bj.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-7sbabn5abjehfwi8bj\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----7sbaphztdjeboffeiof6c.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-7sbaphztdjeboffeiof6c\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----7sbbpe3afguye.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-7sbbpe3afguye\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----7sbho2agebbhlivy.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-7sbho2agebbhlivy\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----8sbaki4azawu5b.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-8sbaki4azawu5b\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----8sbarihbihxpxqgaf0g1e.xn--80adxhks\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-8sbarihbihxpxqgaf0g1e\\.xn\\-\\-80adxhks)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----8sbbjimdeyfsi.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-8sbbjimdeyfsi\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----8sbdbjgb1ap7a9c4czbh.xn--p1acf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-8sbdbjgb1ap7a9c4czbh\\.xn\\-\\-p1acf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----8sbhefaln6acifdaon5c6f4axh.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-8sbhefaln6acifdaon5c6f4axh\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----8sblgmbj1a1bk8l.xn----161-4vemb6cjl7anbaea3afninj.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-8sblgmbj1a1bk8l\\.xn\\-\\-\\-\\-161\\-4vemb6cjl7anbaea3afninj\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----8sbowe2akbcd4h.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-8sbowe2akbcd4h\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----8sbpmgeilbd8achi0c.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-8sbpmgeilbd8achi0c\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----btbdvdh4aafrfciljm6k.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-btbdvdh4aafrfciljm6k\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----ctbbcjd3dbsehgi.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-ctbbcjd3dbsehgi\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----ctbfcdjl8baejhfb1oh.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-ctbfcdjl8baejhfb1oh\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----ctbigni3aj4h.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-ctbigni3aj4h\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----dtbffp5aagjgfm.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-dtbffp5aagjgfm\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----ftbeoaiyg1ak1cb7d.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-ftbeoaiyg1ak1cb7d\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----gtbdb0beu1bb8gj.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-gtbdb0beu1bb8gj\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----itbbudqejbfpg3l.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-itbbudqejbfpg3l\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn----jtbjfcbdfr0afji4m.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-\\-\\-jtbjfcbdfr0afji4m\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--78-6kc6akkhn3a3k.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-78\\-6kc6akkhn3a3k\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--78-6kcmzqfpcb1amd1q.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-78\\-6kcmzqfpcb1amd1q\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80aaafbn2bc2ahdfrfkln6l.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80aaafbn2bc2ahdfrfkln6l\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80aaajbdbddwj2alwjieei2afr3v.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80aaajbdbddwj2alwjieei2afr3v\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80aaajkrncdlqdh6ane8t.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80aaajkrncdlqdh6ane8t\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80aaaks3bbhabgbigamdr2h.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80aaaks3bbhabgbigamdr2h\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80aabcsc3bqirlt.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80aabcsc3bqirlt\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80aanaardaperhcem4a6i.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80aanaardaperhcem4a6i\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80ab4aa2g.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80ab4aa2g\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80adaggc5bdhlfamsfdij4p7b.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80adaggc5bdhlfamsfdij4p7b\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80adgcaax6acohn6r.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80adgcaax6acohn6r\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80aeahghtf8ac5i.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80aeahghtf8ac5i\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80aeb6argv.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80aeb6argv\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80aebzmbfeebe.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80aebzmbfeebe\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80ahdheogk5l.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80ahdheogk5l\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80ahvj9e.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80ahvj9e\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80ajbshivpvn2i.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80ajbshivpvn2i\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--80ajjbdhgmudixfjc8c5a9df8b.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-80ajjbdhgmudixfjc8c5a9df8b\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--90acenikpebbdd4f6d.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-90acenikpebbdd4f6d\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--90acjmaltae3acm.xn--p1acf\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-90acjmaltae3acm\\.xn\\-\\-p1acf)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--90adhhccf5aeewt7j.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-90adhhccf5aeewt7j\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--b1adccayqiirhu.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-b1adccayqiirhu\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--b1ag5cfn.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-b1ag5cfn\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--b1agm2d.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-b1agm2d\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--c1acygb.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-c1acygb\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--d1abj0abs9d.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-d1abj0abs9d\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--d1aifoe0a9a.top\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-d1aifoe0a9a\\.top)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--e1aaajzchnkg.ru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-e1aaajzchnkg\\.ru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--e1aahcgdjkg4aeje6j.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-e1aahcgdjkg4aeje6j\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--e1agf4c.xn--80adxhks\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-e1agf4c\\.xn\\-\\-80adxhks)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--e1aggki3c.xn--80adxhks\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-e1aggki3c\\.xn\\-\\-80adxhks)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--h1ahbi.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-h1ahbi\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--hxazdsfy.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-hxazdsfy\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--l1aengat.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-l1aengat\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--mhg.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-mhg\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--oogle-wmc.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-oogle\\-wmc\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xn--q1a.xn--b1aube0e.xn--c1acygb.xn--p1ai\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xn\\-\\-q1a\\.xn\\-\\-b1aube0e\\.xn\\-\\-c1acygb\\.xn\\-\\-p1ai)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xnxx-n.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xnxx\\-n\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xolodremont.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xolodremont\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xpert.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xpert\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xportvusbdriver8i.snack.ws\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xportvusbdriver8i\\.snack\\.ws)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xpresscare.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xpresscare\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xrp-ripple.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xrp\\-ripple\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xrus.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xrus\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xsion.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xsion\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xtraffic.plus\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xtraffic\\.plus)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xtrafficplus.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xtrafficplus\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xtrafficplus.online\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xtrafficplus\\.online)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xtrafficplus.shop\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xtrafficplus\\.shop)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xtrafficplus.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xtrafficplus\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xtubeporno.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xtubeporno\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xvideosbay.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xvideosbay\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xxart.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xxart\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xxx-treker.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xxx\\-treker\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xxxhamster.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xxxhamster\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xxxtube69.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xxxtube69\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xxxvideochat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xxxvideochat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xz618.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xz618\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam xzlive.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(xzlive\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yaderenergy.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yaderenergy\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yaminecraft.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yaminecraft\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yeartwit.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yeartwit\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yellowstonevisitortours.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yellowstonevisitortours\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yes-com.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yes\\-com\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yes-do-now.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yes\\-do\\-now\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yhirurga.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yhirurga\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ykecwqlixx.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ykecwqlixx\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam ynymnwbm.bloger.index.hr\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(ynymnwbm\\.bloger\\.index\\.hr)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yodse.io\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yodse\\.io)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yoga4.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yoga4\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youandcredit.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youandcredit\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youbloodyripper.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youbloodyripper\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youdesigner.kz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youdesigner\\.kz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yougame.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yougame\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yougetsignal.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yougetsignal\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youghbould.wordpress.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youghbould\\.wordpress\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youhack.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youhack\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youjizz.vc\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youjizz\\.vc)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youporn-forum.ga\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youporn\\-forum\\.ga)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youporn-forum.uni.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youporn\\-forum\\.uni\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youporn-ru.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youporn\\-ru\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam your-good-links.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(your\\-good\\-links\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam your-tales.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(your\\-tales\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yourdesires.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yourdesires\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youresponsive.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youresponsive\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yourothersite.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yourothersite\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yoursearch.me\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yoursearch\\.me)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yourserverisdown.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yourserverisdown\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yoursite.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yoursite\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yourtraffic.club\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yourtraffic\\.club)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youtoner.it\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youtoner\\.it)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam youtubedownload.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(youtubedownload\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yqpc.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yqpc\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yuarra.pluto.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yuarra\\.pluto\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yubikk.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yubikk\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yugk.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yugk\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yugo-star.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yugo\\-star\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yunque.pluto.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yunque\\.pluto\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yur-p.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yur\\-p\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yurcons.pro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yurcons\\.pro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yurgorod.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yurgorod\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam yuristproffi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(yuristproffi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zagadki.in.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zagadki\\.in\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zahodi2hydra.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zahodi2hydra\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zahvat.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zahvat\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zaidia.xhost.ro\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zaidia\\.xhost\\.ro)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zaim-pod-zalog-krasnodar.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zaim\\-pod\\-zalog\\-krasnodar\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zaimhelp.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zaimhelp\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zajm-pod-zalog-nedvizhimosti.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zajm\\-pod\\-zalog\\-nedvizhimosti\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zakazfutbolki.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zakazfutbolki\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zakaznoy.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zakaznoy\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zakazvzloma.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zakazvzloma\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zakis-azota24.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zakis\\-azota24\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zakisazota-official.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zakisazota\\-official\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zakon-ob-obrazovanii.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zakon\\-ob\\-obrazovanii\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zaloadi.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zaloadi\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zamolotkom.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zamolotkom\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zapnado.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zapnado\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zarabotat-na-sajte.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zarabotat\\-na\\-sajte\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zarabotat-v-internete.biz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zarabotat\\-v\\-internete\\.biz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zarenica.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zarenica\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zastenchivosti.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zastenchivosti\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zastroyka.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zastroyka\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zavod-gm.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zavod\\-gm\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zazagames.org\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zazagames\\.org)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zdesformula.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zdesformula\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zdesoboi.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zdesoboi\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zdm-auto.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zdm\\-auto\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zdm-auto.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zdm\\-auto\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zdorovie-nogi.info\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zdorovie\\-nogi\\.info)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zebradudka.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zebradudka\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zelena-mriya.com.ua\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zelena\\-mriya\\.com\\.ua)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zeleznobeton.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zeleznobeton\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zerocash.msk.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zerocash\\.msk\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zexhgoods.xyz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zexhgoods\\.xyz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zhcsapp.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zhcsapp\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zhoobintravel.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zhoobintravel\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zhorapankratov7.blogspot.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zhorapankratov7\\.blogspot\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zigarettenonl.canalblog.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zigarettenonl\\.canalblog\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zigarettenonlinekaufen.tumblr.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zigarettenonlinekaufen\\.tumblr\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zigarettenonlinekaufen1.bloog.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zigarettenonlinekaufen1\\.bloog\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zigarettenonlinekaufen1.blox.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zigarettenonlinekaufen1\\.blox\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zigarettenonlinekaufen2.bloog.pl\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zigarettenonlinekaufen2\\.bloog\\.pl)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zigarettenonlinekaufen2.drupalgardens.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zigarettenonlinekaufen2\\.drupalgardens\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zigzog.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zigzog\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zlatnajesen.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zlatnajesen\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zmoda.hostreo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zmoda\\.hostreo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam znakomstva-moskva77.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(znakomstva\\-moskva77\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam znakomstva-piter78.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(znakomstva\\-piter78\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam znakomstvaonlain.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(znakomstvaonlain\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam znaniyapolza.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(znaniyapolza\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zojirushi-products.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zojirushi\\-products\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zolotoy-lis.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zolotoy\\-lis\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zonefiles.bid\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zonefiles\\.bid)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zoominfo.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zoominfo\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zot.moscow\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zot\\.moscow)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zt-m.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zt\\-m\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zuchn.com\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zuchn\\.com)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zverokruh-shop.cz\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zverokruh\\-shop\\.cz)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zvetki.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zvetki\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zvooq.eu\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zvooq\\.eu)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zvuker.net\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zvuker\\.net)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t\t<rule name=\"Referrer Spam zyzzcentral.ru\" stopProcessing=\"true\"><match url=\".*\" /><conditions><add input=\"{HTTP_REFERER}\" pattern=\"(zyzzcentral\\.ru)\"/></conditions><action type=\"AbortRequest\" /></rule>\n\t\t\t</rules>\n\t\t</rewrite>\n\t</system.webServer>\n</configuration>"
  }
]