├── vercel.json ├── assets ├── images │ ├── favicon.png │ ├── nytimes-report.pdf │ ├── blue-team.svg │ ├── green-team.svg │ └── orange-team.svg ├── js │ └── randomSite.js └── css │ └── style.css ├── .gitignore ├── netlify.toml ├── _data ├── navigation.yml └── sites.yml ├── _includes ├── navigation.html ├── teams.html ├── faq-03.html ├── faq-06.html ├── faq-08.html ├── faq-05.html ├── faq-01.html ├── faq-04.html ├── faq-07.html └── faq-02.html ├── scripts ├── check_alphabetical_sorting.sh ├── invalid_site_rechecker.sh ├── site_size_rechecker.py └── docs_site_size_rechecker.md ├── _redirects ├── _plugins └── precision_filter.rb ├── .editorconfig ├── Gemfile ├── .github ├── workflows │ └── ci.yml ├── dependabot.yml └── PULL_REQUEST_TEMPLATE.md ├── _config.yml ├── faq.md ├── LICENSE ├── _layouts └── default.html ├── README.md ├── Gemfile.lock └── index.md /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "github": { 3 | "silent": true 4 | } 5 | } -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/512kb.club/main/assets/images/favicon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ### Jekyll ### 2 | _site 3 | .jekyll-metadata 4 | *-cache/ 5 | .DS_Store 6 | 7 | python-gtmetrix -------------------------------------------------------------------------------- /assets/images/nytimes-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmfunc/512kb.club/main/assets/images/nytimes-report.pdf -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | # Google FLoC opt out 2 | [[headers]] 3 | for = "/*" 4 | [headers.values] 5 | Permissions-Policy = "interest-cohort=()" 6 | -------------------------------------------------------------------------------- /_data/navigation.yml: -------------------------------------------------------------------------------- 1 | - name: Home 2 | link: / 3 | 4 | - name: FAQ 5 | link: /faq 6 | 7 | - name: GitHub 8 | link: https://github.com/kevquirk/512kb.club 9 | -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /scripts/check_alphabetical_sorting.sh: -------------------------------------------------------------------------------- 1 | # Returns a non-zero exit code if the data sites are not alphabetically sorted. 2 | 3 | grep 'domain:' _data/sites.yml | grep -v '512kb.club' | tr '[:upper:]' '[:lower:]' | sort -c 4 | -------------------------------------------------------------------------------- /scripts/invalid_site_rechecker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | for f in $(awk -F " " '/url:/ {print $2}' ../_data/sites.yml) 3 | do 4 | echo "Response code: "$(curl -o /dev/null -sw "%{response_code}" $f)" "$f| grep -v '200\|301\|302' 5 | done 6 | -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | https://512kb.club/images/green-team.svg https://512kb.club/assets/images/green-team.svg 2 | https://512kb.club/images/orange-team.svg https://512kb.club/assets/images/orange-team.svg 3 | https://512kb.club/images/blue-team.svg https://512kb.club/assets/images/blue-team.svg 4 | -------------------------------------------------------------------------------- /_plugins/precision_filter.rb: -------------------------------------------------------------------------------- 1 | # Source https://stackoverflow.com/a/60243022 2 | 3 | module Jekyll 4 | module PrecisionFilter 5 | def precision(input, value=0) 6 | ("%.#{value}f" % input) 7 | end 8 | end 9 | end 10 | 11 | Liquid::Template.register_filter(Jekyll::PrecisionFilter) 12 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 4 9 | end_of_line = lf 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.gemspec] 14 | indent_size = 2 15 | 16 | [*.yml] 17 | indent_size = 2 18 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } 6 | 7 | # gem "rails" 8 | gem "jekyll" 9 | gem 'tzinfo-data' 10 | 11 | # Plugins 12 | group :jekyll_plugins do 13 | gem 'jekyll-sitemap' 14 | gem 'jekyll-seo-tag' 15 | end 16 | 17 | gem "webrick", "~> 1.8" 18 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | on: [push, pull_request] 2 | 3 | name: Continuous integration 4 | 5 | jobs: 6 | ci: 7 | name: Check if domains are sorted alphabetically 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@v3 11 | - name: Check domain sorting 12 | run: | 13 | sh scripts/check_alphabetical_sorting.sh 14 | -------------------------------------------------------------------------------- /_includes/teams.html: -------------------------------------------------------------------------------- 1 |
  • 2 | 3 | {% comment %} "precision" is a custom filter can be found in "_plugins/precision_filter.rb" {% endcomment %} 4 | {{ item.size | precision: 2 }} KB 5 | {{ item.domain }} 6 |
  • 7 | -------------------------------------------------------------------------------- /_includes/faq-03.html: -------------------------------------------------------------------------------- 1 |
    2 | I've made changes to my site and it's a different size now. What do i do? 3 |

    We regularly check all the sites that are added to the The 512KB Club (yes, its a big job. If you want help, contact me). But if you have made changes and the size of your site needs updating please log a new GitHub Pull Request.

    4 |
    5 | -------------------------------------------------------------------------------- /_includes/faq-06.html: -------------------------------------------------------------------------------- 1 |
    2 | I see a problem / how do I get in touch? 3 |

    See a problem on this site? Maybe there's a site listed that's not longer live, or no longer qualifies for the 4 | club. Or, maybe you just want to get in touch for some reason.

    5 | 6 |

    If so, create an issue on GitHub or 7 | use the contact page on my main website.

    8 |
    9 | -------------------------------------------------------------------------------- /assets/js/randomSite.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This looks for elements with the 'site' class which in this case are all of the 3 | * anchor links for the sites. This could certainly be made more robust with 4 | * some sanity checks, but should work in this context. 5 | */ 6 | function randomSite() { 7 | const sites = document.getElementsByClassName('site') 8 | 9 | if (sites.length > 0) { 10 | const choiceIndex = Math.floor(Math.random() * sites.length) 11 | window.open(sites[choiceIndex].attributes.href.value, '_blank').focus() 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - jekyll-sitemap 3 | - jekyll-seo-tag 4 | 5 | # SEO Stuff 6 | author: Kev Quirk 7 | title: 512KB Club 8 | tagline: A showcase of lightweight websites. 9 | description: The 512KB Club is an exclusive list of web pages weighing less than 512 kilobytes. 10 | lang: en 11 | locale: en_GB 12 | url: "https://512kb.club" 13 | baseurl: "" 14 | permalink: :title 15 | timezone: Etc/GMT 16 | 17 | # Syntax Highlighting 18 | highlighter: rouge 19 | 20 | # Netlify redirects 21 | include: 22 | - _redirects 23 | 24 | exclude: 25 | - scripts/ 26 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | 2 | # To get started with Dependabot version updates, you'll need to specify which 3 | # package ecosystems to update and where the package manifests are located. 4 | # Please see the documentation for all configuration options: 5 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 6 | 7 | version: 2 8 | updates: 9 | - package-ecosystem: "bundler" # See documentation for possible values 10 | directory: "/" # Location of package manifests 11 | schedule: 12 | interval: "weekly" 13 | -------------------------------------------------------------------------------- /_includes/faq-08.html: -------------------------------------------------------------------------------- 1 |
    2 | Illegal or inappropriate content 3 | 4 |

    This can be anything we deem inappropriate for the 512KB Club. Things like pornographic sites, or sites that contain NSFW material will not be added. Basically, if you wouldn't show it to your grandma or your kids, you're probably not going to get accepted.

    5 | 6 |

    We reserve the right to refuse any site we deem to be inappropriate, even if it doesn't obviously align to any of the rules stated above.

    7 | 8 |
    9 | -------------------------------------------------------------------------------- /_includes/faq-05.html: -------------------------------------------------------------------------------- 1 |
    2 | What's the point of all this? 3 |

    That's a great question!

    4 | 5 |

    I decided to start this project for a couple of reasons:

    6 | 7 |
      8 |
    1. Most, if not all, of the sites listed are personal sites. Many of which are blogs. The 512KB Club is a 9 | great way of discovering other blog owners who are also interested in minimalist/efficient web design. Think 10 | of it like a modern day webring.
    2. 11 |
    3. It's a bit of fun, so why not?
    4. 12 |
    13 |
    14 | -------------------------------------------------------------------------------- /faq.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /faq/ 3 | layout: default 4 | title: FAQ 5 | --- 6 | 7 | # Frequently Asked Questions 8 | 9 | This page is intended to answer any questions you may have about joining or maintaining the 512KB Club. If you still have unanswered questions after reading this page, please [submit an issue in GitHub](https://github.com/kevquirk/512kb.club/issues) and we will endeavour to answer your question. 10 | 11 | {% include faq-01.html %} 12 | 13 | {% include faq-02.html %} 14 | 15 | {% include faq-03.html %} 16 | 17 | {% include faq-04.html %} 18 | 19 | {% include faq-05.html %} 20 | 21 | {% include faq-06.html %} 22 | 23 | {% include faq-07.html %} 24 | 25 | {% include faq-08.html %} 26 | -------------------------------------------------------------------------------- /_includes/faq-01.html: -------------------------------------------------------------------------------- 1 |
    2 | How do I join The 512KB Club? 3 |

    If you're interested in getting your site added to The 512KB Club, all you need to do is follow these 4 | instructions:

    5 | 6 |
      7 |
    1. Do a GTMetrix scan on your website.
    2. 8 |
    3. Once complete, click on the Waterfall tab to make sure the uncompressed size of your site is 9 | less than 512KB.
    4. 10 |
    5. If your site satisfies this requirement, create a pull request (instructions 12 | here) to add your site.
    6. 13 |
    7. I will then review you PR and merge it into main. Once merged, your site will be added to the list.
    8. 14 |
    15 | 16 |

    Note: I reserve the right to not add sites based on whether I think they're suitable to 17 | be added or not.

    18 |
    19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020-2023 Kev Quirk 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | This PR is: 8 | 9 | - [ ] Adding a new domain 10 | - [ ] Updating existing domain **size** 11 | - [ ] Changing domain name 12 | - [ ] Removing existing domain from list 13 | - [ ] Website code changes (512kb.club site) 14 | - [ ] Other not listed 15 | 16 | 19 | 20 | - [ ] I used the uncompressed size of the site 21 | - [ ] I have included a link to the GTMetrix report 22 | - [ ] The domain is in the correct alphabetical order 23 | - [ ] This site is not a ultra lightweight site 24 | - [ ] The following information is filled identical to the data file 25 | 26 | ***I confirm that I have read the [FAQ section](https://512kb.club/faq), particularly the two red items around minimal pages and inappropriate content and I attest that this site is neither of these things.*** 27 | 28 | - [ ] Check to confirm 29 | 30 | ``` 31 | - domain: 32 | url: 33 | size: 34 | last_checked: 35 | ``` 36 | 37 | GTMetrix Report: 38 | -------------------------------------------------------------------------------- /_includes/faq-04.html: -------------------------------------------------------------------------------- 1 |
    2 | My site doesn't qualify, what can I do? 3 |

    Many sites won't qualify for the 512KB Club, but there are some quick things you could try to reduce the size of 4 | your site:

    5 | 6 |

    1. Replace custom fonts with a local font stack by replacing your font-family declerations in 7 | your CSS to one of the following:

    8 |
    # Sans-serif font stack
     9 | font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
    10 | 
    11 | # Serif font stack
    12 | font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
    13 | 14 |

    2. Optimise any images you have on your page. Short 15 | Pixel is a great service for this.

    16 | 17 |

    3. If all else fails and your site is pretty close the 512KB, but not quite there, why not apply for 18 | Bradley Taunt's 1MB Club instead?

    19 |
    20 | -------------------------------------------------------------------------------- /_includes/faq-07.html: -------------------------------------------------------------------------------- 1 |
    2 | Ultra minimal / link pages won't be added 3 | 4 |

    The whole point of the 512KB Club is to showcase what can be done with 512KB of space. Anyone can come along and make a <10KB site containing 3 lines of CSS and a handful of links to other pages.

    5 | 6 |

    That's NOT a good showcase of what can be done with 512KB.

    7 | 8 |

    What we're looking for are sites with interesting design concepts that prove 512KB is a load of space that you can do so much with.

    9 | 10 |

    If we decide that your site qualifies as "ultra-minimal" or is simply just a page containing a paragraph of text and some links, it probably won't be added.

    11 | 12 |

    We reserve the right to add sites that may qualify as "ultra-minimal" or "link pages" if they offer a particularly interesting design, or display the information in a unique way.

    13 | 14 |

    We're aware there are a number of these sites that have already been added to the 512KB Club, and we're slowly working our way through and removing them. If you notice a site in the list that you think qualifies, please do submit an issue on GitHub to let us know.

    15 | 16 |
    17 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {% seo %} 9 | 10 | 11 | {% if page.hasRandomBtn == true %} 12 | 13 | {% endif %} 14 | 15 | 16 | 17 | 18 | 19 |
    20 | {% include navigation.html %} 21 |

    The 512KB Club

    22 |
    23 | 24 |
    25 | 26 | {{ content }} 27 | 28 |
    29 | 30 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /_includes/faq-02.html: -------------------------------------------------------------------------------- 1 |
    2 | Can I add something to my site to show I'm in the 512KB club? 3 |

    If your site qualifies for The 512KB Club, I will add it to one of the following 3 teams:

    4 | 5 |
      6 |
    1. The green team is for 7 | sites with a total uncompressed size of less than 100KB.
    2. 8 |
    3. The orange team is 9 | for sites with a total uncompressed size of less than 250KB.
    4. 10 |
    5. The blue team is for 11 | sites with a total uncompressed size of less than 512KB.
    6. 12 |
    13 | 14 |

    Once you're a proud member of one of the teams, you are free to use one of the banners below on your own website. 15 | You can either save the SVG or use the code snippet below (remembering to change the name to whichever team 16 | you're in).

    17 | 18 |

    green team banner

    19 | 20 |

    orange team banner

    21 | 22 |

    blue team banner

    23 | 24 |
    <a href="https://512kb.club"><img src="https://512kb.club/assets/images/green-team.svg"
    25 |                alt="a proud member of the green team of 512KB club" /></a>
    26 | 27 |

    Alternatively, you can add the banner to your site in pure HTML/CSS using this CodePen as a guide.

    29 | 30 |
    31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 512KB Club 2 | 3 | The internet has become a **bloated mess**. Massive JavaScript libraries, countless client-side queries and overly complex frontend frameworks are par for the course these days. 4 | 5 | When online newspapers like [The Guardian](https://www.theguardian.com/uk) are **over 4MB in size**, you know there's a problem. Why does an online newspaper need to be over 4MB in size? It's crazy. 6 | 7 | But we can make a difference - all it takes is some optimisation. Do you really need that extra piece of JavaScript? Does your WordPress site need a theme that adds lots of functionality you're never going to use? Are those huge custom fonts really needed? Are your images optimised for the web? 8 | 9 | **The 512KB Club** is a collection of performance-focused web pages from across the Internet. To qualify your website must satisfy **both** of the following requirements: 10 | 11 | 1. It must be an actual site that contains a reasonable amount of information, not just a couple of links on a page ([more info here](https://512kb.club/#lightweight-notice)). 12 | 2. Your total UNCOMPRESSED web resources must not exceed 512KB. 13 | 14 | ## How to create a PR to add your site to the 512KB Club 15 | 16 | 1. Fork this repository. 17 | 2. Get the **UNCOMPRESSED** size of your website's homepage. 18 | 1. Do a GTMetrix scan on your website. 19 | 2. Once complete, click on the **Waterfall** tab to make sure the **uncompressed** size of your site is less than 512KB. 20 | 3. Navigate to [`_data/sites.yml`](./_data/sites.yml) and add your site (template below). 21 | 4. **When creating the PR, please include a link to the GT Metrix results in the PR comment.** 22 | 23 | ### Site template 24 | 25 | #### Sample 26 | ``` 27 | - domain: example.com 28 | url: http://example.com/ (Make sure you keep the trailing slash) 29 | size: 2.5 30 | last_checked: 2021-05-26 (YYYY-MM-DD) 31 | ``` 32 | #### Blank 33 | ``` 34 | - domain: 35 | url: 36 | size: 37 | last_checked: 38 | ``` 39 | 40 | **NOTE:** Site need to be added to the list in **alphabetical order**, so please make sure your site is in the correct place within the list, or your PR will be rejected. 41 | 42 | ## Automation of site size check 43 | 44 | You can find [instructions](scripts/docs_site_size_rechecker.md) on how to get the GTmetrix size using a script in the [scripts](scripts/) folder 45 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.8.1) 5 | public_suffix (>= 2.0.2, < 6.0) 6 | colorator (1.1.0) 7 | concurrent-ruby (1.2.2) 8 | em-websocket (0.5.3) 9 | eventmachine (>= 0.12.9) 10 | http_parser.rb (~> 0) 11 | eventmachine (1.2.7) 12 | eventmachine (1.2.7-x64-mingw32) 13 | ffi (1.15.5) 14 | ffi (1.15.5-x64-mingw32) 15 | forwardable-extended (2.6.0) 16 | google-protobuf (3.21.12) 17 | google-protobuf (3.21.12-x64-mingw32) 18 | http_parser.rb (0.8.0) 19 | i18n (1.12.0) 20 | concurrent-ruby (~> 1.0) 21 | jekyll (4.3.2) 22 | addressable (~> 2.4) 23 | colorator (~> 1.0) 24 | em-websocket (~> 0.5) 25 | i18n (~> 1.0) 26 | jekyll-sass-converter (>= 2.0, < 4.0) 27 | jekyll-watch (~> 2.0) 28 | kramdown (~> 2.3, >= 2.3.1) 29 | kramdown-parser-gfm (~> 1.0) 30 | liquid (~> 4.0) 31 | mercenary (>= 0.3.6, < 0.5) 32 | pathutil (~> 0.9) 33 | rouge (>= 3.0, < 5.0) 34 | safe_yaml (~> 1.0) 35 | terminal-table (>= 1.8, < 4.0) 36 | webrick (~> 1.7) 37 | jekyll-sass-converter (3.0.0) 38 | sass-embedded (~> 1.54) 39 | jekyll-seo-tag (2.8.0) 40 | jekyll (>= 3.8, < 5.0) 41 | jekyll-sitemap (1.4.0) 42 | jekyll (>= 3.7, < 5.0) 43 | jekyll-watch (2.2.1) 44 | listen (~> 3.0) 45 | kramdown (2.4.0) 46 | rexml 47 | kramdown-parser-gfm (1.1.0) 48 | kramdown (~> 2.0) 49 | liquid (4.0.4) 50 | listen (3.8.0) 51 | rb-fsevent (~> 0.10, >= 0.10.3) 52 | rb-inotify (~> 0.9, >= 0.9.10) 53 | mercenary (0.4.0) 54 | pathutil (0.16.2) 55 | forwardable-extended (~> 2.6) 56 | public_suffix (5.0.1) 57 | rake (13.0.6) 58 | rb-fsevent (0.11.2) 59 | rb-inotify (0.10.1) 60 | ffi (~> 1.0) 61 | rexml (3.2.5) 62 | rouge (4.0.1) 63 | safe_yaml (1.0.5) 64 | sass-embedded (1.57.1) 65 | google-protobuf (~> 3.21) 66 | rake (>= 10.0.0) 67 | sass-embedded (1.57.1-x64-mingw32) 68 | google-protobuf (~> 3.21) 69 | terminal-table (3.0.2) 70 | unicode-display_width (>= 1.1.1, < 3) 71 | tzinfo (2.0.6) 72 | concurrent-ruby (~> 1.0) 73 | tzinfo-data (1.2023.3) 74 | tzinfo (>= 1.0.0) 75 | unicode-display_width (2.4.2) 76 | webrick (1.8.1) 77 | 78 | PLATFORMS 79 | ruby 80 | x64-mingw32 81 | 82 | DEPENDENCIES 83 | jekyll 84 | jekyll-seo-tag 85 | jekyll-sitemap 86 | tzinfo-data 87 | webrick (~> 1.8) 88 | 89 | BUNDLED WITH 90 | 2.2.22 91 | -------------------------------------------------------------------------------- /assets/images/blue-team.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/green-team.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: / 3 | layout: default 4 | hasRandomBtn: true 5 | --- 6 | The internet has become a bloated mess. Huge JavaScript libraries, countless client-side queries and overly complex frontend frameworks are par for the course these days. 7 | 8 | When popular website like [The New York Times](https://www.nytimes.com/) are **[multiple MB in size](/assets/images/nytimes-report.pdf)** (nearly 50% of which is JavaScript!), you know there's a problem. Why does any site need to be that huge? It's crazy. 9 | 10 | But we can make a difference - all it takes is some optimisation. Do you really need that extra piece of JavaScript? Does your WordPress site need a theme that adds lots of functionality you're never going to use? Are those huge custom fonts really needed? Are your images optimised for the web? 11 | 12 | **The 512KB Club** is a collection of performance-focused web pages from across the Internet. To qualify your website must satisfy **both** of the following requirements: 13 | 14 | 1. It must be an actual site that contains a reasonable amount of information, not just a couple of links on a page ([more info here](/faq/#lightweight-notice)). 15 | 2. Your total UNCOMPRESSED web resources must not exceed 512KB. 16 | 17 |
    18 |

    19 | Help support the 512KB Club

    20 | It takes a lot of work to run the 512KB Club. We rely on the kind work of a couple of great volunteers. If you want to support the 512KB Club, please do think about buying us a coffee. 21 |

    22 |
    23 |
    24 |
    25 | View FAQ for more details 26 |
    27 | 28 |
    29 |
    30 | 31 |
    32 |
    33 | Visit a Random Site 34 |
    35 | 36 | {:.jump} 37 | * **Jump to:** 38 | * [Green Team (<100KB)](#100) 39 | * [Orange Team (<250KB)](#250) 40 | * [Blue Team (<512KB)](#512) 41 | 42 |

    The Green Team (<100KB) ^ Top ^

    43 | 51 | 52 |

    The Orange Team (<250KB) ^ Top ^

    53 | 61 | 62 |

    The Blue Team (<512KB) ^ Top ^

    63 | 71 | -------------------------------------------------------------------------------- /assets/images/orange-team.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/site_size_rechecker.py: -------------------------------------------------------------------------------- 1 | # Script to update sites.yml file for 512kb.club 2 | # 3 | # It updates requested number of entries in that file, 4 | # starting with those having _earliest_ 'last_checked' date 5 | # (those having non-date 'last_checked' field, like "N/A", are checked first). 6 | import datetime 7 | import os 8 | import sys 9 | 10 | # create a file myauth.py with details of your gtmetrix account, like this: 11 | # email='email@example.com' 12 | # api_key='96bcab1060d838723701010387159086' 13 | import myauth 14 | # https://github.com/aisayko/python-gtmetrix 15 | from gtmetrix import * 16 | # https://pypi.org/project/ruamel.yaml/ 17 | from ruamel.yaml import YAML 18 | 19 | def summarizeHar(har): 20 | """Given a har file (parsed json object), returns total size of all responses, in bytes.""" 21 | return sum((entry["response"]["content"]["size"] for entry in har["log"]["entries"])) 22 | 23 | def countPageBytes(url): 24 | """Submits URL to gtmetrix, waits for analysis to complete, and returns dict of: 25 | {'kb': size in kilobytes rounded according to gtmetrix standard, 26 | 'url': link to gtmetrix report (human-readable webpage) 27 | }""" 28 | # TODO: error checking in the following 4 lines 29 | my_test = gt.start_test(url) 30 | result = my_test.fetch_results(0) 31 | har = my_test._request(my_test.har) 32 | size = summarizeHar(har)/1024 33 | if size<100: 34 | size = round(size,1) 35 | else: 36 | size = round(size) 37 | return {'kb': size, 'url':result['results']['report_url']} 38 | 39 | def sizeToTeam(size): 40 | """Given a size in kilobytes, returns the 512kb.club team (green/orange/blue), 41 | or "N/A" if size is too big for 512kb.club""" 42 | if size<100: 43 | return "green" 44 | elif size<250: 45 | return "orange" 46 | elif size<=512: 47 | return "blue" 48 | else: 49 | return "N/A" 50 | 51 | def main(): 52 | if len(sys.argv) != 3: 53 | print("Usage: %s /path/to/sites.yml number_of_oldest_sites_to_check" % sys.argv[0]) 54 | exit(1) 55 | 56 | # load yaml 57 | filename = sys.argv[1] 58 | if not os.path.isfile(filename): 59 | print("Invalid filename: %s" % filename) 60 | exit(2) 61 | yaml=YAML() 62 | yaml.default_flow_style = False 63 | sites = yaml.load(open(filename,'r')) 64 | 65 | global gt 66 | # workaround to allow "+" symbol in email 67 | # see also https://github.com/aisayko/python-gtmetrix/pull/18 68 | gt = GTmetrixInterface('a@b.cd','123') 69 | gt.auth=(myauth.email, myauth.api_key) 70 | 71 | # number of sites left to check 72 | left = int(sys.argv[2]) 73 | 74 | print("Site | old size (team) | new size (team) | delta (%) | GTMetrix | note") 75 | print("---- | --------------- | --------------- | --------- | -------- | ----") 76 | 77 | while left > 0: 78 | # find minimum (earliest) last_checked date 79 | # first, try entries where 'last_checked' is not a valid date (it can be "N/A") 80 | min_date = next((x['last_checked'] for x in sites if not isinstance(x['last_checked'],datetime.date)), None) 81 | if not min_date: 82 | # otherwise, find earliest of the found dates 83 | min_date = min((x['last_checked'] for x in sites if isinstance(x['last_checked'],datetime.date))) 84 | # TODO: abort if min_date is too close to present? 85 | # find first site with matching date 86 | site = next((x for x in sites if x['last_checked'] == min_date)) 87 | # print first half of the row (with old data) 88 | oldsize = float(site['size']) 89 | oldteam = sizeToTeam(oldsize) 90 | print("[%s](%s) | %.1fkb (%s) | " % (site['domain'], site['url'], oldsize, oldteam), end='', flush=True) 91 | # get new data 92 | result = countPageBytes(site['url']) 93 | # analyze the result 94 | newsize = result['kb'] 95 | newteam = sizeToTeam(newsize) 96 | delta = newsize-oldsize 97 | size_diff = round((newsize-oldsize)/oldsize*100) 98 | note = '' 99 | if abs(size_diff)>10: 100 | note = "big size change!" 101 | if oldteam != newteam: 102 | note = "team changed!!" 103 | if newsize>512: 104 | note = "too big for 512kb.club!!!" 105 | # print the second half of the row 106 | print(f"%.1fkb (%s) | %+.1fkb (%+d) | [report](%s#waterfall) | %s" % (newsize, newteam, delta, size_diff, result['url'], note)) 107 | # save the result 108 | site['size'] = newsize 109 | site['last_checked'] = datetime.date.today() 110 | yaml.dump(sites,open(filename,'w')) 111 | left -= 1 112 | 113 | if __name__ == '__main__': 114 | main() 115 | -------------------------------------------------------------------------------- /scripts/docs_site_size_rechecker.md: -------------------------------------------------------------------------------- 1 | # Site Size Rechecker Script Documentation 2 | 3 | ## Purpose 4 | The main purpose of `site_size_rechecker.py` script is to automate the checking of older sites that are listed in the 512kb.club and ensuring that the size is updated. 5 | 6 | ## How it works 7 | 1. Read `sites.yml` file 8 | 1. Analyze `last_checked` key pair 9 | 1. Sort key pair in ascending order _earliest first_ 10 | 1. Non-date values are listed before dated values such as **"N/A"** 11 | 12 | ## Requirements 13 | 14 | * [GTmetrix.com](https://GTmetrix.com/) account 15 | * Python3 with pip 16 | * ruamel.yaml 17 | 18 | ## Installation 19 | 20 | 1. Create an account with [GTmetrix.com](https://gtmetrix.com/) 21 | 1. Go to [account settings](https://gtmetrix.com/dashboard/account) and generate an API Key 22 | 1. Install **ruamel.yaml** Python library (available via [pip](https://pypi.org/project/ruamel.yaml/) or a [package manager](https://archlinux.org/packages/community/any/python-ruamel-yaml/)). 23 | 1. Install [python-gtmetrix](https://github.com/aisayko/python-gtmetrix). 24 | 1. It is [recommened](https://github.com/aisayko/python-gtmetrix/issues/13#issuecomment-781785672) to just Git clone the repo as they only require [requests](http://python-requests.org/) which have [pip](https://pypi.org/project/requests/) and an [OS package](https://archlinux.org/packages/extra/any/python-requests/). 25 | 1. Create authintication file named `myauth.py` with the following format: 26 | ```py 27 | email='email@example.com' 28 | api_key='96bcab1060d838723701010387159086' 29 | ``` 30 | 1. email: is the one used in creating a GTmetrix account 31 | 1. api_key: is what was generated in step 1.1 32 | 1. Copy the `site_size_rechecker.py` and `myauth.py` into the `python-gtmetrix` cloned in step 3 33 | 34 | _Note:_ Under the new plan you will first receive 100 credits from GTmetrix for testing. after which you will get a refill of 10 credits every day at `8:45 PM +0000`. This script uses 0.7 credits for each site check. which is about 14 site reports per day per person 35 | ## Usage 36 | 37 | while in the `python-gtmetrix` folder run: 38 | 39 | ```sh 40 | python script2.py ../512kb.club/_data/sites.yml XY 41 | ``` 42 | _Note:_ XY stands for the number of sites to be checked 43 | 44 | ### Successful Output 45 | 46 | Successful output will generate a table in markdown file which _**Must**_ be put in the PR such as [#450](https://github.com/kevquirk/512kb.club/pull/450) 47 | ```md 48 | Site | old size (team) | new size (team) | delta (%) | GTmetrix | note 49 | ---- | --------------- | --------------- | --------- | -------- | ---- 50 | [docs.j7k6.org](https://docs.j7k6.org/) | 73.0kb (green) | 72.9kb (green) | -0.1kb (-0%) | [report](https://GTmetrix.com/reports/docs.j7k6.org/PkIra4ns/#waterfall) | 51 | ``` 52 | _Note:_ In the middle of each line it takes about 30 seconds in wait-time to output the rest of the line. This is due to the time it takes to finish the GTmetrix scan 53 | 54 | This can be beneficial to know if a site has a problem that can be used to check the site or remove it from the checking. 55 | 56 | 57 | If everything goes right, you should get a table-like output which you can just paste into Github PR: 58 | 59 | Note that it "hangs" for about 30 seconds in the middle of each line except the first two, 60 | as it first prints site name and old size, 61 | then waits for GTmetrix scan to finish, 62 | and after that prints new size and rest of the line. 63 | 64 | This is done so if the script encounters an issue when running GTmetrix scan, 65 | you know which site it happened with, 66 | and can either check it manually or exclude the site from checking. 67 | 68 | ## Fine-tuning 69 | 70 | ### Wait-time 71 | 72 | To decrease waiting time, 73 | edit the [python-gtmetrix/gtmetrix/interface.py](https://github.com/aisayko/python-gtmetrix/blob/master/gtmetrix/interface.py#L85) file and change the number `30` in line 85 to a smaller number - for example, change this line from 74 | ```py 75 | time.sleep(30) 76 | ``` 77 | to 78 | ```py 79 | time.sleep(3) 80 | ``` 81 | This will decrease the delay between each check when the script is waiting for the GTmetrix scan to finish. 82 | 83 | The [recommended poll interval](https://GTmetrix.com/api/docs/0.1/#api-test-state) is 1 second. 84 | I suggest setting it to 3 seconds. 85 | By default in interface.py file is set to 30 seconds. 86 | 87 | ### Excluding site from checks 88 | 89 | To exclude a site from checks you can either remove the site or change the `last_checked` Key-Pair to today's date or a date in the future to make it last in the list. 90 | 91 | ## Troubleshooting 92 | 93 | In case you encounter an issue with this script open a [New Issue](https://github.com/kevquirk/512kb.club/issues) and tagging @Lex-2008 94 | 95 | Please provide as much information as possible such as: 96 | * All Output 97 | * Current state of `sites.yml` if it's from the `master` branch, or has been modified 98 | 99 | To debug why the script "hangs" when checking some site, edit the [ python-gtmetrix/gtmetrix/interface.py](https://github.com/aisayko/python-GTmetrix/blob/master/GTmetrix/interface.py#L86) file 100 | and a new 87th line which would looke like this: 101 | 102 | Orginal file 103 | ```py 104 | response_data = self._request(self.poll_state_url) 105 | self.state = response_data['state'] 106 | ``` 107 | Edited file 108 | ```py 109 | response_data = self._request(self.poll_state_url) 110 | print(response_data) 111 | self.state = response_data['state'] 112 | ``` 113 | This will break the nicely formatted table output, but you will see the raw response from GTmetrix API. 114 | ```sh 115 | {'resources': {}, 'error': 'An error occurred fetching the page: HTTPS error: hostname verification failed', 'results': {}, 'state': 'error'} 116 | ``` 117 | 118 | ## Future plans 119 | 120 | Currently, this script doesn't check any errors returned by GTmetrix.com API. That's the next item on my list. Moreover, I will get rid of python-GTmetrix dependency, since it adds more troubles than benefits. 121 | -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | /* Global colour variables */ 2 | :root { 3 | --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif; 4 | --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace; 5 | 6 | --bg: #FAFAFA; 7 | --header-bg: #212121; 8 | --text: #212121; 9 | --header-text: #FAFAFA; 10 | --link: #0D47A1; 11 | --code: #D81B60; 12 | --pre: #D0D0D0; 13 | --pre-bg: #1A1A1A; 14 | --accent: #e6e6e6; 15 | --gh-hover: #D3D3D3; 16 | --before-blue: #64B5F6; 17 | --after-blue: #BBDEFB; 18 | --before-orange: #FBC02D; 19 | --after-orange: #FFF176; 20 | --before-green: #4CAF50; 21 | --after-green: #C8E6C9; 22 | --notice-red-bg: #FFE4E1; 23 | --notice-red-border: #951818; 24 | } 25 | 26 | /* Define colours for auto dark mode */ 27 | @media (prefers-color-scheme: dark) { 28 | :root { 29 | --bg: #212121; 30 | --header-bg: #111; 31 | --text: #EEE; 32 | --link: #64B5F6; 33 | --accent: #333; 34 | --gh-hover: #222; 35 | --code: #F06292; 36 | --notice-red-bg: #951818; 37 | --notice-red-border: #EFD3CF; 38 | } 39 | 40 | ul li { 41 | opacity: .8; 42 | } 43 | } 44 | 45 | * { 46 | box-sizing: border-box; 47 | } 48 | 49 | html { 50 | scroll-behavior: smooth; 51 | } 52 | 53 | body { 54 | font-family: var(--sans-font); 55 | font-size: 1.1rem; 56 | margin: 0 0 4rem 0; 57 | padding: 0 .5rem; 58 | background: var(--bg); 59 | color: var(--text); 60 | } 61 | 62 | header, 63 | main, 64 | footer { 65 | margin: 0 auto; 66 | max-width: 50rem; 67 | width: 100%; 68 | } 69 | 70 | /* Format navigation */ 71 | nav { 72 | font-size: 1rem; 73 | line-height: 2; 74 | padding: 1rem 0; 75 | margin-left: 1rem; 76 | } 77 | 78 | nav a { 79 | border: 1px solid var(--text); 80 | border-radius: 5px; 81 | color: var(--text) !important; 82 | display: inline-block; 83 | padding: .1rem 1rem; 84 | margin-right: 1rem; 85 | text-decoration: none; 86 | transition: .4s; 87 | } 88 | 89 | nav a:hover, 90 | nav a.current { 91 | color: var(--text) !important; 92 | background: var(--accent); 93 | } 94 | 95 | nav a.current:hover { 96 | text-decoration: none; 97 | } 98 | 99 | header { 100 | padding-bottom: 2rem; 101 | border-bottom: 2px solid var(--text); 102 | } 103 | 104 | header h1 { 105 | margin: 0; 106 | font-size: 3rem; 107 | padding: 1rem 0 1rem 0; 108 | text-align: center; 109 | } 110 | 111 | main { 112 | margin-top: 3rem; 113 | } 114 | 115 | .small { 116 | font-size: .9rem; 117 | } 118 | 119 | .medium { 120 | font-weight: bold; 121 | font-size: 1.4rem; 122 | } 123 | 124 | .centre { 125 | text-align: center; 126 | } 127 | 128 | h1, 129 | h2, 130 | h3, 131 | h4, 132 | h5, 133 | h6 { 134 | line-height: 1.2; 135 | } 136 | 137 | h2 { 138 | margin: 4rem 0 -1.5rem 0; 139 | } 140 | 141 | .jump li { 142 | display: inline-block; 143 | padding-right: 1rem; 144 | } 145 | 146 | a, 147 | a:visited { 148 | color: var(--link) 149 | } 150 | 151 | a:hover, 152 | a:focus { 153 | text-decoration: none; 154 | } 155 | 156 | a.site, 157 | a.site:visited { 158 | color: currentColor; 159 | text-decoration: none; 160 | } 161 | 162 | a.site:hover, 163 | a.site:focus { 164 | text-decoration: underline; 165 | } 166 | 167 | .button { 168 | background: var(--link); 169 | color: var(--bg) !important; 170 | margin: 1.5rem 0; 171 | padding: 1rem 1.25rem; 172 | border-radius: 5px; 173 | text-decoration: none; 174 | } 175 | 176 | .button:hover { 177 | background: var(--text); 178 | } 179 | 180 | pre { 181 | font-family: var(--mono-font); 182 | background: var(--pre-bg) !important; 183 | border-radius: 5px; 184 | margin-bottom: 1.6em; 185 | max-width: 100%; 186 | white-space: pre-wrap; 187 | padding: 1.6em; 188 | max-height: 650px; 189 | } 190 | 191 | pre code { 192 | font-size: 1.1rem; 193 | font-family: var(--mono-font); 194 | color: #ccc; 195 | } 196 | 197 | code { 198 | font-family: var(--mono-font); 199 | color: var(--code); 200 | } 201 | 202 | ul { 203 | list-style: none; 204 | margin: 3rem 0 0 0; 205 | padding: 0; 206 | } 207 | 208 | /* BLUE COLOURS */ 209 | ul.blue li { 210 | background: var(--after-blue); 211 | color: #212121; 212 | line-height: 1; 213 | margin: 0 0 0.5rem 0; 214 | padding: 15px 10px 12px; 215 | position: relative; 216 | border-radius: 4px; 217 | } 218 | 219 | ul.blue li span.before { 220 | background: var(--before-blue); 221 | height: 100%; 222 | width: calc(var(--data-size)/512 * 100%); 223 | border-radius: 4px; 224 | z-index: 0; 225 | } 226 | 227 | /* ORANGE COLOURS */ 228 | ul.orange li { 229 | background: var(--after-orange); 230 | color: #212121; 231 | line-height: 1; 232 | margin: 0 0 0.5rem 0; 233 | padding: 15px 10px 12px; 234 | position: relative; 235 | border-radius: 4px; 236 | } 237 | 238 | ul.orange li span.before { 239 | background: var(--before-orange); 240 | height: 100%; 241 | width: calc(var(--data-size)/512 * 100%); 242 | border-radius: 4px; 243 | z-index: 0; 244 | } 245 | 246 | /* GREEN COLOURS */ 247 | ul.green li { 248 | background: var(--after-green); 249 | color: #212121; 250 | line-height: 1; 251 | margin: 0 0 0.5rem 0; 252 | padding: 15px 10px 12px; 253 | position: relative; 254 | border-radius: 4px; 255 | } 256 | 257 | ul.green li span.before { 258 | background: var(--before-green); 259 | height: 100%; 260 | width: calc(var(--data-size)/512 * 100%); 261 | border-radius: 4px; 262 | z-index: 0; 263 | } 264 | 265 | ul li span.before, 266 | ul li span.after { 267 | left: 0; 268 | position: absolute; 269 | top: 0; 270 | } 271 | 272 | ul li span.after { 273 | left: auto; 274 | opacity: 0.8; 275 | right: 10px; 276 | top: auto; 277 | } 278 | 279 | ul li a { 280 | font-weight: bold; 281 | position: relative; 282 | z-index: 2; 283 | } 284 | 285 | footer { 286 | border-top: 1px solid var(--text); 287 | margin: 3rem auto 0; 288 | padding: 0.5rem 0 0; 289 | text-align: center; 290 | font-size: .9rem; 291 | } 292 | 293 | @media(max-width:500px) { 294 | body { 295 | margin: 0 0 4rem 0; 296 | padding: 0 10px; 297 | } 298 | } 299 | 300 | /* Format the accordion */ 301 | details { 302 | padding: .6rem 1rem; 303 | background: var(--accent); 304 | border: 1px solid; 305 | border-radius: 5px; 306 | margin-bottom: 1rem; 307 | } 308 | 309 | details.red-notice { 310 | background: var(--notice-red-bg); 311 | border-color: var(--notice-red-border); 312 | } 313 | 314 | .red-notice h2 { 315 | margin: 0; 316 | } 317 | 318 | summary { 319 | cursor: pointer; 320 | font-weight: bold; 321 | } 322 | 323 | details[open] { 324 | padding-bottom: .75rem; 325 | } 326 | 327 | details[open] summary { 328 | margin-bottom: .5rem; 329 | } 330 | 331 | details[open]>*:last-child { 332 | margin-bottom: 0; 333 | } 334 | 335 | img { 336 | max-width: 100%; 337 | display: block; 338 | margin: 0 auto; 339 | } 340 | 341 | .divrandom { 342 | margin: 2rem 0 4rem 0; 343 | } 344 | 345 | .random { 346 | background: var(--before-green); 347 | } 348 | 349 | .notice { 350 | border: 2px solid; 351 | padding: 1rem 1.5rem; 352 | background-color: var(--accent); 353 | margin: 3rem 0; 354 | text-align: center; 355 | } 356 | -------------------------------------------------------------------------------- /_data/sites.yml: -------------------------------------------------------------------------------- 1 | - domain: 0chris.com 2 | url: https://www.0chris.com/ 3 | size: 4.3 4 | last_checked: 2022-03-20 5 | 6 | - domain: 0xedward.io 7 | url: https://0xedward.io/ 8 | size: 6.2 9 | last_checked: 2022-05-13 10 | 11 | - domain: 0xff.nu 12 | url: https://0xff.nu/ 13 | size: 7.2 14 | last_checked: 2022-03-20 15 | 16 | - domain: 0xtatsu.xyz 17 | url: https://0xtatsu.xyz/ 18 | size: 38.5 19 | last_checked: 2023-04-07 20 | 21 | - domain: 100daystooffload.com 22 | url: https://100daystooffload.com/ 23 | size: 25.6 24 | last_checked: 2022-03-20 25 | 26 | - domain: 10maurycy10.github.io 27 | url: https://10maurycy10.github.io/ 28 | size: 20.2 29 | last_checked: 2023-02-17 30 | 31 | - domain: 1984.ninja 32 | url: https://1984.ninja/ 33 | size: 20.3 34 | last_checked: 2023-01-23 35 | 36 | - domain: 250kb.club 37 | url: https://250kb.club/ 38 | size: 59.6 39 | last_checked: 2022-05-06 40 | 41 | - domain: 46692.dev 42 | url: https://46692.dev/ 43 | size: 8.9 44 | last_checked: 2022-07-18 45 | 46 | - domain: 47nil.com 47 | url: https://47nil.com/ 48 | size: 155 49 | last_checked: 2022-03-25 50 | 51 | - domain: 512kb.club 52 | url: https://512kb.club/ 53 | size: 91.5 54 | last_checked: 2022-03-06 55 | 56 | - domain: 5am.is 57 | url: https://5am.is 58 | size: 30.0 59 | last_checked: 2022-11-26 60 | 61 | - domain: 60z.github.io 62 | url: https://60z.github.io/ 63 | size: 16.2 64 | last_checked: 2022-03-20 65 | 66 | - domain: 64b.it 67 | url: https://64b.it/ 68 | size: 204 69 | last_checked: 2022-03-22 70 | 71 | - domain: aaron.place 72 | url: https://aaron.place/ 73 | size: 21.9 74 | last_checked: 2022-03-20 75 | 76 | - domain: aaronjeskie.com 77 | url: https://aaronjeskie.com/ 78 | size: 35.4 79 | last_checked: 2022-04-08 80 | 81 | - domain: abdus.net 82 | url: https://www.abdus.net/ 83 | size: 164 84 | last_checked: 2022-03-20 85 | 86 | - domain: aboutdavid.me 87 | url: https://aboutdavid.me/ 88 | size: 7.33 89 | last_checked: 2022-04-21 90 | 91 | - domain: abridge.netlify.app 92 | url: https://abridge.netlify.app/ 93 | size: 56 94 | last_checked: 2022-08-17 95 | 96 | - domain: adam.sr 97 | url: https://adam.sr/ 98 | size: 109 99 | last_checked: 2022-11-22 100 | 101 | - domain: adityatelange.in 102 | url: https://adityatelange.in/ 103 | size: 267 104 | last_checked: 2022-06-11 105 | 106 | - domain: adrian.geek.nz 107 | url: https://adrian.geek.nz/ 108 | size: 161 109 | last_checked: 2022-05-15 110 | 111 | - domain: aggy.cloud 112 | url: https://aggy.cloud/ 113 | size: 189 114 | last_checked: 2022-05-15 115 | 116 | - domain: ahmubashshir.github.io 117 | url: https://ahmubashshir.github.io/ 118 | size: 113 119 | last_checked: 2023-04-28 120 | 121 | - domain: alessandrocuzzocrea.com 122 | url: https://alessandrocuzzocrea.com 123 | size: 13.4 124 | last_checked: 2023-02-28 125 | 126 | - domain: alexey.shpakovsky.ru 127 | url: http://alexey.shpakovsky.ru/ 128 | size: 91.2 129 | last_checked: 2022-05-15 130 | 131 | - domain: alfie.wtf 132 | url: http://www.alfie.wtf 133 | size: 20.4 134 | last_checked: 2022-01-29 135 | 136 | - domain: allaboutberlin.com 137 | url: https://allaboutberlin.com/ 138 | size: 203 139 | last_checked: 2022-03-20 140 | 141 | - domain: allan.reyes.sh 142 | url: https://allan.reyes.sh/ 143 | size: 198 144 | last_checked: 2022-09-12 145 | 146 | - domain: allien.work 147 | url: https://allien.work/ 148 | size: 166 149 | last_checked: 2022-05-15 150 | 151 | - domain: alperor.us 152 | url: https://alperor.us/ 153 | size: 98 154 | last_checked: 2023-02-04 155 | 156 | - domain: amanasifkhalid.github.io 157 | url: https://amanasifkhalid.github.io/ 158 | size: 31.7 159 | last_checked: 2022-05-06 160 | 161 | - domain: ampersandia.net 162 | url: https://ampersandia.net 163 | size: 48.8 164 | last_checked: 2022-03-30 165 | 166 | - domain: andrewsfasteners.uk 167 | url: https://www.andrewsfasteners.uk/ 168 | size: 195 169 | last_checked: 2022-01-25 170 | 171 | - domain: anibalsolon.com 172 | url: https://anibalsolon.com/ 173 | size: 452 174 | last_checked: 2022-03-20 175 | 176 | - domain: anna.wieckiewicz.org 177 | url: https://anna.wieckiewicz.org/ 178 | size: 33.8 179 | last_checked: 2022-02-19 180 | 181 | - domain: annaaurora.eu 182 | url: https://annaaurora.eu/ 183 | size: 29.4 184 | last_check: 2022-07-20 185 | 186 | - domain: anonimno.codeberg.page 187 | url: https://anonimno.codeberg.page/ 188 | size: 126 189 | last_checked: 2022-05-15 190 | 191 | - domain: anthonydeguzman.com 192 | url: https://anthonydeguzman.com/ 193 | size: 362 194 | last_checked: 2022-05-16 195 | 196 | - domain: aperture.icu 197 | url: https://aperture.icu/ 198 | size: 18.9 199 | last_checked: 2023-02-17 200 | 201 | - domain: apex.ac 202 | url: https://apex.ac/ 203 | size: 13.5 204 | last_checked: 2022-07-18 205 | 206 | - domain: appbeat.io 207 | url: https://appbeat.io/ 208 | size: 201 209 | last_checked: 2022-03-20 210 | 211 | - domain: arcadewise.me 212 | url: https://arcadewise.me/ 213 | size: 258 214 | last_checked: 2022-05-20 215 | 216 | - domain: arghyadeep.in 217 | url: https://arghyadeep.in/ 218 | size: 451 219 | last_checked: 2022-03-20 220 | 221 | - domain: arizonabankruptcylawyer.org 222 | url: https://www.arizonabankruptcylawyer.org/ 223 | size: 478 224 | last_checked: 2022-08-04 225 | 226 | - domain: arkives.in 227 | url: https://arkives.in/ 228 | size: 61.9 229 | last_checked: 2023-04-30 230 | 231 | - domain: aroace.space 232 | url: https://aroace.space/ 233 | size: 186 234 | last_checked: 2022-05-05 235 | 236 | - domain: artemislena.eu 237 | url: https://artemislena.eu/ 238 | size: 40.0 239 | last_checked: 2022-05-15 240 | 241 | - domain: aryan.app 242 | url: https://aryan.app/ 243 | size: 348 244 | last_checked: 2022-03-20 245 | 246 | - domain: atthis.link 247 | url: https://atthis.link/ 248 | size: 9.4 249 | last_checked: 2022-04-26 250 | 251 | - domain: audiotonic.org 252 | url: https://audiotonic.org/ 253 | size: 10.2 254 | last_checked: 2022-07-26 255 | 256 | - domain: auroraoutlook.com 257 | url: https://auroraoutlook.com/ 258 | size: 86.3 259 | last_checked: 2023-04-03 260 | 261 | - domain: autotutor.com.au 262 | url: https://autotutor.com.au 263 | size: 261 264 | last_checked: 2022-04-26 265 | 266 | - domain: autumns.page 267 | url: https://autumns.page/ 268 | size: 213 269 | last_checked: 2022-05-06 270 | 271 | - domain: awesomesheep48.me 272 | url: https://awesomesheep48.me/ 273 | size: 10.6 274 | last_checked: 2022-05-15 275 | 276 | - domain: az.on.lt 277 | url: https://az.on.lt/ 278 | size: 25.3 279 | last_checked: 2022-03-25 280 | 281 | - domain: b0ba.dev 282 | url: https://b0ba.dev/ 283 | size: 181 284 | last_checked: 2022-04-12 285 | 286 | - domain: bala-frontdev.github.io 287 | url: https://bala-frontdev.github.io/ 288 | size: 14.9 289 | last_checked: 2022-03-25 290 | 291 | - domain: baltuta.eu 292 | url: https://baltuta.eu/ 293 | size: 80.1 294 | last_checked: 2022-03-25 295 | 296 | - domain: barryvanveen.nl 297 | url: https://barryvanveen.nl/ 298 | size: 29.0 299 | last_checked: 2022-05-11 300 | 301 | - domain: bastian.rieck.me 302 | url: https://bastian.rieck.me/ 303 | size: 502 304 | last_checked: 2022-01-30 305 | 306 | - domain: bbbhltz.codeberg.page 307 | url: https://bbbhltz.codeberg.page 308 | size: 29.1 309 | last_checked: 2022-03-11 310 | 311 | - domain: bduck.xyz 312 | url: https://bduck.xyz/ 313 | size: 249 314 | last_checked: 2022-05-15 315 | 316 | - domain: bebyx.co.ua 317 | url: https://bebyx.co.ua/ 318 | size: 8.5 319 | last_checked: 2022-04-26 320 | 321 | - domain: beh.uk 322 | url: https://www.beh.uk/ 323 | size: 101 324 | last_checked: 2022-05-15 325 | 326 | - domain: benrosenberg.info 327 | url: http://benrosenberg.info/ 328 | size: 6.8 329 | last_checked: 2022-04-26 330 | 331 | - domain: bestmotherfucking.website 332 | url: https://bestmotherfucking.website/ 333 | size: 5.4 334 | last_checked: 2022-04-26 335 | 336 | - domain: beuke.org 337 | url: https://beuke.org/ 338 | size: 57.3 339 | last_checked: 2022-12-18 340 | 341 | - domain: bezoscalculator.com 342 | url: https://bezoscalculator.com/ 343 | size: 46.1 344 | last_checked: 2022-04-26 345 | 346 | - domain: bfontaine.net 347 | url: https://bfontaine.net/blog/ 348 | size: 25.5 349 | last_checked: 2022-05-06 350 | 351 | - domain: binyam.in 352 | url: https://binyam.in/ 353 | size: 80.4 354 | last_checked: 2022-05-15 355 | 356 | - domain: bitcoincashstandards.org 357 | url: https://bitcoincashstandards.org 358 | size: 35.9 359 | last_checked: 2022-11-01 360 | 361 | - domain: bjhess.com 362 | url: http://bjhess.com/ 363 | size: 10.0 364 | last_checked: 2022-05-15 365 | 366 | - domain: bjornf.dev 367 | url: https://bjornf.dev/ 368 | size: 72.1 369 | last_checked: 2022-09-18 370 | 371 | - domain: blakehawkins.com 372 | url: https://blakehawkins.com/blog 373 | size: 123 374 | last_checked: 2022-08-31 375 | 376 | - domain: block.sunappu.net 377 | url: https://block.sunappu.net/ 378 | size: 193 379 | last_checked: 2022-04-16 380 | 381 | - domain: blog.benoitj.ca 382 | url: https://blog.benoitj.ca/ 383 | size: 8.7 384 | last_checked: 2022-04-26 385 | 386 | - domain: blog.bfloeser.de 387 | url: https://blog.bfloeser.de 388 | size: 33.4 389 | last_checked: 2022-03-08 390 | 391 | - domain: blog.bshah.in 392 | url: https://blog.bshah.in/ 393 | size: 31.1 394 | last_checked: 2022-05-13 395 | 396 | - domain: blog.cosipa.omg.lol 397 | url: https://blog.cosipa.omg.lol 398 | size: 54.8 399 | last_checked: 2023-02-11 400 | 401 | - domain: blog.craftyguy.net 402 | url: https://blog.craftyguy.net/ 403 | size: 17.1 404 | last_checked: 2022-04-18 405 | 406 | - domain: blog.danieljanus.pl 407 | url: https://blog.danieljanus.pl/ 408 | size: 197 409 | last_checked: 2022-01-29 410 | 411 | - domain: blog.dejavu.moe 412 | url: https://blog.dejavu.moe/ 413 | size: 107 414 | last_checked: 2023-05-27 415 | 416 | - domain: blog.dgold.eu 417 | url: https://blog.dgold.eu/ 418 | size: 12.6 419 | last_checked: 2022-05-15 420 | 421 | - domain: blog.ethandewey.com 422 | url: https://blog.ethandewey.com 423 | size: 199 424 | last_checked: 2022-10-21 425 | 426 | - domain: blog.khaleelgibran.com 427 | url: https://blog.khaleelgibran.com/ 428 | size: 213 429 | last_checked: 2022-04-26 430 | 431 | - domain: blog.libove.org 432 | url: https://blog.libove.org 433 | size: 103 434 | last_checked: 2022-08-31 435 | 436 | - domain: blog.madelinepritchard.net 437 | url: https://www.blog.madelinepritchard.net/ 438 | size: 90.6 439 | last_checked: 2023-03-11 440 | 441 | - domain: blog.omgmog.net 442 | url: https://blog.omgmog.net/ 443 | size: 85.1 444 | last_checked: 2022-05-14 445 | 446 | - domain: blog.ononoki.org 447 | url: https://blog.ononoki.org/ 448 | size: 90.6 449 | last_checked: 2022-06-03 450 | 451 | - domain: blog.setale.me 452 | url: https://blog.setale.me/ 453 | size: 294 454 | last_checked: 2022-10-17 455 | 456 | - domain: blog.trieoflogs.com 457 | url: https://blog.trieoflogs.com 458 | size: 78.3 459 | last_checked: 2022-05-01 460 | 461 | - domain: blog.xaloc.space 462 | url: https://blog.xaloc.space/ 463 | size: 42.7 464 | last_checked: 2022-05-15 465 | 466 | - domain: blush-beaver-tam.cyclic.app 467 | url: https://blush-beaver-tam.cyclic.app 468 | size: 365 469 | last_checked: 2022-09-12 470 | 471 | - domain: bmoat.com 472 | url: https://bmoat.com/ 473 | size: 90.1 474 | last_checked: 2023-04-22 475 | 476 | - domain: boehs.org 477 | url: http://boehs.org/ 478 | size: 86.0 479 | last_checked: 2022-05-15 480 | 481 | - domain: bonetflix.com 482 | url: https://bonetflix.com/ 483 | size: 71.9 484 | last_checked: 2023-04-27 485 | 486 | - domain: bortox.it 487 | url: https://bortox.it/en 488 | size: 172 489 | last_checked: 2022-08-20 490 | 491 | - domain: brainbaking.com 492 | url: https://brainbaking.com/ 493 | size: 163 494 | last_checked: 2022-05-15 495 | 496 | - domain: brajeshwar.com 497 | url: https://brajeshwar.com 498 | size: 181 499 | last_checked: 2022-05-15 500 | 501 | - domain: brandont.dev 502 | url: https://brandont.dev/ 503 | size: 38.8 504 | last_checked: 2023-05-31 505 | 506 | - domain: brianjdevries.com 507 | url: https://brianjdevries.com 508 | size: 33.7 509 | last_checked: 2022-03-14 510 | 511 | - domain: brycewray.com 512 | url: https://www.brycewray.com/ 513 | size: 103.0 514 | last_checked: 2022-06-27 515 | 516 | - domain: bubble.email 517 | url: https://bubble.email 518 | size: 421.0 519 | last_checked: 2022-07-20 520 | 521 | - domain: buchh.org 522 | url: https://buchh.org/ 523 | size: 4.7 524 | last_checked: 2022-05-15 525 | 526 | - domain: buhocms.org 527 | url: https://buhocms.org/ 528 | size: 206 529 | last_checked: 2023-03-14 530 | 531 | - domain: burak.mulayim.app 532 | url: https://burak.mulayim.app/ 533 | size: 88 534 | last_checked: 2023-02-26 535 | 536 | - domain: c.har.li 537 | url: https://c.har.li/e/ 538 | size: 148 539 | last_checked: 2023-03-05 540 | 541 | - domain: c1.fi 542 | url: https://c1.fi/about?lang=en 543 | size: 79.0 544 | last_checked: 2023-01-19 545 | 546 | - domain: cahaba-ts.com 547 | url: https://cahaba-ts.com/ 548 | size: 167 549 | last_checked: 2022-05-13 550 | 551 | - domain: caliandro.de 552 | url: https://caliandro.de/ 553 | size: 163 554 | last_checked: 2022-05-15 555 | 556 | - domain: calotte.ca 557 | url: https://calotte.ca/ 558 | size: 180 559 | last_checked: 2023-02-15 560 | 561 | - domain: canistop.net 562 | url: https://canistop.net/ 563 | size: 189 564 | last_checked: 2022-05-15 565 | 566 | - domain: canwe.dev 567 | url: https://canwe.dev/ 568 | size: 64.8 569 | last_checked: 2022-10-23 570 | 571 | - domain: caraudioinc.com 572 | url: http://caraudioinc.com/ 573 | size: 338 574 | last_checked: 2022-02-11 575 | 576 | - domain: castorisdead.xyz 577 | url: https://castorisdead.xyz 578 | size: 48.1 579 | last_checked: 2023-01-24 580 | 581 | - domain: catdrout.xyz 582 | url: https://catdrout.xyz/ 583 | size: 140 584 | last_checked: 2022-09-12 585 | 586 | - domain: cbaca.blog 587 | url: https://cbaca.blog/ 588 | size: 46.7 589 | last_checked: 2022-11-16 590 | 591 | - domain: cbrueggenolte.de 592 | url: https://cbrueggenolte.de/ 593 | size: 174 594 | last_checked: 2022-01-26 595 | 596 | - domain: ccsleep.net 597 | url: http://ccsleep.net/ 598 | size: 5.0 599 | last_checked: 2022-03-19 600 | 601 | - domain: celeste.exposed 602 | url: https://celeste.exposed/ 603 | size: 293 604 | last_checked: 2022-03-16 605 | 606 | - domain: cheng.bearblog.dev 607 | url: https://cheng.bearblog.dev/ 608 | size: 5.71 609 | last_checked: 2023-03-11 610 | 611 | - domain: chibilinks.com 612 | url: https://chibilinks.com/ 613 | size: 17.1 614 | last_checked: 2022-09-28 615 | 616 | - domain: chimbosonic.com 617 | url: https://chimbosonic.com/ 618 | size: 43.7 619 | last_checked: 2023-04-21 620 | 621 | - domain: chino.is-a.dev 622 | url: https://chino.is-a.dev/ 623 | size: 418 624 | last_checked: 2023-02-01 625 | 626 | - domain: christianoliff.com 627 | url: https://christianoliff.com/ 628 | size: 420 629 | last_checked: 2022-11-01 630 | 631 | - domain: chriswiegman.com 632 | url: https://chriswiegman.com/ 633 | size: 72.8 634 | last_checked: 2022-02-20 635 | 636 | - domain: cipirit.netlify.app 637 | url: https://cipirit.netlify.app 638 | size: 246 639 | last_checked: 2023-05-21 640 | 641 | - domain: citizen428.net 642 | url: https://citizen428.net/ 643 | size: 22.9 644 | last_checked: 2022-04-26 645 | 646 | - domain: cleberg.net 647 | url: https://cleberg.net/ 648 | size: 5.9 649 | last_checked: 2023-05-22 650 | 651 | - domain: cli.club 652 | url: https://cli.club/ 653 | size: 25.5 654 | last_checked: 2022-07-13 655 | 656 | - domain: closedgl2.github.io 657 | url: https://closedgl2.github.io/ 658 | size: 8.2 659 | last_checked: 2022-01-21 660 | 661 | - domain: clubhouse.boxpiper.com 662 | url: https://clubhouse.boxpiper.com/ 663 | size: 120 664 | last_checked: 2022-05-15 665 | 666 | - domain: cmdln.org 667 | url: https://cmdln.org 668 | size: 434 669 | last_checked: 2022-05-15 670 | 671 | - domain: code.strigo.cc 672 | url: https://code.strigo.cc/ 673 | size: 128 674 | last_checked: 2023-06-12 675 | 676 | - domain: codetheweb.blog 677 | url: https://codetheweb.blog/ 678 | size: 472 679 | last_checked: 2022-05-15 680 | 681 | - domain: codevoid.de 682 | url: https://codevoid.de/ 683 | size: 10.8 684 | last_checked: 2022-04-26 685 | 686 | - domain: codingbobby.xyz 687 | url: https://codingbobby.xyz/ 688 | size: 164 689 | last_checked: 2022-05-06 690 | 691 | - domain: codingotaku.com 692 | url: https://codingotaku.com/ 693 | size: 22.6 694 | last_checked: 2022-05-06 695 | 696 | - domain: col2in.ml 697 | url: https://col2in.ml/ 698 | size: 10.8 699 | last_checked: 2022-06-20 700 | 701 | - domain: colincogle.name 702 | url: https://colincogle.name/ 703 | size: 29.9 704 | last_checked: 2023-07-07 705 | 706 | - domain: conorknowles.com 707 | url: https://conorknowles.com/ 708 | size: 5.08 709 | last_checked: 2022-01-20 710 | 711 | - domain: consoom.soy 712 | url: https://consoom.soy/ 713 | size: 5.3 714 | last_checked: 2022-04-26 715 | 716 | - domain: control.org 717 | url: https://control.org/ 718 | size: 154 719 | last_checked: 2022-05-15 720 | 721 | - domain: conway.scot 722 | url: https://conway.scot/ 723 | size: 84.9 724 | last_checked: 2023-02-10 725 | 726 | - domain: coopermatt.com 727 | url: https://coopermatt.com/ 728 | size: 360 729 | last_checked: 2022-04-26 730 | 731 | - domain: cri.cl 732 | url: https://cri.cl/ 733 | size: 72 734 | last_checked: 2022-03-03 735 | 736 | - domain: cri.dev 737 | url: https://cri.dev/ 738 | size: 30.2 739 | last_checked: 2022-04-26 740 | 741 | - domain: crooked.ink 742 | url: https://crooked.ink 743 | size: 428 744 | last_checked: 2022-05-20 745 | 746 | - domain: ctrl-c.club 747 | url: https://ctrl-c.club/ 748 | size: 115 749 | last_checked: 2022-05-15 750 | 751 | - domain: cujo.casa 752 | url: https://cujo.casa/ 753 | size: 28.4 754 | last_checked: 2023-06-16 755 | 756 | - domain: culp.dev 757 | url: https://culp.dev/ 758 | size: 48.1 759 | last_checked: 2022-05-15 760 | 761 | - domain: curiositry.com 762 | url: https://www.curiositry.com/ 763 | size: 189 764 | last_checked: 2022-05-15 765 | 766 | - domain: cweagans.net 767 | url: https://www.cweagans.net/ 768 | size: 245 769 | last_checked: 2023-01-20 770 | 771 | - domain: cyber-diocletian.github.io 772 | url: https://cyber-diocletian.github.io/ 773 | size: 47.3 774 | last_checked: 2022-05-15 775 | 776 | - domain: cyberarm.dev 777 | url: https://cyberarm.dev/ 778 | size: 11.4 779 | last_checked: 2022-04-26 780 | 781 | - domain: cyberfarmer.xyz 782 | url: https://cyberfarmer.xyz/ 783 | size: 15.0 784 | last_checked: 2022-05-15 785 | 786 | - domain: cycloneblaze.net 787 | url: https://cycloneblaze.net/ 788 | size: 45.0 789 | last_checked: 2022-05-15 790 | 791 | - domain: d-s.sh 792 | url: http://d-s.sh/ 793 | size: 115 794 | last_checked: 2023-03-24 795 | 796 | - domain: dafne.cc 797 | url: https://dafne.cc/ 798 | size: 195 799 | last_checked: 2022-05-13 800 | 801 | - domain: daltoncraven.com 802 | url: https://daltoncraven.com/ 803 | size: 317 804 | last_checked: 2022-05-15 805 | 806 | - domain: danaross.dev 807 | url: https://danaross.dev/ 808 | size: 336 809 | last_checked: 2022-02-01 810 | 811 | - domain: daniel-siepmann.de 812 | url: https://daniel-siepmann.de/ 813 | size: 61.3 814 | last_checked: 2022-05-15 815 | 816 | - domain: danielcuttridge.com 817 | url: https://danielcuttridge.com/ 818 | size: 18.8 819 | last_checked: 2022-04-26 820 | 821 | - domain: danisancas.com 822 | url: https://danisancas.com/ 823 | size: 65.4 824 | last_checked: 2023-02-22 825 | 826 | - domain: dariusz.wieckiewicz.org 827 | url: https://dariusz.wieckiewicz.org/ 828 | size: 392 829 | last_checked: 2022-01-25 830 | 831 | - domain: darktheme.club 832 | url: https://darktheme.club/ 833 | size: 20.5 834 | last_checked: 2022-07-16 835 | 836 | - domain: dataswamp.org 837 | url: https://dataswamp.org/~solene/ 838 | size: 69.5 839 | last_checked: 2022-05-06 840 | 841 | - domain: david.ae 842 | url: https://david.ae/ 843 | size: 364 844 | last_checked: 2022-07-18 845 | 846 | - domain: davidovski.xyz 847 | url: http://davidovski.xyz/ 848 | size: 202 849 | last_checked: 2022-05-15 850 | 851 | - domain: davidrutland.com 852 | url: https://davidrutland.com/ 853 | size: 365 854 | last_checked: 2022-05-15 855 | 856 | - domain: decentnet.github.io 857 | url: https://decentnet.github.io/ 858 | size: 31.2 859 | last_checked: 2022-05-06 860 | 861 | - domain: detektywi.it 862 | url: https://detektywi.it 863 | size: 447 864 | last_checked: 2022-03-12 865 | 866 | - domain: devcara.com 867 | url: https://devcara.com 868 | size: 4.62 869 | last_checked: 2022-06-02 870 | 871 | - domain: devilinside.me 872 | url: https://devilinside.me 873 | size: 326 874 | last_checked: 2022-11-21 875 | 876 | - domain: diicorp95.neonarod.com 877 | url: http://diicorp95.neonarod.com/ 878 | size: 19.1 879 | last_checked: 2022-05-15 880 | 881 | - domain: divriots.com 882 | url: https://divriots.com/ 883 | size: 296 884 | last_checked: 2022-09-13 885 | 886 | - domain: docs.j7k6.org 887 | url: https://docs.j7k6.org/ 888 | size: 75.5 889 | last_checked: 2022-05-15 890 | 891 | - domain: donohoe.dev 892 | url: https://donohoe.dev/ 893 | size: 14.9 894 | last_checked: 2022-05-05 895 | 896 | - domain: dotfilehub.com 897 | url: https://dotfilehub.com/ 898 | size: 7.8 899 | last_checked: 2022-05-05 900 | 901 | - domain: drgomesp.dev 902 | url: https://drgomesp.dev/ 903 | size: 112 904 | last_checked: 2022-05-15 905 | 906 | - domain: drkhsh.at 907 | url: https://drkhsh.at/ 908 | size: 61.0 909 | last_checked: 2023-05-17 910 | 911 | - domain: drwho.virtadpt.net 912 | url: https://drwho.virtadpt.net/ 913 | size: 66.2 914 | last_checked: 2022-04-26 915 | 916 | - domain: duechiacchiere.it 917 | url: https://duechiacchiere.it/ 918 | size: 181 919 | last_checked: 2022-10-11 920 | 921 | - domain: duplitech.fr 922 | url: https://www.duplitech.fr/ 923 | size: 359 924 | last_checked: 2022-04-01 925 | 926 | - domain: dusanmitrovic.xyz 927 | url: https://dusanmitrovic.xyz/ 928 | size: 13.1 929 | last_checked: 2022-05-15 930 | 931 | - domain: dusansimic.me 932 | url: https://dusansimic.me/ 933 | size: 207 934 | last_checked: 2022-04-26 935 | 936 | - domain: dustri.org 937 | url: https://dustri.org/b/ 938 | size: 123 939 | last_checked: 2023-03-01 940 | 941 | - domain: dvergamål.no 942 | url: https://dvergamål.no/ 943 | size: 41.6 944 | last_checked: 2022-05-06 945 | 946 | - domain: ebass.uk 947 | url: https://ebass.uk/ 948 | size: 501 949 | last_checked: 2022-04-26 950 | 951 | - domain: ecliptik.com 952 | url: https://www.ecliptik.com/ 953 | size: 120 954 | last_checked: 2022-03-08 955 | 956 | - domain: ecotone.selftitled.de 957 | url: https://ecotone.selftitled.de/ 958 | size: 451 959 | last_checked: 2023-05-26 960 | 961 | - domain: eddiex.se 962 | url: https://eddiex.se/ 963 | size: 34.6 964 | last_checked: 2022-05-06 965 | 966 | - domain: editions-du-26-octobre.com 967 | url: https://editions-du-26-octobre.com/ 968 | size: 189 969 | last_checked: 2022-05-15 970 | 971 | - domain: edizyurdakul.com 972 | url: https://edizyurdakul.com/ 973 | size: 442 974 | last_checked: 2022-04-24 975 | 976 | - domain: edleeman.co.uk 977 | url: https://edleeman.co.uk/ 978 | size: 238 979 | last_checked: 2022-05-15 980 | 981 | - domain: eg-zine.cf 982 | url: https://eg-zine.cf/ 983 | size: 13.1 984 | last_checked: 2023-05-02 985 | 986 | - domain: eink.link 987 | url: https://eink.link/ 988 | size: 7.5 989 | last_checked: 2022-05-05 990 | 991 | - domain: eklausmeier.goip.de 992 | url: https://eklausmeier.goip.de/ 993 | size: 27.9 994 | last_checked: 2023-05-17 995 | 996 | - domain: ekuttan.me 997 | url: http://ekuttan.me/ 998 | size: 192 999 | last_checked: 2022/08/24 1000 | 1001 | - domain: eliakr.github.io 1002 | url: https://eliakr.github.io/moriacalc/thetiki.html 1003 | size: 96.8 1004 | last_checked: 2023-02-12 1005 | 1006 | - domain: elinvention.ovh 1007 | url: https://elinvention.ovh/ 1008 | size: 396 1009 | last_checked: 2022-05-06 1010 | 1011 | - domain: elisttm.space 1012 | url: https://elisttm.space/ 1013 | size: 66.8 1014 | last_checked: 2022-05-19 1015 | 1016 | - domain: elrido.dssr.ch 1017 | url: https://elrido.dssr.ch/ 1018 | size: 137.5 1019 | last_checked: 2022-02-05 1020 | 1021 | - domain: emanoel.pro.br 1022 | url: https://emanoel.pro.br 1023 | size: 129 1024 | last_checked: 2022-11-08 1025 | 1026 | - domain: emanuelpina.pt 1027 | url: https://emanuelpina.pt/ 1028 | size: 95.8 1029 | last_checked: 2022-06-05 1030 | 1031 | - domain: emman.dev 1032 | url: https://emman.dev 1033 | size: 481 1034 | last_checked: 2022-10-05 1035 | 1036 | - domain: enesergun.net 1037 | url: https://enesergun.net 1038 | size: 83.9 1039 | last_checked: 2022-11-21 1040 | 1041 | - domain: ericgardner.info 1042 | url: https://ericgardner.info/ 1043 | size: 73.7 1044 | last_checked: 2022-05-15 1045 | 1046 | - domain: erickouassi.com 1047 | url: https://erickouassi.com/ 1048 | size: 50.7 1049 | last_checked: 2022-09-17 1050 | 1051 | - domain: erikjohannes.no 1052 | url: https://erikjohannes.no/ 1053 | size: 6.5 1054 | last_checked: 2022-05-05 1055 | 1056 | - domain: error434.xyz 1057 | url: https://error434.xyz/ 1058 | size: 447 1059 | last_checked: 2022-07-08 1060 | 1061 | - domain: ersei.saggis.com 1062 | url: https://ersei.saggis.com/ 1063 | size: 67.7 1064 | last_checked: 2022-01-29 1065 | 1066 | - domain: esmailelbob.xyz 1067 | url: https://en.esmailelbob.xyz/ 1068 | size: 34.3 1069 | last_checked: 2022-08-02 1070 | 1071 | - domain: esta.la 1072 | url: https://esta.la/ 1073 | size: 471 1074 | last_checked: 2023-03-23 1075 | 1076 | - domain: ethan.link 1077 | url: https://ethan.link/ 1078 | size: 20.8 1079 | last_checked: 2022-05-15 1080 | 1081 | - domain: ethanyoo.com 1082 | url: https://www.ethanyoo.com/ 1083 | size: 33.0 1084 | last_checked: 2022-05-05 1085 | 1086 | - domain: evantravers.com 1087 | url: http://evantravers.com/ 1088 | size: 474 1089 | last_checked: 2022-04-26 1090 | 1091 | - domain: excus.eu 1092 | url: https://excus.eu/ 1093 | size: 93.7 1094 | last_checked: 2022-09-24 1095 | 1096 | - domain: extension.ninja 1097 | url: https://www.extension.ninja/ 1098 | size: 78 1099 | last_checked: 2022-03-06 1100 | 1101 | - domain: ezra.website 1102 | url: https://ezra.website/ 1103 | size: 159 1104 | last_checked: 2022-05-15 1105 | 1106 | - domain: fahim.pages.dev 1107 | url: https://fahim.pages.dev/ 1108 | size: 378 1109 | last_checked: 2022-03-06 1110 | 1111 | - domain: fanael.github.io 1112 | url: https://fanael.github.io/ 1113 | size: 32.8 1114 | last_checked: 2022-05-06 1115 | 1116 | - domain: fdisk.space 1117 | url: https://fdisk.space/ 1118 | size: 11.5 1119 | last_checked: 2022-05-05 1120 | 1121 | - domain: federateme.nymbus.xyz 1122 | url: https://federateme.nymbus.xyz/ 1123 | size: 197 1124 | last_checked: 2022-05-15 1125 | 1126 | - domain: federicoleva.eu 1127 | url: https://federicoleva.eu/ 1128 | size: 273 1129 | last_checked: 2022-05-29 1130 | 1131 | - domain: fedi.dev 1132 | url: https://fedi.dev/ 1133 | size: 237 1134 | last_checked: 2022-05-15 1135 | 1136 | - domain: ferib.dev 1137 | url: https://ferib.dev/ 1138 | size: 197 1139 | last_checked: 2022-03-24 1140 | 1141 | - domain: ff99cc.art 1142 | url: https://ff99cc.art/ 1143 | size: 55.8 1144 | last_checked: 2023-02-02 1145 | 1146 | - domain: figcat.com 1147 | url: https://figcat.com/ 1148 | size: 96 1149 | last_checked: 2023-01-05 1150 | 1151 | - domain: filbertsalim.codeberg.page 1152 | url: https://filbertsalim.codeberg.page/ 1153 | size: 6.8 1154 | last_checked: 2022-05-15 1155 | 1156 | - domain: flatpackapps.com 1157 | url: https://flatpackapps.com/ 1158 | size: 29.9 1159 | last_checked: 2022-04-26 1160 | 1161 | - domain: fmartingr.com 1162 | url: https://fmartingr.com 1163 | size: 143 1164 | last_checked: 2022-03-13 1165 | 1166 | - domain: forgetful.dev 1167 | url: https://forgetful.dev/ 1168 | size: 74.3 1169 | last_checked: 2023-06-12 1170 | 1171 | - domain: format-express.dev 1172 | url: https://format-express.dev/ 1173 | size: 180 1174 | last_checked: 2022-05-15 1175 | 1176 | - domain: fossdd.codeberg.page 1177 | url: https://fossdd.codeberg.page/ 1178 | size: 7.4 1179 | last_checked: 2022-05-05 1180 | 1181 | - domain: fossphones.com 1182 | url: https://fossphones.com/ 1183 | size: 4.8 1184 | last_checked: 2022-04-26 1185 | 1186 | - domain: freebee.fun 1187 | url: https://frano.ga/ 1188 | size: 465.0 1189 | last_checked: 2023-05-07 1190 | 1191 | - domain: freebee.fun 1192 | url: https://freebee.fun/play/ 1193 | size: 36.0 1194 | last_checked: 2022-05-06 1195 | 1196 | - domain: freyx.co 1197 | url: http://freyx.co/ 1198 | size: 421 1199 | last_checked: 2022-05-15 1200 | 1201 | - domain: fullbl.it 1202 | url: https//fullbl.it 1203 | size: 12.1 1204 | last_checked: 2022-11-02 1205 | 1206 | - domain: funnylookinhat.com 1207 | url: https://funnylookinhat.com/ 1208 | size: 7.1 1209 | last_checked: 2022-05-05 1210 | 1211 | - domain: funs.life 1212 | url: https://funs.life/ 1213 | size: 37.6 1214 | last_checked: 2022-08-01 1215 | 1216 | - domain: fz1.space 1217 | url: https://fz1.space/ 1218 | size: 3.78 1219 | last_checked: 2022-10-11 1220 | 1221 | - domain: gabnotes.org 1222 | url: https://gabnotes.org/ 1223 | size: 95.5 1224 | last_checked: 2023-03-24 1225 | 1226 | - domain: gadonias.com 1227 | url: https://gadonias.com/ 1228 | size: 220 1229 | last_checked: 2022-05-15 1230 | 1231 | - domain: gaikanomer9.com 1232 | url: https://gaikanomer9.com/ 1233 | size: 5.4 1234 | last_checked: 2022-05-15 1235 | 1236 | - domain: ged296123.gitlab.io/yunbere 1237 | url: https://ged296123.gitlab.io/yunbere 1238 | size: 32.8 1239 | last_checked: 2022-04-26 1240 | 1241 | - domain: getanamewithapun.pages.dev 1242 | url: https://getanamewithapun.pages.dev 1243 | size: 21.5 1244 | last_checked: 2022-05-15 1245 | 1246 | - domain: getwheat.com 1247 | url: https://getwheat.ca/ 1248 | size: 373 1249 | last_checked: 2022-02-18 1250 | 1251 | - domain: gitmoji.kaki87.net 1252 | url: https://gitmoji.kaki87.net/ 1253 | size: 153 1254 | last_checked: 2023-01-21 1255 | 1256 | - domain: godsip.club 1257 | url: https://godsip.club/ 1258 | size: 232 1259 | last_checked: 2022-05-21 1260 | 1261 | - domain: goel.io 1262 | url: http://goel.io/ 1263 | size: 58.2 1264 | last_checked: 2022-05-15 1265 | 1266 | - domain: goestathomas.de 1267 | url: http://goestathomas.de/ 1268 | size: 56.8 1269 | last_checked: 2022-03-19 1270 | 1271 | - domain: golang.cafe 1272 | url: https://golang.cafe/ 1273 | size: 167 1274 | last_checked: 2022-01-30 1275 | 1276 | - domain: groganburners.ie 1277 | url: https://www.groganburners.ie/ 1278 | size: 472 1279 | last_checked: 2023-03-01 1280 | 1281 | - domain: groundzeno.net 1282 | url: https://groundzeno.net/ 1283 | size: 9.1 1284 | last_checked: 2022-05-14 1285 | 1286 | - domain: gryffyn.io 1287 | url: https://gryffyn.io 1288 | size: 57.2 1289 | last_checked: 2022-07-16 1290 | 1291 | - domain: gsthnz.com 1292 | url: https://gsthnz.com/ 1293 | size: 4.2 1294 | last_checked: 2022-05-06 1295 | 1296 | - domain: gtrr.artemislena.eu 1297 | url: https://gtrr.artemislena.eu/ 1298 | size: 4.7 1299 | last_checked: 2022-05-15 1300 | 1301 | - domain: gud.one 1302 | url: https://gud.one/ 1303 | size: 155 1304 | last_checked: 2022-05-15 1305 | 1306 | - domain: gunnar.se 1307 | url: https://gunnar.se/ 1308 | size: 48.1 1309 | last_checked: 2022-12-15 1310 | 1311 | - domain: guts.plus 1312 | url: https://guts.plus/ 1313 | size: 73.8 1314 | last_checked: 2022-05-15 1315 | 1316 | - domain: gwaymark.co.uk 1317 | url: https://www.gwaymark.co.uk 1318 | size: 11.2 1319 | last_checked: 2022-04-26 1320 | 1321 | - domain: habedieeh.re 1322 | url: https://www.habedieeh.re/ 1323 | size: 26.6 1324 | last_checked: 2022-10-08 1325 | 1326 | - domain: hashtagueule.fr 1327 | url: https://hashtagueule.fr 1328 | size: 59.5 1329 | last_checked: 2022-05-06 1330 | 1331 | - domain: havenweb.org 1332 | url: https://havenweb.org/ 1333 | size: 60.1 1334 | last_checked: 2022-02-24 1335 | 1336 | - domain: healthchecks.io 1337 | url: https://healthchecks.io/ 1338 | size: 435 1339 | last_checked: 2023-02-18 1340 | 1341 | - domain: heavymetalmusic.reviews 1342 | url: https://heavymetalmusic.reviews/ 1343 | size: 21.8 1344 | last_checked: 2022-04-29 1345 | 1346 | - domain: her.esy.fun 1347 | url: https://her.esy.fun/ 1348 | size: 24.3 1349 | last_checked: 2022-09-17 1350 | 1351 | - domain: her.st 1352 | url: https://her.st/ 1353 | size: 128 1354 | last_checked: 2022-08-29 1355 | 1356 | - domain: herman.bearblog.dev 1357 | url: https://herman.bearblog.dev/ 1358 | size: 6.5 1359 | last_checked: 2022-09-12 1360 | 1361 | - domain: hjr265.me 1362 | url: https://hjr265.me/ 1363 | size: 111 1364 | last_checked: 2022-11-24 1365 | 1366 | - domain: hobospider132.github.io 1367 | url: https://hobospider132.github.io/ 1368 | size: 35.4 1369 | last_checked: 2023-03-15 1370 | 1371 | - domain: holory.fr 1372 | url: https://holory.fr/ 1373 | size: 446 1374 | last_checked: 2022-04-05 1375 | 1376 | - domain: hugo-mechiche.com 1377 | url: https://hugo-mechiche.com/ 1378 | size: 55.2 1379 | last_checked: 2022-05-15 1380 | 1381 | - domain: hugo.soucy.cc 1382 | url: https://hugo.soucy.cc/ 1383 | size: 44.7 1384 | last_checked: 2023-03-15 1385 | 1386 | - domain: hugocisneros.com 1387 | url: https://hugocisneros.com/ 1388 | size: 75.9 1389 | last_checked: 2022-01-29 1390 | 1391 | - domain: huma.id 1392 | url: https://huma.id/ 1393 | size: 9.43 1394 | last_checked: 2022-05-31 1395 | 1396 | - domain: hund.tty1.se 1397 | url: https://hund.tty1.se/ 1398 | size: 17.8 1399 | last_checked: 2022-03-11 1400 | 1401 | - domain: hytracer.ink 1402 | url: https://hytracer.ink 1403 | size: 185 1404 | last_checked: 2023-07-10 1405 | 1406 | - domain: i21k.de 1407 | url: https://i21k.de/ 1408 | size: 7.0 1409 | last_checked: 2022-05-06 1410 | 1411 | - domain: ianmuchina.com 1412 | url: https://ianmuchina.com/ 1413 | size: 44.9 1414 | last_checked: 2022-05-06 1415 | 1416 | - domain: ibra.github.io 1417 | url: https://ibra.github.io/ 1418 | size: 194.0 1419 | last_checked: 2022-04-21 1420 | 1421 | - domain: ichi.do 1422 | url: https://ichi.do/?theme=plain 1423 | size: 179.0 1424 | last_checked: 2023-01-02 1425 | 1426 | - domain: ig.emnace.org 1427 | url: https://ig.emnace.org/ 1428 | size: 3.5 1429 | last_checked: 2023-07-07 1430 | 1431 | - domain: ig.kaki87.net 1432 | url: https://ig.kaki87.net/ 1433 | size: 353 1434 | last_checked: 2023-01-21 1435 | 1436 | - domain: ihsaan.au 1437 | url: http://ihsaan.au/ 1438 | size: 394.0 1439 | last_checked: 2021-11-06 1440 | 1441 | - domain: imsky.co 1442 | url: https://imsky.co/ 1443 | size: 63.7 1444 | last_checked: 2022-08-08 1445 | 1446 | - domain: indiachat.netlify.app 1447 | url: https://indiachat.netlify.app/ 1448 | size: 213.0 1449 | last_checked: 2022-04-08 1450 | 1451 | - domain: ineedmore.coffee 1452 | url: https://ineedmore.coffee/ 1453 | size: 8.2 1454 | last_checked: 2023-04-29 1455 | 1456 | - domain: jacksonchen666.com 1457 | url: https://jacksonchen666.com/ 1458 | size: 11.0 1459 | last_checked: 2023-03-10 1460 | 1461 | - domain: jae.fi 1462 | url: https://jae.fi/ 1463 | size: 32.2 1464 | last_checked: 2022-08-24 1465 | 1466 | - domain: jakobbouchard.dev 1467 | url: https://jakobbouchard.dev/ 1468 | size: 65.5 1469 | last_checked: 2022-05-06 1470 | 1471 | - domain: jakobmaier.at 1472 | url: https://www.jakobmaier.at 1473 | size: 5.13 1474 | last_checked: 2022-01-29 1475 | 1476 | - domain: jamesgreenblue.com 1477 | url: https://jamesgreenblue.com/ 1478 | size: 102 1479 | last_checked: 2023-06-01 1480 | 1481 | - domain: jamesmead.org 1482 | url: http://jamesmead.org/ 1483 | size: 30.9 1484 | last_checked: 2023-05-19 1485 | 1486 | - domain: jamesst.one 1487 | url: https://jamesst.one 1488 | size: 4.36 1489 | last_checked: 2022-09-11 1490 | 1491 | - domain: jasonthai.me 1492 | url: https://jasonthai.me/ 1493 | size: 8.28 1494 | last_checked: 2022-07-03 1495 | 1496 | - domain: jaxson.neocities.org 1497 | url: https://jaxson.neocities.org/ 1498 | size: 7.67 1499 | last_checked: 2022-08-06 1500 | 1501 | - domain: jcelerier.name 1502 | url: https://jcelerier.name/ 1503 | size: 72.5 1504 | last_checked: 2022-01-29 1505 | 1506 | - domain: jds.work 1507 | url: https://jds.work/ 1508 | size: 47.0 1509 | last_checked: 2022-05-06 1510 | 1511 | - domain: jeffhuang.com 1512 | url: https://jeffhuang.com/ 1513 | size: 240 1514 | last_checked: 2022-05-15 1515 | 1516 | - domain: jeremysarber.com 1517 | url: https://jeremysarber.com/ 1518 | size: 10.1 1519 | last_checked: 2022-04-26 1520 | 1521 | - domain: jf17.ru 1522 | url: https://jf17.ru/ 1523 | size: 7.3 1524 | last_checked: 2022-05-06 1525 | 1526 | - domain: jlo64.github.io 1527 | url: https://jlo64.github.io/ 1528 | size: 75 1529 | last_checked: 2023-05-05 1530 | 1531 | - domain: jloh.co 1532 | url: https://jloh.co/ 1533 | size: 108 1534 | last_checked: 2022-05-15 1535 | 1536 | - domain: jmtd.net 1537 | url: https://jmtd.net/ 1538 | size: 239 1539 | last_checked: 2022-03-12 1540 | 1541 | - domain: joanybuclon.com 1542 | url: https://joanybuclon.com/ 1543 | size: 433 1544 | last_checked: 2023-03-30 1545 | 1546 | - domain: joelchrono12.xyz 1547 | url: https://joelchrono12.xyz/ 1548 | size: 41.6 1549 | last_checked: 2022-06-16 1550 | 1551 | - domain: johanv.xyz 1552 | url: https://johanv.xyz/ 1553 | size: 416 1554 | last_checked: 2022-05-06 1555 | 1556 | - domain: john-doe.neocities.org 1557 | url: https://john-doe.neocities.org/ 1558 | size: 24.0 1559 | last_checked: 2022-05-06 1560 | 1561 | - domain: jonhnnyweslley.net 1562 | url: https://jonhnnyweslley.net/ 1563 | size: 272 1564 | last_checked: 2022-03-12 1565 | 1566 | - domain: joodaloop.com 1567 | url: https://joodaloop.com/ 1568 | size: 143 1569 | last_checked: 2022-12-22 1570 | - domain: jorp.xyz 1571 | url: https://jorp.xyz/ 1572 | size: 281 1573 | last_checked: 2022-04-26 1574 | 1575 | - domain: joshkasuboski.com 1576 | url: https://joshkasuboski.com/ 1577 | size: 163 1578 | last_checked: 2022-04-26 1579 | 1580 | - domain: josias.dev 1581 | url: https://josias.dev/ 1582 | size: 38.8 1583 | last_checked: 2022-03-12 1584 | 1585 | - domain: jothiprasath.com 1586 | url: https://jothiprasath.com 1587 | size: 376 1588 | last_check: 2022-07-09 1589 | 1590 | - domain: jouissance.net 1591 | url: https://www.jouissance.net 1592 | size: 25.5 1593 | last_checked: 2023-01-11 1594 | 1595 | - domain: journal.gudulin.com 1596 | url: https://journal.gudulin.com/ 1597 | size: 11.4 1598 | last_checked: 2022-05-06 1599 | 1600 | - domain: jpdb.io 1601 | url: https://jpdb.io/ 1602 | size: 348 1603 | last_checked: 2022-04-26 1604 | 1605 | - domain: jscd.pw 1606 | url: https://jscd.pw/ 1607 | size: 71.6 1608 | last_checked: 2022-03-12 1609 | 1610 | - domain: jundimubarok.com 1611 | url: https://jundimubarok.com/ 1612 | size: 58.8 1613 | last_checked: 2022-05-05 1614 | 1615 | - domain: kaki87.net 1616 | url: https://kaki87.net/ 1617 | size: 346 1618 | last_checked: 2023-06-07 1619 | 1620 | - domain: karl.berlin 1621 | url: https://www.karl.berlin/ 1622 | size: 3.0 1623 | last_checked: 2022-04-26 1624 | 1625 | - domain: kealanparr.com 1626 | url: https://kealanparr.com/ 1627 | size: 388 1628 | last_checked: 2022-09-17 1629 | 1630 | - domain: kevquirk.com 1631 | url: https://kevquirk.com 1632 | size: 59.5 1633 | last_checked: 2023-03-22 1634 | 1635 | - domain: kidl.at 1636 | url: https://kidl.at/ 1637 | size: 11.5 1638 | last_checked: 2022-05-15 1639 | 1640 | - domain: kinduff.com 1641 | url: https://kinduff.com/ 1642 | size: 215 1643 | last_checked: 2022-09-12 1644 | 1645 | - domain: kishvanchee.com 1646 | url: https://kishvanchee.com/ 1647 | size: 11.5 1648 | last_checked: 2022-04-26 1649 | 1650 | - domain: kj7nzl.net 1651 | url: https://www.kj7nzl.net/ 1652 | size: 30.0 1653 | last_checked: 2022-04-26 1654 | 1655 | - domain: klokmork.com 1656 | url: https://klokmork.com/ 1657 | size: 197 1658 | last_checked: 2022-03-12 1659 | 1660 | - domain: kraktoos.com 1661 | url: https://kraktoos.com/ 1662 | size: 23.8 1663 | last_checked: 2023-04-29 1664 | 1665 | - domain: kru.run 1666 | url: https://kru.run/ 1667 | size: 11.8 1668 | last_checked: 2023-06-20 1669 | 1670 | - domain: krzysztofjankowski.com 1671 | url: https://krzysztofjankowski.com/ 1672 | size: 131 1673 | last_checked: 2022-01-30 1674 | 1675 | - domain: kytta.dev 1676 | url: https://www.kytta.dev/ 1677 | size: 12.2 1678 | last_checked: 2022-01-13 1679 | 1680 | - domain: lazy-gamer.net 1681 | url: https://lazy-gamer.net/ 1682 | size: 111 1683 | last_checked: 2022-05-05 1684 | 1685 | - domain: lectupedia.com 1686 | url: https://lectupedia.com/ 1687 | size: 42.3 1688 | last_checked: 2022-05-06 1689 | 1690 | - domain: lexicon.ga 1691 | url: https://lexicon.ga/ 1692 | size: 314 1693 | last_checked: 2022-04-26 1694 | 1695 | - domain: lichess.org 1696 | url: https://lichess.org/ 1697 | size: 495 1698 | last_checked: 2022-05-06 1699 | 1700 | - domain: lighthouse16.com 1701 | url: https://lighthouse16.com/ 1702 | size: 48.1 1703 | last_checked: 2022-04-26 1704 | 1705 | - domain: littlezhang.com 1706 | url: https://littlezhang.com/ 1707 | size: 31.2 1708 | last_checked: 2022-03-12 1709 | 1710 | - domain: lkhrs.com 1711 | url: https://www.lkhrs.com/ 1712 | size: 232 1713 | last_checked: 2022-03-28 1714 | 1715 | - domain: log.pfad.fr 1716 | url: https://log.pfad.fr/ 1717 | size: 6 1718 | last_checked: 2023-07-06 1719 | 1720 | - domain: loganmarchione.com 1721 | url: https://loganmarchione.com/ 1722 | size: 98 1723 | last_checked: 2022-04-15 1724 | 1725 | - domain: luana.cc 1726 | url: https://luana.cc/ 1727 | size: 12.4 1728 | last_checked: 2022-05-06 1729 | 1730 | - domain: lucienbill.fr 1731 | url: https://www.lucienbill.fr 1732 | size: 157 1733 | last_checked: 2022-05-15 1734 | 1735 | - domain: lukealexdavis.co.uk 1736 | url: https://lukealexdavis.co.uk/ 1737 | size: 17.8 1738 | last_checked: 2023-04-21 1739 | 1740 | - domain: lukerissacher.com 1741 | url: https://lukerissacher.com/blog 1742 | size: 161 1743 | last_checked: 2022-01-30 1744 | 1745 | - domain: lukesempire.com 1746 | url: https://lukesempire.com/ 1747 | size: 77.4 1748 | last_checked: 2022-05-14 1749 | 1750 | - domain: lushka.al 1751 | url: https://lushka.al/ 1752 | size: 20.5 1753 | last_checked: 2022-03-09 1754 | 1755 | - domain: lx862.com 1756 | url: https://lx862.com/ 1757 | size: 146 1758 | last_checked: 2023-02-18 1759 | 1760 | - domain: lyndon.codes 1761 | url: https://lyndon.codes/ 1762 | size: 94.8 1763 | last_checked: 2022-03-12 1764 | 1765 | - domain: m-chrzan.xyz 1766 | url: https://m-chrzan.xyz/ 1767 | size: 3.9 1768 | last_checked: 2022-05-06 1769 | 1770 | - domain: madelinepritchard.net 1771 | url: https://madelinepritchard.net/ 1772 | size: 144 1773 | last_checked: 2022-10-14 1774 | 1775 | - domain: magicznylas.pl 1776 | url: https://www.magicznylas.pl/ 1777 | size: 42.1 1778 | last_checked: 2023-07-01 1779 | 1780 | - domain: manuelmoreale.com 1781 | url: https://manuelmoreale.com/ 1782 | size: 45.4 1783 | last_checked: 2022-05-15 1784 | 1785 | - domain: markosaric.com 1786 | url: https://markosaric.com/ 1787 | size: 352 1788 | last_checked: 2022-03-17 1789 | 1790 | - domain: markus-haack.com 1791 | url: https://markus-haack.com/ 1792 | size: 230 1793 | last_checked: 2023-04-12 1794 | 1795 | - domain: martin.baillie.id 1796 | url: https://martin.baillie.id/ 1797 | size: 127 1798 | last_checked: 2022-03-17 1799 | 1800 | - domain: mataroa.blog 1801 | url: https://mataroa.blog/ 1802 | size: 21.3 1803 | last_checked: 2022-05-06 1804 | 1805 | - domain: mathijs.vgorcum.com 1806 | url: https://mathijs.vgorcum.com/ 1807 | size: 312 1808 | last_checked: 2022-02-11 1809 | 1810 | - domain: matt-smiley 1811 | url: https://matt-smiley.com/ 1812 | size: 48.6 1813 | last_checked: 2022-03-25 1814 | 1815 | - domain: matthew.science 1816 | url: https://matthew.science/ 1817 | size: 276 1818 | last_checked: 2022-05-06 1819 | 1820 | - domain: matthewayers.com 1821 | url: https://matthewayers.com/ 1822 | size: 104 1823 | last_checked: 2022-04-19 1824 | 1825 | - domain: matthewgraybosch.com 1826 | url: https://www.matthewgraybosch.com/ 1827 | size: 5.8 1828 | last_checked: 2021-12-05 1829 | 1830 | - domain: matthewthom.as 1831 | url: https://www.matthewthom.as/ 1832 | size: 87.0 1833 | last_checked: 2022-08-03 1834 | 1835 | - domain: mattsanetra.uk 1836 | url: https://mattsanetra.uk/ 1837 | size: 226 1838 | last_checked: 2023-03-18 1839 | 1840 | - domain: mawoka.eu 1841 | url: https://mawoka.eu/ 1842 | size: 485 1843 | last_checked: 2022-05-06 1844 | 1845 | - domain: mck.is 1846 | url: https://mck.is/ 1847 | size: 47.9 1848 | last_checked: 2022-05-15 1849 | 1850 | - domain: mees.io 1851 | url: https://mees.io/ 1852 | size: 152 1853 | last_checked: 2022-03-17 1854 | 1855 | - domain: melroy.org 1856 | url: https://melroy.org 1857 | size: 38.4 1858 | last_checked: 2022-05-04 1859 | 1860 | - domain: meribold.org 1861 | url: https://meribold.org/ 1862 | size: 19.9 1863 | last_checked: 2022-05-15 1864 | 1865 | - domain: mha.fi 1866 | url: https://mha.fi/ 1867 | size: 66.9 1868 | last_checked: 2022-05-15 1869 | 1870 | - domain: michel-slm.name 1871 | url: https://michel-slm.name/ 1872 | size: 250 1873 | last_checked: 2022-03-17 1874 | 1875 | - domain: midnight.pub 1876 | url: https://midnight.pub/ 1877 | size: 9.9 1878 | last_checked: 2022-05-06 1879 | 1880 | - domain: mikebabb.com 1881 | url: https://mikebabb.com/ 1882 | size: 103 1883 | last_checked: 2022-03-17 1884 | 1885 | - domain: mikestone.me 1886 | url: https://mikestone.me/ 1887 | size: 260 1888 | last_checked: 2022-05-06 1889 | 1890 | - domain: miltsghostrehab.xyz 1891 | url: https://miltsghostrehab.xyz/ 1892 | size: 52.9 1893 | last_checked: 2022-03-17 1894 | 1895 | - domain: minutestomidnight.co.uk 1896 | url: https://minutestomidnight.co.uk 1897 | size: 100 1898 | last_checked: 2022-11-11 1899 | 1900 | - domain: minwiz.com 1901 | url: https://minwiz.com/ 1902 | size: 4.1 1903 | last_checked: 2022-05-06 1904 | 1905 | - domain: mirekdlugosz.com 1906 | url: https://mirekdlugosz.com/ 1907 | size: 294 1908 | last_checked: 2022-08-04 1909 | 1910 | - domain: mizik.sk 1911 | url: https://mizik.sk/ 1912 | size: 9.8 1913 | last_checked: 2022-05-06 1914 | 1915 | - domain: mobilecoverage.co.uk 1916 | url: https://www.mobilecoverage.co.uk 1917 | size: 168 1918 | last_checked: 2022-10-21 1919 | 1920 | - domain: mogwai.be 1921 | url: https://mogwai.be/ 1922 | size: 26.3 1923 | last_checked: 2022-05-06 1924 | 1925 | - domain: momi.ca 1926 | url: https://momi.ca/ 1927 | size: 264 1928 | last_checked: 2022-03-17 1929 | 1930 | - domain: mrmarketingmustache.com 1931 | url: https://mrmarketingmustache.com/ 1932 | size: 66.4 1933 | last_checked: 2022-03-05 1934 | 1935 | - domain: mthia.xdd.moe 1936 | url: https://mthia.xdd.moe/ 1937 | size: 366 1938 | last_checked: 2023-06-18 1939 | 1940 | - domain: mulph.ie 1941 | url: https://mulph.ie/ 1942 | size: 196 1943 | last_checked: 2022-01-31 1944 | 1945 | - domain: murtezayesil.me 1946 | url: https://murtezayesil.me/ 1947 | size: 80 1948 | last_checked: 2022-08-17 1949 | 1950 | - domain: mvion.fr 1951 | url: https://mvion.fr/ 1952 | size: 111 1953 | last_checked: 2022-03-17 1954 | 1955 | - domain: my-flow.com 1956 | url: https://www.my-flow.com/ 1957 | size: 148 1958 | last_checked: 2022-03-17 1959 | 1960 | - domain: mzumquadrat.de 1961 | url: https://mzumquadrat.de/ 1962 | size: 13.2 1963 | last_checked: 2022-05-06 1964 | 1965 | - domain: na20a.neocities.org 1966 | url: https://na20a.neocities.org/ 1967 | size: 9.8 1968 | last_checked: 2022-04-26 1969 | 1970 | - domain: nayuki.io 1971 | url: https://www.nayuki.io/ 1972 | size: 426 1973 | last_checked: 2022-01-30 1974 | 1975 | - domain: ndanes.com 1976 | url: https://ndanes.com/ 1977 | size: 51.5 1978 | last_checked: 2022-05-06 1979 | 1980 | - domain: neilgrogan.com 1981 | url: https://www.neilgrogan.com/ 1982 | size: 418 1983 | last_checked: 2023-03-01 1984 | 1985 | - domain: nelson.cloud 1986 | url: https://nelson.cloud/ 1987 | size: 38.1 1988 | last_checked: 2022-12-28 1989 | 1990 | - domain: nequalsonelifestyle.com 1991 | url: https://nequalsonelifestyle.com/ 1992 | size: 73.5 1993 | last_checked: 2022-04-11 1994 | 1995 | - domain: nest.jakl.one 1996 | url: https://nest.jakl.one/ 1997 | size: 11.7 1998 | last_checked: 2022-05-15 1999 | 2000 | - domain: neutral.translate.lol 2001 | url: https://neutral.translate.lol/ 2002 | size: 355 2003 | last_checked: 2023-07-09 2004 | 2005 | - domain: news.tatooine.club 2006 | url: https://news.tatooine.club 2007 | size: 31.5 2008 | last_checked: 2023-06-09 2009 | 2010 | - domain: newsasfacts.com 2011 | url: https://newsasfacts.com/ 2012 | size: 378 2013 | last_checked: 2022-09-12 2014 | 2015 | - domain: nih.ar 2016 | url: https://nih.ar/ 2017 | size: 3.9 2018 | last_checked: 2022-10-23 2019 | 2020 | - domain: nikhilhenry.vercel.app 2021 | url: https://nikhilhenry.vercel.app/ 2022 | size: 245 2023 | last_checked: 2022-07-19 2024 | 2025 | - domain: nixnet.email 2026 | url: https://nixnet.email/ 2027 | size: 270 2028 | last_checked: 2022-05-15 2029 | 2030 | - domain: nixnet.services 2031 | url: https://nixnet.services/ 2032 | size: 175 2033 | last_checked: 2022-04-26 2034 | 2035 | - domain: no-js.club 2036 | url: https://no-js.club/ 2037 | size: 19.0 2038 | last_checked: 2022-05-04 2039 | 2040 | - domain: noblogo.org 2041 | url: https://noblogo.org/ 2042 | size: 314 2043 | last_checked: 2022-04-26 2044 | 2045 | - domain: nobodyspecial.neocities.org 2046 | url: https://nobodyspecial.neocities.org/ 2047 | size: 8.2 2048 | last_checked: 2022-05-15 2049 | 2050 | - domain: notes.whoibrar.com 2051 | url: https://notes.whoibrar.com 2052 | size: 9.48 2053 | last_checked: 2022-05-07 2054 | 2055 | - domain: notionbackups.com 2056 | url: https://notionbackups.com 2057 | size: 48.3 2058 | last_checked: 2022-03-21 2059 | 2060 | - domain: noulin.net 2061 | url: https://noulin.net/blog 2062 | size: 22.2 2063 | last_checked: 2022-05-15 2064 | 2065 | - domain: obviy.us 2066 | url: https://obviy.us/ 2067 | size: 470 2068 | last_checked: 2023-06-09 2069 | 2070 | - domain: ofearthandacorns.com 2071 | url: https://ofearthandacorns.com/ 2072 | size: 30.2 2073 | last_checked: 2023-02-08 2074 | 2075 | - domain: oh.mg 2076 | url: https://www.oh.mg/ 2077 | size: 25.8 2078 | last_checked: 2022-06-24 2079 | 2080 | - domain: ohheybrian.com 2081 | url: https://ohheybrian.com 2082 | size: 160 2083 | last_checked: 2023-01-28 2084 | 2085 | - domain: oldirtyhacker.com 2086 | url: https://oldirtyhacker.com/ 2087 | size: 119 2088 | last_checked: 2022-03-17 2089 | 2090 | - domain: ononoki.org 2091 | url: https://ononoki.org/ 2092 | size: 89.0 2093 | last_checked: 2022-06-25 2094 | 2095 | - domain: order332.com 2096 | url: https://order332.com/ 2097 | size: 372 2098 | last_checked: 2023-06-18 2099 | 2100 | - domain: oscarforner.com 2101 | url: https://oscarforner.com/ 2102 | size: 19.7 2103 | last_checked: 2022-05-06 2104 | 2105 | - domain: osiux.com 2106 | url: https://osiux.com/ 2107 | size: 16.9 2108 | last_checked: 2022-05-15 2109 | 2110 | - domain: otgt.us.eu.org 2111 | url: https://otgt.us.eu.org/ 2112 | size: 70.7 2113 | last_checked: 2022-04-11 2114 | 2115 | - domain: overlisted.net 2116 | url: https://overlisted.net/ 2117 | size: 132 2118 | last_checked: 2022-11-12 2119 | 2120 | - domain: palashbauri.in 2121 | url: https://palashbauri.in 2122 | size: 32.8 2123 | last_checked: 2022-03-07 2124 | 2125 | - domain: palora.vercel.app 2126 | url: https://palora.vercel.app/ 2127 | size: 403 2128 | last_checked: 2022-7-11 2129 | 2130 | - domain: pantsufan.github.io 2131 | url: https://pantsufan.github.io/ 2132 | size: 19.7 2133 | last_checked: 2022-05-06 2134 | 2135 | - domain: paola.work 2136 | url: https://paola.work/ 2137 | size: 138 2138 | last_checked: 2022-04-19 2139 | 2140 | - domain: paolomainardi.com 2141 | url: https://paolomainardi.com/ 2142 | size: 311 2143 | last_checked: 2023-03-22 2144 | 2145 | - domain: paramdeo.com 2146 | url: https://paramdeo.com/ 2147 | size: 150 2148 | last_checked: 2022-04-26 2149 | 2150 | - domain: paritybit.ca 2151 | url: https://paritybit.ca/ 2152 | size: 8.4 2153 | last_checked: 2022-05-06 2154 | 2155 | - domain: patrickwu.space 2156 | url: https://patrickwu.space/ 2157 | size: 47.4 2158 | last_checked: 2022-09-11 2159 | 2160 | - domain: paulwilde.uk 2161 | url: https://paulwilde.uk/ 2162 | size: 33.5 2163 | last_checked: 2022-05-06 2164 | 2165 | - domain: pavel-main.github.io 2166 | url: https://pavel-main.github.io/ 2167 | size: 58.5 2168 | last_checked: 2022-01-30 2169 | 2170 | - domain: pawelgrzybek.com 2171 | url: https://pawelgrzybek.com/ 2172 | size: 29.1 2173 | last_checked: 2022-03-18 2174 | 2175 | - domain: pdp.dev 2176 | url: https://pdp.dev 2177 | size: 38.0 2178 | last_checked: 2022-06-16 2179 | 2180 | - domain: person-al.github.io 2181 | url: https://person-al.github.io/ 2182 | size: 66.3 2183 | last_checked: 2022-05-21 2184 | 2185 | - domain: phate6660.codeberg.page 2186 | url: https://phate6660.codeberg.page/ 2187 | size: 87.3 2188 | last_checked: 2022-05-15 2189 | 2190 | - domain: phreedom.club 2191 | url: https://phreedom.club/ 2192 | size: 8.5 2193 | last_checked: 2022-03-18 2194 | 2195 | - domain: piccioni.london 2196 | url: https://piccioni.london/ 2197 | size: 374 2198 | last_checked: 2022-06-27 2199 | 2200 | - domain: pikselkraft.com 2201 | url: https://www.pikselkraft.com/ 2202 | size: 195 2203 | last_checked: 2023-06-05 2204 | 2205 | - domain: piuvas.net 2206 | url: https://piuvas.net/ 2207 | size: 16.6 2208 | last_checked: 2023-06-12 2209 | 2210 | - domain: pjals.vern.cc 2211 | url: https://pjals.vern.cc/ 2212 | size: 45.1 2213 | last_checked: 2022-12-10 2214 | 2215 | - domain: plabayo.tech 2216 | url: https://plabayo.tech/ 2217 | size: 19.6 2218 | last_checked: 2022-04-06 2219 | 2220 | - domain: plaindrops.de 2221 | url: https://plaindrops.de/ 2222 | size: 27.1 2223 | last_checked: 2022-02-21 2224 | 2225 | - domain: plausible.io 2226 | url: https://plausible.io/ 2227 | size: 182 2228 | last_checked: 2022-03-18 2229 | 2230 | - domain: playerone.kevincox.ca 2231 | url: https://playerone.kevincox.ca/ 2232 | size: 339 2233 | last_checked: 2022-04-26 2234 | 2235 | - domain: port53.me 2236 | url: https://port53.me/ 2237 | size: 42.6 2238 | last_checked: 2022-04-26 2239 | 2240 | - domain: portable.fyi 2241 | url: https://portable.fyi/ 2242 | size: 19.5 2243 | last_checked: 2022-05-06 2244 | 2245 | - domain: portnumber.co.uk 2246 | url: https://www.portnumber.co.uk/ 2247 | size: 123 2248 | last_checked: 2022-12-02 2249 | 2250 | - domain: pothix.com 2251 | url: https://pothix.com/ 2252 | size: 183 2253 | last_checked: 2022-03-18 2254 | 2255 | - domain: privatebin.info 2256 | url: https://privatebin.info/ 2257 | size: 355 2258 | last_checked: 2022-02-05 2259 | 2260 | - domain: probably.co.uk 2261 | url: https://probably.co.uk/ 2262 | size: 73.4 2263 | last_checked: 2023-06-17 2264 | 2265 | - domain: processwire.dev 2266 | url: https://processwire.dev/ 2267 | size: 58.8 2268 | last_checked: 2022-03-20 2269 | 2270 | - domain: projects.deltabeard.com 2271 | url: https://projects.deltabeard.com/ 2272 | size: 26.5 2273 | last_checked: 2022-05-15 2274 | 2275 | - domain: proseandconst.xyz 2276 | url: https://proseandconst.xyz/ 2277 | size: 311 2278 | last_checked: 2022-03-25 2279 | 2280 | - domain: pubindexapi.com 2281 | url: https://www.pubindexapi.com/ 2282 | size: 103 2283 | last_checked: 2023-04-14 2284 | 2285 | - domain: pukima.site 2286 | url: https://pukima.site/ 2287 | size: 225 2288 | last_checked: 2022-04-12 2289 | 2290 | - domain: purplebits.co.uk 2291 | url: https://purplebits.co.uk/ 2292 | size: 83.0 2293 | last_checked: 2022-05-15 2294 | 2295 | - domain: puxped.ddns.net 2296 | url: https://puxped.ddns.net/ 2297 | size: 293 2298 | last_checked: 2023-04-08 2299 | 2300 | - domain: pyratebeard.net 2301 | url: https://pyratebeard.net 2302 | size: 62.3 2303 | last_checked: 2022-01-11 2304 | 2305 | - domain: pzel.name 2306 | url: https://pzel.name/ 2307 | size: 15.1 2308 | last_checked: 2022-10-03 2309 | 2310 | - domain: qcard.link 2311 | url: https://qcard.link/ 2312 | size: 101 2313 | last_checked: 2022-03-25 2314 | 2315 | - domain: qtrnn.io 2316 | url: https://qtrnn.io/ 2317 | size: 3.8 2318 | last_checked: 2022-05-06 2319 | 2320 | - domain: qubyte.codes 2321 | url: https://qubyte.codes/ 2322 | size: 31.2 2323 | last_checked: 2022-04-26 2324 | 2325 | - domain: quinncasey.com 2326 | url: https://quinncasey.com/ 2327 | size: 288 2328 | last_checked: 2022-05-15 2329 | 2330 | - domain: qunitjs.com 2331 | url: https://qunitjs.com/ 2332 | size: 303 2333 | last_checked: 2022-04-26 2334 | 2335 | - domain: radiocanadamini.ca 2336 | url: https://radiocanadamini.ca 2337 | size: 27.3 2338 | last_checked: 2022-09-30 2339 | 2340 | - domain: raikas.dev 2341 | url: https://raikas.dev/ 2342 | size: 4.85 2343 | last_checked: 2022-05-08 2344 | 2345 | - domain: ramenos.net 2346 | url: https://www.ramenos.net/ 2347 | size: 15.5 2348 | last_checked: 2022-05-06 2349 | 2350 | - domain: ranvier.net 2351 | url: https://ranvier.net/ 2352 | size: 67.7 2353 | last_checked: 2022-03-25 2354 | 2355 | - domain: raregems.io 2356 | url: https://raregems.io/ 2357 | size: 405 2358 | last_checked: 2022-09-14 2359 | 2360 | - domain: ratfactor.com 2361 | url: https://ratfactor.com/ 2362 | size: 60.6 2363 | last_checked: 2022-02-24 2364 | 2365 | - domain: rav3ndust.xyz 2366 | url: https://rav3ndust.xyz/ 2367 | size: 72.1 2368 | last_checked: 2022-03-25 2369 | 2370 | - domain: rectangles.app 2371 | url: https://rectangles.app/ 2372 | size: 6.93 2373 | last_checked: 2022-04-01 2374 | 2375 | - domain: redmanmale.com 2376 | url: https://redmanmale.com/ 2377 | size: 27.6 2378 | last_checked: 2022-10-26 2379 | 2380 | - domain: reim.ar 2381 | url: https://reim.ar/ 2382 | size: 32.1 2383 | last_checked: 2022-09-18 2384 | 2385 | - domain: reorx.com 2386 | url: https://reorx.com/ 2387 | size: 123 2388 | last_checked: 2022-05-22 2389 | 2390 | - domain: revuo-xmr.com 2391 | url: https://revuo-xmr.com/ 2392 | size: 444 2393 | last_checked: 2022-04-10 2394 | 2395 | - domain: rezhajul.io 2396 | url: https://rezhajul.io/ 2397 | size: 28.4 2398 | last_checked: 2023-01-13 2399 | 2400 | - domain: rhapsode.adrian.geek.nz 2401 | url: http://rhapsode.adrian.geek.nz/ 2402 | size: 148 2403 | last_checked: 2022-05-15 2404 | 2405 | - domain: richj.co 2406 | url: https://richj.co/ 2407 | size: 48.0 2408 | last_checked: 2022-04-26 2409 | 2410 | - domain: rickrollblog.blogspot.com 2411 | url: http://rickrollblog.blogspot.com/ 2412 | size: 61.8 2413 | last_checked: 2022-05-06 2414 | 2415 | - domain: rico040.xyz 2416 | url: https://rico040.xyz/ 2417 | size: 99 2418 | last_checked: 2022-11-23 2419 | 2420 | - domain: riedler.wien 2421 | url: http://riedler.wien/music/ 2422 | size: 138 2423 | last_checked: 2022-08-17 2424 | 2425 | - domain: rishigoomar.com 2426 | url: https://rishigoomar.com/ 2427 | size: 9.45 2428 | last_checked: 2022-08-20 2429 | 2430 | - domain: robbie.antenesse.net 2431 | url: https://robbie.antenesse.net/ 2432 | size: 282 2433 | last_checked: 2022-04-26 2434 | 2435 | - domain: robbie.deighton.be 2436 | url: http://robbie.deighton.be/ 2437 | size: 12.6 2438 | last_checked: 2022-04-01 2439 | 2440 | - domain: robot.unipv.it/toolleeo/ 2441 | url: https://robot.unipv.it/toolleeo/ 2442 | size: 27.8 2443 | last_checked: 2022-02-04 2444 | 2445 | - domain: roelbazuin.nl 2446 | url: https://roelbazuin.nl/ 2447 | size: 407 2448 | last_checked: 2022-04-26 2449 | 2450 | - domain: roelwillems.com 2451 | url: https://roelwillems.com/ 2452 | size: 243 2453 | last_checked: 2022-04-26 2454 | 2455 | - domain: rohandebsarkar.github.io 2456 | url: https://rohandebsarkar.github.io/ 2457 | size: 226 2458 | last_checked: 2022-10-28 2459 | 2460 | - domain: rohitfarmer.github.io 2461 | url: https://rohitfarmer.github.io/ 2462 | size: 74.3 2463 | last_checked: 2022-04-21 2464 | 2465 | - domain: rojen.uk 2466 | url: https://rojen.uk/ 2467 | size: 10 2468 | last_checked: 2022-11-14 2469 | 2470 | - domain: roly.neocities.org 2471 | url: https://roly.neocities.org/ 2472 | size: 158 2473 | last_checked: 2022-03-20 2474 | 2475 | - domain: ronitray.xyz 2476 | url: https://ronitray.xyz/ 2477 | size: 21.6 2478 | last_checked: 2022-01-29 2479 | 2480 | - domain: roytakanen.github.io 2481 | url: https://roytakanen.github.io/ 2482 | size: 89.4 2483 | last_checked: 2022-05-03 2484 | 2485 | - domain: ru.order332.com 2486 | url: https://ru.order332.com/ 2487 | size: 375 2488 | last_checked: 2023-06-18 2489 | 2490 | - domain: rutar.org 2491 | url: https://rutar.org/ 2492 | size: 10.1 2493 | last_checked: 2022-01-20 2494 | 2495 | - domain: s9a.me 2496 | url: https://s9a.me/ 2497 | size: 162 2498 | last_checked: 2022-12-23 2499 | 2500 | - domain: saladhax.site 2501 | url: https://saladhax.site/ 2502 | size: 21.7 2503 | last_checked: 2022-04-26 2504 | 2505 | - domain: saleve.cf 2506 | url: https://saleve.cf/ 2507 | size: 437 2508 | last_checked: 2022-05-25 2509 | 2510 | - domain: salixos.org 2511 | url: https://salixos.org/ 2512 | size: 85.8 2513 | last_checked: 2022-04-26 2514 | 2515 | - domain: sam.pavot.ca 2516 | url: https://sam.pavot.ca 2517 | size: 34.8 2518 | last_checked: 2022-05-15 2519 | 2520 | - domain: samic.org 2521 | url: https://samic.org/ 2522 | size: 18.4 2523 | last_checked: 2022-04-15 2524 | 2525 | - domain: sashanoraa.gay 2526 | url: https://sashanoraa.gay/ 2527 | size: 91.1 2528 | last_checked: 2022-03-21 2529 | 2530 | - domain: saucecode.bar 2531 | url: https://saucecode.bar/ 2532 | size: 5.61 2533 | last_checked: 2022-08-02 2534 | 2535 | - domain: scf37.me 2536 | url: https://scf37.me/ 2537 | size: 93.5 2538 | last_checked: 2022-05-15 2539 | 2540 | - domain: schmidbauer.cz 2541 | url: https://www.schmidbauer.cz/ 2542 | size: 58.9 2543 | last_checked: 2022-05-15 2544 | 2545 | - domain: scottk.mba 2546 | url: https://scottk.mba/ 2547 | size: 19.7 2548 | last_checked: 2023-06-16 2549 | 2550 | - domain: searchcandy.uk 2551 | url: https://www.searchcandy.uk/ 2552 | size: 290 2553 | last_checked: 2023-04-14 2554 | 2555 | - domain: searchforplanet.org 2556 | url: https://searchforplanet.org/ 2557 | size: 173 2558 | last_checked: 2022-04-26 2559 | 2560 | - domain: sebastian.graphics 2561 | url: https://sebastian.graphics/ 2562 | size: 181 2563 | last_checked: 2022-04-26 2564 | 2565 | - domain: secluded.site 2566 | url: https://secluded.site/ 2567 | size: 84.4 2568 | last_checked: 2022-05-15 2569 | 2570 | - domain: seirdy.one 2571 | url: https://seirdy.one/ 2572 | size: 20.6 2573 | last_checked: 2022-05-06 2574 | 2575 | - domain: sergeysh.com 2576 | url: https://sergeysh.com/ 2577 | size: 295 2578 | last_checked: 2022-03-18 2579 | 2580 | - domain: serhack.me 2581 | url: http://serhack.me/ 2582 | size: 461 2583 | last_checked: 2022-01-29 2584 | 2585 | - domain: sglazov.ru 2586 | url: https://sglazov.ru/ 2587 | size: 285 2588 | last_checked: 2022-03-31 2589 | 2590 | - domain: shatteredpalisa.de 2591 | url: https://shatteredpalisa.de 2592 | size: 60.0 2593 | last_checked: 2022-08-01 2594 | 2595 | - domain: sheepdev.xyz 2596 | url: https://sheepdev.xyz 2597 | size: 105 2598 | last_checked: 2023-02-26 2599 | 2600 | - domain: sherrieg.com 2601 | url: https://sherrieg.com/ 2602 | size: 25.5 2603 | last_checked: 2022-07-24 2604 | 2605 | - domain: shom.dev 2606 | url: https://shom.dev/ 2607 | size: 37.3 2608 | last_checked: 2022-05-15 2609 | 2610 | - domain: silviamaggidesign.com 2611 | url: https://silviamaggidesign.com/ 2612 | size: 311 2613 | last_checked: 2022-01-24 2614 | 2615 | - domain: simpleblogs.org 2616 | url: https://simpleblogs.org/ 2617 | size: 376 2618 | last_checked: 2022-04-26 2619 | 2620 | - domain: simplecss.org 2621 | url: https://simplecss.org/ 2622 | size: 17.3 2623 | last_checked: 2022-05-06 2624 | 2625 | - domain: slashdev.space 2626 | url: https://slashdev.space/ 2627 | size: 400 2628 | last_checked: 2022-04-26 2629 | 2630 | - domain: slitdecision.com 2631 | url: https://slitdecision.com/ 2632 | size: 29.9 2633 | last_checked: 2022-02-21 2634 | 2635 | - domain: sm6kne.amprnet.se 2636 | url: https://sm6kne.amprnet.se/ 2637 | size: 8.9 2638 | last_checked: 2023-02-07 2639 | 2640 | - domain: soeren.codes 2641 | url: https://soeren.codes/ 2642 | size: 10.0 2643 | last_checked: 2022-09-17 2644 | 2645 | - domain: solar.milangaelectronica.com.ar 2646 | url: https://solar.milangaelectronica.com.ar/ 2647 | size: 67.6 2648 | last_checked: 2022-10-31 2649 | 2650 | - domain: solfisher.com 2651 | url: https://solfisher.com/ 2652 | size: 13.0 2653 | last_checked: 2022-05-06 2654 | 2655 | - domain: sousali.com 2656 | url: https://sousali.com/ 2657 | size: 435 2658 | last_checked: 2023-01-28 2659 | 2660 | - domain: sp-codes.de 2661 | url: https://sp-codes.de/ 2662 | size: 54.3 2663 | last_checked: 2022-05-15 2664 | 2665 | - domain: spacehey.com 2666 | url: https://spacehey.com/ 2667 | size: 164 2668 | last_checked: 2022-09-30 2669 | 2670 | - domain: spearfishcap.cap 2671 | url: https://www.spearfishcap.com/ 2672 | size: 415 2673 | last_checked: 2022-07-25 2674 | 2675 | - domain: spool-five.com 2676 | url: https://spool-five.com/ 2677 | size: 6.6 2678 | last_checked: 2022-05-06 2679 | 2680 | - domain: stapy.magentix.fr 2681 | url: https://stapy.magentix.fr/ 2682 | size: 21.4 2683 | last_checked: 2022-05-06 2684 | 2685 | - domain: steamosaic.com 2686 | url: https://steamosaic.com/ 2687 | size: 356 2688 | last_checked: 2022-04-26 2689 | 2690 | - domain: stefdawson.com 2691 | url: https://stefdawson.com/ 2692 | size: 188 2693 | last_checked: 2022-04-26 2694 | 2695 | - domain: stilic.ml 2696 | url: https://stilic.ml/ 2697 | size: 73.6 2698 | last_checked: 2022-05-05 2699 | 2700 | - domain: sudoedit.com 2701 | url: https://sudoedit.com/ 2702 | size: 317 2703 | last_checked: 2022-04-29 2704 | 2705 | - domain: sulairris.com 2706 | url: https://sulairris.com/ 2707 | size: 181 2708 | last_checked: 2022-10-04 2709 | 2710 | - domain: support.tfwnogf.nl 2711 | url: https://support.tfwnogf.nl 2712 | size: 24.6 2713 | last_checked: 2022-01-29 2714 | 2715 | - domain: susam.net 2716 | url: https://susam.net/ 2717 | size: 9.51 2718 | last_checked: 2022-12-11 2719 | 2720 | - domain: sverona.dev 2721 | url: https://sverona.dev/ 2722 | size: 15.2 2723 | last_checked: 2023-02-07 2724 | 2725 | - domain: tanami.org 2726 | url: https://tanami.org/ 2727 | size: 32.6 2728 | last_checked: 2022-05-15 2729 | 2730 | - domain: taylantatli.com 2731 | url: https://taylantatli.com/ 2732 | size: 155 2733 | last_checked: 2022-04-26 2734 | 2735 | - domain: tdpain.net 2736 | url: https://www.tdpain.net/ 2737 | size: 287 2738 | last_checked: 2023-03-13 2739 | 2740 | - domain: tedmagaoay.com 2741 | url: https://tedmagaoay.com/ 2742 | size: 74.8 2743 | last_checked: 2023-07-08 2744 | 2745 | - domain: tek256.com 2746 | url: https://tek256.com/ 2747 | size: 228 2748 | last_checked: 2022-04-26 2749 | 2750 | - domain: temp.sh 2751 | url: https://temp.sh/ 2752 | size: 3.9 2753 | last_checked: 2022-05-06 2754 | 2755 | - domain: thatdaria.com 2756 | url: https://thatdaria.com/ 2757 | size: 92.6 2758 | last_checked: 2022-04-26 2759 | 2760 | - domain: thaumatorium.com 2761 | url: https://thaumatorium.com/ 2762 | size: 53.3 2763 | last_checked: 2022-04-26 2764 | 2765 | - domain: theblapse.me 2766 | url: https://theblapse.me/ 2767 | size: 123 2768 | last_checked: 2023-04-19 2769 | 2770 | - domain: thejollyteapot.com 2771 | url: https://thejollyteapot.com/ 2772 | size: 3.65 2773 | last_checked: 2022-06-02 2774 | 2775 | - domain: thelazysre.com 2776 | url: https://thelazysre.com/ 2777 | size: 13.3 2778 | last_checked: 2023-06-12 2779 | 2780 | - domain: thelion.website 2781 | url: https://thelion.website/ 2782 | size: 43.2 2783 | last_checked: 2022-04-26 2784 | 2785 | - domain: thewebisfucked.com 2786 | url: https://thewebisfucked.com 2787 | size: 135 2788 | last_checked: 2022-05-06 2789 | 2790 | - domain: thewismit.com 2791 | url: https://thewismit.com/ 2792 | size: 19.1 2793 | last_checked: 2022-05-13 2794 | 2795 | - domain: thomas.me 2796 | url: https://thomas.me/ 2797 | size: 73.0 2798 | last_checked: 2022-04-26 2799 | 2800 | - domain: thomaspark.co 2801 | url: https://thomaspark.co/ 2802 | size: 488 2803 | last_checked: 2022-05-15 2804 | 2805 | - domain: tianheg.xyz 2806 | url: https://tianheg.xyz/ 2807 | size: 101 2808 | last_checked: 2022-11-24 2809 | 2810 | - domain: tiberriver256.github.io 2811 | url: https://tiberriver256.github.io/ 2812 | size: 58.6 2813 | last_checked: 2023-01-09 2814 | 2815 | - domain: ticklethepanda.dev 2816 | url: https://www.ticklethepanda.dev/ 2817 | size: 407 2818 | last_checked: 2022-06-15 2819 | 2820 | - domain: timespreader.com 2821 | url: https://timespreader.com/ 2822 | size: 344 2823 | last_checked: 2022-04-30 2824 | 2825 | - domain: timharek.no 2826 | url: https://timharek.no/ 2827 | size: 22.8 2828 | last_checked: 2022-05-15 2829 | 2830 | - domain: timotijhof.net 2831 | url: https://timotijhof.net/ 2832 | size: 28.5 2833 | last_checked: 2022-05-15 2834 | 2835 | - domain: toby3d.me 2836 | url: https://toby3d.me/ 2837 | size: 195 2838 | last_checked: 2022-02-13 2839 | 2840 | - domain: tonisagrista.com 2841 | url: https://tonisagrista.com/ 2842 | size: 390 2843 | last_checked: 2023-01-09 2844 | 2845 | - domain: topikettunen.com 2846 | url: https://topikettunen.com 2847 | size: 26.0 2848 | last_checked: 2022-06-03 2849 | 2850 | - domain: tradingcode.net 2851 | url: https://tradingcode.net/ 2852 | size: 33.8 2853 | last_checked: 2022-05-15 2854 | 2855 | - domain: translucide.net 2856 | url: https://translucide.net/ 2857 | size: 270 2858 | last_checked: 2023-05-26 2859 | 2860 | - domain: trinity.moe 2861 | url: http://www.trinity.moe 2862 | size: 39.6 2863 | last_checked: 2022-04-26 2864 | 2865 | - domain: troylusty.com 2866 | url: https://troylusty.com/ 2867 | size: 7.49 2868 | last_checked: 2022-12-03 2869 | 2870 | - domain: tryhexadecimal.com 2871 | url: https://tryhexadecimal.com/ 2872 | size: 34.7 2873 | last_checked: 2022-04-26 2874 | 2875 | - domain: tsk.bearblog.dev 2876 | url: https://tsk.bearblog.dev/ 2877 | size: 112 2878 | last_checked: 2022-09-28 2879 | 2880 | - domain: tsukuraku.github.io 2881 | url: https://tsukuraku.github.io/ 2882 | size: 354 2883 | last_checked: 2023-06-23 2884 | 2885 | - domain: ttntm.me 2886 | url: https://ttntm.me/ 2887 | size: 72.2 2888 | last_checked: 2022-04-26 2889 | 2890 | - domain: tty1.blog 2891 | url: https://tty1.blog/ 2892 | size: 19.5 2893 | last_checked: 2023-05-07 2894 | 2895 | - domain: tunesheavy.com 2896 | url: https://tunesheavy.com/ 2897 | size: 42.9 2898 | last_checked: 2022-05-15 2899 | 2900 | - domain: txt.fabio.com.ar 2901 | url: https://txt.fabio.com.ar/ 2902 | size: 312 2903 | last_checked: 2023-04-19 2904 | 2905 | - domain: unindented.org 2906 | url: https://www.unindented.org/ 2907 | size: 105 2908 | last_checked: 2022-01-06 2909 | 2910 | - domain: unitoo.it 2911 | url: https://unitoo.it/ 2912 | size: 463 2913 | last_checked: 2022-02-25 2914 | 2915 | - domain: unixsheikh.com 2916 | url: https://unixsheikh.com/ 2917 | size: 39.2 2918 | last_checked: 2022-09-14 2919 | 2920 | - domain: unli.xyz 2921 | url: https://unli.xyz/ 2922 | size: 102 2923 | last_checked: 2022-10-05 2924 | 2925 | - domain: unsolicitedadvise.com 2926 | url: https://unsolicitedadvise.com/ 2927 | size: 454 2928 | last_checked: 2022-05-15 2929 | 2930 | - domain: unsungnovelty.org 2931 | url: https://www.unsungnovelty.org/ 2932 | size: 87.1 2933 | last_checked: 2023-04-25 2934 | 2935 | - domain: usecue.com 2936 | url: https://www.usecue.com/ 2937 | size: 51.6 2938 | last_checked: 2022-05-15 2939 | 2940 | - domain: vandenbran.de 2941 | url: https://vandenbran.de/ 2942 | size: 51.2 2943 | last_checked: 2022-09-12 2944 | 2945 | - domain: vanzasetia.site 2946 | url: https://vanzasetia.site/ 2947 | size: 42.3 2948 | last_checked: 2023-03-26 2949 | 2950 | - domain: vegard.net 2951 | url: https://www.vegard.net/ 2952 | size: 54.5 2953 | last_checked: 2022-02-24 2954 | 2955 | - domain: vern.cc 2956 | url: https://vern.cc/ 2957 | size: 21.7 2958 | last_checked: 2022-12-10 2959 | 2960 | - domain: vidhukant.com 2961 | url: https://vidhukant.com/ 2962 | size: 42.8 2963 | last_checked: 2023-06-28 2964 | 2965 | - domain: vili.dev 2966 | url: https://vili.dev/ 2967 | size: 502 2968 | last_checked: 2023-03-27 2969 | 2970 | - domain: vitcerny.xyz 2971 | url: https://vitcerny.xyz/ 2972 | size: 52.7 2973 | last_checked: 2022-04-26 2974 | 2975 | - domain: vladas.palubinskas.lt 2976 | url: https://vladas.palubinskas.lt/ 2977 | size: 9.0 2978 | last_checked: 2022-05-13 2979 | 2980 | - domain: vmaxleclub.com 2981 | url: https://www.vmaxleclub.com/ 2982 | size: 245 2983 | last_checked: 2023-04-29 2984 | 2985 | - domain: volleyball-baustetten.de 2986 | url: https://volleyball-baustetten.de/ 2987 | size: 210 2988 | last_checked: 2022-01-30 2989 | 2990 | - domain: vreeman.com 2991 | url: https://vreeman.com/ 2992 | size: 358 2993 | last_checked: 2022-04-26 2994 | 2995 | - domain: vvulpes0.github.io 2996 | url: https://vvulpes0.github.io/ 2997 | size: 7.6 2998 | last_checked: 2022-04-26 2999 | 3000 | - domain: wayfarers.space 3001 | url: https://wayfarers.space/ 3002 | size: 364 3003 | last_checked: 2023-04-19 3004 | 3005 | 3006 | - domain: webmusic.pages.dev 3007 | url: https://webmusic.pages.dev/ 3008 | size: 505 3009 | last_checked: 2022-06-16 3010 | 3011 | - domain: webzine.puffy.cafe 3012 | url: https://webzine.puffy.cafe 3013 | size: 8.2 3014 | last_checked: 2022-05-06 3015 | 3016 | - domain: weinzierlweb.com 3017 | url: https://weinzierlweb.com/ 3018 | size: 310 3019 | last_checked: 2022-04-26 3020 | 3021 | - domain: whoisyoges.eu.org 3022 | url: https://whoisyoges.eu.org/ 3023 | size: 94.3 3024 | last_checked: 2022-12-19 3025 | 3026 | - domain: why-openbsd.rocks 3027 | url: https://why-openbsd.rocks/fact/ 3028 | size: 35.4 3029 | last_checked: 2022-05-15 3030 | 3031 | - domain: wilde-it.co.uk 3032 | url: https://wilde-it.co.uk/ 3033 | size: 158 3034 | last_checked: 2022-04-26 3035 | 3036 | - domain: will.cx 3037 | url: https://will.cx/ 3038 | size: 40.8 3039 | last_checked: 2022-05-15 3040 | 3041 | - domain: wilw.dev 3042 | url: https://wilw.dev/ 3043 | size: 18.3 3044 | last_checked: 2022-08-28 3045 | 3046 | - domain: wiseweb.works 3047 | url: https://wiseweb.works/ 3048 | size: 44.5 3049 | last_checked: 2022-04-26 3050 | 3051 | - domain: wolfgang.lol 3052 | url: https://wolfgang.lol/ 3053 | size: 335 3054 | last_checked: 2022-04-26 3055 | 3056 | - domain: wor.do 3057 | url: https://wor.do/ 3058 | size: 349 3059 | last_checked: 2022-04-26 3060 | 3061 | - domain: wpturbo.dev 3062 | url: https://wpturbo.dev/ 3063 | size: 280 3064 | last_checked: 2023-01-04 3065 | 3066 | - domain: wrzeczak.net 3067 | url: https://wrzeczak.net/ 3068 | size: 35.4 3069 | last_checked: 2022-11-24 3070 | 3071 | - domain: xameren.repl.co 3072 | url: https://xameren.repl.co/ 3073 | size: 56.6 3074 | last_checked: 2023-05-01 3075 | 3076 | - domain: xidoc.nim.town 3077 | url: http://xidoc.nim.town/ 3078 | size: 73.2 3079 | last_checked: 2022-04-26 3080 | 3081 | - domain: xigoi.neocities.org 3082 | url: https://xigoi.neocities.org/ 3083 | size: 10.4 3084 | last_checked: 2022-03-18 3085 | 3086 | - domain: xkon.dev 3087 | url: https://xkon.dev/ 3088 | size: 6.8 3089 | last_checked: 2022-05-15 3090 | 3091 | - domain: xlthlx.com 3092 | url: https://xlthlx.com/ 3093 | size: 434 3094 | last_checked: 2022-06-27 3095 | 3096 | - domain: xnacly.me 3097 | url: https://xnacly.me/ 3098 | size: 26.8 3099 | last_checked: 2022-11-28 3100 | 3101 | - domain: xwx.moe 3102 | url: https://xwx.moe/ 3103 | size: 414 3104 | last_checked: 2022-05-15 3105 | 3106 | - domain: yalinpala.dev 3107 | url: https://yalinpala.dev/ 3108 | size: 395 3109 | last_checked: 2022-05-16 3110 | 3111 | - domain: yaroslav-i.ru 3112 | url: https://yaroslav-i.ru/ 3113 | size: 475 3114 | last_checked: 2022-05-15 3115 | 3116 | - domain: yaslamblog.netlify.app 3117 | url: https://yaslamblog.netlify.app/ 3118 | size: 131 3119 | last_checked: 2023-03-02 3120 | 3121 | - domain: yne.fr 3122 | url: https://yne.fr/ 3123 | size: 4.5 3124 | last_checked: 2022-05-13 3125 | 3126 | - domain: yogas.eu.org 3127 | url: https://yogas.eu.org/ 3128 | size: 67.1 3129 | last_checked: 2022-05-25 3130 | 3131 | - domain: youkwhd.vercel.app 3132 | url: https://youkwhd.vercel.app/ 3133 | size: 221 3134 | last_checked: 2022-03-25 3135 | 3136 | - domain: youssefy.com 3137 | url: https://youssefy.com/ 3138 | size: 94.7 3139 | last_checked: 2022-11-02 3140 | 3141 | - domain: youtube-playlist-timer.mmap.page 3142 | url: https://youtube-playlist-timer.mmap.page 3143 | size: 124 3144 | last_checked: 2023-04-27 3145 | 3146 | - domain: yuv.al 3147 | url: https://yuv.al/ 3148 | size: 255 3149 | last_checked: 2022-10-28 3150 | 3151 | - domain: zakr.es 3152 | url: https://zakr.es/ 3153 | size: 231 3154 | last_checked: 2022-04-26 3155 | 3156 | - domain: zakrzewski.click 3157 | url: https://zakrzewski.click 3158 | size: 463 3159 | last_checked: 2023-06-05 3160 | 3161 | - domain: zapisnik.skladka.net 3162 | url: https://zapisnik.skladka.net/ 3163 | size: 14.7 3164 | last_checked: 2023-02-07 3165 | 3166 | - domain: zeriax.com 3167 | url: https://zeriax.com/ 3168 | size: 91.3 3169 | last_checked: 2022-07-24 3170 | 3171 | - domain: zerokspot.com 3172 | url: https://zerokspot.com/ 3173 | size: 175 3174 | last_checked: 2022-04-26 3175 | 3176 | - domain: zhangjet.com 3177 | url: https://zhangjet.com/ 3178 | size: 17.7 3179 | last_checked: 2022-06-24 3180 | 3181 | - domain: zoia.org 3182 | url: https://zoia.org 3183 | size: 22.1 3184 | last_checked: 2022-03-28 3185 | 3186 | - domain: zserge.com 3187 | url: https://zserge.com/ 3188 | size: 20.6 3189 | last_checked: 2022-05-13 3190 | 3191 | - domain: zue.ge 3192 | url: https://zue.ge/ 3193 | size: 198 3194 | last_checked: 2022-11-24 3195 | 3196 | - domain: zwbetz.com 3197 | url: https://zwbetz.com/ 3198 | size: 67.8 3199 | last_checked: 2022-07-20 3200 | --------------------------------------------------------------------------------