diff --git a/.gitignore b/.gitignore index 5ba5bf26..f07dd300 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ node_modules -.svelte -build/* +yltresults/* diff --git a/README.md b/README.md index 2d1a38f4..f31b05d5 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Inspired by [Bradley Taunt's 1MB.club](https://1mb.club/). ## But why? -I love the idea of a list of webpages that are still reasonably usable with a slow internet connection. But 1MB is, in my honest opinion, still way too much. Nobody wants to wait 10 seconds — on good days — to load a web site. But a very large chunk of the world population isn't gifted with Gigabit internet connections. +I love the idea of a list of webpages that are still reasonably usable with a slow internet connection. But 1MB is, in my honest opinion, still way too much. Nobody wants to wait 10 seconds — on good days — to load a web site. And a very large chunk of the world population isn't gifted with Gigabit internet connections. Of course, the absolute size of a website is not a perfect indicator. A page might contain a lot of text or images as important part of their content. It would be unfair to call them bloated in this case. This is why, additionally to the absolute size the ratio of visible to invisible content is shown as well. @@ -31,14 +31,25 @@ pretty good already. ## Hacking this page -This page is built with [Svelte](https://svelte.dev). You can clone the repository and run the application in development mode like this: +This page needs three components to work: + +### [Deno](https://deno.land/) + +The application that updates the page information is build with Typescript 4.6 and Deno 1.20. It uses no external packages except `encoding/toml` from the standard library. + +### [YellowLabTools](https://yellowlab.tools/) + +A local (docker) version of YellowLabTools is used for the page analysis. It uses [Phantomas](https://github.com/macbre/phantomas) as well as other tools to create a exhaustive metric. + +### [Zola](https://www.getzola.org/) + +The page analyser application generates markdown files that are rendered to a static web page by Zola. ```sh git clone https://git.sr.ht/~koehr/the-250kb-club 250kb-club # or: git clone https://github.com/nkoehring/250kb-club.git cd 250kb-club -yarn -yarn dev + ``` And build the page with `yarn build`. diff --git a/analyser/metrics.ts b/analyser/metrics.ts new file mode 100644 index 00000000..7f5d257e --- /dev/null +++ b/analyser/metrics.ts @@ -0,0 +1,79 @@ +import { retryFetch } from './toolkit.ts' + +const STATUS_URL = 'http://localhost:8383/api/runs/' +const RESULT_URL = 'http://localhost:8383/api/results/' +const METRIC_DEFAULTS = { + device: 'desktop', + waitForResponse: false, + screenshot: true, +} + +// requests metrics and returns runId +export async function requestMetricsRun (url:string): Promise { + const body = JSON.stringify({ + url, + ...METRIC_DEFAULTS, + }) + + const response = await fetch(STATUS_URL, { + method: "POST", + headers: [ + ["Content-Type", "application/json"], + ["User-Agent", "250kb-club"] + ], + body, + }) + + if (response.ok) { + const json: { runId: string } = await response.json() + return json.runId + } else { + const err = await response.text() + console.error(`Failed to request metrics run for ${url}: ${err}`) + return null + } +} + +export async function checkStatus (runId: string, retries = 3): Promise { + const json = await retryFetch(`${STATUS_URL}${runId}`) + if (!json) return { url: '', status: 'failed' } + + const url = json.params.url + const status = json.status.statusCode + return { url, status } +} + +export async function retrieveMetrics (runId: string): Promise { + const json = await retryFetch(`${RESULT_URL}${runId}`) + if (!json) return null + + return { + scores: { + pageWeight: json.scoreProfiles.generic.categories.pageWeight.categoryScore, + requests: json.scoreProfiles.generic.categories.requests.categoryScore, + domComplexity: json.scoreProfiles.generic.categories.domComplexity.categoryScore, + javascriptComplexity: json.scoreProfiles.generic.categories.javascriptComplexity.categoryScore, + badJavascript: json.scoreProfiles.generic.categories.badJavascript.categoryScore, + jQuery: json.scoreProfiles.generic.categories.jQuery.categoryScore, + cssComplexity: json.scoreProfiles.generic.categories.cssComplexity.categoryScore, + badCSS: json.scoreProfiles.generic.categories.badCSS.categoryScore, + fonts: json.scoreProfiles.generic.categories.fonts.categoryScore, + serverConfig: json.scoreProfiles.generic.categories.serverConfig.categoryScore, + globalScore: json.scoreProfiles.generic.globalScore, + }, + metrics: { + requests: json.toolsResults.phantomas.metrics.requests, + bodySize: json.toolsResults.phantomas.metrics.bodySize, + contentLength: json.toolsResults.phantomas.metrics.contentLength, + htmlSize: json.toolsResults.phantomas.metrics.htmlSize, + cssSize: json.toolsResults.phantomas.metrics.cssSize, + jsSize: json.toolsResults.phantomas.metrics.jsSize, + jsonSize: json.toolsResults.phantomas.metrics.jsonSize, + imageSize: json.toolsResults.phantomas.metrics.imageSize, + videoSize: json.toolsResults.phantomas.metrics.videoSize, + webfontSize: json.toolsResults.phantomas.metrics.webfontSize, + base64Size: json.toolsResults.phantomas.metrics.base64Size, + otherSize: json.toolsResults.phantomas.metrics.otherSize, + } + } +} diff --git a/analyser/toolkit.ts b/analyser/toolkit.ts new file mode 100644 index 00000000..a97ec4eb --- /dev/null +++ b/analyser/toolkit.ts @@ -0,0 +1,74 @@ +import { parse as tomlParse, stringify as tomlStringify } from "https://deno.land/std@0.130.0/encoding/toml.ts" + +const reFrontmatter = /^\+\+\+([\s\S]*)^\+\+\+$([\s\S]*)/m; + +export function url2title (url: string): string { + return url + .replace(/^https?:\/\//, '') // remove leading http(s):// + .replace(/\/$/, '') // remove trailing slash +} + +// gets an URL like https://foo.bar and returns ./content/foo_baz.md +function url2filepath (url: string, output_path: string): string { + const filename = url2title(url) + .replaceAll(/[\.\/]/g, '_') // replace dots and slashes with underscores + return `${output_path}/${filename}.md` +} + +// deprecated in deno std, but also simple to replicate +// see: https://deno.land/std@0.130.0/fs/exists.ts +async function exists (path: string): Promise { + try { + return !!(await Deno.lstat(path)) + } catch (err) { + if (err instanceof Deno.errors.NotFound) return false + throw err + } +} + +// checks if URL has a record already and returns time since last check or null +export async function getPageRecord (url: string, output_path: string): Promise { + const path = url2filepath(url, output_path) + const hasRecord = await exists(path) + + if (!hasRecord) return null + + const fileContents = await Deno.readTextFile(path) + const match = fileContents.match(reFrontmatter) + if (!match) return null // that should never happen but who knows + return tomlParse(match[1].trim()) as PageRecord +} + +export async function writeRecord (record: PageRecord, url: string, output_path: string): Promise { + const path = url2filepath(url, output_path) + const toml = tomlStringify(record) + + try { + await Deno.writeTextFile(path, `+++\n${toml}+++\n`) + return true + } catch { + return false + } +} + +function delay (ms: number): Promise { + return new Promise(resolve => setTimeout(resolve, ms)); +} + +export async function retryFetch (url: string, retries=3, msDelay=1000): Promise { + try { + const response = await fetch(url) + if (!response.ok) return false + const json = await response.json() + return json + } catch (err) { + if (retries > 0) { + console.warn(`Failed to fetch ${url}, retrying in ${msDelay}ms.`) + await delay(msDelay) + return retryFetch(url, retries - 1, msDelay) + } else { + console.error(`Fetching ${url} failed too often. Giving up.`) + return false + } + } +} diff --git a/build/_app/index-edfdf87b.css b/build/_app/index-edfdf87b.css deleted file mode 100644 index 48f6c0d0..00000000 --- a/build/_app/index-edfdf87b.css +++ /dev/null @@ -1,4 +0,0 @@ -#main-footer.svelte-12uobvg{border-top:1px solid lightgrey;margin:3rem auto 0;font-size:85%}/*# sourceMappingURL=MainFooter.css.map */ -#info-toggle.svelte-nu5fg0.svelte-nu5fg0.svelte-nu5fg0{display:none}#info-toggle.svelte-nu5fg0~label.svelte-nu5fg0.svelte-nu5fg0{text-align:center}#info-toggle.svelte-nu5fg0~label.svelte-nu5fg0>.info-close.svelte-nu5fg0{display:none}#info-toggle.svelte-nu5fg0:checked~label.svelte-nu5fg0>.info-close.svelte-nu5fg0{display:inline}#info-toggle.svelte-nu5fg0:checked~label.svelte-nu5fg0>.info-text.svelte-nu5fg0{display:none}#info-popup.svelte-nu5fg0.svelte-nu5fg0.svelte-nu5fg0{display:none;position:absolute;top:2.5em;left:-1em;width:calc(720px - 2em - 6px);max-width:calc(100vw - 2em - 6px);padding:0 1em;background:#FFF;border:3px solid #DDD}#info-toggle.svelte-nu5fg0:checked~#info-popup.svelte-nu5fg0.svelte-nu5fg0{display:block}@media(prefers-color-scheme: dark){#info-popup.svelte-nu5fg0.svelte-nu5fg0.svelte-nu5fg0{background:#000;border-color:#444}}/*# sourceMappingURL=InfoPopup.css.map */ -.entry.svelte-2ysuep.svelte-2ysuep{display:flex;flex-flow:row nowrap;justify-content:space-between;padding:.5em .5em 0;height:2em;line-height:2em;font-size:1.3em}.entry.svelte-2ysuep>.url.svelte-2ysuep{flex:1 1 auto;width:60%;overflow:hidden;text-overflow:ellipsis}.entry.svelte-2ysuep>.size.svelte-2ysuep,.entry.svelte-2ysuep>.ratio.svelte-2ysuep{flex:0 0 auto;width:20%;text-align:right}.entry-size-bar.svelte-2ysuep.svelte-2ysuep,.entry-ratio-bar.svelte-2ysuep.svelte-2ysuep{height:0;margin-bottom:2px;border-bottom:2px solid}.entry-size-bar.highlighted.svelte-2ysuep.svelte-2ysuep,.entry-ratio-bar.highlighted.svelte-2ysuep.svelte-2ysuep{border-bottom-width:4px}.entry-size-bar.svelte-2ysuep.svelte-2ysuep{border-bottom-color:#E44;width:calc(var(--size)/250 * 100%)}.entry-ratio-bar.svelte-2ysuep.svelte-2ysuep{border-bottom-color:#56B;width:var(--ratio)}/*# sourceMappingURL=PageList.css.map */ -/*# sourceMappingURL=index-edfdf87b.css.map */ \ No newline at end of file diff --git a/build/_app/index-edfdf87b.css.map b/build/_app/index-edfdf87b.css.map deleted file mode 100644 index 808cd27e..00000000 --- a/build/_app/index-edfdf87b.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index-edfdf87b.css","sources":["","",""],"sourcesContent":["","",""],"names":[],"mappings":";;"} \ No newline at end of file diff --git a/build/_app/inject_styles-cd877ae9.js b/build/_app/inject_styles-cd877ae9.js deleted file mode 100644 index f27c8cea..00000000 --- a/build/_app/inject_styles-cd877ae9.js +++ /dev/null @@ -1,2 +0,0 @@ -function e(e){return Promise.all(e.map((function(e){return new Promise((function(t,n){var r=new URL(e,import.meta.url),l=document.baseURI;if(!l){var o=document.getElementsByTagName("base");l=o.length?o[0].href:document.URL}var u=(""+r).substring(l.length),a=document.querySelector('link[rel=stylesheet][href="'+u+'"]')||document.querySelector('link[rel=stylesheet][href="'+r+'"]');a||((a=document.createElement("link")).rel="stylesheet",a.href=r,document.head.appendChild(a)),a.sheet?t():(a.onload=function(){return t()},a.onerror=n)}))})))}export default e; -//# sourceMappingURL=inject_styles-cd877ae9.js.map diff --git a/build/_app/inject_styles-cd877ae9.js.map b/build/_app/inject_styles-cd877ae9.js.map deleted file mode 100644 index e688091a..00000000 --- a/build/_app/inject_styles-cd877ae9.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"inject_styles-cd877ae9.js","sources":["../../../../inject_styles.js"],"sourcesContent":["export default function(files) {\n\treturn Promise.all(files.map(function(file) { return new Promise(function(fulfil, reject) {\n\t\tvar href = new URL(file, import.meta.url);\n\t\tvar baseURI = document.baseURI;\n\t\tif (!baseURI) {\n\t\t\tvar baseTags = document.getElementsByTagName('base');\n\t\t\tbaseURI = baseTags.length ? baseTags[0].href : document.URL;\n\t\t}\n\t\tvar relative = ('' + href).substring(baseURI.length);\n\t\tvar link = document.querySelector('link[rel=stylesheet][href=\"' + relative + '\"]')\n\t\t\t|| document.querySelector('link[rel=stylesheet][href=\"' + href + '\"]');\n\t\tif (!link) {\n\t\t\tlink = document.createElement('link');\n\t\t\tlink.rel = 'stylesheet';\n\t\t\tlink.href = href;\n\t\t\tdocument.head.appendChild(link);\n\t\t}\n\t\tif (link.sheet) {\n\t\t\tfulfil();\n\t\t} else {\n\t\t\tlink.onload = function() { return fulfil() };\n\t\t\tlink.onerror = reject;\n\t\t}\n\t})}));\n};"],"names":["files","Promise","all","map","file","fulfil","reject","href","URL","import","meta","url","baseURI","document","baseTags","getElementsByTagName","length","relative","substring","link","querySelector","createElement","rel","head","appendChild","sheet","onload","onerror"],"mappings":"AAAe,WAASA,GACvB,OAAOC,QAAQC,IAAIF,EAAMG,KAAI,SAASC,GAAQ,OAAO,IAAIH,SAAQ,SAASI,EAAQC,GACjF,IAAIC,EAAO,IAAIC,IAAIJ,EAAMK,OAAOC,KAAKC,KACjCC,EAAUC,SAASD,QACvB,IAAKA,EAAS,CACb,IAAIE,EAAWD,SAASE,qBAAqB,QAC7CH,EAAUE,EAASE,OAASF,EAAS,GAAGP,KAAOM,SAASL,IAEzD,IAAIS,GAAY,GAAKV,GAAMW,UAAUN,EAAQI,QACzCG,EAAON,SAASO,cAAc,8BAAgCH,EAAW,OACzEJ,SAASO,cAAc,8BAAgCb,EAAO,MAC7DY,KACJA,EAAON,SAASQ,cAAc,SACzBC,IAAM,aACXH,EAAKZ,KAAOA,EACZM,SAASU,KAAKC,YAAYL,IAEvBA,EAAKM,MACRpB,KAEAc,EAAKO,OAAS,WAAa,OAAOrB,KAClCc,EAAKQ,QAAUrB"} \ No newline at end of file diff --git a/build/index.html b/build/index.html deleted file mode 100644 index e5f61914..00000000 --- a/build/index.html +++ /dev/null @@ -1,1598 +0,0 @@ - - - - - - - The 250kb Club - - - - - - - - - - - - - - - - - -

The 250kb Club

-

The Web Is Doom -

-

Lets do something about it!

-

The 250kb Club is a collection of web pages that focus on - performance, efficiency and accessibility. -

-

Websites in this list must not exceed 256kb compressed size!

-

Yes, compressed size. It makes much more sense because it allows - for a lot of text to be transferred without having a big impact on the - total size, while the impact of media is basically unaffected. -

-

If your pages exceeds 250kb, you might consider - 512kB.club or - 1MB.club. -

-

You can suggest a web page for this collection - via Sourcehut - or - via Github. - The site will be reviewed and, if applicable, added to the list below. - Pages are checked again every week. -

- -
- -
  1. lil.gay - 0kb - 100%
    -
    -
    -
  2. zn80.net - 0kb - 100%
    -
    -
    -
  3. jrballesteros05.codeberg.page - 1kb - 100%
    -
    -
    -
  4. pbanks.net - 1kb - 100%
    -
    -
    -
  5. salejandro.me - 1kb - 52%
    -
    -
    -
  6. myipaddress.ru - 1kb - 100%
    -
    -
    -
  7. cosmo.red - 1kb - 100%
    -
    -
    -
  8. lo.hn - 1kb - 100%
    -
    -
    -
  9. crackle.dev - 1kb - 51%
    -
    -
    -
  10. սոնա.հայ - 1kb - 100%
    -
    -
    -
  11. norayr.am - 1kb - 100%
    -
    -
    -
  12. hmbrg.xyz - 1kb - 100%
    -
    -
    -
  13. t0.vc - 1kb - 100%
    -
    -
    -
  14. sjmulder.nl - 2kb - 100%
    -
    -
    -
  15. dotfilehub.com - 2kb - 43%
    -
    -
    -
  16. kunalmarwaha.com - 2kb - 49%
    -
    -
    -
  17. oxenburypartners.com - 2kb - 100%
    -
    -
    -
  18. motherfuckingwebsite.com - 2kb - 100%
    -
    -
    -
  19. fraction.io - 2kb - 67%
    -
    -
    -
  20. jakob.kaivo.net - 2kb - 61%
    -
    -
    -
  21. gerikson.com - 2kb - 100%
    -
    -
    -
  22. motherfuckingwebsite.com - 2kb - 100%
    -
    -
    -
  23. bettermotherfuckingwebsite.com - 2kb - 93%
    -
    -
    -
  24. tom.kobalt.dev/map - 2kb - 100%
    -
    -
    -
  25. fabioartuso.com - 2kb - 100%
    -
    -
    -
  26. natestemen.xyz - 2kb - 50%
    -
    -
    -
  27. aajkakavi.in - 2kb - 81%
    -
    -
    -
  28. temp.sh - 2kb - 100%
    -
    -
    -
  29. MinWiz.com - 2kb - 100%
    -
    -
    -
  30. ybad.name - 2kb - 100%
    -
    -
    -
  31. parts.horse/parts - 2kb - 51%
    -
    -
    -
  32. m-chrzan.xyz - 2kb - 43%
    -
    -
    -
  33. danielcuttridge.com - 2kb - 100%
    -
    -
    -
  34. gtrr.artemislena.eu - 2kb - 79%
    -
    -
    -
  35. sizi.ng - 2kb - 100%
    -
    -
    -
  36. webzine.puffy.cafe - 2kb - 100%
    -
    -
    -
  37. gauravdafauti.in - 2kb - 100%
    -
    -
    -
  38. si3t.ch - 2kb - 100%
    -
    -
    -
  39. ccsleep.net - 2kb - 58%
    -
    -
    -
  40. text.npr.org - 3kb - 100%
    -
    -
    -
  41. seirdy.one - 3kb - 100%
    -
    -
    -
  42. karolis.koncevicius.lt - 3kb - 100%
    -
    -
    -
  43. bestmotherfucking.website - 3kb - 100%
    -
    -
    -
  44. funnylookinhat.com - 3kb - 76%
    -
    -
    -
  45. www.groovestomp.com - 3kb - 36%
    -
    -
    -
  46. fossdd.codeberg.page - 3kb - 39%
    -
    -
    -
  47. slackjeff.com.br - 3kb - 84%
    -
    -
    -
  48. 0xedward.io - 3kb - 100%
    -
    -
    -
  49. phate6660.github.io - 3kb - 100%
    -
    -
    -
  50. xslendi.xyz - 3kb - 77%
    -
    -
    -
  51. kidl.at - 3kb - 100%
    -
    -
    -
  52. xnaas.info - 3kb - 47%
    -
    -
    -
  53. thejollyteapot.com - 3kb - 72%
    -
    -
    -
  54. boehs.org - 3kb - 45%
    -
    -
    -
  55. bvnf.space - 3kb - 78%
    -
    -
    -
  56. minid.net - 4kb - 100%
    -
    -
    -
  57. jlelse.blog - 4kb - 66%
    -
    -
    -
  58. benharr.is - 4kb - 100%
    -
    -
    -
  59. 0xff.nu - 4kb - 100%
    -
    -
    -
  60. ohio.araw.xyz - 4kb - 39%
    -
    -
    -
  61. nytpu.com - 4kb - 57%
    -
    -
    -
  62. kishvanchee.com - 4kb - 35%
    -
    -
    -
  63. luana.cc - 4kb - 64%
    -
    -
    -
  64. artemislena.eu - 4kb - 78%
    -
    -
    -
  65. nihar.page - 4kb - 78%
    -
    -
    -
  66. danluu.com - 5kb - 100%
    -
    -
    -
  67. lawzava.com - 5kb - 48%
    -
    -
    -
  68. susam.in - 5kb - 48%
    -
    -
    -
  69. lukeramsden.com - 5kb - 100%
    -
    -
    -
  70. nest.jakl.one - 5kb - 43%
    -
    -
    -
  71. www.minimumviable.it - 5kb - 57%
    -
    -
    -
  72. majiehong.com - 5kb - 29%
    -
    -
    -
  73. inatri.com - 5kb - 81%
    -
    -
    -
  74. consoom.soy - 5kb - 74%
    -
    -
    -
  75. na20a.neocities.org - 5kb - 79%
    -
    -
    -
  76. blmayer.dev - 5kb - 100%
    -
    -
    -
  77. satchlj.us - 5kb - 100%
    -
    -
    -
  78. mataroa.blog - 6kb - 49%
    -
    -
    -
  79. www.verybad.link - 6kb - 47%
    -
    -
    -
  80. xigoi.neocities.org - 6kb - 58%
    -
    -
    -
  81. kj7nzl.net - 6kb - 100%
    -
    -
    -
  82. rc-lite.xyz - 6kb - 41%
    -
    -
    -
  83. pools.xmr.wiki - 6kb - 47%
    -
    -
    -
  84. bridge.simplefin.org - 7kb - 50%
    -
    -
    -
  85. john-doe.neocities.org - 7kb - 62%
    -
    -
    -
  86. midnight.pub - 7kb - 89%
    -
    -
    -
  87. arfer.net - 7kb - 14%
    -
    -
    -
  88. 10kbclub.com - 7kb - 100%
    -
    -
    -
  89. box.matto.nl - 7kb - 60%
    -
    -
    -
  90. thelion.website - 7kb - 50%
    -
    -
    -
  91. timog.org - 7kb - 79%
    -
    -
    -
  92. manpages.bsd.lv - 8kb - 84%
    -
    -
    -
  93. humaidq.ae - 8kb - 89%
    -
    -
    -
  94. zupzup.org - 8kb - 100%
    -
    -
    -
  95. fanael.github.io - 8kb - 61%
    -
    -
    -
  96. werc.cat-v.org - 8kb - 90%
    -
    -
    -
  97. bcachefs.org - 8kb - 40%
    -
    -
    -
  98. cnx.srht.site - 8kb - 41%
    -
    -
    -
  99. manuelmoreale.com - 8kb - 78%
    -
    -
    -
  100. oh.mg - 9kb - 45%
    -
    -
    -
  101. codevoid.de - 9kb - 92%
    -
    -
    -
  102. oscarforner.com - 9kb - 78%
    -
    -
    -
  103. www.paritybit.ca - 9kb - 72%
    -
    -
    -
  104. lecaro.me/minimage - 10kb - 18%
    -
    -
    -
  105. unix.lgbt - 10kb - 94%
    -
    -
    -
  106. webperf.xyz - 10kb - 41%
    -
    -
    -
  107. bernsteinbear.com - 10kb - 73%
    -
    -
    -
  108. phreedom.club - 10kb - 100%
    -
    -
    -
  109. cat-v.org - 10kb - 66%
    -
    -
    -
  110. blog.bshah.in - 10kb - 75%
    -
    -
    -
  111. decentnet.github.io - 10kb - 77%
    -
    -
    -
  112. codingotaku.com - 10kb - 77%
    -
    -
    -
  113. lectupedia.com/en - 10kb - 75%
    -
    -
    -
  114. plasmasturm.org - 10kb - 65%
    -
    -
    -
  115. free.mg - 10kb - 27%
    -
    -
    -
  116. lambdapapers.com - 11kb - 62%
    -
    -
    -
  117. 512kb.club - 11kb - 79%
    -
    -
    -
  118. huyngo.envs.net - 11kb - 70%
    -
    -
    -
  119. dusanmitrovic.xyz - 11kb - 41%
    -
    -
    -
  120. news.ycombinator.com - 12kb - 63%
    -
    -
    -
  121. featyre.xyz - 12kb - 89%
    -
    -
    -
  122. 1mb.club - 13kb - 96%
    -
    -
    -
  123. emersion.fr - 13kb - 14%
    -
    -
    -
  124. tryhexadecimal.com - 13kb - 53%
    -
    -
    -
  125. blog.fefe.de - 14kb - 100%
    -
    -
    -
  126. xpil.eu - 15kb - 54%
    -
    -
    -
  127. notionbackups.com - 15kb - 55%
    -
    -
    -
  128. xmdr.nl - 15kb - 15%
    -
    -
    -
  129. blog.fossterer.com - 16kb - 9%
    -
    -
    -
  130. willcodefor.beer - 16kb - 35%
    -
    -
    -
  131. antranigv.am - 16kb - 100%
    -
    -
    -
  132. daniel-siepmann.de - 16kb - 74%
    -
    -
    -
  133. mineralexistence.com/home.html - 17kb - 56%
    -
    -
    -
  134. page.mi.fu-berlin.de/jhermann - 17kb - 100%
    -
    -
    -
  135. processwire.dev - 18kb - 46%
    -
    -
    -
  136. yorickpeterse.com - 18kb - 92%
    -
    -
    -
  137. timotijhof.net - 18kb - 74%
    -
    -
    -
  138. unixsheikh.com - 19kb - 94%
    -
    -
    -
  139. flatpackapps.com - 19kb - 81%
    -
    -
    -
  140. jvanelian.dev - 19kb - 14%
    -
    -
    -
  141. thomas.me - 19kb - 81%
    -
    -
    -
  142. flatpackapps.com - 19kb - 81%
    -
    -
    -
  143. guts.plus - 20kb - 20%
    -
    -
    -
  144. miku86.com - 20kb - 81%
    -
    -
    -
  145. concise-encoding.org - 21kb - 90%
    -
    -
    -
  146. chad.hirsch.host - 21kb - 70%
    -
    -
    -
  147. úl.de - 21kb - 82%
    -
    -
    -
  148. ulpaulpa.de - 21kb - 82%
    -
    -
    -
  149. noulin.net/blog - 21kb - 60%
    -
    -
    -
  150. paulwilde.uk - 22kb - 76%
    -
    -
    -
  151. lobste.rs - 23kb - 41%
    -
    -
    -
  152. armaanb.net - 23kb - 100%
    -
    -
    -
  153. fullstackpython.com - 24kb - 100%
    -
    -
    -
  154. matthewstrom.com - 24kb - 8%
    -
    -
    -
  155. koehr.tech - 25kb - 20%
    -
    -
    -
  156. lighthouse16.com - 25kb - 82%
    -
    -
    -
  157. jason.nabein.me - 25kb - 79%
    -
    -
    -
  158. remoteroast.club - 26kb - 12%
    -
    -
    -
  159. www.dustri.org - 27kb - 5%
    -
    -
    -
  160. n.2p5.xyz - 28kb - 7%
    -
    -
    -
  161. alexschroeder.ch - 28kb - 85%
    -
    -
    -
  162. sr.ht - 29kb - 12%
    -
    -
    -
  163. kerkour.fr - 29kb - 100%
    -
    -
    -
  164. www.slowernews.com - 29kb - 84%
    -
    -
    -
  165. drewdevault.com - 29kb - 96%
    -
    -
    -
  166. gallant.dev - 30kb - 39%
    -
    -
    -
  167. gabnotes.org - 30kb - 81%
    -
    -
    -
  168. gerikson.com/hnlo - 32kb - 93%
    -
    -
    -
  169. www.usecue.com - 33kb - 21%
    -
    -
    -
  170. freesolitaire.win - 33kb - 92%
    -
    -
    -
  171. usrme.xyz - 33kb - 3%
    -
    -
    -
  172. 250kb.club - 34kb - 30%
    -
    -
    -
  173. qubyte.codes - 34kb - 91%
    -
    -
    -
  174. foxwells.garden - 37kb - 27%
    -
    -
    -
  175. buchh.org - 39kb - 100%
    -
    -
    -
  176. koehr.in - 41kb - 52%
    -
    -
    -
  177. worldti.me - 41kb - 7%
    -
    -
    -
  178. binyam.in - 41kb - 23%
    -
    -
    -
  179. playerone.kevincox.ca - 42kb - 6%
    -
    -
    -
  180. richj.co - 42kb - 5%
    -
    -
    -
  181. berkshirehathaway.com - 43kb - 18%
    -
    -
    -
  182. www.bryanbraun.com/connect-four - 45kb - 6%
    -
    -
    -
  183. subreply.com - 46kb - 10%
    -
    -
    -
  184. www.rowlingindex.org - 48kb - 26%
    -
    -
    -
  185. www.unindented.org - 49kb - 11%
    -
    -
    -
  186. lukesempire.com - 49kb - 39%
    -
    -
    -
  187. nomasters.io - 50kb - 3%
    -
    -
    -
  188. linuxguideandhints.com - 51kb - 45%
    -
    -
    -
  189. martin.baillie.id - 53kb - 7%
    -
    -
    -
  190. coolmathgames.tech - 54kb - 66%
    -
    -
    -
  191. k0r.in - 56kb - 65%
    -
    -
    -
  192. leonardschuetz.ch - 56kb - 17%
    -
    -
    -
  193. ttntm.me - 57kb - 52%
    -
    -
    -
  194. zakr.es - 58kb - 5%
    -
    -
    -
  195. davidkuehnert.de - 58kb - 22%
    -
    -
    -
  196. secluded.site - 59kb - 8%
    -
    -
    -
  197. nixnet.email - 60kb - 18%
    -
    -
    -
  198. uglyduck.ca - 61kb - 97%
    -
    -
    -
  199. lucianmarin.com - 62kb - 39%
    -
    -
    -
  200. notes.eatonphil.com - 62kb - 12%
    -
    -
    -
  201. christine.website - 63kb - 66%
    -
    -
    -
  202. motz-berlin.de - 66kb - 92%
    -
    -
    -
  203. jeremysarber.com - 68kb - 85%
    -
    -
    -
  204. kayafirat.com - 69kb - 29%
    -
    -
    -
  205. ylukem.com - 70kb - 3%
    -
    -
    -
  206. www.bryanbraun.com - 70kb - 15%
    -
    -
    -
  207. lite.cnn.com - 71kb - 11%
    -
    -
    -
  208. ultimateelectronicsbook.com - 71kb - 65%
    -
    -
    -
  209. www.sensorstation.co - 78kb - 53%
    -
    -
    -
  210. jaime.gomezobregon.com - 81kb - 14%
    -
    -
    -
  211. sourcehut.org - 81kb - 97%
    -
    -
    -
  212. salixos.org - 81kb - 95%
    -
    -
    -
  213. cycloneblaze.net - 82kb - 5%
    -
    -
    -
  214. www.neelc.org/about - 83kb - 9%
    -
    -
    -
  215. gennext.net.au - 84kb - 38%
    -
    -
    -
  216. monokai.nl - 88kb - 6%
    -
    -
    -
  217. www.speedshop.co - 88kb - 84%
    -
    -
    -
  218. blakehawkins.com/blog - 88kb - 4%
    -
    -
    -
  219. felt.dev - 91kb - 48%
    -
    -
    -
  220. rya.nc - 93kb - 33%
    -
    -
    -
  221. dpldocs.info/this-week-in-d/Blog.html - 95kb - 71%
    -
    -
    -
  222. volleyball-baustetten.de - 97kb - 55%
    -
    -
    -
  223. utsuho.rocks - 98kb - 71%
    -
    -
    -
  224. pr0.uk - 98kb - 18%
    -
    -
    -
  225. sexiarz.pl - 102kb - 25%
    -
    -
    -
  226. www.danielwasserlaufquicklinks.com - 104kb - 100%
    -
    -
    -
  227. getindiekit.com - 105kb - 77%
    -
    -
    -
  228. my-flow.com - 106kb - 36%
    -
    -
    -
  229. quitsocialmedia.club - 106kb - 3%
    -
    -
    -
  230. allien.work - 107kb - 7%
    -
    -
    -
  231. dyremyhr.no - 107kb - 96%
    -
    -
    -
  232. www.tarsnap.com - 109kb - 53%
    -
    -
    -
  233. fmarier.org - 109kb - 99%
    -
    -
    -
  234. iain.in - 111kb - 1%
    -
    -
    -
  235. thebestmotherfucking.website - 112kb - 33%
    -
    -
    -
  236. mikegerwitz.com - 115kb - 49%
    -
    -
    -
  237. swl.am - 115kb - 3%
    -
    -
    -
  238. suckless.org - 116kb - 99%
    -
    -
    -
  239. www.zinzy.website - 116kb - 25%
    -
    -
    -
  240. porkbrain.com - 120kb - 98%
    -
    -
    -
  241. weboas.is - 120kb - 17%
    -
    -
    -
  242. www.beh.uk - 122kb - 16%
    -
    -
    -
  243. beh.uk - 122kb - 16%
    -
    -
    -
  244. kevq.uk - 126kb - 9%
    -
    -
    -
  245. danielsada.tech - 127kb - 46%
    -
    -
    -
  246. sparkbox.github.io/bouncy-ball - 127kb - 9%
    -
    -
    -
  247. www.oskarlindgren.se - 127kb - 40%
    -
    -
    -
  248. s1.flatpackapps.com/app.php?appId=22 - 127kb - 26%
    -
    -
    -
  249. ut2.weba.ru - 129kb - 98%
    -
    -
    -
  250. jeffhuang.com - 130kb - 94%
    -
    -
    -
  251. bduck.xyz - 135kb - 50%
    -
    -
    -
  252. codelayer.de - 136kb - 73%
    -
    -
    -
  253. wilde-it.co.uk - 136kb - 81%
    -
    -
    -
  254. www.tuhs.org - 139kb - 100%
    -
    -
    -
  255. ache.one - 142kb - 43%
    -
    -
    -
  256. frontaid.io - 143kb - 35%
    -
    -
    -
  257. codingbobby.xyz - 149kb - 10%
    -
    -
    -
  258. nicetranslator.com - 151kb - 1%
    -
    -
    -
  259. sparkbox.github.io/logo-experiments - 151kb - 99%
    -
    -
    -
  260. editions-du-26-octobre.com - 152kb - 10%
    -
    -
    -
  261. editions-du-26-octobre.com - 152kb - 10%
    -
    -
    -
  262. blog.circuitsofimagination.com - 153kb - 4%
    -
    -
    -
  263. xubuntu.org - 154kb - 21%
    -
    -
    -
  264. bnolet.me - 154kb - 3%
    -
    -
    -
  265. www.openbsd.org - 155kb - 97%
    -
    -
    -
  266. www.powerpointkaraoke.com - 157kb - 10%
    -
    -
    -
  267. www.sonniesedge.net - 157kb - 97%
    -
    -
    -
  268. ianmobbs.com - 160kb - 1%
    -
    -
    -
  269. matthall.codes - 162kb - 3%
    -
    -
    -
  270. zakr.es/blog - 165kb - 63%
    -
    -
    -
  271. shazow.net - 167kb - 8%
    -
    -
    -
  272. ut99.weba.ru - 172kb - 98%
    -
    -
    -
  273. ihaque.org - 175kb - 2%
    -
    -
    -
  274. jmtd.net - 178kb - 20%
    -
    -
    -
  275. www.bryanbraun.com/after-dark-css - 181kb - 70%
    -
    -
    -
  276. jvelo.at - 183kb - 3%
    -
    -
    -
  277. www.bryanbraun.com/anchorjs - 189kb - 54%
    -
    -
    -
  278. chrisportela.com - 192kb - 34%
    -
    -
    -
  279. pgjones.dev - 194kb - 1%
    -
    -
    -
  280. wondroushealing.com - 201kb - 70%
    -
    -
    -
  281. www.migadu.com - 210kb - 95%
    -
    -
    -
  282. searchbot.app - 212kb - 2%
    -
    -
    -
  283. cronokirby.com - 221kb - 4%
    -
    -
    -
  284. benovermyer.com - 225kb - 22%
    -
    -
    -
  285. xiu.io - 226kb - 4%
    -
    -
    -
  286. customformats.com - 246kb - 2%
    -
    -
    -
  287. -
- - - - - - diff --git a/compile-list.mjs b/compile-list.mjs deleted file mode 100644 index 0e8ca0f2..00000000 --- a/compile-list.mjs +++ /dev/null @@ -1,82 +0,0 @@ -import fs from 'fs' -import chalk from 'chalk' -import phantomas from 'phantomas' -import pageData from './src/components/pages.mjs' - -const INPUT_FILE = './pages.txt' -const OUTPUT_FILE = './src/components/pages.mjs' -const RECHECK_THRESHOLD = 60*60*24*7*1000 // recheck pages older than 1 week -const REJECT_THRESHOLD = 256000 - -const LOGGING_PREFIXES = { - info: `[${chalk.bold.white('II')}]`, - warn: `[${chalk.bold.yellow('WW')}]`, - error: `[${chalk.bold.red('EE')}]`, - debug: `[${chalk.bold.white('DD')}]`, -} - -function log (level='info') { - const args = [...arguments].slice(1) - let prefix = LOGGING_PREFIXES[level] - console.log(prefix, ...args) -} -function info () { log('info', ...arguments) } -function warn () { log('warn', ...arguments) } -function error () { log('error', ...arguments) } -function debug () { log('debug', ...arguments) } - -function calcWeights (url, m) { - const extraWeight = m.cssSize + m.jsSize + m.webfontSize + m.otherSize - const contentWeight = m.htmlSize + m.jsonSize + m.imageSize + m.base64Size + m.videoSize - - if (m.contentSize > REJECT_THRESHOLD) { - warn(url, 'oversized by', m.contentSize - REJECT_THRESHOLD) - } - - return { url, contentWeight, extraWeight, stamp: Date.now() } -} - -async function generateMetrics (urls) { - debug('Checking', urls) - const metricsList = [] - const keyedPageData = pageData.reduce((acc, page) => { - // stores url/stamp pairs to decide for recheck - acc[page.url] = page - return acc - }, {}) - const knownURLs = Object.keys(keyedPageData) - const now = Date.now() - - for (const url of urls) { - if (knownURLs.indexOf(url) >= 0) { - if (now - keyedPageData[url].stamp < RECHECK_THRESHOLD) { - debug('skipping known URL', url) - metricsList.push(keyedPageData[url]) // push old data to list - continue - } - } - try { - debug('fetching and analyzing', url) - const results = await phantomas(url) - const weights = calcWeights(url, results.getMetrics()) - metricsList.push(weights) // TODO: what to do with oversized pages? - } catch(err) { - error(`failed to analyze ${url}`, err) - } - } - - try { - // TODO: poor mans JSON to JS converter? - fs.writeFileSync(OUTPUT_FILE, 'export default ' + JSON.stringify(metricsList)) - } catch (err) { - error(`failed to write results to ${OUTPUT_FILE}`, err) - } -} - -try { - const rawString = fs.readFileSync(INPUT_FILE, 'utf8') - const urls = rawString.split('\n').filter(line => line.startsWith('http')) - generateMetrics(urls) -} catch (err) { - error(`failed to read page list from ${INPUT_FILE}`, err) -} diff --git a/config.toml b/config.toml new file mode 100644 index 00000000..bea02d0f --- /dev/null +++ b/config.toml @@ -0,0 +1,28 @@ +base_url = "https://250kb.club/" +title = "The 250kb Club" +description = "An exclusive membership for web pages presenting themselves in no more than 250kb." +default_language = "en" + +compile_sass = false +build_search_index = true +minify_html = true +generate_feed = true +feed_filename = "rss.xml" + +[markdown] +highlight_code = false +render_emoji = false +external_links_target_blank = true +external_links_no_follow = true +external_links_no_referrer = false +smart_punctuation = true + +[search] +include_title = true +include_description = false +include_path = false +include_content = true + +[extra] +author = "Norman Köhring" +author_homepage = "https://koehr.in" diff --git a/content/0xedward_io.md b/content/0xedward_io.md new file mode 100644 index 00000000..c1cd4af4 --- /dev/null +++ b/content/0xedward_io.md @@ -0,0 +1,11 @@ ++++ +title = "0xedward.io" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3235 + +[extra] +source = "https://0xedward.io/" +ratio = 88 +size = 3 ++++ diff --git a/content/0xff_nu.md b/content/0xff_nu.md new file mode 100644 index 00000000..1b275212 --- /dev/null +++ b/content/0xff_nu.md @@ -0,0 +1,11 @@ ++++ +title = "0xff.nu" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3848 + +[extra] +source = "https://0xff.nu/" +ratio = 71 +size = 4 ++++ diff --git a/content/10kbclub_com.md b/content/10kbclub_com.md new file mode 100644 index 00000000..c14b68b6 --- /dev/null +++ b/content/10kbclub_com.md @@ -0,0 +1,11 @@ ++++ +title = "10kbclub.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 7056 + +[extra] +source = "https://10kbclub.com" +ratio = 100 +size = 7 ++++ diff --git a/content/1mb_club.md b/content/1mb_club.md new file mode 100644 index 00000000..5ddccc5a --- /dev/null +++ b/content/1mb_club.md @@ -0,0 +1,11 @@ ++++ +title = "1mb.club" +date = "2022-03-22" +updated = "2022-03-22" +weight = 13547 + +[extra] +source = "https://1mb.club/" +ratio = 96 +size = 13 ++++ diff --git a/content/250kb_club.md b/content/250kb_club.md new file mode 100644 index 00000000..5600d81f --- /dev/null +++ b/content/250kb_club.md @@ -0,0 +1,11 @@ ++++ +title = "250kb.club" +date = "2022-03-22" +updated = "2022-03-22" +weight = 35677 + +[extra] +source = "https://250kb.club" +ratio = 29 +size = 35 ++++ diff --git a/content/512kb_club.md b/content/512kb_club.md new file mode 100644 index 00000000..9faf0326 --- /dev/null +++ b/content/512kb_club.md @@ -0,0 +1,11 @@ ++++ +title = "512kb.club" +date = "2022-03-22" +updated = "2022-03-22" +weight = 11651 + +[extra] +source = "https://512kb.club/" +ratio = 80 +size = 11 ++++ diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 00000000..aee0ecac --- /dev/null +++ b/content/_index.md @@ -0,0 +1,5 @@ ++++ +title = "koehr learned" +paginate_by = 100 +sort_by = "weight" ++++ diff --git a/content/ache_one.md b/content/ache_one.md new file mode 100644 index 00000000..7d71c971 --- /dev/null +++ b/content/ache_one.md @@ -0,0 +1,11 @@ ++++ +title = "ache.one" +date = "2022-03-22" +updated = "2022-03-22" +weight = 145041 + +[extra] +source = "https://ache.one/" +ratio = 4 +size = 142 ++++ diff --git a/content/alexanderobenauer_com.md b/content/alexanderobenauer_com.md new file mode 100644 index 00000000..1121e79f --- /dev/null +++ b/content/alexanderobenauer_com.md @@ -0,0 +1,11 @@ ++++ +title = "alexanderobenauer.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 98346 + +[extra] +source = "https://alexanderobenauer.com" +ratio = 8 +size = 96 ++++ diff --git a/content/alexschroeder_ch.md b/content/alexschroeder_ch.md new file mode 100644 index 00000000..3ffa40ed --- /dev/null +++ b/content/alexschroeder_ch.md @@ -0,0 +1,11 @@ ++++ +title = "alexschroeder.ch" +date = "2022-03-22" +updated = "2022-03-22" +weight = 33997 + +[extra] +source = "https://alexschroeder.ch/" +ratio = 87 +size = 33 ++++ diff --git a/content/allien_work.md b/content/allien_work.md new file mode 100644 index 00000000..f6d4f6f4 --- /dev/null +++ b/content/allien_work.md @@ -0,0 +1,11 @@ ++++ +title = "allien.work" +date = "2022-03-22" +updated = "2022-03-22" +weight = 110055 + +[extra] +source = "https://allien.work/" +ratio = 7 +size = 107 ++++ diff --git a/content/anabeatriz_dev.md b/content/anabeatriz_dev.md new file mode 100644 index 00000000..03eafba6 --- /dev/null +++ b/content/anabeatriz_dev.md @@ -0,0 +1,11 @@ ++++ +title = "anabeatriz.dev" +date = "2022-03-22" +updated = "2022-03-22" +weight = 75336 + +[extra] +source = "https://anabeatriz.dev/" +ratio = 1 +size = 74 ++++ diff --git a/content/antranigv_am.md b/content/antranigv_am.md new file mode 100644 index 00000000..7c8ae184 --- /dev/null +++ b/content/antranigv_am.md @@ -0,0 +1,11 @@ ++++ +title = "antranigv.am" +date = "2022-03-22" +updated = "2022-03-22" +weight = 16216 + +[extra] +source = "https://antranigv.am/" +ratio = 44 +size = 16 ++++ diff --git a/content/arfer_net.md b/content/arfer_net.md new file mode 100644 index 00000000..7c268f72 --- /dev/null +++ b/content/arfer_net.md @@ -0,0 +1,11 @@ ++++ +title = "arfer.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 7495 + +[extra] +source = "https://arfer.net/" +ratio = 14 +size = 7 ++++ diff --git a/content/armaanb_net.md b/content/armaanb_net.md new file mode 100644 index 00000000..1a9cc5eb --- /dev/null +++ b/content/armaanb_net.md @@ -0,0 +1,11 @@ ++++ +title = "armaanb.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 23493 + +[extra] +source = "https://armaanb.net/" +ratio = 9 +size = 23 ++++ diff --git a/content/artemislena_eu.md b/content/artemislena_eu.md new file mode 100644 index 00000000..8e49eeab --- /dev/null +++ b/content/artemislena_eu.md @@ -0,0 +1,11 @@ ++++ +title = "artemislena.eu" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4761 + +[extra] +source = "https://artemislena.eu/" +ratio = 80 +size = 5 ++++ diff --git a/content/bcachefs_org.md b/content/bcachefs_org.md new file mode 100644 index 00000000..78310e36 --- /dev/null +++ b/content/bcachefs_org.md @@ -0,0 +1,11 @@ ++++ +title = "bcachefs.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 8381 + +[extra] +source = "https://bcachefs.org/" +ratio = 40 +size = 8 ++++ diff --git a/content/bduck_xyz.md b/content/bduck_xyz.md new file mode 100644 index 00000000..29032d8a --- /dev/null +++ b/content/bduck_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "bduck.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 150549 + +[extra] +source = "https://bduck.xyz/" +ratio = 5 +size = 147 ++++ diff --git a/content/beh_uk.md b/content/beh_uk.md new file mode 100644 index 00000000..5807249a --- /dev/null +++ b/content/beh_uk.md @@ -0,0 +1,11 @@ ++++ +title = "beh.uk" +date = "2022-03-22" +updated = "2022-03-22" +weight = 68732 + +[extra] +source = "https://beh.uk/" +ratio = 8 +size = 67 ++++ diff --git a/content/benharr_is.md b/content/benharr_is.md new file mode 100644 index 00000000..7e648fa4 --- /dev/null +++ b/content/benharr_is.md @@ -0,0 +1,11 @@ ++++ +title = "benharr.is" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4192 + +[extra] +source = "https://benharr.is/" +ratio = 100 +size = 4 ++++ diff --git a/content/benovermyer_com.md b/content/benovermyer_com.md new file mode 100644 index 00000000..e7bd9456 --- /dev/null +++ b/content/benovermyer_com.md @@ -0,0 +1,11 @@ ++++ +title = "benovermyer.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 148616 + +[extra] +source = "https://benovermyer.com/" +ratio = 1 +size = 145 ++++ diff --git a/content/berkshirehathaway_com.md b/content/berkshirehathaway_com.md new file mode 100644 index 00000000..ea819176 --- /dev/null +++ b/content/berkshirehathaway_com.md @@ -0,0 +1,11 @@ ++++ +title = "berkshirehathaway.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 65468 + +[extra] +source = "https://berkshirehathaway.com" +ratio = 9 +size = 64 ++++ diff --git a/content/bernsteinbear_com.md b/content/bernsteinbear_com.md new file mode 100644 index 00000000..8aa8eb4e --- /dev/null +++ b/content/bernsteinbear_com.md @@ -0,0 +1,11 @@ ++++ +title = "bernsteinbear.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 31344 + +[extra] +source = "https://bernsteinbear.com/" +ratio = 10 +size = 31 ++++ diff --git a/content/bestmotherfucking_website.md b/content/bestmotherfucking_website.md new file mode 100644 index 00000000..246c4151 --- /dev/null +++ b/content/bestmotherfucking_website.md @@ -0,0 +1,11 @@ ++++ +title = "bestmotherfucking.website" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3395 + +[extra] +source = "https://bestmotherfucking.website/" +ratio = 100 +size = 3 ++++ diff --git a/content/bettermotherfuckingwebsite_com.md b/content/bettermotherfuckingwebsite_com.md new file mode 100644 index 00000000..4d1a1514 --- /dev/null +++ b/content/bettermotherfuckingwebsite_com.md @@ -0,0 +1,11 @@ ++++ +title = "bettermotherfuckingwebsite.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 23701 + +[extra] +source = "http://bettermotherfuckingwebsite.com/" +ratio = 10 +size = 23 ++++ diff --git a/content/binyam_in.md b/content/binyam_in.md new file mode 100644 index 00000000..2f4eebd2 --- /dev/null +++ b/content/binyam_in.md @@ -0,0 +1,11 @@ ++++ +title = "binyam.in" +date = "2022-03-22" +updated = "2022-03-22" +weight = 43489 + +[extra] +source = "https://binyam.in/" +ratio = 5 +size = 42 ++++ diff --git a/content/blakehawkins_com_blog.md b/content/blakehawkins_com_blog.md new file mode 100644 index 00000000..5cb57c92 --- /dev/null +++ b/content/blakehawkins_com_blog.md @@ -0,0 +1,11 @@ ++++ +title = "blakehawkins.com/blog" +date = "2022-03-22" +updated = "2022-03-22" +weight = 56806 + +[extra] +source = "https://blakehawkins.com/blog" +ratio = 6 +size = 55 ++++ diff --git a/content/blmayer_dev.md b/content/blmayer_dev.md new file mode 100644 index 00000000..965ac46e --- /dev/null +++ b/content/blmayer_dev.md @@ -0,0 +1,11 @@ ++++ +title = "blmayer.dev" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5667 + +[extra] +source = "https://blmayer.dev/" +ratio = 100 +size = 6 ++++ diff --git a/content/blog_bshah_in.md b/content/blog_bshah_in.md new file mode 100644 index 00000000..098e583c --- /dev/null +++ b/content/blog_bshah_in.md @@ -0,0 +1,11 @@ ++++ +title = "blog.bshah.in" +date = "2022-03-22" +updated = "2022-03-22" +weight = 10417 + +[extra] +source = "https://blog.bshah.in/" +ratio = 32 +size = 10 ++++ diff --git a/content/blog_circuitsofimagination_com.md b/content/blog_circuitsofimagination_com.md new file mode 100644 index 00000000..4a5d5235 --- /dev/null +++ b/content/blog_circuitsofimagination_com.md @@ -0,0 +1,11 @@ ++++ +title = "blog.circuitsofimagination.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 156892 + +[extra] +source = "https://blog.circuitsofimagination.com/" +ratio = 2 +size = 153 ++++ diff --git a/content/blog_fefe_de.md b/content/blog_fefe_de.md new file mode 100644 index 00000000..75e0edaa --- /dev/null +++ b/content/blog_fefe_de.md @@ -0,0 +1,11 @@ ++++ +title = "blog.fefe.de" +date = "2022-03-22" +updated = "2022-03-22" +weight = 7047 + +[extra] +source = "https://blog.fefe.de" +ratio = 100 +size = 7 ++++ diff --git a/content/blog_fossterer_com.md b/content/blog_fossterer_com.md new file mode 100644 index 00000000..b5a99472 --- /dev/null +++ b/content/blog_fossterer_com.md @@ -0,0 +1,11 @@ ++++ +title = "blog.fossterer.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 16034 + +[extra] +source = "https://blog.fossterer.com/" +ratio = 9 +size = 16 ++++ diff --git a/content/bnolet_me.md b/content/bnolet_me.md new file mode 100644 index 00000000..f70339e4 --- /dev/null +++ b/content/bnolet_me.md @@ -0,0 +1,11 @@ ++++ +title = "bnolet.me" +date = "2022-03-22" +updated = "2022-03-22" +weight = 157689 + +[extra] +source = "https://bnolet.me" +ratio = 3 +size = 154 ++++ diff --git a/content/boehs_org.md b/content/boehs_org.md new file mode 100644 index 00000000..1d13ef53 --- /dev/null +++ b/content/boehs_org.md @@ -0,0 +1,11 @@ ++++ +title = "boehs.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 80644 + +[extra] +source = "https://boehs.org/" +ratio = 2 +size = 79 ++++ diff --git a/content/box_matto_nl.md b/content/box_matto_nl.md new file mode 100644 index 00000000..8aca2502 --- /dev/null +++ b/content/box_matto_nl.md @@ -0,0 +1,11 @@ ++++ +title = "box.matto.nl" +date = "2022-03-22" +updated = "2022-03-22" +weight = 6945 + +[extra] +source = "https://box.matto.nl" +ratio = 60 +size = 7 ++++ diff --git a/content/bridge_simplefin_org.md b/content/bridge_simplefin_org.md new file mode 100644 index 00000000..933a6f36 --- /dev/null +++ b/content/bridge_simplefin_org.md @@ -0,0 +1,11 @@ ++++ +title = "bridge.simplefin.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 7677 + +[extra] +source = "https://bridge.simplefin.org" +ratio = 15 +size = 7 ++++ diff --git a/content/buchh_org.md b/content/buchh_org.md new file mode 100644 index 00000000..46ac8ca2 --- /dev/null +++ b/content/buchh_org.md @@ -0,0 +1,11 @@ ++++ +title = "buchh.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 40043 + +[extra] +source = "https://buchh.org/" +ratio = 5 +size = 39 ++++ diff --git a/content/bvnf_space.md b/content/bvnf_space.md new file mode 100644 index 00000000..20cba042 --- /dev/null +++ b/content/bvnf_space.md @@ -0,0 +1,11 @@ ++++ +title = "bvnf.space" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3234 + +[extra] +source = "https://bvnf.space/" +ratio = 78 +size = 3 ++++ diff --git a/content/cat-v_org.md b/content/cat-v_org.md new file mode 100644 index 00000000..d5f51cbe --- /dev/null +++ b/content/cat-v_org.md @@ -0,0 +1,11 @@ ++++ +title = "cat-v.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 10115 + +[extra] +source = "http://cat-v.org/" +ratio = 66 +size = 10 ++++ diff --git a/content/ccsleep_net.md b/content/ccsleep_net.md new file mode 100644 index 00000000..9224407c --- /dev/null +++ b/content/ccsleep_net.md @@ -0,0 +1,11 @@ ++++ +title = "ccsleep.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2564 + +[extra] +source = "https://ccsleep.net/" +ratio = 58 +size = 3 ++++ diff --git a/content/chad_hirsch_host.md b/content/chad_hirsch_host.md new file mode 100644 index 00000000..cf3e8674 --- /dev/null +++ b/content/chad_hirsch_host.md @@ -0,0 +1,11 @@ ++++ +title = "chad.hirsch.host" +date = "2022-03-22" +updated = "2022-03-22" +weight = 26701 + +[extra] +source = "https://chad.hirsch.host" +ratio = 26 +size = 26 ++++ diff --git a/content/chrisportela_com.md b/content/chrisportela_com.md new file mode 100644 index 00000000..06acad01 --- /dev/null +++ b/content/chrisportela_com.md @@ -0,0 +1,11 @@ ++++ +title = "chrisportela.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 197441 + +[extra] +source = "https://chrisportela.com" +ratio = 1 +size = 193 ++++ diff --git a/content/christine_website.md b/content/christine_website.md new file mode 100644 index 00000000..9d26b733 --- /dev/null +++ b/content/christine_website.md @@ -0,0 +1,11 @@ ++++ +title = "christine.website" +date = "2022-03-22" +updated = "2022-03-22" +weight = 43476 + +[extra] +source = "https://christine.website/" +ratio = 7 +size = 42 ++++ diff --git a/content/cnx_srht_site.md b/content/cnx_srht_site.md new file mode 100644 index 00000000..7cf9955c --- /dev/null +++ b/content/cnx_srht_site.md @@ -0,0 +1,11 @@ ++++ +title = "cnx.srht.site" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3398 + +[extra] +source = "https://cnx.srht.site/" +ratio = 48 +size = 3 ++++ diff --git a/content/codelayer_de.md b/content/codelayer_de.md new file mode 100644 index 00000000..1b830f7f --- /dev/null +++ b/content/codelayer_de.md @@ -0,0 +1,11 @@ ++++ +title = "codelayer.de" +date = "2022-03-22" +updated = "2022-03-22" +weight = 139124 + +[extra] +source = "https://codelayer.de" +ratio = 5 +size = 136 ++++ diff --git a/content/codevoid_de.md b/content/codevoid_de.md new file mode 100644 index 00000000..9ed24708 --- /dev/null +++ b/content/codevoid_de.md @@ -0,0 +1,11 @@ ++++ +title = "codevoid.de" +date = "2022-03-22" +updated = "2022-03-22" +weight = 9427 + +[extra] +source = "https://codevoid.de/" +ratio = 92 +size = 9 ++++ diff --git a/content/codingbobby_xyz.md b/content/codingbobby_xyz.md new file mode 100644 index 00000000..e41c0290 --- /dev/null +++ b/content/codingbobby_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "codingbobby.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 152899 + +[extra] +source = "https://codingbobby.xyz/" +ratio = 2 +size = 149 ++++ diff --git a/content/codingotaku_com.md b/content/codingotaku_com.md new file mode 100644 index 00000000..e4cf86a8 --- /dev/null +++ b/content/codingotaku_com.md @@ -0,0 +1,11 @@ ++++ +title = "codingotaku.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 9989 + +[extra] +source = "https://codingotaku.com/" +ratio = 37 +size = 10 ++++ diff --git a/content/concise-encoding_org.md b/content/concise-encoding_org.md new file mode 100644 index 00000000..93f37a6b --- /dev/null +++ b/content/concise-encoding_org.md @@ -0,0 +1,11 @@ ++++ +title = "concise-encoding.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 20755 + +[extra] +source = "https://concise-encoding.org/" +ratio = 18 +size = 20 ++++ diff --git a/content/consoom_soy.md b/content/consoom_soy.md new file mode 100644 index 00000000..70ca54c4 --- /dev/null +++ b/content/consoom_soy.md @@ -0,0 +1,11 @@ ++++ +title = "consoom.soy" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5257 + +[extra] +source = "https://consoom.soy/" +ratio = 32 +size = 5 ++++ diff --git a/content/coolmathgames_tech.md b/content/coolmathgames_tech.md new file mode 100644 index 00000000..5a019a6b --- /dev/null +++ b/content/coolmathgames_tech.md @@ -0,0 +1,11 @@ ++++ +title = "coolmathgames.tech" +date = "2022-03-22" +updated = "2022-03-22" +weight = 58380 + +[extra] +source = "http://coolmathgames.tech/" +ratio = 8 +size = 57 ++++ diff --git a/content/cosmo_red.md b/content/cosmo_red.md new file mode 100644 index 00000000..084400f0 --- /dev/null +++ b/content/cosmo_red.md @@ -0,0 +1,11 @@ ++++ +title = "cosmo.red" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1047 + +[extra] +source = "https://cosmo.red" +ratio = 100 +size = 1 ++++ diff --git a/content/crackle_dev.md b/content/crackle_dev.md new file mode 100644 index 00000000..2afb447c --- /dev/null +++ b/content/crackle_dev.md @@ -0,0 +1,11 @@ ++++ +title = "crackle.dev" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1447 + +[extra] +source = "https://crackle.dev/" +ratio = 51 +size = 1 ++++ diff --git a/content/cronokirby_com.md b/content/cronokirby_com.md new file mode 100644 index 00000000..2ddceb29 --- /dev/null +++ b/content/cronokirby_com.md @@ -0,0 +1,11 @@ ++++ +title = "cronokirby.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 227397 + +[extra] +source = "https://cronokirby.com" +ratio = 2 +size = 222 ++++ diff --git a/content/customformats_com.md b/content/customformats_com.md new file mode 100644 index 00000000..a12f3f8b --- /dev/null +++ b/content/customformats_com.md @@ -0,0 +1,11 @@ ++++ +title = "customformats.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 243154 + +[extra] +source = "https://customformats.com/" +ratio = 2 +size = 237 ++++ diff --git a/content/cycloneblaze_net.md b/content/cycloneblaze_net.md new file mode 100644 index 00000000..1d25e400 --- /dev/null +++ b/content/cycloneblaze_net.md @@ -0,0 +1,11 @@ ++++ +title = "cycloneblaze.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 23824 + +[extra] +source = "https://cycloneblaze.net/" +ratio = 7 +size = 23 ++++ diff --git a/content/daniel-siepmann_de.md b/content/daniel-siepmann_de.md new file mode 100644 index 00000000..f54f38fe --- /dev/null +++ b/content/daniel-siepmann_de.md @@ -0,0 +1,11 @@ ++++ +title = "daniel-siepmann.de" +date = "2022-03-22" +updated = "2022-03-22" +weight = 16464 + +[extra] +source = "https://daniel-siepmann.de/" +ratio = 73 +size = 16 ++++ diff --git a/content/danielcuttridge_com.md b/content/danielcuttridge_com.md new file mode 100644 index 00000000..329438f9 --- /dev/null +++ b/content/danielcuttridge_com.md @@ -0,0 +1,11 @@ ++++ +title = "danielcuttridge.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1614 + +[extra] +source = "https://danielcuttridge.com/" +ratio = 100 +size = 2 ++++ diff --git a/content/danielsada_tech.md b/content/danielsada_tech.md new file mode 100644 index 00000000..2f306a60 --- /dev/null +++ b/content/danielsada_tech.md @@ -0,0 +1,11 @@ ++++ +title = "danielsada.tech" +date = "2022-03-22" +updated = "2022-03-22" +weight = 139152 + +[extra] +source = "https://danielsada.tech/" +ratio = 3 +size = 136 ++++ diff --git a/content/danluu_com.md b/content/danluu_com.md new file mode 100644 index 00000000..ce2aa5af --- /dev/null +++ b/content/danluu_com.md @@ -0,0 +1,11 @@ ++++ +title = "danluu.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4896 + +[extra] +source = "https://danluu.com" +ratio = 100 +size = 5 ++++ diff --git a/content/decentnet_github_io.md b/content/decentnet_github_io.md new file mode 100644 index 00000000..ac2e980a --- /dev/null +++ b/content/decentnet_github_io.md @@ -0,0 +1,11 @@ ++++ +title = "decentnet.github.io" +date = "2022-03-22" +updated = "2022-03-22" +weight = 10680 + +[extra] +source = "https://decentnet.github.io/" +ratio = 78 +size = 10 ++++ diff --git a/content/dotfilehub_com.md b/content/dotfilehub_com.md new file mode 100644 index 00000000..acf31c17 --- /dev/null +++ b/content/dotfilehub_com.md @@ -0,0 +1,11 @@ ++++ +title = "dotfilehub.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2728 + +[extra] +source = "https://dotfilehub.com" +ratio = 37 +size = 3 ++++ diff --git a/content/dpldocs_info_this-week-in-d_Blog_html.md b/content/dpldocs_info_this-week-in-d_Blog_html.md new file mode 100644 index 00000000..2f675273 --- /dev/null +++ b/content/dpldocs_info_this-week-in-d_Blog_html.md @@ -0,0 +1,11 @@ ++++ +title = "dpldocs.info/this-week-in-d/Blog.html" +date = "2022-03-22" +updated = "2022-03-22" +weight = 100505 + +[extra] +source = "http://dpldocs.info/this-week-in-d/Blog.html" +ratio = 72 +size = 98 ++++ diff --git a/content/drewdevault_com.md b/content/drewdevault_com.md new file mode 100644 index 00000000..70cd8c5b --- /dev/null +++ b/content/drewdevault_com.md @@ -0,0 +1,11 @@ ++++ +title = "drewdevault.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 29948 + +[extra] +source = "https://drewdevault.com/" +ratio = 51 +size = 29 ++++ diff --git a/content/dusanmitrovic_xyz.md b/content/dusanmitrovic_xyz.md new file mode 100644 index 00000000..f1d9e070 --- /dev/null +++ b/content/dusanmitrovic_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "dusanmitrovic.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 10993 + +[extra] +source = "https://dusanmitrovic.xyz/" +ratio = 23 +size = 11 ++++ diff --git a/content/dyremyhr_no.md b/content/dyremyhr_no.md new file mode 100644 index 00000000..4845be37 --- /dev/null +++ b/content/dyremyhr_no.md @@ -0,0 +1,11 @@ ++++ +title = "dyremyhr.no" +date = "2022-03-22" +updated = "2022-03-22" +weight = 109108 + +[extra] +source = "https://dyremyhr.no/" +ratio = 3 +size = 107 ++++ diff --git a/content/editions-du-26-octobre_com.md b/content/editions-du-26-octobre_com.md new file mode 100644 index 00000000..5a196434 --- /dev/null +++ b/content/editions-du-26-octobre_com.md @@ -0,0 +1,11 @@ ++++ +title = "editions-du-26-octobre.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 121539 + +[extra] +source = "https://editions-du-26-octobre.com/" +ratio = 11 +size = 119 ++++ diff --git a/content/emersion_fr.md b/content/emersion_fr.md new file mode 100644 index 00000000..cfcf196c --- /dev/null +++ b/content/emersion_fr.md @@ -0,0 +1,11 @@ ++++ +title = "emersion.fr" +date = "2022-03-22" +updated = "2022-03-22" +weight = 185330 + +[extra] +source = "https://emersion.fr/" +ratio = 1 +size = 181 ++++ diff --git a/content/fabioartuso_com.md b/content/fabioartuso_com.md new file mode 100644 index 00000000..d99d8668 --- /dev/null +++ b/content/fabioartuso_com.md @@ -0,0 +1,11 @@ ++++ +title = "fabioartuso.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1643 + +[extra] +source = "https://fabioartuso.com/" +ratio = 100 +size = 2 ++++ diff --git a/content/fanael_github_io.md b/content/fanael_github_io.md new file mode 100644 index 00000000..d59593ca --- /dev/null +++ b/content/fanael_github_io.md @@ -0,0 +1,11 @@ ++++ +title = "fanael.github.io" +date = "2022-03-22" +updated = "2022-03-22" +weight = 8888 + +[extra] +source = "https://fanael.github.io/" +ratio = 60 +size = 9 ++++ diff --git a/content/featyre_xyz.md b/content/featyre_xyz.md new file mode 100644 index 00000000..87ee236f --- /dev/null +++ b/content/featyre_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "featyre.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 16960 + +[extra] +source = "https://featyre.xyz/" +ratio = 9 +size = 17 ++++ diff --git a/content/felt_dev.md b/content/felt_dev.md new file mode 100644 index 00000000..4e32b71d --- /dev/null +++ b/content/felt_dev.md @@ -0,0 +1,11 @@ ++++ +title = "felt.dev" +date = "2022-03-22" +updated = "2022-03-22" +weight = 94379 + +[extra] +source = "https://felt.dev/" +ratio = 2 +size = 92 ++++ diff --git a/content/flatpackapps_com.md b/content/flatpackapps_com.md new file mode 100644 index 00000000..8bb401f3 --- /dev/null +++ b/content/flatpackapps_com.md @@ -0,0 +1,11 @@ ++++ +title = "flatpackapps.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 19260 + +[extra] +source = "https://flatpackapps.com" +ratio = 14 +size = 19 ++++ diff --git a/content/fmarier_org.md b/content/fmarier_org.md new file mode 100644 index 00000000..9ebc8383 --- /dev/null +++ b/content/fmarier_org.md @@ -0,0 +1,11 @@ ++++ +title = "fmarier.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 111140 + +[extra] +source = "https://fmarier.org/" +ratio = 2 +size = 109 ++++ diff --git a/content/fossdd_codeberg_page.md b/content/fossdd_codeberg_page.md new file mode 100644 index 00000000..5e3531d3 --- /dev/null +++ b/content/fossdd_codeberg_page.md @@ -0,0 +1,11 @@ ++++ +title = "fossdd.codeberg.page" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3393 + +[extra] +source = "https://fossdd.codeberg.page/" +ratio = 39 +size = 3 ++++ diff --git a/content/foxwells_garden.md b/content/foxwells_garden.md new file mode 100644 index 00000000..69e4518b --- /dev/null +++ b/content/foxwells_garden.md @@ -0,0 +1,11 @@ ++++ +title = "foxwells.garden" +date = "2022-03-22" +updated = "2022-03-22" +weight = 38194 + +[extra] +source = "https://foxwells.garden/" +ratio = 12 +size = 37 ++++ diff --git a/content/free_mg.md b/content/free_mg.md new file mode 100644 index 00000000..c5ea0e06 --- /dev/null +++ b/content/free_mg.md @@ -0,0 +1,11 @@ ++++ +title = "free.mg" +date = "2022-03-22" +updated = "2022-03-22" +weight = 9024 + +[extra] +source = "https://free.mg/" +ratio = 34 +size = 9 ++++ diff --git a/content/freesolitaire_win.md b/content/freesolitaire_win.md new file mode 100644 index 00000000..6fc5c895 --- /dev/null +++ b/content/freesolitaire_win.md @@ -0,0 +1,11 @@ ++++ +title = "freesolitaire.win" +date = "2022-03-22" +updated = "2022-03-22" +weight = 88903 + +[extra] +source = "https://freesolitaire.win/" +ratio = 23 +size = 87 ++++ diff --git a/content/frontaid_io.md b/content/frontaid_io.md new file mode 100644 index 00000000..bb1febcc --- /dev/null +++ b/content/frontaid_io.md @@ -0,0 +1,11 @@ ++++ +title = "frontaid.io" +date = "2022-03-22" +updated = "2022-03-22" +weight = 147074 + +[extra] +source = "https://frontaid.io" +ratio = 2 +size = 144 ++++ diff --git a/content/fullstackpython_com.md b/content/fullstackpython_com.md new file mode 100644 index 00000000..c0ee10a5 --- /dev/null +++ b/content/fullstackpython_com.md @@ -0,0 +1,11 @@ ++++ +title = "fullstackpython.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 26402 + +[extra] +source = "https://fullstackpython.com" +ratio = 22 +size = 26 ++++ diff --git a/content/funnylookinhat_com.md b/content/funnylookinhat_com.md new file mode 100644 index 00000000..18ed2f99 --- /dev/null +++ b/content/funnylookinhat_com.md @@ -0,0 +1,11 @@ ++++ +title = "funnylookinhat.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3572 + +[extra] +source = "https://funnylookinhat.com/" +ratio = 75 +size = 3 ++++ diff --git a/content/gabnotes_org.md b/content/gabnotes_org.md new file mode 100644 index 00000000..38fad229 --- /dev/null +++ b/content/gabnotes_org.md @@ -0,0 +1,11 @@ ++++ +title = "gabnotes.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 30328 + +[extra] +source = "https://gabnotes.org/" +ratio = 12 +size = 30 ++++ diff --git a/content/gallant_dev.md b/content/gallant_dev.md new file mode 100644 index 00000000..579307ee --- /dev/null +++ b/content/gallant_dev.md @@ -0,0 +1,11 @@ ++++ +title = "gallant.dev" +date = "2022-03-22" +updated = "2022-03-22" +weight = 39130 + +[extra] +source = "https://gallant.dev/" +ratio = 31 +size = 38 ++++ diff --git a/content/gennext_net_au.md b/content/gennext_net_au.md new file mode 100644 index 00000000..40b8c4e8 --- /dev/null +++ b/content/gennext_net_au.md @@ -0,0 +1,11 @@ ++++ +title = "gennext.net.au" +date = "2022-03-22" +updated = "2022-03-22" +weight = 85656 + +[extra] +source = "https://gennext.net.au/" +ratio = 26 +size = 84 ++++ diff --git a/content/gerikson_com.md b/content/gerikson_com.md new file mode 100644 index 00000000..5ba6a673 --- /dev/null +++ b/content/gerikson_com.md @@ -0,0 +1,11 @@ ++++ +title = "gerikson.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2283 + +[extra] +source = "http://gerikson.com/" +ratio = 39 +size = 2 ++++ diff --git a/content/gerikson_com_hnlo.md b/content/gerikson_com_hnlo.md new file mode 100644 index 00000000..f1c86beb --- /dev/null +++ b/content/gerikson_com_hnlo.md @@ -0,0 +1,11 @@ ++++ +title = "gerikson.com/hnlo" +date = "2022-03-22" +updated = "2022-03-22" +weight = 33104 + +[extra] +source = "http://gerikson.com/hnlo/" +ratio = 81 +size = 32 ++++ diff --git a/content/getindiekit_com.md b/content/getindiekit_com.md new file mode 100644 index 00000000..e1e8c076 --- /dev/null +++ b/content/getindiekit_com.md @@ -0,0 +1,11 @@ ++++ +title = "getindiekit.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 125607 + +[extra] +source = "https://getindiekit.com/" +ratio = 3 +size = 123 ++++ diff --git a/content/grapheneos_org.md b/content/grapheneos_org.md new file mode 100644 index 00000000..a03729df --- /dev/null +++ b/content/grapheneos_org.md @@ -0,0 +1,11 @@ ++++ +title = "grapheneos.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5464 + +[extra] +source = "https://grapheneos.org/" +ratio = 80 +size = 5 ++++ diff --git a/content/gtrr_artemislena_eu.md b/content/gtrr_artemislena_eu.md new file mode 100644 index 00000000..1b59770a --- /dev/null +++ b/content/gtrr_artemislena_eu.md @@ -0,0 +1,11 @@ ++++ +title = "gtrr.artemislena.eu" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2531 + +[extra] +source = "https://gtrr.artemislena.eu/" +ratio = 82 +size = 2 ++++ diff --git a/content/guts_plus.md b/content/guts_plus.md new file mode 100644 index 00000000..ad5ab05b --- /dev/null +++ b/content/guts_plus.md @@ -0,0 +1,11 @@ ++++ +title = "guts.plus" +date = "2022-03-22" +updated = "2022-03-22" +weight = 20824 + +[extra] +source = "https://guts.plus/" +ratio = 19 +size = 20 ++++ diff --git a/content/hmbrg_xyz.md b/content/hmbrg_xyz.md new file mode 100644 index 00000000..a26a4864 --- /dev/null +++ b/content/hmbrg_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "hmbrg.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1523 + +[extra] +source = "https://hmbrg.xyz/" +ratio = 100 +size = 1 ++++ diff --git a/content/humaidq_ae.md b/content/humaidq_ae.md new file mode 100644 index 00000000..9552f5b9 --- /dev/null +++ b/content/humaidq_ae.md @@ -0,0 +1,11 @@ ++++ +title = "humaidq.ae" +date = "2022-03-22" +updated = "2022-03-22" +weight = 7761 + +[extra] +source = "https://humaidq.ae/" +ratio = 14 +size = 8 ++++ diff --git a/content/huyngo_envs_net.md b/content/huyngo_envs_net.md new file mode 100644 index 00000000..cba22c54 --- /dev/null +++ b/content/huyngo_envs_net.md @@ -0,0 +1,11 @@ ++++ +title = "huyngo.envs.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 11462 + +[extra] +source = "https://huyngo.envs.net" +ratio = 51 +size = 11 ++++ diff --git a/content/iain_in.md b/content/iain_in.md new file mode 100644 index 00000000..361708b3 --- /dev/null +++ b/content/iain_in.md @@ -0,0 +1,11 @@ ++++ +title = "iain.in" +date = "2022-03-22" +updated = "2022-03-22" +weight = 124840 + +[extra] +source = "https://iain.in/" +ratio = 1 +size = 122 ++++ diff --git a/content/ianmobbs_com.md b/content/ianmobbs_com.md new file mode 100644 index 00000000..db6d68e3 --- /dev/null +++ b/content/ianmobbs_com.md @@ -0,0 +1,11 @@ ++++ +title = "ianmobbs.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 193331 + +[extra] +source = "https://ianmobbs.com" +ratio = 1 +size = 189 ++++ diff --git a/content/ihaque_org.md b/content/ihaque_org.md new file mode 100644 index 00000000..4b60d46e --- /dev/null +++ b/content/ihaque_org.md @@ -0,0 +1,11 @@ ++++ +title = "ihaque.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 105608 + +[extra] +source = "https://ihaque.org/" +ratio = 3 +size = 103 ++++ diff --git a/content/ihsaan_glitch_me.md b/content/ihsaan_glitch_me.md new file mode 100644 index 00000000..43ea7537 --- /dev/null +++ b/content/ihsaan_glitch_me.md @@ -0,0 +1,11 @@ ++++ +title = "ihsaan.glitch.me" +date = "2022-03-22" +updated = "2022-03-22" +weight = 77798 + +[extra] +source = "https://ihsaan.glitch.me/" +ratio = 10 +size = 76 ++++ diff --git a/content/inatri_com.md b/content/inatri_com.md new file mode 100644 index 00000000..d4458623 --- /dev/null +++ b/content/inatri_com.md @@ -0,0 +1,11 @@ ++++ +title = "inatri.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5055 + +[extra] +source = "https://inatri.com/" +ratio = 41 +size = 5 ++++ diff --git a/content/jaime_gomezobregon_com.md b/content/jaime_gomezobregon_com.md new file mode 100644 index 00000000..8e7cf03e --- /dev/null +++ b/content/jaime_gomezobregon_com.md @@ -0,0 +1,11 @@ ++++ +title = "jaime.gomezobregon.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 64866 + +[extra] +source = "https://jaime.gomezobregon.com" +ratio = 3 +size = 63 ++++ diff --git a/content/jakob_kaivo_net.md b/content/jakob_kaivo_net.md new file mode 100644 index 00000000..ef82ec95 --- /dev/null +++ b/content/jakob_kaivo_net.md @@ -0,0 +1,11 @@ ++++ +title = "jakob.kaivo.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1690 + +[extra] +source = "https://jakob.kaivo.net/" +ratio = 61 +size = 2 ++++ diff --git a/content/jason_nabein_me.md b/content/jason_nabein_me.md new file mode 100644 index 00000000..261f716a --- /dev/null +++ b/content/jason_nabein_me.md @@ -0,0 +1,11 @@ ++++ +title = "jason.nabein.me" +date = "2022-03-22" +updated = "2022-03-22" +weight = 27732 + +[extra] +source = "https://jason.nabein.me/" +ratio = 27 +size = 27 ++++ diff --git a/content/jeffhuang_com.md b/content/jeffhuang_com.md new file mode 100644 index 00000000..6ca78295 --- /dev/null +++ b/content/jeffhuang_com.md @@ -0,0 +1,11 @@ ++++ +title = "jeffhuang.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 160779 + +[extra] +source = "https://jeffhuang.com/" +ratio = 6 +size = 157 ++++ diff --git a/content/jeremysarber_com.md b/content/jeremysarber_com.md new file mode 100644 index 00000000..b3db6348 --- /dev/null +++ b/content/jeremysarber_com.md @@ -0,0 +1,11 @@ ++++ +title = "jeremysarber.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2279 + +[extra] +source = "https://jeremysarber.com" +ratio = 100 +size = 2 ++++ diff --git a/content/jlelse_blog.md b/content/jlelse_blog.md new file mode 100644 index 00000000..5969cf46 --- /dev/null +++ b/content/jlelse_blog.md @@ -0,0 +1,11 @@ ++++ +title = "jlelse.blog" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5121 + +[extra] +source = "https://jlelse.blog/" +ratio = 65 +size = 5 ++++ diff --git a/content/jmtd_net.md b/content/jmtd_net.md new file mode 100644 index 00000000..45cd70aa --- /dev/null +++ b/content/jmtd_net.md @@ -0,0 +1,11 @@ ++++ +title = "jmtd.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 216883 + +[extra] +source = "https://jmtd.net/" +ratio = 1 +size = 212 ++++ diff --git a/content/john-doe_neocities_org.md b/content/john-doe_neocities_org.md new file mode 100644 index 00000000..96d9bb97 --- /dev/null +++ b/content/john-doe_neocities_org.md @@ -0,0 +1,11 @@ ++++ +title = "john-doe.neocities.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 7299 + +[extra] +source = "https://john-doe.neocities.org" +ratio = 62 +size = 7 ++++ diff --git a/content/jrballesteros05_codeberg_page.md b/content/jrballesteros05_codeberg_page.md new file mode 100644 index 00000000..a7534e91 --- /dev/null +++ b/content/jrballesteros05_codeberg_page.md @@ -0,0 +1,11 @@ ++++ +title = "jrballesteros05.codeberg.page" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1093 + +[extra] +source = "https://jrballesteros05.codeberg.page/" +ratio = 100 +size = 1 ++++ diff --git a/content/jvanelian_dev.md b/content/jvanelian_dev.md new file mode 100644 index 00000000..87eaa78d --- /dev/null +++ b/content/jvanelian_dev.md @@ -0,0 +1,11 @@ ++++ +title = "jvanelian.dev" +date = "2022-03-22" +updated = "2022-03-22" +weight = 19921 + +[extra] +source = "https://jvanelian.dev" +ratio = 14 +size = 19 ++++ diff --git a/content/jvelo_at.md b/content/jvelo_at.md new file mode 100644 index 00000000..7fcef276 --- /dev/null +++ b/content/jvelo_at.md @@ -0,0 +1,11 @@ ++++ +title = "jvelo.at" +date = "2022-03-22" +updated = "2022-03-22" +weight = 188122 + +[extra] +source = "https://jvelo.at/" +ratio = 2 +size = 184 ++++ diff --git a/content/k0r_in.md b/content/k0r_in.md new file mode 100644 index 00000000..9c6ca35e --- /dev/null +++ b/content/k0r_in.md @@ -0,0 +1,11 @@ ++++ +title = "k0r.in" +date = "2022-02-21" +updated = "2022-03-22" +weight = 57598 + +[extra] +source = "https://k0r.in" +ratio = 6 +size = 56 ++++ diff --git a/content/karolis_koncevicius_lt.md b/content/karolis_koncevicius_lt.md new file mode 100644 index 00000000..d750ab0c --- /dev/null +++ b/content/karolis_koncevicius_lt.md @@ -0,0 +1,11 @@ ++++ +title = "karolis.koncevicius.lt" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2823 + +[extra] +source = "http://karolis.koncevicius.lt/" +ratio = 100 +size = 3 ++++ diff --git a/content/kayafirat_com.md b/content/kayafirat_com.md new file mode 100644 index 00000000..a2de49e3 --- /dev/null +++ b/content/kayafirat_com.md @@ -0,0 +1,11 @@ ++++ +title = "kayafirat.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 36318 + +[extra] +source = "https://kayafirat.com/" +ratio = 18 +size = 35 ++++ diff --git a/content/kerkour_fr.md b/content/kerkour_fr.md new file mode 100644 index 00000000..8ab9ac42 --- /dev/null +++ b/content/kerkour_fr.md @@ -0,0 +1,11 @@ ++++ +title = "kerkour.fr" +date = "2022-03-22" +updated = "2022-03-22" +weight = 37990 + +[extra] +source = "https://kerkour.fr/" +ratio = 17 +size = 37 ++++ diff --git a/content/kevq_uk.md b/content/kevq_uk.md new file mode 100644 index 00000000..186a95d5 --- /dev/null +++ b/content/kevq_uk.md @@ -0,0 +1,11 @@ ++++ +title = "kevq.uk" +date = "2022-03-22" +updated = "2022-03-22" +weight = 167349 + +[extra] +source = "https://kevq.uk/" +ratio = 5 +size = 163 ++++ diff --git a/content/kidl_at.md b/content/kidl_at.md new file mode 100644 index 00000000..acb9520d --- /dev/null +++ b/content/kidl_at.md @@ -0,0 +1,11 @@ ++++ +title = "kidl.at" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3814 + +[extra] +source = "https://kidl.at/" +ratio = 100 +size = 4 ++++ diff --git a/content/kishvanchee_com.md b/content/kishvanchee_com.md new file mode 100644 index 00000000..58cab163 --- /dev/null +++ b/content/kishvanchee_com.md @@ -0,0 +1,11 @@ ++++ +title = "kishvanchee.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3972 + +[extra] +source = "https://kishvanchee.com/" +ratio = 35 +size = 4 ++++ diff --git a/content/kj7nzl_net.md b/content/kj7nzl_net.md new file mode 100644 index 00000000..b0ec5c1a --- /dev/null +++ b/content/kj7nzl_net.md @@ -0,0 +1,11 @@ ++++ +title = "kj7nzl.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5863 + +[extra] +source = "https://kj7nzl.net/" +ratio = 100 +size = 6 ++++ diff --git a/content/koehr_in.md b/content/koehr_in.md new file mode 100644 index 00000000..26144fc8 --- /dev/null +++ b/content/koehr_in.md @@ -0,0 +1,11 @@ ++++ +title = "koehr.in" +date = "2022-02-21" +updated = "2022-03-22" +weight = 57597 + +[extra] +source = "https://koehr.in" +ratio = 6 +size = 56 ++++ diff --git a/content/koehr_tech.md b/content/koehr_tech.md new file mode 100644 index 00000000..a42056a1 --- /dev/null +++ b/content/koehr_tech.md @@ -0,0 +1,11 @@ ++++ +title = "koehr.tech" +date = "2022-02-22" +updated = "2022-03-22" +weight = 157706 + +[extra] +source = "https://koehr.tech" +ratio = 3 +size = 154 ++++ diff --git a/content/kunalmarwaha_com.md b/content/kunalmarwaha_com.md new file mode 100644 index 00000000..b5971026 --- /dev/null +++ b/content/kunalmarwaha_com.md @@ -0,0 +1,11 @@ ++++ +title = "kunalmarwaha.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1819 + +[extra] +source = "https://kunalmarwaha.com/" +ratio = 50 +size = 2 ++++ diff --git a/content/lambdapapers_com.md b/content/lambdapapers_com.md new file mode 100644 index 00000000..b7207b3f --- /dev/null +++ b/content/lambdapapers_com.md @@ -0,0 +1,11 @@ ++++ +title = "lambdapapers.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 31771 + +[extra] +source = "https://lambdapapers.com" +ratio = 8 +size = 31 ++++ diff --git a/content/lawzava_com.md b/content/lawzava_com.md new file mode 100644 index 00000000..c4c9eb89 --- /dev/null +++ b/content/lawzava_com.md @@ -0,0 +1,11 @@ ++++ +title = "lawzava.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5344 + +[extra] +source = "https://lawzava.com" +ratio = 48 +size = 5 ++++ diff --git a/content/lecaro_me_minimage.md b/content/lecaro_me_minimage.md new file mode 100644 index 00000000..2ecd5839 --- /dev/null +++ b/content/lecaro_me_minimage.md @@ -0,0 +1,11 @@ ++++ +title = "lecaro.me/minimage" +date = "2022-03-22" +updated = "2022-03-22" +weight = 10759 + +[extra] +source = "https://lecaro.me/minimage/" +ratio = 18 +size = 11 ++++ diff --git a/content/lectupedia_com_en.md b/content/lectupedia_com_en.md new file mode 100644 index 00000000..ef1d9276 --- /dev/null +++ b/content/lectupedia_com_en.md @@ -0,0 +1,11 @@ ++++ +title = "lectupedia.com/en" +date = "2022-03-22" +updated = "2022-03-22" +weight = 10458 + +[extra] +source = "https://lectupedia.com/en/" +ratio = 27 +size = 10 ++++ diff --git a/content/legiblenews_com.md b/content/legiblenews_com.md new file mode 100644 index 00000000..2d1ffaff --- /dev/null +++ b/content/legiblenews_com.md @@ -0,0 +1,11 @@ ++++ +title = "legiblenews.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 76175 + +[extra] +source = "https://legiblenews.com" +ratio = 22 +size = 74 ++++ diff --git a/content/leonardschuetz_ch.md b/content/leonardschuetz_ch.md new file mode 100644 index 00000000..2d6b9d91 --- /dev/null +++ b/content/leonardschuetz_ch.md @@ -0,0 +1,11 @@ ++++ +title = "leonardschuetz.ch" +date = "2022-03-22" +updated = "2022-03-22" +weight = 69260 + +[extra] +source = "https://leonardschuetz.ch/" +ratio = 7 +size = 68 ++++ diff --git a/content/lighthouse16_com.md b/content/lighthouse16_com.md new file mode 100644 index 00000000..ba0b7586 --- /dev/null +++ b/content/lighthouse16_com.md @@ -0,0 +1,11 @@ ++++ +title = "lighthouse16.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 25558 + +[extra] +source = "https://lighthouse16.com/" +ratio = 8 +size = 25 ++++ diff --git a/content/lil_gay.md b/content/lil_gay.md new file mode 100644 index 00000000..8ad5fa01 --- /dev/null +++ b/content/lil_gay.md @@ -0,0 +1,11 @@ ++++ +title = "lil.gay" +date = "2022-03-22" +updated = "2022-03-22" +weight = 320 + +[extra] +source = "https://lil.gay/" +ratio = 100 +size = 0 ++++ diff --git a/content/linuxguideandhints_com.md b/content/linuxguideandhints_com.md new file mode 100644 index 00000000..9ceffdf6 --- /dev/null +++ b/content/linuxguideandhints_com.md @@ -0,0 +1,11 @@ ++++ +title = "linuxguideandhints.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 52762 + +[extra] +source = "https://linuxguideandhints.com/" +ratio = 6 +size = 52 ++++ diff --git a/content/lite_cnn_com.md b/content/lite_cnn_com.md new file mode 100644 index 00000000..73ce00e0 --- /dev/null +++ b/content/lite_cnn_com.md @@ -0,0 +1,11 @@ ++++ +title = "lite.cnn.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 71862 + +[extra] +source = "https://lite.cnn.com" +ratio = 9 +size = 70 ++++ diff --git a/content/lo_hn.md b/content/lo_hn.md new file mode 100644 index 00000000..66c073b1 --- /dev/null +++ b/content/lo_hn.md @@ -0,0 +1,11 @@ ++++ +title = "lo.hn" +date = "2022-03-22" +updated = "2022-03-22" +weight = 605 + +[extra] +source = "https://lo.hn/" +ratio = 100 +size = 1 ++++ diff --git a/content/lobste_rs.md b/content/lobste_rs.md new file mode 100644 index 00000000..bce324ac --- /dev/null +++ b/content/lobste_rs.md @@ -0,0 +1,11 @@ ++++ +title = "lobste.rs" +date = "2022-03-22" +updated = "2022-03-22" +weight = 45988 + +[extra] +source = "https://lobste.rs/" +ratio = 22 +size = 45 ++++ diff --git a/content/luana_cc.md b/content/luana_cc.md new file mode 100644 index 00000000..e2581f5d --- /dev/null +++ b/content/luana_cc.md @@ -0,0 +1,11 @@ ++++ +title = "luana.cc" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4253 + +[extra] +source = "https://luana.cc/" +ratio = 70 +size = 4 ++++ diff --git a/content/lucianmarin_com.md b/content/lucianmarin_com.md new file mode 100644 index 00000000..bdce7e27 --- /dev/null +++ b/content/lucianmarin_com.md @@ -0,0 +1,11 @@ ++++ +title = "lucianmarin.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 63491 + +[extra] +source = "https://lucianmarin.com/" +ratio = 2 +size = 62 ++++ diff --git a/content/lukeramsden_com.md b/content/lukeramsden_com.md new file mode 100644 index 00000000..ffe05004 --- /dev/null +++ b/content/lukeramsden_com.md @@ -0,0 +1,11 @@ ++++ +title = "lukeramsden.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4567 + +[extra] +source = "https://lukeramsden.com" +ratio = 100 +size = 4 ++++ diff --git a/content/lukesempire_com.md b/content/lukesempire_com.md new file mode 100644 index 00000000..c3f2a4d1 --- /dev/null +++ b/content/lukesempire_com.md @@ -0,0 +1,11 @@ ++++ +title = "lukesempire.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 50615 + +[extra] +source = "https://lukesempire.com/" +ratio = 5 +size = 49 ++++ diff --git a/content/m-chrzan_xyz.md b/content/m-chrzan_xyz.md new file mode 100644 index 00000000..85e65caa --- /dev/null +++ b/content/m-chrzan_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "m-chrzan.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2490 + +[extra] +source = "https://m-chrzan.xyz/" +ratio = 43 +size = 2 ++++ diff --git a/content/majiehong_com.md b/content/majiehong_com.md new file mode 100644 index 00000000..2f392f61 --- /dev/null +++ b/content/majiehong_com.md @@ -0,0 +1,11 @@ ++++ +title = "majiehong.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 11074 + +[extra] +source = "https://majiehong.com/" +ratio = 13 +size = 11 ++++ diff --git a/content/manpages_bsd_lv.md b/content/manpages_bsd_lv.md new file mode 100644 index 00000000..d5992991 --- /dev/null +++ b/content/manpages_bsd_lv.md @@ -0,0 +1,11 @@ ++++ +title = "manpages.bsd.lv" +date = "2022-03-22" +updated = "2022-03-22" +weight = 8391 + +[extra] +source = "https://manpages.bsd.lv" +ratio = 69 +size = 8 ++++ diff --git a/content/manuelmoreale_com.md b/content/manuelmoreale_com.md new file mode 100644 index 00000000..dd61d3e1 --- /dev/null +++ b/content/manuelmoreale_com.md @@ -0,0 +1,11 @@ ++++ +title = "manuelmoreale.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 9074 + +[extra] +source = "https://manuelmoreale.com/" +ratio = 79 +size = 9 ++++ diff --git a/content/martin_baillie_id.md b/content/martin_baillie_id.md new file mode 100644 index 00000000..a1d2881b --- /dev/null +++ b/content/martin_baillie_id.md @@ -0,0 +1,11 @@ ++++ +title = "martin.baillie.id" +date = "2022-03-22" +updated = "2022-03-22" +weight = 53891 + +[extra] +source = "https://martin.baillie.id/" +ratio = 6 +size = 53 ++++ diff --git a/content/mataroa_blog.md b/content/mataroa_blog.md new file mode 100644 index 00000000..a6e3afc4 --- /dev/null +++ b/content/mataroa_blog.md @@ -0,0 +1,11 @@ ++++ +title = "mataroa.blog" +date = "2022-03-22" +updated = "2022-03-22" +weight = 6629 + +[extra] +source = "https://mataroa.blog" +ratio = 49 +size = 6 ++++ diff --git a/content/matthall_codes.md b/content/matthall_codes.md new file mode 100644 index 00000000..7cdd1aba --- /dev/null +++ b/content/matthall_codes.md @@ -0,0 +1,11 @@ ++++ +title = "matthall.codes" +date = "2022-03-22" +updated = "2022-03-22" +weight = 164975 + +[extra] +source = "https://matthall.codes/" +ratio = 3 +size = 161 ++++ diff --git a/content/matthewstrom_com.md b/content/matthewstrom_com.md new file mode 100644 index 00000000..b2e224e6 --- /dev/null +++ b/content/matthewstrom_com.md @@ -0,0 +1,11 @@ ++++ +title = "matthewstrom.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 24542 + +[extra] +source = "https://matthewstrom.com" +ratio = 8 +size = 24 ++++ diff --git a/content/midnight_pub.md b/content/midnight_pub.md new file mode 100644 index 00000000..edbb3baa --- /dev/null +++ b/content/midnight_pub.md @@ -0,0 +1,11 @@ ++++ +title = "midnight.pub" +date = "2022-03-22" +updated = "2022-03-22" +weight = 10699 + +[extra] +source = "https://midnight.pub/" +ratio = 92 +size = 10 ++++ diff --git a/content/mikegerwitz_com.md b/content/mikegerwitz_com.md new file mode 100644 index 00000000..4582f5ad --- /dev/null +++ b/content/mikegerwitz_com.md @@ -0,0 +1,11 @@ ++++ +title = "mikegerwitz.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 80379 + +[extra] +source = "https://mikegerwitz.com/" +ratio = 6 +size = 78 ++++ diff --git a/content/miku86_com.md b/content/miku86_com.md new file mode 100644 index 00000000..e95a3cc8 --- /dev/null +++ b/content/miku86_com.md @@ -0,0 +1,11 @@ ++++ +title = "miku86.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 11633 + +[extra] +source = "https://miku86.com/" +ratio = 67 +size = 11 ++++ diff --git a/content/mineralexistence_com_home_html.md b/content/mineralexistence_com_home_html.md new file mode 100644 index 00000000..03e0b42b --- /dev/null +++ b/content/mineralexistence_com_home_html.md @@ -0,0 +1,11 @@ ++++ +title = "mineralexistence.com/home.html" +date = "2022-03-22" +updated = "2022-03-22" +weight = 20150 + +[extra] +source = "https://mineralexistence.com/home.html" +ratio = 9 +size = 20 ++++ diff --git a/content/minid_net.md b/content/minid_net.md new file mode 100644 index 00000000..693faa13 --- /dev/null +++ b/content/minid_net.md @@ -0,0 +1,11 @@ ++++ +title = "minid.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4110 + +[extra] +source = "http://minid.net" +ratio = 100 +size = 4 ++++ diff --git a/content/minwiz_com.md b/content/minwiz_com.md new file mode 100644 index 00000000..5920c5ee --- /dev/null +++ b/content/minwiz_com.md @@ -0,0 +1,11 @@ ++++ +title = "minwiz.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2201 + +[extra] +source = "https://minwiz.com" +ratio = 100 +size = 2 ++++ diff --git a/content/monokai_nl.md b/content/monokai_nl.md new file mode 100644 index 00000000..c15e6eec --- /dev/null +++ b/content/monokai_nl.md @@ -0,0 +1,11 @@ ++++ +title = "monokai.nl" +date = "2022-03-22" +updated = "2022-03-22" +weight = 111793 + +[extra] +source = "https://monokai.nl" +ratio = 4 +size = 109 ++++ diff --git a/content/motherfuckingwebsite_com.md b/content/motherfuckingwebsite_com.md new file mode 100644 index 00000000..a6f49365 --- /dev/null +++ b/content/motherfuckingwebsite_com.md @@ -0,0 +1,11 @@ ++++ +title = "motherfuckingwebsite.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 22969 + +[extra] +source = "https://motherfuckingwebsite.com/" +ratio = 10 +size = 22 ++++ diff --git a/content/motz-berlin_de.md b/content/motz-berlin_de.md new file mode 100644 index 00000000..0beec7f0 --- /dev/null +++ b/content/motz-berlin_de.md @@ -0,0 +1,11 @@ ++++ +title = "motz-berlin.de" +date = "2022-03-22" +updated = "2022-03-22" +weight = 67210 + +[extra] +source = "https://motz-berlin.de/" +ratio = 2 +size = 66 ++++ diff --git a/content/my-flow_com.md b/content/my-flow_com.md new file mode 100644 index 00000000..5f17217d --- /dev/null +++ b/content/my-flow_com.md @@ -0,0 +1,11 @@ ++++ +title = "my-flow.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 147503 + +[extra] +source = "https://my-flow.com/" +ratio = 1 +size = 144 ++++ diff --git a/content/myipaddress_ru.md b/content/myipaddress_ru.md new file mode 100644 index 00000000..98f57482 --- /dev/null +++ b/content/myipaddress_ru.md @@ -0,0 +1,11 @@ ++++ +title = "myipaddress.ru" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1215 + +[extra] +source = "https://myipaddress.ru" +ratio = 100 +size = 1 ++++ diff --git a/content/n_2p5_xyz.md b/content/n_2p5_xyz.md new file mode 100644 index 00000000..f63d53a4 --- /dev/null +++ b/content/n_2p5_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "n.2p5.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 29064 + +[extra] +source = "https://n.2p5.xyz/" +ratio = 7 +size = 28 ++++ diff --git a/content/na20a_neocities_org.md b/content/na20a_neocities_org.md new file mode 100644 index 00000000..c6103997 --- /dev/null +++ b/content/na20a_neocities_org.md @@ -0,0 +1,11 @@ ++++ +title = "na20a.neocities.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5183 + +[extra] +source = "https://na20a.neocities.org/" +ratio = 26 +size = 5 ++++ diff --git a/content/natestemen_xyz.md b/content/natestemen_xyz.md new file mode 100644 index 00000000..5bdf974e --- /dev/null +++ b/content/natestemen_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "natestemen.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1949 + +[extra] +source = "https://natestemen.xyz/" +ratio = 50 +size = 2 ++++ diff --git a/content/nest_jakl_one.md b/content/nest_jakl_one.md new file mode 100644 index 00000000..fa359e8f --- /dev/null +++ b/content/nest_jakl_one.md @@ -0,0 +1,11 @@ ++++ +title = "nest.jakl.one" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4707 + +[extra] +source = "https://nest.jakl.one/" +ratio = 34 +size = 5 ++++ diff --git a/content/news_ycombinator_com.md b/content/news_ycombinator_com.md new file mode 100644 index 00000000..2df9cc1b --- /dev/null +++ b/content/news_ycombinator_com.md @@ -0,0 +1,11 @@ ++++ +title = "news.ycombinator.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 12397 + +[extra] +source = "https://news.ycombinator.com" +ratio = 54 +size = 12 ++++ diff --git a/content/nicetranslator_com.md b/content/nicetranslator_com.md new file mode 100644 index 00000000..dfaa49e1 --- /dev/null +++ b/content/nicetranslator_com.md @@ -0,0 +1,11 @@ ++++ +title = "nicetranslator.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 156013 + +[extra] +source = "https://nicetranslator.com/" +ratio = 1 +size = 152 ++++ diff --git a/content/nihar_page.md b/content/nihar_page.md new file mode 100644 index 00000000..90d11f9f --- /dev/null +++ b/content/nihar_page.md @@ -0,0 +1,11 @@ ++++ +title = "nihar.page" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3816 + +[extra] +source = "https://nihar.page/" +ratio = 79 +size = 4 ++++ diff --git a/content/nixnet_email.md b/content/nixnet_email.md new file mode 100644 index 00000000..259d91fe --- /dev/null +++ b/content/nixnet_email.md @@ -0,0 +1,11 @@ ++++ +title = "nixnet.email" +date = "2022-03-22" +updated = "2022-03-22" +weight = 72960 + +[extra] +source = "https://nixnet.email/" +ratio = 8 +size = 71 ++++ diff --git a/content/nomasters_io.md b/content/nomasters_io.md new file mode 100644 index 00000000..b15fb2f4 --- /dev/null +++ b/content/nomasters_io.md @@ -0,0 +1,11 @@ ++++ +title = "nomasters.io" +date = "2022-03-22" +updated = "2022-03-22" +weight = 50760 + +[extra] +source = "https://nomasters.io/" +ratio = 3 +size = 50 ++++ diff --git a/content/norayr_am.md b/content/norayr_am.md new file mode 100644 index 00000000..cc5a695c --- /dev/null +++ b/content/norayr_am.md @@ -0,0 +1,11 @@ ++++ +title = "norayr.am" +date = "2022-03-22" +updated = "2022-03-22" +weight = 924 + +[extra] +source = "https://norayr.am/" +ratio = 100 +size = 1 ++++ diff --git a/content/notes_eatonphil_com.md b/content/notes_eatonphil_com.md new file mode 100644 index 00000000..96d3adb1 --- /dev/null +++ b/content/notes_eatonphil_com.md @@ -0,0 +1,11 @@ ++++ +title = "notes.eatonphil.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 87180 + +[extra] +source = "https://notes.eatonphil.com/" +ratio = 10 +size = 85 ++++ diff --git a/content/notionbackups_com.md b/content/notionbackups_com.md new file mode 100644 index 00000000..a402ac5f --- /dev/null +++ b/content/notionbackups_com.md @@ -0,0 +1,11 @@ ++++ +title = "notionbackups.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 15339 + +[extra] +source = "https://notionbackups.com/" +ratio = 53 +size = 15 ++++ diff --git a/content/noulin_net_blog.md b/content/noulin_net_blog.md new file mode 100644 index 00000000..e650b96a --- /dev/null +++ b/content/noulin_net_blog.md @@ -0,0 +1,11 @@ ++++ +title = "noulin.net/blog" +date = "2022-03-22" +updated = "2022-03-22" +weight = 22714 + +[extra] +source = "https://noulin.net/blog/" +ratio = 61 +size = 22 ++++ diff --git a/content/nytpu_com.md b/content/nytpu_com.md new file mode 100644 index 00000000..a72efc59 --- /dev/null +++ b/content/nytpu_com.md @@ -0,0 +1,11 @@ ++++ +title = "nytpu.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3602 + +[extra] +source = "https://nytpu.com/" +ratio = 57 +size = 4 ++++ diff --git a/content/oh_mg.md b/content/oh_mg.md new file mode 100644 index 00000000..d360a3eb --- /dev/null +++ b/content/oh_mg.md @@ -0,0 +1,11 @@ ++++ +title = "oh.mg" +date = "2022-03-22" +updated = "2022-03-22" +weight = 10856 + +[extra] +source = "https://oh.mg/" +ratio = 38 +size = 11 ++++ diff --git a/content/ohio_araw_xyz.md b/content/ohio_araw_xyz.md new file mode 100644 index 00000000..4c24d4fb --- /dev/null +++ b/content/ohio_araw_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "ohio.araw.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4117 + +[extra] +source = "https://ohio.araw.xyz/" +ratio = 35 +size = 4 ++++ diff --git a/content/oscarforner_com.md b/content/oscarforner_com.md new file mode 100644 index 00000000..0341d0b4 --- /dev/null +++ b/content/oscarforner_com.md @@ -0,0 +1,11 @@ ++++ +title = "oscarforner.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 8846 + +[extra] +source = "https://oscarforner.com/" +ratio = 17 +size = 9 ++++ diff --git a/content/oxenburypartners_com.md b/content/oxenburypartners_com.md new file mode 100644 index 00000000..7cda9182 --- /dev/null +++ b/content/oxenburypartners_com.md @@ -0,0 +1,11 @@ ++++ +title = "oxenburypartners.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2243 + +[extra] +source = "http://oxenburypartners.com/" +ratio = 100 +size = 2 ++++ diff --git a/content/page_mi_fu-berlin_de_jhermann.md b/content/page_mi_fu-berlin_de_jhermann.md new file mode 100644 index 00000000..608953fa --- /dev/null +++ b/content/page_mi_fu-berlin_de_jhermann.md @@ -0,0 +1,11 @@ ++++ +title = "page.mi.fu-berlin.de/jhermann" +date = "2022-03-22" +updated = "2022-03-22" +weight = 17480 + +[extra] +source = "https://page.mi.fu-berlin.de/jhermann/" +ratio = 100 +size = 17 ++++ diff --git a/content/paulwilde_uk.md b/content/paulwilde_uk.md new file mode 100644 index 00000000..ae6cc4c7 --- /dev/null +++ b/content/paulwilde_uk.md @@ -0,0 +1,11 @@ ++++ +title = "paulwilde.uk" +date = "2022-03-22" +updated = "2022-03-22" +weight = 22228 + +[extra] +source = "https://paulwilde.uk/" +ratio = 5 +size = 22 ++++ diff --git a/content/pbanks_net.md b/content/pbanks_net.md new file mode 100644 index 00000000..207f420a --- /dev/null +++ b/content/pbanks_net.md @@ -0,0 +1,11 @@ ++++ +title = "pbanks.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1371 + +[extra] +source = "https://pbanks.net/" +ratio = 100 +size = 1 ++++ diff --git a/content/pgjones_dev.md b/content/pgjones_dev.md new file mode 100644 index 00000000..e3c59d1a --- /dev/null +++ b/content/pgjones_dev.md @@ -0,0 +1,11 @@ ++++ +title = "pgjones.dev" +date = "2022-03-22" +updated = "2022-03-22" +weight = 197879 + +[extra] +source = "https://pgjones.dev" +ratio = 1 +size = 193 ++++ diff --git a/content/phate6660_github_io.md b/content/phate6660_github_io.md new file mode 100644 index 00000000..51a10932 --- /dev/null +++ b/content/phate6660_github_io.md @@ -0,0 +1,11 @@ ++++ +title = "phate6660.github.io" +date = "2022-03-22" +updated = "2022-03-22" +weight = 13598 + +[extra] +source = "https://phate6660.github.io/" +ratio = 17 +size = 13 ++++ diff --git a/content/phreedom_club.md b/content/phreedom_club.md new file mode 100644 index 00000000..8576c366 --- /dev/null +++ b/content/phreedom_club.md @@ -0,0 +1,11 @@ ++++ +title = "phreedom.club" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3385 + +[extra] +source = "https://phreedom.club/" +ratio = 100 +size = 3 ++++ diff --git a/content/plasmasturm_org.md b/content/plasmasturm_org.md new file mode 100644 index 00000000..37a32be0 --- /dev/null +++ b/content/plasmasturm_org.md @@ -0,0 +1,11 @@ ++++ +title = "plasmasturm.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 9699 + +[extra] +source = "http://plasmasturm.org/" +ratio = 62 +size = 9 ++++ diff --git a/content/playerone_kevincox_ca.md b/content/playerone_kevincox_ca.md new file mode 100644 index 00000000..110f9aa7 --- /dev/null +++ b/content/playerone_kevincox_ca.md @@ -0,0 +1,11 @@ ++++ +title = "playerone.kevincox.ca" +date = "2022-03-22" +updated = "2022-03-22" +weight = 133159 + +[extra] +source = "https://playerone.kevincox.ca" +ratio = 2 +size = 130 ++++ diff --git a/content/pools_xmr_wiki.md b/content/pools_xmr_wiki.md new file mode 100644 index 00000000..95c5ecb2 --- /dev/null +++ b/content/pools_xmr_wiki.md @@ -0,0 +1,11 @@ ++++ +title = "pools.xmr.wiki" +date = "2022-03-22" +updated = "2022-03-22" +weight = 6178 + +[extra] +source = "https://pools.xmr.wiki/" +ratio = 47 +size = 6 ++++ diff --git a/content/porkbrain_com.md b/content/porkbrain_com.md new file mode 100644 index 00000000..f9df642b --- /dev/null +++ b/content/porkbrain_com.md @@ -0,0 +1,11 @@ ++++ +title = "porkbrain.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 122914 + +[extra] +source = "https://porkbrain.com" +ratio = 72 +size = 120 ++++ diff --git a/content/pr0_uk.md b/content/pr0_uk.md new file mode 100644 index 00000000..1bebfdf4 --- /dev/null +++ b/content/pr0_uk.md @@ -0,0 +1,11 @@ ++++ +title = "pr0.uk" +date = "2022-03-22" +updated = "2022-03-22" +weight = 121377 + +[extra] +source = "https://pr0.uk/" +ratio = 5 +size = 119 ++++ diff --git a/content/processwire_dev.md b/content/processwire_dev.md new file mode 100644 index 00000000..48c1f4d6 --- /dev/null +++ b/content/processwire_dev.md @@ -0,0 +1,11 @@ ++++ +title = "processwire.dev" +date = "2022-03-22" +updated = "2022-03-22" +weight = 18503 + +[extra] +source = "https://processwire.dev/" +ratio = 38 +size = 18 ++++ diff --git a/content/qubyte_codes.md b/content/qubyte_codes.md new file mode 100644 index 00000000..b9c896fa --- /dev/null +++ b/content/qubyte_codes.md @@ -0,0 +1,11 @@ ++++ +title = "qubyte.codes" +date = "2022-03-22" +updated = "2022-03-22" +weight = 8172 + +[extra] +source = "https://qubyte.codes/" +ratio = 34 +size = 8 ++++ diff --git a/content/quinncasey_com.md b/content/quinncasey_com.md new file mode 100644 index 00000000..fba115a8 --- /dev/null +++ b/content/quinncasey_com.md @@ -0,0 +1,11 @@ ++++ +title = "quinncasey.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 156631 + +[extra] +source = "https://quinncasey.com/" +ratio = 6 +size = 153 ++++ diff --git a/content/quitsocialmedia_club.md b/content/quitsocialmedia_club.md new file mode 100644 index 00000000..9444dfd6 --- /dev/null +++ b/content/quitsocialmedia_club.md @@ -0,0 +1,11 @@ ++++ +title = "quitsocialmedia.club" +date = "2022-03-22" +updated = "2022-03-22" +weight = 108833 + +[extra] +source = "https://quitsocialmedia.club/" +ratio = 2 +size = 106 ++++ diff --git a/content/rc-lite_xyz.md b/content/rc-lite_xyz.md new file mode 100644 index 00000000..40145dfe --- /dev/null +++ b/content/rc-lite_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "rc-lite.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 6718 + +[extra] +source = "https://rc-lite.xyz/" +ratio = 38 +size = 7 ++++ diff --git a/content/remoteroast_club.md b/content/remoteroast_club.md new file mode 100644 index 00000000..0155f164 --- /dev/null +++ b/content/remoteroast_club.md @@ -0,0 +1,11 @@ ++++ +title = "remoteroast.club" +date = "2022-03-22" +updated = "2022-03-22" +weight = 26973 + +[extra] +source = "https://remoteroast.club/" +ratio = 9 +size = 26 ++++ diff --git a/content/richj_co.md b/content/richj_co.md new file mode 100644 index 00000000..af6d0b36 --- /dev/null +++ b/content/richj_co.md @@ -0,0 +1,11 @@ ++++ +title = "richj.co" +date = "2022-03-22" +updated = "2022-03-22" +weight = 23888 + +[extra] +source = "https://richj.co" +ratio = 10 +size = 23 ++++ diff --git a/content/rya_nc.md b/content/rya_nc.md new file mode 100644 index 00000000..f2fdef6e --- /dev/null +++ b/content/rya_nc.md @@ -0,0 +1,11 @@ ++++ +title = "rya.nc" +date = "2022-03-22" +updated = "2022-03-22" +weight = 95977 + +[extra] +source = "https://rya.nc/" +ratio = 8 +size = 94 ++++ diff --git a/content/s1_flatpackapps_com_app_php?appId=22.md b/content/s1_flatpackapps_com_app_php?appId=22.md new file mode 100644 index 00000000..70d7357b --- /dev/null +++ b/content/s1_flatpackapps_com_app_php?appId=22.md @@ -0,0 +1,11 @@ ++++ +title = "s1.flatpackapps.com/app.php?appId=22" +date = "2022-03-22" +updated = "2022-03-22" +weight = 129763 + +[extra] +source = "https://s1.flatpackapps.com/app.php?appId=22" +ratio = 23 +size = 127 ++++ diff --git a/content/salejandro_me.md b/content/salejandro_me.md new file mode 100644 index 00000000..fd21a280 --- /dev/null +++ b/content/salejandro_me.md @@ -0,0 +1,11 @@ ++++ +title = "salejandro.me" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1414 + +[extra] +source = "https://salejandro.me/" +ratio = 52 +size = 1 ++++ diff --git a/content/salixos_org.md b/content/salixos_org.md new file mode 100644 index 00000000..c863520a --- /dev/null +++ b/content/salixos_org.md @@ -0,0 +1,11 @@ ++++ +title = "salixos.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 82584 + +[extra] +source = "https://salixos.org/" +ratio = 3 +size = 81 ++++ diff --git a/content/satchlj_us.md b/content/satchlj_us.md new file mode 100644 index 00000000..cf869d00 --- /dev/null +++ b/content/satchlj_us.md @@ -0,0 +1,11 @@ ++++ +title = "satchlj.us" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5009 + +[extra] +source = "https://satchlj.us/" +ratio = 100 +size = 5 ++++ diff --git a/content/searchbot_app.md b/content/searchbot_app.md new file mode 100644 index 00000000..0c5a58bc --- /dev/null +++ b/content/searchbot_app.md @@ -0,0 +1,11 @@ ++++ +title = "searchbot.app" +date = "2022-03-22" +updated = "2022-03-22" +weight = 42472 + +[extra] +source = "https://searchbot.app/" +ratio = 4 +size = 41 ++++ diff --git a/content/secluded_site.md b/content/secluded_site.md new file mode 100644 index 00000000..4c4ba9fe --- /dev/null +++ b/content/secluded_site.md @@ -0,0 +1,11 @@ ++++ +title = "secluded.site" +date = "2022-03-22" +updated = "2022-03-22" +weight = 60105 + +[extra] +source = "https://secluded.site/" +ratio = 5 +size = 59 ++++ diff --git a/content/seirdy_one.md b/content/seirdy_one.md new file mode 100644 index 00000000..53f1e570 --- /dev/null +++ b/content/seirdy_one.md @@ -0,0 +1,11 @@ ++++ +title = "seirdy.one" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5890 + +[extra] +source = "https://seirdy.one" +ratio = 88 +size = 6 ++++ diff --git a/content/shazow_net.md b/content/shazow_net.md new file mode 100644 index 00000000..74010fce --- /dev/null +++ b/content/shazow_net.md @@ -0,0 +1,11 @@ ++++ +title = "shazow.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 95821 + +[extra] +source = "https://shazow.net/" +ratio = 4 +size = 94 ++++ diff --git a/content/si3t_ch.md b/content/si3t_ch.md new file mode 100644 index 00000000..d1b1719a --- /dev/null +++ b/content/si3t_ch.md @@ -0,0 +1,11 @@ ++++ +title = "si3t.ch" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1379 + +[extra] +source = "https://si3t.ch/" +ratio = 0 +size = 1 ++++ diff --git a/content/sizi_ng.md b/content/sizi_ng.md new file mode 100644 index 00000000..82aa4fb8 --- /dev/null +++ b/content/sizi_ng.md @@ -0,0 +1,11 @@ ++++ +title = "sizi.ng" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2121 + +[extra] +source = "https://sizi.ng/" +ratio = 100 +size = 2 ++++ diff --git a/content/sjmulder_nl.md b/content/sjmulder_nl.md new file mode 100644 index 00000000..e589b2a8 --- /dev/null +++ b/content/sjmulder_nl.md @@ -0,0 +1,11 @@ ++++ +title = "sjmulder.nl" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2339 + +[extra] +source = "https://sjmulder.nl" +ratio = 100 +size = 2 ++++ diff --git a/content/slackjeff_com_br.md b/content/slackjeff_com_br.md new file mode 100644 index 00000000..5119f725 --- /dev/null +++ b/content/slackjeff_com_br.md @@ -0,0 +1,11 @@ ++++ +title = "slackjeff.com.br" +date = "2022-03-22" +updated = "2022-03-22" +weight = 228846 + +[extra] +source = "https://slackjeff.com.br/" +ratio = 14 +size = 223 ++++ diff --git a/content/sourcehut_org.md b/content/sourcehut_org.md new file mode 100644 index 00000000..b1df2c4f --- /dev/null +++ b/content/sourcehut_org.md @@ -0,0 +1,11 @@ ++++ +title = "sourcehut.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 82704 + +[extra] +source = "https://sourcehut.org/" +ratio = 8 +size = 81 ++++ diff --git a/content/sparkbox_github_io_bouncy-ball.md b/content/sparkbox_github_io_bouncy-ball.md new file mode 100644 index 00000000..5835eb7f --- /dev/null +++ b/content/sparkbox_github_io_bouncy-ball.md @@ -0,0 +1,11 @@ ++++ +title = "sparkbox.github.io/bouncy-ball" +date = "2022-03-22" +updated = "2022-03-22" +weight = 99778 + +[extra] +source = "https://sparkbox.github.io/bouncy-ball/" +ratio = 3 +size = 97 ++++ diff --git a/content/sparkbox_github_io_logo-experiments.md b/content/sparkbox_github_io_logo-experiments.md new file mode 100644 index 00000000..00416d15 --- /dev/null +++ b/content/sparkbox_github_io_logo-experiments.md @@ -0,0 +1,11 @@ ++++ +title = "sparkbox.github.io/logo-experiments" +date = "2022-03-22" +updated = "2022-03-22" +weight = 155036 + +[extra] +source = "https://sparkbox.github.io/logo-experiments/" +ratio = 1 +size = 151 ++++ diff --git a/content/sr_ht.md b/content/sr_ht.md new file mode 100644 index 00000000..1859185e --- /dev/null +++ b/content/sr_ht.md @@ -0,0 +1,11 @@ ++++ +title = "sr.ht" +date = "2022-03-22" +updated = "2022-03-22" +weight = 30192 + +[extra] +source = "https://sr.ht/" +ratio = 12 +size = 29 ++++ diff --git a/content/subreply_com.md b/content/subreply_com.md new file mode 100644 index 00000000..23ebe451 --- /dev/null +++ b/content/subreply_com.md @@ -0,0 +1,11 @@ ++++ +title = "subreply.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 46350 + +[extra] +source = "https://subreply.com" +ratio = 9 +size = 45 ++++ diff --git a/content/suckless_org.md b/content/suckless_org.md new file mode 100644 index 00000000..b386e14f --- /dev/null +++ b/content/suckless_org.md @@ -0,0 +1,11 @@ ++++ +title = "suckless.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 118683 + +[extra] +source = "https://suckless.org/" +ratio = 4 +size = 116 ++++ diff --git a/content/sugarfi_dev.md b/content/sugarfi_dev.md new file mode 100644 index 00000000..ce01031a --- /dev/null +++ b/content/sugarfi_dev.md @@ -0,0 +1,11 @@ ++++ +title = "sugarfi.dev" +date = "2022-03-22" +updated = "2022-03-22" +weight = 55615 + +[extra] +source = "https://sugarfi.dev/" +ratio = 4 +size = 54 ++++ diff --git a/content/susam_in.md b/content/susam_in.md new file mode 100644 index 00000000..e4f9bb4d --- /dev/null +++ b/content/susam_in.md @@ -0,0 +1,11 @@ ++++ +title = "susam.in" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4472 + +[extra] +source = "https://susam.in" +ratio = 47 +size = 4 ++++ diff --git a/content/swl_am.md b/content/swl_am.md new file mode 100644 index 00000000..80bc3ff5 --- /dev/null +++ b/content/swl_am.md @@ -0,0 +1,11 @@ ++++ +title = "swl.am" +date = "2022-03-22" +updated = "2022-03-22" +weight = 117899 + +[extra] +source = "https://swl.am/" +ratio = 3 +size = 115 ++++ diff --git a/content/t0_vc.md b/content/t0_vc.md new file mode 100644 index 00000000..c0ef7f49 --- /dev/null +++ b/content/t0_vc.md @@ -0,0 +1,11 @@ ++++ +title = "t0.vc" +date = "2022-03-22" +updated = "2022-03-22" +weight = 598 + +[extra] +source = "https://t0.vc/" +ratio = 100 +size = 1 ++++ diff --git a/content/temp_sh.md b/content/temp_sh.md new file mode 100644 index 00000000..a3023d42 --- /dev/null +++ b/content/temp_sh.md @@ -0,0 +1,11 @@ ++++ +title = "temp.sh" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1756 + +[extra] +source = "https://temp.sh/" +ratio = 100 +size = 2 ++++ diff --git a/content/text_npr_org.md b/content/text_npr_org.md new file mode 100644 index 00000000..7a965aa3 --- /dev/null +++ b/content/text_npr_org.md @@ -0,0 +1,11 @@ ++++ +title = "text.npr.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2805 + +[extra] +source = "https://text.npr.org" +ratio = 100 +size = 3 ++++ diff --git a/content/thebestmotherfucking_website.md b/content/thebestmotherfucking_website.md new file mode 100644 index 00000000..a3d7c6c2 --- /dev/null +++ b/content/thebestmotherfucking_website.md @@ -0,0 +1,11 @@ ++++ +title = "thebestmotherfucking.website" +date = "2022-03-22" +updated = "2022-03-22" +weight = 70609 + +[extra] +source = "https://thebestmotherfucking.website/" +ratio = 9 +size = 69 ++++ diff --git a/content/thejollyteapot_com.md b/content/thejollyteapot_com.md new file mode 100644 index 00000000..69878685 --- /dev/null +++ b/content/thejollyteapot_com.md @@ -0,0 +1,11 @@ ++++ +title = "thejollyteapot.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2819 + +[extra] +source = "https://thejollyteapot.com/" +ratio = 74 +size = 3 ++++ diff --git a/content/thelion_website.md b/content/thelion_website.md new file mode 100644 index 00000000..f937975d --- /dev/null +++ b/content/thelion_website.md @@ -0,0 +1,11 @@ ++++ +title = "thelion.website" +date = "2022-03-22" +updated = "2022-03-22" +weight = 18285 + +[extra] +source = "https://thelion.website/" +ratio = 23 +size = 18 ++++ diff --git a/content/thomas_me.md b/content/thomas_me.md new file mode 100644 index 00000000..cd21b504 --- /dev/null +++ b/content/thomas_me.md @@ -0,0 +1,11 @@ ++++ +title = "thomas.me" +date = "2022-03-22" +updated = "2022-03-22" +weight = 22430 + +[extra] +source = "https://thomas.me/" +ratio = 27 +size = 22 ++++ diff --git a/content/timotijhof_net.md b/content/timotijhof_net.md new file mode 100644 index 00000000..5f28ec93 --- /dev/null +++ b/content/timotijhof_net.md @@ -0,0 +1,11 @@ ++++ +title = "timotijhof.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 14691 + +[extra] +source = "https://timotijhof.net/" +ratio = 14 +size = 14 ++++ diff --git a/content/tom_kobalt_dev_map.md b/content/tom_kobalt_dev_map.md new file mode 100644 index 00000000..bcbde700 --- /dev/null +++ b/content/tom_kobalt_dev_map.md @@ -0,0 +1,11 @@ ++++ +title = "tom.kobalt.dev/map" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2556 + +[extra] +source = "https://tom.kobalt.dev/map" +ratio = 100 +size = 2 ++++ diff --git a/content/tryhexadecimal_com.md b/content/tryhexadecimal_com.md new file mode 100644 index 00000000..1d697cc0 --- /dev/null +++ b/content/tryhexadecimal_com.md @@ -0,0 +1,11 @@ ++++ +title = "tryhexadecimal.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 12561 + +[extra] +source = "https://tryhexadecimal.com/" +ratio = 48 +size = 12 ++++ diff --git a/content/ttntm_me.md b/content/ttntm_me.md new file mode 100644 index 00000000..e2c2be77 --- /dev/null +++ b/content/ttntm_me.md @@ -0,0 +1,11 @@ ++++ +title = "ttntm.me" +date = "2022-03-22" +updated = "2022-03-22" +weight = 58023 + +[extra] +source = "https://ttntm.me/" +ratio = 6 +size = 57 ++++ diff --git a/content/uberspace_de.md b/content/uberspace_de.md new file mode 100644 index 00000000..d68a47d0 --- /dev/null +++ b/content/uberspace_de.md @@ -0,0 +1,11 @@ ++++ +title = "uberspace.de" +date = "2022-03-22" +updated = "2022-03-22" +weight = 151604 + +[extra] +source = "https://uberspace.de/" +ratio = 5 +size = 148 ++++ diff --git a/content/uglyduck_ca.md b/content/uglyduck_ca.md new file mode 100644 index 00000000..8d0454c2 --- /dev/null +++ b/content/uglyduck_ca.md @@ -0,0 +1,11 @@ ++++ +title = "uglyduck.ca" +date = "2022-03-22" +updated = "2022-03-22" +weight = 6638 + +[extra] +source = "https://uglyduck.ca" +ratio = 90 +size = 6 ++++ diff --git a/content/ulpaulpa_de.md b/content/ulpaulpa_de.md new file mode 100644 index 00000000..65432732 --- /dev/null +++ b/content/ulpaulpa_de.md @@ -0,0 +1,11 @@ ++++ +title = "ulpaulpa.de" +date = "2022-03-22" +updated = "2022-03-22" +weight = 21634 + +[extra] +source = "https://ulpaulpa.de/" +ratio = 22 +size = 21 ++++ diff --git a/content/ultimateelectronicsbook_com.md b/content/ultimateelectronicsbook_com.md new file mode 100644 index 00000000..43b08eee --- /dev/null +++ b/content/ultimateelectronicsbook_com.md @@ -0,0 +1,11 @@ ++++ +title = "ultimateelectronicsbook.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 257894 + +[extra] +source = "https://ultimateelectronicsbook.com/" +ratio = 3 +size = 252 ++++ diff --git a/content/unix_lgbt.md b/content/unix_lgbt.md new file mode 100644 index 00000000..639e6a00 --- /dev/null +++ b/content/unix_lgbt.md @@ -0,0 +1,11 @@ ++++ +title = "unix.lgbt" +date = "2022-03-22" +updated = "2022-03-22" +weight = 10522 + +[extra] +source = "https://unix.lgbt/" +ratio = 37 +size = 10 ++++ diff --git a/content/unixsheikh_com.md b/content/unixsheikh_com.md new file mode 100644 index 00000000..cf7aa199 --- /dev/null +++ b/content/unixsheikh_com.md @@ -0,0 +1,11 @@ ++++ +title = "unixsheikh.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 19238 + +[extra] +source = "https://unixsheikh.com/" +ratio = 37 +size = 19 ++++ diff --git a/content/usrme_xyz.md b/content/usrme_xyz.md new file mode 100644 index 00000000..b4a9c23e --- /dev/null +++ b/content/usrme_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "usrme.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 14856 + +[extra] +source = "https://usrme.xyz/" +ratio = 6 +size = 15 ++++ diff --git a/content/ut2_weba_ru.md b/content/ut2_weba_ru.md new file mode 100644 index 00000000..13a31a73 --- /dev/null +++ b/content/ut2_weba_ru.md @@ -0,0 +1,11 @@ ++++ +title = "ut2.weba.ru" +date = "2022-03-22" +updated = "2022-03-22" +weight = 168146 + +[extra] +source = "https://ut2.weba.ru/" +ratio = 1 +size = 164 ++++ diff --git a/content/ut99_weba_ru.md b/content/ut99_weba_ru.md new file mode 100644 index 00000000..57e1b1ee --- /dev/null +++ b/content/ut99_weba_ru.md @@ -0,0 +1,11 @@ ++++ +title = "ut99.weba.ru" +date = "2022-03-22" +updated = "2022-03-22" +weight = 122849 + +[extra] +source = "https://ut99.weba.ru/" +ratio = 2 +size = 120 ++++ diff --git a/content/utsuho_rocks.md b/content/utsuho_rocks.md new file mode 100644 index 00000000..61a7dd47 --- /dev/null +++ b/content/utsuho_rocks.md @@ -0,0 +1,11 @@ ++++ +title = "utsuho.rocks" +date = "2022-03-22" +updated = "2022-03-22" +weight = 100296 + +[extra] +source = "https://utsuho.rocks/" +ratio = 6 +size = 98 ++++ diff --git a/content/volleyball-baustetten_de.md b/content/volleyball-baustetten_de.md new file mode 100644 index 00000000..74efde75 --- /dev/null +++ b/content/volleyball-baustetten_de.md @@ -0,0 +1,11 @@ ++++ +title = "volleyball-baustetten.de" +date = "2022-03-22" +updated = "2022-03-22" +weight = 96409 + +[extra] +source = "https://volleyball-baustetten.de/" +ratio = 4 +size = 94 ++++ diff --git a/content/webperf_xyz.md b/content/webperf_xyz.md new file mode 100644 index 00000000..2891b1cf --- /dev/null +++ b/content/webperf_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "webperf.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 107081 + +[extra] +source = "https://webperf.xyz" +ratio = 4 +size = 105 ++++ diff --git a/content/webzine_puffy_cafe.md b/content/webzine_puffy_cafe.md new file mode 100644 index 00000000..a7eaee07 --- /dev/null +++ b/content/webzine_puffy_cafe.md @@ -0,0 +1,11 @@ ++++ +title = "webzine.puffy.cafe" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2604 + +[extra] +source = "https://webzine.puffy.cafe/" +ratio = 100 +size = 3 ++++ diff --git a/content/werc_cat-v_org.md b/content/werc_cat-v_org.md new file mode 100644 index 00000000..1ef7dcc5 --- /dev/null +++ b/content/werc_cat-v_org.md @@ -0,0 +1,11 @@ ++++ +title = "werc.cat-v.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 7729 + +[extra] +source = "http://werc.cat-v.org/" +ratio = 90 +size = 8 ++++ diff --git a/content/wilde-it_co_uk.md b/content/wilde-it_co_uk.md new file mode 100644 index 00000000..cecd286b --- /dev/null +++ b/content/wilde-it_co_uk.md @@ -0,0 +1,11 @@ ++++ +title = "wilde-it.co.uk" +date = "2022-03-22" +updated = "2022-03-22" +weight = 138886 + +[extra] +source = "https://wilde-it.co.uk/" +ratio = 3 +size = 136 ++++ diff --git a/content/willcodefor_beer.md b/content/willcodefor_beer.md new file mode 100644 index 00000000..9a82c5be --- /dev/null +++ b/content/willcodefor_beer.md @@ -0,0 +1,11 @@ ++++ +title = "willcodefor.beer" +date = "2022-03-22" +updated = "2022-03-22" +weight = 24696 + +[extra] +source = "https://willcodefor.beer/" +ratio = 26 +size = 24 ++++ diff --git a/content/wondroushealing_com.md b/content/wondroushealing_com.md new file mode 100644 index 00000000..e78dc182 --- /dev/null +++ b/content/wondroushealing_com.md @@ -0,0 +1,11 @@ ++++ +title = "wondroushealing.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 227678 + +[extra] +source = "https://wondroushealing.com" +ratio = 3 +size = 222 ++++ diff --git a/content/worldti_me.md b/content/worldti_me.md new file mode 100644 index 00000000..f668d467 --- /dev/null +++ b/content/worldti_me.md @@ -0,0 +1,11 @@ ++++ +title = "worldti.me" +date = "2022-03-22" +updated = "2022-03-22" +weight = 42278 + +[extra] +source = "https://worldti.me" +ratio = 7 +size = 41 ++++ diff --git a/content/www_beh_uk.md b/content/www_beh_uk.md new file mode 100644 index 00000000..a3864939 --- /dev/null +++ b/content/www_beh_uk.md @@ -0,0 +1,11 @@ ++++ +title = "www.beh.uk" +date = "2022-03-22" +updated = "2022-03-22" +weight = 68934 + +[extra] +source = "https://www.beh.uk/" +ratio = 9 +size = 67 ++++ diff --git a/content/www_borfigat_org.md b/content/www_borfigat_org.md new file mode 100644 index 00000000..cc85777e --- /dev/null +++ b/content/www_borfigat_org.md @@ -0,0 +1,11 @@ ++++ +title = "www.borfigat.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 122828 + +[extra] +source = "https://www.borfigat.org/" +ratio = 2 +size = 120 ++++ diff --git a/content/www_bryanbraun_com.md b/content/www_bryanbraun_com.md new file mode 100644 index 00000000..c3425bc6 --- /dev/null +++ b/content/www_bryanbraun_com.md @@ -0,0 +1,11 @@ ++++ +title = "www.bryanbraun.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 91595 + +[extra] +source = "https://www.bryanbraun.com/" +ratio = 11 +size = 89 ++++ diff --git a/content/www_bryanbraun_com_after-dark-css.md b/content/www_bryanbraun_com_after-dark-css.md new file mode 100644 index 00000000..c7473e76 --- /dev/null +++ b/content/www_bryanbraun_com_after-dark-css.md @@ -0,0 +1,11 @@ ++++ +title = "www.bryanbraun.com/after-dark-css" +date = "2022-03-22" +updated = "2022-03-22" +weight = 201526 + +[extra] +source = "https://www.bryanbraun.com/after-dark-css/" +ratio = 61 +size = 197 ++++ diff --git a/content/www_bryanbraun_com_anchorjs.md b/content/www_bryanbraun_com_anchorjs.md new file mode 100644 index 00000000..8f5b28ad --- /dev/null +++ b/content/www_bryanbraun_com_anchorjs.md @@ -0,0 +1,11 @@ ++++ +title = "www.bryanbraun.com/anchorjs" +date = "2022-03-22" +updated = "2022-03-22" +weight = 166157 + +[extra] +source = "https://www.bryanbraun.com/anchorjs/" +ratio = 6 +size = 162 ++++ diff --git a/content/www_bryanbraun_com_connect-four.md b/content/www_bryanbraun_com_connect-four.md new file mode 100644 index 00000000..bcb2ef8c --- /dev/null +++ b/content/www_bryanbraun_com_connect-four.md @@ -0,0 +1,11 @@ ++++ +title = "www.bryanbraun.com/connect-four" +date = "2022-03-22" +updated = "2022-03-22" +weight = 46818 + +[extra] +source = "https://www.bryanbraun.com/connect-four/" +ratio = 3 +size = 46 ++++ diff --git a/content/www_danielwasserlaufquicklinks_com.md b/content/www_danielwasserlaufquicklinks_com.md new file mode 100644 index 00000000..fa0ab4c8 --- /dev/null +++ b/content/www_danielwasserlaufquicklinks_com.md @@ -0,0 +1,11 @@ ++++ +title = "www.danielwasserlaufquicklinks.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 107304 + +[extra] +source = "http://www.danielwasserlaufquicklinks.com/" +ratio = 100 +size = 105 ++++ diff --git a/content/www_dustri_org.md b/content/www_dustri_org.md new file mode 100644 index 00000000..f0f6ff8a --- /dev/null +++ b/content/www_dustri_org.md @@ -0,0 +1,11 @@ ++++ +title = "www.dustri.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 27198 + +[extra] +source = "https://www.dustri.org" +ratio = 5 +size = 27 ++++ diff --git a/content/www_groovestomp_com.md b/content/www_groovestomp_com.md new file mode 100644 index 00000000..6546a573 --- /dev/null +++ b/content/www_groovestomp_com.md @@ -0,0 +1,11 @@ ++++ +title = "www.groovestomp.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 3130 + +[extra] +source = "https://www.groovestomp.com/" +ratio = 36 +size = 3 ++++ diff --git a/content/www_migadu_com.md b/content/www_migadu_com.md new file mode 100644 index 00000000..bd3df270 --- /dev/null +++ b/content/www_migadu_com.md @@ -0,0 +1,11 @@ ++++ +title = "www.migadu.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 208591 + +[extra] +source = "https://www.migadu.com/" +ratio = 2 +size = 204 ++++ diff --git a/content/www_minimumviable_it.md b/content/www_minimumviable_it.md new file mode 100644 index 00000000..decf1912 --- /dev/null +++ b/content/www_minimumviable_it.md @@ -0,0 +1,11 @@ ++++ +title = "www.minimumviable.it" +date = "2022-03-22" +updated = "2022-03-22" +weight = 4822 + +[extra] +source = "https://www.minimumviable.it/" +ratio = 57 +size = 5 ++++ diff --git a/content/www_neelc_org_about.md b/content/www_neelc_org_about.md new file mode 100644 index 00000000..2518618a --- /dev/null +++ b/content/www_neelc_org_about.md @@ -0,0 +1,11 @@ ++++ +title = "www.neelc.org/about" +date = "2022-03-22" +updated = "2022-03-22" +weight = 61981 + +[extra] +source = "https://www.neelc.org/about/" +ratio = 6 +size = 61 ++++ diff --git a/content/www_openbsd_org.md b/content/www_openbsd_org.md new file mode 100644 index 00000000..d0783c2c --- /dev/null +++ b/content/www_openbsd_org.md @@ -0,0 +1,11 @@ ++++ +title = "www.openbsd.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 159078 + +[extra] +source = "https://www.openbsd.org/" +ratio = 2 +size = 155 ++++ diff --git a/content/www_oskarlindgren_se.md b/content/www_oskarlindgren_se.md new file mode 100644 index 00000000..fb4ecee6 --- /dev/null +++ b/content/www_oskarlindgren_se.md @@ -0,0 +1,11 @@ ++++ +title = "www.oskarlindgren.se" +date = "2022-03-22" +updated = "2022-03-22" +weight = 113294 + +[extra] +source = "https://www.oskarlindgren.se/" +ratio = 3 +size = 111 ++++ diff --git a/content/www_paritybit_ca.md b/content/www_paritybit_ca.md new file mode 100644 index 00000000..d239da70 --- /dev/null +++ b/content/www_paritybit_ca.md @@ -0,0 +1,11 @@ ++++ +title = "www.paritybit.ca" +date = "2022-03-22" +updated = "2022-03-22" +weight = 8804 + +[extra] +source = "https://www.paritybit.ca/" +ratio = 67 +size = 9 ++++ diff --git a/content/www_powerpointkaraoke_com.md b/content/www_powerpointkaraoke_com.md new file mode 100644 index 00000000..6789722d --- /dev/null +++ b/content/www_powerpointkaraoke_com.md @@ -0,0 +1,11 @@ ++++ +title = "www.powerpointkaraoke.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 97815 + +[extra] +source = "https://www.powerpointkaraoke.com/" +ratio = 6 +size = 96 ++++ diff --git a/content/www_rowlingindex_org.md b/content/www_rowlingindex_org.md new file mode 100644 index 00000000..d603681d --- /dev/null +++ b/content/www_rowlingindex_org.md @@ -0,0 +1,11 @@ ++++ +title = "www.rowlingindex.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 71110 + +[extra] +source = "https://www.rowlingindex.org/" +ratio = 19 +size = 69 ++++ diff --git a/content/www_slowernews_com.md b/content/www_slowernews_com.md new file mode 100644 index 00000000..e94747a9 --- /dev/null +++ b/content/www_slowernews_com.md @@ -0,0 +1,11 @@ ++++ +title = "www.slowernews.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 116043 + +[extra] +source = "https://www.slowernews.com/" +ratio = 20 +size = 113 ++++ diff --git a/content/www_speedshop_co.md b/content/www_speedshop_co.md new file mode 100644 index 00000000..61786d5d --- /dev/null +++ b/content/www_speedshop_co.md @@ -0,0 +1,11 @@ ++++ +title = "www.speedshop.co" +date = "2022-03-22" +updated = "2022-03-22" +weight = 85554 + +[extra] +source = "https://www.speedshop.co/" +ratio = 17 +size = 84 ++++ diff --git a/content/www_tarsnap_com.md b/content/www_tarsnap_com.md new file mode 100644 index 00000000..5efc2f28 --- /dev/null +++ b/content/www_tarsnap_com.md @@ -0,0 +1,11 @@ ++++ +title = "www.tarsnap.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 111984 + +[extra] +source = "https://www.tarsnap.com/" +ratio = 3 +size = 109 ++++ diff --git a/content/www_tuhs_org.md b/content/www_tuhs_org.md new file mode 100644 index 00000000..42d2bbbc --- /dev/null +++ b/content/www_tuhs_org.md @@ -0,0 +1,11 @@ ++++ +title = "www.tuhs.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 142231 + +[extra] +source = "https://www.tuhs.org/" +ratio = 1 +size = 139 ++++ diff --git a/content/www_unindented_org.md b/content/www_unindented_org.md new file mode 100644 index 00000000..bd3d2b67 --- /dev/null +++ b/content/www_unindented_org.md @@ -0,0 +1,11 @@ ++++ +title = "www.unindented.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 49785 + +[extra] +source = "https://www.unindented.org/" +ratio = 11 +size = 49 ++++ diff --git a/content/www_usecue_com.md b/content/www_usecue_com.md new file mode 100644 index 00000000..e00c01d3 --- /dev/null +++ b/content/www_usecue_com.md @@ -0,0 +1,11 @@ ++++ +title = "www.usecue.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 33281 + +[extra] +source = "https://www.usecue.com" +ratio = 4 +size = 33 ++++ diff --git a/content/www_verybad_link.md b/content/www_verybad_link.md new file mode 100644 index 00000000..39ae3e45 --- /dev/null +++ b/content/www_verybad_link.md @@ -0,0 +1,11 @@ ++++ +title = "www.verybad.link" +date = "2022-03-22" +updated = "2022-03-22" +weight = 95634 + +[extra] +source = "http://www.verybad.link/" +ratio = 3 +size = 93 ++++ diff --git a/content/www_zinzy_website.md b/content/www_zinzy_website.md new file mode 100644 index 00000000..4c95d750 --- /dev/null +++ b/content/www_zinzy_website.md @@ -0,0 +1,11 @@ ++++ +title = "www.zinzy.website" +date = "2022-03-22" +updated = "2022-03-22" +weight = 118801 + +[extra] +source = "https://www.zinzy.website/" +ratio = 24 +size = 116 ++++ diff --git a/content/xigoi_neocities_org.md b/content/xigoi_neocities_org.md new file mode 100644 index 00000000..335b1c76 --- /dev/null +++ b/content/xigoi_neocities_org.md @@ -0,0 +1,11 @@ ++++ +title = "xigoi.neocities.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 5977 + +[extra] +source = "https://xigoi.neocities.org/" +ratio = 51 +size = 6 ++++ diff --git a/content/xiu_io.md b/content/xiu_io.md new file mode 100644 index 00000000..b73e6451 --- /dev/null +++ b/content/xiu_io.md @@ -0,0 +1,11 @@ ++++ +title = "xiu.io" +date = "2022-03-22" +updated = "2022-03-22" +weight = 161318 + +[extra] +source = "https://xiu.io/" +ratio = 6 +size = 158 ++++ diff --git a/content/xmdr_nl.md b/content/xmdr_nl.md new file mode 100644 index 00000000..d51c3930 --- /dev/null +++ b/content/xmdr_nl.md @@ -0,0 +1,11 @@ ++++ +title = "xmdr.nl" +date = "2022-03-22" +updated = "2022-03-22" +weight = 15849 + +[extra] +source = "https://xmdr.nl/" +ratio = 15 +size = 15 ++++ diff --git a/content/xnaas_info.md b/content/xnaas_info.md new file mode 100644 index 00000000..ef07e60f --- /dev/null +++ b/content/xnaas_info.md @@ -0,0 +1,11 @@ ++++ +title = "xnaas.info" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2935 + +[extra] +source = "https://xnaas.info" +ratio = 47 +size = 3 ++++ diff --git a/content/xslendi_xyz.md b/content/xslendi_xyz.md new file mode 100644 index 00000000..79bd88da --- /dev/null +++ b/content/xslendi_xyz.md @@ -0,0 +1,11 @@ ++++ +title = "xslendi.xyz" +date = "2022-03-22" +updated = "2022-03-22" +weight = 2865 + +[extra] +source = "https://xslendi.xyz/" +ratio = 77 +size = 3 ++++ diff --git a/content/xubuntu_org.md b/content/xubuntu_org.md new file mode 100644 index 00000000..971700b3 --- /dev/null +++ b/content/xubuntu_org.md @@ -0,0 +1,11 @@ ++++ +title = "xubuntu.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 157672 + +[extra] +source = "https://xubuntu.org/" +ratio = 3 +size = 154 ++++ diff --git a/content/ybad_name.md b/content/ybad_name.md new file mode 100644 index 00000000..b4651d23 --- /dev/null +++ b/content/ybad_name.md @@ -0,0 +1,11 @@ ++++ +title = "ybad.name" +date = "2022-03-22" +updated = "2022-03-22" +weight = 1379 + +[extra] +source = "https://ybad.name/" +ratio = 0 +size = 1 ++++ diff --git a/content/ylukem_com.md b/content/ylukem_com.md new file mode 100644 index 00000000..a5d0cec2 --- /dev/null +++ b/content/ylukem_com.md @@ -0,0 +1,11 @@ ++++ +title = "ylukem.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 59611 + +[extra] +source = "https://ylukem.com/" +ratio = 3 +size = 58 ++++ diff --git a/content/yorickpeterse_com.md b/content/yorickpeterse_com.md new file mode 100644 index 00000000..4aa573bb --- /dev/null +++ b/content/yorickpeterse_com.md @@ -0,0 +1,11 @@ ++++ +title = "yorickpeterse.com" +date = "2022-03-22" +updated = "2022-03-22" +weight = 18277 + +[extra] +source = "https://yorickpeterse.com/" +ratio = 13 +size = 18 ++++ diff --git a/content/zakr_es.md b/content/zakr_es.md new file mode 100644 index 00000000..30a141c7 --- /dev/null +++ b/content/zakr_es.md @@ -0,0 +1,11 @@ ++++ +title = "zakr.es" +date = "2022-03-22" +updated = "2022-03-22" +weight = 60431 + +[extra] +source = "https://zakr.es/" +ratio = 5 +size = 59 ++++ diff --git a/content/zakr_es_blog.md b/content/zakr_es_blog.md new file mode 100644 index 00000000..efe1980c --- /dev/null +++ b/content/zakr_es_blog.md @@ -0,0 +1,11 @@ ++++ +title = "zakr.es/blog" +date = "2022-03-22" +updated = "2022-03-22" +weight = 155785 + +[extra] +source = "https://zakr.es/blog/" +ratio = 19 +size = 152 ++++ diff --git a/content/zn80_net.md b/content/zn80_net.md new file mode 100644 index 00000000..d6be97ec --- /dev/null +++ b/content/zn80_net.md @@ -0,0 +1,11 @@ ++++ +title = "zn80.net" +date = "2022-03-22" +updated = "2022-03-22" +weight = 11961 + +[extra] +source = "https://zn80.net/" +ratio = 9 +size = 12 ++++ diff --git a/content/zupzup_org.md b/content/zupzup_org.md new file mode 100644 index 00000000..1cc5780f --- /dev/null +++ b/content/zupzup_org.md @@ -0,0 +1,11 @@ ++++ +title = "zupzup.org" +date = "2022-03-22" +updated = "2022-03-22" +weight = 7227 + +[extra] +source = "https://zupzup.org/" +ratio = 100 +size = 7 ++++ diff --git a/content/úl_de.md b/content/úl_de.md new file mode 100644 index 00000000..c55c5bd3 --- /dev/null +++ b/content/úl_de.md @@ -0,0 +1,11 @@ ++++ +title = "úl.de" +date = "2022-03-22" +updated = "2022-03-22" +weight = 21634 + +[extra] +source = "https://úl.de/" +ratio = 22 +size = 21 ++++ diff --git a/content/սոնա_հայ.md b/content/սոնա_հայ.md new file mode 100644 index 00000000..01a55a37 --- /dev/null +++ b/content/սոնա_հայ.md @@ -0,0 +1,11 @@ ++++ +title = "սոնա.հայ" +date = "2022-03-22" +updated = "2022-03-22" +weight = 651 + +[extra] +source = "https://սոնա.հայ/" +ratio = 100 +size = 1 ++++ diff --git a/index.d.ts b/index.d.ts new file mode 100644 index 00000000..ca79559a --- /dev/null +++ b/index.d.ts @@ -0,0 +1,50 @@ +type PageRecord = { + title: string; + date: string; + updated: string; + weight: number; + extra: { + source: string; + ratio: number; + size: number; + }; +} + +type StringMap = { + [key: string]: string; +} + +type Status = { + status: 'awaiting' | 'running' | 'complete' | 'failed'; + url: string; +} + +type Metric = { + scores: { + pageWeight: number; + requests: number; + domComplexity: number; + javascriptComplexity: number; + badJavascript: number; + jQuery: number; + cssComplexity: number; + badCSS: number; + fonts: number; + serverConfig: number; + globalScore: number; + }; + metrics: { + requests: number; + bodySize: number; + contentLength: number; + htmlSize: number; + cssSize: number; + jsSize: number; + jsonSize: number; + imageSize: number; + videoSize: number; + webfontSize: number; + base64Size: number; + otherSize: number; + } +} diff --git a/index.ts b/index.ts new file mode 100644 index 00000000..54d77727 --- /dev/null +++ b/index.ts @@ -0,0 +1,85 @@ +import './index.d.ts' +import { url2title, getPageRecord, writeRecord } from './analyser/toolkit.ts' +import { requestMetricsRun, checkStatus, retrieveMetrics } from './analyser/metrics.ts' + +const INPUT_FILE = Deno.args[0] ?? './pages.txt' +const OUTPUT_PATH = Deno.args[1] ?? './content' // results are written here +const RECHECK_THRESHOLD = 60*60*24*7*1000 // recheck pages older than 1 week +const REJECT_THRESHOLD = 262144 // 256kb (duh) + +async function getPageList (): Promise { + const inputContent = await Deno.readTextFile(INPUT_FILE) + return inputContent.split('\n').filter(line => line.startsWith('http')) +} + +const now = Date.now() +const pages = await getPageList() +const pagesToUpdate: string[] = [] + +pages.forEach(async (url) => { + const record = await getPageRecord(url, OUTPUT_PATH) + const lastUpdated = Date.parse(record?.updated || '') + const needsCheck = !record || (now - lastUpdated) > RECHECK_THRESHOLD + + if (!needsCheck) { + console.log(url, 'is up-to-date') + return + } + + const runId = await requestMetricsRun(url) + if (runId) { + console.log(url, 'new or outdated, runId is', runId) + pagesToUpdate.push(runId) + } + +}) + +async function updateRecords () { + if (pagesToUpdate.length === 0) return // done, yeah! + + const runId = pagesToUpdate.at(-1) || '' // make tsc happy + const { url, status } = await checkStatus(runId) + + // TODO: handle failures more gracefully + if (status === 'failed') { + pagesToUpdate.pop() + console.log(url, 'analysis failed') + } else if (status === 'complete') { + pagesToUpdate.pop() + const oldRecord = await getPageRecord(url, OUTPUT_PATH) + const metrics = await retrieveMetrics(runId) + + if (metrics) { + // poor mans toISODateString + const now = (new Date()).toISOString().split('T')[0] + + const weight = metrics.metrics.contentLength + const ratio = Math.round((metrics.metrics.htmlSize / weight) * 100) + + if (weight > REJECT_THRESHOLD) { + console.log(url, 'is not allowed in, weighs', Math.round(weight / 1024), 'kb') + } + + const record: PageRecord = { + title: url2title(url), + date: oldRecord === null ? now : oldRecord.date, + updated: now, + weight, + extra: { + source: url, + ratio, + size: Math.round(weight / 1024) + } + } + + // TODO: check success + await writeRecord(record, url, OUTPUT_PATH) + console.log(url, 'updated') + } else { + console.error('failed to retrieve results for', url, runId) + } + } + setTimeout(() => updateRecords(), 500) // run again until the list is empty +} + +setTimeout(() => updateRecords(), 1000) diff --git a/package.json b/package.json index e3206008..e18a293b 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,10 @@ { - "name": "the-250kb-club", - "version": "0.0.1", - "scripts": { - "dev": "svelte dev", - "build": "svelte build" - }, - "devDependencies": { - "@sveltejs/adapter-node": "0.0.14", - "@sveltejs/adapter-static": "^0.0.14", - "@sveltejs/kit": "0.0.25", - "@sveltejs/snowpack-config": "0.0.5", - "svelte": "^3.29.0", - "chalk": "^4.1.0", - "phantomas": "^2.0.0" - } + "name": "the-250kb-club-ng", + "version": "0.0.1", + "description": "Exclusive club of websites that weigh 256kb or less", + "main": "index.ts", + "repository": "https://git.k0r.in/n/the-250kb-club", + "author": "koehr ", + "license": "MIT", + "private": true } diff --git a/pages.txt b/pages.txt index 3ecad5f1..c016c605 100644 --- a/pages.txt +++ b/pages.txt @@ -26,11 +26,9 @@ https://monokai.nl https://flatpackapps.com https://frontaid.io https://worldti.me -https://sneak.berlin https://jeremysarber.com https://kunalmarwaha.com/ https://chrisportela.com -https://weboas.is/ https://jlelse.blog/ https://unix.lgbt/ https://sr.ht/ @@ -38,7 +36,6 @@ https://sourcehut.org/ http://oxenburypartners.com/ https://1mb.club/ https://freesolitaire.win/ -https://motherfuckingwebsite.com/ https://berkshirehathaway.com https://susam.in https://bridge.simplefin.org @@ -46,7 +43,7 @@ https://lukeramsden.com https://mataroa.blog https://jvanelian.dev https://uglyduck.ca -# https://legiblenews.com # phantomas throws an error +https://legiblenews.com https://cronokirby.com https://lite.cnn.com https://john-doe.neocities.org @@ -70,15 +67,12 @@ https://www.tarsnap.com/ https://ylukem.com/ https://iain.in/ https://nicetranslator.com/ -http://dotnom.com/ https://jvelo.at/ http://dpldocs.info/this-week-in-d/Blog.html https://lucianmarin.com/ https://www.rowlingindex.org/ https://uberspace.de/ -https://craigslist.org/ https://salixos.org/ -https://fraction.io/ http://www.danielwasserlaufquicklinks.com/ https://bernsteinbear.com/ https://www.speedshop.co/ @@ -88,9 +82,7 @@ https://n.2p5.xyz/ https://jakob.kaivo.net/ https://alexschroeder.ch/ https://humaidq.ae/ -http://stratus3d.com/ https://jrballesteros05.codeberg.page/ -http://www.p01.org/ https://concise-encoding.org/ http://gerikson.com/hnlo/ http://gerikson.com/ @@ -101,8 +93,6 @@ https://phreedom.club/ https://kerkour.fr/ https://zupzup.org/ https://processwire.dev/ -https://processwire.com/ -https://www.gwern.net/index https://guts.plus/ http://karolis.koncevicius.lt/ https://blog.circuitsofimagination.com/ @@ -121,7 +111,6 @@ https://www.powerpointkaraoke.com/ https://sparkbox.github.io/bouncy-ball/ https://sparkbox.github.io/logo-experiments/ https://www.bryanbraun.com/connect-four/ -https://www.bryanbraun.com/checkboxland/ https://www.bryanbraun.com/after-dark-css/ https://www.bryanbraun.com/anchorjs/ https://www.bryanbraun.com/ @@ -139,14 +128,11 @@ https://ache.one/ https://www.minimumviable.it/ https://emersion.fr/ https://drewdevault.com/ -https://www.sonniesedge.net/ https://christine.website/ http://cat-v.org/ -http://9front.org/ http://werc.cat-v.org/ https://suckless.org/ https://mikegerwitz.com/ -https://xpil.eu/ https://midnight.pub/ https://shazow.net/ https://felt.dev/ @@ -170,7 +156,6 @@ https://natestemen.xyz/ https://bnolet.me https://remoteroast.club/ https://10kbclub.com -https://aajkakavi.in/ https://box.matto.nl https://zakr.es/ https://zakr.es/blog/ @@ -188,7 +173,7 @@ https://www.migadu.com/ https://thelion.website/ https://codingotaku.com/ https://allien.work/ -https://MinWiz.com +https://minwiz.com https://cosmo.red https://lectupedia.com/en/ https://xiu.io/ @@ -196,9 +181,7 @@ https://kevq.uk/ https://motz-berlin.de/ https://cycloneblaze.net/ https://kayafirat.com/ -https://www.sensorstation.co/ https://www.zinzy.website/ -https://davidkuehnert.de/ https://www.neelc.org/about/ https://www.groovestomp.com/ https://binyam.in/ @@ -209,7 +192,6 @@ https://oscarforner.com/ https://www.openbsd.org/ https://majiehong.com/ https://ybad.name/ -https://parts.horse/parts https://inatri.com/ https://thomas.me/ https://martin.baillie.id/ @@ -241,7 +223,6 @@ https://swl.am/ https://սոնա.հայ/ https://norayr.am/ https://antranigv.am/ -https://timog.org/ https://slackjeff.com.br/ https://hmbrg.xyz/ https://noulin.net/blog/ @@ -249,8 +230,6 @@ https://bduck.xyz/ https://dyremyhr.no/ https://artemislena.eu/ https://gtrr.artemislena.eu/ -https://editions-du-26-octobre.com/ -https://karpathy.ai/ https://nihar.page/ https://linuxguideandhints.com/ https://0xedward.io/ @@ -282,10 +261,8 @@ https://xnaas.info https://blmayer.dev/ https://qubyte.codes/ https://daniel-siepmann.de/ -https://sexiarz.pl/ https://kj7nzl.net/ https://thejollyteapot.com/ -http://gauravdafauti.in/ https://boehs.org/ https://rc-lite.xyz/ https://manuelmoreale.com/ @@ -297,9 +274,11 @@ https://xmdr.nl/ https://notes.eatonphil.com/ https://si3t.ch/ https://ccsleep.net/ -https://flatpackapps.com/ https://s1.flatpackapps.com/app.php?appId=22 https://jason.nabein.me/ https://volleyball-baustetten.de/ https://satchlj.us/ - +https://ihsaan.glitch.me/ +https://www.borfigat.org/ +https://anabeatriz.dev/ +https://grapheneos.org/ diff --git a/public/0xedward-io/index.html b/public/0xedward-io/index.html new file mode 100644 index 00000000..f620890f --- /dev/null +++ b/public/0xedward-io/index.html @@ -0,0 +1,135 @@ +The 250kb Club

0xedward.io

Proud member of the exclusive 250kb club!

|

0xedward.io is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 88%.

back

\ No newline at end of file diff --git a/public/0xff-nu/index.html b/public/0xff-nu/index.html new file mode 100644 index 00000000..5b4129a2 --- /dev/null +++ b/public/0xff-nu/index.html @@ -0,0 +1,135 @@ +The 250kb Club

0xff.nu

Proud member of the exclusive 250kb club!

|

0xff.nu is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 71%.

back

\ No newline at end of file diff --git a/public/10kbclub-com/index.html b/public/10kbclub-com/index.html new file mode 100644 index 00000000..246abee7 --- /dev/null +++ b/public/10kbclub-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

10kbclub.com

Proud member of the exclusive 250kb club!

|

10kbclub.com is a member of the exclusive 250kb club. The page weighs only 7kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/1mb-club/index.html b/public/1mb-club/index.html new file mode 100644 index 00000000..f493fb7e --- /dev/null +++ b/public/1mb-club/index.html @@ -0,0 +1,135 @@ +The 250kb Club

1mb.club

Proud member of the exclusive 250kb club!

|

1mb.club is a member of the exclusive 250kb club. The page weighs only 13kb and has a content-to-bloat ratio of 96%.

back

\ No newline at end of file diff --git a/public/250kb-club/index.html b/public/250kb-club/index.html new file mode 100644 index 00000000..89c85280 --- /dev/null +++ b/public/250kb-club/index.html @@ -0,0 +1,135 @@ +The 250kb Club

250kb.club

Proud member of the exclusive 250kb club!

|

250kb.club is a member of the exclusive 250kb club. The page weighs only 35kb and has a content-to-bloat ratio of 29%.

back

\ No newline at end of file diff --git a/public/404.html b/public/404.html new file mode 100644 index 00000000..9634e573 --- /dev/null +++ b/public/404.html @@ -0,0 +1 @@ +404 Not Found

404 Not Found

\ No newline at end of file diff --git a/public/512kb-club/index.html b/public/512kb-club/index.html new file mode 100644 index 00000000..dfa0f0b4 --- /dev/null +++ b/public/512kb-club/index.html @@ -0,0 +1,135 @@ +The 250kb Club

512kb.club

Proud member of the exclusive 250kb club!

|

512kb.club is a member of the exclusive 250kb club. The page weighs only 11kb and has a content-to-bloat ratio of 80%.

back

\ No newline at end of file diff --git a/public/ache-one/index.html b/public/ache-one/index.html new file mode 100644 index 00000000..3d63351e --- /dev/null +++ b/public/ache-one/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ache.one

Proud member of the exclusive 250kb club!

|

ache.one is a member of the exclusive 250kb club. The page weighs only 142kb and has a content-to-bloat ratio of 4%.

back

\ No newline at end of file diff --git a/public/alexanderobenauer-com/index.html b/public/alexanderobenauer-com/index.html new file mode 100644 index 00000000..4d731d56 --- /dev/null +++ b/public/alexanderobenauer-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

alexanderobenauer.com

Proud member of the exclusive 250kb club!

|

alexanderobenauer.com is a member of the exclusive 250kb club. The page weighs only 96kb and has a content-to-bloat ratio of 8%.

back

\ No newline at end of file diff --git a/public/alexschroeder-ch/index.html b/public/alexschroeder-ch/index.html new file mode 100644 index 00000000..ae036a6a --- /dev/null +++ b/public/alexschroeder-ch/index.html @@ -0,0 +1,135 @@ +The 250kb Club

alexschroeder.ch

Proud member of the exclusive 250kb club!

|

alexschroeder.ch is a member of the exclusive 250kb club. The page weighs only 33kb and has a content-to-bloat ratio of 87%.

back

\ No newline at end of file diff --git a/public/allien-work/index.html b/public/allien-work/index.html new file mode 100644 index 00000000..b14a3d7d --- /dev/null +++ b/public/allien-work/index.html @@ -0,0 +1,135 @@ +The 250kb Club

allien.work

Proud member of the exclusive 250kb club!

|

allien.work is a member of the exclusive 250kb club. The page weighs only 107kb and has a content-to-bloat ratio of 7%.

back

\ No newline at end of file diff --git a/public/anabeatriz-dev/index.html b/public/anabeatriz-dev/index.html new file mode 100644 index 00000000..b300ea40 --- /dev/null +++ b/public/anabeatriz-dev/index.html @@ -0,0 +1,135 @@ +The 250kb Club

anabeatriz.dev

Proud member of the exclusive 250kb club!

|

anabeatriz.dev is a member of the exclusive 250kb club. The page weighs only 74kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/antranigv-am/index.html b/public/antranigv-am/index.html new file mode 100644 index 00000000..9acf0b78 --- /dev/null +++ b/public/antranigv-am/index.html @@ -0,0 +1,135 @@ +The 250kb Club

antranigv.am

Proud member of the exclusive 250kb club!

|

antranigv.am is a member of the exclusive 250kb club. The page weighs only 16kb and has a content-to-bloat ratio of 44%.

back

\ No newline at end of file diff --git a/public/arfer-net/index.html b/public/arfer-net/index.html new file mode 100644 index 00000000..2cee1daf --- /dev/null +++ b/public/arfer-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

arfer.net

Proud member of the exclusive 250kb club!

|

arfer.net is a member of the exclusive 250kb club. The page weighs only 7kb and has a content-to-bloat ratio of 14%.

back

\ No newline at end of file diff --git a/public/armaanb-net/index.html b/public/armaanb-net/index.html new file mode 100644 index 00000000..af56e7d2 --- /dev/null +++ b/public/armaanb-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

armaanb.net

Proud member of the exclusive 250kb club!

|

armaanb.net is a member of the exclusive 250kb club. The page weighs only 23kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/artemislena-eu/index.html b/public/artemislena-eu/index.html new file mode 100644 index 00000000..fdcc9ccc --- /dev/null +++ b/public/artemislena-eu/index.html @@ -0,0 +1,135 @@ +The 250kb Club

artemislena.eu

Proud member of the exclusive 250kb club!

|

artemislena.eu is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 80%.

back

\ No newline at end of file diff --git a/public/bcachefs-org/index.html b/public/bcachefs-org/index.html new file mode 100644 index 00000000..5861133c --- /dev/null +++ b/public/bcachefs-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

bcachefs.org

Proud member of the exclusive 250kb club!

|

bcachefs.org is a member of the exclusive 250kb club. The page weighs only 8kb and has a content-to-bloat ratio of 40%.

back

\ No newline at end of file diff --git a/public/bduck-xyz/index.html b/public/bduck-xyz/index.html new file mode 100644 index 00000000..7916027f --- /dev/null +++ b/public/bduck-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

bduck.xyz

Proud member of the exclusive 250kb club!

|

bduck.xyz is a member of the exclusive 250kb club. The page weighs only 147kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/beh-uk/index.html b/public/beh-uk/index.html new file mode 100644 index 00000000..5f104a94 --- /dev/null +++ b/public/beh-uk/index.html @@ -0,0 +1,135 @@ +The 250kb Club

beh.uk

Proud member of the exclusive 250kb club!

|

beh.uk is a member of the exclusive 250kb club. The page weighs only 67kb and has a content-to-bloat ratio of 8%.

back

\ No newline at end of file diff --git a/public/benharr-is/index.html b/public/benharr-is/index.html new file mode 100644 index 00000000..adfbc47d --- /dev/null +++ b/public/benharr-is/index.html @@ -0,0 +1,135 @@ +The 250kb Club

benharr.is

Proud member of the exclusive 250kb club!

|

benharr.is is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/benovermyer-com/index.html b/public/benovermyer-com/index.html new file mode 100644 index 00000000..118cd2e9 --- /dev/null +++ b/public/benovermyer-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

benovermyer.com

Proud member of the exclusive 250kb club!

|

benovermyer.com is a member of the exclusive 250kb club. The page weighs only 145kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/berkshirehathaway-com/index.html b/public/berkshirehathaway-com/index.html new file mode 100644 index 00000000..cc5be0cc --- /dev/null +++ b/public/berkshirehathaway-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

berkshirehathaway.com

Proud member of the exclusive 250kb club!

|

berkshirehathaway.com is a member of the exclusive 250kb club. The page weighs only 64kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/bernsteinbear-com/index.html b/public/bernsteinbear-com/index.html new file mode 100644 index 00000000..8887e3f5 --- /dev/null +++ b/public/bernsteinbear-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

bernsteinbear.com

Proud member of the exclusive 250kb club!

|

bernsteinbear.com is a member of the exclusive 250kb club. The page weighs only 31kb and has a content-to-bloat ratio of 10%.

back

\ No newline at end of file diff --git a/public/bestmotherfucking-website/index.html b/public/bestmotherfucking-website/index.html new file mode 100644 index 00000000..78808dc6 --- /dev/null +++ b/public/bestmotherfucking-website/index.html @@ -0,0 +1,135 @@ +The 250kb Club

bestmotherfucking.website

Proud member of the exclusive 250kb club!

|

bestmotherfucking.website is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/bettermotherfuckingwebsite-com/index.html b/public/bettermotherfuckingwebsite-com/index.html new file mode 100644 index 00000000..12678a3c --- /dev/null +++ b/public/bettermotherfuckingwebsite-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

bettermotherfuckingwebsite.com

Proud member of the exclusive 250kb club!

|

bettermotherfuckingwebsite.com is a member of the exclusive 250kb club. The page weighs only 23kb and has a content-to-bloat ratio of 10%.

back

\ No newline at end of file diff --git a/public/binyam-in/index.html b/public/binyam-in/index.html new file mode 100644 index 00000000..01920075 --- /dev/null +++ b/public/binyam-in/index.html @@ -0,0 +1,135 @@ +The 250kb Club

binyam.in

Proud member of the exclusive 250kb club!

|

binyam.in is a member of the exclusive 250kb club. The page weighs only 42kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/blakehawkins-com-blog/index.html b/public/blakehawkins-com-blog/index.html new file mode 100644 index 00000000..9d9aa0b1 --- /dev/null +++ b/public/blakehawkins-com-blog/index.html @@ -0,0 +1,135 @@ +The 250kb Club

blakehawkins.com/blog

Proud member of the exclusive 250kb club!

|

blakehawkins.com/blog is a member of the exclusive 250kb club. The page weighs only 55kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/blmayer-dev/index.html b/public/blmayer-dev/index.html new file mode 100644 index 00000000..4388e213 --- /dev/null +++ b/public/blmayer-dev/index.html @@ -0,0 +1,135 @@ +The 250kb Club

blmayer.dev

Proud member of the exclusive 250kb club!

|

blmayer.dev is a member of the exclusive 250kb club. The page weighs only 6kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/blog-bshah-in/index.html b/public/blog-bshah-in/index.html new file mode 100644 index 00000000..e9967c52 --- /dev/null +++ b/public/blog-bshah-in/index.html @@ -0,0 +1,135 @@ +The 250kb Club

blog.bshah.in

Proud member of the exclusive 250kb club!

|

blog.bshah.in is a member of the exclusive 250kb club. The page weighs only 10kb and has a content-to-bloat ratio of 32%.

back

\ No newline at end of file diff --git a/public/blog-circuitsofimagination-com/index.html b/public/blog-circuitsofimagination-com/index.html new file mode 100644 index 00000000..6f4e0241 --- /dev/null +++ b/public/blog-circuitsofimagination-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

blog.circuitsofimagination.com

Proud member of the exclusive 250kb club!

|

blog.circuitsofimagination.com is a member of the exclusive 250kb club. The page weighs only 153kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/blog-fefe-de/index.html b/public/blog-fefe-de/index.html new file mode 100644 index 00000000..6536d273 --- /dev/null +++ b/public/blog-fefe-de/index.html @@ -0,0 +1,135 @@ +The 250kb Club

blog.fefe.de

Proud member of the exclusive 250kb club!

|

blog.fefe.de is a member of the exclusive 250kb club. The page weighs only 7kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/blog-fossterer-com/index.html b/public/blog-fossterer-com/index.html new file mode 100644 index 00000000..582155c6 --- /dev/null +++ b/public/blog-fossterer-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

blog.fossterer.com

Proud member of the exclusive 250kb club!

|

blog.fossterer.com is a member of the exclusive 250kb club. The page weighs only 16kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/bnolet-me/index.html b/public/bnolet-me/index.html new file mode 100644 index 00000000..76af8f61 --- /dev/null +++ b/public/bnolet-me/index.html @@ -0,0 +1,135 @@ +The 250kb Club

bnolet.me

Proud member of the exclusive 250kb club!

|

bnolet.me is a member of the exclusive 250kb club. The page weighs only 154kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/boehs-org/index.html b/public/boehs-org/index.html new file mode 100644 index 00000000..7e8239bb --- /dev/null +++ b/public/boehs-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

boehs.org

Proud member of the exclusive 250kb club!

|

boehs.org is a member of the exclusive 250kb club. The page weighs only 79kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/box-matto-nl/index.html b/public/box-matto-nl/index.html new file mode 100644 index 00000000..138f7c33 --- /dev/null +++ b/public/box-matto-nl/index.html @@ -0,0 +1,135 @@ +The 250kb Club

box.matto.nl

Proud member of the exclusive 250kb club!

|

box.matto.nl is a member of the exclusive 250kb club. The page weighs only 7kb and has a content-to-bloat ratio of 60%.

back

\ No newline at end of file diff --git a/public/bridge-simplefin-org/index.html b/public/bridge-simplefin-org/index.html new file mode 100644 index 00000000..98121e47 --- /dev/null +++ b/public/bridge-simplefin-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

bridge.simplefin.org

Proud member of the exclusive 250kb club!

|

bridge.simplefin.org is a member of the exclusive 250kb club. The page weighs only 7kb and has a content-to-bloat ratio of 15%.

back

\ No newline at end of file diff --git a/public/buchh-org/index.html b/public/buchh-org/index.html new file mode 100644 index 00000000..132602a2 --- /dev/null +++ b/public/buchh-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

buchh.org

Proud member of the exclusive 250kb club!

|

buchh.org is a member of the exclusive 250kb club. The page weighs only 39kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/bvnf-space/index.html b/public/bvnf-space/index.html new file mode 100644 index 00000000..7529e88e --- /dev/null +++ b/public/bvnf-space/index.html @@ -0,0 +1,135 @@ +The 250kb Club

bvnf.space

Proud member of the exclusive 250kb club!

|

bvnf.space is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 78%.

back

\ No newline at end of file diff --git a/public/cat-v-org/index.html b/public/cat-v-org/index.html new file mode 100644 index 00000000..640ceadd --- /dev/null +++ b/public/cat-v-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

cat-v.org

Proud member of the exclusive 250kb club!

|

cat-v.org is a member of the exclusive 250kb club. The page weighs only 10kb and has a content-to-bloat ratio of 66%.

back

\ No newline at end of file diff --git a/public/ccsleep-net/index.html b/public/ccsleep-net/index.html new file mode 100644 index 00000000..8784540f --- /dev/null +++ b/public/ccsleep-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ccsleep.net

Proud member of the exclusive 250kb club!

|

ccsleep.net is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 58%.

back

\ No newline at end of file diff --git a/public/chad-hirsch-host/index.html b/public/chad-hirsch-host/index.html new file mode 100644 index 00000000..117c9396 --- /dev/null +++ b/public/chad-hirsch-host/index.html @@ -0,0 +1,135 @@ +The 250kb Club

chad.hirsch.host

Proud member of the exclusive 250kb club!

|

chad.hirsch.host is a member of the exclusive 250kb club. The page weighs only 26kb and has a content-to-bloat ratio of 26%.

back

\ No newline at end of file diff --git a/public/chrisportela-com/index.html b/public/chrisportela-com/index.html new file mode 100644 index 00000000..b560c7d9 --- /dev/null +++ b/public/chrisportela-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

chrisportela.com

Proud member of the exclusive 250kb club!

|

chrisportela.com is a member of the exclusive 250kb club. The page weighs only 193kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/christine-website/index.html b/public/christine-website/index.html new file mode 100644 index 00000000..1eb9e37e --- /dev/null +++ b/public/christine-website/index.html @@ -0,0 +1,135 @@ +The 250kb Club

christine.website

Proud member of the exclusive 250kb club!

|

christine.website is a member of the exclusive 250kb club. The page weighs only 42kb and has a content-to-bloat ratio of 7%.

back

\ No newline at end of file diff --git a/public/cnx-srht-site/index.html b/public/cnx-srht-site/index.html new file mode 100644 index 00000000..4991b888 --- /dev/null +++ b/public/cnx-srht-site/index.html @@ -0,0 +1,135 @@ +The 250kb Club

cnx.srht.site

Proud member of the exclusive 250kb club!

|

cnx.srht.site is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 48%.

back

\ No newline at end of file diff --git a/public/codelayer-de/index.html b/public/codelayer-de/index.html new file mode 100644 index 00000000..0745b4c8 --- /dev/null +++ b/public/codelayer-de/index.html @@ -0,0 +1,135 @@ +The 250kb Club

codelayer.de

Proud member of the exclusive 250kb club!

|

codelayer.de is a member of the exclusive 250kb club. The page weighs only 136kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/codevoid-de/index.html b/public/codevoid-de/index.html new file mode 100644 index 00000000..24262a12 --- /dev/null +++ b/public/codevoid-de/index.html @@ -0,0 +1,135 @@ +The 250kb Club

codevoid.de

Proud member of the exclusive 250kb club!

|

codevoid.de is a member of the exclusive 250kb club. The page weighs only 9kb and has a content-to-bloat ratio of 92%.

back

\ No newline at end of file diff --git a/public/codingbobby-xyz/index.html b/public/codingbobby-xyz/index.html new file mode 100644 index 00000000..31edb02e --- /dev/null +++ b/public/codingbobby-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

codingbobby.xyz

Proud member of the exclusive 250kb club!

|

codingbobby.xyz is a member of the exclusive 250kb club. The page weighs only 149kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/codingotaku-com/index.html b/public/codingotaku-com/index.html new file mode 100644 index 00000000..70d59283 --- /dev/null +++ b/public/codingotaku-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

codingotaku.com

Proud member of the exclusive 250kb club!

|

codingotaku.com is a member of the exclusive 250kb club. The page weighs only 10kb and has a content-to-bloat ratio of 37%.

back

\ No newline at end of file diff --git a/public/concise-encoding-org/index.html b/public/concise-encoding-org/index.html new file mode 100644 index 00000000..0a762969 --- /dev/null +++ b/public/concise-encoding-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

concise-encoding.org

Proud member of the exclusive 250kb club!

|

concise-encoding.org is a member of the exclusive 250kb club. The page weighs only 20kb and has a content-to-bloat ratio of 18%.

back

\ No newline at end of file diff --git a/public/consoom-soy/index.html b/public/consoom-soy/index.html new file mode 100644 index 00000000..04a07941 --- /dev/null +++ b/public/consoom-soy/index.html @@ -0,0 +1,135 @@ +The 250kb Club

consoom.soy

Proud member of the exclusive 250kb club!

|

consoom.soy is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 32%.

back

\ No newline at end of file diff --git a/public/coolmathgames-tech/index.html b/public/coolmathgames-tech/index.html new file mode 100644 index 00000000..ec9265ec --- /dev/null +++ b/public/coolmathgames-tech/index.html @@ -0,0 +1,135 @@ +The 250kb Club

coolmathgames.tech

Proud member of the exclusive 250kb club!

|

coolmathgames.tech is a member of the exclusive 250kb club. The page weighs only 57kb and has a content-to-bloat ratio of 8%.

back

\ No newline at end of file diff --git a/public/cosmo-red/index.html b/public/cosmo-red/index.html new file mode 100644 index 00000000..71e47a17 --- /dev/null +++ b/public/cosmo-red/index.html @@ -0,0 +1,135 @@ +The 250kb Club

cosmo.red

Proud member of the exclusive 250kb club!

|

cosmo.red is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/crackle-dev/index.html b/public/crackle-dev/index.html new file mode 100644 index 00000000..78321c04 --- /dev/null +++ b/public/crackle-dev/index.html @@ -0,0 +1,135 @@ +The 250kb Club

crackle.dev

Proud member of the exclusive 250kb club!

|

crackle.dev is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 51%.

back

\ No newline at end of file diff --git a/public/cronokirby-com/index.html b/public/cronokirby-com/index.html new file mode 100644 index 00000000..a56a3e6f --- /dev/null +++ b/public/cronokirby-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

cronokirby.com

Proud member of the exclusive 250kb club!

|

cronokirby.com is a member of the exclusive 250kb club. The page weighs only 222kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/customformats-com/index.html b/public/customformats-com/index.html new file mode 100644 index 00000000..b62b5350 --- /dev/null +++ b/public/customformats-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

customformats.com

Proud member of the exclusive 250kb club!

|

customformats.com is a member of the exclusive 250kb club. The page weighs only 237kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/cycloneblaze-net/index.html b/public/cycloneblaze-net/index.html new file mode 100644 index 00000000..7643fb47 --- /dev/null +++ b/public/cycloneblaze-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

cycloneblaze.net

Proud member of the exclusive 250kb club!

|

cycloneblaze.net is a member of the exclusive 250kb club. The page weighs only 23kb and has a content-to-bloat ratio of 7%.

back

\ No newline at end of file diff --git a/public/daniel-siepmann-de/index.html b/public/daniel-siepmann-de/index.html new file mode 100644 index 00000000..ac6f517a --- /dev/null +++ b/public/daniel-siepmann-de/index.html @@ -0,0 +1,135 @@ +The 250kb Club

daniel-siepmann.de

Proud member of the exclusive 250kb club!

|

daniel-siepmann.de is a member of the exclusive 250kb club. The page weighs only 16kb and has a content-to-bloat ratio of 73%.

back

\ No newline at end of file diff --git a/public/danielcuttridge-com/index.html b/public/danielcuttridge-com/index.html new file mode 100644 index 00000000..cdab4edb --- /dev/null +++ b/public/danielcuttridge-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

danielcuttridge.com

Proud member of the exclusive 250kb club!

|

danielcuttridge.com is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/danielsada-tech/index.html b/public/danielsada-tech/index.html new file mode 100644 index 00000000..8c11e0db --- /dev/null +++ b/public/danielsada-tech/index.html @@ -0,0 +1,135 @@ +The 250kb Club

danielsada.tech

Proud member of the exclusive 250kb club!

|

danielsada.tech is a member of the exclusive 250kb club. The page weighs only 136kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/danluu-com/index.html b/public/danluu-com/index.html new file mode 100644 index 00000000..c7474366 --- /dev/null +++ b/public/danluu-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

danluu.com

Proud member of the exclusive 250kb club!

|

danluu.com is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/decentnet-github-io/index.html b/public/decentnet-github-io/index.html new file mode 100644 index 00000000..1e4356d7 --- /dev/null +++ b/public/decentnet-github-io/index.html @@ -0,0 +1,135 @@ +The 250kb Club

decentnet.github.io

Proud member of the exclusive 250kb club!

|

decentnet.github.io is a member of the exclusive 250kb club. The page weighs only 10kb and has a content-to-bloat ratio of 78%.

back

\ No newline at end of file diff --git a/public/dotfilehub-com/index.html b/public/dotfilehub-com/index.html new file mode 100644 index 00000000..9695bce8 --- /dev/null +++ b/public/dotfilehub-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

dotfilehub.com

Proud member of the exclusive 250kb club!

|

dotfilehub.com is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 37%.

back

\ No newline at end of file diff --git a/public/dpldocs-info-this-week-in-d-blog-html/index.html b/public/dpldocs-info-this-week-in-d-blog-html/index.html new file mode 100644 index 00000000..916468a4 --- /dev/null +++ b/public/dpldocs-info-this-week-in-d-blog-html/index.html @@ -0,0 +1,135 @@ +The 250kb Club

dpldocs.info/this-week-in-d/Blog.html

Proud member of the exclusive 250kb club!

|

dpldocs.info/this-week-in-d/Blog.html is a member of the exclusive 250kb club. The page weighs only 98kb and has a content-to-bloat ratio of 72%.

back

\ No newline at end of file diff --git a/public/drewdevault-com/index.html b/public/drewdevault-com/index.html new file mode 100644 index 00000000..64d50c38 --- /dev/null +++ b/public/drewdevault-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

drewdevault.com

Proud member of the exclusive 250kb club!

|

drewdevault.com is a member of the exclusive 250kb club. The page weighs only 29kb and has a content-to-bloat ratio of 51%.

back

\ No newline at end of file diff --git a/public/dusanmitrovic-xyz/index.html b/public/dusanmitrovic-xyz/index.html new file mode 100644 index 00000000..1cc71681 --- /dev/null +++ b/public/dusanmitrovic-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

dusanmitrovic.xyz

Proud member of the exclusive 250kb club!

|

dusanmitrovic.xyz is a member of the exclusive 250kb club. The page weighs only 11kb and has a content-to-bloat ratio of 23%.

back

\ No newline at end of file diff --git a/public/dyremyhr-no/index.html b/public/dyremyhr-no/index.html new file mode 100644 index 00000000..a754bcf9 --- /dev/null +++ b/public/dyremyhr-no/index.html @@ -0,0 +1,135 @@ +The 250kb Club

dyremyhr.no

Proud member of the exclusive 250kb club!

|

dyremyhr.no is a member of the exclusive 250kb club. The page weighs only 107kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/editions-du-26-octobre-com/index.html b/public/editions-du-26-octobre-com/index.html new file mode 100644 index 00000000..804b3e8b --- /dev/null +++ b/public/editions-du-26-octobre-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

editions-du-26-octobre.com

Proud member of the exclusive 250kb club!

|

editions-du-26-octobre.com is a member of the exclusive 250kb club. The page weighs only 119kb and has a content-to-bloat ratio of 11%.

back

\ No newline at end of file diff --git a/public/elasticlunr.min.js b/public/elasticlunr.min.js new file mode 100644 index 00000000..79dad65f --- /dev/null +++ b/public/elasticlunr.min.js @@ -0,0 +1,10 @@ +/** + * elasticlunr - http://weixsong.github.io + * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.6 + * + * Copyright (C) 2017 Oliver Nightingale + * Copyright (C) 2017 Wei Song + * MIT Licensed + * @license + */ +!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();oThe 250kb Club

emersion.fr

Proud member of the exclusive 250kb club!

|

emersion.fr is a member of the exclusive 250kb club. The page weighs only 181kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/export.png b/public/export.png new file mode 100644 index 00000000..d24da256 Binary files /dev/null and b/public/export.png differ diff --git a/public/fabioartuso-com/index.html b/public/fabioartuso-com/index.html new file mode 100644 index 00000000..147d3f89 --- /dev/null +++ b/public/fabioartuso-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

fabioartuso.com

Proud member of the exclusive 250kb club!

|

fabioartuso.com is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/fanael-github-io/index.html b/public/fanael-github-io/index.html new file mode 100644 index 00000000..5f571e1b --- /dev/null +++ b/public/fanael-github-io/index.html @@ -0,0 +1,135 @@ +The 250kb Club

fanael.github.io

Proud member of the exclusive 250kb club!

|

fanael.github.io is a member of the exclusive 250kb club. The page weighs only 9kb and has a content-to-bloat ratio of 60%.

back

\ No newline at end of file diff --git a/build/favicon.png b/public/favicon.png similarity index 100% rename from build/favicon.png rename to public/favicon.png diff --git a/public/featyre-xyz/index.html b/public/featyre-xyz/index.html new file mode 100644 index 00000000..5d7eef98 --- /dev/null +++ b/public/featyre-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

featyre.xyz

Proud member of the exclusive 250kb club!

|

featyre.xyz is a member of the exclusive 250kb club. The page weighs only 17kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/felt-dev/index.html b/public/felt-dev/index.html new file mode 100644 index 00000000..14b6f8ab --- /dev/null +++ b/public/felt-dev/index.html @@ -0,0 +1,135 @@ +The 250kb Club

felt.dev

Proud member of the exclusive 250kb club!

|

felt.dev is a member of the exclusive 250kb club. The page weighs only 92kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/flatpackapps-com/index.html b/public/flatpackapps-com/index.html new file mode 100644 index 00000000..6f75e839 --- /dev/null +++ b/public/flatpackapps-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

flatpackapps.com

Proud member of the exclusive 250kb club!

|

flatpackapps.com is a member of the exclusive 250kb club. The page weighs only 19kb and has a content-to-bloat ratio of 14%.

back

\ No newline at end of file diff --git a/public/fmarier-org/index.html b/public/fmarier-org/index.html new file mode 100644 index 00000000..fb4efc8b --- /dev/null +++ b/public/fmarier-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

fmarier.org

Proud member of the exclusive 250kb club!

|

fmarier.org is a member of the exclusive 250kb club. The page weighs only 109kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/fossdd-codeberg-page/index.html b/public/fossdd-codeberg-page/index.html new file mode 100644 index 00000000..b989c6fb --- /dev/null +++ b/public/fossdd-codeberg-page/index.html @@ -0,0 +1,135 @@ +The 250kb Club

fossdd.codeberg.page

Proud member of the exclusive 250kb club!

|

fossdd.codeberg.page is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 39%.

back

\ No newline at end of file diff --git a/public/foxwells-garden/index.html b/public/foxwells-garden/index.html new file mode 100644 index 00000000..2075f631 --- /dev/null +++ b/public/foxwells-garden/index.html @@ -0,0 +1,135 @@ +The 250kb Club

foxwells.garden

Proud member of the exclusive 250kb club!

|

foxwells.garden is a member of the exclusive 250kb club. The page weighs only 37kb and has a content-to-bloat ratio of 12%.

back

\ No newline at end of file diff --git a/public/free-mg/index.html b/public/free-mg/index.html new file mode 100644 index 00000000..2af5d043 --- /dev/null +++ b/public/free-mg/index.html @@ -0,0 +1,135 @@ +The 250kb Club

free.mg

Proud member of the exclusive 250kb club!

|

free.mg is a member of the exclusive 250kb club. The page weighs only 9kb and has a content-to-bloat ratio of 34%.

back

\ No newline at end of file diff --git a/public/freesolitaire-win/index.html b/public/freesolitaire-win/index.html new file mode 100644 index 00000000..9fcb8e94 --- /dev/null +++ b/public/freesolitaire-win/index.html @@ -0,0 +1,135 @@ +The 250kb Club

freesolitaire.win

Proud member of the exclusive 250kb club!

|

freesolitaire.win is a member of the exclusive 250kb club. The page weighs only 87kb and has a content-to-bloat ratio of 23%.

back

\ No newline at end of file diff --git a/public/frontaid-io/index.html b/public/frontaid-io/index.html new file mode 100644 index 00000000..fe63ec17 --- /dev/null +++ b/public/frontaid-io/index.html @@ -0,0 +1,135 @@ +The 250kb Club

frontaid.io

Proud member of the exclusive 250kb club!

|

frontaid.io is a member of the exclusive 250kb club. The page weighs only 144kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/fullstackpython-com/index.html b/public/fullstackpython-com/index.html new file mode 100644 index 00000000..5bda7843 --- /dev/null +++ b/public/fullstackpython-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

fullstackpython.com

Proud member of the exclusive 250kb club!

|

fullstackpython.com is a member of the exclusive 250kb club. The page weighs only 26kb and has a content-to-bloat ratio of 22%.

back

\ No newline at end of file diff --git a/public/funnylookinhat-com/index.html b/public/funnylookinhat-com/index.html new file mode 100644 index 00000000..3e136c63 --- /dev/null +++ b/public/funnylookinhat-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

funnylookinhat.com

Proud member of the exclusive 250kb club!

|

funnylookinhat.com is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 75%.

back

\ No newline at end of file diff --git a/public/gabnotes-org/index.html b/public/gabnotes-org/index.html new file mode 100644 index 00000000..92631be3 --- /dev/null +++ b/public/gabnotes-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

gabnotes.org

Proud member of the exclusive 250kb club!

|

gabnotes.org is a member of the exclusive 250kb club. The page weighs only 30kb and has a content-to-bloat ratio of 12%.

back

\ No newline at end of file diff --git a/public/gallant-dev/index.html b/public/gallant-dev/index.html new file mode 100644 index 00000000..19ff64ec --- /dev/null +++ b/public/gallant-dev/index.html @@ -0,0 +1,135 @@ +The 250kb Club

gallant.dev

Proud member of the exclusive 250kb club!

|

gallant.dev is a member of the exclusive 250kb club. The page weighs only 38kb and has a content-to-bloat ratio of 31%.

back

\ No newline at end of file diff --git a/public/gennext-net-au/index.html b/public/gennext-net-au/index.html new file mode 100644 index 00000000..41848db0 --- /dev/null +++ b/public/gennext-net-au/index.html @@ -0,0 +1,135 @@ +The 250kb Club

gennext.net.au

Proud member of the exclusive 250kb club!

|

gennext.net.au is a member of the exclusive 250kb club. The page weighs only 84kb and has a content-to-bloat ratio of 26%.

back

\ No newline at end of file diff --git a/public/gerikson-com-hnlo/index.html b/public/gerikson-com-hnlo/index.html new file mode 100644 index 00000000..b9730a21 --- /dev/null +++ b/public/gerikson-com-hnlo/index.html @@ -0,0 +1,135 @@ +The 250kb Club

gerikson.com/hnlo

Proud member of the exclusive 250kb club!

|

gerikson.com/hnlo is a member of the exclusive 250kb club. The page weighs only 32kb and has a content-to-bloat ratio of 81%.

back

\ No newline at end of file diff --git a/public/gerikson-com/index.html b/public/gerikson-com/index.html new file mode 100644 index 00000000..35b6ce0a --- /dev/null +++ b/public/gerikson-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

gerikson.com

Proud member of the exclusive 250kb club!

|

gerikson.com is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 39%.

back

\ No newline at end of file diff --git a/public/getindiekit-com/index.html b/public/getindiekit-com/index.html new file mode 100644 index 00000000..ac7a9e05 --- /dev/null +++ b/public/getindiekit-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

getindiekit.com

Proud member of the exclusive 250kb club!

|

getindiekit.com is a member of the exclusive 250kb club. The page weighs only 123kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/grapheneos-org/index.html b/public/grapheneos-org/index.html new file mode 100644 index 00000000..a8ba84a7 --- /dev/null +++ b/public/grapheneos-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

grapheneos.org

Proud member of the exclusive 250kb club!

|

grapheneos.org is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 80%.

back

\ No newline at end of file diff --git a/public/gtrr-artemislena-eu/index.html b/public/gtrr-artemislena-eu/index.html new file mode 100644 index 00000000..7bba519f --- /dev/null +++ b/public/gtrr-artemislena-eu/index.html @@ -0,0 +1,135 @@ +The 250kb Club

gtrr.artemislena.eu

Proud member of the exclusive 250kb club!

|

gtrr.artemislena.eu is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 82%.

back

\ No newline at end of file diff --git a/public/guts-plus/index.html b/public/guts-plus/index.html new file mode 100644 index 00000000..29d02ab3 --- /dev/null +++ b/public/guts-plus/index.html @@ -0,0 +1,135 @@ +The 250kb Club

guts.plus

Proud member of the exclusive 250kb club!

|

guts.plus is a member of the exclusive 250kb club. The page weighs only 20kb and has a content-to-bloat ratio of 19%.

back

\ No newline at end of file diff --git a/public/hmbrg-xyz/index.html b/public/hmbrg-xyz/index.html new file mode 100644 index 00000000..3b6c9b3b --- /dev/null +++ b/public/hmbrg-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

hmbrg.xyz

Proud member of the exclusive 250kb club!

|

hmbrg.xyz is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/humaidq-ae/index.html b/public/humaidq-ae/index.html new file mode 100644 index 00000000..e1f3bae6 --- /dev/null +++ b/public/humaidq-ae/index.html @@ -0,0 +1,135 @@ +The 250kb Club

humaidq.ae

Proud member of the exclusive 250kb club!

|

humaidq.ae is a member of the exclusive 250kb club. The page weighs only 8kb and has a content-to-bloat ratio of 14%.

back

\ No newline at end of file diff --git a/public/huyngo-envs-net/index.html b/public/huyngo-envs-net/index.html new file mode 100644 index 00000000..1f8aa808 --- /dev/null +++ b/public/huyngo-envs-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

huyngo.envs.net

Proud member of the exclusive 250kb club!

|

huyngo.envs.net is a member of the exclusive 250kb club. The page weighs only 11kb and has a content-to-bloat ratio of 51%.

back

\ No newline at end of file diff --git a/public/iain-in/index.html b/public/iain-in/index.html new file mode 100644 index 00000000..71007edc --- /dev/null +++ b/public/iain-in/index.html @@ -0,0 +1,135 @@ +The 250kb Club

iain.in

Proud member of the exclusive 250kb club!

|

iain.in is a member of the exclusive 250kb club. The page weighs only 122kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/ianmobbs-com/index.html b/public/ianmobbs-com/index.html new file mode 100644 index 00000000..81ed1493 --- /dev/null +++ b/public/ianmobbs-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ianmobbs.com

Proud member of the exclusive 250kb club!

|

ianmobbs.com is a member of the exclusive 250kb club. The page weighs only 189kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/ihaque-org/index.html b/public/ihaque-org/index.html new file mode 100644 index 00000000..803db20b --- /dev/null +++ b/public/ihaque-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ihaque.org

Proud member of the exclusive 250kb club!

|

ihaque.org is a member of the exclusive 250kb club. The page weighs only 103kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/ihsaan-glitch-me/index.html b/public/ihsaan-glitch-me/index.html new file mode 100644 index 00000000..10f5c538 --- /dev/null +++ b/public/ihsaan-glitch-me/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ihsaan.glitch.me

Proud member of the exclusive 250kb club!

|

ihsaan.glitch.me is a member of the exclusive 250kb club. The page weighs only 76kb and has a content-to-bloat ratio of 10%.

back

\ No newline at end of file diff --git a/public/inatri-com/index.html b/public/inatri-com/index.html new file mode 100644 index 00000000..691a4724 --- /dev/null +++ b/public/inatri-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

inatri.com

Proud member of the exclusive 250kb club!

|

inatri.com is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 41%.

back

\ No newline at end of file diff --git a/public/index.html b/public/index.html new file mode 100644 index 00000000..5c988e3f --- /dev/null +++ b/public/index.html @@ -0,0 +1,135 @@ +The 250kb Club

The 250kb Club

The Web Is Doom

Lets do something about it!

The 250kb Club is a collection of web pages that focus on performance, efficiency and accessibility.

Websites in this list must not exceed 256kb compressed size!

Yes, compressed size. It makes much more sense because it allows for a lot of text to be transferred without having a big impact on the total size, while the impact of media is basically unaffected.

If your pages exceeds 250kb, you might consider 512kB.club or 1MB.club.

You can suggest a web page for this collection via Sourcehut or via Github. The site will be reviewed and, if applicable, added to the list below. Pages are checked again every week.

  1. lil.gay 0kb100% open lil.gay in a new tab or window
  2. t0.vc 1kb100% open t0.vc in a new tab or window
  3. lo.hn 1kb100% open lo.hn in a new tab or window
  4. սոնա.հայ 1kb100% open սոնա.հայ in a new tab or window
  5. norayr.am 1kb100% open norayr.am in a new tab or window
  6. cosmo.red 1kb100% open cosmo.red in a new tab or window
  7. jrballesteros05.codeberg.page 1kb100% open jrballesteros05.codeberg.page in a new tab or window
  8. myipaddress.ru 1kb100% open myipaddress.ru in a new tab or window
  9. pbanks.net 1kb100% open pbanks.net in a new tab or window
  10. si3t.ch 1kb0% open si3t.ch in a new tab or window
  11. ybad.name 1kb0% open ybad.name in a new tab or window
  12. salejandro.me 1kb52% open salejandro.me in a new tab or window
  13. crackle.dev 1kb51% open crackle.dev in a new tab or window
  14. hmbrg.xyz 1kb100% open hmbrg.xyz in a new tab or window
  15. danielcuttridge.com 2kb100% open danielcuttridge.com in a new tab or window
  16. fabioartuso.com 2kb100% open fabioartuso.com in a new tab or window
  17. jakob.kaivo.net 2kb61% open jakob.kaivo.net in a new tab or window
  18. temp.sh 2kb100% open temp.sh in a new tab or window
  19. kunalmarwaha.com 2kb50% open kunalmarwaha.com in a new tab or window
  20. natestemen.xyz 2kb50% open natestemen.xyz in a new tab or window
  21. sizi.ng 2kb100% open sizi.ng in a new tab or window
  22. minwiz.com 2kb100% open minwiz.com in a new tab or window
  23. oxenburypartners.com 2kb100% open oxenburypartners.com in a new tab or window
  24. jeremysarber.com 2kb100% open jeremysarber.com in a new tab or window
  25. gerikson.com 2kb39% open gerikson.com in a new tab or window
  26. sjmulder.nl 2kb100% open sjmulder.nl in a new tab or window
  27. m-chrzan.xyz 2kb43% open m-chrzan.xyz in a new tab or window
  28. gtrr.artemislena.eu 2kb82% open gtrr.artemislena.eu in a new tab or window
  29. tom.kobalt.dev/map 2kb100% open tom.kobalt.dev/map in a new tab or window
  30. ccsleep.net 3kb58% open ccsleep.net in a new tab or window
  31. webzine.puffy.cafe 3kb100% open webzine.puffy.cafe in a new tab or window
  32. dotfilehub.com 3kb37% open dotfilehub.com in a new tab or window
  33. text.npr.org 3kb100% open text.npr.org in a new tab or window
  34. thejollyteapot.com 3kb74% open thejollyteapot.com in a new tab or window
  35. karolis.koncevicius.lt 3kb100% open karolis.koncevicius.lt in a new tab or window
  36. xslendi.xyz 3kb77% open xslendi.xyz in a new tab or window
  37. xnaas.info 3kb47% open xnaas.info in a new tab or window
  38. www.groovestomp.com 3kb36% open www.groovestomp.com in a new tab or window
  39. bvnf.space 3kb78% open bvnf.space in a new tab or window
  40. 0xedward.io 3kb88% open 0xedward.io in a new tab or window
  41. phreedom.club 3kb100% open phreedom.club in a new tab or window
  42. fossdd.codeberg.page 3kb39% open fossdd.codeberg.page in a new tab or window
  43. bestmotherfucking.website 3kb100% open bestmotherfucking.website in a new tab or window
  44. cnx.srht.site 3kb48% open cnx.srht.site in a new tab or window
  45. funnylookinhat.com 3kb75% open funnylookinhat.com in a new tab or window
  46. nytpu.com 4kb57% open nytpu.com in a new tab or window
  47. kidl.at 4kb100% open kidl.at in a new tab or window
  48. nihar.page 4kb79% open nihar.page in a new tab or window
  49. 0xff.nu 4kb71% open 0xff.nu in a new tab or window
  50. kishvanchee.com 4kb35% open kishvanchee.com in a new tab or window
  51. minid.net 4kb100% open minid.net in a new tab or window
  52. ohio.araw.xyz 4kb35% open ohio.araw.xyz in a new tab or window
  53. benharr.is 4kb100% open benharr.is in a new tab or window
  54. luana.cc 4kb70% open luana.cc in a new tab or window
  55. susam.in 4kb47% open susam.in in a new tab or window
  56. lukeramsden.com 4kb100% open lukeramsden.com in a new tab or window
  57. nest.jakl.one 5kb34% open nest.jakl.one in a new tab or window
  58. artemislena.eu 5kb80% open artemislena.eu in a new tab or window
  59. www.minimumviable.it 5kb57% open www.minimumviable.it in a new tab or window
  60. danluu.com 5kb100% open danluu.com in a new tab or window
  61. satchlj.us 5kb100% open satchlj.us in a new tab or window
  62. inatri.com 5kb41% open inatri.com in a new tab or window
  63. jlelse.blog 5kb65% open jlelse.blog in a new tab or window
  64. na20a.neocities.org 5kb26% open na20a.neocities.org in a new tab or window
  65. consoom.soy 5kb32% open consoom.soy in a new tab or window
  66. lawzava.com 5kb48% open lawzava.com in a new tab or window
  67. grapheneos.org 5kb80% open grapheneos.org in a new tab or window
  68. blmayer.dev 6kb100% open blmayer.dev in a new tab or window
  69. kj7nzl.net 6kb100% open kj7nzl.net in a new tab or window
  70. seirdy.one 6kb88% open seirdy.one in a new tab or window
  71. xigoi.neocities.org 6kb51% open xigoi.neocities.org in a new tab or window
  72. pools.xmr.wiki 6kb47% open pools.xmr.wiki in a new tab or window
  73. mataroa.blog 6kb49% open mataroa.blog in a new tab or window
  74. uglyduck.ca 6kb90% open uglyduck.ca in a new tab or window
  75. rc-lite.xyz 7kb38% open rc-lite.xyz in a new tab or window
  76. box.matto.nl 7kb60% open box.matto.nl in a new tab or window
  77. blog.fefe.de 7kb100% open blog.fefe.de in a new tab or window
  78. 10kbclub.com 7kb100% open 10kbclub.com in a new tab or window
  79. zupzup.org 7kb100% open zupzup.org in a new tab or window
  80. john-doe.neocities.org 7kb62% open john-doe.neocities.org in a new tab or window
  81. arfer.net 7kb14% open arfer.net in a new tab or window
  82. bridge.simplefin.org 7kb15% open bridge.simplefin.org in a new tab or window
  83. werc.cat-v.org 8kb90% open werc.cat-v.org in a new tab or window
  84. humaidq.ae 8kb14% open humaidq.ae in a new tab or window
  85. qubyte.codes 8kb34% open qubyte.codes in a new tab or window
  86. bcachefs.org 8kb40% open bcachefs.org in a new tab or window
  87. manpages.bsd.lv 8kb69% open manpages.bsd.lv in a new tab or window
  88. www.paritybit.ca 9kb67% open www.paritybit.ca in a new tab or window
  89. oscarforner.com 9kb17% open oscarforner.com in a new tab or window
  90. fanael.github.io 9kb60% open fanael.github.io in a new tab or window
  91. free.mg 9kb34% open free.mg in a new tab or window
  92. manuelmoreale.com 9kb79% open manuelmoreale.com in a new tab or window
  93. codevoid.de 9kb92% open codevoid.de in a new tab or window
  94. plasmasturm.org 9kb62% open plasmasturm.org in a new tab or window
  95. codingotaku.com 10kb37% open codingotaku.com in a new tab or window
  96. cat-v.org 10kb66% open cat-v.org in a new tab or window
  97. blog.bshah.in 10kb32% open blog.bshah.in in a new tab or window
  98. lectupedia.com/en 10kb27% open lectupedia.com/en in a new tab or window
  99. unix.lgbt 10kb37% open unix.lgbt in a new tab or window
  100. decentnet.github.io 10kb78% open decentnet.github.io in a new tab or window
\ No newline at end of file diff --git a/public/jaime-gomezobregon-com/index.html b/public/jaime-gomezobregon-com/index.html new file mode 100644 index 00000000..59c4936c --- /dev/null +++ b/public/jaime-gomezobregon-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jaime.gomezobregon.com

Proud member of the exclusive 250kb club!

|

jaime.gomezobregon.com is a member of the exclusive 250kb club. The page weighs only 63kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/jakob-kaivo-net/index.html b/public/jakob-kaivo-net/index.html new file mode 100644 index 00000000..2eb53a05 --- /dev/null +++ b/public/jakob-kaivo-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jakob.kaivo.net

Proud member of the exclusive 250kb club!

|

jakob.kaivo.net is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 61%.

back

\ No newline at end of file diff --git a/public/jason-nabein-me/index.html b/public/jason-nabein-me/index.html new file mode 100644 index 00000000..752e3b19 --- /dev/null +++ b/public/jason-nabein-me/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jason.nabein.me

Proud member of the exclusive 250kb club!

|

jason.nabein.me is a member of the exclusive 250kb club. The page weighs only 27kb and has a content-to-bloat ratio of 27%.

back

\ No newline at end of file diff --git a/public/jeffhuang-com/index.html b/public/jeffhuang-com/index.html new file mode 100644 index 00000000..a8202ad8 --- /dev/null +++ b/public/jeffhuang-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jeffhuang.com

Proud member of the exclusive 250kb club!

|

jeffhuang.com is a member of the exclusive 250kb club. The page weighs only 157kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/jeremysarber-com/index.html b/public/jeremysarber-com/index.html new file mode 100644 index 00000000..7863602b --- /dev/null +++ b/public/jeremysarber-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jeremysarber.com

Proud member of the exclusive 250kb club!

|

jeremysarber.com is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/jlelse-blog/index.html b/public/jlelse-blog/index.html new file mode 100644 index 00000000..3c1bf564 --- /dev/null +++ b/public/jlelse-blog/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jlelse.blog

Proud member of the exclusive 250kb club!

|

jlelse.blog is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 65%.

back

\ No newline at end of file diff --git a/public/jmtd-net/index.html b/public/jmtd-net/index.html new file mode 100644 index 00000000..65501a3c --- /dev/null +++ b/public/jmtd-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jmtd.net

Proud member of the exclusive 250kb club!

|

jmtd.net is a member of the exclusive 250kb club. The page weighs only 212kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/john-doe-neocities-org/index.html b/public/john-doe-neocities-org/index.html new file mode 100644 index 00000000..b0c7c29a --- /dev/null +++ b/public/john-doe-neocities-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

john-doe.neocities.org

Proud member of the exclusive 250kb club!

|

john-doe.neocities.org is a member of the exclusive 250kb club. The page weighs only 7kb and has a content-to-bloat ratio of 62%.

back

\ No newline at end of file diff --git a/public/jrballesteros05-codeberg-page/index.html b/public/jrballesteros05-codeberg-page/index.html new file mode 100644 index 00000000..9bc280d5 --- /dev/null +++ b/public/jrballesteros05-codeberg-page/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jrballesteros05.codeberg.page

Proud member of the exclusive 250kb club!

|

jrballesteros05.codeberg.page is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/jvanelian-dev/index.html b/public/jvanelian-dev/index.html new file mode 100644 index 00000000..c6bc6579 --- /dev/null +++ b/public/jvanelian-dev/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jvanelian.dev

Proud member of the exclusive 250kb club!

|

jvanelian.dev is a member of the exclusive 250kb club. The page weighs only 19kb and has a content-to-bloat ratio of 14%.

back

\ No newline at end of file diff --git a/public/jvelo-at/index.html b/public/jvelo-at/index.html new file mode 100644 index 00000000..33ea42a3 --- /dev/null +++ b/public/jvelo-at/index.html @@ -0,0 +1,135 @@ +The 250kb Club

jvelo.at

Proud member of the exclusive 250kb club!

|

jvelo.at is a member of the exclusive 250kb club. The page weighs only 184kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/k0r-in/index.html b/public/k0r-in/index.html new file mode 100644 index 00000000..6c8ae3e3 --- /dev/null +++ b/public/k0r-in/index.html @@ -0,0 +1,135 @@ +The 250kb Club

k0r.in

Proud member of the exclusive 250kb club!

|

k0r.in is a member of the exclusive 250kb club. The page weighs only 56kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/karolis-koncevicius-lt/index.html b/public/karolis-koncevicius-lt/index.html new file mode 100644 index 00000000..e9a7aae2 --- /dev/null +++ b/public/karolis-koncevicius-lt/index.html @@ -0,0 +1,135 @@ +The 250kb Club

karolis.koncevicius.lt

Proud member of the exclusive 250kb club!

|

karolis.koncevicius.lt is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/kayafirat-com/index.html b/public/kayafirat-com/index.html new file mode 100644 index 00000000..bb14caac --- /dev/null +++ b/public/kayafirat-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

kayafirat.com

Proud member of the exclusive 250kb club!

|

kayafirat.com is a member of the exclusive 250kb club. The page weighs only 35kb and has a content-to-bloat ratio of 18%.

back

\ No newline at end of file diff --git a/public/kerkour-fr/index.html b/public/kerkour-fr/index.html new file mode 100644 index 00000000..9d993ad2 --- /dev/null +++ b/public/kerkour-fr/index.html @@ -0,0 +1,135 @@ +The 250kb Club

kerkour.fr

Proud member of the exclusive 250kb club!

|

kerkour.fr is a member of the exclusive 250kb club. The page weighs only 37kb and has a content-to-bloat ratio of 17%.

back

\ No newline at end of file diff --git a/public/kevq-uk/index.html b/public/kevq-uk/index.html new file mode 100644 index 00000000..922b62dc --- /dev/null +++ b/public/kevq-uk/index.html @@ -0,0 +1,135 @@ +The 250kb Club

kevq.uk

Proud member of the exclusive 250kb club!

|

kevq.uk is a member of the exclusive 250kb club. The page weighs only 163kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/kidl-at/index.html b/public/kidl-at/index.html new file mode 100644 index 00000000..d6ad28c6 --- /dev/null +++ b/public/kidl-at/index.html @@ -0,0 +1,135 @@ +The 250kb Club

kidl.at

Proud member of the exclusive 250kb club!

|

kidl.at is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/kishvanchee-com/index.html b/public/kishvanchee-com/index.html new file mode 100644 index 00000000..9fae2b78 --- /dev/null +++ b/public/kishvanchee-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

kishvanchee.com

Proud member of the exclusive 250kb club!

|

kishvanchee.com is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 35%.

back

\ No newline at end of file diff --git a/public/kj7nzl-net/index.html b/public/kj7nzl-net/index.html new file mode 100644 index 00000000..492500e9 --- /dev/null +++ b/public/kj7nzl-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

kj7nzl.net

Proud member of the exclusive 250kb club!

|

kj7nzl.net is a member of the exclusive 250kb club. The page weighs only 6kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/koehr-in/index.html b/public/koehr-in/index.html new file mode 100644 index 00000000..bba74e2f --- /dev/null +++ b/public/koehr-in/index.html @@ -0,0 +1,135 @@ +The 250kb Club

koehr.in

Proud member of the exclusive 250kb club!

|

koehr.in is a member of the exclusive 250kb club. The page weighs only 56kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/koehr-tech/index.html b/public/koehr-tech/index.html new file mode 100644 index 00000000..5da9bc1e --- /dev/null +++ b/public/koehr-tech/index.html @@ -0,0 +1,135 @@ +The 250kb Club

koehr.tech

Proud member of the exclusive 250kb club!

|

koehr.tech is a member of the exclusive 250kb club. The page weighs only 154kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/kunalmarwaha-com/index.html b/public/kunalmarwaha-com/index.html new file mode 100644 index 00000000..e3d4ab40 --- /dev/null +++ b/public/kunalmarwaha-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

kunalmarwaha.com

Proud member of the exclusive 250kb club!

|

kunalmarwaha.com is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 50%.

back

\ No newline at end of file diff --git a/public/lambdapapers-com/index.html b/public/lambdapapers-com/index.html new file mode 100644 index 00000000..e81de3fe --- /dev/null +++ b/public/lambdapapers-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lambdapapers.com

Proud member of the exclusive 250kb club!

|

lambdapapers.com is a member of the exclusive 250kb club. The page weighs only 31kb and has a content-to-bloat ratio of 8%.

back

\ No newline at end of file diff --git a/public/lawzava-com/index.html b/public/lawzava-com/index.html new file mode 100644 index 00000000..aacda422 --- /dev/null +++ b/public/lawzava-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lawzava.com

Proud member of the exclusive 250kb club!

|

lawzava.com is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 48%.

back

\ No newline at end of file diff --git a/public/lecaro-me-minimage/index.html b/public/lecaro-me-minimage/index.html new file mode 100644 index 00000000..a5f86eda --- /dev/null +++ b/public/lecaro-me-minimage/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lecaro.me/minimage

Proud member of the exclusive 250kb club!

|

lecaro.me/minimage is a member of the exclusive 250kb club. The page weighs only 11kb and has a content-to-bloat ratio of 18%.

back

\ No newline at end of file diff --git a/public/lectupedia-com-en/index.html b/public/lectupedia-com-en/index.html new file mode 100644 index 00000000..9416d91a --- /dev/null +++ b/public/lectupedia-com-en/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lectupedia.com/en

Proud member of the exclusive 250kb club!

|

lectupedia.com/en is a member of the exclusive 250kb club. The page weighs only 10kb and has a content-to-bloat ratio of 27%.

back

\ No newline at end of file diff --git a/public/legiblenews-com/index.html b/public/legiblenews-com/index.html new file mode 100644 index 00000000..73ded498 --- /dev/null +++ b/public/legiblenews-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

legiblenews.com

Proud member of the exclusive 250kb club!

|

legiblenews.com is a member of the exclusive 250kb club. The page weighs only 74kb and has a content-to-bloat ratio of 22%.

back

\ No newline at end of file diff --git a/public/leonardschuetz-ch/index.html b/public/leonardschuetz-ch/index.html new file mode 100644 index 00000000..fbeb69f2 --- /dev/null +++ b/public/leonardschuetz-ch/index.html @@ -0,0 +1,135 @@ +The 250kb Club

leonardschuetz.ch

Proud member of the exclusive 250kb club!

|

leonardschuetz.ch is a member of the exclusive 250kb club. The page weighs only 68kb and has a content-to-bloat ratio of 7%.

back

\ No newline at end of file diff --git a/public/lighthouse16-com/index.html b/public/lighthouse16-com/index.html new file mode 100644 index 00000000..ab677676 --- /dev/null +++ b/public/lighthouse16-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lighthouse16.com

Proud member of the exclusive 250kb club!

|

lighthouse16.com is a member of the exclusive 250kb club. The page weighs only 25kb and has a content-to-bloat ratio of 8%.

back

\ No newline at end of file diff --git a/public/lil-gay/index.html b/public/lil-gay/index.html new file mode 100644 index 00000000..1c2bf8bd --- /dev/null +++ b/public/lil-gay/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lil.gay

Proud member of the exclusive 250kb club!

|

lil.gay is a member of the exclusive 250kb club. The page weighs only 0kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/linuxguideandhints-com/index.html b/public/linuxguideandhints-com/index.html new file mode 100644 index 00000000..26ff19f6 --- /dev/null +++ b/public/linuxguideandhints-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

linuxguideandhints.com

Proud member of the exclusive 250kb club!

|

linuxguideandhints.com is a member of the exclusive 250kb club. The page weighs only 52kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/lite-cnn-com/index.html b/public/lite-cnn-com/index.html new file mode 100644 index 00000000..de23e2f9 --- /dev/null +++ b/public/lite-cnn-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lite.cnn.com

Proud member of the exclusive 250kb club!

|

lite.cnn.com is a member of the exclusive 250kb club. The page weighs only 70kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/lo-hn/index.html b/public/lo-hn/index.html new file mode 100644 index 00000000..66721a45 --- /dev/null +++ b/public/lo-hn/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lo.hn

Proud member of the exclusive 250kb club!

|

lo.hn is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/lobste-rs/index.html b/public/lobste-rs/index.html new file mode 100644 index 00000000..5096a546 --- /dev/null +++ b/public/lobste-rs/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lobste.rs

Proud member of the exclusive 250kb club!

|

lobste.rs is a member of the exclusive 250kb club. The page weighs only 45kb and has a content-to-bloat ratio of 22%.

back

\ No newline at end of file diff --git a/public/luana-cc/index.html b/public/luana-cc/index.html new file mode 100644 index 00000000..011146fc --- /dev/null +++ b/public/luana-cc/index.html @@ -0,0 +1,135 @@ +The 250kb Club

luana.cc

Proud member of the exclusive 250kb club!

|

luana.cc is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 70%.

back

\ No newline at end of file diff --git a/public/lucianmarin-com/index.html b/public/lucianmarin-com/index.html new file mode 100644 index 00000000..bb542a57 --- /dev/null +++ b/public/lucianmarin-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lucianmarin.com

Proud member of the exclusive 250kb club!

|

lucianmarin.com is a member of the exclusive 250kb club. The page weighs only 62kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/lukeramsden-com/index.html b/public/lukeramsden-com/index.html new file mode 100644 index 00000000..529f2af4 --- /dev/null +++ b/public/lukeramsden-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lukeramsden.com

Proud member of the exclusive 250kb club!

|

lukeramsden.com is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/lukesempire-com/index.html b/public/lukesempire-com/index.html new file mode 100644 index 00000000..61e477bf --- /dev/null +++ b/public/lukesempire-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

lukesempire.com

Proud member of the exclusive 250kb club!

|

lukesempire.com is a member of the exclusive 250kb club. The page weighs only 49kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/m-chrzan-xyz/index.html b/public/m-chrzan-xyz/index.html new file mode 100644 index 00000000..33b6ab9f --- /dev/null +++ b/public/m-chrzan-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

m-chrzan.xyz

Proud member of the exclusive 250kb club!

|

m-chrzan.xyz is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 43%.

back

\ No newline at end of file diff --git a/public/majiehong-com/index.html b/public/majiehong-com/index.html new file mode 100644 index 00000000..8d9334e4 --- /dev/null +++ b/public/majiehong-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

majiehong.com

Proud member of the exclusive 250kb club!

|

majiehong.com is a member of the exclusive 250kb club. The page weighs only 11kb and has a content-to-bloat ratio of 13%.

back

\ No newline at end of file diff --git a/public/manpages-bsd-lv/index.html b/public/manpages-bsd-lv/index.html new file mode 100644 index 00000000..795a5517 --- /dev/null +++ b/public/manpages-bsd-lv/index.html @@ -0,0 +1,135 @@ +The 250kb Club

manpages.bsd.lv

Proud member of the exclusive 250kb club!

|

manpages.bsd.lv is a member of the exclusive 250kb club. The page weighs only 8kb and has a content-to-bloat ratio of 69%.

back

\ No newline at end of file diff --git a/public/manuelmoreale-com/index.html b/public/manuelmoreale-com/index.html new file mode 100644 index 00000000..f1fdd23a --- /dev/null +++ b/public/manuelmoreale-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

manuelmoreale.com

Proud member of the exclusive 250kb club!

|

manuelmoreale.com is a member of the exclusive 250kb club. The page weighs only 9kb and has a content-to-bloat ratio of 79%.

back

\ No newline at end of file diff --git a/public/martin-baillie-id/index.html b/public/martin-baillie-id/index.html new file mode 100644 index 00000000..26257e37 --- /dev/null +++ b/public/martin-baillie-id/index.html @@ -0,0 +1,135 @@ +The 250kb Club

martin.baillie.id

Proud member of the exclusive 250kb club!

|

martin.baillie.id is a member of the exclusive 250kb club. The page weighs only 53kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/mataroa-blog/index.html b/public/mataroa-blog/index.html new file mode 100644 index 00000000..30dfa90c --- /dev/null +++ b/public/mataroa-blog/index.html @@ -0,0 +1,135 @@ +The 250kb Club

mataroa.blog

Proud member of the exclusive 250kb club!

|

mataroa.blog is a member of the exclusive 250kb club. The page weighs only 6kb and has a content-to-bloat ratio of 49%.

back

\ No newline at end of file diff --git a/public/matthall-codes/index.html b/public/matthall-codes/index.html new file mode 100644 index 00000000..b82d21f4 --- /dev/null +++ b/public/matthall-codes/index.html @@ -0,0 +1,135 @@ +The 250kb Club

matthall.codes

Proud member of the exclusive 250kb club!

|

matthall.codes is a member of the exclusive 250kb club. The page weighs only 161kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/matthewstrom-com/index.html b/public/matthewstrom-com/index.html new file mode 100644 index 00000000..7cd93381 --- /dev/null +++ b/public/matthewstrom-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

matthewstrom.com

Proud member of the exclusive 250kb club!

|

matthewstrom.com is a member of the exclusive 250kb club. The page weighs only 24kb and has a content-to-bloat ratio of 8%.

back

\ No newline at end of file diff --git a/public/midnight-pub/index.html b/public/midnight-pub/index.html new file mode 100644 index 00000000..6efe6c81 --- /dev/null +++ b/public/midnight-pub/index.html @@ -0,0 +1,135 @@ +The 250kb Club

midnight.pub

Proud member of the exclusive 250kb club!

|

midnight.pub is a member of the exclusive 250kb club. The page weighs only 10kb and has a content-to-bloat ratio of 92%.

back

\ No newline at end of file diff --git a/public/mikegerwitz-com/index.html b/public/mikegerwitz-com/index.html new file mode 100644 index 00000000..3e35c740 --- /dev/null +++ b/public/mikegerwitz-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

mikegerwitz.com

Proud member of the exclusive 250kb club!

|

mikegerwitz.com is a member of the exclusive 250kb club. The page weighs only 78kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/miku86-com/index.html b/public/miku86-com/index.html new file mode 100644 index 00000000..d19b9baa --- /dev/null +++ b/public/miku86-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

miku86.com

Proud member of the exclusive 250kb club!

|

miku86.com is a member of the exclusive 250kb club. The page weighs only 11kb and has a content-to-bloat ratio of 67%.

back

\ No newline at end of file diff --git a/public/mineralexistence-com-home-html/index.html b/public/mineralexistence-com-home-html/index.html new file mode 100644 index 00000000..b8dfa857 --- /dev/null +++ b/public/mineralexistence-com-home-html/index.html @@ -0,0 +1,135 @@ +The 250kb Club

mineralexistence.com/home.html

Proud member of the exclusive 250kb club!

|

mineralexistence.com/home.html is a member of the exclusive 250kb club. The page weighs only 20kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/minid-net/index.html b/public/minid-net/index.html new file mode 100644 index 00000000..70c1af5f --- /dev/null +++ b/public/minid-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

minid.net

Proud member of the exclusive 250kb club!

|

minid.net is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/minwiz-com/index.html b/public/minwiz-com/index.html new file mode 100644 index 00000000..ae0d90f3 --- /dev/null +++ b/public/minwiz-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

minwiz.com

Proud member of the exclusive 250kb club!

|

minwiz.com is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/monokai-nl/index.html b/public/monokai-nl/index.html new file mode 100644 index 00000000..2de54ac2 --- /dev/null +++ b/public/monokai-nl/index.html @@ -0,0 +1,135 @@ +The 250kb Club

monokai.nl

Proud member of the exclusive 250kb club!

|

monokai.nl is a member of the exclusive 250kb club. The page weighs only 109kb and has a content-to-bloat ratio of 4%.

back

\ No newline at end of file diff --git a/public/motherfuckingwebsite-com/index.html b/public/motherfuckingwebsite-com/index.html new file mode 100644 index 00000000..93ac8c42 --- /dev/null +++ b/public/motherfuckingwebsite-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

motherfuckingwebsite.com

Proud member of the exclusive 250kb club!

|

motherfuckingwebsite.com is a member of the exclusive 250kb club. The page weighs only 22kb and has a content-to-bloat ratio of 10%.

back

\ No newline at end of file diff --git a/public/motz-berlin-de/index.html b/public/motz-berlin-de/index.html new file mode 100644 index 00000000..2cf33049 --- /dev/null +++ b/public/motz-berlin-de/index.html @@ -0,0 +1,135 @@ +The 250kb Club

motz-berlin.de

Proud member of the exclusive 250kb club!

|

motz-berlin.de is a member of the exclusive 250kb club. The page weighs only 66kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/my-flow-com/index.html b/public/my-flow-com/index.html new file mode 100644 index 00000000..bf3fea67 --- /dev/null +++ b/public/my-flow-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

my-flow.com

Proud member of the exclusive 250kb club!

|

my-flow.com is a member of the exclusive 250kb club. The page weighs only 144kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/myipaddress-ru/index.html b/public/myipaddress-ru/index.html new file mode 100644 index 00000000..13b5e003 --- /dev/null +++ b/public/myipaddress-ru/index.html @@ -0,0 +1,135 @@ +The 250kb Club

myipaddress.ru

Proud member of the exclusive 250kb club!

|

myipaddress.ru is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/n-2p5-xyz/index.html b/public/n-2p5-xyz/index.html new file mode 100644 index 00000000..0866fe47 --- /dev/null +++ b/public/n-2p5-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

n.2p5.xyz

Proud member of the exclusive 250kb club!

|

n.2p5.xyz is a member of the exclusive 250kb club. The page weighs only 28kb and has a content-to-bloat ratio of 7%.

back

\ No newline at end of file diff --git a/public/na20a-neocities-org/index.html b/public/na20a-neocities-org/index.html new file mode 100644 index 00000000..4f071cbd --- /dev/null +++ b/public/na20a-neocities-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

na20a.neocities.org

Proud member of the exclusive 250kb club!

|

na20a.neocities.org is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 26%.

back

\ No newline at end of file diff --git a/public/natestemen-xyz/index.html b/public/natestemen-xyz/index.html new file mode 100644 index 00000000..bf0c27f5 --- /dev/null +++ b/public/natestemen-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

natestemen.xyz

Proud member of the exclusive 250kb club!

|

natestemen.xyz is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 50%.

back

\ No newline at end of file diff --git a/public/nest-jakl-one/index.html b/public/nest-jakl-one/index.html new file mode 100644 index 00000000..1beffd9f --- /dev/null +++ b/public/nest-jakl-one/index.html @@ -0,0 +1,135 @@ +The 250kb Club

nest.jakl.one

Proud member of the exclusive 250kb club!

|

nest.jakl.one is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 34%.

back

\ No newline at end of file diff --git a/public/news-ycombinator-com/index.html b/public/news-ycombinator-com/index.html new file mode 100644 index 00000000..cb0bdb0e --- /dev/null +++ b/public/news-ycombinator-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

news.ycombinator.com

Proud member of the exclusive 250kb club!

|

news.ycombinator.com is a member of the exclusive 250kb club. The page weighs only 12kb and has a content-to-bloat ratio of 54%.

back

\ No newline at end of file diff --git a/public/nicetranslator-com/index.html b/public/nicetranslator-com/index.html new file mode 100644 index 00000000..8508bd7a --- /dev/null +++ b/public/nicetranslator-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

nicetranslator.com

Proud member of the exclusive 250kb club!

|

nicetranslator.com is a member of the exclusive 250kb club. The page weighs only 152kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/nihar-page/index.html b/public/nihar-page/index.html new file mode 100644 index 00000000..f30ed471 --- /dev/null +++ b/public/nihar-page/index.html @@ -0,0 +1,135 @@ +The 250kb Club

nihar.page

Proud member of the exclusive 250kb club!

|

nihar.page is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 79%.

back

\ No newline at end of file diff --git a/public/nixnet-email/index.html b/public/nixnet-email/index.html new file mode 100644 index 00000000..a6e96291 --- /dev/null +++ b/public/nixnet-email/index.html @@ -0,0 +1,135 @@ +The 250kb Club

nixnet.email

Proud member of the exclusive 250kb club!

|

nixnet.email is a member of the exclusive 250kb club. The page weighs only 71kb and has a content-to-bloat ratio of 8%.

back

\ No newline at end of file diff --git a/public/nomasters-io/index.html b/public/nomasters-io/index.html new file mode 100644 index 00000000..b1f1c8d6 --- /dev/null +++ b/public/nomasters-io/index.html @@ -0,0 +1,135 @@ +The 250kb Club

nomasters.io

Proud member of the exclusive 250kb club!

|

nomasters.io is a member of the exclusive 250kb club. The page weighs only 50kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/norayr-am/index.html b/public/norayr-am/index.html new file mode 100644 index 00000000..6d268394 --- /dev/null +++ b/public/norayr-am/index.html @@ -0,0 +1,135 @@ +The 250kb Club

norayr.am

Proud member of the exclusive 250kb club!

|

norayr.am is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/notes-eatonphil-com/index.html b/public/notes-eatonphil-com/index.html new file mode 100644 index 00000000..6b754a48 --- /dev/null +++ b/public/notes-eatonphil-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

notes.eatonphil.com

Proud member of the exclusive 250kb club!

|

notes.eatonphil.com is a member of the exclusive 250kb club. The page weighs only 85kb and has a content-to-bloat ratio of 10%.

back

\ No newline at end of file diff --git a/public/notionbackups-com/index.html b/public/notionbackups-com/index.html new file mode 100644 index 00000000..b682c852 --- /dev/null +++ b/public/notionbackups-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

notionbackups.com

Proud member of the exclusive 250kb club!

|

notionbackups.com is a member of the exclusive 250kb club. The page weighs only 15kb and has a content-to-bloat ratio of 53%.

back

\ No newline at end of file diff --git a/public/noulin-net-blog/index.html b/public/noulin-net-blog/index.html new file mode 100644 index 00000000..885494de --- /dev/null +++ b/public/noulin-net-blog/index.html @@ -0,0 +1,135 @@ +The 250kb Club

noulin.net/blog

Proud member of the exclusive 250kb club!

|

noulin.net/blog is a member of the exclusive 250kb club. The page weighs only 22kb and has a content-to-bloat ratio of 61%.

back

\ No newline at end of file diff --git a/public/nytpu-com/index.html b/public/nytpu-com/index.html new file mode 100644 index 00000000..535adf48 --- /dev/null +++ b/public/nytpu-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

nytpu.com

Proud member of the exclusive 250kb club!

|

nytpu.com is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 57%.

back

\ No newline at end of file diff --git a/public/oh-mg/index.html b/public/oh-mg/index.html new file mode 100644 index 00000000..69c895fe --- /dev/null +++ b/public/oh-mg/index.html @@ -0,0 +1,135 @@ +The 250kb Club

oh.mg

Proud member of the exclusive 250kb club!

|

oh.mg is a member of the exclusive 250kb club. The page weighs only 11kb and has a content-to-bloat ratio of 38%.

back

\ No newline at end of file diff --git a/public/ohio-araw-xyz/index.html b/public/ohio-araw-xyz/index.html new file mode 100644 index 00000000..60f7971b --- /dev/null +++ b/public/ohio-araw-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ohio.araw.xyz

Proud member of the exclusive 250kb club!

|

ohio.araw.xyz is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 35%.

back

\ No newline at end of file diff --git a/public/oscarforner-com/index.html b/public/oscarforner-com/index.html new file mode 100644 index 00000000..bbfc1cff --- /dev/null +++ b/public/oscarforner-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

oscarforner.com

Proud member of the exclusive 250kb club!

|

oscarforner.com is a member of the exclusive 250kb club. The page weighs only 9kb and has a content-to-bloat ratio of 17%.

back

\ No newline at end of file diff --git a/public/oxenburypartners-com/index.html b/public/oxenburypartners-com/index.html new file mode 100644 index 00000000..9eb967d0 --- /dev/null +++ b/public/oxenburypartners-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

oxenburypartners.com

Proud member of the exclusive 250kb club!

|

oxenburypartners.com is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/page-mi-fu-berlin-de-jhermann/index.html b/public/page-mi-fu-berlin-de-jhermann/index.html new file mode 100644 index 00000000..998e9258 --- /dev/null +++ b/public/page-mi-fu-berlin-de-jhermann/index.html @@ -0,0 +1,135 @@ +The 250kb Club

page.mi.fu-berlin.de/jhermann

Proud member of the exclusive 250kb club!

|

page.mi.fu-berlin.de/jhermann is a member of the exclusive 250kb club. The page weighs only 17kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/page/1/index.html b/public/page/1/index.html new file mode 100644 index 00000000..259255ed --- /dev/null +++ b/public/page/1/index.html @@ -0,0 +1 @@ +Redirect

Click here to be redirected. \ No newline at end of file diff --git a/public/page/2/index.html b/public/page/2/index.html new file mode 100644 index 00000000..f38324ab --- /dev/null +++ b/public/page/2/index.html @@ -0,0 +1,135 @@ +The 250kb Club

The 250kb Club

The Web Is Doom

Lets do something about it!

The 250kb Club is a collection of web pages that focus on performance, efficiency and accessibility.

Websites in this list must not exceed 256kb compressed size!

Yes, compressed size. It makes much more sense because it allows for a lot of text to be transferred without having a big impact on the total size, while the impact of media is basically unaffected.

If your pages exceeds 250kb, you might consider 512kB.club or 1MB.club.

You can suggest a web page for this collection via Sourcehut or via Github. The site will be reviewed and, if applicable, added to the list below. Pages are checked again every week.

  1. midnight.pub 10kb92% open midnight.pub in a new tab or window
  2. lecaro.me/minimage 11kb18% open lecaro.me/minimage in a new tab or window
  3. oh.mg 11kb38% open oh.mg in a new tab or window
  4. dusanmitrovic.xyz 11kb23% open dusanmitrovic.xyz in a new tab or window
  5. majiehong.com 11kb13% open majiehong.com in a new tab or window
  6. huyngo.envs.net 11kb51% open huyngo.envs.net in a new tab or window
  7. miku86.com 11kb67% open miku86.com in a new tab or window
  8. 512kb.club 11kb80% open 512kb.club in a new tab or window
  9. zn80.net 12kb9% open zn80.net in a new tab or window
  10. news.ycombinator.com 12kb54% open news.ycombinator.com in a new tab or window
  11. tryhexadecimal.com 12kb48% open tryhexadecimal.com in a new tab or window
  12. 1mb.club 13kb96% open 1mb.club in a new tab or window
  13. phate6660.github.io 13kb17% open phate6660.github.io in a new tab or window
  14. timotijhof.net 14kb14% open timotijhof.net in a new tab or window
  15. usrme.xyz 15kb6% open usrme.xyz in a new tab or window
  16. notionbackups.com 15kb53% open notionbackups.com in a new tab or window
  17. xmdr.nl 15kb15% open xmdr.nl in a new tab or window
  18. blog.fossterer.com 16kb9% open blog.fossterer.com in a new tab or window
  19. antranigv.am 16kb44% open antranigv.am in a new tab or window
  20. daniel-siepmann.de 16kb73% open daniel-siepmann.de in a new tab or window
  21. featyre.xyz 17kb9% open featyre.xyz in a new tab or window
  22. page.mi.fu-berlin.de/jhermann 17kb100% open page.mi.fu-berlin.de/jhermann in a new tab or window
  23. yorickpeterse.com 18kb13% open yorickpeterse.com in a new tab or window
  24. thelion.website 18kb23% open thelion.website in a new tab or window
  25. processwire.dev 18kb38% open processwire.dev in a new tab or window
  26. unixsheikh.com 19kb37% open unixsheikh.com in a new tab or window
  27. flatpackapps.com 19kb14% open flatpackapps.com in a new tab or window
  28. jvanelian.dev 19kb14% open jvanelian.dev in a new tab or window
  29. mineralexistence.com/home.html 20kb9% open mineralexistence.com/home.html in a new tab or window
  30. concise-encoding.org 20kb18% open concise-encoding.org in a new tab or window
  31. guts.plus 20kb19% open guts.plus in a new tab or window
  32. úl.de 21kb22% open úl.de in a new tab or window
  33. ulpaulpa.de 21kb22% open ulpaulpa.de in a new tab or window
  34. paulwilde.uk 22kb5% open paulwilde.uk in a new tab or window
  35. thomas.me 22kb27% open thomas.me in a new tab or window
  36. noulin.net/blog 22kb61% open noulin.net/blog in a new tab or window
  37. motherfuckingwebsite.com 22kb10% open motherfuckingwebsite.com in a new tab or window
  38. armaanb.net 23kb9% open armaanb.net in a new tab or window
  39. bettermotherfuckingwebsite.com 23kb10% open bettermotherfuckingwebsite.com in a new tab or window
  40. cycloneblaze.net 23kb7% open cycloneblaze.net in a new tab or window
  41. richj.co 23kb10% open richj.co in a new tab or window
  42. matthewstrom.com 24kb8% open matthewstrom.com in a new tab or window
  43. willcodefor.beer 24kb26% open willcodefor.beer in a new tab or window
  44. lighthouse16.com 25kb8% open lighthouse16.com in a new tab or window
  45. fullstackpython.com 26kb22% open fullstackpython.com in a new tab or window
  46. chad.hirsch.host 26kb26% open chad.hirsch.host in a new tab or window
  47. remoteroast.club 26kb9% open remoteroast.club in a new tab or window
  48. www.dustri.org 27kb5% open www.dustri.org in a new tab or window
  49. jason.nabein.me 27kb27% open jason.nabein.me in a new tab or window
  50. n.2p5.xyz 28kb7% open n.2p5.xyz in a new tab or window
  51. drewdevault.com 29kb51% open drewdevault.com in a new tab or window
  52. sr.ht 29kb12% open sr.ht in a new tab or window
  53. gabnotes.org 30kb12% open gabnotes.org in a new tab or window
  54. bernsteinbear.com 31kb10% open bernsteinbear.com in a new tab or window
  55. lambdapapers.com 31kb8% open lambdapapers.com in a new tab or window
  56. gerikson.com/hnlo 32kb81% open gerikson.com/hnlo in a new tab or window
  57. www.usecue.com 33kb4% open www.usecue.com in a new tab or window
  58. alexschroeder.ch 33kb87% open alexschroeder.ch in a new tab or window
  59. 250kb.club 35kb29% open 250kb.club in a new tab or window
  60. kayafirat.com 35kb18% open kayafirat.com in a new tab or window
  61. kerkour.fr 37kb17% open kerkour.fr in a new tab or window
  62. foxwells.garden 37kb12% open foxwells.garden in a new tab or window
  63. gallant.dev 38kb31% open gallant.dev in a new tab or window
  64. buchh.org 39kb5% open buchh.org in a new tab or window
  65. worldti.me 41kb7% open worldti.me in a new tab or window
  66. searchbot.app 41kb4% open searchbot.app in a new tab or window
  67. christine.website 42kb7% open christine.website in a new tab or window
  68. binyam.in 42kb5% open binyam.in in a new tab or window
  69. lobste.rs 45kb22% open lobste.rs in a new tab or window
  70. subreply.com 45kb9% open subreply.com in a new tab or window
  71. www.bryanbraun.com/connect-four 46kb3% open www.bryanbraun.com/connect-four in a new tab or window
  72. www.unindented.org 49kb11% open www.unindented.org in a new tab or window
  73. lukesempire.com 49kb5% open lukesempire.com in a new tab or window
  74. nomasters.io 50kb3% open nomasters.io in a new tab or window
  75. linuxguideandhints.com 52kb6% open linuxguideandhints.com in a new tab or window
  76. martin.baillie.id 53kb6% open martin.baillie.id in a new tab or window
  77. sugarfi.dev 54kb4% open sugarfi.dev in a new tab or window
  78. blakehawkins.com/blog 55kb6% open blakehawkins.com/blog in a new tab or window
  79. koehr.in 56kb6% open koehr.in in a new tab or window
  80. k0r.in 56kb6% open k0r.in in a new tab or window
  81. ttntm.me 57kb6% open ttntm.me in a new tab or window
  82. coolmathgames.tech 57kb8% open coolmathgames.tech in a new tab or window
  83. ylukem.com 58kb3% open ylukem.com in a new tab or window
  84. secluded.site 59kb5% open secluded.site in a new tab or window
  85. zakr.es 59kb5% open zakr.es in a new tab or window
  86. www.neelc.org/about 61kb6% open www.neelc.org/about in a new tab or window
  87. lucianmarin.com 62kb2% open lucianmarin.com in a new tab or window
  88. jaime.gomezobregon.com 63kb3% open jaime.gomezobregon.com in a new tab or window
  89. berkshirehathaway.com 64kb9% open berkshirehathaway.com in a new tab or window
  90. motz-berlin.de 66kb2% open motz-berlin.de in a new tab or window
  91. beh.uk 67kb8% open beh.uk in a new tab or window
  92. www.beh.uk 67kb9% open www.beh.uk in a new tab or window
  93. leonardschuetz.ch 68kb7% open leonardschuetz.ch in a new tab or window
  94. thebestmotherfucking.website 69kb9% open thebestmotherfucking.website in a new tab or window
  95. www.rowlingindex.org 69kb19% open www.rowlingindex.org in a new tab or window
  96. lite.cnn.com 70kb9% open lite.cnn.com in a new tab or window
  97. nixnet.email 71kb8% open nixnet.email in a new tab or window
  98. anabeatriz.dev 74kb1% open anabeatriz.dev in a new tab or window
  99. legiblenews.com 74kb22% open legiblenews.com in a new tab or window
  100. ihsaan.glitch.me 76kb10% open ihsaan.glitch.me in a new tab or window
\ No newline at end of file diff --git a/public/page/3/index.html b/public/page/3/index.html new file mode 100644 index 00000000..1567c83d --- /dev/null +++ b/public/page/3/index.html @@ -0,0 +1,135 @@ +The 250kb Club

The 250kb Club

The Web Is Doom

Lets do something about it!

The 250kb Club is a collection of web pages that focus on performance, efficiency and accessibility.

Websites in this list must not exceed 256kb compressed size!

Yes, compressed size. It makes much more sense because it allows for a lot of text to be transferred without having a big impact on the total size, while the impact of media is basically unaffected.

If your pages exceeds 250kb, you might consider 512kB.club or 1MB.club.

You can suggest a web page for this collection via Sourcehut or via Github. The site will be reviewed and, if applicable, added to the list below. Pages are checked again every week.

  1. mikegerwitz.com 78kb6% open mikegerwitz.com in a new tab or window
  2. boehs.org 79kb2% open boehs.org in a new tab or window
  3. salixos.org 81kb3% open salixos.org in a new tab or window
  4. sourcehut.org 81kb8% open sourcehut.org in a new tab or window
  5. www.speedshop.co 84kb17% open www.speedshop.co in a new tab or window
  6. gennext.net.au 84kb26% open gennext.net.au in a new tab or window
  7. notes.eatonphil.com 85kb10% open notes.eatonphil.com in a new tab or window
  8. freesolitaire.win 87kb23% open freesolitaire.win in a new tab or window
  9. www.bryanbraun.com 89kb11% open www.bryanbraun.com in a new tab or window
  10. felt.dev 92kb2% open felt.dev in a new tab or window
  11. www.verybad.link 93kb3% open www.verybad.link in a new tab or window
  12. shazow.net 94kb4% open shazow.net in a new tab or window
  13. rya.nc 94kb8% open rya.nc in a new tab or window
  14. volleyball-baustetten.de 94kb4% open volleyball-baustetten.de in a new tab or window
  15. www.powerpointkaraoke.com 96kb6% open www.powerpointkaraoke.com in a new tab or window
  16. alexanderobenauer.com 96kb8% open alexanderobenauer.com in a new tab or window
  17. sparkbox.github.io/bouncy-ball 97kb3% open sparkbox.github.io/bouncy-ball in a new tab or window
  18. utsuho.rocks 98kb6% open utsuho.rocks in a new tab or window
  19. dpldocs.info/this-week-in-d/Blog.html 98kb72% open dpldocs.info/this-week-in-d/Blog.html in a new tab or window
  20. ihaque.org 103kb3% open ihaque.org in a new tab or window
  21. webperf.xyz 105kb4% open webperf.xyz in a new tab or window
  22. www.danielwasserlaufquicklinks.com 105kb100% open www.danielwasserlaufquicklinks.com in a new tab or window
  23. quitsocialmedia.club 106kb2% open quitsocialmedia.club in a new tab or window
  24. dyremyhr.no 107kb3% open dyremyhr.no in a new tab or window
  25. allien.work 107kb7% open allien.work in a new tab or window
  26. fmarier.org 109kb2% open fmarier.org in a new tab or window
  27. monokai.nl 109kb4% open monokai.nl in a new tab or window
  28. www.tarsnap.com 109kb3% open www.tarsnap.com in a new tab or window
  29. www.oskarlindgren.se 111kb3% open www.oskarlindgren.se in a new tab or window
  30. www.slowernews.com 113kb20% open www.slowernews.com in a new tab or window
  31. swl.am 115kb3% open swl.am in a new tab or window
  32. suckless.org 116kb4% open suckless.org in a new tab or window
  33. www.zinzy.website 116kb24% open www.zinzy.website in a new tab or window
  34. pr0.uk 119kb5% open pr0.uk in a new tab or window
  35. editions-du-26-octobre.com 119kb11% open editions-du-26-octobre.com in a new tab or window
  36. www.borfigat.org 120kb2% open www.borfigat.org in a new tab or window
  37. ut99.weba.ru 120kb2% open ut99.weba.ru in a new tab or window
  38. porkbrain.com 120kb72% open porkbrain.com in a new tab or window
  39. iain.in 122kb1% open iain.in in a new tab or window
  40. getindiekit.com 123kb3% open getindiekit.com in a new tab or window
  41. s1.flatpackapps.com/app.php?appId=22 127kb23% open s1.flatpackapps.com/app.php?appId=22 in a new tab or window
  42. playerone.kevincox.ca 130kb2% open playerone.kevincox.ca in a new tab or window
  43. wilde-it.co.uk 136kb3% open wilde-it.co.uk in a new tab or window
  44. codelayer.de 136kb5% open codelayer.de in a new tab or window
  45. danielsada.tech 136kb3% open danielsada.tech in a new tab or window
  46. www.tuhs.org 139kb1% open www.tuhs.org in a new tab or window
  47. ache.one 142kb4% open ache.one in a new tab or window
  48. frontaid.io 144kb2% open frontaid.io in a new tab or window
  49. my-flow.com 144kb1% open my-flow.com in a new tab or window
  50. benovermyer.com 145kb1% open benovermyer.com in a new tab or window
  51. bduck.xyz 147kb5% open bduck.xyz in a new tab or window
  52. uberspace.de 148kb5% open uberspace.de in a new tab or window
  53. codingbobby.xyz 149kb2% open codingbobby.xyz in a new tab or window
  54. sparkbox.github.io/logo-experiments 151kb1% open sparkbox.github.io/logo-experiments in a new tab or window
  55. zakr.es/blog 152kb19% open zakr.es/blog in a new tab or window
  56. nicetranslator.com 152kb1% open nicetranslator.com in a new tab or window
  57. quinncasey.com 153kb6% open quinncasey.com in a new tab or window
  58. blog.circuitsofimagination.com 153kb2% open blog.circuitsofimagination.com in a new tab or window
  59. xubuntu.org 154kb3% open xubuntu.org in a new tab or window
  60. bnolet.me 154kb3% open bnolet.me in a new tab or window
  61. koehr.tech 154kb3% open koehr.tech in a new tab or window
  62. www.openbsd.org 155kb2% open www.openbsd.org in a new tab or window
  63. jeffhuang.com 157kb6% open jeffhuang.com in a new tab or window
  64. xiu.io 158kb6% open xiu.io in a new tab or window
  65. matthall.codes 161kb3% open matthall.codes in a new tab or window
  66. www.bryanbraun.com/anchorjs 162kb6% open www.bryanbraun.com/anchorjs in a new tab or window
  67. kevq.uk 163kb5% open kevq.uk in a new tab or window
  68. ut2.weba.ru 164kb1% open ut2.weba.ru in a new tab or window
  69. emersion.fr 181kb1% open emersion.fr in a new tab or window
  70. jvelo.at 184kb2% open jvelo.at in a new tab or window
  71. ianmobbs.com 189kb1% open ianmobbs.com in a new tab or window
  72. chrisportela.com 193kb1% open chrisportela.com in a new tab or window
  73. pgjones.dev 193kb1% open pgjones.dev in a new tab or window
  74. www.bryanbraun.com/after-dark-css 197kb61% open www.bryanbraun.com/after-dark-css in a new tab or window
  75. www.migadu.com 204kb2% open www.migadu.com in a new tab or window
  76. jmtd.net 212kb1% open jmtd.net in a new tab or window
  77. cronokirby.com 222kb2% open cronokirby.com in a new tab or window
  78. wondroushealing.com 222kb3% open wondroushealing.com in a new tab or window
  79. slackjeff.com.br 223kb14% open slackjeff.com.br in a new tab or window
  80. customformats.com 237kb2% open customformats.com in a new tab or window
  81. ultimateelectronicsbook.com 252kb3% open ultimateelectronicsbook.com in a new tab or window
\ No newline at end of file diff --git a/public/paulwilde-uk/index.html b/public/paulwilde-uk/index.html new file mode 100644 index 00000000..6012aa8b --- /dev/null +++ b/public/paulwilde-uk/index.html @@ -0,0 +1,135 @@ +The 250kb Club

paulwilde.uk

Proud member of the exclusive 250kb club!

|

paulwilde.uk is a member of the exclusive 250kb club. The page weighs only 22kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/pbanks-net/index.html b/public/pbanks-net/index.html new file mode 100644 index 00000000..b3e028bb --- /dev/null +++ b/public/pbanks-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

pbanks.net

Proud member of the exclusive 250kb club!

|

pbanks.net is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/pgjones-dev/index.html b/public/pgjones-dev/index.html new file mode 100644 index 00000000..b1d1eaff --- /dev/null +++ b/public/pgjones-dev/index.html @@ -0,0 +1,135 @@ +The 250kb Club

pgjones.dev

Proud member of the exclusive 250kb club!

|

pgjones.dev is a member of the exclusive 250kb club. The page weighs only 193kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/phate6660-github-io/index.html b/public/phate6660-github-io/index.html new file mode 100644 index 00000000..f858f85d --- /dev/null +++ b/public/phate6660-github-io/index.html @@ -0,0 +1,135 @@ +The 250kb Club

phate6660.github.io

Proud member of the exclusive 250kb club!

|

phate6660.github.io is a member of the exclusive 250kb club. The page weighs only 13kb and has a content-to-bloat ratio of 17%.

back

\ No newline at end of file diff --git a/public/phreedom-club/index.html b/public/phreedom-club/index.html new file mode 100644 index 00000000..11cf082b --- /dev/null +++ b/public/phreedom-club/index.html @@ -0,0 +1,135 @@ +The 250kb Club

phreedom.club

Proud member of the exclusive 250kb club!

|

phreedom.club is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/plasmasturm-org/index.html b/public/plasmasturm-org/index.html new file mode 100644 index 00000000..da2017b7 --- /dev/null +++ b/public/plasmasturm-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

plasmasturm.org

Proud member of the exclusive 250kb club!

|

plasmasturm.org is a member of the exclusive 250kb club. The page weighs only 9kb and has a content-to-bloat ratio of 62%.

back

\ No newline at end of file diff --git a/public/playerone-kevincox-ca/index.html b/public/playerone-kevincox-ca/index.html new file mode 100644 index 00000000..f0ccc1ab --- /dev/null +++ b/public/playerone-kevincox-ca/index.html @@ -0,0 +1,135 @@ +The 250kb Club

playerone.kevincox.ca

Proud member of the exclusive 250kb club!

|

playerone.kevincox.ca is a member of the exclusive 250kb club. The page weighs only 130kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/pools-xmr-wiki/index.html b/public/pools-xmr-wiki/index.html new file mode 100644 index 00000000..e6ec2f64 --- /dev/null +++ b/public/pools-xmr-wiki/index.html @@ -0,0 +1,135 @@ +The 250kb Club

pools.xmr.wiki

Proud member of the exclusive 250kb club!

|

pools.xmr.wiki is a member of the exclusive 250kb club. The page weighs only 6kb and has a content-to-bloat ratio of 47%.

back

\ No newline at end of file diff --git a/public/porkbrain-com/index.html b/public/porkbrain-com/index.html new file mode 100644 index 00000000..f944296e --- /dev/null +++ b/public/porkbrain-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

porkbrain.com

Proud member of the exclusive 250kb club!

|

porkbrain.com is a member of the exclusive 250kb club. The page weighs only 120kb and has a content-to-bloat ratio of 72%.

back

\ No newline at end of file diff --git a/public/pr0-uk/index.html b/public/pr0-uk/index.html new file mode 100644 index 00000000..b820b28f --- /dev/null +++ b/public/pr0-uk/index.html @@ -0,0 +1,135 @@ +The 250kb Club

pr0.uk

Proud member of the exclusive 250kb club!

|

pr0.uk is a member of the exclusive 250kb club. The page weighs only 119kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/processwire-dev/index.html b/public/processwire-dev/index.html new file mode 100644 index 00000000..d53ceafd --- /dev/null +++ b/public/processwire-dev/index.html @@ -0,0 +1,135 @@ +The 250kb Club

processwire.dev

Proud member of the exclusive 250kb club!

|

processwire.dev is a member of the exclusive 250kb club. The page weighs only 18kb and has a content-to-bloat ratio of 38%.

back

\ No newline at end of file diff --git a/public/qubyte-codes/index.html b/public/qubyte-codes/index.html new file mode 100644 index 00000000..9280043b --- /dev/null +++ b/public/qubyte-codes/index.html @@ -0,0 +1,135 @@ +The 250kb Club

qubyte.codes

Proud member of the exclusive 250kb club!

|

qubyte.codes is a member of the exclusive 250kb club. The page weighs only 8kb and has a content-to-bloat ratio of 34%.

back

\ No newline at end of file diff --git a/public/quinncasey-com/index.html b/public/quinncasey-com/index.html new file mode 100644 index 00000000..d9a57838 --- /dev/null +++ b/public/quinncasey-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

quinncasey.com

Proud member of the exclusive 250kb club!

|

quinncasey.com is a member of the exclusive 250kb club. The page weighs only 153kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/quitsocialmedia-club/index.html b/public/quitsocialmedia-club/index.html new file mode 100644 index 00000000..fa4b0fb3 --- /dev/null +++ b/public/quitsocialmedia-club/index.html @@ -0,0 +1,135 @@ +The 250kb Club

quitsocialmedia.club

Proud member of the exclusive 250kb club!

|

quitsocialmedia.club is a member of the exclusive 250kb club. The page weighs only 106kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/rc-lite-xyz/index.html b/public/rc-lite-xyz/index.html new file mode 100644 index 00000000..980b4fa0 --- /dev/null +++ b/public/rc-lite-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

rc-lite.xyz

Proud member of the exclusive 250kb club!

|

rc-lite.xyz is a member of the exclusive 250kb club. The page weighs only 7kb and has a content-to-bloat ratio of 38%.

back

\ No newline at end of file diff --git a/public/remoteroast-club/index.html b/public/remoteroast-club/index.html new file mode 100644 index 00000000..4207d46a --- /dev/null +++ b/public/remoteroast-club/index.html @@ -0,0 +1,135 @@ +The 250kb Club

remoteroast.club

Proud member of the exclusive 250kb club!

|

remoteroast.club is a member of the exclusive 250kb club. The page weighs only 26kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/richj-co/index.html b/public/richj-co/index.html new file mode 100644 index 00000000..1a1894f6 --- /dev/null +++ b/public/richj-co/index.html @@ -0,0 +1,135 @@ +The 250kb Club

richj.co

Proud member of the exclusive 250kb club!

|

richj.co is a member of the exclusive 250kb club. The page weighs only 23kb and has a content-to-bloat ratio of 10%.

back

\ No newline at end of file diff --git a/build/robots.txt b/public/robots.txt similarity index 100% rename from build/robots.txt rename to public/robots.txt diff --git a/public/rss.xml b/public/rss.xml new file mode 100644 index 00000000..4c7ddf20 --- /dev/null +++ b/public/rss.xml @@ -0,0 +1,1979 @@ + + + + The 250kb Club + https://250kb.club/ + An exclusive membership for web pages presenting themselves in no more than 250kb. + Zola + en + + Tue, 22 Mar 2022 00:00:00 +0000 + + 0xedward.io + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/0xedward-io/ + https://250kb.club/0xedward-io/ + + + + 0xff.nu + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/0xff-nu/ + https://250kb.club/0xff-nu/ + + + + 10kbclub.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/10kbclub-com/ + https://250kb.club/10kbclub-com/ + + + + 1mb.club + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/1mb-club/ + https://250kb.club/1mb-club/ + + + + 250kb.club + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/250kb-club/ + https://250kb.club/250kb-club/ + + + + 512kb.club + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/512kb-club/ + https://250kb.club/512kb-club/ + + + + ache.one + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ache-one/ + https://250kb.club/ache-one/ + + + + alexanderobenauer.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/alexanderobenauer-com/ + https://250kb.club/alexanderobenauer-com/ + + + + alexschroeder.ch + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/alexschroeder-ch/ + https://250kb.club/alexschroeder-ch/ + + + + allien.work + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/allien-work/ + https://250kb.club/allien-work/ + + + + anabeatriz.dev + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/anabeatriz-dev/ + https://250kb.club/anabeatriz-dev/ + + + + antranigv.am + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/antranigv-am/ + https://250kb.club/antranigv-am/ + + + + arfer.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/arfer-net/ + https://250kb.club/arfer-net/ + + + + armaanb.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/armaanb-net/ + https://250kb.club/armaanb-net/ + + + + artemislena.eu + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/artemislena-eu/ + https://250kb.club/artemislena-eu/ + + + + bcachefs.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/bcachefs-org/ + https://250kb.club/bcachefs-org/ + + + + bduck.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/bduck-xyz/ + https://250kb.club/bduck-xyz/ + + + + beh.uk + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/beh-uk/ + https://250kb.club/beh-uk/ + + + + benharr.is + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/benharr-is/ + https://250kb.club/benharr-is/ + + + + benovermyer.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/benovermyer-com/ + https://250kb.club/benovermyer-com/ + + + + berkshirehathaway.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/berkshirehathaway-com/ + https://250kb.club/berkshirehathaway-com/ + + + + bernsteinbear.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/bernsteinbear-com/ + https://250kb.club/bernsteinbear-com/ + + + + bestmotherfucking.website + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/bestmotherfucking-website/ + https://250kb.club/bestmotherfucking-website/ + + + + bettermotherfuckingwebsite.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/bettermotherfuckingwebsite-com/ + https://250kb.club/bettermotherfuckingwebsite-com/ + + + + binyam.in + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/binyam-in/ + https://250kb.club/binyam-in/ + + + + blakehawkins.com/blog + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/blakehawkins-com-blog/ + https://250kb.club/blakehawkins-com-blog/ + + + + blmayer.dev + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/blmayer-dev/ + https://250kb.club/blmayer-dev/ + + + + blog.bshah.in + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/blog-bshah-in/ + https://250kb.club/blog-bshah-in/ + + + + blog.circuitsofimagination.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/blog-circuitsofimagination-com/ + https://250kb.club/blog-circuitsofimagination-com/ + + + + blog.fefe.de + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/blog-fefe-de/ + https://250kb.club/blog-fefe-de/ + + + + blog.fossterer.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/blog-fossterer-com/ + https://250kb.club/blog-fossterer-com/ + + + + bnolet.me + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/bnolet-me/ + https://250kb.club/bnolet-me/ + + + + boehs.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/boehs-org/ + https://250kb.club/boehs-org/ + + + + box.matto.nl + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/box-matto-nl/ + https://250kb.club/box-matto-nl/ + + + + bridge.simplefin.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/bridge-simplefin-org/ + https://250kb.club/bridge-simplefin-org/ + + + + buchh.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/buchh-org/ + https://250kb.club/buchh-org/ + + + + bvnf.space + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/bvnf-space/ + https://250kb.club/bvnf-space/ + + + + cat-v.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/cat-v-org/ + https://250kb.club/cat-v-org/ + + + + ccsleep.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ccsleep-net/ + https://250kb.club/ccsleep-net/ + + + + chad.hirsch.host + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/chad-hirsch-host/ + https://250kb.club/chad-hirsch-host/ + + + + chrisportela.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/chrisportela-com/ + https://250kb.club/chrisportela-com/ + + + + christine.website + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/christine-website/ + https://250kb.club/christine-website/ + + + + cnx.srht.site + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/cnx-srht-site/ + https://250kb.club/cnx-srht-site/ + + + + codelayer.de + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/codelayer-de/ + https://250kb.club/codelayer-de/ + + + + codevoid.de + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/codevoid-de/ + https://250kb.club/codevoid-de/ + + + + codingbobby.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/codingbobby-xyz/ + https://250kb.club/codingbobby-xyz/ + + + + codingotaku.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/codingotaku-com/ + https://250kb.club/codingotaku-com/ + + + + concise-encoding.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/concise-encoding-org/ + https://250kb.club/concise-encoding-org/ + + + + consoom.soy + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/consoom-soy/ + https://250kb.club/consoom-soy/ + + + + coolmathgames.tech + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/coolmathgames-tech/ + https://250kb.club/coolmathgames-tech/ + + + + cosmo.red + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/cosmo-red/ + https://250kb.club/cosmo-red/ + + + + crackle.dev + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/crackle-dev/ + https://250kb.club/crackle-dev/ + + + + cronokirby.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/cronokirby-com/ + https://250kb.club/cronokirby-com/ + + + + customformats.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/customformats-com/ + https://250kb.club/customformats-com/ + + + + cycloneblaze.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/cycloneblaze-net/ + https://250kb.club/cycloneblaze-net/ + + + + daniel-siepmann.de + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/daniel-siepmann-de/ + https://250kb.club/daniel-siepmann-de/ + + + + danielcuttridge.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/danielcuttridge-com/ + https://250kb.club/danielcuttridge-com/ + + + + danielsada.tech + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/danielsada-tech/ + https://250kb.club/danielsada-tech/ + + + + danluu.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/danluu-com/ + https://250kb.club/danluu-com/ + + + + decentnet.github.io + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/decentnet-github-io/ + https://250kb.club/decentnet-github-io/ + + + + dotfilehub.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/dotfilehub-com/ + https://250kb.club/dotfilehub-com/ + + + + dpldocs.info/this-week-in-d/Blog.html + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/dpldocs-info-this-week-in-d-blog-html/ + https://250kb.club/dpldocs-info-this-week-in-d-blog-html/ + + + + drewdevault.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/drewdevault-com/ + https://250kb.club/drewdevault-com/ + + + + dusanmitrovic.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/dusanmitrovic-xyz/ + https://250kb.club/dusanmitrovic-xyz/ + + + + dyremyhr.no + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/dyremyhr-no/ + https://250kb.club/dyremyhr-no/ + + + + editions-du-26-octobre.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/editions-du-26-octobre-com/ + https://250kb.club/editions-du-26-octobre-com/ + + + + emersion.fr + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/emersion-fr/ + https://250kb.club/emersion-fr/ + + + + fabioartuso.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/fabioartuso-com/ + https://250kb.club/fabioartuso-com/ + + + + fanael.github.io + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/fanael-github-io/ + https://250kb.club/fanael-github-io/ + + + + featyre.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/featyre-xyz/ + https://250kb.club/featyre-xyz/ + + + + felt.dev + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/felt-dev/ + https://250kb.club/felt-dev/ + + + + flatpackapps.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/flatpackapps-com/ + https://250kb.club/flatpackapps-com/ + + + + fmarier.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/fmarier-org/ + https://250kb.club/fmarier-org/ + + + + fossdd.codeberg.page + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/fossdd-codeberg-page/ + https://250kb.club/fossdd-codeberg-page/ + + + + foxwells.garden + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/foxwells-garden/ + https://250kb.club/foxwells-garden/ + + + + free.mg + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/free-mg/ + https://250kb.club/free-mg/ + + + + freesolitaire.win + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/freesolitaire-win/ + https://250kb.club/freesolitaire-win/ + + + + frontaid.io + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/frontaid-io/ + https://250kb.club/frontaid-io/ + + + + fullstackpython.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/fullstackpython-com/ + https://250kb.club/fullstackpython-com/ + + + + funnylookinhat.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/funnylookinhat-com/ + https://250kb.club/funnylookinhat-com/ + + + + gabnotes.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/gabnotes-org/ + https://250kb.club/gabnotes-org/ + + + + gallant.dev + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/gallant-dev/ + https://250kb.club/gallant-dev/ + + + + gennext.net.au + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/gennext-net-au/ + https://250kb.club/gennext-net-au/ + + + + gerikson.com/hnlo + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/gerikson-com-hnlo/ + https://250kb.club/gerikson-com-hnlo/ + + + + gerikson.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/gerikson-com/ + https://250kb.club/gerikson-com/ + + + + getindiekit.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/getindiekit-com/ + https://250kb.club/getindiekit-com/ + + + + grapheneos.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/grapheneos-org/ + https://250kb.club/grapheneos-org/ + + + + gtrr.artemislena.eu + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/gtrr-artemislena-eu/ + https://250kb.club/gtrr-artemislena-eu/ + + + + guts.plus + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/guts-plus/ + https://250kb.club/guts-plus/ + + + + hmbrg.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/hmbrg-xyz/ + https://250kb.club/hmbrg-xyz/ + + + + humaidq.ae + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/humaidq-ae/ + https://250kb.club/humaidq-ae/ + + + + huyngo.envs.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/huyngo-envs-net/ + https://250kb.club/huyngo-envs-net/ + + + + iain.in + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/iain-in/ + https://250kb.club/iain-in/ + + + + ianmobbs.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ianmobbs-com/ + https://250kb.club/ianmobbs-com/ + + + + ihaque.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ihaque-org/ + https://250kb.club/ihaque-org/ + + + + ihsaan.glitch.me + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ihsaan-glitch-me/ + https://250kb.club/ihsaan-glitch-me/ + + + + inatri.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/inatri-com/ + https://250kb.club/inatri-com/ + + + + jaime.gomezobregon.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jaime-gomezobregon-com/ + https://250kb.club/jaime-gomezobregon-com/ + + + + jakob.kaivo.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jakob-kaivo-net/ + https://250kb.club/jakob-kaivo-net/ + + + + jason.nabein.me + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jason-nabein-me/ + https://250kb.club/jason-nabein-me/ + + + + jeffhuang.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jeffhuang-com/ + https://250kb.club/jeffhuang-com/ + + + + jeremysarber.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jeremysarber-com/ + https://250kb.club/jeremysarber-com/ + + + + jlelse.blog + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jlelse-blog/ + https://250kb.club/jlelse-blog/ + + + + jmtd.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jmtd-net/ + https://250kb.club/jmtd-net/ + + + + john-doe.neocities.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/john-doe-neocities-org/ + https://250kb.club/john-doe-neocities-org/ + + + + jrballesteros05.codeberg.page + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jrballesteros05-codeberg-page/ + https://250kb.club/jrballesteros05-codeberg-page/ + + + + jvanelian.dev + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jvanelian-dev/ + https://250kb.club/jvanelian-dev/ + + + + jvelo.at + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/jvelo-at/ + https://250kb.club/jvelo-at/ + + + + karolis.koncevicius.lt + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/karolis-koncevicius-lt/ + https://250kb.club/karolis-koncevicius-lt/ + + + + kayafirat.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/kayafirat-com/ + https://250kb.club/kayafirat-com/ + + + + kerkour.fr + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/kerkour-fr/ + https://250kb.club/kerkour-fr/ + + + + kevq.uk + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/kevq-uk/ + https://250kb.club/kevq-uk/ + + + + kidl.at + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/kidl-at/ + https://250kb.club/kidl-at/ + + + + kishvanchee.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/kishvanchee-com/ + https://250kb.club/kishvanchee-com/ + + + + kj7nzl.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/kj7nzl-net/ + https://250kb.club/kj7nzl-net/ + + + + kunalmarwaha.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/kunalmarwaha-com/ + https://250kb.club/kunalmarwaha-com/ + + + + lambdapapers.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lambdapapers-com/ + https://250kb.club/lambdapapers-com/ + + + + lawzava.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lawzava-com/ + https://250kb.club/lawzava-com/ + + + + lecaro.me/minimage + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lecaro-me-minimage/ + https://250kb.club/lecaro-me-minimage/ + + + + lectupedia.com/en + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lectupedia-com-en/ + https://250kb.club/lectupedia-com-en/ + + + + legiblenews.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/legiblenews-com/ + https://250kb.club/legiblenews-com/ + + + + leonardschuetz.ch + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/leonardschuetz-ch/ + https://250kb.club/leonardschuetz-ch/ + + + + lighthouse16.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lighthouse16-com/ + https://250kb.club/lighthouse16-com/ + + + + lil.gay + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lil-gay/ + https://250kb.club/lil-gay/ + + + + linuxguideandhints.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/linuxguideandhints-com/ + https://250kb.club/linuxguideandhints-com/ + + + + lite.cnn.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lite-cnn-com/ + https://250kb.club/lite-cnn-com/ + + + + lo.hn + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lo-hn/ + https://250kb.club/lo-hn/ + + + + lobste.rs + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lobste-rs/ + https://250kb.club/lobste-rs/ + + + + luana.cc + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/luana-cc/ + https://250kb.club/luana-cc/ + + + + lucianmarin.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lucianmarin-com/ + https://250kb.club/lucianmarin-com/ + + + + lukeramsden.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lukeramsden-com/ + https://250kb.club/lukeramsden-com/ + + + + lukesempire.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/lukesempire-com/ + https://250kb.club/lukesempire-com/ + + + + m-chrzan.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/m-chrzan-xyz/ + https://250kb.club/m-chrzan-xyz/ + + + + majiehong.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/majiehong-com/ + https://250kb.club/majiehong-com/ + + + + manpages.bsd.lv + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/manpages-bsd-lv/ + https://250kb.club/manpages-bsd-lv/ + + + + manuelmoreale.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/manuelmoreale-com/ + https://250kb.club/manuelmoreale-com/ + + + + martin.baillie.id + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/martin-baillie-id/ + https://250kb.club/martin-baillie-id/ + + + + mataroa.blog + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/mataroa-blog/ + https://250kb.club/mataroa-blog/ + + + + matthall.codes + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/matthall-codes/ + https://250kb.club/matthall-codes/ + + + + matthewstrom.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/matthewstrom-com/ + https://250kb.club/matthewstrom-com/ + + + + midnight.pub + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/midnight-pub/ + https://250kb.club/midnight-pub/ + + + + mikegerwitz.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/mikegerwitz-com/ + https://250kb.club/mikegerwitz-com/ + + + + miku86.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/miku86-com/ + https://250kb.club/miku86-com/ + + + + mineralexistence.com/home.html + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/mineralexistence-com-home-html/ + https://250kb.club/mineralexistence-com-home-html/ + + + + minid.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/minid-net/ + https://250kb.club/minid-net/ + + + + minwiz.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/minwiz-com/ + https://250kb.club/minwiz-com/ + + + + monokai.nl + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/monokai-nl/ + https://250kb.club/monokai-nl/ + + + + motherfuckingwebsite.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/motherfuckingwebsite-com/ + https://250kb.club/motherfuckingwebsite-com/ + + + + motz-berlin.de + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/motz-berlin-de/ + https://250kb.club/motz-berlin-de/ + + + + my-flow.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/my-flow-com/ + https://250kb.club/my-flow-com/ + + + + myipaddress.ru + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/myipaddress-ru/ + https://250kb.club/myipaddress-ru/ + + + + n.2p5.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/n-2p5-xyz/ + https://250kb.club/n-2p5-xyz/ + + + + na20a.neocities.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/na20a-neocities-org/ + https://250kb.club/na20a-neocities-org/ + + + + natestemen.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/natestemen-xyz/ + https://250kb.club/natestemen-xyz/ + + + + nest.jakl.one + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/nest-jakl-one/ + https://250kb.club/nest-jakl-one/ + + + + news.ycombinator.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/news-ycombinator-com/ + https://250kb.club/news-ycombinator-com/ + + + + nicetranslator.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/nicetranslator-com/ + https://250kb.club/nicetranslator-com/ + + + + nihar.page + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/nihar-page/ + https://250kb.club/nihar-page/ + + + + nixnet.email + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/nixnet-email/ + https://250kb.club/nixnet-email/ + + + + nomasters.io + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/nomasters-io/ + https://250kb.club/nomasters-io/ + + + + norayr.am + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/norayr-am/ + https://250kb.club/norayr-am/ + + + + notes.eatonphil.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/notes-eatonphil-com/ + https://250kb.club/notes-eatonphil-com/ + + + + notionbackups.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/notionbackups-com/ + https://250kb.club/notionbackups-com/ + + + + noulin.net/blog + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/noulin-net-blog/ + https://250kb.club/noulin-net-blog/ + + + + nytpu.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/nytpu-com/ + https://250kb.club/nytpu-com/ + + + + oh.mg + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/oh-mg/ + https://250kb.club/oh-mg/ + + + + ohio.araw.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ohio-araw-xyz/ + https://250kb.club/ohio-araw-xyz/ + + + + oscarforner.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/oscarforner-com/ + https://250kb.club/oscarforner-com/ + + + + oxenburypartners.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/oxenburypartners-com/ + https://250kb.club/oxenburypartners-com/ + + + + page.mi.fu-berlin.de/jhermann + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/page-mi-fu-berlin-de-jhermann/ + https://250kb.club/page-mi-fu-berlin-de-jhermann/ + + + + paulwilde.uk + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/paulwilde-uk/ + https://250kb.club/paulwilde-uk/ + + + + pbanks.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/pbanks-net/ + https://250kb.club/pbanks-net/ + + + + pgjones.dev + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/pgjones-dev/ + https://250kb.club/pgjones-dev/ + + + + phate6660.github.io + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/phate6660-github-io/ + https://250kb.club/phate6660-github-io/ + + + + phreedom.club + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/phreedom-club/ + https://250kb.club/phreedom-club/ + + + + plasmasturm.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/plasmasturm-org/ + https://250kb.club/plasmasturm-org/ + + + + playerone.kevincox.ca + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/playerone-kevincox-ca/ + https://250kb.club/playerone-kevincox-ca/ + + + + pools.xmr.wiki + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/pools-xmr-wiki/ + https://250kb.club/pools-xmr-wiki/ + + + + porkbrain.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/porkbrain-com/ + https://250kb.club/porkbrain-com/ + + + + pr0.uk + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/pr0-uk/ + https://250kb.club/pr0-uk/ + + + + processwire.dev + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/processwire-dev/ + https://250kb.club/processwire-dev/ + + + + qubyte.codes + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/qubyte-codes/ + https://250kb.club/qubyte-codes/ + + + + quinncasey.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/quinncasey-com/ + https://250kb.club/quinncasey-com/ + + + + quitsocialmedia.club + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/quitsocialmedia-club/ + https://250kb.club/quitsocialmedia-club/ + + + + rc-lite.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/rc-lite-xyz/ + https://250kb.club/rc-lite-xyz/ + + + + remoteroast.club + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/remoteroast-club/ + https://250kb.club/remoteroast-club/ + + + + richj.co + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/richj-co/ + https://250kb.club/richj-co/ + + + + rya.nc + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/rya-nc/ + https://250kb.club/rya-nc/ + + + + s1.flatpackapps.com/app.php?appId=22 + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/s1-flatpackapps-com-app-php-appid-22/ + https://250kb.club/s1-flatpackapps-com-app-php-appid-22/ + + + + salejandro.me + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/salejandro-me/ + https://250kb.club/salejandro-me/ + + + + salixos.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/salixos-org/ + https://250kb.club/salixos-org/ + + + + satchlj.us + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/satchlj-us/ + https://250kb.club/satchlj-us/ + + + + searchbot.app + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/searchbot-app/ + https://250kb.club/searchbot-app/ + + + + secluded.site + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/secluded-site/ + https://250kb.club/secluded-site/ + + + + seirdy.one + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/seirdy-one/ + https://250kb.club/seirdy-one/ + + + + shazow.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/shazow-net/ + https://250kb.club/shazow-net/ + + + + si3t.ch + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/si3t-ch/ + https://250kb.club/si3t-ch/ + + + + sizi.ng + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/sizi-ng/ + https://250kb.club/sizi-ng/ + + + + sjmulder.nl + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/sjmulder-nl/ + https://250kb.club/sjmulder-nl/ + + + + slackjeff.com.br + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/slackjeff-com-br/ + https://250kb.club/slackjeff-com-br/ + + + + սոնա.հայ + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/sona-hay/ + https://250kb.club/sona-hay/ + + + + sourcehut.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/sourcehut-org/ + https://250kb.club/sourcehut-org/ + + + + sparkbox.github.io/bouncy-ball + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/sparkbox-github-io-bouncy-ball/ + https://250kb.club/sparkbox-github-io-bouncy-ball/ + + + + sparkbox.github.io/logo-experiments + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/sparkbox-github-io-logo-experiments/ + https://250kb.club/sparkbox-github-io-logo-experiments/ + + + + sr.ht + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/sr-ht/ + https://250kb.club/sr-ht/ + + + + subreply.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/subreply-com/ + https://250kb.club/subreply-com/ + + + + suckless.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/suckless-org/ + https://250kb.club/suckless-org/ + + + + sugarfi.dev + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/sugarfi-dev/ + https://250kb.club/sugarfi-dev/ + + + + susam.in + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/susam-in/ + https://250kb.club/susam-in/ + + + + swl.am + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/swl-am/ + https://250kb.club/swl-am/ + + + + t0.vc + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/t0-vc/ + https://250kb.club/t0-vc/ + + + + temp.sh + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/temp-sh/ + https://250kb.club/temp-sh/ + + + + text.npr.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/text-npr-org/ + https://250kb.club/text-npr-org/ + + + + thebestmotherfucking.website + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/thebestmotherfucking-website/ + https://250kb.club/thebestmotherfucking-website/ + + + + thejollyteapot.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/thejollyteapot-com/ + https://250kb.club/thejollyteapot-com/ + + + + thelion.website + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/thelion-website/ + https://250kb.club/thelion-website/ + + + + thomas.me + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/thomas-me/ + https://250kb.club/thomas-me/ + + + + timotijhof.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/timotijhof-net/ + https://250kb.club/timotijhof-net/ + + + + tom.kobalt.dev/map + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/tom-kobalt-dev-map/ + https://250kb.club/tom-kobalt-dev-map/ + + + + tryhexadecimal.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/tryhexadecimal-com/ + https://250kb.club/tryhexadecimal-com/ + + + + ttntm.me + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ttntm-me/ + https://250kb.club/ttntm-me/ + + + + uberspace.de + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/uberspace-de/ + https://250kb.club/uberspace-de/ + + + + uglyduck.ca + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/uglyduck-ca/ + https://250kb.club/uglyduck-ca/ + + + + úl.de + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ul-de/ + https://250kb.club/ul-de/ + + + + ulpaulpa.de + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ulpaulpa-de/ + https://250kb.club/ulpaulpa-de/ + + + + ultimateelectronicsbook.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ultimateelectronicsbook-com/ + https://250kb.club/ultimateelectronicsbook-com/ + + + + unix.lgbt + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/unix-lgbt/ + https://250kb.club/unix-lgbt/ + + + + unixsheikh.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/unixsheikh-com/ + https://250kb.club/unixsheikh-com/ + + + + usrme.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/usrme-xyz/ + https://250kb.club/usrme-xyz/ + + + + ut2.weba.ru + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ut2-weba-ru/ + https://250kb.club/ut2-weba-ru/ + + + + ut99.weba.ru + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ut99-weba-ru/ + https://250kb.club/ut99-weba-ru/ + + + + utsuho.rocks + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/utsuho-rocks/ + https://250kb.club/utsuho-rocks/ + + + + volleyball-baustetten.de + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/volleyball-baustetten-de/ + https://250kb.club/volleyball-baustetten-de/ + + + + webperf.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/webperf-xyz/ + https://250kb.club/webperf-xyz/ + + + + webzine.puffy.cafe + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/webzine-puffy-cafe/ + https://250kb.club/webzine-puffy-cafe/ + + + + werc.cat-v.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/werc-cat-v-org/ + https://250kb.club/werc-cat-v-org/ + + + + wilde-it.co.uk + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/wilde-it-co-uk/ + https://250kb.club/wilde-it-co-uk/ + + + + willcodefor.beer + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/willcodefor-beer/ + https://250kb.club/willcodefor-beer/ + + + + wondroushealing.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/wondroushealing-com/ + https://250kb.club/wondroushealing-com/ + + + + worldti.me + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/worldti-me/ + https://250kb.club/worldti-me/ + + + + www.beh.uk + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-beh-uk/ + https://250kb.club/www-beh-uk/ + + + + www.borfigat.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-borfigat-org/ + https://250kb.club/www-borfigat-org/ + + + + www.bryanbraun.com/after-dark-css + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-bryanbraun-com-after-dark-css/ + https://250kb.club/www-bryanbraun-com-after-dark-css/ + + + + www.bryanbraun.com/anchorjs + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-bryanbraun-com-anchorjs/ + https://250kb.club/www-bryanbraun-com-anchorjs/ + + + + www.bryanbraun.com/connect-four + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-bryanbraun-com-connect-four/ + https://250kb.club/www-bryanbraun-com-connect-four/ + + + + www.bryanbraun.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-bryanbraun-com/ + https://250kb.club/www-bryanbraun-com/ + + + + www.danielwasserlaufquicklinks.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-danielwasserlaufquicklinks-com/ + https://250kb.club/www-danielwasserlaufquicklinks-com/ + + + + www.dustri.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-dustri-org/ + https://250kb.club/www-dustri-org/ + + + + www.groovestomp.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-groovestomp-com/ + https://250kb.club/www-groovestomp-com/ + + + + www.migadu.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-migadu-com/ + https://250kb.club/www-migadu-com/ + + + + www.minimumviable.it + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-minimumviable-it/ + https://250kb.club/www-minimumviable-it/ + + + + www.neelc.org/about + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-neelc-org-about/ + https://250kb.club/www-neelc-org-about/ + + + + www.openbsd.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-openbsd-org/ + https://250kb.club/www-openbsd-org/ + + + + www.oskarlindgren.se + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-oskarlindgren-se/ + https://250kb.club/www-oskarlindgren-se/ + + + + www.paritybit.ca + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-paritybit-ca/ + https://250kb.club/www-paritybit-ca/ + + + + www.powerpointkaraoke.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-powerpointkaraoke-com/ + https://250kb.club/www-powerpointkaraoke-com/ + + + + www.rowlingindex.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-rowlingindex-org/ + https://250kb.club/www-rowlingindex-org/ + + + + www.slowernews.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-slowernews-com/ + https://250kb.club/www-slowernews-com/ + + + + www.speedshop.co + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-speedshop-co/ + https://250kb.club/www-speedshop-co/ + + + + www.tarsnap.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-tarsnap-com/ + https://250kb.club/www-tarsnap-com/ + + + + www.tuhs.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-tuhs-org/ + https://250kb.club/www-tuhs-org/ + + + + www.unindented.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-unindented-org/ + https://250kb.club/www-unindented-org/ + + + + www.usecue.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-usecue-com/ + https://250kb.club/www-usecue-com/ + + + + www.verybad.link + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-verybad-link/ + https://250kb.club/www-verybad-link/ + + + + www.zinzy.website + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/www-zinzy-website/ + https://250kb.club/www-zinzy-website/ + + + + xigoi.neocities.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/xigoi-neocities-org/ + https://250kb.club/xigoi-neocities-org/ + + + + xiu.io + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/xiu-io/ + https://250kb.club/xiu-io/ + + + + xmdr.nl + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/xmdr-nl/ + https://250kb.club/xmdr-nl/ + + + + xnaas.info + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/xnaas-info/ + https://250kb.club/xnaas-info/ + + + + xslendi.xyz + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/xslendi-xyz/ + https://250kb.club/xslendi-xyz/ + + + + xubuntu.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/xubuntu-org/ + https://250kb.club/xubuntu-org/ + + + + ybad.name + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ybad-name/ + https://250kb.club/ybad-name/ + + + + ylukem.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/ylukem-com/ + https://250kb.club/ylukem-com/ + + + + yorickpeterse.com + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/yorickpeterse-com/ + https://250kb.club/yorickpeterse-com/ + + + + zakr.es/blog + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/zakr-es-blog/ + https://250kb.club/zakr-es-blog/ + + + + zakr.es + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/zakr-es/ + https://250kb.club/zakr-es/ + + + + zn80.net + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/zn80-net/ + https://250kb.club/zn80-net/ + + + + zupzup.org + Tue, 22 Mar 2022 00:00:00 +0000 + https://250kb.club/zupzup-org/ + https://250kb.club/zupzup-org/ + + + + koehr.tech + Tue, 22 Feb 2022 00:00:00 +0000 + https://250kb.club/koehr-tech/ + https://250kb.club/koehr-tech/ + + + + k0r.in + Mon, 21 Feb 2022 00:00:00 +0000 + https://250kb.club/k0r-in/ + https://250kb.club/k0r-in/ + + + + koehr.in + Mon, 21 Feb 2022 00:00:00 +0000 + https://250kb.club/koehr-in/ + https://250kb.club/koehr-in/ + + + + diff --git a/public/rya-nc/index.html b/public/rya-nc/index.html new file mode 100644 index 00000000..88de8e88 --- /dev/null +++ b/public/rya-nc/index.html @@ -0,0 +1,135 @@ +The 250kb Club

rya.nc

Proud member of the exclusive 250kb club!

|

rya.nc is a member of the exclusive 250kb club. The page weighs only 94kb and has a content-to-bloat ratio of 8%.

back

\ No newline at end of file diff --git a/public/s1-flatpackapps-com-app-php-appid-22/index.html b/public/s1-flatpackapps-com-app-php-appid-22/index.html new file mode 100644 index 00000000..14f54b01 --- /dev/null +++ b/public/s1-flatpackapps-com-app-php-appid-22/index.html @@ -0,0 +1,135 @@ +The 250kb Club

s1.flatpackapps.com/app.php?appId=22

Proud member of the exclusive 250kb club!

|

s1.flatpackapps.com/app.php?appId=22 is a member of the exclusive 250kb club. The page weighs only 127kb and has a content-to-bloat ratio of 23%.

back

\ No newline at end of file diff --git a/public/salejandro-me/index.html b/public/salejandro-me/index.html new file mode 100644 index 00000000..7d9ccef0 --- /dev/null +++ b/public/salejandro-me/index.html @@ -0,0 +1,135 @@ +The 250kb Club

salejandro.me

Proud member of the exclusive 250kb club!

|

salejandro.me is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 52%.

back

\ No newline at end of file diff --git a/public/salixos-org/index.html b/public/salixos-org/index.html new file mode 100644 index 00000000..2615c298 --- /dev/null +++ b/public/salixos-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

salixos.org

Proud member of the exclusive 250kb club!

|

salixos.org is a member of the exclusive 250kb club. The page weighs only 81kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/satchlj-us/index.html b/public/satchlj-us/index.html new file mode 100644 index 00000000..ca01e15c --- /dev/null +++ b/public/satchlj-us/index.html @@ -0,0 +1,135 @@ +The 250kb Club

satchlj.us

Proud member of the exclusive 250kb club!

|

satchlj.us is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/search_index.en.js b/public/search_index.en.js new file mode 100644 index 00000000..7e37bbea --- /dev/null +++ b/public/search_index.en.js @@ -0,0 +1 @@ +window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"0":{"docs":{},"df":0,"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/0xedward-io/":{"tf":1.0}},"df":1}}}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/0xff-nu/":{"tf":1.0}},"df":1}}}}}}},"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/10kbclub-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/1mb-club/":{"tf":1.0}},"df":1}}}}}}}},"2":{"docs":{},"df":0,"5":{"docs":{},"df":0,"0":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/250kb-club/":{"tf":1.0}},"df":1}}}}}}}}},"6":{"docs":{"https://250kb.club/editions-du-26-octobre-com/":{"tf":1.0}},"df":1}},"5":{"docs":{},"df":0,"1":{"docs":{},"df":0,"2":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/512kb-club/":{"tf":1.0}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/ache-one/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/alexanderobenauer-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/alexschroeder-ch/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/allien-work/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/anabeatriz-dev/":{"tf":1.0}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"v":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/antranigv-am/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/arfer-net/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/armaanb-net/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/artemislena-eu/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/sparkbox-github-io-bouncy-ball/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/volleyball-baustetten-de/":{"tf":1.0}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/bcachefs-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/bduck-xyz/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/beh-uk/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/benharr-is/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/benovermyer-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/berkshirehathaway-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/motz-berlin-de/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/page-mi-fu-berlin-de-jhermann/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/bernsteinbear-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/bestmotherfucking-website/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/bettermotherfuckingwebsite-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/binyam-in/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/blakehawkins-com-blog/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/blmayer-dev/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/blog-bshah-in/":{"tf":1.0}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/blog-circuitsofimagination-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/blog-fefe-de/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/blog-fossterer-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/bnolet-me/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/boehs-org/":{"tf":1.0}},"df":1}}}}}}},"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/box-matto-nl/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/bridge-simplefin-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/buchh-org/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://250kb.club/bvnf-space/":{"tf":1.0}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/cat-v-org/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/ccsleep-net/":{"tf":1.0}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/chad-hirsch-host/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/chrisportela-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/christine-website/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/m-chrzan-xyz/":{"tf":1.0}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://250kb.club/cnx-srht-site/":{"tf":1.0}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/codelayer-de/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/codevoid-de/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/codingbobby-xyz/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/codingotaku-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://250kb.club/concise-encoding-org/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"https://250kb.club/consoom-soy/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/coolmathgames-tech/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/cosmo-red/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/crackle-dev/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/cronokirby-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://250kb.club/www-bryanbraun-com-after-dark-css/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/customformats-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/cycloneblaze-net/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/dpldocs-info-this-week-in-d-blog-html/":{"tf":1.0}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/daniel-siepmann-de/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/danielcuttridge-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/danielsada-tech/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/danluu-com/":{"tf":1.0}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/www-bryanbraun-com-after-dark-css/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/decentnet-github-io/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/john-doe-neocities-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/dotfilehub-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/dpldocs-info-this-week-in-d-blog-html/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/drewdevault-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"u":{"docs":{"https://250kb.club/editions-du-26-octobre-com/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/dusanmitrovic-xyz/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/dyremyhr-no/":{"tf":1.0}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/editions-du-26-octobre-com/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/emersion-fr/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/concise-encoding-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/sparkbox-github-io-logo-experiments/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/fabioartuso-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/fanael-github-io/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/featyre-xyz/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/felt-dev/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/flatpackapps-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/my-flow-com/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/fmarier-org/":{"tf":1.0}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/fossdd-codeberg-page/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/www-bryanbraun-com-connect-four/":{"tf":1.0}},"df":1}},"x":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/foxwells-garden/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/free-mg/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/freesolitaire-win/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/frontaid-io/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"p":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/fullstackpython-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/funnylookinhat-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/gabnotes-org/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/gallant-dev/":{"tf":1.0}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/gennext-net-au/":{"tf":1.0}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/gerikson-com/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/gerikson-com-hnlo/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/getindiekit-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/grapheneos-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/gtrr-artemislena-eu/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/guts-plus/":{"tf":1.0}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/hmbrg-xyz/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"q":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{"https://250kb.club/humaidq-ae/":{"tf":1.0}},"df":1}}}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/huyngo-envs-net/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/iain-in/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ianmobbs-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/ihaque-org/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ihsaan-glitch-me/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/inatri-com/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/wilde-it-co-uk/":{"tf":1.0}},"df":1}}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/jaime-gomezobregon-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/jakob-kaivo-net/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/jason-nabein-me/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/jeffhuang-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/jeremysarber-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/jlelse-blog/":{"tf":1.0}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/jmtd-net/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/john-doe-neocities-org/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"0":{"docs":{},"df":0,"5":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/jrballesteros05-codeberg-page/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/jvanelian-dev/":{"tf":1.0}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/jvelo-at/":{"tf":1.0}},"df":1}}}}}}}},"k":{"docs":{},"df":0,"0":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/k0r-in/":{"tf":1.0}},"df":1}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/karolis-koncevicius-lt/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/kayafirat-com/":{"tf":1.0}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/kerkour-fr/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"q":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/kevq-uk/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/kidl-at/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/kishvanchee-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"7":{"docs":{},"df":0,"n":{"docs":{},"df":0,"z":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/kj7nzl-net/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/koehr-in/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/koehr-tech/":{"tf":1.0}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/kunalmarwaha-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://250kb.club/ul-de/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lambdapapers-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lawzava-com/":{"tf":1.0}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/lecaro-me-minimage/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/lectupedia-com-en/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/legiblenews-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/leonardschuetz-ch/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"1":{"docs":{},"df":0,"6":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lighthouse16-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://250kb.club/lil-gay/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/linuxguideandhints-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lite-cnn-com/":{"tf":1.0}},"df":1}}}}}}},"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/rc-lite-xyz/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/lo-hn/":{"tf":1.0}},"df":1}}},"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/lobste-rs/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{"https://250kb.club/luana-cc/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lucianmarin-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lukeramsden-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lukesempire-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{"https://250kb.club/m-chrzan-xyz/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/majiehong-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/manpages-bsd-lv/":{"tf":1.0}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/manuelmoreale-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/martin-baillie-id/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/mataroa-blog/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/matthall-codes/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/matthewstrom-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/midnight-pub/":{"tf":1.0}},"df":1}}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/mikegerwitz-com/":{"tf":1.0}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/miku86-com/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/mineralexistence-com-home-html/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/minid-net/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/minwiz-com/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/monokai-nl/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/motherfuckingwebsite-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{"https://250kb.club/motz-berlin-de/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/myipaddress-ru/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"2":{"docs":{},"df":0,"p":{"docs":{},"df":0,"5":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/n-2p5-xyz/":{"tf":1.0}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/na20a-neocities-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/natestemen-xyz/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/nest-jakl-one/":{"tf":1.0}},"df":1}}}}}}}}}},"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/news-ycombinator-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/nicetranslator-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/nihar-page/":{"tf":1.0}},"df":1}}}}}}},"x":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/nixnet-email/":{"tf":1.0}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/nomasters-io/":{"tf":1.0}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/norayr-am/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/notes-eatonphil-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/notionbackups-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/noulin-net-blog/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/nytpu-com/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/editions-du-26-octobre-com/":{"tf":1.0}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/oh-mg/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/ohio-araw-xyz/":{"tf":1.0}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/oscarforner-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/oxenburypartners-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/page-mi-fu-berlin-de-jhermann/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/paulwilde-uk/":{"tf":1.0}},"df":1}}}}}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/pbanks-net/":{"tf":1.0}},"df":1}}}}}}}}},"g":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/pgjones-dev/":{"tf":1.0}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"6":{"docs":{},"df":0,"6":{"docs":{},"df":0,"6":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/phate6660-github-io/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/phreedom-club/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/plasmasturm-org/":{"tf":1.0}},"df":1}}}}}}}}}}}},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"https://250kb.club/playerone-kevincox-ca/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/pools-xmr-wiki/":{"tf":1.0}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/porkbrain-com/":{"tf":1.0}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/pr0-uk/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/processwire-dev/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/qubyte-codes/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/quinncasey-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/quitsocialmedia-club/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"https://250kb.club/rc-lite-xyz/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/remoteroast-club/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"j":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/richj-co/":{"tf":1.0}},"df":1}}}}}}},"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://250kb.club/rya-nc/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{},"df":0,"?":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"2":{"docs":{},"df":0,"2":{"docs":{"https://250kb.club/s1-flatpackapps-com-app-php-appid-22/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/salejandro-me/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/salixos-org/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"j":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/satchlj-us/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://250kb.club/searchbot-app/":{"tf":1.0}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/secluded-site/":{"tf":1.0}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/seirdy-one/":{"tf":1.0}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/shazow-net/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"3":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/si3t-ch/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/daniel-siepmann-de/":{"tf":1.0}},"df":1}}}}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/sizi-ng/":{"tf":1.0}},"df":1}}}}}},"j":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/sjmulder-nl/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/slackjeff-com-br/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/sourcehut-org/":{"tf":1.0}},"df":1}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/sparkbox-github-io-bouncy-ball/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/sparkbox-github-io-logo-experiments/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/sr-ht/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/subreply-com/":{"tf":1.0}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/suckless-org/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/sugarfi-dev/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/susam-in/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/swl-am/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"c":{"docs":{"https://250kb.club/t0-vc/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/temp-sh/":{"tf":1.0}},"df":1}}}}},"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/text-npr-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/thebestmotherfucking-website/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/thejollyteapot-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/thelion-website/":{"tf":1.0}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/thomas-me/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"j":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/timotijhof-net/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://250kb.club/tom-kobalt-dev-map/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/tryhexadecimal-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://250kb.club/ttntm-me/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/uberspace-de/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"https://250kb.club/uglyduck-ca/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/ulpaulpa-de/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ultimateelectronicsbook-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/unix-lgbt/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/unixsheikh-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/usrme-xyz/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/ut2-weba-ru/":{"tf":1.0}},"df":1}}}}}}}}},"9":{"docs":{},"df":0,"9":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/ut99-weba-ru/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/utsuho-rocks/":{"tf":1.0}},"df":1}}}}}}}}}}},"v":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/cat-v-org/":{"tf":1.0},"https://250kb.club/werc-cat-v-org/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/volleyball-baustetten-de/":{"tf":1.0}},"df":1}}}}}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/webperf-xyz/":{"tf":1.0}},"df":1}}}}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{"https://250kb.club/webzine-puffy-cafe/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/dpldocs-info-this-week-in-d-blog-html/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/werc-cat-v-org/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/wilde-it-co-uk/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/willcodefor-beer/":{"tf":1.0}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/wondroushealing-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/worldti-me/":{"tf":1.0}},"df":1}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/www-beh-uk/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-borfigat-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-bryanbraun-com/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-bryanbraun-com-after-dark-css/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"j":{"docs":{"https://250kb.club/www-bryanbraun-com-anchorjs/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-bryanbraun-com-connect-four/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-danielwasserlaufquicklinks-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-dustri-org/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-groovestomp-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-migadu-com/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-minimumviable-it/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-neelc-org-about/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-openbsd-org/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{"https://250kb.club/www-oskarlindgren-se/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"https://250kb.club/www-paritybit-ca/":{"tf":1.0}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-powerpointkaraoke-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-rowlingindex-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-slowernews-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/www-speedshop-co/":{"tf":1.0}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-tarsnap-com/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"h":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-tuhs-org/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-unindented-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-usecue-com/":{"tf":1.0}},"df":1}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/www-verybad-link/":{"tf":1.0}},"df":1}}}}}}}}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"z":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-zinzy-website/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/xigoi-neocities-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/xiu-io/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/xmdr-nl/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/xnaas-info/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/xslendi-xyz/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/xubuntu-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ybad-name/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ylukem-com/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/yorickpeterse-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{"https://250kb.club/zakr-es/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/zakr-es-blog/":{"tf":1.0}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"8":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/zn80-net/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"z":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/zupzup-org/":{"tf":1.0}},"df":1}}}}}}}}}}}},"title":{"root":{"docs":{},"df":0,"0":{"docs":{},"df":0,"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/0xedward-io/":{"tf":1.0}},"df":1}}}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/0xff-nu/":{"tf":1.0}},"df":1}}}}}}},"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/10kbclub-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/1mb-club/":{"tf":1.0}},"df":1}}}}}}}},"2":{"docs":{},"df":0,"5":{"docs":{},"df":0,"0":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/250kb-club/":{"tf":1.0}},"df":1}}}}}}}}},"6":{"docs":{"https://250kb.club/editions-du-26-octobre-com/":{"tf":1.0}},"df":1}},"5":{"docs":{},"df":0,"1":{"docs":{},"df":0,"2":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/512kb-club/":{"tf":1.0}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/ache-one/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/alexanderobenauer-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/alexschroeder-ch/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/allien-work/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/anabeatriz-dev/":{"tf":1.0}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"v":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/antranigv-am/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/arfer-net/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/armaanb-net/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/artemislena-eu/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/sparkbox-github-io-bouncy-ball/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/volleyball-baustetten-de/":{"tf":1.0}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/bcachefs-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/bduck-xyz/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/beh-uk/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/benharr-is/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/benovermyer-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/berkshirehathaway-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/motz-berlin-de/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"j":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/page-mi-fu-berlin-de-jhermann/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/bernsteinbear-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/bestmotherfucking-website/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/bettermotherfuckingwebsite-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/binyam-in/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/blakehawkins-com-blog/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/blmayer-dev/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/blog-bshah-in/":{"tf":1.0}},"df":1}}}}}}}},"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/blog-circuitsofimagination-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/blog-fefe-de/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/blog-fossterer-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/bnolet-me/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/boehs-org/":{"tf":1.0}},"df":1}}}}}}},"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/box-matto-nl/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/bridge-simplefin-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/buchh-org/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://250kb.club/bvnf-space/":{"tf":1.0}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/cat-v-org/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/ccsleep-net/":{"tf":1.0}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/chad-hirsch-host/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/chrisportela-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/christine-website/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/m-chrzan-xyz/":{"tf":1.0}},"df":1}}}}}}}}},"n":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://250kb.club/cnx-srht-site/":{"tf":1.0}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/codelayer-de/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/codevoid-de/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/codingbobby-xyz/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/codingotaku-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://250kb.club/concise-encoding-org/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"y":{"docs":{"https://250kb.club/consoom-soy/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/coolmathgames-tech/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/cosmo-red/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/crackle-dev/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/cronokirby-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://250kb.club/www-bryanbraun-com-after-dark-css/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/customformats-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/cycloneblaze-net/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/dpldocs-info-this-week-in-d-blog-html/":{"tf":1.0}},"df":1}}}}}}}}}},"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/daniel-siepmann-de/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/danielcuttridge-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/danielsada-tech/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/danluu-com/":{"tf":1.0}},"df":1}}}}}}}},"r":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/www-bryanbraun-com-after-dark-css/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/decentnet-github-io/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/john-doe-neocities-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/dotfilehub-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/dpldocs-info-this-week-in-d-blog-html/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/drewdevault-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"u":{"docs":{"https://250kb.club/editions-du-26-octobre-com/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/dusanmitrovic-xyz/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/dyremyhr-no/":{"tf":1.0}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/editions-du-26-octobre-com/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/emersion-fr/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/concise-encoding-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/sparkbox-github-io-logo-experiments/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/fabioartuso-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/fanael-github-io/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/featyre-xyz/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/felt-dev/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/flatpackapps-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/my-flow-com/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/fmarier-org/":{"tf":1.0}},"df":1}}}}}}}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/fossdd-codeberg-page/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/www-bryanbraun-com-connect-four/":{"tf":1.0}},"df":1}},"x":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/foxwells-garden/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/free-mg/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/freesolitaire-win/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/frontaid-io/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"p":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/fullstackpython-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/funnylookinhat-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/gabnotes-org/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/gallant-dev/":{"tf":1.0}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/gennext-net-au/":{"tf":1.0}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/gerikson-com/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/gerikson-com-hnlo/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/getindiekit-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/grapheneos-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/gtrr-artemislena-eu/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/guts-plus/":{"tf":1.0}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/hmbrg-xyz/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"q":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{"https://250kb.club/humaidq-ae/":{"tf":1.0}},"df":1}}}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"v":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/huyngo-envs-net/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/iain-in/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ianmobbs-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/ihaque-org/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ihsaan-glitch-me/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/inatri-com/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/wilde-it-co-uk/":{"tf":1.0}},"df":1}}}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/jaime-gomezobregon-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/jakob-kaivo-net/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/jason-nabein-me/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/jeffhuang-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/jeremysarber-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/jlelse-blog/":{"tf":1.0}},"df":1}}}}}}}}}},"m":{"docs":{},"df":0,"t":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/jmtd-net/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/john-doe-neocities-org/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"0":{"docs":{},"df":0,"5":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/jrballesteros05-codeberg-page/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/jvanelian-dev/":{"tf":1.0}},"df":1}}}}}}}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/jvelo-at/":{"tf":1.0}},"df":1}}}}}}}},"k":{"docs":{},"df":0,"0":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/k0r-in/":{"tf":1.0}},"df":1}}}}},"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/karolis-koncevicius-lt/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/kayafirat-com/":{"tf":1.0}},"df":1}}}}}}}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/kerkour-fr/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"q":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/kevq-uk/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/kidl-at/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/kishvanchee-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"7":{"docs":{},"df":0,"n":{"docs":{},"df":0,"z":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/kj7nzl-net/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/koehr-in/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/koehr-tech/":{"tf":1.0}},"df":1}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/kunalmarwaha-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://250kb.club/ul-de/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lambdapapers-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lawzava-com/":{"tf":1.0}},"df":1}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/lecaro-me-minimage/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/lectupedia-com-en/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/legiblenews-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/leonardschuetz-ch/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"1":{"docs":{},"df":0,"6":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lighthouse16-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://250kb.club/lil-gay/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/linuxguideandhints-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lite-cnn-com/":{"tf":1.0}},"df":1}}}}}}},"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/rc-lite-xyz/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/lo-hn/":{"tf":1.0}},"df":1}}},"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/lobste-rs/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{"https://250kb.club/luana-cc/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lucianmarin-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lukeramsden-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/lukesempire-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{"https://250kb.club/m-chrzan-xyz/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"j":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/majiehong-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/manpages-bsd-lv/":{"tf":1.0}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/manuelmoreale-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/martin-baillie-id/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/mataroa-blog/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/matthall-codes/":{"tf":1.0}},"df":1}}}}}}},"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/matthewstrom-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/midnight-pub/":{"tf":1.0}},"df":1}}}}}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/mikegerwitz-com/":{"tf":1.0}},"df":1}}}}}}}}}}}},"u":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/miku86-com/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/mineralexistence-com-home-html/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/minid-net/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/minwiz-com/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/monokai-nl/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/motherfuckingwebsite-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{"https://250kb.club/motz-berlin-de/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/myipaddress-ru/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"2":{"docs":{},"df":0,"p":{"docs":{},"df":0,"5":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/n-2p5-xyz/":{"tf":1.0}},"df":1}}}}}}}},"a":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/na20a-neocities-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/natestemen-xyz/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/nest-jakl-one/":{"tf":1.0}},"df":1}}}}}}}}}},"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/news-ycombinator-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/nicetranslator-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/nihar-page/":{"tf":1.0}},"df":1}}}}}}},"x":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/nixnet-email/":{"tf":1.0}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/nomasters-io/":{"tf":1.0}},"df":1}}}}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/norayr-am/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/notes-eatonphil-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/notionbackups-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/noulin-net-blog/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/nytpu-com/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/editions-du-26-octobre-com/":{"tf":1.0}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/oh-mg/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/ohio-araw-xyz/":{"tf":1.0}},"df":1}}}}}}}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/oscarforner-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/oxenburypartners-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/page-mi-fu-berlin-de-jhermann/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/paulwilde-uk/":{"tf":1.0}},"df":1}}}}}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/pbanks-net/":{"tf":1.0}},"df":1}}}}}}}}},"g":{"docs":{},"df":0,"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/pgjones-dev/":{"tf":1.0}},"df":1}}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"6":{"docs":{},"df":0,"6":{"docs":{},"df":0,"6":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/phate6660-github-io/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/phreedom-club/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/plasmasturm-org/":{"tf":1.0}},"df":1}}}}}}}}}}}},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"https://250kb.club/playerone-kevincox-ca/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"m":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/pools-xmr-wiki/":{"tf":1.0}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/porkbrain-com/":{"tf":1.0}},"df":1}}}}}}}}}}}},"r":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/pr0-uk/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/processwire-dev/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/qubyte-codes/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/quinncasey-com/":{"tf":1.0}},"df":1}}}}}}}}}}},"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/quitsocialmedia-club/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"https://250kb.club/rc-lite-xyz/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/remoteroast-club/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"j":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/richj-co/":{"tf":1.0}},"df":1}}}}}}},"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://250kb.club/rya-nc/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"1":{"docs":{},"df":0,".":{"docs":{},"df":0,"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"p":{"docs":{},"df":0,"?":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"=":{"docs":{},"df":0,"2":{"docs":{},"df":0,"2":{"docs":{"https://250kb.club/s1-flatpackapps-com-app-php-appid-22/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/salejandro-me/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/salixos-org/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"j":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/satchlj-us/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{"https://250kb.club/searchbot-app/":{"tf":1.0}},"df":1}}}}}}}}}}},"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/secluded-site/":{"tf":1.0}},"df":1}}}}}}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/seirdy-one/":{"tf":1.0}},"df":1}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/shazow-net/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"3":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/si3t-ch/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/daniel-siepmann-de/":{"tf":1.0}},"df":1}}}}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/sizi-ng/":{"tf":1.0}},"df":1}}}}}},"j":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/sjmulder-nl/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{"https://250kb.club/slackjeff-com-br/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/sourcehut-org/":{"tf":1.0}},"df":1}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://250kb.club/sparkbox-github-io-bouncy-ball/":{"tf":1.0}},"df":1}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/sparkbox-github-io-logo-experiments/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/sr-ht/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/subreply-com/":{"tf":1.0}},"df":1}}}}}}}}}},"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/suckless-org/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://250kb.club/sugarfi-dev/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://250kb.club/susam-in/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/swl-am/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"v":{"docs":{},"df":0,"c":{"docs":{"https://250kb.club/t0-vc/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://250kb.club/temp-sh/":{"tf":1.0}},"df":1}}}}},"x":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/text-npr-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/thebestmotherfucking-website/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/thejollyteapot-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/thelion-website/":{"tf":1.0}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/thomas-me/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"j":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/timotijhof-net/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://250kb.club/tom-kobalt-dev-map/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/tryhexadecimal-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://250kb.club/ttntm-me/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/uberspace-de/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"https://250kb.club/uglyduck-ca/":{"tf":1.0}},"df":1}}}}}}}}}},"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/ulpaulpa-de/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"s":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ultimateelectronicsbook-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/unix-lgbt/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/unixsheikh-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/usrme-xyz/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/ut2-weba-ru/":{"tf":1.0}},"df":1}}}}}}}}},"9":{"docs":{},"df":0,"9":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{"https://250kb.club/ut99-weba-ru/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/utsuho-rocks/":{"tf":1.0}},"df":1}}}}}}}}}}},"v":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/cat-v-org/":{"tf":1.0},"https://250kb.club/werc-cat-v-org/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/volleyball-baustetten-de/":{"tf":1.0}},"df":1}}}}}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/webperf-xyz/":{"tf":1.0}},"df":1}}}}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{"https://250kb.club/webzine-puffy-cafe/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/dpldocs-info-this-week-in-d-blog-html/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/werc-cat-v-org/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://250kb.club/wilde-it-co-uk/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{"https://250kb.club/willcodefor-beer/":{"tf":1.0}},"df":1}}}}}}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/wondroushealing-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/worldti-me/":{"tf":1.0}},"df":1}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/www-beh-uk/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-borfigat-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-bryanbraun-com/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-bryanbraun-com-after-dark-css/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"j":{"docs":{"https://250kb.club/www-bryanbraun-com-anchorjs/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-bryanbraun-com-connect-four/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-danielwasserlaufquicklinks-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-dustri-org/":{"tf":1.0}},"df":1}}}}}}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-groovestomp-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-migadu-com/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-minimumviable-it/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-neelc-org-about/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-openbsd-org/":{"tf":1.0}},"df":1}}}}}}}}}},"s":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{"https://250kb.club/www-oskarlindgren-se/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{"https://250kb.club/www-paritybit-ca/":{"tf":1.0}},"df":1}}}}}}}}}}},"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-powerpointkaraoke-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-rowlingindex-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-slowernews-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/www-speedshop-co/":{"tf":1.0}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-tarsnap-com/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"h":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-tuhs-org/":{"tf":1.0}},"df":1}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/www-unindented-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/www-usecue-com/":{"tf":1.0}},"df":1}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://250kb.club/www-verybad-link/":{"tf":1.0}},"df":1}}}}}}}}}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"z":{"docs":{},"df":0,"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/www-zinzy-website/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/xigoi-neocities-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/xiu-io/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{"https://250kb.club/xmdr-nl/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{"https://250kb.club/xnaas-info/":{"tf":1.0}},"df":1}}}}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"x":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://250kb.club/xslendi-xyz/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/xubuntu-org/":{"tf":1.0}},"df":1}}}}}}}}}}},"y":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ybad-name/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/ylukem-com/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://250kb.club/yorickpeterse-com/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}},"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"r":{"docs":{},"df":0,".":{"docs":{"https://250kb.club/zakr-es/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/zakr-es-blog/":{"tf":1.0}},"df":1}}}}}}}}}}},"n":{"docs":{},"df":0,"8":{"docs":{},"df":0,"0":{"docs":{},"df":0,".":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://250kb.club/zn80-net/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,"z":{"docs":{},"df":0,"u":{"docs":{},"df":0,"p":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://250kb.club/zupzup-org/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"documentStore":{"save":true,"docs":{"https://250kb.club/":{"body":"","id":"https://250kb.club/","title":"koehr learned"},"https://250kb.club/0xedward-io/":{"body":"","id":"https://250kb.club/0xedward-io/","title":"0xedward.io"},"https://250kb.club/0xff-nu/":{"body":"","id":"https://250kb.club/0xff-nu/","title":"0xff.nu"},"https://250kb.club/10kbclub-com/":{"body":"","id":"https://250kb.club/10kbclub-com/","title":"10kbclub.com"},"https://250kb.club/1mb-club/":{"body":"","id":"https://250kb.club/1mb-club/","title":"1mb.club"},"https://250kb.club/250kb-club/":{"body":"","id":"https://250kb.club/250kb-club/","title":"250kb.club"},"https://250kb.club/512kb-club/":{"body":"","id":"https://250kb.club/512kb-club/","title":"512kb.club"},"https://250kb.club/ache-one/":{"body":"","id":"https://250kb.club/ache-one/","title":"ache.one"},"https://250kb.club/alexanderobenauer-com/":{"body":"","id":"https://250kb.club/alexanderobenauer-com/","title":"alexanderobenauer.com"},"https://250kb.club/alexschroeder-ch/":{"body":"","id":"https://250kb.club/alexschroeder-ch/","title":"alexschroeder.ch"},"https://250kb.club/allien-work/":{"body":"","id":"https://250kb.club/allien-work/","title":"allien.work"},"https://250kb.club/anabeatriz-dev/":{"body":"","id":"https://250kb.club/anabeatriz-dev/","title":"anabeatriz.dev"},"https://250kb.club/antranigv-am/":{"body":"","id":"https://250kb.club/antranigv-am/","title":"antranigv.am"},"https://250kb.club/arfer-net/":{"body":"","id":"https://250kb.club/arfer-net/","title":"arfer.net"},"https://250kb.club/armaanb-net/":{"body":"","id":"https://250kb.club/armaanb-net/","title":"armaanb.net"},"https://250kb.club/artemislena-eu/":{"body":"","id":"https://250kb.club/artemislena-eu/","title":"artemislena.eu"},"https://250kb.club/bcachefs-org/":{"body":"","id":"https://250kb.club/bcachefs-org/","title":"bcachefs.org"},"https://250kb.club/bduck-xyz/":{"body":"","id":"https://250kb.club/bduck-xyz/","title":"bduck.xyz"},"https://250kb.club/beh-uk/":{"body":"","id":"https://250kb.club/beh-uk/","title":"beh.uk"},"https://250kb.club/benharr-is/":{"body":"","id":"https://250kb.club/benharr-is/","title":"benharr.is"},"https://250kb.club/benovermyer-com/":{"body":"","id":"https://250kb.club/benovermyer-com/","title":"benovermyer.com"},"https://250kb.club/berkshirehathaway-com/":{"body":"","id":"https://250kb.club/berkshirehathaway-com/","title":"berkshirehathaway.com"},"https://250kb.club/bernsteinbear-com/":{"body":"","id":"https://250kb.club/bernsteinbear-com/","title":"bernsteinbear.com"},"https://250kb.club/bestmotherfucking-website/":{"body":"","id":"https://250kb.club/bestmotherfucking-website/","title":"bestmotherfucking.website"},"https://250kb.club/bettermotherfuckingwebsite-com/":{"body":"","id":"https://250kb.club/bettermotherfuckingwebsite-com/","title":"bettermotherfuckingwebsite.com"},"https://250kb.club/binyam-in/":{"body":"","id":"https://250kb.club/binyam-in/","title":"binyam.in"},"https://250kb.club/blakehawkins-com-blog/":{"body":"","id":"https://250kb.club/blakehawkins-com-blog/","title":"blakehawkins.com/blog"},"https://250kb.club/blmayer-dev/":{"body":"","id":"https://250kb.club/blmayer-dev/","title":"blmayer.dev"},"https://250kb.club/blog-bshah-in/":{"body":"","id":"https://250kb.club/blog-bshah-in/","title":"blog.bshah.in"},"https://250kb.club/blog-circuitsofimagination-com/":{"body":"","id":"https://250kb.club/blog-circuitsofimagination-com/","title":"blog.circuitsofimagination.com"},"https://250kb.club/blog-fefe-de/":{"body":"","id":"https://250kb.club/blog-fefe-de/","title":"blog.fefe.de"},"https://250kb.club/blog-fossterer-com/":{"body":"","id":"https://250kb.club/blog-fossterer-com/","title":"blog.fossterer.com"},"https://250kb.club/bnolet-me/":{"body":"","id":"https://250kb.club/bnolet-me/","title":"bnolet.me"},"https://250kb.club/boehs-org/":{"body":"","id":"https://250kb.club/boehs-org/","title":"boehs.org"},"https://250kb.club/box-matto-nl/":{"body":"","id":"https://250kb.club/box-matto-nl/","title":"box.matto.nl"},"https://250kb.club/bridge-simplefin-org/":{"body":"","id":"https://250kb.club/bridge-simplefin-org/","title":"bridge.simplefin.org"},"https://250kb.club/buchh-org/":{"body":"","id":"https://250kb.club/buchh-org/","title":"buchh.org"},"https://250kb.club/bvnf-space/":{"body":"","id":"https://250kb.club/bvnf-space/","title":"bvnf.space"},"https://250kb.club/cat-v-org/":{"body":"","id":"https://250kb.club/cat-v-org/","title":"cat-v.org"},"https://250kb.club/ccsleep-net/":{"body":"","id":"https://250kb.club/ccsleep-net/","title":"ccsleep.net"},"https://250kb.club/chad-hirsch-host/":{"body":"","id":"https://250kb.club/chad-hirsch-host/","title":"chad.hirsch.host"},"https://250kb.club/chrisportela-com/":{"body":"","id":"https://250kb.club/chrisportela-com/","title":"chrisportela.com"},"https://250kb.club/christine-website/":{"body":"","id":"https://250kb.club/christine-website/","title":"christine.website"},"https://250kb.club/cnx-srht-site/":{"body":"","id":"https://250kb.club/cnx-srht-site/","title":"cnx.srht.site"},"https://250kb.club/codelayer-de/":{"body":"","id":"https://250kb.club/codelayer-de/","title":"codelayer.de"},"https://250kb.club/codevoid-de/":{"body":"","id":"https://250kb.club/codevoid-de/","title":"codevoid.de"},"https://250kb.club/codingbobby-xyz/":{"body":"","id":"https://250kb.club/codingbobby-xyz/","title":"codingbobby.xyz"},"https://250kb.club/codingotaku-com/":{"body":"","id":"https://250kb.club/codingotaku-com/","title":"codingotaku.com"},"https://250kb.club/concise-encoding-org/":{"body":"","id":"https://250kb.club/concise-encoding-org/","title":"concise-encoding.org"},"https://250kb.club/consoom-soy/":{"body":"","id":"https://250kb.club/consoom-soy/","title":"consoom.soy"},"https://250kb.club/coolmathgames-tech/":{"body":"","id":"https://250kb.club/coolmathgames-tech/","title":"coolmathgames.tech"},"https://250kb.club/cosmo-red/":{"body":"","id":"https://250kb.club/cosmo-red/","title":"cosmo.red"},"https://250kb.club/crackle-dev/":{"body":"","id":"https://250kb.club/crackle-dev/","title":"crackle.dev"},"https://250kb.club/cronokirby-com/":{"body":"","id":"https://250kb.club/cronokirby-com/","title":"cronokirby.com"},"https://250kb.club/customformats-com/":{"body":"","id":"https://250kb.club/customformats-com/","title":"customformats.com"},"https://250kb.club/cycloneblaze-net/":{"body":"","id":"https://250kb.club/cycloneblaze-net/","title":"cycloneblaze.net"},"https://250kb.club/daniel-siepmann-de/":{"body":"","id":"https://250kb.club/daniel-siepmann-de/","title":"daniel-siepmann.de"},"https://250kb.club/danielcuttridge-com/":{"body":"","id":"https://250kb.club/danielcuttridge-com/","title":"danielcuttridge.com"},"https://250kb.club/danielsada-tech/":{"body":"","id":"https://250kb.club/danielsada-tech/","title":"danielsada.tech"},"https://250kb.club/danluu-com/":{"body":"","id":"https://250kb.club/danluu-com/","title":"danluu.com"},"https://250kb.club/decentnet-github-io/":{"body":"","id":"https://250kb.club/decentnet-github-io/","title":"decentnet.github.io"},"https://250kb.club/dotfilehub-com/":{"body":"","id":"https://250kb.club/dotfilehub-com/","title":"dotfilehub.com"},"https://250kb.club/dpldocs-info-this-week-in-d-blog-html/":{"body":"","id":"https://250kb.club/dpldocs-info-this-week-in-d-blog-html/","title":"dpldocs.info/this-week-in-d/Blog.html"},"https://250kb.club/drewdevault-com/":{"body":"","id":"https://250kb.club/drewdevault-com/","title":"drewdevault.com"},"https://250kb.club/dusanmitrovic-xyz/":{"body":"","id":"https://250kb.club/dusanmitrovic-xyz/","title":"dusanmitrovic.xyz"},"https://250kb.club/dyremyhr-no/":{"body":"","id":"https://250kb.club/dyremyhr-no/","title":"dyremyhr.no"},"https://250kb.club/editions-du-26-octobre-com/":{"body":"","id":"https://250kb.club/editions-du-26-octobre-com/","title":"editions-du-26-octobre.com"},"https://250kb.club/emersion-fr/":{"body":"","id":"https://250kb.club/emersion-fr/","title":"emersion.fr"},"https://250kb.club/fabioartuso-com/":{"body":"","id":"https://250kb.club/fabioartuso-com/","title":"fabioartuso.com"},"https://250kb.club/fanael-github-io/":{"body":"","id":"https://250kb.club/fanael-github-io/","title":"fanael.github.io"},"https://250kb.club/featyre-xyz/":{"body":"","id":"https://250kb.club/featyre-xyz/","title":"featyre.xyz"},"https://250kb.club/felt-dev/":{"body":"","id":"https://250kb.club/felt-dev/","title":"felt.dev"},"https://250kb.club/flatpackapps-com/":{"body":"","id":"https://250kb.club/flatpackapps-com/","title":"flatpackapps.com"},"https://250kb.club/fmarier-org/":{"body":"","id":"https://250kb.club/fmarier-org/","title":"fmarier.org"},"https://250kb.club/fossdd-codeberg-page/":{"body":"","id":"https://250kb.club/fossdd-codeberg-page/","title":"fossdd.codeberg.page"},"https://250kb.club/foxwells-garden/":{"body":"","id":"https://250kb.club/foxwells-garden/","title":"foxwells.garden"},"https://250kb.club/free-mg/":{"body":"","id":"https://250kb.club/free-mg/","title":"free.mg"},"https://250kb.club/freesolitaire-win/":{"body":"","id":"https://250kb.club/freesolitaire-win/","title":"freesolitaire.win"},"https://250kb.club/frontaid-io/":{"body":"","id":"https://250kb.club/frontaid-io/","title":"frontaid.io"},"https://250kb.club/fullstackpython-com/":{"body":"","id":"https://250kb.club/fullstackpython-com/","title":"fullstackpython.com"},"https://250kb.club/funnylookinhat-com/":{"body":"","id":"https://250kb.club/funnylookinhat-com/","title":"funnylookinhat.com"},"https://250kb.club/gabnotes-org/":{"body":"","id":"https://250kb.club/gabnotes-org/","title":"gabnotes.org"},"https://250kb.club/gallant-dev/":{"body":"","id":"https://250kb.club/gallant-dev/","title":"gallant.dev"},"https://250kb.club/gennext-net-au/":{"body":"","id":"https://250kb.club/gennext-net-au/","title":"gennext.net.au"},"https://250kb.club/gerikson-com-hnlo/":{"body":"","id":"https://250kb.club/gerikson-com-hnlo/","title":"gerikson.com/hnlo"},"https://250kb.club/gerikson-com/":{"body":"","id":"https://250kb.club/gerikson-com/","title":"gerikson.com"},"https://250kb.club/getindiekit-com/":{"body":"","id":"https://250kb.club/getindiekit-com/","title":"getindiekit.com"},"https://250kb.club/grapheneos-org/":{"body":"","id":"https://250kb.club/grapheneos-org/","title":"grapheneos.org"},"https://250kb.club/gtrr-artemislena-eu/":{"body":"","id":"https://250kb.club/gtrr-artemislena-eu/","title":"gtrr.artemislena.eu"},"https://250kb.club/guts-plus/":{"body":"","id":"https://250kb.club/guts-plus/","title":"guts.plus"},"https://250kb.club/hmbrg-xyz/":{"body":"","id":"https://250kb.club/hmbrg-xyz/","title":"hmbrg.xyz"},"https://250kb.club/humaidq-ae/":{"body":"","id":"https://250kb.club/humaidq-ae/","title":"humaidq.ae"},"https://250kb.club/huyngo-envs-net/":{"body":"","id":"https://250kb.club/huyngo-envs-net/","title":"huyngo.envs.net"},"https://250kb.club/iain-in/":{"body":"","id":"https://250kb.club/iain-in/","title":"iain.in"},"https://250kb.club/ianmobbs-com/":{"body":"","id":"https://250kb.club/ianmobbs-com/","title":"ianmobbs.com"},"https://250kb.club/ihaque-org/":{"body":"","id":"https://250kb.club/ihaque-org/","title":"ihaque.org"},"https://250kb.club/ihsaan-glitch-me/":{"body":"","id":"https://250kb.club/ihsaan-glitch-me/","title":"ihsaan.glitch.me"},"https://250kb.club/inatri-com/":{"body":"","id":"https://250kb.club/inatri-com/","title":"inatri.com"},"https://250kb.club/jaime-gomezobregon-com/":{"body":"","id":"https://250kb.club/jaime-gomezobregon-com/","title":"jaime.gomezobregon.com"},"https://250kb.club/jakob-kaivo-net/":{"body":"","id":"https://250kb.club/jakob-kaivo-net/","title":"jakob.kaivo.net"},"https://250kb.club/jason-nabein-me/":{"body":"","id":"https://250kb.club/jason-nabein-me/","title":"jason.nabein.me"},"https://250kb.club/jeffhuang-com/":{"body":"","id":"https://250kb.club/jeffhuang-com/","title":"jeffhuang.com"},"https://250kb.club/jeremysarber-com/":{"body":"","id":"https://250kb.club/jeremysarber-com/","title":"jeremysarber.com"},"https://250kb.club/jlelse-blog/":{"body":"","id":"https://250kb.club/jlelse-blog/","title":"jlelse.blog"},"https://250kb.club/jmtd-net/":{"body":"","id":"https://250kb.club/jmtd-net/","title":"jmtd.net"},"https://250kb.club/john-doe-neocities-org/":{"body":"","id":"https://250kb.club/john-doe-neocities-org/","title":"john-doe.neocities.org"},"https://250kb.club/jrballesteros05-codeberg-page/":{"body":"","id":"https://250kb.club/jrballesteros05-codeberg-page/","title":"jrballesteros05.codeberg.page"},"https://250kb.club/jvanelian-dev/":{"body":"","id":"https://250kb.club/jvanelian-dev/","title":"jvanelian.dev"},"https://250kb.club/jvelo-at/":{"body":"","id":"https://250kb.club/jvelo-at/","title":"jvelo.at"},"https://250kb.club/k0r-in/":{"body":"","id":"https://250kb.club/k0r-in/","title":"k0r.in"},"https://250kb.club/karolis-koncevicius-lt/":{"body":"","id":"https://250kb.club/karolis-koncevicius-lt/","title":"karolis.koncevicius.lt"},"https://250kb.club/kayafirat-com/":{"body":"","id":"https://250kb.club/kayafirat-com/","title":"kayafirat.com"},"https://250kb.club/kerkour-fr/":{"body":"","id":"https://250kb.club/kerkour-fr/","title":"kerkour.fr"},"https://250kb.club/kevq-uk/":{"body":"","id":"https://250kb.club/kevq-uk/","title":"kevq.uk"},"https://250kb.club/kidl-at/":{"body":"","id":"https://250kb.club/kidl-at/","title":"kidl.at"},"https://250kb.club/kishvanchee-com/":{"body":"","id":"https://250kb.club/kishvanchee-com/","title":"kishvanchee.com"},"https://250kb.club/kj7nzl-net/":{"body":"","id":"https://250kb.club/kj7nzl-net/","title":"kj7nzl.net"},"https://250kb.club/koehr-in/":{"body":"","id":"https://250kb.club/koehr-in/","title":"koehr.in"},"https://250kb.club/koehr-tech/":{"body":"","id":"https://250kb.club/koehr-tech/","title":"koehr.tech"},"https://250kb.club/kunalmarwaha-com/":{"body":"","id":"https://250kb.club/kunalmarwaha-com/","title":"kunalmarwaha.com"},"https://250kb.club/lambdapapers-com/":{"body":"","id":"https://250kb.club/lambdapapers-com/","title":"lambdapapers.com"},"https://250kb.club/lawzava-com/":{"body":"","id":"https://250kb.club/lawzava-com/","title":"lawzava.com"},"https://250kb.club/lecaro-me-minimage/":{"body":"","id":"https://250kb.club/lecaro-me-minimage/","title":"lecaro.me/minimage"},"https://250kb.club/lectupedia-com-en/":{"body":"","id":"https://250kb.club/lectupedia-com-en/","title":"lectupedia.com/en"},"https://250kb.club/legiblenews-com/":{"body":"","id":"https://250kb.club/legiblenews-com/","title":"legiblenews.com"},"https://250kb.club/leonardschuetz-ch/":{"body":"","id":"https://250kb.club/leonardschuetz-ch/","title":"leonardschuetz.ch"},"https://250kb.club/lighthouse16-com/":{"body":"","id":"https://250kb.club/lighthouse16-com/","title":"lighthouse16.com"},"https://250kb.club/lil-gay/":{"body":"","id":"https://250kb.club/lil-gay/","title":"lil.gay"},"https://250kb.club/linuxguideandhints-com/":{"body":"","id":"https://250kb.club/linuxguideandhints-com/","title":"linuxguideandhints.com"},"https://250kb.club/lite-cnn-com/":{"body":"","id":"https://250kb.club/lite-cnn-com/","title":"lite.cnn.com"},"https://250kb.club/lo-hn/":{"body":"","id":"https://250kb.club/lo-hn/","title":"lo.hn"},"https://250kb.club/lobste-rs/":{"body":"","id":"https://250kb.club/lobste-rs/","title":"lobste.rs"},"https://250kb.club/luana-cc/":{"body":"","id":"https://250kb.club/luana-cc/","title":"luana.cc"},"https://250kb.club/lucianmarin-com/":{"body":"","id":"https://250kb.club/lucianmarin-com/","title":"lucianmarin.com"},"https://250kb.club/lukeramsden-com/":{"body":"","id":"https://250kb.club/lukeramsden-com/","title":"lukeramsden.com"},"https://250kb.club/lukesempire-com/":{"body":"","id":"https://250kb.club/lukesempire-com/","title":"lukesempire.com"},"https://250kb.club/m-chrzan-xyz/":{"body":"","id":"https://250kb.club/m-chrzan-xyz/","title":"m-chrzan.xyz"},"https://250kb.club/majiehong-com/":{"body":"","id":"https://250kb.club/majiehong-com/","title":"majiehong.com"},"https://250kb.club/manpages-bsd-lv/":{"body":"","id":"https://250kb.club/manpages-bsd-lv/","title":"manpages.bsd.lv"},"https://250kb.club/manuelmoreale-com/":{"body":"","id":"https://250kb.club/manuelmoreale-com/","title":"manuelmoreale.com"},"https://250kb.club/martin-baillie-id/":{"body":"","id":"https://250kb.club/martin-baillie-id/","title":"martin.baillie.id"},"https://250kb.club/mataroa-blog/":{"body":"","id":"https://250kb.club/mataroa-blog/","title":"mataroa.blog"},"https://250kb.club/matthall-codes/":{"body":"","id":"https://250kb.club/matthall-codes/","title":"matthall.codes"},"https://250kb.club/matthewstrom-com/":{"body":"","id":"https://250kb.club/matthewstrom-com/","title":"matthewstrom.com"},"https://250kb.club/midnight-pub/":{"body":"","id":"https://250kb.club/midnight-pub/","title":"midnight.pub"},"https://250kb.club/mikegerwitz-com/":{"body":"","id":"https://250kb.club/mikegerwitz-com/","title":"mikegerwitz.com"},"https://250kb.club/miku86-com/":{"body":"","id":"https://250kb.club/miku86-com/","title":"miku86.com"},"https://250kb.club/mineralexistence-com-home-html/":{"body":"","id":"https://250kb.club/mineralexistence-com-home-html/","title":"mineralexistence.com/home.html"},"https://250kb.club/minid-net/":{"body":"","id":"https://250kb.club/minid-net/","title":"minid.net"},"https://250kb.club/minwiz-com/":{"body":"","id":"https://250kb.club/minwiz-com/","title":"minwiz.com"},"https://250kb.club/monokai-nl/":{"body":"","id":"https://250kb.club/monokai-nl/","title":"monokai.nl"},"https://250kb.club/motherfuckingwebsite-com/":{"body":"","id":"https://250kb.club/motherfuckingwebsite-com/","title":"motherfuckingwebsite.com"},"https://250kb.club/motz-berlin-de/":{"body":"","id":"https://250kb.club/motz-berlin-de/","title":"motz-berlin.de"},"https://250kb.club/my-flow-com/":{"body":"","id":"https://250kb.club/my-flow-com/","title":"my-flow.com"},"https://250kb.club/myipaddress-ru/":{"body":"","id":"https://250kb.club/myipaddress-ru/","title":"myipaddress.ru"},"https://250kb.club/n-2p5-xyz/":{"body":"","id":"https://250kb.club/n-2p5-xyz/","title":"n.2p5.xyz"},"https://250kb.club/na20a-neocities-org/":{"body":"","id":"https://250kb.club/na20a-neocities-org/","title":"na20a.neocities.org"},"https://250kb.club/natestemen-xyz/":{"body":"","id":"https://250kb.club/natestemen-xyz/","title":"natestemen.xyz"},"https://250kb.club/nest-jakl-one/":{"body":"","id":"https://250kb.club/nest-jakl-one/","title":"nest.jakl.one"},"https://250kb.club/news-ycombinator-com/":{"body":"","id":"https://250kb.club/news-ycombinator-com/","title":"news.ycombinator.com"},"https://250kb.club/nicetranslator-com/":{"body":"","id":"https://250kb.club/nicetranslator-com/","title":"nicetranslator.com"},"https://250kb.club/nihar-page/":{"body":"","id":"https://250kb.club/nihar-page/","title":"nihar.page"},"https://250kb.club/nixnet-email/":{"body":"","id":"https://250kb.club/nixnet-email/","title":"nixnet.email"},"https://250kb.club/nomasters-io/":{"body":"","id":"https://250kb.club/nomasters-io/","title":"nomasters.io"},"https://250kb.club/norayr-am/":{"body":"","id":"https://250kb.club/norayr-am/","title":"norayr.am"},"https://250kb.club/notes-eatonphil-com/":{"body":"","id":"https://250kb.club/notes-eatonphil-com/","title":"notes.eatonphil.com"},"https://250kb.club/notionbackups-com/":{"body":"","id":"https://250kb.club/notionbackups-com/","title":"notionbackups.com"},"https://250kb.club/noulin-net-blog/":{"body":"","id":"https://250kb.club/noulin-net-blog/","title":"noulin.net/blog"},"https://250kb.club/nytpu-com/":{"body":"","id":"https://250kb.club/nytpu-com/","title":"nytpu.com"},"https://250kb.club/oh-mg/":{"body":"","id":"https://250kb.club/oh-mg/","title":"oh.mg"},"https://250kb.club/ohio-araw-xyz/":{"body":"","id":"https://250kb.club/ohio-araw-xyz/","title":"ohio.araw.xyz"},"https://250kb.club/oscarforner-com/":{"body":"","id":"https://250kb.club/oscarforner-com/","title":"oscarforner.com"},"https://250kb.club/oxenburypartners-com/":{"body":"","id":"https://250kb.club/oxenburypartners-com/","title":"oxenburypartners.com"},"https://250kb.club/page-mi-fu-berlin-de-jhermann/":{"body":"","id":"https://250kb.club/page-mi-fu-berlin-de-jhermann/","title":"page.mi.fu-berlin.de/jhermann"},"https://250kb.club/paulwilde-uk/":{"body":"","id":"https://250kb.club/paulwilde-uk/","title":"paulwilde.uk"},"https://250kb.club/pbanks-net/":{"body":"","id":"https://250kb.club/pbanks-net/","title":"pbanks.net"},"https://250kb.club/pgjones-dev/":{"body":"","id":"https://250kb.club/pgjones-dev/","title":"pgjones.dev"},"https://250kb.club/phate6660-github-io/":{"body":"","id":"https://250kb.club/phate6660-github-io/","title":"phate6660.github.io"},"https://250kb.club/phreedom-club/":{"body":"","id":"https://250kb.club/phreedom-club/","title":"phreedom.club"},"https://250kb.club/plasmasturm-org/":{"body":"","id":"https://250kb.club/plasmasturm-org/","title":"plasmasturm.org"},"https://250kb.club/playerone-kevincox-ca/":{"body":"","id":"https://250kb.club/playerone-kevincox-ca/","title":"playerone.kevincox.ca"},"https://250kb.club/pools-xmr-wiki/":{"body":"","id":"https://250kb.club/pools-xmr-wiki/","title":"pools.xmr.wiki"},"https://250kb.club/porkbrain-com/":{"body":"","id":"https://250kb.club/porkbrain-com/","title":"porkbrain.com"},"https://250kb.club/pr0-uk/":{"body":"","id":"https://250kb.club/pr0-uk/","title":"pr0.uk"},"https://250kb.club/processwire-dev/":{"body":"","id":"https://250kb.club/processwire-dev/","title":"processwire.dev"},"https://250kb.club/qubyte-codes/":{"body":"","id":"https://250kb.club/qubyte-codes/","title":"qubyte.codes"},"https://250kb.club/quinncasey-com/":{"body":"","id":"https://250kb.club/quinncasey-com/","title":"quinncasey.com"},"https://250kb.club/quitsocialmedia-club/":{"body":"","id":"https://250kb.club/quitsocialmedia-club/","title":"quitsocialmedia.club"},"https://250kb.club/rc-lite-xyz/":{"body":"","id":"https://250kb.club/rc-lite-xyz/","title":"rc-lite.xyz"},"https://250kb.club/remoteroast-club/":{"body":"","id":"https://250kb.club/remoteroast-club/","title":"remoteroast.club"},"https://250kb.club/richj-co/":{"body":"","id":"https://250kb.club/richj-co/","title":"richj.co"},"https://250kb.club/rya-nc/":{"body":"","id":"https://250kb.club/rya-nc/","title":"rya.nc"},"https://250kb.club/s1-flatpackapps-com-app-php-appid-22/":{"body":"","id":"https://250kb.club/s1-flatpackapps-com-app-php-appid-22/","title":"s1.flatpackapps.com/app.php?appId=22"},"https://250kb.club/salejandro-me/":{"body":"","id":"https://250kb.club/salejandro-me/","title":"salejandro.me"},"https://250kb.club/salixos-org/":{"body":"","id":"https://250kb.club/salixos-org/","title":"salixos.org"},"https://250kb.club/satchlj-us/":{"body":"","id":"https://250kb.club/satchlj-us/","title":"satchlj.us"},"https://250kb.club/searchbot-app/":{"body":"","id":"https://250kb.club/searchbot-app/","title":"searchbot.app"},"https://250kb.club/secluded-site/":{"body":"","id":"https://250kb.club/secluded-site/","title":"secluded.site"},"https://250kb.club/seirdy-one/":{"body":"","id":"https://250kb.club/seirdy-one/","title":"seirdy.one"},"https://250kb.club/shazow-net/":{"body":"","id":"https://250kb.club/shazow-net/","title":"shazow.net"},"https://250kb.club/si3t-ch/":{"body":"","id":"https://250kb.club/si3t-ch/","title":"si3t.ch"},"https://250kb.club/sizi-ng/":{"body":"","id":"https://250kb.club/sizi-ng/","title":"sizi.ng"},"https://250kb.club/sjmulder-nl/":{"body":"","id":"https://250kb.club/sjmulder-nl/","title":"sjmulder.nl"},"https://250kb.club/slackjeff-com-br/":{"body":"","id":"https://250kb.club/slackjeff-com-br/","title":"slackjeff.com.br"},"https://250kb.club/sona-hay/":{"body":"","id":"https://250kb.club/sona-hay/","title":"սոնա.հայ"},"https://250kb.club/sourcehut-org/":{"body":"","id":"https://250kb.club/sourcehut-org/","title":"sourcehut.org"},"https://250kb.club/sparkbox-github-io-bouncy-ball/":{"body":"","id":"https://250kb.club/sparkbox-github-io-bouncy-ball/","title":"sparkbox.github.io/bouncy-ball"},"https://250kb.club/sparkbox-github-io-logo-experiments/":{"body":"","id":"https://250kb.club/sparkbox-github-io-logo-experiments/","title":"sparkbox.github.io/logo-experiments"},"https://250kb.club/sr-ht/":{"body":"","id":"https://250kb.club/sr-ht/","title":"sr.ht"},"https://250kb.club/subreply-com/":{"body":"","id":"https://250kb.club/subreply-com/","title":"subreply.com"},"https://250kb.club/suckless-org/":{"body":"","id":"https://250kb.club/suckless-org/","title":"suckless.org"},"https://250kb.club/sugarfi-dev/":{"body":"","id":"https://250kb.club/sugarfi-dev/","title":"sugarfi.dev"},"https://250kb.club/susam-in/":{"body":"","id":"https://250kb.club/susam-in/","title":"susam.in"},"https://250kb.club/swl-am/":{"body":"","id":"https://250kb.club/swl-am/","title":"swl.am"},"https://250kb.club/t0-vc/":{"body":"","id":"https://250kb.club/t0-vc/","title":"t0.vc"},"https://250kb.club/temp-sh/":{"body":"","id":"https://250kb.club/temp-sh/","title":"temp.sh"},"https://250kb.club/text-npr-org/":{"body":"","id":"https://250kb.club/text-npr-org/","title":"text.npr.org"},"https://250kb.club/thebestmotherfucking-website/":{"body":"","id":"https://250kb.club/thebestmotherfucking-website/","title":"thebestmotherfucking.website"},"https://250kb.club/thejollyteapot-com/":{"body":"","id":"https://250kb.club/thejollyteapot-com/","title":"thejollyteapot.com"},"https://250kb.club/thelion-website/":{"body":"","id":"https://250kb.club/thelion-website/","title":"thelion.website"},"https://250kb.club/thomas-me/":{"body":"","id":"https://250kb.club/thomas-me/","title":"thomas.me"},"https://250kb.club/timotijhof-net/":{"body":"","id":"https://250kb.club/timotijhof-net/","title":"timotijhof.net"},"https://250kb.club/tom-kobalt-dev-map/":{"body":"","id":"https://250kb.club/tom-kobalt-dev-map/","title":"tom.kobalt.dev/map"},"https://250kb.club/tryhexadecimal-com/":{"body":"","id":"https://250kb.club/tryhexadecimal-com/","title":"tryhexadecimal.com"},"https://250kb.club/ttntm-me/":{"body":"","id":"https://250kb.club/ttntm-me/","title":"ttntm.me"},"https://250kb.club/uberspace-de/":{"body":"","id":"https://250kb.club/uberspace-de/","title":"uberspace.de"},"https://250kb.club/uglyduck-ca/":{"body":"","id":"https://250kb.club/uglyduck-ca/","title":"uglyduck.ca"},"https://250kb.club/ul-de/":{"body":"","id":"https://250kb.club/ul-de/","title":"úl.de"},"https://250kb.club/ulpaulpa-de/":{"body":"","id":"https://250kb.club/ulpaulpa-de/","title":"ulpaulpa.de"},"https://250kb.club/ultimateelectronicsbook-com/":{"body":"","id":"https://250kb.club/ultimateelectronicsbook-com/","title":"ultimateelectronicsbook.com"},"https://250kb.club/unix-lgbt/":{"body":"","id":"https://250kb.club/unix-lgbt/","title":"unix.lgbt"},"https://250kb.club/unixsheikh-com/":{"body":"","id":"https://250kb.club/unixsheikh-com/","title":"unixsheikh.com"},"https://250kb.club/usrme-xyz/":{"body":"","id":"https://250kb.club/usrme-xyz/","title":"usrme.xyz"},"https://250kb.club/ut2-weba-ru/":{"body":"","id":"https://250kb.club/ut2-weba-ru/","title":"ut2.weba.ru"},"https://250kb.club/ut99-weba-ru/":{"body":"","id":"https://250kb.club/ut99-weba-ru/","title":"ut99.weba.ru"},"https://250kb.club/utsuho-rocks/":{"body":"","id":"https://250kb.club/utsuho-rocks/","title":"utsuho.rocks"},"https://250kb.club/volleyball-baustetten-de/":{"body":"","id":"https://250kb.club/volleyball-baustetten-de/","title":"volleyball-baustetten.de"},"https://250kb.club/webperf-xyz/":{"body":"","id":"https://250kb.club/webperf-xyz/","title":"webperf.xyz"},"https://250kb.club/webzine-puffy-cafe/":{"body":"","id":"https://250kb.club/webzine-puffy-cafe/","title":"webzine.puffy.cafe"},"https://250kb.club/werc-cat-v-org/":{"body":"","id":"https://250kb.club/werc-cat-v-org/","title":"werc.cat-v.org"},"https://250kb.club/wilde-it-co-uk/":{"body":"","id":"https://250kb.club/wilde-it-co-uk/","title":"wilde-it.co.uk"},"https://250kb.club/willcodefor-beer/":{"body":"","id":"https://250kb.club/willcodefor-beer/","title":"willcodefor.beer"},"https://250kb.club/wondroushealing-com/":{"body":"","id":"https://250kb.club/wondroushealing-com/","title":"wondroushealing.com"},"https://250kb.club/worldti-me/":{"body":"","id":"https://250kb.club/worldti-me/","title":"worldti.me"},"https://250kb.club/www-beh-uk/":{"body":"","id":"https://250kb.club/www-beh-uk/","title":"www.beh.uk"},"https://250kb.club/www-borfigat-org/":{"body":"","id":"https://250kb.club/www-borfigat-org/","title":"www.borfigat.org"},"https://250kb.club/www-bryanbraun-com-after-dark-css/":{"body":"","id":"https://250kb.club/www-bryanbraun-com-after-dark-css/","title":"www.bryanbraun.com/after-dark-css"},"https://250kb.club/www-bryanbraun-com-anchorjs/":{"body":"","id":"https://250kb.club/www-bryanbraun-com-anchorjs/","title":"www.bryanbraun.com/anchorjs"},"https://250kb.club/www-bryanbraun-com-connect-four/":{"body":"","id":"https://250kb.club/www-bryanbraun-com-connect-four/","title":"www.bryanbraun.com/connect-four"},"https://250kb.club/www-bryanbraun-com/":{"body":"","id":"https://250kb.club/www-bryanbraun-com/","title":"www.bryanbraun.com"},"https://250kb.club/www-danielwasserlaufquicklinks-com/":{"body":"","id":"https://250kb.club/www-danielwasserlaufquicklinks-com/","title":"www.danielwasserlaufquicklinks.com"},"https://250kb.club/www-dustri-org/":{"body":"","id":"https://250kb.club/www-dustri-org/","title":"www.dustri.org"},"https://250kb.club/www-groovestomp-com/":{"body":"","id":"https://250kb.club/www-groovestomp-com/","title":"www.groovestomp.com"},"https://250kb.club/www-migadu-com/":{"body":"","id":"https://250kb.club/www-migadu-com/","title":"www.migadu.com"},"https://250kb.club/www-minimumviable-it/":{"body":"","id":"https://250kb.club/www-minimumviable-it/","title":"www.minimumviable.it"},"https://250kb.club/www-neelc-org-about/":{"body":"","id":"https://250kb.club/www-neelc-org-about/","title":"www.neelc.org/about"},"https://250kb.club/www-openbsd-org/":{"body":"","id":"https://250kb.club/www-openbsd-org/","title":"www.openbsd.org"},"https://250kb.club/www-oskarlindgren-se/":{"body":"","id":"https://250kb.club/www-oskarlindgren-se/","title":"www.oskarlindgren.se"},"https://250kb.club/www-paritybit-ca/":{"body":"","id":"https://250kb.club/www-paritybit-ca/","title":"www.paritybit.ca"},"https://250kb.club/www-powerpointkaraoke-com/":{"body":"","id":"https://250kb.club/www-powerpointkaraoke-com/","title":"www.powerpointkaraoke.com"},"https://250kb.club/www-rowlingindex-org/":{"body":"","id":"https://250kb.club/www-rowlingindex-org/","title":"www.rowlingindex.org"},"https://250kb.club/www-slowernews-com/":{"body":"","id":"https://250kb.club/www-slowernews-com/","title":"www.slowernews.com"},"https://250kb.club/www-speedshop-co/":{"body":"","id":"https://250kb.club/www-speedshop-co/","title":"www.speedshop.co"},"https://250kb.club/www-tarsnap-com/":{"body":"","id":"https://250kb.club/www-tarsnap-com/","title":"www.tarsnap.com"},"https://250kb.club/www-tuhs-org/":{"body":"","id":"https://250kb.club/www-tuhs-org/","title":"www.tuhs.org"},"https://250kb.club/www-unindented-org/":{"body":"","id":"https://250kb.club/www-unindented-org/","title":"www.unindented.org"},"https://250kb.club/www-usecue-com/":{"body":"","id":"https://250kb.club/www-usecue-com/","title":"www.usecue.com"},"https://250kb.club/www-verybad-link/":{"body":"","id":"https://250kb.club/www-verybad-link/","title":"www.verybad.link"},"https://250kb.club/www-zinzy-website/":{"body":"","id":"https://250kb.club/www-zinzy-website/","title":"www.zinzy.website"},"https://250kb.club/xigoi-neocities-org/":{"body":"","id":"https://250kb.club/xigoi-neocities-org/","title":"xigoi.neocities.org"},"https://250kb.club/xiu-io/":{"body":"","id":"https://250kb.club/xiu-io/","title":"xiu.io"},"https://250kb.club/xmdr-nl/":{"body":"","id":"https://250kb.club/xmdr-nl/","title":"xmdr.nl"},"https://250kb.club/xnaas-info/":{"body":"","id":"https://250kb.club/xnaas-info/","title":"xnaas.info"},"https://250kb.club/xslendi-xyz/":{"body":"","id":"https://250kb.club/xslendi-xyz/","title":"xslendi.xyz"},"https://250kb.club/xubuntu-org/":{"body":"","id":"https://250kb.club/xubuntu-org/","title":"xubuntu.org"},"https://250kb.club/ybad-name/":{"body":"","id":"https://250kb.club/ybad-name/","title":"ybad.name"},"https://250kb.club/ylukem-com/":{"body":"","id":"https://250kb.club/ylukem-com/","title":"ylukem.com"},"https://250kb.club/yorickpeterse-com/":{"body":"","id":"https://250kb.club/yorickpeterse-com/","title":"yorickpeterse.com"},"https://250kb.club/zakr-es-blog/":{"body":"","id":"https://250kb.club/zakr-es-blog/","title":"zakr.es/blog"},"https://250kb.club/zakr-es/":{"body":"","id":"https://250kb.club/zakr-es/","title":"zakr.es"},"https://250kb.club/zn80-net/":{"body":"","id":"https://250kb.club/zn80-net/","title":"zn80.net"},"https://250kb.club/zupzup-org/":{"body":"","id":"https://250kb.club/zupzup-org/","title":"zupzup.org"}},"docInfo":{"https://250kb.club/":{"body":0,"title":2},"https://250kb.club/0xedward-io/":{"body":0,"title":1},"https://250kb.club/0xff-nu/":{"body":0,"title":1},"https://250kb.club/10kbclub-com/":{"body":0,"title":1},"https://250kb.club/1mb-club/":{"body":0,"title":1},"https://250kb.club/250kb-club/":{"body":0,"title":1},"https://250kb.club/512kb-club/":{"body":0,"title":1},"https://250kb.club/ache-one/":{"body":0,"title":1},"https://250kb.club/alexanderobenauer-com/":{"body":0,"title":1},"https://250kb.club/alexschroeder-ch/":{"body":0,"title":1},"https://250kb.club/allien-work/":{"body":0,"title":1},"https://250kb.club/anabeatriz-dev/":{"body":0,"title":1},"https://250kb.club/antranigv-am/":{"body":0,"title":1},"https://250kb.club/arfer-net/":{"body":0,"title":1},"https://250kb.club/armaanb-net/":{"body":0,"title":1},"https://250kb.club/artemislena-eu/":{"body":0,"title":1},"https://250kb.club/bcachefs-org/":{"body":0,"title":1},"https://250kb.club/bduck-xyz/":{"body":0,"title":1},"https://250kb.club/beh-uk/":{"body":0,"title":1},"https://250kb.club/benharr-is/":{"body":0,"title":1},"https://250kb.club/benovermyer-com/":{"body":0,"title":1},"https://250kb.club/berkshirehathaway-com/":{"body":0,"title":1},"https://250kb.club/bernsteinbear-com/":{"body":0,"title":1},"https://250kb.club/bestmotherfucking-website/":{"body":0,"title":1},"https://250kb.club/bettermotherfuckingwebsite-com/":{"body":0,"title":1},"https://250kb.club/binyam-in/":{"body":0,"title":1},"https://250kb.club/blakehawkins-com-blog/":{"body":0,"title":1},"https://250kb.club/blmayer-dev/":{"body":0,"title":1},"https://250kb.club/blog-bshah-in/":{"body":0,"title":1},"https://250kb.club/blog-circuitsofimagination-com/":{"body":0,"title":1},"https://250kb.club/blog-fefe-de/":{"body":0,"title":1},"https://250kb.club/blog-fossterer-com/":{"body":0,"title":1},"https://250kb.club/bnolet-me/":{"body":0,"title":1},"https://250kb.club/boehs-org/":{"body":0,"title":1},"https://250kb.club/box-matto-nl/":{"body":0,"title":1},"https://250kb.club/bridge-simplefin-org/":{"body":0,"title":1},"https://250kb.club/buchh-org/":{"body":0,"title":1},"https://250kb.club/bvnf-space/":{"body":0,"title":1},"https://250kb.club/cat-v-org/":{"body":0,"title":2},"https://250kb.club/ccsleep-net/":{"body":0,"title":1},"https://250kb.club/chad-hirsch-host/":{"body":0,"title":1},"https://250kb.club/chrisportela-com/":{"body":0,"title":1},"https://250kb.club/christine-website/":{"body":0,"title":1},"https://250kb.club/cnx-srht-site/":{"body":0,"title":1},"https://250kb.club/codelayer-de/":{"body":0,"title":1},"https://250kb.club/codevoid-de/":{"body":0,"title":1},"https://250kb.club/codingbobby-xyz/":{"body":0,"title":1},"https://250kb.club/codingotaku-com/":{"body":0,"title":1},"https://250kb.club/concise-encoding-org/":{"body":0,"title":2},"https://250kb.club/consoom-soy/":{"body":0,"title":1},"https://250kb.club/coolmathgames-tech/":{"body":0,"title":1},"https://250kb.club/cosmo-red/":{"body":0,"title":1},"https://250kb.club/crackle-dev/":{"body":0,"title":1},"https://250kb.club/cronokirby-com/":{"body":0,"title":1},"https://250kb.club/customformats-com/":{"body":0,"title":1},"https://250kb.club/cycloneblaze-net/":{"body":0,"title":1},"https://250kb.club/daniel-siepmann-de/":{"body":0,"title":2},"https://250kb.club/danielcuttridge-com/":{"body":0,"title":1},"https://250kb.club/danielsada-tech/":{"body":0,"title":1},"https://250kb.club/danluu-com/":{"body":0,"title":1},"https://250kb.club/decentnet-github-io/":{"body":0,"title":1},"https://250kb.club/dotfilehub-com/":{"body":0,"title":1},"https://250kb.club/dpldocs-info-this-week-in-d-blog-html/":{"body":0,"title":3},"https://250kb.club/drewdevault-com/":{"body":0,"title":1},"https://250kb.club/dusanmitrovic-xyz/":{"body":0,"title":1},"https://250kb.club/dyremyhr-no/":{"body":0,"title":1},"https://250kb.club/editions-du-26-octobre-com/":{"body":0,"title":4},"https://250kb.club/emersion-fr/":{"body":0,"title":1},"https://250kb.club/fabioartuso-com/":{"body":0,"title":1},"https://250kb.club/fanael-github-io/":{"body":0,"title":1},"https://250kb.club/featyre-xyz/":{"body":0,"title":1},"https://250kb.club/felt-dev/":{"body":0,"title":1},"https://250kb.club/flatpackapps-com/":{"body":0,"title":1},"https://250kb.club/fmarier-org/":{"body":0,"title":1},"https://250kb.club/fossdd-codeberg-page/":{"body":0,"title":1},"https://250kb.club/foxwells-garden/":{"body":0,"title":1},"https://250kb.club/free-mg/":{"body":0,"title":1},"https://250kb.club/freesolitaire-win/":{"body":0,"title":1},"https://250kb.club/frontaid-io/":{"body":0,"title":1},"https://250kb.club/fullstackpython-com/":{"body":0,"title":1},"https://250kb.club/funnylookinhat-com/":{"body":0,"title":1},"https://250kb.club/gabnotes-org/":{"body":0,"title":1},"https://250kb.club/gallant-dev/":{"body":0,"title":1},"https://250kb.club/gennext-net-au/":{"body":0,"title":1},"https://250kb.club/gerikson-com-hnlo/":{"body":0,"title":1},"https://250kb.club/gerikson-com/":{"body":0,"title":1},"https://250kb.club/getindiekit-com/":{"body":0,"title":1},"https://250kb.club/grapheneos-org/":{"body":0,"title":1},"https://250kb.club/gtrr-artemislena-eu/":{"body":0,"title":1},"https://250kb.club/guts-plus/":{"body":0,"title":1},"https://250kb.club/hmbrg-xyz/":{"body":0,"title":1},"https://250kb.club/humaidq-ae/":{"body":0,"title":1},"https://250kb.club/huyngo-envs-net/":{"body":0,"title":1},"https://250kb.club/iain-in/":{"body":0,"title":1},"https://250kb.club/ianmobbs-com/":{"body":0,"title":1},"https://250kb.club/ihaque-org/":{"body":0,"title":1},"https://250kb.club/ihsaan-glitch-me/":{"body":0,"title":1},"https://250kb.club/inatri-com/":{"body":0,"title":1},"https://250kb.club/jaime-gomezobregon-com/":{"body":0,"title":1},"https://250kb.club/jakob-kaivo-net/":{"body":0,"title":1},"https://250kb.club/jason-nabein-me/":{"body":0,"title":1},"https://250kb.club/jeffhuang-com/":{"body":0,"title":1},"https://250kb.club/jeremysarber-com/":{"body":0,"title":1},"https://250kb.club/jlelse-blog/":{"body":0,"title":1},"https://250kb.club/jmtd-net/":{"body":0,"title":1},"https://250kb.club/john-doe-neocities-org/":{"body":0,"title":2},"https://250kb.club/jrballesteros05-codeberg-page/":{"body":0,"title":1},"https://250kb.club/jvanelian-dev/":{"body":0,"title":1},"https://250kb.club/jvelo-at/":{"body":0,"title":1},"https://250kb.club/k0r-in/":{"body":0,"title":1},"https://250kb.club/karolis-koncevicius-lt/":{"body":0,"title":1},"https://250kb.club/kayafirat-com/":{"body":0,"title":1},"https://250kb.club/kerkour-fr/":{"body":0,"title":1},"https://250kb.club/kevq-uk/":{"body":0,"title":1},"https://250kb.club/kidl-at/":{"body":0,"title":1},"https://250kb.club/kishvanchee-com/":{"body":0,"title":1},"https://250kb.club/kj7nzl-net/":{"body":0,"title":1},"https://250kb.club/koehr-in/":{"body":0,"title":1},"https://250kb.club/koehr-tech/":{"body":0,"title":1},"https://250kb.club/kunalmarwaha-com/":{"body":0,"title":1},"https://250kb.club/lambdapapers-com/":{"body":0,"title":1},"https://250kb.club/lawzava-com/":{"body":0,"title":1},"https://250kb.club/lecaro-me-minimage/":{"body":0,"title":1},"https://250kb.club/lectupedia-com-en/":{"body":0,"title":1},"https://250kb.club/legiblenews-com/":{"body":0,"title":1},"https://250kb.club/leonardschuetz-ch/":{"body":0,"title":1},"https://250kb.club/lighthouse16-com/":{"body":0,"title":1},"https://250kb.club/lil-gay/":{"body":0,"title":1},"https://250kb.club/linuxguideandhints-com/":{"body":0,"title":1},"https://250kb.club/lite-cnn-com/":{"body":0,"title":1},"https://250kb.club/lo-hn/":{"body":0,"title":1},"https://250kb.club/lobste-rs/":{"body":0,"title":1},"https://250kb.club/luana-cc/":{"body":0,"title":1},"https://250kb.club/lucianmarin-com/":{"body":0,"title":1},"https://250kb.club/lukeramsden-com/":{"body":0,"title":1},"https://250kb.club/lukesempire-com/":{"body":0,"title":1},"https://250kb.club/m-chrzan-xyz/":{"body":0,"title":2},"https://250kb.club/majiehong-com/":{"body":0,"title":1},"https://250kb.club/manpages-bsd-lv/":{"body":0,"title":1},"https://250kb.club/manuelmoreale-com/":{"body":0,"title":1},"https://250kb.club/martin-baillie-id/":{"body":0,"title":1},"https://250kb.club/mataroa-blog/":{"body":0,"title":1},"https://250kb.club/matthall-codes/":{"body":0,"title":1},"https://250kb.club/matthewstrom-com/":{"body":0,"title":1},"https://250kb.club/midnight-pub/":{"body":0,"title":1},"https://250kb.club/mikegerwitz-com/":{"body":0,"title":1},"https://250kb.club/miku86-com/":{"body":0,"title":1},"https://250kb.club/mineralexistence-com-home-html/":{"body":0,"title":1},"https://250kb.club/minid-net/":{"body":0,"title":1},"https://250kb.club/minwiz-com/":{"body":0,"title":1},"https://250kb.club/monokai-nl/":{"body":0,"title":1},"https://250kb.club/motherfuckingwebsite-com/":{"body":0,"title":1},"https://250kb.club/motz-berlin-de/":{"body":0,"title":2},"https://250kb.club/my-flow-com/":{"body":0,"title":1},"https://250kb.club/myipaddress-ru/":{"body":0,"title":1},"https://250kb.club/n-2p5-xyz/":{"body":0,"title":1},"https://250kb.club/na20a-neocities-org/":{"body":0,"title":1},"https://250kb.club/natestemen-xyz/":{"body":0,"title":1},"https://250kb.club/nest-jakl-one/":{"body":0,"title":1},"https://250kb.club/news-ycombinator-com/":{"body":0,"title":1},"https://250kb.club/nicetranslator-com/":{"body":0,"title":1},"https://250kb.club/nihar-page/":{"body":0,"title":1},"https://250kb.club/nixnet-email/":{"body":0,"title":1},"https://250kb.club/nomasters-io/":{"body":0,"title":1},"https://250kb.club/norayr-am/":{"body":0,"title":1},"https://250kb.club/notes-eatonphil-com/":{"body":0,"title":1},"https://250kb.club/notionbackups-com/":{"body":0,"title":1},"https://250kb.club/noulin-net-blog/":{"body":0,"title":1},"https://250kb.club/nytpu-com/":{"body":0,"title":1},"https://250kb.club/oh-mg/":{"body":0,"title":1},"https://250kb.club/ohio-araw-xyz/":{"body":0,"title":1},"https://250kb.club/oscarforner-com/":{"body":0,"title":1},"https://250kb.club/oxenburypartners-com/":{"body":0,"title":1},"https://250kb.club/page-mi-fu-berlin-de-jhermann/":{"body":0,"title":2},"https://250kb.club/paulwilde-uk/":{"body":0,"title":1},"https://250kb.club/pbanks-net/":{"body":0,"title":1},"https://250kb.club/pgjones-dev/":{"body":0,"title":1},"https://250kb.club/phate6660-github-io/":{"body":0,"title":1},"https://250kb.club/phreedom-club/":{"body":0,"title":1},"https://250kb.club/plasmasturm-org/":{"body":0,"title":1},"https://250kb.club/playerone-kevincox-ca/":{"body":0,"title":1},"https://250kb.club/pools-xmr-wiki/":{"body":0,"title":1},"https://250kb.club/porkbrain-com/":{"body":0,"title":1},"https://250kb.club/pr0-uk/":{"body":0,"title":1},"https://250kb.club/processwire-dev/":{"body":0,"title":1},"https://250kb.club/qubyte-codes/":{"body":0,"title":1},"https://250kb.club/quinncasey-com/":{"body":0,"title":1},"https://250kb.club/quitsocialmedia-club/":{"body":0,"title":1},"https://250kb.club/rc-lite-xyz/":{"body":0,"title":2},"https://250kb.club/remoteroast-club/":{"body":0,"title":1},"https://250kb.club/richj-co/":{"body":0,"title":1},"https://250kb.club/rya-nc/":{"body":0,"title":1},"https://250kb.club/s1-flatpackapps-com-app-php-appid-22/":{"body":0,"title":1},"https://250kb.club/salejandro-me/":{"body":0,"title":1},"https://250kb.club/salixos-org/":{"body":0,"title":1},"https://250kb.club/satchlj-us/":{"body":0,"title":1},"https://250kb.club/searchbot-app/":{"body":0,"title":1},"https://250kb.club/secluded-site/":{"body":0,"title":1},"https://250kb.club/seirdy-one/":{"body":0,"title":1},"https://250kb.club/shazow-net/":{"body":0,"title":1},"https://250kb.club/si3t-ch/":{"body":0,"title":1},"https://250kb.club/sizi-ng/":{"body":0,"title":1},"https://250kb.club/sjmulder-nl/":{"body":0,"title":1},"https://250kb.club/slackjeff-com-br/":{"body":0,"title":1},"https://250kb.club/sona-hay/":{"body":0,"title":0},"https://250kb.club/sourcehut-org/":{"body":0,"title":1},"https://250kb.club/sparkbox-github-io-bouncy-ball/":{"body":0,"title":2},"https://250kb.club/sparkbox-github-io-logo-experiments/":{"body":0,"title":2},"https://250kb.club/sr-ht/":{"body":0,"title":1},"https://250kb.club/subreply-com/":{"body":0,"title":1},"https://250kb.club/suckless-org/":{"body":0,"title":1},"https://250kb.club/sugarfi-dev/":{"body":0,"title":1},"https://250kb.club/susam-in/":{"body":0,"title":1},"https://250kb.club/swl-am/":{"body":0,"title":1},"https://250kb.club/t0-vc/":{"body":0,"title":1},"https://250kb.club/temp-sh/":{"body":0,"title":1},"https://250kb.club/text-npr-org/":{"body":0,"title":1},"https://250kb.club/thebestmotherfucking-website/":{"body":0,"title":1},"https://250kb.club/thejollyteapot-com/":{"body":0,"title":1},"https://250kb.club/thelion-website/":{"body":0,"title":1},"https://250kb.club/thomas-me/":{"body":0,"title":1},"https://250kb.club/timotijhof-net/":{"body":0,"title":1},"https://250kb.club/tom-kobalt-dev-map/":{"body":0,"title":1},"https://250kb.club/tryhexadecimal-com/":{"body":0,"title":1},"https://250kb.club/ttntm-me/":{"body":0,"title":1},"https://250kb.club/uberspace-de/":{"body":0,"title":1},"https://250kb.club/uglyduck-ca/":{"body":0,"title":1},"https://250kb.club/ul-de/":{"body":0,"title":1},"https://250kb.club/ulpaulpa-de/":{"body":0,"title":1},"https://250kb.club/ultimateelectronicsbook-com/":{"body":0,"title":1},"https://250kb.club/unix-lgbt/":{"body":0,"title":1},"https://250kb.club/unixsheikh-com/":{"body":0,"title":1},"https://250kb.club/usrme-xyz/":{"body":0,"title":1},"https://250kb.club/ut2-weba-ru/":{"body":0,"title":1},"https://250kb.club/ut99-weba-ru/":{"body":0,"title":1},"https://250kb.club/utsuho-rocks/":{"body":0,"title":1},"https://250kb.club/volleyball-baustetten-de/":{"body":0,"title":2},"https://250kb.club/webperf-xyz/":{"body":0,"title":1},"https://250kb.club/webzine-puffy-cafe/":{"body":0,"title":1},"https://250kb.club/werc-cat-v-org/":{"body":0,"title":2},"https://250kb.club/wilde-it-co-uk/":{"body":0,"title":2},"https://250kb.club/willcodefor-beer/":{"body":0,"title":1},"https://250kb.club/wondroushealing-com/":{"body":0,"title":1},"https://250kb.club/worldti-me/":{"body":0,"title":1},"https://250kb.club/www-beh-uk/":{"body":0,"title":1},"https://250kb.club/www-borfigat-org/":{"body":0,"title":1},"https://250kb.club/www-bryanbraun-com-after-dark-css/":{"body":0,"title":3},"https://250kb.club/www-bryanbraun-com-anchorjs/":{"body":0,"title":1},"https://250kb.club/www-bryanbraun-com-connect-four/":{"body":0,"title":2},"https://250kb.club/www-bryanbraun-com/":{"body":0,"title":1},"https://250kb.club/www-danielwasserlaufquicklinks-com/":{"body":0,"title":1},"https://250kb.club/www-dustri-org/":{"body":0,"title":1},"https://250kb.club/www-groovestomp-com/":{"body":0,"title":1},"https://250kb.club/www-migadu-com/":{"body":0,"title":1},"https://250kb.club/www-minimumviable-it/":{"body":0,"title":1},"https://250kb.club/www-neelc-org-about/":{"body":0,"title":1},"https://250kb.club/www-openbsd-org/":{"body":0,"title":1},"https://250kb.club/www-oskarlindgren-se/":{"body":0,"title":1},"https://250kb.club/www-paritybit-ca/":{"body":0,"title":1},"https://250kb.club/www-powerpointkaraoke-com/":{"body":0,"title":1},"https://250kb.club/www-rowlingindex-org/":{"body":0,"title":1},"https://250kb.club/www-slowernews-com/":{"body":0,"title":1},"https://250kb.club/www-speedshop-co/":{"body":0,"title":1},"https://250kb.club/www-tarsnap-com/":{"body":0,"title":1},"https://250kb.club/www-tuhs-org/":{"body":0,"title":1},"https://250kb.club/www-unindented-org/":{"body":0,"title":1},"https://250kb.club/www-usecue-com/":{"body":0,"title":1},"https://250kb.club/www-verybad-link/":{"body":0,"title":1},"https://250kb.club/www-zinzy-website/":{"body":0,"title":1},"https://250kb.club/xigoi-neocities-org/":{"body":0,"title":1},"https://250kb.club/xiu-io/":{"body":0,"title":1},"https://250kb.club/xmdr-nl/":{"body":0,"title":1},"https://250kb.club/xnaas-info/":{"body":0,"title":1},"https://250kb.club/xslendi-xyz/":{"body":0,"title":1},"https://250kb.club/xubuntu-org/":{"body":0,"title":1},"https://250kb.club/ybad-name/":{"body":0,"title":1},"https://250kb.club/ylukem-com/":{"body":0,"title":1},"https://250kb.club/yorickpeterse-com/":{"body":0,"title":1},"https://250kb.club/zakr-es-blog/":{"body":0,"title":1},"https://250kb.club/zakr-es/":{"body":0,"title":1},"https://250kb.club/zn80-net/":{"body":0,"title":1},"https://250kb.club/zupzup-org/":{"body":0,"title":1}},"length":282},"lang":"English"}; \ No newline at end of file diff --git a/public/searchbot-app/index.html b/public/searchbot-app/index.html new file mode 100644 index 00000000..ad9aa91f --- /dev/null +++ b/public/searchbot-app/index.html @@ -0,0 +1,135 @@ +The 250kb Club

searchbot.app

Proud member of the exclusive 250kb club!

|

searchbot.app is a member of the exclusive 250kb club. The page weighs only 41kb and has a content-to-bloat ratio of 4%.

back

\ No newline at end of file diff --git a/public/secluded-site/index.html b/public/secluded-site/index.html new file mode 100644 index 00000000..19e00d57 --- /dev/null +++ b/public/secluded-site/index.html @@ -0,0 +1,135 @@ +The 250kb Club

secluded.site

Proud member of the exclusive 250kb club!

|

secluded.site is a member of the exclusive 250kb club. The page weighs only 59kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/seirdy-one/index.html b/public/seirdy-one/index.html new file mode 100644 index 00000000..24d01696 --- /dev/null +++ b/public/seirdy-one/index.html @@ -0,0 +1,135 @@ +The 250kb Club

seirdy.one

Proud member of the exclusive 250kb club!

|

seirdy.one is a member of the exclusive 250kb club. The page weighs only 6kb and has a content-to-bloat ratio of 88%.

back

\ No newline at end of file diff --git a/public/shazow-net/index.html b/public/shazow-net/index.html new file mode 100644 index 00000000..8c51dcf3 --- /dev/null +++ b/public/shazow-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

shazow.net

Proud member of the exclusive 250kb club!

|

shazow.net is a member of the exclusive 250kb club. The page weighs only 94kb and has a content-to-bloat ratio of 4%.

back

\ No newline at end of file diff --git a/public/si3t-ch/index.html b/public/si3t-ch/index.html new file mode 100644 index 00000000..9bb938d1 --- /dev/null +++ b/public/si3t-ch/index.html @@ -0,0 +1,135 @@ +The 250kb Club

si3t.ch

Proud member of the exclusive 250kb club!

|

si3t.ch is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 0%.

back

\ No newline at end of file diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 00000000..f62726da --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,1139 @@ + + + + https://250kb.club/ + + + https://250kb.club/0xedward-io/ + 2022-03-22 + + + https://250kb.club/0xff-nu/ + 2022-03-22 + + + https://250kb.club/10kbclub-com/ + 2022-03-22 + + + https://250kb.club/1mb-club/ + 2022-03-22 + + + https://250kb.club/250kb-club/ + 2022-03-22 + + + https://250kb.club/512kb-club/ + 2022-03-22 + + + https://250kb.club/ache-one/ + 2022-03-22 + + + https://250kb.club/alexanderobenauer-com/ + 2022-03-22 + + + https://250kb.club/alexschroeder-ch/ + 2022-03-22 + + + https://250kb.club/allien-work/ + 2022-03-22 + + + https://250kb.club/anabeatriz-dev/ + 2022-03-22 + + + https://250kb.club/antranigv-am/ + 2022-03-22 + + + https://250kb.club/arfer-net/ + 2022-03-22 + + + https://250kb.club/armaanb-net/ + 2022-03-22 + + + https://250kb.club/artemislena-eu/ + 2022-03-22 + + + https://250kb.club/bcachefs-org/ + 2022-03-22 + + + https://250kb.club/bduck-xyz/ + 2022-03-22 + + + https://250kb.club/beh-uk/ + 2022-03-22 + + + https://250kb.club/benharr-is/ + 2022-03-22 + + + https://250kb.club/benovermyer-com/ + 2022-03-22 + + + https://250kb.club/berkshirehathaway-com/ + 2022-03-22 + + + https://250kb.club/bernsteinbear-com/ + 2022-03-22 + + + https://250kb.club/bestmotherfucking-website/ + 2022-03-22 + + + https://250kb.club/bettermotherfuckingwebsite-com/ + 2022-03-22 + + + https://250kb.club/binyam-in/ + 2022-03-22 + + + https://250kb.club/blakehawkins-com-blog/ + 2022-03-22 + + + https://250kb.club/blmayer-dev/ + 2022-03-22 + + + https://250kb.club/blog-bshah-in/ + 2022-03-22 + + + https://250kb.club/blog-circuitsofimagination-com/ + 2022-03-22 + + + https://250kb.club/blog-fefe-de/ + 2022-03-22 + + + https://250kb.club/blog-fossterer-com/ + 2022-03-22 + + + https://250kb.club/bnolet-me/ + 2022-03-22 + + + https://250kb.club/boehs-org/ + 2022-03-22 + + + https://250kb.club/box-matto-nl/ + 2022-03-22 + + + https://250kb.club/bridge-simplefin-org/ + 2022-03-22 + + + https://250kb.club/buchh-org/ + 2022-03-22 + + + https://250kb.club/bvnf-space/ + 2022-03-22 + + + https://250kb.club/cat-v-org/ + 2022-03-22 + + + https://250kb.club/ccsleep-net/ + 2022-03-22 + + + https://250kb.club/chad-hirsch-host/ + 2022-03-22 + + + https://250kb.club/chrisportela-com/ + 2022-03-22 + + + https://250kb.club/christine-website/ + 2022-03-22 + + + https://250kb.club/cnx-srht-site/ + 2022-03-22 + + + https://250kb.club/codelayer-de/ + 2022-03-22 + + + https://250kb.club/codevoid-de/ + 2022-03-22 + + + https://250kb.club/codingbobby-xyz/ + 2022-03-22 + + + https://250kb.club/codingotaku-com/ + 2022-03-22 + + + https://250kb.club/concise-encoding-org/ + 2022-03-22 + + + https://250kb.club/consoom-soy/ + 2022-03-22 + + + https://250kb.club/coolmathgames-tech/ + 2022-03-22 + + + https://250kb.club/cosmo-red/ + 2022-03-22 + + + https://250kb.club/crackle-dev/ + 2022-03-22 + + + https://250kb.club/cronokirby-com/ + 2022-03-22 + + + https://250kb.club/customformats-com/ + 2022-03-22 + + + https://250kb.club/cycloneblaze-net/ + 2022-03-22 + + + https://250kb.club/daniel-siepmann-de/ + 2022-03-22 + + + https://250kb.club/danielcuttridge-com/ + 2022-03-22 + + + https://250kb.club/danielsada-tech/ + 2022-03-22 + + + https://250kb.club/danluu-com/ + 2022-03-22 + + + https://250kb.club/decentnet-github-io/ + 2022-03-22 + + + https://250kb.club/dotfilehub-com/ + 2022-03-22 + + + https://250kb.club/dpldocs-info-this-week-in-d-blog-html/ + 2022-03-22 + + + https://250kb.club/drewdevault-com/ + 2022-03-22 + + + https://250kb.club/dusanmitrovic-xyz/ + 2022-03-22 + + + https://250kb.club/dyremyhr-no/ + 2022-03-22 + + + https://250kb.club/editions-du-26-octobre-com/ + 2022-03-22 + + + https://250kb.club/emersion-fr/ + 2022-03-22 + + + https://250kb.club/fabioartuso-com/ + 2022-03-22 + + + https://250kb.club/fanael-github-io/ + 2022-03-22 + + + https://250kb.club/featyre-xyz/ + 2022-03-22 + + + https://250kb.club/felt-dev/ + 2022-03-22 + + + https://250kb.club/flatpackapps-com/ + 2022-03-22 + + + https://250kb.club/fmarier-org/ + 2022-03-22 + + + https://250kb.club/fossdd-codeberg-page/ + 2022-03-22 + + + https://250kb.club/foxwells-garden/ + 2022-03-22 + + + https://250kb.club/free-mg/ + 2022-03-22 + + + https://250kb.club/freesolitaire-win/ + 2022-03-22 + + + https://250kb.club/frontaid-io/ + 2022-03-22 + + + https://250kb.club/fullstackpython-com/ + 2022-03-22 + + + https://250kb.club/funnylookinhat-com/ + 2022-03-22 + + + https://250kb.club/gabnotes-org/ + 2022-03-22 + + + https://250kb.club/gallant-dev/ + 2022-03-22 + + + https://250kb.club/gennext-net-au/ + 2022-03-22 + + + https://250kb.club/gerikson-com-hnlo/ + 2022-03-22 + + + https://250kb.club/gerikson-com/ + 2022-03-22 + + + https://250kb.club/getindiekit-com/ + 2022-03-22 + + + https://250kb.club/grapheneos-org/ + 2022-03-22 + + + https://250kb.club/gtrr-artemislena-eu/ + 2022-03-22 + + + https://250kb.club/guts-plus/ + 2022-03-22 + + + https://250kb.club/hmbrg-xyz/ + 2022-03-22 + + + https://250kb.club/humaidq-ae/ + 2022-03-22 + + + https://250kb.club/huyngo-envs-net/ + 2022-03-22 + + + https://250kb.club/iain-in/ + 2022-03-22 + + + https://250kb.club/ianmobbs-com/ + 2022-03-22 + + + https://250kb.club/ihaque-org/ + 2022-03-22 + + + https://250kb.club/ihsaan-glitch-me/ + 2022-03-22 + + + https://250kb.club/inatri-com/ + 2022-03-22 + + + https://250kb.club/jaime-gomezobregon-com/ + 2022-03-22 + + + https://250kb.club/jakob-kaivo-net/ + 2022-03-22 + + + https://250kb.club/jason-nabein-me/ + 2022-03-22 + + + https://250kb.club/jeffhuang-com/ + 2022-03-22 + + + https://250kb.club/jeremysarber-com/ + 2022-03-22 + + + https://250kb.club/jlelse-blog/ + 2022-03-22 + + + https://250kb.club/jmtd-net/ + 2022-03-22 + + + https://250kb.club/john-doe-neocities-org/ + 2022-03-22 + + + https://250kb.club/jrballesteros05-codeberg-page/ + 2022-03-22 + + + https://250kb.club/jvanelian-dev/ + 2022-03-22 + + + https://250kb.club/jvelo-at/ + 2022-03-22 + + + https://250kb.club/k0r-in/ + 2022-03-22 + + + https://250kb.club/karolis-koncevicius-lt/ + 2022-03-22 + + + https://250kb.club/kayafirat-com/ + 2022-03-22 + + + https://250kb.club/kerkour-fr/ + 2022-03-22 + + + https://250kb.club/kevq-uk/ + 2022-03-22 + + + https://250kb.club/kidl-at/ + 2022-03-22 + + + https://250kb.club/kishvanchee-com/ + 2022-03-22 + + + https://250kb.club/kj7nzl-net/ + 2022-03-22 + + + https://250kb.club/koehr-in/ + 2022-03-22 + + + https://250kb.club/koehr-tech/ + 2022-03-22 + + + https://250kb.club/kunalmarwaha-com/ + 2022-03-22 + + + https://250kb.club/lambdapapers-com/ + 2022-03-22 + + + https://250kb.club/lawzava-com/ + 2022-03-22 + + + https://250kb.club/lecaro-me-minimage/ + 2022-03-22 + + + https://250kb.club/lectupedia-com-en/ + 2022-03-22 + + + https://250kb.club/legiblenews-com/ + 2022-03-22 + + + https://250kb.club/leonardschuetz-ch/ + 2022-03-22 + + + https://250kb.club/lighthouse16-com/ + 2022-03-22 + + + https://250kb.club/lil-gay/ + 2022-03-22 + + + https://250kb.club/linuxguideandhints-com/ + 2022-03-22 + + + https://250kb.club/lite-cnn-com/ + 2022-03-22 + + + https://250kb.club/lo-hn/ + 2022-03-22 + + + https://250kb.club/lobste-rs/ + 2022-03-22 + + + https://250kb.club/luana-cc/ + 2022-03-22 + + + https://250kb.club/lucianmarin-com/ + 2022-03-22 + + + https://250kb.club/lukeramsden-com/ + 2022-03-22 + + + https://250kb.club/lukesempire-com/ + 2022-03-22 + + + https://250kb.club/m-chrzan-xyz/ + 2022-03-22 + + + https://250kb.club/majiehong-com/ + 2022-03-22 + + + https://250kb.club/manpages-bsd-lv/ + 2022-03-22 + + + https://250kb.club/manuelmoreale-com/ + 2022-03-22 + + + https://250kb.club/martin-baillie-id/ + 2022-03-22 + + + https://250kb.club/mataroa-blog/ + 2022-03-22 + + + https://250kb.club/matthall-codes/ + 2022-03-22 + + + https://250kb.club/matthewstrom-com/ + 2022-03-22 + + + https://250kb.club/midnight-pub/ + 2022-03-22 + + + https://250kb.club/mikegerwitz-com/ + 2022-03-22 + + + https://250kb.club/miku86-com/ + 2022-03-22 + + + https://250kb.club/mineralexistence-com-home-html/ + 2022-03-22 + + + https://250kb.club/minid-net/ + 2022-03-22 + + + https://250kb.club/minwiz-com/ + 2022-03-22 + + + https://250kb.club/monokai-nl/ + 2022-03-22 + + + https://250kb.club/motherfuckingwebsite-com/ + 2022-03-22 + + + https://250kb.club/motz-berlin-de/ + 2022-03-22 + + + https://250kb.club/my-flow-com/ + 2022-03-22 + + + https://250kb.club/myipaddress-ru/ + 2022-03-22 + + + https://250kb.club/n-2p5-xyz/ + 2022-03-22 + + + https://250kb.club/na20a-neocities-org/ + 2022-03-22 + + + https://250kb.club/natestemen-xyz/ + 2022-03-22 + + + https://250kb.club/nest-jakl-one/ + 2022-03-22 + + + https://250kb.club/news-ycombinator-com/ + 2022-03-22 + + + https://250kb.club/nicetranslator-com/ + 2022-03-22 + + + https://250kb.club/nihar-page/ + 2022-03-22 + + + https://250kb.club/nixnet-email/ + 2022-03-22 + + + https://250kb.club/nomasters-io/ + 2022-03-22 + + + https://250kb.club/norayr-am/ + 2022-03-22 + + + https://250kb.club/notes-eatonphil-com/ + 2022-03-22 + + + https://250kb.club/notionbackups-com/ + 2022-03-22 + + + https://250kb.club/noulin-net-blog/ + 2022-03-22 + + + https://250kb.club/nytpu-com/ + 2022-03-22 + + + https://250kb.club/oh-mg/ + 2022-03-22 + + + https://250kb.club/ohio-araw-xyz/ + 2022-03-22 + + + https://250kb.club/oscarforner-com/ + 2022-03-22 + + + https://250kb.club/oxenburypartners-com/ + 2022-03-22 + + + https://250kb.club/page-mi-fu-berlin-de-jhermann/ + 2022-03-22 + + + https://250kb.club/page/1/ + + + https://250kb.club/page/2/ + + + https://250kb.club/page/3/ + + + https://250kb.club/paulwilde-uk/ + 2022-03-22 + + + https://250kb.club/pbanks-net/ + 2022-03-22 + + + https://250kb.club/pgjones-dev/ + 2022-03-22 + + + https://250kb.club/phate6660-github-io/ + 2022-03-22 + + + https://250kb.club/phreedom-club/ + 2022-03-22 + + + https://250kb.club/plasmasturm-org/ + 2022-03-22 + + + https://250kb.club/playerone-kevincox-ca/ + 2022-03-22 + + + https://250kb.club/pools-xmr-wiki/ + 2022-03-22 + + + https://250kb.club/porkbrain-com/ + 2022-03-22 + + + https://250kb.club/pr0-uk/ + 2022-03-22 + + + https://250kb.club/processwire-dev/ + 2022-03-22 + + + https://250kb.club/qubyte-codes/ + 2022-03-22 + + + https://250kb.club/quinncasey-com/ + 2022-03-22 + + + https://250kb.club/quitsocialmedia-club/ + 2022-03-22 + + + https://250kb.club/rc-lite-xyz/ + 2022-03-22 + + + https://250kb.club/remoteroast-club/ + 2022-03-22 + + + https://250kb.club/richj-co/ + 2022-03-22 + + + https://250kb.club/rya-nc/ + 2022-03-22 + + + https://250kb.club/s1-flatpackapps-com-app-php-appid-22/ + 2022-03-22 + + + https://250kb.club/salejandro-me/ + 2022-03-22 + + + https://250kb.club/salixos-org/ + 2022-03-22 + + + https://250kb.club/satchlj-us/ + 2022-03-22 + + + https://250kb.club/searchbot-app/ + 2022-03-22 + + + https://250kb.club/secluded-site/ + 2022-03-22 + + + https://250kb.club/seirdy-one/ + 2022-03-22 + + + https://250kb.club/shazow-net/ + 2022-03-22 + + + https://250kb.club/si3t-ch/ + 2022-03-22 + + + https://250kb.club/sizi-ng/ + 2022-03-22 + + + https://250kb.club/sjmulder-nl/ + 2022-03-22 + + + https://250kb.club/slackjeff-com-br/ + 2022-03-22 + + + https://250kb.club/sona-hay/ + 2022-03-22 + + + https://250kb.club/sourcehut-org/ + 2022-03-22 + + + https://250kb.club/sparkbox-github-io-bouncy-ball/ + 2022-03-22 + + + https://250kb.club/sparkbox-github-io-logo-experiments/ + 2022-03-22 + + + https://250kb.club/sr-ht/ + 2022-03-22 + + + https://250kb.club/subreply-com/ + 2022-03-22 + + + https://250kb.club/suckless-org/ + 2022-03-22 + + + https://250kb.club/sugarfi-dev/ + 2022-03-22 + + + https://250kb.club/susam-in/ + 2022-03-22 + + + https://250kb.club/swl-am/ + 2022-03-22 + + + https://250kb.club/t0-vc/ + 2022-03-22 + + + https://250kb.club/temp-sh/ + 2022-03-22 + + + https://250kb.club/text-npr-org/ + 2022-03-22 + + + https://250kb.club/thebestmotherfucking-website/ + 2022-03-22 + + + https://250kb.club/thejollyteapot-com/ + 2022-03-22 + + + https://250kb.club/thelion-website/ + 2022-03-22 + + + https://250kb.club/thomas-me/ + 2022-03-22 + + + https://250kb.club/timotijhof-net/ + 2022-03-22 + + + https://250kb.club/tom-kobalt-dev-map/ + 2022-03-22 + + + https://250kb.club/tryhexadecimal-com/ + 2022-03-22 + + + https://250kb.club/ttntm-me/ + 2022-03-22 + + + https://250kb.club/uberspace-de/ + 2022-03-22 + + + https://250kb.club/uglyduck-ca/ + 2022-03-22 + + + https://250kb.club/ul-de/ + 2022-03-22 + + + https://250kb.club/ulpaulpa-de/ + 2022-03-22 + + + https://250kb.club/ultimateelectronicsbook-com/ + 2022-03-22 + + + https://250kb.club/unix-lgbt/ + 2022-03-22 + + + https://250kb.club/unixsheikh-com/ + 2022-03-22 + + + https://250kb.club/usrme-xyz/ + 2022-03-22 + + + https://250kb.club/ut2-weba-ru/ + 2022-03-22 + + + https://250kb.club/ut99-weba-ru/ + 2022-03-22 + + + https://250kb.club/utsuho-rocks/ + 2022-03-22 + + + https://250kb.club/volleyball-baustetten-de/ + 2022-03-22 + + + https://250kb.club/webperf-xyz/ + 2022-03-22 + + + https://250kb.club/webzine-puffy-cafe/ + 2022-03-22 + + + https://250kb.club/werc-cat-v-org/ + 2022-03-22 + + + https://250kb.club/wilde-it-co-uk/ + 2022-03-22 + + + https://250kb.club/willcodefor-beer/ + 2022-03-22 + + + https://250kb.club/wondroushealing-com/ + 2022-03-22 + + + https://250kb.club/worldti-me/ + 2022-03-22 + + + https://250kb.club/www-beh-uk/ + 2022-03-22 + + + https://250kb.club/www-borfigat-org/ + 2022-03-22 + + + https://250kb.club/www-bryanbraun-com-after-dark-css/ + 2022-03-22 + + + https://250kb.club/www-bryanbraun-com-anchorjs/ + 2022-03-22 + + + https://250kb.club/www-bryanbraun-com-connect-four/ + 2022-03-22 + + + https://250kb.club/www-bryanbraun-com/ + 2022-03-22 + + + https://250kb.club/www-danielwasserlaufquicklinks-com/ + 2022-03-22 + + + https://250kb.club/www-dustri-org/ + 2022-03-22 + + + https://250kb.club/www-groovestomp-com/ + 2022-03-22 + + + https://250kb.club/www-migadu-com/ + 2022-03-22 + + + https://250kb.club/www-minimumviable-it/ + 2022-03-22 + + + https://250kb.club/www-neelc-org-about/ + 2022-03-22 + + + https://250kb.club/www-openbsd-org/ + 2022-03-22 + + + https://250kb.club/www-oskarlindgren-se/ + 2022-03-22 + + + https://250kb.club/www-paritybit-ca/ + 2022-03-22 + + + https://250kb.club/www-powerpointkaraoke-com/ + 2022-03-22 + + + https://250kb.club/www-rowlingindex-org/ + 2022-03-22 + + + https://250kb.club/www-slowernews-com/ + 2022-03-22 + + + https://250kb.club/www-speedshop-co/ + 2022-03-22 + + + https://250kb.club/www-tarsnap-com/ + 2022-03-22 + + + https://250kb.club/www-tuhs-org/ + 2022-03-22 + + + https://250kb.club/www-unindented-org/ + 2022-03-22 + + + https://250kb.club/www-usecue-com/ + 2022-03-22 + + + https://250kb.club/www-verybad-link/ + 2022-03-22 + + + https://250kb.club/www-zinzy-website/ + 2022-03-22 + + + https://250kb.club/xigoi-neocities-org/ + 2022-03-22 + + + https://250kb.club/xiu-io/ + 2022-03-22 + + + https://250kb.club/xmdr-nl/ + 2022-03-22 + + + https://250kb.club/xnaas-info/ + 2022-03-22 + + + https://250kb.club/xslendi-xyz/ + 2022-03-22 + + + https://250kb.club/xubuntu-org/ + 2022-03-22 + + + https://250kb.club/ybad-name/ + 2022-03-22 + + + https://250kb.club/ylukem-com/ + 2022-03-22 + + + https://250kb.club/yorickpeterse-com/ + 2022-03-22 + + + https://250kb.club/zakr-es-blog/ + 2022-03-22 + + + https://250kb.club/zakr-es/ + 2022-03-22 + + + https://250kb.club/zn80-net/ + 2022-03-22 + + + https://250kb.club/zupzup-org/ + 2022-03-22 + + diff --git a/public/sizi-ng/index.html b/public/sizi-ng/index.html new file mode 100644 index 00000000..c7f9e771 --- /dev/null +++ b/public/sizi-ng/index.html @@ -0,0 +1,135 @@ +The 250kb Club

sizi.ng

Proud member of the exclusive 250kb club!

|

sizi.ng is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/sjmulder-nl/index.html b/public/sjmulder-nl/index.html new file mode 100644 index 00000000..1cfd219e --- /dev/null +++ b/public/sjmulder-nl/index.html @@ -0,0 +1,135 @@ +The 250kb Club

sjmulder.nl

Proud member of the exclusive 250kb club!

|

sjmulder.nl is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/slackjeff-com-br/index.html b/public/slackjeff-com-br/index.html new file mode 100644 index 00000000..3c42b2a1 --- /dev/null +++ b/public/slackjeff-com-br/index.html @@ -0,0 +1,135 @@ +The 250kb Club

slackjeff.com.br

Proud member of the exclusive 250kb club!

|

slackjeff.com.br is a member of the exclusive 250kb club. The page weighs only 223kb and has a content-to-bloat ratio of 14%.

back

\ No newline at end of file diff --git a/public/sona-hay/index.html b/public/sona-hay/index.html new file mode 100644 index 00000000..3bf3c72a --- /dev/null +++ b/public/sona-hay/index.html @@ -0,0 +1,135 @@ +The 250kb Club

սոնա.հայ

Proud member of the exclusive 250kb club!

|

սոնա.հայ is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/sourcehut-org/index.html b/public/sourcehut-org/index.html new file mode 100644 index 00000000..7c95ba57 --- /dev/null +++ b/public/sourcehut-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

sourcehut.org

Proud member of the exclusive 250kb club!

|

sourcehut.org is a member of the exclusive 250kb club. The page weighs only 81kb and has a content-to-bloat ratio of 8%.

back

\ No newline at end of file diff --git a/public/sparkbox-github-io-bouncy-ball/index.html b/public/sparkbox-github-io-bouncy-ball/index.html new file mode 100644 index 00000000..c7246280 --- /dev/null +++ b/public/sparkbox-github-io-bouncy-ball/index.html @@ -0,0 +1,135 @@ +The 250kb Club

sparkbox.github.io/bouncy-ball

Proud member of the exclusive 250kb club!

|

sparkbox.github.io/bouncy-ball is a member of the exclusive 250kb club. The page weighs only 97kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/sparkbox-github-io-logo-experiments/index.html b/public/sparkbox-github-io-logo-experiments/index.html new file mode 100644 index 00000000..d9d9372d --- /dev/null +++ b/public/sparkbox-github-io-logo-experiments/index.html @@ -0,0 +1,135 @@ +The 250kb Club

sparkbox.github.io/logo-experiments

Proud member of the exclusive 250kb club!

|

sparkbox.github.io/logo-experiments is a member of the exclusive 250kb club. The page weighs only 151kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/sr-ht/index.html b/public/sr-ht/index.html new file mode 100644 index 00000000..68158e26 --- /dev/null +++ b/public/sr-ht/index.html @@ -0,0 +1,135 @@ +The 250kb Club

sr.ht

Proud member of the exclusive 250kb club!

|

sr.ht is a member of the exclusive 250kb club. The page weighs only 29kb and has a content-to-bloat ratio of 12%.

back

\ No newline at end of file diff --git a/public/subreply-com/index.html b/public/subreply-com/index.html new file mode 100644 index 00000000..3e97e164 --- /dev/null +++ b/public/subreply-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

subreply.com

Proud member of the exclusive 250kb club!

|

subreply.com is a member of the exclusive 250kb club. The page weighs only 45kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/suckless-org/index.html b/public/suckless-org/index.html new file mode 100644 index 00000000..e0f51404 --- /dev/null +++ b/public/suckless-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

suckless.org

Proud member of the exclusive 250kb club!

|

suckless.org is a member of the exclusive 250kb club. The page weighs only 116kb and has a content-to-bloat ratio of 4%.

back

\ No newline at end of file diff --git a/public/sugarfi-dev/index.html b/public/sugarfi-dev/index.html new file mode 100644 index 00000000..33add5d3 --- /dev/null +++ b/public/sugarfi-dev/index.html @@ -0,0 +1,135 @@ +The 250kb Club

sugarfi.dev

Proud member of the exclusive 250kb club!

|

sugarfi.dev is a member of the exclusive 250kb club. The page weighs only 54kb and has a content-to-bloat ratio of 4%.

back

\ No newline at end of file diff --git a/public/susam-in/index.html b/public/susam-in/index.html new file mode 100644 index 00000000..7d5d41d4 --- /dev/null +++ b/public/susam-in/index.html @@ -0,0 +1,135 @@ +The 250kb Club

susam.in

Proud member of the exclusive 250kb club!

|

susam.in is a member of the exclusive 250kb club. The page weighs only 4kb and has a content-to-bloat ratio of 47%.

back

\ No newline at end of file diff --git a/public/swl-am/index.html b/public/swl-am/index.html new file mode 100644 index 00000000..f5214676 --- /dev/null +++ b/public/swl-am/index.html @@ -0,0 +1,135 @@ +The 250kb Club

swl.am

Proud member of the exclusive 250kb club!

|

swl.am is a member of the exclusive 250kb club. The page weighs only 115kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/t0-vc/index.html b/public/t0-vc/index.html new file mode 100644 index 00000000..6ab658a3 --- /dev/null +++ b/public/t0-vc/index.html @@ -0,0 +1,135 @@ +The 250kb Club

t0.vc

Proud member of the exclusive 250kb club!

|

t0.vc is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/temp-sh/index.html b/public/temp-sh/index.html new file mode 100644 index 00000000..009660ed --- /dev/null +++ b/public/temp-sh/index.html @@ -0,0 +1,135 @@ +The 250kb Club

temp.sh

Proud member of the exclusive 250kb club!

|

temp.sh is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/text-npr-org/index.html b/public/text-npr-org/index.html new file mode 100644 index 00000000..fd2d7939 --- /dev/null +++ b/public/text-npr-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

text.npr.org

Proud member of the exclusive 250kb club!

|

text.npr.org is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/thebestmotherfucking-website/index.html b/public/thebestmotherfucking-website/index.html new file mode 100644 index 00000000..74811a60 --- /dev/null +++ b/public/thebestmotherfucking-website/index.html @@ -0,0 +1,135 @@ +The 250kb Club

thebestmotherfucking.website

Proud member of the exclusive 250kb club!

|

thebestmotherfucking.website is a member of the exclusive 250kb club. The page weighs only 69kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/thejollyteapot-com/index.html b/public/thejollyteapot-com/index.html new file mode 100644 index 00000000..b28815df --- /dev/null +++ b/public/thejollyteapot-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

thejollyteapot.com

Proud member of the exclusive 250kb club!

|

thejollyteapot.com is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 74%.

back

\ No newline at end of file diff --git a/public/thelion-website/index.html b/public/thelion-website/index.html new file mode 100644 index 00000000..b6fd6c95 --- /dev/null +++ b/public/thelion-website/index.html @@ -0,0 +1,135 @@ +The 250kb Club

thelion.website

Proud member of the exclusive 250kb club!

|

thelion.website is a member of the exclusive 250kb club. The page weighs only 18kb and has a content-to-bloat ratio of 23%.

back

\ No newline at end of file diff --git a/public/thomas-me/index.html b/public/thomas-me/index.html new file mode 100644 index 00000000..e9b1322c --- /dev/null +++ b/public/thomas-me/index.html @@ -0,0 +1,135 @@ +The 250kb Club

thomas.me

Proud member of the exclusive 250kb club!

|

thomas.me is a member of the exclusive 250kb club. The page weighs only 22kb and has a content-to-bloat ratio of 27%.

back

\ No newline at end of file diff --git a/public/timotijhof-net/index.html b/public/timotijhof-net/index.html new file mode 100644 index 00000000..18ff92ab --- /dev/null +++ b/public/timotijhof-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

timotijhof.net

Proud member of the exclusive 250kb club!

|

timotijhof.net is a member of the exclusive 250kb club. The page weighs only 14kb and has a content-to-bloat ratio of 14%.

back

\ No newline at end of file diff --git a/public/tom-kobalt-dev-map/index.html b/public/tom-kobalt-dev-map/index.html new file mode 100644 index 00000000..6ada68f3 --- /dev/null +++ b/public/tom-kobalt-dev-map/index.html @@ -0,0 +1,135 @@ +The 250kb Club

tom.kobalt.dev/map

Proud member of the exclusive 250kb club!

|

tom.kobalt.dev/map is a member of the exclusive 250kb club. The page weighs only 2kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/tryhexadecimal-com/index.html b/public/tryhexadecimal-com/index.html new file mode 100644 index 00000000..4eb7281d --- /dev/null +++ b/public/tryhexadecimal-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

tryhexadecimal.com

Proud member of the exclusive 250kb club!

|

tryhexadecimal.com is a member of the exclusive 250kb club. The page weighs only 12kb and has a content-to-bloat ratio of 48%.

back

\ No newline at end of file diff --git a/public/ttntm-me/index.html b/public/ttntm-me/index.html new file mode 100644 index 00000000..630ad1c4 --- /dev/null +++ b/public/ttntm-me/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ttntm.me

Proud member of the exclusive 250kb club!

|

ttntm.me is a member of the exclusive 250kb club. The page weighs only 57kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/uberspace-de/index.html b/public/uberspace-de/index.html new file mode 100644 index 00000000..ae457b7e --- /dev/null +++ b/public/uberspace-de/index.html @@ -0,0 +1,135 @@ +The 250kb Club

uberspace.de

Proud member of the exclusive 250kb club!

|

uberspace.de is a member of the exclusive 250kb club. The page weighs only 148kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/uglyduck-ca/index.html b/public/uglyduck-ca/index.html new file mode 100644 index 00000000..ac91fd8a --- /dev/null +++ b/public/uglyduck-ca/index.html @@ -0,0 +1,135 @@ +The 250kb Club

uglyduck.ca

Proud member of the exclusive 250kb club!

|

uglyduck.ca is a member of the exclusive 250kb club. The page weighs only 6kb and has a content-to-bloat ratio of 90%.

back

\ No newline at end of file diff --git a/public/ul-de/index.html b/public/ul-de/index.html new file mode 100644 index 00000000..b9820149 --- /dev/null +++ b/public/ul-de/index.html @@ -0,0 +1,135 @@ +The 250kb Club

úl.de

Proud member of the exclusive 250kb club!

|

úl.de is a member of the exclusive 250kb club. The page weighs only 21kb and has a content-to-bloat ratio of 22%.

back

\ No newline at end of file diff --git a/public/ulpaulpa-de/index.html b/public/ulpaulpa-de/index.html new file mode 100644 index 00000000..77a8d4ca --- /dev/null +++ b/public/ulpaulpa-de/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ulpaulpa.de

Proud member of the exclusive 250kb club!

|

ulpaulpa.de is a member of the exclusive 250kb club. The page weighs only 21kb and has a content-to-bloat ratio of 22%.

back

\ No newline at end of file diff --git a/public/ultimateelectronicsbook-com/index.html b/public/ultimateelectronicsbook-com/index.html new file mode 100644 index 00000000..ec984550 --- /dev/null +++ b/public/ultimateelectronicsbook-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ultimateelectronicsbook.com

Proud member of the exclusive 250kb club!

|

ultimateelectronicsbook.com is a member of the exclusive 250kb club. The page weighs only 252kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/unix-lgbt/index.html b/public/unix-lgbt/index.html new file mode 100644 index 00000000..9ba93510 --- /dev/null +++ b/public/unix-lgbt/index.html @@ -0,0 +1,135 @@ +The 250kb Club

unix.lgbt

Proud member of the exclusive 250kb club!

|

unix.lgbt is a member of the exclusive 250kb club. The page weighs only 10kb and has a content-to-bloat ratio of 37%.

back

\ No newline at end of file diff --git a/public/unixsheikh-com/index.html b/public/unixsheikh-com/index.html new file mode 100644 index 00000000..f0a31b27 --- /dev/null +++ b/public/unixsheikh-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

unixsheikh.com

Proud member of the exclusive 250kb club!

|

unixsheikh.com is a member of the exclusive 250kb club. The page weighs only 19kb and has a content-to-bloat ratio of 37%.

back

\ No newline at end of file diff --git a/public/usrme-xyz/index.html b/public/usrme-xyz/index.html new file mode 100644 index 00000000..eb9812cd --- /dev/null +++ b/public/usrme-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

usrme.xyz

Proud member of the exclusive 250kb club!

|

usrme.xyz is a member of the exclusive 250kb club. The page weighs only 15kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/ut2-weba-ru/index.html b/public/ut2-weba-ru/index.html new file mode 100644 index 00000000..3cca61a6 --- /dev/null +++ b/public/ut2-weba-ru/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ut2.weba.ru

Proud member of the exclusive 250kb club!

|

ut2.weba.ru is a member of the exclusive 250kb club. The page weighs only 164kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/ut99-weba-ru/index.html b/public/ut99-weba-ru/index.html new file mode 100644 index 00000000..aa5e4c30 --- /dev/null +++ b/public/ut99-weba-ru/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ut99.weba.ru

Proud member of the exclusive 250kb club!

|

ut99.weba.ru is a member of the exclusive 250kb club. The page weighs only 120kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/utsuho-rocks/index.html b/public/utsuho-rocks/index.html new file mode 100644 index 00000000..fb9c1a45 --- /dev/null +++ b/public/utsuho-rocks/index.html @@ -0,0 +1,135 @@ +The 250kb Club

utsuho.rocks

Proud member of the exclusive 250kb club!

|

utsuho.rocks is a member of the exclusive 250kb club. The page weighs only 98kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/volleyball-baustetten-de/index.html b/public/volleyball-baustetten-de/index.html new file mode 100644 index 00000000..f62bc5f2 --- /dev/null +++ b/public/volleyball-baustetten-de/index.html @@ -0,0 +1,135 @@ +The 250kb Club

volleyball-baustetten.de

Proud member of the exclusive 250kb club!

|

volleyball-baustetten.de is a member of the exclusive 250kb club. The page weighs only 94kb and has a content-to-bloat ratio of 4%.

back

\ No newline at end of file diff --git a/public/webperf-xyz/index.html b/public/webperf-xyz/index.html new file mode 100644 index 00000000..1b44e471 --- /dev/null +++ b/public/webperf-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

webperf.xyz

Proud member of the exclusive 250kb club!

|

webperf.xyz is a member of the exclusive 250kb club. The page weighs only 105kb and has a content-to-bloat ratio of 4%.

back

\ No newline at end of file diff --git a/public/webzine-puffy-cafe/index.html b/public/webzine-puffy-cafe/index.html new file mode 100644 index 00000000..7b36fe8d --- /dev/null +++ b/public/webzine-puffy-cafe/index.html @@ -0,0 +1,135 @@ +The 250kb Club

webzine.puffy.cafe

Proud member of the exclusive 250kb club!

|

webzine.puffy.cafe is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/werc-cat-v-org/index.html b/public/werc-cat-v-org/index.html new file mode 100644 index 00000000..c36802cf --- /dev/null +++ b/public/werc-cat-v-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

werc.cat-v.org

Proud member of the exclusive 250kb club!

|

werc.cat-v.org is a member of the exclusive 250kb club. The page weighs only 8kb and has a content-to-bloat ratio of 90%.

back

\ No newline at end of file diff --git a/public/wilde-it-co-uk/index.html b/public/wilde-it-co-uk/index.html new file mode 100644 index 00000000..397c9423 --- /dev/null +++ b/public/wilde-it-co-uk/index.html @@ -0,0 +1,135 @@ +The 250kb Club

wilde-it.co.uk

Proud member of the exclusive 250kb club!

|

wilde-it.co.uk is a member of the exclusive 250kb club. The page weighs only 136kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/willcodefor-beer/index.html b/public/willcodefor-beer/index.html new file mode 100644 index 00000000..550f7bdd --- /dev/null +++ b/public/willcodefor-beer/index.html @@ -0,0 +1,135 @@ +The 250kb Club

willcodefor.beer

Proud member of the exclusive 250kb club!

|

willcodefor.beer is a member of the exclusive 250kb club. The page weighs only 24kb and has a content-to-bloat ratio of 26%.

back

\ No newline at end of file diff --git a/public/wondroushealing-com/index.html b/public/wondroushealing-com/index.html new file mode 100644 index 00000000..2c4ce815 --- /dev/null +++ b/public/wondroushealing-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

wondroushealing.com

Proud member of the exclusive 250kb club!

|

wondroushealing.com is a member of the exclusive 250kb club. The page weighs only 222kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/worldti-me/index.html b/public/worldti-me/index.html new file mode 100644 index 00000000..a067eda9 --- /dev/null +++ b/public/worldti-me/index.html @@ -0,0 +1,135 @@ +The 250kb Club

worldti.me

Proud member of the exclusive 250kb club!

|

worldti.me is a member of the exclusive 250kb club. The page weighs only 41kb and has a content-to-bloat ratio of 7%.

back

\ No newline at end of file diff --git a/public/www-beh-uk/index.html b/public/www-beh-uk/index.html new file mode 100644 index 00000000..eda4ac6d --- /dev/null +++ b/public/www-beh-uk/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.beh.uk

Proud member of the exclusive 250kb club!

|

www.beh.uk is a member of the exclusive 250kb club. The page weighs only 67kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/www-borfigat-org/index.html b/public/www-borfigat-org/index.html new file mode 100644 index 00000000..1ec62f37 --- /dev/null +++ b/public/www-borfigat-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.borfigat.org

Proud member of the exclusive 250kb club!

|

www.borfigat.org is a member of the exclusive 250kb club. The page weighs only 120kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/www-bryanbraun-com-after-dark-css/index.html b/public/www-bryanbraun-com-after-dark-css/index.html new file mode 100644 index 00000000..e473ea92 --- /dev/null +++ b/public/www-bryanbraun-com-after-dark-css/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.bryanbraun.com/after-dark-css

Proud member of the exclusive 250kb club!

|

www.bryanbraun.com/after-dark-css is a member of the exclusive 250kb club. The page weighs only 197kb and has a content-to-bloat ratio of 61%.

back

\ No newline at end of file diff --git a/public/www-bryanbraun-com-anchorjs/index.html b/public/www-bryanbraun-com-anchorjs/index.html new file mode 100644 index 00000000..61c9298c --- /dev/null +++ b/public/www-bryanbraun-com-anchorjs/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.bryanbraun.com/anchorjs

Proud member of the exclusive 250kb club!

|

www.bryanbraun.com/anchorjs is a member of the exclusive 250kb club. The page weighs only 162kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/www-bryanbraun-com-connect-four/index.html b/public/www-bryanbraun-com-connect-four/index.html new file mode 100644 index 00000000..02209b14 --- /dev/null +++ b/public/www-bryanbraun-com-connect-four/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.bryanbraun.com/connect-four

Proud member of the exclusive 250kb club!

|

www.bryanbraun.com/connect-four is a member of the exclusive 250kb club. The page weighs only 46kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/www-bryanbraun-com/index.html b/public/www-bryanbraun-com/index.html new file mode 100644 index 00000000..30942523 --- /dev/null +++ b/public/www-bryanbraun-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.bryanbraun.com

Proud member of the exclusive 250kb club!

|

www.bryanbraun.com is a member of the exclusive 250kb club. The page weighs only 89kb and has a content-to-bloat ratio of 11%.

back

\ No newline at end of file diff --git a/public/www-danielwasserlaufquicklinks-com/index.html b/public/www-danielwasserlaufquicklinks-com/index.html new file mode 100644 index 00000000..1258b3e6 --- /dev/null +++ b/public/www-danielwasserlaufquicklinks-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.danielwasserlaufquicklinks.com

Proud member of the exclusive 250kb club!

|

www.danielwasserlaufquicklinks.com is a member of the exclusive 250kb club. The page weighs only 105kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/public/www-dustri-org/index.html b/public/www-dustri-org/index.html new file mode 100644 index 00000000..8ca35e35 --- /dev/null +++ b/public/www-dustri-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.dustri.org

Proud member of the exclusive 250kb club!

|

www.dustri.org is a member of the exclusive 250kb club. The page weighs only 27kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/www-groovestomp-com/index.html b/public/www-groovestomp-com/index.html new file mode 100644 index 00000000..a4225739 --- /dev/null +++ b/public/www-groovestomp-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.groovestomp.com

Proud member of the exclusive 250kb club!

|

www.groovestomp.com is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 36%.

back

\ No newline at end of file diff --git a/public/www-migadu-com/index.html b/public/www-migadu-com/index.html new file mode 100644 index 00000000..06f576cf --- /dev/null +++ b/public/www-migadu-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.migadu.com

Proud member of the exclusive 250kb club!

|

www.migadu.com is a member of the exclusive 250kb club. The page weighs only 204kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/www-minimumviable-it/index.html b/public/www-minimumviable-it/index.html new file mode 100644 index 00000000..d6e48c65 --- /dev/null +++ b/public/www-minimumviable-it/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.minimumviable.it

Proud member of the exclusive 250kb club!

|

www.minimumviable.it is a member of the exclusive 250kb club. The page weighs only 5kb and has a content-to-bloat ratio of 57%.

back

\ No newline at end of file diff --git a/public/www-neelc-org-about/index.html b/public/www-neelc-org-about/index.html new file mode 100644 index 00000000..82ebd7e5 --- /dev/null +++ b/public/www-neelc-org-about/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.neelc.org/about

Proud member of the exclusive 250kb club!

|

www.neelc.org/about is a member of the exclusive 250kb club. The page weighs only 61kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/www-openbsd-org/index.html b/public/www-openbsd-org/index.html new file mode 100644 index 00000000..34d88a33 --- /dev/null +++ b/public/www-openbsd-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.openbsd.org

Proud member of the exclusive 250kb club!

|

www.openbsd.org is a member of the exclusive 250kb club. The page weighs only 155kb and has a content-to-bloat ratio of 2%.

back

\ No newline at end of file diff --git a/public/www-oskarlindgren-se/index.html b/public/www-oskarlindgren-se/index.html new file mode 100644 index 00000000..f94d6e37 --- /dev/null +++ b/public/www-oskarlindgren-se/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.oskarlindgren.se

Proud member of the exclusive 250kb club!

|

www.oskarlindgren.se is a member of the exclusive 250kb club. The page weighs only 111kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/www-paritybit-ca/index.html b/public/www-paritybit-ca/index.html new file mode 100644 index 00000000..48f46b2d --- /dev/null +++ b/public/www-paritybit-ca/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.paritybit.ca

Proud member of the exclusive 250kb club!

|

www.paritybit.ca is a member of the exclusive 250kb club. The page weighs only 9kb and has a content-to-bloat ratio of 67%.

back

\ No newline at end of file diff --git a/public/www-powerpointkaraoke-com/index.html b/public/www-powerpointkaraoke-com/index.html new file mode 100644 index 00000000..3efc6b22 --- /dev/null +++ b/public/www-powerpointkaraoke-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.powerpointkaraoke.com

Proud member of the exclusive 250kb club!

|

www.powerpointkaraoke.com is a member of the exclusive 250kb club. The page weighs only 96kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/www-rowlingindex-org/index.html b/public/www-rowlingindex-org/index.html new file mode 100644 index 00000000..e4d7e62e --- /dev/null +++ b/public/www-rowlingindex-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.rowlingindex.org

Proud member of the exclusive 250kb club!

|

www.rowlingindex.org is a member of the exclusive 250kb club. The page weighs only 69kb and has a content-to-bloat ratio of 19%.

back

\ No newline at end of file diff --git a/public/www-slowernews-com/index.html b/public/www-slowernews-com/index.html new file mode 100644 index 00000000..4a79868b --- /dev/null +++ b/public/www-slowernews-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.slowernews.com

Proud member of the exclusive 250kb club!

|

www.slowernews.com is a member of the exclusive 250kb club. The page weighs only 113kb and has a content-to-bloat ratio of 20%.

back

\ No newline at end of file diff --git a/public/www-speedshop-co/index.html b/public/www-speedshop-co/index.html new file mode 100644 index 00000000..10708a2e --- /dev/null +++ b/public/www-speedshop-co/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.speedshop.co

Proud member of the exclusive 250kb club!

|

www.speedshop.co is a member of the exclusive 250kb club. The page weighs only 84kb and has a content-to-bloat ratio of 17%.

back

\ No newline at end of file diff --git a/public/www-tarsnap-com/index.html b/public/www-tarsnap-com/index.html new file mode 100644 index 00000000..1412cb04 --- /dev/null +++ b/public/www-tarsnap-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.tarsnap.com

Proud member of the exclusive 250kb club!

|

www.tarsnap.com is a member of the exclusive 250kb club. The page weighs only 109kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/www-tuhs-org/index.html b/public/www-tuhs-org/index.html new file mode 100644 index 00000000..4d112b21 --- /dev/null +++ b/public/www-tuhs-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.tuhs.org

Proud member of the exclusive 250kb club!

|

www.tuhs.org is a member of the exclusive 250kb club. The page weighs only 139kb and has a content-to-bloat ratio of 1%.

back

\ No newline at end of file diff --git a/public/www-unindented-org/index.html b/public/www-unindented-org/index.html new file mode 100644 index 00000000..4e30e43c --- /dev/null +++ b/public/www-unindented-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.unindented.org

Proud member of the exclusive 250kb club!

|

www.unindented.org is a member of the exclusive 250kb club. The page weighs only 49kb and has a content-to-bloat ratio of 11%.

back

\ No newline at end of file diff --git a/public/www-usecue-com/index.html b/public/www-usecue-com/index.html new file mode 100644 index 00000000..99b7efc7 --- /dev/null +++ b/public/www-usecue-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.usecue.com

Proud member of the exclusive 250kb club!

|

www.usecue.com is a member of the exclusive 250kb club. The page weighs only 33kb and has a content-to-bloat ratio of 4%.

back

\ No newline at end of file diff --git a/public/www-verybad-link/index.html b/public/www-verybad-link/index.html new file mode 100644 index 00000000..f31d8c8c --- /dev/null +++ b/public/www-verybad-link/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.verybad.link

Proud member of the exclusive 250kb club!

|

www.verybad.link is a member of the exclusive 250kb club. The page weighs only 93kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/www-zinzy-website/index.html b/public/www-zinzy-website/index.html new file mode 100644 index 00000000..c90256b0 --- /dev/null +++ b/public/www-zinzy-website/index.html @@ -0,0 +1,135 @@ +The 250kb Club

www.zinzy.website

Proud member of the exclusive 250kb club!

|

www.zinzy.website is a member of the exclusive 250kb club. The page weighs only 116kb and has a content-to-bloat ratio of 24%.

back

\ No newline at end of file diff --git a/public/xigoi-neocities-org/index.html b/public/xigoi-neocities-org/index.html new file mode 100644 index 00000000..f4c30a70 --- /dev/null +++ b/public/xigoi-neocities-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

xigoi.neocities.org

Proud member of the exclusive 250kb club!

|

xigoi.neocities.org is a member of the exclusive 250kb club. The page weighs only 6kb and has a content-to-bloat ratio of 51%.

back

\ No newline at end of file diff --git a/public/xiu-io/index.html b/public/xiu-io/index.html new file mode 100644 index 00000000..0fe70919 --- /dev/null +++ b/public/xiu-io/index.html @@ -0,0 +1,135 @@ +The 250kb Club

xiu.io

Proud member of the exclusive 250kb club!

|

xiu.io is a member of the exclusive 250kb club. The page weighs only 158kb and has a content-to-bloat ratio of 6%.

back

\ No newline at end of file diff --git a/public/xmdr-nl/index.html b/public/xmdr-nl/index.html new file mode 100644 index 00000000..ec1b9cd7 --- /dev/null +++ b/public/xmdr-nl/index.html @@ -0,0 +1,135 @@ +The 250kb Club

xmdr.nl

Proud member of the exclusive 250kb club!

|

xmdr.nl is a member of the exclusive 250kb club. The page weighs only 15kb and has a content-to-bloat ratio of 15%.

back

\ No newline at end of file diff --git a/public/xnaas-info/index.html b/public/xnaas-info/index.html new file mode 100644 index 00000000..e793303b --- /dev/null +++ b/public/xnaas-info/index.html @@ -0,0 +1,135 @@ +The 250kb Club

xnaas.info

Proud member of the exclusive 250kb club!

|

xnaas.info is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 47%.

back

\ No newline at end of file diff --git a/public/xslendi-xyz/index.html b/public/xslendi-xyz/index.html new file mode 100644 index 00000000..7e47dcec --- /dev/null +++ b/public/xslendi-xyz/index.html @@ -0,0 +1,135 @@ +The 250kb Club

xslendi.xyz

Proud member of the exclusive 250kb club!

|

xslendi.xyz is a member of the exclusive 250kb club. The page weighs only 3kb and has a content-to-bloat ratio of 77%.

back

\ No newline at end of file diff --git a/public/xubuntu-org/index.html b/public/xubuntu-org/index.html new file mode 100644 index 00000000..76030211 --- /dev/null +++ b/public/xubuntu-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

xubuntu.org

Proud member of the exclusive 250kb club!

|

xubuntu.org is a member of the exclusive 250kb club. The page weighs only 154kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/ybad-name/index.html b/public/ybad-name/index.html new file mode 100644 index 00000000..e796309a --- /dev/null +++ b/public/ybad-name/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ybad.name

Proud member of the exclusive 250kb club!

|

ybad.name is a member of the exclusive 250kb club. The page weighs only 1kb and has a content-to-bloat ratio of 0%.

back

\ No newline at end of file diff --git a/public/ylukem-com/index.html b/public/ylukem-com/index.html new file mode 100644 index 00000000..f4f97d7e --- /dev/null +++ b/public/ylukem-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

ylukem.com

Proud member of the exclusive 250kb club!

|

ylukem.com is a member of the exclusive 250kb club. The page weighs only 58kb and has a content-to-bloat ratio of 3%.

back

\ No newline at end of file diff --git a/public/yorickpeterse-com/index.html b/public/yorickpeterse-com/index.html new file mode 100644 index 00000000..86f6dd78 --- /dev/null +++ b/public/yorickpeterse-com/index.html @@ -0,0 +1,135 @@ +The 250kb Club

yorickpeterse.com

Proud member of the exclusive 250kb club!

|

yorickpeterse.com is a member of the exclusive 250kb club. The page weighs only 18kb and has a content-to-bloat ratio of 13%.

back

\ No newline at end of file diff --git a/public/zakr-es-blog/index.html b/public/zakr-es-blog/index.html new file mode 100644 index 00000000..59a251f2 --- /dev/null +++ b/public/zakr-es-blog/index.html @@ -0,0 +1,135 @@ +The 250kb Club

zakr.es/blog

Proud member of the exclusive 250kb club!

|

zakr.es/blog is a member of the exclusive 250kb club. The page weighs only 152kb and has a content-to-bloat ratio of 19%.

back

\ No newline at end of file diff --git a/public/zakr-es/index.html b/public/zakr-es/index.html new file mode 100644 index 00000000..60472a08 --- /dev/null +++ b/public/zakr-es/index.html @@ -0,0 +1,135 @@ +The 250kb Club

zakr.es

Proud member of the exclusive 250kb club!

|

zakr.es is a member of the exclusive 250kb club. The page weighs only 59kb and has a content-to-bloat ratio of 5%.

back

\ No newline at end of file diff --git a/public/zn80-net/index.html b/public/zn80-net/index.html new file mode 100644 index 00000000..f23e83d9 --- /dev/null +++ b/public/zn80-net/index.html @@ -0,0 +1,135 @@ +The 250kb Club

zn80.net

Proud member of the exclusive 250kb club!

|

zn80.net is a member of the exclusive 250kb club. The page weighs only 12kb and has a content-to-bloat ratio of 9%.

back

\ No newline at end of file diff --git a/public/zupzup-org/index.html b/public/zupzup-org/index.html new file mode 100644 index 00000000..2fafc073 --- /dev/null +++ b/public/zupzup-org/index.html @@ -0,0 +1,135 @@ +The 250kb Club

zupzup.org

Proud member of the exclusive 250kb club!

|

zupzup.org is a member of the exclusive 250kb club. The page weighs only 7kb and has a content-to-bloat ratio of 100%.

back

\ No newline at end of file diff --git a/refresh-page.sh b/refresh-page.sh new file mode 100755 index 00000000..2d0d4744 --- /dev/null +++ b/refresh-page.sh @@ -0,0 +1,2 @@ +docker ps | grep yellowlabtools || docker run --privileged -p 8383:8383 -v $PWD/yltresults:/usr/src/ylt/results ousamabenyounes/yellowlabtools & +deno run --allow-read --allow-write --allow-net index.ts diff --git a/refresh-pages.sh b/refresh-pages.sh deleted file mode 100755 index b29d3901..00000000 --- a/refresh-pages.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -node ./compile-list.mjs && -yarn build && -scp -r build/* 250kb.club:/srv/http/250kb.club/ && -git commit -am 'updates URLs' && -git push sourcehut main && git push origin main diff --git a/snowpack.config.js b/snowpack.config.js deleted file mode 100644 index d8b737a8..00000000 --- a/snowpack.config.js +++ /dev/null @@ -1,4 +0,0 @@ -// Consult https://www.snowpack.dev to learn about these options -module.exports = { - extends: '@sveltejs/snowpack-config' -}; diff --git a/src/app.html b/src/app.html deleted file mode 100644 index 0ae61c5a..00000000 --- a/src/app.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - The 250kb Club - - - %svelte.head% - - - %svelte.body% - - - diff --git a/src/components/InfoPopup.svelte b/src/components/InfoPopup.svelte deleted file mode 100644 index 6eefcef9..00000000 --- a/src/components/InfoPopup.svelte +++ /dev/null @@ -1,62 +0,0 @@ - - - - - -
-
-

Technical Details

-
-

- The values shown in the list are URL, Total Weight, Content Ratio and are - updated weekly. -

-

- Websites listed here are downloaded and analyzed with - Phantomas. - The total weight is counted and then the size of actual content is measured - and shown as a ratio. -

-

- For example: If a website has a total weight of 100kb and 60kb are the - documents structure, text, images, videos and so on, then the content ratio - is 60%. The rest are extras like CSS, JavaScript and so on. It is hard to - say what a good ratio is but my gut feeling is that everything above 20% is - pretty good already. -

-

- Disclaimer: Currently, inline scripts and styles are - measured as content due to technical limitations of Phantomas. This will - hopefully be fixed soon. -

-
- - diff --git a/src/components/Link.svelte b/src/components/Link.svelte deleted file mode 100644 index e9a7cba6..00000000 --- a/src/components/Link.svelte +++ /dev/null @@ -1,5 +0,0 @@ - - - diff --git a/src/components/MainFooter.svelte b/src/components/MainFooter.svelte deleted file mode 100644 index db1d374a..00000000 --- a/src/components/MainFooter.svelte +++ /dev/null @@ -1,21 +0,0 @@ - - -
-

- Made with ♥ for a performant web by Norman Köhring. - Inspired by Bradley Taunt's 1MB.club -
- The code of this page is open source. You can find it on Github - and Sourcehut. -

-
- - diff --git a/src/components/MainHeader.svelte b/src/components/MainHeader.svelte deleted file mode 100644 index 570e1aaa..00000000 --- a/src/components/MainHeader.svelte +++ /dev/null @@ -1,36 +0,0 @@ - - -
-

The 250kb Club

-

- - The Web Is Doom - -

-

Lets do something about it!

-

- The 250kb Club is a collection of web pages that focus on - performance, efficiency and accessibility. -

-

Websites in this list must not exceed 256kb compressed size!

-

- Yes, compressed size. It makes much more sense because it allows - for a lot of text to be transferred without having a big impact on the - total size, while the impact of media is basically unaffected. -

-

- If your pages exceeds 250kb, you might consider - 512kB.club or - 1MB.club. -

-

- You can suggest a web page for this collection - via Sourcehut - or - via Github. - The site will be reviewed and, if applicable, added to the list below. - Pages are checked again every week. -

-
diff --git a/src/components/PageList.svelte b/src/components/PageList.svelte deleted file mode 100644 index 25a5d436..00000000 --- a/src/components/PageList.svelte +++ /dev/null @@ -1,95 +0,0 @@ - - -
    - {#each sortedPages as page} -
  1. -
    - {stripped(page.url)} - {page.size}kb - {page.ratio}% -
    -
    yellowSizeThreshhold} - class:red={page.size > redSizeThreshhold} - /> -
    yellowRatioThreshhold} - class:red={page.ratio > redRatioThreshhold} - /> -
  2. - {/each} -
- - diff --git a/src/components/pages.mjs b/src/components/pages.mjs deleted file mode 100644 index a1c64218..00000000 --- a/src/components/pages.mjs +++ /dev/null @@ -1 +0,0 @@ -export default [{"url":"https://unixsheikh.com/","contentWeight":18090,"extraWeight":1078,"stamp":1643198781261},{"url":"https://www.usecue.com","contentWeight":6847,"extraWeight":26436,"stamp":1643198781693},{"url":"https://lecaro.me/minimage/","contentWeight":1944,"extraWeight":8784,"stamp":1643198782140},{"url":"https://k0r.in","contentWeight":37294,"extraWeight":20234,"stamp":1643198782692},{"url":"https://koehr.in","contentWeight":22003,"extraWeight":20294,"stamp":1643198783244},{"url":"https://koehr.tech","contentWeight":5035,"extraWeight":20127,"stamp":1643198784178},{"url":"https://sjmulder.nl","contentWeight":2339,"extraWeight":0,"stamp":1643198784523},{"url":"https://text.npr.org","contentWeight":2887,"extraWeight":0,"stamp":1643198785041},{"url":"https://playerone.kevincox.ca","contentWeight":2812,"extraWeight":40553,"stamp":1643198785846},{"url":"https://dotfilehub.com","contentWeight":1010,"extraWeight":1361,"stamp":1643198786710},{"url":"https://manpages.bsd.lv","contentWeight":7045,"extraWeight":1346,"stamp":1643198788166},{"url":"https://danluu.com","contentWeight":4650,"extraWeight":0,"stamp":1643198788566},{"url":"http://minid.net","contentWeight":4110,"extraWeight":0,"stamp":1643198789107},{"url":"https://250kb.club","contentWeight":10252,"extraWeight":24384,"stamp":1643198793883},{"url":"https://subreply.com","contentWeight":4545,"extraWeight":42075,"stamp":1643198794559},{"url":"https://seirdy.one","contentWeight":3527,"extraWeight":0,"stamp":1643198795372},{"url":"https://richj.co","contentWeight":2316,"extraWeight":40922,"stamp":1643198795740},{"url":"https://porkbrain.com","contentWeight":120490,"extraWeight":1958,"stamp":1643198796326},{"url":"https://pgjones.dev","contentWeight":2908,"extraWeight":195685,"stamp":1643198797454},{"url":"https://jaime.gomezobregon.com","contentWeight":11697,"extraWeight":71511,"stamp":1643198798172},{"url":"https://lawzava.com","contentWeight":2545,"extraWeight":2777,"stamp":1643198798830},{"url":"https://monokai.nl","contentWeight":5559,"extraWeight":84801,"stamp":1643198799387},{"url":"https://flatpackapps.com","contentWeight":15684,"extraWeight":3565,"stamp":1643198801076},{"url":"https://frontaid.io","contentWeight":50890,"extraWeight":96022,"stamp":1643198801626},{"url":"https://worldti.me","contentWeight":2766,"extraWeight":39505,"stamp":1643198802509},{"url":"https://sneak.berlin","contentWeight":189244,"extraWeight":1259288,"stamp":1643198803775},{"url":"https://jeremysarber.com","contentWeight":59176,"extraWeight":10654,"stamp":1643198805062},{"url":"https://kunalmarwaha.com/","contentWeight":901,"extraWeight":925,"stamp":1643198805961},{"url":"https://chrisportela.com","contentWeight":66278,"extraWeight":130101,"stamp":1643198807862},{"url":"https://weboas.is/","contentWeight":21400,"extraWeight":100973,"stamp":1643198811774},{"url":"https://jlelse.blog/","contentWeight":2857,"extraWeight":1501,"stamp":1643198812181},{"url":"https://unix.lgbt/","contentWeight":9929,"extraWeight":670,"stamp":1643198812595},{"url":"https://sr.ht/","contentWeight":3733,"extraWeight":26373,"stamp":1643198813632},{"url":"https://sourcehut.org/","contentWeight":80026,"extraWeight":2688,"stamp":1643198814577},{"url":"http://oxenburypartners.com/","contentWeight":2246,"extraWeight":0,"stamp":1643198815026},{"url":"https://1mb.club/","contentWeight":12779,"extraWeight":485,"stamp":1643198816398},{"url":"https://freesolitaire.win/","contentWeight":30967,"extraWeight":2662,"stamp":1643198817008},{"url":"https://motherfuckingwebsite.com/","contentWeight":2353,"extraWeight":0,"stamp":1643198817628},{"url":"https://berkshirehathaway.com","contentWeight":7755,"extraWeight":36450,"stamp":1643198818136},{"url":"https://susam.in","contentWeight":2298,"extraWeight":2492,"stamp":1643198818611},{"url":"https://bridge.simplefin.org","contentWeight":3871,"extraWeight":3795,"stamp":1643198819478},{"url":"https://lukeramsden.com","contentWeight":4856,"extraWeight":0,"stamp":1643198819805},{"url":"https://mataroa.blog","contentWeight":3263,"extraWeight":3378,"stamp":1643198820336},{"url":"https://jvanelian.dev","contentWeight":2793,"extraWeight":17128,"stamp":1643198820879},{"url":"https://uglyduck.ca","contentWeight":60822,"extraWeight":1592,"stamp":1643198822047},{"url":"https://cronokirby.com","contentWeight":8576,"extraWeight":217436,"stamp":1643198822969},{"url":"https://lite.cnn.com","contentWeight":7707,"extraWeight":64941,"stamp":1643198823832},{"url":"https://john-doe.neocities.org","contentWeight":4540,"extraWeight":2745,"stamp":1643198824358},{"url":"https://news.ycombinator.com","contentWeight":7755,"extraWeight":4513,"stamp":1643198825682},{"url":"https://blog.fefe.de","contentWeight":14374,"extraWeight":0,"stamp":1643198826114},{"url":"https://ianmobbs.com","contentWeight":2019,"extraWeight":161767,"stamp":1643198826885},{"url":"https://webperf.xyz","contentWeight":3963,"extraWeight":5781,"stamp":1643198827963},{"url":"https://fullstackpython.com","contentWeight":24594,"extraWeight":0,"stamp":1643198828962},{"url":"https://benovermyer.com/","contentWeight":49727,"extraWeight":180194,"stamp":1643198829665},{"url":"https://www.tuhs.org/","contentWeight":141569,"extraWeight":662,"stamp":1643198831512},{"url":"https://searchbot.app/","contentWeight":5348,"extraWeight":211395,"stamp":1643198832151},{"url":"https://lobste.rs/","contentWeight":9789,"extraWeight":13802,"stamp":1643198833158},{"url":"https://alexanderobenauer.com","contentWeight":12524,"extraWeight":481912,"stamp":1643198834167},{"url":"https://codelayer.de","contentWeight":102090,"extraWeight":37034,"stamp":1643198834752},{"url":"https://matthewstrom.com","contentWeight":1927,"extraWeight":22433,"stamp":1643198835347},{"url":"https://danielsada.tech/","contentWeight":59557,"extraWeight":70334,"stamp":1643198836905},{"url":"https://ihaque.org/","contentWeight":2835,"extraWeight":176815,"stamp":1643198838730},{"url":"https://ultimateelectronicsbook.com/","contentWeight":47126,"extraWeight":25419,"stamp":1643198839486},{"url":"https://xubuntu.org/","contentWeight":33867,"extraWeight":123785,"stamp":1643198840203},{"url":"https://www.tarsnap.com/","contentWeight":59229,"extraWeight":52340,"stamp":1643198841410},{"url":"https://ylukem.com/","contentWeight":2309,"extraWeight":68877,"stamp":1643198843935},{"url":"https://iain.in/","contentWeight":1700,"extraWeight":112137,"stamp":1643198845451},{"url":"https://nicetranslator.com/","contentWeight":1689,"extraWeight":153049,"stamp":1643198846424},{"url":"http://dotnom.com/","contentWeight":299138,"extraWeight":34006,"stamp":1643198847979},{"url":"https://jvelo.at/","contentWeight":5762,"extraWeight":182140,"stamp":1643198849549},{"url":"http://dpldocs.info/this-week-in-d/Blog.html","contentWeight":69252,"extraWeight":28048,"stamp":1643198850792},{"url":"https://lucianmarin.com/","contentWeight":24456,"extraWeight":39004,"stamp":1643198851506},{"url":"https://www.rowlingindex.org/","contentWeight":13138,"extraWeight":36444,"stamp":1643198852681},{"url":"https://uberspace.de/","contentWeight":158228,"extraWeight":203715,"stamp":1643198853282},{"url":"https://craigslist.org/","contentWeight":18654,"extraWeight":407301,"stamp":1643198856564},{"url":"https://salixos.org/","contentWeight":78486,"extraWeight":4098,"stamp":1643198857050},{"url":"https://fraction.io/","contentWeight":1273,"extraWeight":630,"stamp":1643198857904},{"url":"http://www.danielwasserlaufquicklinks.com/","contentWeight":106096,"extraWeight":0,"stamp":1643198859283},{"url":"https://bernsteinbear.com/","contentWeight":7693,"extraWeight":2916,"stamp":1643198859800},{"url":"https://www.speedshop.co/","contentWeight":75172,"extraWeight":14674,"stamp":1643198861019},{"url":"https://usrme.xyz/","contentWeight":1022,"extraWeight":32698,"stamp":1643198862463},{"url":"https://nomasters.io/","contentWeight":1626,"extraWeight":49138,"stamp":1643198862926},{"url":"https://n.2p5.xyz/","contentWeight":2078,"extraWeight":26971,"stamp":1643198863293},{"url":"https://jakob.kaivo.net/","contentWeight":1029,"extraWeight":661,"stamp":1643198864119},{"url":"https://alexschroeder.ch/","contentWeight":24098,"extraWeight":4404,"stamp":1643198865164},{"url":"https://humaidq.ae/","contentWeight":6922,"extraWeight":842,"stamp":1643198866879},{"url":"http://stratus3d.com/","contentWeight":280407,"extraWeight":10395,"stamp":1643198867941},{"url":"https://jrballesteros05.codeberg.page/","contentWeight":1093,"extraWeight":0,"stamp":1643198868249},{"url":"http://www.p01.org/","contentWeight":393680,"extraWeight":5448,"stamp":1643198869161},{"url":"https://concise-encoding.org/","contentWeight":19113,"extraWeight":2141,"stamp":1643198870392},{"url":"http://gerikson.com/hnlo/","contentWeight":30668,"extraWeight":2388,"stamp":1643198871659},{"url":"http://gerikson.com/","contentWeight":2283,"extraWeight":0,"stamp":1643198872163},{"url":"https://www.dustri.org","contentWeight":1347,"extraWeight":25866,"stamp":1643198872687},{"url":"https://leonardschuetz.ch/","contentWeight":9676,"extraWeight":47804,"stamp":1643198873372},{"url":"https://lambdapapers.com","contentWeight":6936,"extraWeight":4198,"stamp":1643198873996},{"url":"https://phreedom.club/","contentWeight":10580,"extraWeight":0,"stamp":1643198874878},{"url":"https://kerkour.fr/","contentWeight":29597,"extraWeight":0,"stamp":1643198875703},{"url":"https://zupzup.org/","contentWeight":8269,"extraWeight":0,"stamp":1643198876189},{"url":"https://processwire.dev/","contentWeight":8291,"extraWeight":9878,"stamp":1643198876853},{"url":"https://processwire.com/","contentWeight":199340,"extraWeight":155167,"stamp":1643198878925},{"url":"https://www.gwern.net/index","contentWeight":80094,"extraWeight":276121,"stamp":1643198880535},{"url":"https://guts.plus/","contentWeight":3988,"extraWeight":16056,"stamp":1643198882225},{"url":"http://karolis.koncevicius.lt/","contentWeight":3009,"extraWeight":0,"stamp":1643198882577},{"url":"https://blog.circuitsofimagination.com/","contentWeight":5472,"extraWeight":150837,"stamp":1643198883344},{"url":"https://motherfuckingwebsite.com/","contentWeight":2353,"extraWeight":0,"stamp":1643198883939},{"url":"http://bettermotherfuckingwebsite.com/","contentWeight":2373,"extraWeight":180,"stamp":1643198884494},{"url":"https://bestmotherfucking.website/","contentWeight":3292,"extraWeight":0,"stamp":1643198885674},{"url":"https://thebestmotherfucking.website/","contentWeight":38049,"extraWeight":76669,"stamp":1643198886329},{"url":"https://jmtd.net/","contentWeight":35950,"extraWeight":146446,"stamp":1643198887112},{"url":"https://www.unindented.org/","contentWeight":5451,"extraWeight":44538,"stamp":1643198889279},{"url":"https://tom.kobalt.dev/map","contentWeight":2556,"extraWeight":0,"stamp":1643198889661},{"url":"https://fanael.github.io/","contentWeight":5302,"extraWeight":3357,"stamp":1643198890329},{"url":"https://matthall.codes/","contentWeight":5359,"extraWeight":160020,"stamp":1643198891285},{"url":"https://blakehawkins.com/blog","contentWeight":3579,"extraWeight":86683,"stamp":1643198893255},{"url":"https://customformats.com/","contentWeight":5839,"extraWeight":245832,"stamp":1643198895438},{"url":"https://www.powerpointkaraoke.com/","contentWeight":15562,"extraWeight":144708,"stamp":1643198896282},{"url":"https://sparkbox.github.io/bouncy-ball/","contentWeight":11689,"extraWeight":117916,"stamp":1643198897392},{"url":"https://sparkbox.github.io/logo-experiments/","contentWeight":153488,"extraWeight":1507,"stamp":1643198897943},{"url":"https://www.bryanbraun.com/connect-four/","contentWeight":2672,"extraWeight":43869,"stamp":1643198898837},{"url":"https://www.bryanbraun.com/checkboxland/","contentWeight":214466,"extraWeight":558257,"stamp":1643198901333},{"url":"https://www.bryanbraun.com/after-dark-css/","contentWeight":130160,"extraWeight":54982,"stamp":1643198902231},{"url":"https://www.bryanbraun.com/anchorjs/","contentWeight":103442,"extraWeight":89639,"stamp":1643198904040},{"url":"https://www.bryanbraun.com/","contentWeight":10869,"extraWeight":61058,"stamp":1643198904665},{"url":"https://blog.fossterer.com/","contentWeight":1371,"extraWeight":14720,"stamp":1643198905327},{"url":"https://lighthouse16.com/","contentWeight":20958,"extraWeight":4627,"stamp":1643198905898},{"url":"https://nest.jakl.one/","contentWeight":2004,"extraWeight":2692,"stamp":1643198908051},{"url":"https://getindiekit.com/","contentWeight":83147,"extraWeight":24821,"stamp":1643198908963},{"url":"https://www.slowernews.com/","contentWeight":24657,"extraWeight":4558,"stamp":1643198909833},{"url":"https://gallant.dev/","contentWeight":11892,"extraWeight":18483,"stamp":1643198911858},{"url":"https://yorickpeterse.com/","contentWeight":17119,"extraWeight":1446,"stamp":1643198912333},{"url":"https://funnylookinhat.com/","contentWeight":2675,"extraWeight":855,"stamp":1643198913033},{"url":"https://fabioartuso.com/","contentWeight":1655,"extraWeight":0,"stamp":1643198913479},{"url":"https://pbanks.net/","contentWeight":1371,"extraWeight":0,"stamp":1643198914194},{"url":"https://ache.one/","contentWeight":61748,"extraWeight":83293,"stamp":1643198914872},{"url":"https://www.minimumviable.it/","contentWeight":2757,"extraWeight":2075,"stamp":1643198916824},{"url":"https://emersion.fr/","contentWeight":1730,"extraWeight":11079,"stamp":1643198918945},{"url":"https://drewdevault.com/","contentWeight":28254,"extraWeight":1262,"stamp":1643198920032},{"url":"https://www.sonniesedge.net/","contentWeight":155655,"extraWeight":5111,"stamp":1643198920831},{"url":"https://christine.website/","contentWeight":42701,"extraWeight":21572,"stamp":1643198921316},{"url":"http://cat-v.org/","contentWeight":6643,"extraWeight":3472,"stamp":1643198922883},{"url":"http://9front.org/","contentWeight":561805,"extraWeight":13102,"stamp":1643198926127},{"url":"http://werc.cat-v.org/","contentWeight":6989,"extraWeight":740,"stamp":1643198927491},{"url":"https://suckless.org/","contentWeight":117634,"extraWeight":1033,"stamp":1643198927978},{"url":"https://mikegerwitz.com/","contentWeight":57383,"extraWeight":60314,"stamp":1643198929241},{"url":"https://xpil.eu/","contentWeight":8031,"extraWeight":6942,"stamp":1643198930121},{"url":"https://midnight.pub/","contentWeight":6764,"extraWeight":854,"stamp":1643198930572},{"url":"https://shazow.net/","contentWeight":13297,"extraWeight":158218,"stamp":1643198931515},{"url":"https://felt.dev/","contentWeight":45131,"extraWeight":48145,"stamp":1643198932536},{"url":"https://nixnet.email/","contentWeight":11122,"extraWeight":50526,"stamp":1643198933689},{"url":"https://salejandro.me/","contentWeight":729,"extraWeight":685,"stamp":1643198934353},{"url":"https://foxwells.garden/","contentWeight":10316,"extraWeight":27814,"stamp":1643198935420},{"url":"https://oh.mg/","contentWeight":4262,"extraWeight":5281,"stamp":1643198936668},{"url":"https://www.oskarlindgren.se/","contentWeight":52049,"extraWeight":78126,"stamp":1643198938702},{"url":"https://512kb.club/","contentWeight":9252,"extraWeight":2403,"stamp":1643198939991},{"url":"http://coolmathgames.tech/","contentWeight":36429,"extraWeight":18828,"stamp":1643198941043},{"url":"https://utsuho.rocks/","contentWeight":71040,"extraWeight":29255,"stamp":1643198942346},{"url":"https://arfer.net/","contentWeight":1086,"extraWeight":6409,"stamp":1643198943499},{"url":"https://chad.hirsch.host","contentWeight":15367,"extraWeight":6611,"stamp":1643198945056},{"url":"https://secluded.site/","contentWeight":4752,"extraWeight":55353,"stamp":1643198945758},{"url":"https://willcodefor.beer/","contentWeight":5895,"extraWeight":10955,"stamp":1643198946492},{"url":"https://armaanb.net/","contentWeight":23493,"extraWeight":0,"stamp":1643198947344},{"url":"https://benharr.is/","contentWeight":4192,"extraWeight":0,"stamp":1643198948148},{"url":"https://myipaddress.ru","contentWeight":1215,"extraWeight":0,"stamp":1643198948527},{"url":"https://pr0.uk/","contentWeight":17876,"extraWeight":82652,"stamp":1643198949009},{"url":"https://natestemen.xyz/","contentWeight":967,"extraWeight":982,"stamp":1643198949774},{"url":"https://bnolet.me","contentWeight":4764,"extraWeight":152736,"stamp":1643198950823},{"url":"https://remoteroast.club/","contentWeight":3256,"extraWeight":23778,"stamp":1643198951420},{"url":"https://10kbclub.com","contentWeight":7327,"extraWeight":0,"stamp":1643198952030},{"url":"https://aajkakavi.in/","contentWeight":1964,"extraWeight":473,"stamp":1643198953111},{"url":"https://box.matto.nl","contentWeight":4147,"extraWeight":2798,"stamp":1643198953867},{"url":"https://zakr.es/","contentWeight":3205,"extraWeight":55718,"stamp":1643198954318},{"url":"https://zakr.es/blog/","contentWeight":105968,"extraWeight":63105,"stamp":1643198955190},{"url":"https://codevoid.de/","contentWeight":8702,"extraWeight":733,"stamp":1643198955660},{"url":"https://gabnotes.org/","contentWeight":24570,"extraWeight":5757,"stamp":1643198956684},{"url":"https://bcachefs.org/","contentWeight":3380,"extraWeight":5001,"stamp":1643198957924},{"url":"https://wondroushealing.com","contentWeight":144842,"extraWeight":61172,"stamp":1643198958521},{"url":"https://editions-du-26-octobre.com/","contentWeight":15052,"extraWeight":140281,"stamp":1643198960533},{"url":"https://blog.bshah.in/","contentWeight":7761,"extraWeight":2656,"stamp":1643198961226},{"url":"https://tryhexadecimal.com/","contentWeight":6853,"extraWeight":6086,"stamp":1643198961950},{"url":"https://rya.nc/","contentWeight":31452,"extraWeight":63986,"stamp":1643198962717},{"url":"https://temp.sh/","contentWeight":1756,"extraWeight":0,"stamp":1643198963238},{"url":"https://decentnet.github.io/","contentWeight":8304,"extraWeight":2421,"stamp":1643198964596},{"url":"https://www.migadu.com/","contentWeight":205171,"extraWeight":10150,"stamp":1643198965171},{"url":"https://thelion.website/","contentWeight":3855,"extraWeight":3803,"stamp":1643198965767},{"url":"https://codingotaku.com/","contentWeight":7661,"extraWeight":2299,"stamp":1643198966542},{"url":"https://allien.work/","contentWeight":7522,"extraWeight":102524,"stamp":1643198967068},{"url":"https://MinWiz.com","contentWeight":1672,"extraWeight":0,"stamp":1643198967592},{"url":"https://cosmo.red","contentWeight":1023,"extraWeight":0,"stamp":1643198968177},{"url":"https://lectupedia.com/en/","contentWeight":8080,"extraWeight":2654,"stamp":1643198969236},{"url":"https://xiu.io/","contentWeight":10320,"extraWeight":221412,"stamp":1643198969940},{"url":"https://kevq.uk/","contentWeight":12123,"extraWeight":116712,"stamp":1643198970601},{"url":"https://motz-berlin.de/","contentWeight":61697,"extraWeight":5513,"stamp":1643198971072},{"url":"https://cycloneblaze.net/","contentWeight":3802,"extraWeight":79766,"stamp":1643198973520},{"url":"https://kayafirat.com/","contentWeight":20379,"extraWeight":50236,"stamp":1643198974299},{"url":"https://www.sensorstation.co/","contentWeight":42755,"extraWeight":37588,"stamp":1643198976045},{"url":"https://www.zinzy.website/","contentWeight":29236,"extraWeight":89765,"stamp":1643198976983},{"url":"https://davidkuehnert.de/","contentWeight":13240,"extraWeight":46425,"stamp":1643198978269},{"url":"https://www.neelc.org/about/","contentWeight":7724,"extraWeight":77474,"stamp":1643198979539},{"url":"https://www.groovestomp.com/","contentWeight":1121,"extraWeight":2009,"stamp":1643198980599},{"url":"https://binyam.in/","contentWeight":9527,"extraWeight":32726,"stamp":1643198982150},{"url":"https://fossdd.codeberg.page/","contentWeight":1340,"extraWeight":2053,"stamp":1643198983179},{"url":"https://my-flow.com/","contentWeight":38630,"extraWeight":69416,"stamp":1643198984983},{"url":"https://0xff.nu/","contentWeight":3848,"extraWeight":0,"stamp":1643198985329},{"url":"https://oscarforner.com/","contentWeight":7063,"extraWeight":2048,"stamp":1643198985692},{"url":"https://www.openbsd.org/","contentWeight":154366,"extraWeight":4712,"stamp":1643198987644},{"url":"https://majiehong.com/","contentWeight":1402,"extraWeight":3431,"stamp":1643198988869},{"url":"https://ybad.name/","contentWeight":1658,"extraWeight":0,"stamp":1643198989801},{"url":"https://parts.horse/parts","contentWeight":1050,"extraWeight":1028,"stamp":1643198990739},{"url":"https://inatri.com/","contentWeight":4281,"extraWeight":1025,"stamp":1643198992205},{"url":"https://thomas.me/","contentWeight":15741,"extraWeight":3659,"stamp":1643198993448},{"url":"https://martin.baillie.id/","contentWeight":3901,"extraWeight":49968,"stamp":1643198994416},{"url":"https://wilde-it.co.uk/","contentWeight":111985,"extraWeight":27019,"stamp":1643198995361},{"url":"https://m-chrzan.xyz/","contentWeight":1062,"extraWeight":1428,"stamp":1643198996003},{"url":"https://lo.hn/","contentWeight":605,"extraWeight":0,"stamp":1643198996300},{"url":"https://paulwilde.uk/","contentWeight":16809,"extraWeight":5419,"stamp":1643198997063},{"url":"https://www.beh.uk/","contentWeight":19645,"extraWeight":105304,"stamp":1643198998368},{"url":"https://úl.de/","contentWeight":17632,"extraWeight":3877,"stamp":1643198999134},{"url":"https://ulpaulpa.de/","contentWeight":17632,"extraWeight":3877,"stamp":1643198999725},{"url":"https://lil.gay/","contentWeight":320,"extraWeight":0,"stamp":1643199000400},{"url":"https://beh.uk/","contentWeight":19376,"extraWeight":105492,"stamp":1643199001337},{"url":"https://ohio.araw.xyz/","contentWeight":1467,"extraWeight":2299,"stamp":1643199002757},{"url":"https://nytpu.com/","contentWeight":2036,"extraWeight":1566,"stamp":1643199003895},{"url":"https://danielcuttridge.com/","contentWeight":1617,"extraWeight":0,"stamp":1643199004752},{"url":"https://sugarfi.dev/","contentWeight":415762,"extraWeight":133528,"stamp":1643199007209},{"url":"http://www.verybad.link/","contentWeight":2962,"extraWeight":3403,"stamp":1643199007697},{"url":"https://zn80.net/","contentWeight":427,"extraWeight":0,"stamp":1643199008123},{"url":"https://ttntm.me/","contentWeight":30513,"extraWeight":27849,"stamp":1643199008677},{"url":"https://kishvanchee.com/","contentWeight":1360,"extraWeight":2582,"stamp":1643199010190},{"url":"https://quitsocialmedia.club/","contentWeight":3394,"extraWeight":105477,"stamp":1643199010669},{"url":"https://luana.cc/","contentWeight":2873,"extraWeight":1638,"stamp":1643199011567},{"url":"https://crackle.dev/","contentWeight":739,"extraWeight":708,"stamp":1643199012276},{"url":"https://www.paritybit.ca/","contentWeight":6680,"extraWeight":2642,"stamp":1643199013742},{"url":"https://cnx.srht.site/","contentWeight":3293,"extraWeight":4664,"stamp":1643199014525},{"url":"https://huyngo.envs.net","contentWeight":8020,"extraWeight":3428,"stamp":1643199015174},{"url":"https://fmarier.org/","contentWeight":110339,"extraWeight":806,"stamp":1643199016155},{"url":"https://swl.am/","contentWeight":3888,"extraWeight":114011,"stamp":1643199017515},{"url":"https://սոնա.հայ/","contentWeight":651,"extraWeight":0,"stamp":1643199018154},{"url":"https://norayr.am/","contentWeight":924,"extraWeight":0,"stamp":1643199018731},{"url":"https://antranigv.am/","contentWeight":16216,"extraWeight":0,"stamp":1643199019465},{"url":"https://timog.org/","contentWeight":5970,"extraWeight":1624,"stamp":1643199020807},{"url":"https://slackjeff.com.br/","contentWeight":2940,"extraWeight":570,"stamp":1643199021757},{"url":"https://hmbrg.xyz/","contentWeight":1489,"extraWeight":0,"stamp":1643199022098},{"url":"https://noulin.net/blog/","contentWeight":12965,"extraWeight":8776,"stamp":1643199022942},{"url":"https://bduck.xyz/","contentWeight":69558,"extraWeight":68989,"stamp":1643199024558},{"url":"https://dyremyhr.no/","contentWeight":104300,"extraWeight":4808,"stamp":1643199025155},{"url":"https://artemislena.eu/","contentWeight":3342,"extraWeight":950,"stamp":1643199026162},{"url":"https://gtrr.artemislena.eu/","contentWeight":1745,"extraWeight":460,"stamp":1643199026654},{"url":"https://editions-du-26-octobre.com/","contentWeight":15052,"extraWeight":140281,"stamp":1643199028407},{"url":"https://karpathy.ai/","contentWeight":3759539,"extraWeight":1385,"stamp":1643199030323},{"url":"https://nihar.page/","contentWeight":3004,"extraWeight":835,"stamp":1643199031300},{"url":"https://linuxguideandhints.com/","contentWeight":23520,"extraWeight":28295,"stamp":1643199032096},{"url":"https://0xedward.io/","contentWeight":3237,"extraWeight":0,"stamp":1643199033003},{"url":"https://lukesempire.com/","contentWeight":19595,"extraWeight":30477,"stamp":1643199033667},{"url":"https://xigoi.neocities.org/","contentWeight":3422,"extraWeight":2462,"stamp":1643199034796},{"url":"https://t0.vc/","contentWeight":621,"extraWeight":0,"stamp":1643199035860},{"url":"https://codingbobby.xyz/","contentWeight":14879,"extraWeight":137704,"stamp":1643199037084},{"url":"https://mineralexistence.com/home.html","contentWeight":9991,"extraWeight":7812,"stamp":1643199038420},{"url":"https://consoom.soy/","contentWeight":3874,"extraWeight":1383,"stamp":1643199039015},{"url":"https://phate6660.github.io/","contentWeight":2645,"extraWeight":0,"stamp":1643199039446},{"url":"https://miku86.com/","contentWeight":16794,"extraWeight":4003,"stamp":1643199040585},{"url":"https://na20a.neocities.org/","contentWeight":4370,"extraWeight":1144,"stamp":1643199041781},{"url":"https://quinncasey.com/","contentWeight":93025,"extraWeight":335070,"stamp":1643199043635},{"url":"https://sizi.ng/","contentWeight":2110,"extraWeight":0,"stamp":1643199044323},{"url":"https://webzine.puffy.cafe/","contentWeight":2558,"extraWeight":0,"stamp":1643199044935},{"url":"http://plasmasturm.org/","contentWeight":6743,"extraWeight":3686,"stamp":1643199045490},{"url":"https://featyre.xyz/","contentWeight":11183,"extraWeight":1403,"stamp":1643199046596},{"url":"https://free.mg/","contentWeight":2597,"extraWeight":7159,"stamp":1643199047838},{"url":"https://xslendi.xyz/","contentWeight":2260,"extraWeight":661,"stamp":1643199048346},{"url":"https://notionbackups.com/","contentWeight":8570,"extraWeight":7023,"stamp":1643199049363},{"url":"https://ut99.weba.ru/","contentWeight":173248,"extraWeight":2996,"stamp":1643199050218},{"url":"https://ut2.weba.ru/","contentWeight":129687,"extraWeight":2232,"stamp":1643199051226},{"url":"https://buchh.org/","contentWeight":40067,"extraWeight":0,"stamp":1643199051812},{"url":"https://timotijhof.net/","contentWeight":13477,"extraWeight":4624,"stamp":1643199052522},{"url":"https://jeffhuang.com/","contentWeight":124566,"extraWeight":8565,"stamp":1643199053654},{"url":"https://kidl.at/","contentWeight":3469,"extraWeight":0,"stamp":1643199054315},{"url":"https://dusanmitrovic.xyz/","contentWeight":4489,"extraWeight":6499,"stamp":1643199054759},{"url":"https://xnaas.info","contentWeight":1357,"extraWeight":1525,"stamp":1643199056015},{"url":"https://blmayer.dev/","contentWeight":5037,"extraWeight":0,"stamp":1643199056498},{"url":"https://qubyte.codes/","contentWeight":31537,"extraWeight":3173,"stamp":1643199057088},{"url":"https://daniel-siepmann.de/","contentWeight":12076,"extraWeight":4211,"stamp":1643199057719},{"url":"https://sexiarz.pl/","contentWeight":25644,"extraWeight":78635,"stamp":1643199058579},{"url":"https://kj7nzl.net/","contentWeight":5938,"extraWeight":0,"stamp":1643199059691},{"url":"https://thejollyteapot.com/","contentWeight":2049,"extraWeight":791,"stamp":1643199060915},{"url":"http://gauravdafauti.in/","contentWeight":2347,"extraWeight":0,"stamp":1643199061692},{"url":"https://boehs.org/","contentWeight":1597,"extraWeight":1972,"stamp":1643199062364},{"url":"https://rc-lite.xyz/","contentWeight":2718,"extraWeight":3885,"stamp":1643199063496},{"url":"https://manuelmoreale.com/","contentWeight":6766,"extraWeight":1904,"stamp":1643199064777},{"url":"https://bvnf.space/","contentWeight":2423,"extraWeight":703,"stamp":1643199065192},{"url":"https://pools.xmr.wiki/","contentWeight":2856,"extraWeight":3272,"stamp":1643199065746},{"url":"https://gennext.net.au/","contentWeight":32374,"extraWeight":53208,"stamp":1643199069187},{"url":"https://page.mi.fu-berlin.de/jhermann/","contentWeight":17173,"extraWeight":0,"stamp":1643199069907},{"url":"https://xmdr.nl/","contentWeight":2399,"extraWeight":13436,"stamp":1643199070373},{"url":"https://notes.eatonphil.com/","contentWeight":7608,"extraWeight":55519,"stamp":1643199071147},{"url":"https://si3t.ch/","contentWeight":1658,"extraWeight":0,"stamp":1643199071735},{"url":"https://ccsleep.net/","contentWeight":1470,"extraWeight":1086,"stamp":1643199072974},{"url":"https://flatpackapps.com/","contentWeight":15684,"extraWeight":3578,"stamp":1643199074587},{"url":"https://s1.flatpackapps.com/app.php?appId=22","contentWeight":33087,"extraWeight":96553,"stamp":1643199077380},{"url":"https://jason.nabein.me/","contentWeight":20552,"extraWeight":5388,"stamp":1643199078060},{"url":"https://volleyball-baustetten.de/","contentWeight":54436,"extraWeight":44771,"stamp":1643199078482},{"url":"https://satchlj.us/","contentWeight":5009,"extraWeight":0,"stamp":1643199079205}] \ No newline at end of file diff --git a/src/routes/index.svelte b/src/routes/index.svelte deleted file mode 100644 index f5cc7b62..00000000 --- a/src/routes/index.svelte +++ /dev/null @@ -1,39 +0,0 @@ - - - - -
- - - -
- - diff --git a/static/export.png b/static/export.png new file mode 100644 index 00000000..d24da256 Binary files /dev/null and b/static/export.png differ diff --git a/svelte.config.js b/svelte.config.js deleted file mode 100644 index 0ca46e51..00000000 --- a/svelte.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - // By default, `npm run build` will create a standard Node app. - // You can create optimized builds for different platforms by - // specifying a different adapter - adapter: '@sveltejs/adapter-static' -}; diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 00000000..3f5548d4 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,159 @@ + + + + + + {% block title %}{{ config.title }}{% endblock title %} + + + + + + {% if config.generate_feed %} + + {% endif %} + + + + {% block content %} + {{ page.content | safe }} + {% endblock %} + + + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 00000000..5d1bd41b --- /dev/null +++ b/templates/index.html @@ -0,0 +1,128 @@ +{% extends "base.html" %} + +{% block content %} +
+

The 250kb Club

+

+ + The Web Is Doom + +

+

Lets do something about it!

+

+ The 250kb Club is a collection of web pages that focus on + performance, efficiency and accessibility. +

+

Websites in this list must not exceed 256kb compressed size!

+

+ Yes, compressed size. It makes much more sense because it allows + for a lot of text to be transferred without having a big impact on the + total size, while the impact of media is basically unaffected. +

+

+ If your pages exceeds 250kb, you might consider + 512kB.club or + 1MB.club. +

+

+ You can suggest a web page for this collection + via Sourcehut + or + via Github. + The site will be reviewed and, if applicable, added to the list below. + Pages are checked again every week. +

+
+ +
+ + +
    + {% for page in paginator.pages %} +
  1. +
    + + {{ page.title }} + + {{ page.extra.size }}kb + {{ page.extra.ratio }}% + + + open {{ page.title }} in a new tab or window + + +
    +
    +
    +
  2. + {% endfor %} +
+ + + +
+ + +{% endblock content %} diff --git a/templates/page.html b/templates/page.html new file mode 100644 index 00000000..7b03a082 --- /dev/null +++ b/templates/page.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} + +{% block content %} +
+

+ {{ page.title }} +

+

+ Proud member of the exclusive 250kb club! +

+

+ + | + +

+

+ {{ page.title }} + is a member of the exclusive 250kb club. The page weighs only + {{ page.extra.size }}kb and has a content-to-bloat ratio of + {{ page.extra.ratio }}%. +

+

back

+
+{% endblock content %} diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index b19e4780..00000000 --- a/yarn.lock +++ /dev/null @@ -1,2031 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" - integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== - dependencies: - "@babel/highlight" "^7.10.4" - -"@babel/helper-validator-identifier@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" - integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== - -"@babel/highlight@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" - integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@npmcli/move-file@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.0.1.tgz#de103070dac0f48ce49cf6693c23af59c0f70464" - integrity sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw== - dependencies: - mkdirp "^1.0.4" - -"@rollup/plugin-alias@^3.0.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-3.1.1.tgz#bb96cf37fefeb0a953a6566c284855c7d1cd290c" - integrity sha512-hNcQY4bpBUIvxekd26DBPgF7BT4mKVNDF5tBG4Zi+3IgwLxGYRY0itHs9D0oLVwXM5pvJDWJlBQro+au8WaUWw== - dependencies: - slash "^3.0.0" - -"@rollup/plugin-commonjs@^16.0.0": - version "16.0.0" - resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-16.0.0.tgz#169004d56cd0f0a1d0f35915d31a036b0efe281f" - integrity sha512-LuNyypCP3msCGVQJ7ki8PqYdpjfEkE/xtFa5DqlF+7IBD0JsfMZ87C58heSwIMint58sAUZbt3ITqOmdQv/dXw== - dependencies: - "@rollup/pluginutils" "^3.1.0" - commondir "^1.0.1" - estree-walker "^2.0.1" - glob "^7.1.6" - is-reference "^1.2.1" - magic-string "^0.25.7" - resolve "^1.17.0" - -"@rollup/plugin-inject@^4.0.2": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@rollup/plugin-inject/-/plugin-inject-4.0.2.tgz#55b21bb244a07675f7fdde577db929c82fc17395" - integrity sha512-TSLMA8waJ7Dmgmoc8JfPnwUwVZgLjjIAM6MqeIFqPO2ODK36JqE0Cf2F54UTgCUuW8da93Mvoj75a6KAVWgylw== - dependencies: - "@rollup/pluginutils" "^3.0.4" - estree-walker "^1.0.1" - magic-string "^0.25.5" - -"@rollup/plugin-json@^4.0.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@rollup/plugin-json/-/plugin-json-4.1.0.tgz#54e09867ae6963c593844d8bd7a9c718294496f3" - integrity sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== - dependencies: - "@rollup/pluginutils" "^3.0.8" - -"@rollup/plugin-node-resolve@^10.0.0": - version "10.0.0" - resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-10.0.0.tgz#44064a2b98df7530e66acf8941ff262fc9b4ead8" - integrity sha512-sNijGta8fqzwA1VwUEtTvWCx2E7qC70NMsDh4ZG13byAXYigBNZMxALhKUSycBks5gupJdq0lFrKumFrRZ8H3A== - dependencies: - "@rollup/pluginutils" "^3.1.0" - "@types/resolve" "1.17.1" - builtin-modules "^3.1.0" - deepmerge "^4.2.2" - is-module "^1.0.0" - resolve "^1.17.0" - -"@rollup/plugin-replace@^2.3.3": - version "2.3.4" - resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.3.4.tgz#7dd84c17755d62b509577f2db37eb524d7ca88ca" - integrity sha512-waBhMzyAtjCL1GwZes2jaE9MjuQ/DQF2BatH3fRivUF3z0JBFrU0U6iBNC/4WR+2rLKhaAhPWDNPYp4mI6RqdQ== - dependencies: - "@rollup/pluginutils" "^3.1.0" - magic-string "^0.25.7" - -"@rollup/pluginutils@^3.0.4", "@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" - integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - dependencies: - "@types/estree" "0.0.39" - estree-walker "^1.0.1" - picomatch "^2.2.2" - -"@snowpack/plugin-build-script@^2.0.11": - version "2.0.11" - resolved "https://registry.yarnpkg.com/@snowpack/plugin-build-script/-/plugin-build-script-2.0.11.tgz#50eb2b6127c8863cbbc6a3105042713e16818869" - integrity sha512-bLi7W0ry5OAhCEGuBL3PdLchWU+WaXa2aJYSJapt4FsfhUiNwi+ua1qiZ0syaXXfRq/2jx9eEkx4G7TGB8Kvsg== - dependencies: - execa "^4.0.3" - npm-run-path "^4.0.1" - -"@snowpack/plugin-run-script@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@snowpack/plugin-run-script/-/plugin-run-script-2.2.0.tgz#26b434af5f23dbe3bc189dcacdca5834113b79bc" - integrity sha512-wv+ttz7wXD/R+IoIuZqdwy4foP3yq986dPVMGTl2N6ipWo5PAHAQ3n6A83efT/K4zQ1h+RibF3k4yr92qu3jNg== - dependencies: - execa "^4.0.3" - npm-run-path "^4.0.1" - -"@snowpack/plugin-svelte@^3.0.0": - version "3.3.0" - resolved "https://registry.yarnpkg.com/@snowpack/plugin-svelte/-/plugin-svelte-3.3.0.tgz#a176ff1af671a6941958015d5750bc1acb535cd7" - integrity sha512-drARTzJPtvmqZD+2B3KgcN2bsAk3xAWu97XJrfuNQpRLJInbrERLUNyEQbOssMQj8b0PA3/hMAaX0bkwZ9kglw== - dependencies: - rollup-plugin-svelte "^6.0.0" - svelte-hmr "^0.11.2" - svelte-preprocess "^4.5.2" - -"@sveltejs/adapter-node@0.0.14": - version "0.0.14" - resolved "https://registry.yarnpkg.com/@sveltejs/adapter-node/-/adapter-node-0.0.14.tgz#31dcbb0400f546da79da34e8c3c9ec0ed6d2c2a5" - integrity sha512-mVCzjk5mTYT28Moa8sAyOJT7Ol0rx9Le8gI6NAOZJ7ECmhWftzz3JqTbYikKx3hNVwxaSMKHal5wCDveP0ZQag== - dependencies: - "@sveltejs/app-utils" "0.0.17" - -"@sveltejs/adapter-static@^0.0.14": - version "0.0.14" - resolved "https://registry.yarnpkg.com/@sveltejs/adapter-static/-/adapter-static-0.0.14.tgz#118a2b6affcec8a98776b368b7687cf69d61b27e" - integrity sha512-hBxaGU3tg16X+cHLv5ZkoM/nonckH1FcBkzBnB2UI6dPsUNIshWKvlCGZtH1SESStxZl7FZL3eUbsjVdu+Zy9w== - dependencies: - "@sveltejs/app-utils" "0.0.17" - -"@sveltejs/app-utils@0.0.17": - version "0.0.17" - resolved "https://registry.yarnpkg.com/@sveltejs/app-utils/-/app-utils-0.0.17.tgz#007c53f498ddeaecc08e01dac2a1befb501c79da" - integrity sha512-QK6kjzR/w/hS1G9WY1olBPM7gGvi7yf0NE/PT7XpkA9tC8UlIhdIOQHoBbPmlIhlKUd5W8628EGHi815QpgxyQ== - dependencies: - mime "^2.4.6" - -"@sveltejs/kit@0.0.25": - version "0.0.25" - resolved "https://registry.yarnpkg.com/@sveltejs/kit/-/kit-0.0.25.tgz#933c9ed3220ff47d8448995051b014e2001d8f3d" - integrity sha512-PEZ9Put9ruDX+mEoqr3Jg+jhcxupv6cV3c/j/aiqEgjMGJKy9d5eOFXATF2emQv3rw6eCtHiuNZIYTxt+JqMTQ== - dependencies: - "@sveltejs/app-utils" "0.0.17" - cheap-watch "^1.0.2" - http-proxy "^1.18.1" - rollup "^2.32.0" - rollup-dependency-tree "0.0.14" - rollup-plugin-css-chunks "^1.2.8" - rollup-plugin-terser "^7.0.2" - sade "^1.7.4" - scorta "^1.0.0" - snowpack "^2.15.1" - -"@sveltejs/snowpack-config@0.0.5": - version "0.0.5" - resolved "https://registry.yarnpkg.com/@sveltejs/snowpack-config/-/snowpack-config-0.0.5.tgz#c200f91f09ae0213211e50df42323f2b9be90370" - integrity sha512-lZQCbeKIwaGMVvWzw4HPo76NIE+MkLH73OapwZlALDurPWR1/fDOSMCFgpNecvr5Gh/y6nzFN6bsdgbpJpw3ng== - dependencies: - "@snowpack/plugin-svelte" "^3.0.0" - -"@tootallnate/once@1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" - integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== - -"@types/estree@*": - version "0.0.45" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" - integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== - -"@types/estree@0.0.39": - version "0.0.39" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" - integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== - -"@types/node@*": - version "14.14.10" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.10.tgz#5958a82e41863cfc71f2307b3748e3491ba03785" - integrity sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ== - -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/pug@^2.0.4": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/pug/-/pug-2.0.4.tgz#8772fcd0418e3cd2cc171555d73007415051f4b2" - integrity sha1-h3L80EGOPNLMFxVV1zAHQVBR9LI= - -"@types/resolve@1.17.1": - version "1.17.1" - resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" - integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== - dependencies: - "@types/node" "*" - -"@types/sass@^1.16.0": - version "1.16.0" - resolved "https://registry.yarnpkg.com/@types/sass/-/sass-1.16.0.tgz#b41ac1c17fa68ffb57d43e2360486ef526b3d57d" - integrity sha512-2XZovu4NwcqmtZtsBR5XYLw18T8cBCnU2USFHTnYLLHz9fkhnoEMoDsqShJIOFsFhn5aJHjweiUUdTrDGujegA== - dependencies: - "@types/node" "*" - -"@types/yauzl@^2.9.1": - version "2.9.1" - resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.9.1.tgz#d10f69f9f522eef3cf98e30afb684a1e1ec923af" - integrity sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA== - dependencies: - "@types/node" "*" - -address@^1.0.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" - integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== - -agent-base@5: - version "5.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" - integrity sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g== - -agent-base@6: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -analyze-css@^0.12.10: - version "0.12.12" - resolved "https://registry.yarnpkg.com/analyze-css/-/analyze-css-0.12.12.tgz#e37c154a15bdb92f453eb452ff99274da017d8b0" - integrity sha512-vDJFloZdCvN6veVcWzAWAVxygfPn0m+aoicOtDqtR+YTaKz9eulk/sqX2/vXS9b3o3/vUTEUPgTKvULriVuv6Q== - dependencies: - cli "^1.0.1" - commander "^6.0.0" - css "^3.0.0" - css-shorthand-properties "^1.1.1" - debug "^4.1.1" - fast-stats "0.0.5" - glob "^7.1.6" - http-proxy-agent "^4.0.1" - node-fetch "^2.6.0" - onecolor "^3.1.0" - slick "~1.12.1" - specificity "^0.4.1" - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= - -ansi-regex@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" - integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== - -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansicolors@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" - integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk= - -ansistyles@~0.1.0: - version "0.1.3" - resolved "https://registry.yarnpkg.com/ansistyles/-/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539" - integrity sha1-XeYEFb2gcbs3EnhUyGT0GyMlRTk= - -anymatch@~3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" - integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -ascii-table@0.0.9: - version "0.0.9" - resolved "https://registry.yarnpkg.com/ascii-table/-/ascii-table-0.0.9.tgz#06a6604d6a55d4bf41a9a47d9872d7a78da31e73" - integrity sha1-BqZgTWpV1L9BqaR9mHLXp42jHnM= - -async@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" - integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== - -atob@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== - -balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -binary-extensions@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" - integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== - -bl@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.0.3.tgz#12d6287adc29080e22a705e5764b2a9522cdc489" - integrity sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -buffer-crc32@~0.2.3: - version "0.2.13" - resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" - integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= - -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - -buffer@^5.2.1, buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -builtin-modules@^3.0.0, builtin-modules@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484" - integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== - -builtins@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" - integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og= - -cacache@^15.0.0: - version "15.0.5" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0" - integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A== - dependencies: - "@npmcli/move-file" "^1.0.1" - chownr "^2.0.0" - fs-minipass "^2.0.0" - glob "^7.1.4" - infer-owner "^1.0.4" - lru-cache "^6.0.0" - minipass "^3.1.1" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.2" - mkdirp "^1.0.3" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^8.0.0" - tar "^6.0.2" - unique-filename "^1.1.1" - -cachedir@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" - integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chalk@^2.0.0, chalk@^2.4.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -cheap-watch@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/cheap-watch/-/cheap-watch-1.0.3.tgz#3c4265718bcf8f1ae08f5e450f9f4693432e028e" - integrity sha512-xC5CruMhLzjPwJ5ecUxGu1uGmwJQykUhqd2QrCrYbwvsFYdRyviu6jG9+pccwDXJR/OpmOTOJ9yLFunVgQu9wg== - -chokidar@^3.4.0: - version "3.4.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" - integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== - dependencies: - anymatch "~3.1.1" - braces "~3.0.2" - glob-parent "~5.1.0" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.5.0" - optionalDependencies: - fsevents "~2.1.2" - -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - -cjs-module-lexer@^0.5.0: - version "0.5.2" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.5.2.tgz#6e979f3065fe30cd531ebfbbd93033e6a14bc4ca" - integrity sha512-GlXp/i+x/WJP5X/qBAfo8ygo97ePkYSTL9um1TZ7nMG9JlFXZADyMhHQ7DFc0xk4G8oCagEKxQaHHD1wd+ZEyA== - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -cli@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cli/-/cli-1.0.1.tgz#22817534f24bfa4950c34d532d48ecbc621b8c14" - integrity sha1-IoF1NPJL+klQw01TLUjsvGIbjBQ= - dependencies: - exit "0.1.2" - glob "^7.1.1" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -commander@^2.20.0: - version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commander@^6.0.0, commander@^6.1.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.0.tgz#b990bfb8ac030aedc6d11bc04d1488ffef56db75" - integrity sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= - -compressible@^2.0.18: - version "2.0.18" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" - integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== - dependencies: - mime-db ">= 1.43.0 < 2" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -cosmiconfig@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" - integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== - dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.2.1" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.10.0" - -cross-spawn@^7.0.0: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -css-modules-loader-core@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz#5908668294a1becd261ae0a4ce21b0b551f21d16" - integrity sha1-WQhmgpShvs0mGuCkziGwtVHyHRY= - dependencies: - icss-replace-symbols "1.1.0" - postcss "6.0.1" - postcss-modules-extract-imports "1.1.0" - postcss-modules-local-by-default "1.2.0" - postcss-modules-scope "1.1.0" - postcss-modules-values "1.3.0" - -css-selector-tokenizer@^0.7.0: - version "0.7.3" - resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz#735f26186e67c749aaf275783405cf0661fae8f1" - integrity sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg== - dependencies: - cssesc "^3.0.0" - fastparse "^1.1.2" - -css-shorthand-properties@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/css-shorthand-properties/-/css-shorthand-properties-1.1.1.tgz#1c808e63553c283f289f2dd56fcee8f3337bd935" - integrity sha512-Md+Juc7M3uOdbAFwOYlTrccIZ7oCFuzrhKYQjdeUEW/sE1hv17Jp/Bws+ReOPpGVBTYCBoYo+G17V5Qo8QQ75A== - -css@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/css/-/css-3.0.0.tgz#4447a4d58fdd03367c516ca9f64ae365cee4aa5d" - integrity sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ== - dependencies: - inherits "^2.0.4" - source-map "^0.6.1" - source-map-resolve "^0.6.0" - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -csv-string@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/csv-string/-/csv-string-4.0.1.tgz#1fb4a88c869badad056d55247f57336e1e748b00" - integrity sha512-nCdK+EWDbqLvZ2MmVQhHTmidMEsHbK3ncgTJb4oguNRpkmH5OOr+KkDRB4nqsVrJ7oK0AdO1QEsBp0+z7KBtGQ== - -debug@4, debug@^4.1.0, debug@^4.1.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" - integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== - dependencies: - ms "2.1.2" - -debug@^2.6.0: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= - -deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== - -detect-indent@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.0.0.tgz#0abd0f549f69fc6659a254fe96786186b6f528fd" - integrity sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== - -detect-port@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.3.0.tgz#d9c40e9accadd4df5cac6a782aefd014d573d1f1" - integrity sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ== - dependencies: - address "^1.0.1" - debug "^2.6.0" - -devtools-protocol@0.0.818844: - version "0.0.818844" - resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.818844.tgz#d1947278ec85b53e4c8ca598f607a28fa785ba9e" - integrity sha512-AD1hi7iVJ8OD0aMLQU5VK0XH9LDlA1+BcPIgrAxPfaibx2DbWucuyOhc4oyQCbnvDDO68nN6/LcKfqTP343Jjg== - -end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-module-lexer@^0.3.24: - version "0.3.26" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.3.26.tgz#7b507044e97d5b03b01d4392c74ffeb9c177a83b" - integrity sha512-Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA== - -esbuild@^0.8.0: - version "0.8.15" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.8.15.tgz#cbc4d82a7fc4571d455233456e6fba83fd0364f1" - integrity sha512-mSaLo9t/oYtQE6FRUEdO47Pr8PisSPzHtgr+LcihIcjBEhbYwjT6WLCQ7noDoTBfIatBCw229rtmIwl9u9UQwg== - -escalade@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= - -esinstall@^0.3.7: - version "0.3.7" - resolved "https://registry.yarnpkg.com/esinstall/-/esinstall-0.3.7.tgz#f50b897c0cfb481cc1a6923a19cbfb9129642b0d" - integrity sha512-IslJdHov4TQPSNwHK4WCIkQwxaYrDDW2u6iZxiGbNVzFPyeEEVs2BXDmd1ZXVE4+bP/eCvvbvYH9f59gafgn5A== - dependencies: - "@rollup/plugin-alias" "^3.0.1" - "@rollup/plugin-commonjs" "^16.0.0" - "@rollup/plugin-inject" "^4.0.2" - "@rollup/plugin-json" "^4.0.0" - "@rollup/plugin-node-resolve" "^10.0.0" - "@rollup/plugin-replace" "^2.3.3" - cjs-module-lexer "^0.5.0" - es-module-lexer "^0.3.24" - is-builtin-module "^3.0.0" - kleur "^4.1.1" - mkdirp "^1.0.3" - rimraf "^3.0.0" - rollup "^2.23.0" - rollup-plugin-node-polyfills "^0.2.1" - validate-npm-package-name "^3.0.0" - -esprima@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -estree-walker@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" - integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== - -estree-walker@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" - integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== - -estree-walker@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.1.tgz#f8e030fb21cefa183b44b7ad516b747434e7a3e0" - integrity sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg== - -etag@^1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= - -eventemitter3@^4.0.0, eventemitter3@^4.0.4: - version "4.0.7" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - -execa@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" - integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== - dependencies: - cross-spawn "^7.0.0" - get-stream "^5.0.0" - human-signals "^1.1.1" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.0" - onetime "^5.1.0" - signal-exit "^3.0.2" - strip-final-newline "^2.0.0" - -exit@0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= - -extract-zip@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" - integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== - dependencies: - debug "^4.1.1" - get-stream "^5.1.0" - yauzl "^2.10.0" - optionalDependencies: - "@types/yauzl" "^2.9.1" - -fast-stats@0.0.5: - version "0.0.5" - resolved "https://registry.yarnpkg.com/fast-stats/-/fast-stats-0.0.5.tgz#7e656e4f366f4d85df3e99be3978bfbff3519192" - integrity sha512-HtS5uSqMiwfxFFyukKP/F0f3o8/8oqHtbInsaq2s0+V2J2MEHGyukWajWqzKS57sWLTOgJ7bKMRhA4fG5cTQ3Q== - -fastparse@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" - integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== - -fd-slicer@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" - integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= - dependencies: - pend "~1.2.0" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -find-cache-dir@^3.3.1: - version "3.3.1" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" - integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== - dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" - -find-up@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -follow-redirects@^1.0.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db" - integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA== - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-minipass@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -fsevents@~2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" - integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -get-stream@^5.0.0, get-stream@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - -glob-parent@~5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== - dependencies: - is-glob "^4.0.1" - -glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: - version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= - dependencies: - ansi-regex "^2.0.0" - -has-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" - integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo= - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -http-proxy-agent@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" - integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== - dependencies: - "@tootallnate/once" "1" - agent-base "6" - debug "4" - -http-proxy@^1.18.1: - version "1.18.1" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== - dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" - -httpie@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/httpie/-/httpie-1.1.2.tgz#e76a6792c2172446ea6df8805977a6f57bc9615d" - integrity sha512-VQ82oXG95oY1fQw/XecHuvcFBA+lZQ9Vwj1RfLcO8a7HpDd4cc2ukwpJt+TUlFaLUAzZErylxWu6wclJ1rUhUQ== - -https-proxy-agent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz#702b71fb5520a132a66de1f67541d9e62154d82b" - integrity sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg== - dependencies: - agent-base "5" - debug "4" - -human-signals@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" - integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== - -icss-replace-symbols@1.1.0, icss-replace-symbols@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" - integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -import-fresh@^3.2.1: - version "3.2.2" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e" - integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -infer-owner@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.3, inherits@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-builtin-module@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.0.0.tgz#137d3d2425023a19a660fb9dd6ddfabe52c03466" - integrity sha512-/93sDihsAD652hrMEbJGbMAVBf1qc96kyThHQ0CAOONHaE3aROLpTjDe4WQ5aoC5ITHFxEq1z8XqSU7km+8amw== - dependencies: - builtin-modules "^3.0.0" - -is-core-module@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz#a4cc031d9b1aca63eecbd18a650e13cb4eeab946" - integrity sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA== - dependencies: - has "^1.0.3" - -is-docker@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" - integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw== - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= - -is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== - dependencies: - is-extglob "^2.1.1" - -is-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" - integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-plain-object@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" - integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== - -is-reference@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" - integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== - dependencies: - "@types/estree" "*" - -is-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" - integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== - -is-wsl@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isbinaryfile@^4.0.6: - version "4.0.6" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.6.tgz#edcb62b224e2b4710830b67498c8e4e5a4d2610b" - integrity sha512-ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= - -jest-worker@^26.2.1: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" - integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^7.0.0" - -js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.14.0: - version "3.14.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" - integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -jsonschema@~1.2.5: - version "1.2.11" - resolved "https://registry.yarnpkg.com/jsonschema/-/jsonschema-1.2.11.tgz#7a799cc2aa5a285d893203e8dc81f5becbfb0e91" - integrity sha512-XNZHs3N1IOa3lPKm//npxMhOdaoPw+MvEV0NIgxcER83GTJcG13rehtWmpBCfEt8DrtYwIkMTs8bdXoYs4fvnQ== - -kleur@^4.1.1: - version "4.1.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.3.tgz#8d262a56d79a137ee1b706e967c0b08a7fef4f4c" - integrity sha512-H1tr8QP2PxFTNwAFM74Mui2b6ovcY9FoxJefgrwxY+OCJcq01k5nvhf4M/KnizzrJvLRap5STUy7dgDV35iUBw== - -lines-and-columns@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" - integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -magic-string@^0.25.3, magic-string@^0.25.5, magic-string@^0.25.7: - version "0.25.7" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" - integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== - dependencies: - sourcemap-codec "^1.4.4" - -make-dir@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -mime-db@1.44.0: - version "1.44.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" - integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== - -"mime-db@>= 1.43.0 < 2": - version "1.45.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" - integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== - -mime-types@^2.1.26: - version "2.1.27" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" - integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== - dependencies: - mime-db "1.44.0" - -mime@^2.4.6: - version "2.4.6" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.6.tgz#e5b407c90db442f2beb5b162373d07b69affa4d1" - integrity sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== - dependencies: - minipass "^3.0.0" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-pipeline@^1.2.2: - version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass@^3.0.0, minipass@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" - integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg== - dependencies: - yallist "^4.0.0" - -minizlib@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp-classic@^0.5.2: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp@^1.0.3, mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -mri@^1.1.0: - version "1.1.6" - resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.6.tgz#49952e1044db21dbf90f6cd92bc9c9a777d415a6" - integrity sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -node-fetch@^2.6.0, node-fetch@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== - -node-statsd@0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/node-statsd/-/node-statsd-0.1.1.tgz#27a59348763d0af7a037ac2a031fef3f051013d3" - integrity sha1-J6WTSHY9CvegN6wqAx/vPwUQE9M= - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-run-path@^4.0.0, npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -onecolor@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/onecolor/-/onecolor-3.1.0.tgz#b72522270a49569ac20d244b3cd40fe157fda4d2" - integrity sha512-YZSypViXzu3ul5LMu/m6XjJ9ol8qAy9S2VjHl5E6UlhUH1KGKWabyEJifn0Jjpw23bYDzC2ucKMPGiH5kfwSGQ== - -onetime@^5.1.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -open@^7.0.4: - version "7.3.0" - resolved "https://registry.yarnpkg.com/open/-/open-7.3.0.tgz#45461fdee46444f3645b6e14eb3ca94b82e1be69" - integrity sha512-mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw== - dependencies: - is-docker "^2.0.0" - is-wsl "^2.1.1" - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-queue@^6.6.1: - version "6.6.2" - resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" - integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== - dependencies: - eventemitter3 "^4.0.4" - p-timeout "^3.2.0" - -p-timeout@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" - integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== - dependencies: - p-finally "^1.0.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-json@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" - integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" - integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pend@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" - integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= - -phantomas@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/phantomas/-/phantomas-2.0.0.tgz#e97e5cfb69ef3b7c3b40597d3771b2af9443584c" - integrity sha512-nQ6JvuT7JgJPVMK48mXSOvXGxu4wvusoZ4pG4OFj2DaK3nLrjQhp6D0zb8As+fgDy4KPshh+EyrvkA+D3SQpJw== - dependencies: - analyze-css "^0.12.10" - ansicolors "~0.3.2" - ansistyles "~0.1.0" - ascii-table "0.0.9" - async "^3.2.0" - commander "^6.1.0" - csv-string "^4.0.1" - debug "^4.1.1" - js-yaml "^3.14.0" - node-statsd "0.1.1" - puppeteer "^5.3.1" - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" - integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== - -pkg-dir@^4.1.0, pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -postcss-modules-extract-imports@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz#b614c9720be6816eaee35fb3a5faa1dba6a05ddb" - integrity sha1-thTJcgvmgW6u41+zpfqh26agXds= - dependencies: - postcss "^6.0.1" - -postcss-modules-local-by-default@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" - integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk= - dependencies: - css-selector-tokenizer "^0.7.0" - postcss "^6.0.1" - -postcss-modules-scope@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" - integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A= - dependencies: - css-selector-tokenizer "^0.7.0" - postcss "^6.0.1" - -postcss-modules-values@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" - integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= - dependencies: - icss-replace-symbols "^1.1.0" - postcss "^6.0.1" - -postcss@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2" - integrity sha1-AA29H47vIXqjaLmiEsX8QLKo8/I= - dependencies: - chalk "^1.1.3" - source-map "^0.5.6" - supports-color "^3.2.3" - -postcss@^6.0.1: - version "6.0.23" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" - integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== - dependencies: - chalk "^2.4.1" - source-map "^0.6.1" - supports-color "^5.4.0" - -progress@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= - -proxy-from-env@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" - integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -puppeteer@^5.3.1: - version "5.5.0" - resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-5.5.0.tgz#331a7edd212ca06b4a556156435f58cbae08af00" - integrity sha512-OM8ZvTXAhfgFA7wBIIGlPQzvyEETzDjeRa4mZRCRHxYL+GNH5WAuYUQdja3rpWZvkX/JKqmuVgbsxDNsDFjMEg== - dependencies: - debug "^4.1.0" - devtools-protocol "0.0.818844" - extract-zip "^2.0.0" - https-proxy-agent "^4.0.0" - node-fetch "^2.6.1" - pkg-dir "^4.2.0" - progress "^2.0.1" - proxy-from-env "^1.0.0" - rimraf "^3.0.2" - tar-fs "^2.0.0" - unbzip2-stream "^1.3.3" - ws "^7.2.3" - -randombytes@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -readable-stream@^3.1.1, readable-stream@^3.4.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@~3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" - integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== - dependencies: - picomatch "^2.2.1" - -require-relative@^0.8.7: - version "0.8.7" - resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" - integrity sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4= - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve@^1.17.0: - version "1.19.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" - integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== - dependencies: - is-core-module "^2.1.0" - path-parse "^1.0.6" - -rimraf@^3.0.0, rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -rollup-dependency-tree@0.0.14: - version "0.0.14" - resolved "https://registry.yarnpkg.com/rollup-dependency-tree/-/rollup-dependency-tree-0.0.14.tgz#f59f2290b727cffbd1e0f95f43d903167e6b1063" - integrity sha512-cQ+n9cXadPuF6dN+0WvYeRL8bwd+kQdbjT6dtna682QTRbDiKEYHZNl9TI5BY7U4DhFN2EJmkJRWi6A1cAsmOw== - -rollup-plugin-css-chunks@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rollup-plugin-css-chunks/-/rollup-plugin-css-chunks-1.2.8.tgz#6cac28f5a207b32db10757d2fa964ce062bdeca9" - integrity sha512-ix78x56xpeO0hfRYkVSB3OJDc9FSKrojNr4lSZUrd19MADwcqNYR2l03sCWCHwYBawf1bMVwzuXXBsFjZiRRiQ== - dependencies: - rollup-pluginutils "^2.7.1" - sourcemap-codec "^1.4.4" - -rollup-plugin-inject@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz#e4233855bfba6c0c12a312fd6649dff9a13ee9f4" - integrity sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w== - dependencies: - estree-walker "^0.6.1" - magic-string "^0.25.3" - rollup-pluginutils "^2.8.1" - -rollup-plugin-node-polyfills@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz#53092a2744837164d5b8a28812ba5f3ff61109fd" - integrity sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA== - dependencies: - rollup-plugin-inject "^3.0.0" - -rollup-plugin-svelte@^6.0.0: - version "6.1.1" - resolved "https://registry.yarnpkg.com/rollup-plugin-svelte/-/rollup-plugin-svelte-6.1.1.tgz#66362cf0500fb7a848283ebcf19d289a60ef0871" - integrity sha512-ijnm0pH1ScrY4uxwaNXBpNVejVzpL2769hIEbAlnqNUWZrffLspu5/k9/l/Wsj3NrEHLQ6wCKGagVJonyfN7ow== - dependencies: - require-relative "^0.8.7" - rollup-pluginutils "^2.8.2" - sourcemap-codec "^1.4.8" - -rollup-plugin-terser@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d" - integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== - dependencies: - "@babel/code-frame" "^7.10.4" - jest-worker "^26.2.1" - serialize-javascript "^4.0.0" - terser "^5.0.0" - -rollup-pluginutils@^2.7.1, rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2: - version "2.8.2" - resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" - integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== - dependencies: - estree-walker "^0.6.1" - -rollup@^2.23.0, rollup@^2.32.0: - version "2.33.3" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.33.3.tgz#ae72ce31f992b09a580072951bfea76e9df17342" - integrity sha512-RpayhPTe4Gu/uFGCmk7Gp5Z9Qic2VsqZ040G+KZZvsZYdcuWaJg678JeDJJvJeEQXminu24a2au+y92CUWVd+w== - optionalDependencies: - fsevents "~2.1.2" - -sade@^1.7.4: - version "1.7.4" - resolved "https://registry.yarnpkg.com/sade/-/sade-1.7.4.tgz#ea681e0c65d248d2095c90578c03ca0bb1b54691" - integrity sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA== - dependencies: - mri "^1.1.0" - -safe-buffer@^5.1.0, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -scorta@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/scorta/-/scorta-1.0.0.tgz#fc99e241063bc521f24c4a18f2358e9d363ad466" - integrity sha512-q6qyZNQEeJopoG5eWMVb92qeeKVRaThhaDwlyhu7V2MAROZjD0BJyGaNnf4d+QJcaJu+Mv72RqEB+BZVo+ONCA== - dependencies: - escalade "^3.1.0" - -semver@^6.0.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -serialize-javascript@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" - integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== - dependencies: - randombytes "^2.1.0" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -signal-exit@^3.0.2, signal-exit@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" - integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slick@~1.12.1: - version "1.12.2" - resolved "https://registry.yarnpkg.com/slick/-/slick-1.12.2.tgz#bd048ddb74de7d1ca6915faa4a57570b3550c2d7" - integrity sha1-vQSN23TefRymkV+qSldXCzVQwtc= - -snowpack@^2.15.1: - version "2.17.1" - resolved "https://registry.yarnpkg.com/snowpack/-/snowpack-2.17.1.tgz#9f00a4171526df2fa288026b5496d3e544de71ce" - integrity sha512-FCeIESACrCQTGTZW6rbSfe1RgOFMBRPk7I5Wn//3IRl+cLBoZ1THWMdthqbv/xiv0qlK3rHoXTBqrakf7LPAZQ== - dependencies: - "@snowpack/plugin-build-script" "^2.0.11" - "@snowpack/plugin-run-script" "^2.2.0" - cacache "^15.0.0" - cachedir "^2.3.0" - chokidar "^3.4.0" - compressible "^2.0.18" - cosmiconfig "^7.0.0" - css-modules-loader-core "^1.1.0" - deepmerge "^4.2.2" - detect-port "^1.3.0" - es-module-lexer "^0.3.24" - esbuild "^0.8.0" - esinstall "^0.3.7" - etag "^1.8.1" - execa "^4.0.3" - find-cache-dir "^3.3.1" - find-up "^5.0.0" - glob "^7.1.4" - http-proxy "^1.18.1" - httpie "^1.1.2" - is-plain-object "^5.0.0" - isbinaryfile "^4.0.6" - jsonschema "~1.2.5" - kleur "^4.1.1" - mime-types "^2.1.26" - mkdirp "^1.0.3" - npm-run-path "^4.0.1" - open "^7.0.4" - p-queue "^6.6.1" - resolve-from "^5.0.0" - rimraf "^3.0.0" - signal-exit "^3.0.3" - source-map "^0.7.3" - strip-ansi "^6.0.0" - strip-comments "^2.0.1" - validate-npm-package-name "^3.0.0" - ws "^7.3.0" - yargs-parser "^20.0.0" - -source-map-resolve@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.6.0.tgz#3d9df87e236b53f16d01e58150fc7711138e5ed2" - integrity sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w== - dependencies: - atob "^2.1.2" - decode-uri-component "^0.2.0" - -source-map-support@~0.5.19: - version "0.5.19" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" - integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= - -source-map@^0.6.0, source-map@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@^0.7.3, source-map@~0.7.2: - version "0.7.3" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" - integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== - -sourcemap-codec@^1.4.4, sourcemap-codec@^1.4.8: - version "1.4.8" - resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" - integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== - -specificity@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/specificity/-/specificity-0.4.1.tgz#aab5e645012db08ba182e151165738d00887b019" - integrity sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg== - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= - -ssri@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz#79ca74e21f8ceaeddfcb4b90143c458b8d988808" - integrity sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA== - dependencies: - minipass "^3.1.1" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -strip-ansi@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" - integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== - dependencies: - ansi-regex "^5.0.0" - -strip-comments@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz#4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b" - integrity sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= - -supports-color@^3.2.3: - version "3.2.3" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" - integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY= - dependencies: - has-flag "^1.0.0" - -supports-color@^5.3.0, supports-color@^5.4.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.0.0, supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -svelte-hmr@^0.11.2: - version "0.11.6" - resolved "https://registry.yarnpkg.com/svelte-hmr/-/svelte-hmr-0.11.6.tgz#67f0498e2cdce9e1039631d820c1951bd01caa3f" - integrity sha512-XUYcp7W26q/fF8tABZfCYGklwL4TDH48gc1KOjuBQNlTiMW63l/+rRqmfVOE/qKG5vns0J2NPo3zFjdahkwoHA== - -svelte-preprocess@^4.5.2: - version "4.6.1" - resolved "https://registry.yarnpkg.com/svelte-preprocess/-/svelte-preprocess-4.6.1.tgz#a7de4d91b32d5608b6637da960ee81e6089ae276" - integrity sha512-s7KdhR2pOsffyOzZIMEb315f6pfgeDnOWN47m6YKFeSEx3NMf/79Znc3vuG/Ai79SL/vsi86WDrjFPLGRfDesg== - dependencies: - "@types/pug" "^2.0.4" - "@types/sass" "^1.16.0" - detect-indent "^6.0.0" - strip-indent "^3.0.0" - -svelte@^3.29.0: - version "3.30.0" - resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.30.0.tgz#cbde341e96bf34f4ac73c8f14f8a014e03bfb7d6" - integrity sha512-z+hdIACb9TROGvJBQWcItMtlr4s0DBUgJss6qWrtFkOoIInkG+iAMo/FJZQFyDBQZc+dul2+TzYSi/tpTT5/Ag== - -tar-fs@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== - dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.4.tgz#c4fb1a11eb0da29b893a5b25476397ba2d053bfa" - integrity sha512-o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s/+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -tar@^6.0.2: - version "6.0.5" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.5.tgz#bde815086e10b39f1dcd298e89d596e1535e200f" - integrity sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^3.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - -terser@^5.0.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.5.0.tgz#1406fcb4d4bc517add3b22a9694284c040e33448" - integrity sha512-eopt1Gf7/AQyPhpygdKePTzaet31TvQxXvrf7xYUvD/d8qkCJm4SKPDzu+GHK5ZaYTn8rvttfqaZc3swK21e5g== - dependencies: - commander "^2.20.0" - source-map "~0.7.2" - source-map-support "~0.5.19" - -through@^2.3.8: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -unbzip2-stream@^1.3.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" - integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg== - dependencies: - buffer "^5.2.1" - through "^2.3.8" - -unique-filename@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" - integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== - dependencies: - unique-slug "^2.0.0" - -unique-slug@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" - integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== - dependencies: - imurmurhash "^0.1.4" - -util-deprecate@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -validate-npm-package-name@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" - integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34= - dependencies: - builtins "^1.0.3" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - -ws@^7.2.3, ws@^7.3.0: - version "7.4.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.0.tgz#a5dd76a24197940d4a8bb9e0e152bb4503764da7" - integrity sha512-kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@^1.10.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" - integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== - -yargs-parser@^20.0.0: - version "20.2.4" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" - integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== - -yauzl@^2.10.0: - version "2.10.0" - resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" - integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= - dependencies: - buffer-crc32 "~0.2.3" - fd-slicer "~1.1.0" - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==