Skip to content
https://lord.porn

Performance

· 26 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
90
GRADE
A
FIX
2
REVIEW
4
PASS
17
INFO
3

Performance-focused optimization plan with CWV assessment, top offenders, and time estimates

61
Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
67
Accessibility Measures how accessible the page is for users with disabilities. Checks color contrast, ARIA labels, and semantic HTML.
96
Best Practices Checks for modern web development best practices including HTTPS, no console errors, and secure JavaScript.
100
SEO Measures basic SEO optimizations: meta tags, crawlability, link text, and mobile friendliness.

First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.

3.99 s

Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.

8.50 s

Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.

208 ms

Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.

0.000

Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.

4.97 s

Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.

8.67 s

Page Load Progression

375 ms
750 ms
1.1 s
1.5 s
1.9 s
2.2 s
2.6 s
3.0 s
Checks
26
17 PASS 4 REVIEW 2 FIX
D
JS Execution Cost
Action
2196ms total JS execution
FIX
2196ms total JS execution
Warning::
Unattributable: 768ms CPU time
Warning::
https://www.statcounter.com/counter/counter.js: 417ms CPU time
Warning::
https://www.googletagmanager.com/gtag/js?id=G-9CYY...: 305ms CPU time
Info::
https://www.google-analytics.com/analytics.js: 234ms CPU time
Info::
https://lord.porn/: 184ms CPU time
Warning::
Third-party scripts: 1102ms (50% of total)

Main Thread Breakdown

Script Evaluation 35% Other 34% Style & Layout 19% Script Parsing & Compilation 7% Parse HTML & CSS 4%
ScriptTotalScriptingParse/CompileParty
Unattributable768ms100ms0ms1st
https://www.statcounter.com/counter/counter.js417ms179ms8ms3rd
https://www.googletagmanager.com/gtag/js?id=G-9CYY34S519&cx=c&_slc=1305ms226ms77ms3rd
https://www.google-analytics.com/analytics.js234ms93ms10ms3rd
https://lord.porn/184ms14ms6ms1st
https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js146ms111ms17ms3rd
https://lord.porn/templates/toplist/js/extra/layzr.min.js75ms4ms1ms1st
https://lord.porn/templates/toplist/js/extra/agegate.js?v=2026080568ms29ms1ms1st
D
HTTP Caching
Action
no-store (uncacheable)
FIX
no-store (uncacheable)
Info::
Cache-Control: no-store prevents all caching
Intentional for dynamic content, but increases server load for every page view.
Got: no-store, no-cache, must-revalidate
Info::
No ETag or Last-Modified header
Conditional requests (304 Not Modified) are not possible without validators.
Cache-Control

no-store, no-cache, must-revalidate

DirectiveValueMeaning
no-storeNever cache this response
no-cacheCache but always revalidate first
must-revalidateMust recheck with server after expiry
B
Image Optimization
74 images, 0 KB saveable
REVIEW
74 images, 0 KB saveable
Warning::
https://lord.porn/templates/toplist/images/logo.pn... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
74 images 372 KB
0 oversized -0 KB
74 legacy format
1 missing dimensions CLS risk

Set explicit width and height to prevent CLS.

Why this matters

Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.

Source: web.dev / Core Web Vitals

B
JS Bundles
17 scripts, 69 KB unused
REVIEW
17 scripts, 69 KB unused
Warning::
https://www.googletagmanager.com/gtag/js?id=G-9CYY...: 69 KB unused (45%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://lord.porn/templates/toplist/js/extra/boots...: unminified — 3 KB could be saved
Info::
Total unused JavaScript: 69 KB
69 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://www.googletagmanager.com/gtag/js?id=G-9CYY34S519&cx=c&_slc=1154 KB69 KB (45%)3rd
https://lord.porn/templates/toplist/js/extra/bootstrap-select.js10 KB1st
https://lord.porn/templates/toplist/js/extra/mb.semiWaterfall.js2 KB1st
https://lord.porn/templates/toplist/js/extra/easing.js2 KB1st
https://lord.porn/templates/toplist/js/extra/jquery.scrollUp.min.js1 KB1st
https://lord.porn/templates/toplist/js/extra/jquery.mousewheel.js3 KB1st
https://lord.porn/templates/toplist/js/extra/jquery.mCustomScrollbar.js21 KB1st
https://lord.porn/templates/toplist/js/extra/jquery.scrollTo.min.js2 KB1st
https://lord.porn/templates/toplist/js/extra/jquery.nhancedBootstrapCollapse.js3 KB1st
https://lord.porn/templates/toplist/js/extra/layzr.min.js1 KB1st

Consider code splitting or tree shaking to reduce unused code.

Why this matters

This bundle has high unused code — code-split or tree-shake to ship only what executes.

Source: web.dev / Lighthouse coverage

B
Server-Timing Observability
No Server-Timing header found
REVIEW
No Server-Timing header found
Info::
No Server-Timing header found
Server-Timing exposes backend timing breakdowns to browser DevTools (e.g., `db: 45ms; render: 120ms; cache: 2ms`). Useful for diagnosing slow pages without backend log access. Most modern frameworks (Next.js, Cloudflare Workers, Fastly) emit it automatically; absence on a managed platform usually means telemetry headers are stripped at the edge.
B
JavaScript Blocking
1 JS blocking issue(s) detected
REVIEW
1 JS blocking issue(s) detected
Warning::
12 render-blocking <script src> tag(s) without async/defer
Each `<script src=...>` without `async`, `defer`, or `type="module"` blocks HTML parsing while the browser fetches and executes it. The block lasts the entire round-trip + execution time -- on slow networks this translates directly into LCP delay. Add `defer` (executes after parse, in source order) for scripts that interact with the DOM, or `async` (executes whenever ready) for analytics / independent scripts. Module scripts (`type="module"`) are deferred by default.
A
Page Weight Budget
853 KB transferred, 109 requests
PASS
853 KB transferred, 109 requests
Info::
Page weighs 1.6 MB (853 KB transferred)
Warning::
109 HTTP requests — consider bundling or reducing
Each request adds latency. Bundle small files, use sprites, or eliminate unnecessary requests.
Info::
Estimated 0.17 g CO2 per page load
853 KB / 2.4 MB budget
853 KB transferred
109 requests
0.17 g CO2 per page load
Images 371.7 KiB 44%
JavaScript 289.5 KiB 34%
Fonts 145.3 KiB 17%
CSS 33.2 KiB 4%
HTML 11.0 KiB 1%
Other 1.1 KiB 0%
Other 919 B 0%
Other 20 B 0%
0 2.4 MB 4.9 MB
Under budget

Each request adds latency. Bundle small files, use sprites, or eliminate unnecessary requests.

Why this matters

High HTTP request count — bundling, sprite-ing, and HTTP/2 server push can reduce per-request overhead.

Source: web.dev

A
Third-Party Impact
36% third-party, 0 ms blocking
PASS
36% third-party, 0 ms blocking
Info::
Third-party code accounts for 36% of page weight (310.7 KiB of 852.6 KiB)
Info::
Third-party blocking time is low (0 ms)
64%
36%
First-party Third-party
A+
Text Compression
All text resources are compressed
PASS
All text resources are compressed
Info::
All text resources are compressed
All text resources are properly compressed.
A+
Font Loading
3 fonts (145 KB)
PASS
3 fonts (145 KB)
Info::
3 font(s) use font-display: swap (FOUT risk but functional)

Web fonts

3

145 KB total

Render-blocking

0

of 3

Dominant font-display

swap

Most common across fonts

Font loading timeline
Transfer FOIT (block) FOUT (swap)
0 ms 1.0 s 2.0 s 3.0 s 4.0 s 5.0 s 6.0 s 7.0 s 8.0 s FCP 4.0 s LCP 8.5 shttps://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQk6YvM.woff2ieVl2ZhZI2eCN5jzbjEETS9... https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQk6YvM.woff2 — 45.0 KiB — 53 ms — font-display: swaphttps://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBHMdazQ.woff2KFO7CnqEu92Fr1ME7kSn66a... https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBHMdazQ.woff2 — 36.7 KiB — 52 ms — font-display: swaphttps://lord.porn/templates/toplist/fonts/fontawesome/fontawesome-webfont.woff2?v=4.4.0fontawesome-webfont.woff2 https://lord.porn/templates/toplist/fonts/fontawesome/fontawesome-webfont.woff2?v=4.4.0 — 63.6 KiB — 222 ms — font-display: swap
ieVl2ZhZI2eCN5jzbjEETS9... woff2 swap
Size 45 KB
Load time 53 ms
Start 537 ms
Risk FOUT — text flashes from fallback to web font
KFO7CnqEu92Fr1ME7kSn66a... woff2 swap
Size 37 KB
Load time 52 ms
Start 537 ms
Risk FOUT — text flashes from fallback to web font
fontawesome-webfont.woff2 woff2 swap
Size 64 KB
Load time 222 ms
Start 538 ms
Risk FOUT — text flashes from fallback to web font
Optimization checklist
  • Preload critical fonts (priority=high)
  • Use woff2 format for all fonts
  • Set font-display to swap, optional, or fallback
  • Subset large fonts (≤100 KB each)
A+
Resource Caching
All resources properly cached
PASS
All resources properly cached
Info::
No caching issues found
All static resources have appropriate caching headers.
A+
Critical Rendering Path
No render-blocking resources
PASS
No render-blocking resources
Info::
No render-blocking resources detected
A+
Resource Hints
No optimization needed
PASS
No optimization needed
Info::
No resource hint issues
A+
HTTP/3 (QUIC)
HTTP/3 advertised via Alt-Svc
PASS
HTTP/3 advertised via Alt-Svc
Info::
HTTP/3 (QUIC) is supported
First-load mobile users on cellular networks see meaningful latency improvements with HTTP/3. The QUIC transport collapses TLS + TCP handshakes into one and recovers faster from packet loss.
A+
Compression Algorithm
Main response uses brotli
PASS
Main response uses brotli
Info::
Main HTML response uses brotli (Content-Encoding: br)
Brotli is the best text-compression algorithm for general use, ~20% smaller than gzip on average (40% on smaller files). Modern browsers all support it.
A+
LCP Image Preload
LCP preload audit not available
PASS
LCP preload audit not available
Info::
LCP image preload audit not available for this scan
A+
Main HTML Cache-Control
Main HTML uses no-store -- correct for sensitive/dynamic content
PASS
Main HTML uses no-store -- correct for sensitive/dynamic content
Info::
Main HTML uses no-store -- correct for sensitive/dynamic content
Got: no-store, no-cache, must-revalidate
A+
Server Response Intelligence
2 server-response signal(s) detected
PASS
2 server-response signal(s) detected
Info::
`Vary` header declared: Accept-Encoding,User-Agent
The page declares a `Vary` header, telling downstream caches which request headers the response varies on. Critical for content-negotiated responses (compression, language, cookies, device class).
Info::
No `ETag` or `Last-Modified` -- conditional GET not supported
Without either header, browsers can't issue conditional GETs and refresh always re-downloads the full response body even when nothing changed. Add `ETag: "<hash>"` (or `Last-Modified: <date>`) on cacheable responses; the server returns 304 Not Modified when the client's cached copy is still valid, saving bandwidth.
A+
Page Weight Inventory
109 resources · 853 KB · 69 KB savings available
PASS
109 resources · 853 KB · 69 KB savings available
Info::
Within 1MB page-weight target
Got: 853 KB
Info::
~69 KB of savings available
Info::
10 third-party resources (36% of weight)
109 resources · 852.6 KiB · 10 third-party Within 1MB page-weight target
Image 44% · 372.6 KiB
JavaScript 34% · 289.5 KiB
Font 17% · 145.3 KiB
CSS 4% · 33.2 KiB
Document 1% · 11.0 KiB
Other 0% · 1.1 KiB

~68.5 KiB of savings available

Remove unused JavaScript: 68.5 KiB
A+
Render-Blocking Resources
No render-blocking resources detected
PASS
No render-blocking resources detected
Info::
No render-blocking resources detected in <head>
A+
Third-Party Resources
No third-party resources detected
PASS
No third-party resources detected
A
CSS Performance Depth
1 CSS depth issue(s) detected
PASS
1 CSS depth issue(s) detected
Warning::
7 render-blocking stylesheet(s) -- recommended: <=3
Each `<link rel="stylesheet">` without a non-blocking `media` attribute holds up the first paint. Browsers download all of them before painting any content. Consolidate into 1-2 critical-path stylesheets; defer non-critical CSS via `<link rel="stylesheet" media="print" onload="this.media='all'">` or via the loadCSS pattern; inline above-the-fold CSS in `<style>` to short-circuit the request entirely.
A+
Green Hosting
Whether the site is served from green-energy infrastructure
PASS

Green Hosting

This site is hosted on green energy infrastructure

Provider: Cloudflare

Network Waterfall
109 requests over 1020ms
INFO
0 ms 1.0 s 2.0 s 3.0 s 4.0 s 5.0 s 6.0 s 7.0 s 8.0 s FCP 4.0 s LCP 8.5 shttps://lord.porn// https://lord.porn/ — 200 — 11.0 KiB — 128 ms — h3https://fonts.googleapis.com/css?family=Roboto:700,300|Roboto+Condensed:300,400,500,700fonts.googleapis.com/css?family=Rob... https://fonts.googleapis.com/css?family=Roboto:700,300|Roboto+Condensed:300,400,500,700 — 200 — 2.3 KiB — 60 ms — h2https://lord.porn/includes/rating/js/jRating.jquery.css/includes/rating/js/jRating.jquery.... https://lord.porn/includes/rating/js/jRating.jquery.css — 200 — 995 B — 102 ms — h3https://lord.porn/templates/toplist/css/bootstrap.css/templates/toplist/css/bootstrap.cs... https://lord.porn/templates/toplist/css/bootstrap.css — 200 — 12.4 KiB — 96 ms — h3https://lord.porn/templates/toplist/css/jquery.mCustomScrollbar.css/templates/toplist/css/jquery.mCust... https://lord.porn/templates/toplist/css/jquery.mCustomScrollbar.css — 200 — 6.0 KiB — 88 ms — h3https://lord.porn/templates/toplist/css/style.css/templates/toplist/css/style.css https://lord.porn/templates/toplist/css/style.css — 200 — 580 B — 84 ms — h3https://lord.porn/templates/toplist/css/rwd.css/templates/toplist/css/rwd.css https://lord.porn/templates/toplist/css/rwd.css — 200 — 517 B — 101 ms — h3https://lord.porn/templates/toplist/css/overwrite.css?v=20260805agegate1/templates/toplist/css/overwrite.cs... https://lord.porn/templates/toplist/css/overwrite.css?v=20260805agegate1 — 200 — 2.0 KiB — 109 ms — h3https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.jsajax.googleapis.com/ajax/libs/jquer... https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js — 200 — 33.3 KiB — 32 ms — h2https://lord.porn/templates/toplist/js/bootstrap/bootstrap.min.js/templates/toplist/js/bootstrap/boo... https://lord.porn/templates/toplist/js/bootstrap/bootstrap.min.js — 200 — 9.9 KiB — 137 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.scrollTo.min.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.scrollTo.min.js — 200 — 1.8 KiB — 132 ms — h3https://lord.porn/templates/toplist/js/extra/easing.js/templates/toplist/js/extra/easing.... https://lord.porn/templates/toplist/js/extra/easing.js — 200 — 2.5 KiB — 136 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.scrollUp.min.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.scrollUp.min.js — 200 — 1.4 KiB — 84 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.mousewheel.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.mousewheel.js — 200 — 3.0 KiB — 135 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.mCustomScrollbar.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.mCustomScrollbar.js — 200 — 21.3 KiB — 139 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.nhancedBootstrapCollapse.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.nhancedBootstrapCollapse.js — 200 — 2.6 KiB — 126 ms — h3https://lord.porn/templates/toplist/js/extra/bootstrap-select.js/templates/toplist/js/extra/bootstr... https://lord.porn/templates/toplist/js/extra/bootstrap-select.js — 200 — 10.4 KiB — 134 ms — h3https://lord.porn/templates/toplist/js/extra/layzr.min.js/templates/toplist/js/extra/layzr.m... https://lord.porn/templates/toplist/js/extra/layzr.min.js — 200 — 1.4 KiB — 125 ms — h3https://lord.porn/templates/toplist/js/extra/mb.semiWaterfall.js/templates/toplist/js/extra/mb.semi... https://lord.porn/templates/toplist/js/extra/mb.semiWaterfall.js — 200 — 1.9 KiB — 129 ms — h3https://lord.porn/includes/rating/js/jRating.jquery.js/includes/rating/js/jRating.jquery.... https://lord.porn/includes/rating/js/jRating.jquery.js — 200 — 2.7 KiB — 124 ms — h3https://lord.porn/templates/toplist/images/logo.png?v=20260805newlogo/templates/toplist/images/logo.png?... https://lord.porn/templates/toplist/images/logo.png?v=20260805newlogo — 200 — 11.1 KiB — 131 ms — h3https://lord.porn/media/thumbs/0/62/icon.png?v=20260805c/media/thumbs/0/62/icon.png?v=20260... https://lord.porn/media/thumbs/0/62/icon.png?v=20260805c — 200 — 2.0 KiB — 124 ms — h3https://lord.porn/templates/toplist/css/page.css/templates/toplist/css/page.css https://lord.porn/templates/toplist/css/page.css — 200 — 5.7 KiB — 95 ms — h3https://lord.porn/templates/toplist/css/overwrite.css/templates/toplist/css/overwrite.cs... https://lord.porn/templates/toplist/css/overwrite.css — 200 — 2.0 KiB — 107 ms — h3https://lord.porn/media/thumbs/0/63/icon.png?v=20260805c/media/thumbs/0/63/icon.png?v=20260... https://lord.porn/media/thumbs/0/63/icon.png?v=20260805c — 200 — 3.5 KiB — 106 ms — h3https://lord.porn/media/thumbs/0/64/icon.png?v=20260805c/media/thumbs/0/64/icon.png?v=20260... https://lord.porn/media/thumbs/0/64/icon.png?v=20260805c — 200 — 3.7 KiB — 90 ms — h3https://lord.porn/templates/toplist/js/functions.js/templates/toplist/js/functions.js https://lord.porn/templates/toplist/js/functions.js — 200 — 3.7 KiB — 87 ms — h3https://www.statcounter.com/counter/counter.jswww.statcounter.com/counter/counter... https://www.statcounter.com/counter/counter.js — 200 — 17.5 KiB — 56 ms — h3https://lord.porn/templates/toplist/js/extra/agegate.js?v=20260805/templates/toplist/js/extra/agegate... https://lord.porn/templates/toplist/js/extra/agegate.js?v=20260805 — 200 — 1.2 KiB — 136 ms — h3https://lord.porn/media/thumbs/0/65/icon.png?v=20260805c/media/thumbs/0/65/icon.png?v=20260... https://lord.porn/media/thumbs/0/65/icon.png?v=20260805c — 200 — 7.0 KiB — 135 ms — h3
0 ms 1.0 s 2.0 s 3.0 s 4.0 s 5.0 s 6.0 s 7.0 s 8.0 s FCP 4.0 s LCP 8.5 shttps://lord.porn// https://lord.porn/ — 200 — 11.0 KiB — 128 ms — h3https://fonts.googleapis.com/css?family=Roboto:700,300|Roboto+Condensed:300,400,500,700fonts.googleapis.com/css?family=Rob... https://fonts.googleapis.com/css?family=Roboto:700,300|Roboto+Condensed:300,400,500,700 — 200 — 2.3 KiB — 60 ms — h2https://lord.porn/includes/rating/js/jRating.jquery.css/includes/rating/js/jRating.jquery.... https://lord.porn/includes/rating/js/jRating.jquery.css — 200 — 995 B — 102 ms — h3https://lord.porn/templates/toplist/css/bootstrap.css/templates/toplist/css/bootstrap.cs... https://lord.porn/templates/toplist/css/bootstrap.css — 200 — 12.4 KiB — 96 ms — h3https://lord.porn/templates/toplist/css/jquery.mCustomScrollbar.css/templates/toplist/css/jquery.mCust... https://lord.porn/templates/toplist/css/jquery.mCustomScrollbar.css — 200 — 6.0 KiB — 88 ms — h3https://lord.porn/templates/toplist/css/style.css/templates/toplist/css/style.css https://lord.porn/templates/toplist/css/style.css — 200 — 580 B — 84 ms — h3https://lord.porn/templates/toplist/css/rwd.css/templates/toplist/css/rwd.css https://lord.porn/templates/toplist/css/rwd.css — 200 — 517 B — 101 ms — h3https://lord.porn/templates/toplist/css/overwrite.css?v=20260805agegate1/templates/toplist/css/overwrite.cs... https://lord.porn/templates/toplist/css/overwrite.css?v=20260805agegate1 — 200 — 2.0 KiB — 109 ms — h3https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.jsajax.googleapis.com/ajax/libs/jquer... https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js — 200 — 33.3 KiB — 32 ms — h2https://lord.porn/templates/toplist/js/bootstrap/bootstrap.min.js/templates/toplist/js/bootstrap/boo... https://lord.porn/templates/toplist/js/bootstrap/bootstrap.min.js — 200 — 9.9 KiB — 137 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.scrollTo.min.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.scrollTo.min.js — 200 — 1.8 KiB — 132 ms — h3https://lord.porn/templates/toplist/js/extra/easing.js/templates/toplist/js/extra/easing.... https://lord.porn/templates/toplist/js/extra/easing.js — 200 — 2.5 KiB — 136 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.scrollUp.min.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.scrollUp.min.js — 200 — 1.4 KiB — 84 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.mousewheel.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.mousewheel.js — 200 — 3.0 KiB — 135 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.mCustomScrollbar.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.mCustomScrollbar.js — 200 — 21.3 KiB — 139 ms — h3https://lord.porn/templates/toplist/js/extra/jquery.nhancedBootstrapCollapse.js/templates/toplist/js/extra/jquery.... https://lord.porn/templates/toplist/js/extra/jquery.nhancedBootstrapCollapse.js — 200 — 2.6 KiB — 126 ms — h3https://lord.porn/templates/toplist/js/extra/bootstrap-select.js/templates/toplist/js/extra/bootstr... https://lord.porn/templates/toplist/js/extra/bootstrap-select.js — 200 — 10.4 KiB — 134 ms — h3https://lord.porn/templates/toplist/js/extra/layzr.min.js/templates/toplist/js/extra/layzr.m... https://lord.porn/templates/toplist/js/extra/layzr.min.js — 200 — 1.4 KiB — 125 ms — h3https://lord.porn/templates/toplist/js/extra/mb.semiWaterfall.js/templates/toplist/js/extra/mb.semi... https://lord.porn/templates/toplist/js/extra/mb.semiWaterfall.js — 200 — 1.9 KiB — 129 ms — h3https://lord.porn/includes/rating/js/jRating.jquery.js/includes/rating/js/jRating.jquery.... https://lord.porn/includes/rating/js/jRating.jquery.js — 200 — 2.7 KiB — 124 ms — h3https://lord.porn/templates/toplist/images/logo.png?v=20260805newlogo/templates/toplist/images/logo.png?... https://lord.porn/templates/toplist/images/logo.png?v=20260805newlogo — 200 — 11.1 KiB — 131 ms — h3https://lord.porn/media/thumbs/0/62/icon.png?v=20260805c/media/thumbs/0/62/icon.png?v=20260... https://lord.porn/media/thumbs/0/62/icon.png?v=20260805c — 200 — 2.0 KiB — 124 ms — h3https://lord.porn/templates/toplist/css/page.css/templates/toplist/css/page.css https://lord.porn/templates/toplist/css/page.css — 200 — 5.7 KiB — 95 ms — h3https://lord.porn/templates/toplist/css/overwrite.css/templates/toplist/css/overwrite.cs... https://lord.porn/templates/toplist/css/overwrite.css — 200 — 2.0 KiB — 107 ms — h3https://lord.porn/media/thumbs/0/63/icon.png?v=20260805c/media/thumbs/0/63/icon.png?v=20260... https://lord.porn/media/thumbs/0/63/icon.png?v=20260805c — 200 — 3.5 KiB — 106 ms — h3https://lord.porn/media/thumbs/0/64/icon.png?v=20260805c/media/thumbs/0/64/icon.png?v=20260... https://lord.porn/media/thumbs/0/64/icon.png?v=20260805c — 200 — 3.7 KiB — 90 ms — h3https://lord.porn/templates/toplist/js/functions.js/templates/toplist/js/functions.js https://lord.porn/templates/toplist/js/functions.js — 200 — 3.7 KiB — 87 ms — h3https://www.statcounter.com/counter/counter.jswww.statcounter.com/counter/counter... https://www.statcounter.com/counter/counter.js — 200 — 17.5 KiB — 56 ms — h3https://lord.porn/templates/toplist/js/extra/agegate.js?v=20260805/templates/toplist/js/extra/agegate... https://lord.porn/templates/toplist/js/extra/agegate.js?v=20260805 — 200 — 1.2 KiB — 136 ms — h3https://lord.porn/media/thumbs/0/65/icon.png?v=20260805c/media/thumbs/0/65/icon.png?v=20260... https://lord.porn/media/thumbs/0/65/icon.png?v=20260805c — 200 — 7.0 KiB — 135 ms — h3https://lord.porn/media/thumbs/0/66/icon.png?v=20260805c/media/thumbs/0/66/icon.png?v=20260... https://lord.porn/media/thumbs/0/66/icon.png?v=20260805c — 200 — 2.8 KiB — 119 ms — h3https://lord.porn/media/thumbs/0/67/icon.png?v=20260805c/media/thumbs/0/67/icon.png?v=20260... https://lord.porn/media/thumbs/0/67/icon.png?v=20260805c — 200 — 2.5 KiB — 125 ms — h3https://lord.porn/media/thumbs/0/68/icon.png?v=20260805c/media/thumbs/0/68/icon.png?v=20260... https://lord.porn/media/thumbs/0/68/icon.png?v=20260805c — 200 — 2.4 KiB — 129 ms — h3https://lord.porn/media/thumbs/0/69/icon.png?v=20260805c/media/thumbs/0/69/icon.png?v=20260... https://lord.porn/media/thumbs/0/69/icon.png?v=20260805c — 200 — 6.8 KiB — 349 ms — h3https://lord.porn/media/thumbs/0/70/icon.png?v=20260805c/media/thumbs/0/70/icon.png?v=20260... https://lord.porn/media/thumbs/0/70/icon.png?v=20260805c — 200 — 10.6 KiB — 343 ms — h3https://lord.porn/media/thumbs/0/71/icon.png?v=20260805c/media/thumbs/0/71/icon.png?v=20260... https://lord.porn/media/thumbs/0/71/icon.png?v=20260805c — 200 — 7.6 KiB — 256 ms — h3https://lord.porn/media/thumbs/0/98/icon.png?v=20260805c/media/thumbs/0/98/icon.png?v=20260... https://lord.porn/media/thumbs/0/98/icon.png?v=20260805c — 200 — 4.7 KiB — 358 ms — h3https://lord.porn/media/thumbs/0/99/icon.png?v=20260805c/media/thumbs/0/99/icon.png?v=20260... https://lord.porn/media/thumbs/0/99/icon.png?v=20260805c — 200 — 3.7 KiB — 168 ms — h3https://lord.porn/media/thumbs/0/100/icon.png?v=20260805c/media/thumbs/0/100/icon.png?v=2026... https://lord.porn/media/thumbs/0/100/icon.png?v=20260805c — 200 — 4.6 KiB — 223 ms — h3https://lord.porn/media/thumbs/0/101/icon.png?v=20260805c/media/thumbs/0/101/icon.png?v=2026... https://lord.porn/media/thumbs/0/101/icon.png?v=20260805c — 200 — 4.7 KiB — 253 ms — h3https://lord.porn/media/thumbs/0/102/icon.png?v=20260805c/media/thumbs/0/102/icon.png?v=2026... https://lord.porn/media/thumbs/0/102/icon.png?v=20260805c — 200 — 4.6 KiB — 340 ms — h3https://lord.porn/media/thumbs/0/72/icon.png?v=20260805c/media/thumbs/0/72/icon.png?v=20260... https://lord.porn/media/thumbs/0/72/icon.png?v=20260805c — 200 — 6.0 KiB — 344 ms — h3https://lord.porn/media/thumbs/0/73/icon.png?v=20260805c/media/thumbs/0/73/icon.png?v=20260... https://lord.porn/media/thumbs/0/73/icon.png?v=20260805c — 200 — 3.0 KiB — 221 ms — h3https://lord.porn/media/thumbs/0/74/icon.png?v=20260805c/media/thumbs/0/74/icon.png?v=20260... https://lord.porn/media/thumbs/0/74/icon.png?v=20260805c — 200 — 9.2 KiB — 252 ms — h3https://lord.porn/media/thumbs/0/75/icon.png?v=20260805c/media/thumbs/0/75/icon.png?v=20260... https://lord.porn/media/thumbs/0/75/icon.png?v=20260805c — 200 — 3.6 KiB — 164 ms — h3https://lord.porn/media/thumbs/0/76/icon.png?v=20260805c/media/thumbs/0/76/icon.png?v=20260... https://lord.porn/media/thumbs/0/76/icon.png?v=20260805c — 200 — 4.7 KiB — 343 ms — h3https://lord.porn/media/thumbs/0/77/icon.png?v=20260805c/media/thumbs/0/77/icon.png?v=20260... https://lord.porn/media/thumbs/0/77/icon.png?v=20260805c — 200 — 1.4 KiB — 336 ms — h3https://lord.porn/media/thumbs/0/78/icon.png?v=20260805c/media/thumbs/0/78/icon.png?v=20260... https://lord.porn/media/thumbs/0/78/icon.png?v=20260805c — 200 — 9.7 KiB — 234 ms — h3https://lord.porn/media/thumbs/0/103/icon.png?v=20260805c/media/thumbs/0/103/icon.png?v=2026... https://lord.porn/media/thumbs/0/103/icon.png?v=20260805c — 200 — 2.0 KiB — 248 ms — h3https://lord.porn/media/thumbs/0/104/icon.png?v=20260805c/media/thumbs/0/104/icon.png?v=2026... https://lord.porn/media/thumbs/0/104/icon.png?v=20260805c — 200 — 6.5 KiB — 264 ms — h3https://lord.porn/media/thumbs/0/105/icon.png?v=20260805c/media/thumbs/0/105/icon.png?v=2026... https://lord.porn/media/thumbs/0/105/icon.png?v=20260805c — 200 — 7.1 KiB — 216 ms — h3https://lord.porn/media/thumbs/0/106/icon.png?v=20260805c/media/thumbs/0/106/icon.png?v=2026... https://lord.porn/media/thumbs/0/106/icon.png?v=20260805c — 200 — 6.8 KiB — 263 ms — h3https://lord.porn/media/thumbs/0/107/icon.png?v=20260805c/media/thumbs/0/107/icon.png?v=2026... https://lord.porn/media/thumbs/0/107/icon.png?v=20260805c — 200 — 4.3 KiB — 331 ms — h3https://lord.porn/media/thumbs/0/108/icon.png?v=20260805c/media/thumbs/0/108/icon.png?v=2026... https://lord.porn/media/thumbs/0/108/icon.png?v=20260805c — 200 — 2.1 KiB — 161 ms — h3https://lord.porn/media/thumbs/0/109/icon.png?v=20260805c/media/thumbs/0/109/icon.png?v=2026... https://lord.porn/media/thumbs/0/109/icon.png?v=20260805c — 200 — 3.5 KiB — 184 ms — h3https://lord.porn/media/thumbs/0/110/icon.png?v=20260805c/media/thumbs/0/110/icon.png?v=2026... https://lord.porn/media/thumbs/0/110/icon.png?v=20260805c — 200 — 3.5 KiB — 331 ms — h3https://lord.porn/media/thumbs/0/79/icon.png?v=20260805c/media/thumbs/0/79/icon.png?v=20260... https://lord.porn/media/thumbs/0/79/icon.png?v=20260805c — 200 — 6.0 KiB — 337 ms — h3https://lord.porn/media/thumbs/0/80/icon.png?v=20260805c/media/thumbs/0/80/icon.png?v=20260... https://lord.porn/media/thumbs/0/80/icon.png?v=20260805c — 200 — 3.9 KiB — 182 ms — h3https://lord.porn/media/thumbs/0/81/icon.png?v=20260805c/media/thumbs/0/81/icon.png?v=20260... https://lord.porn/media/thumbs/0/81/icon.png?v=20260805c — 200 — 1.4 KiB — 261 ms — h3https://lord.porn/media/thumbs/0/82/icon.png?v=20260805c/media/thumbs/0/82/icon.png?v=20260... https://lord.porn/media/thumbs/0/82/icon.png?v=20260805c — 200 — 6.8 KiB — 336 ms — h3https://lord.porn/media/thumbs/0/83/icon.png?v=20260805c/media/thumbs/0/83/icon.png?v=20260... https://lord.porn/media/thumbs/0/83/icon.png?v=20260805c — 200 — 5.9 KiB — 181 ms — h3https://lord.porn/media/thumbs/0/84/icon.png?v=20260805c/media/thumbs/0/84/icon.png?v=20260... https://lord.porn/media/thumbs/0/84/icon.png?v=20260805c — 200 — 2.6 KiB — 260 ms — h3https://lord.porn/media/thumbs/0/85/icon.png?v=20260805c/media/thumbs/0/85/icon.png?v=20260... https://lord.porn/media/thumbs/0/85/icon.png?v=20260805c — 200 — 3.8 KiB — 156 ms — h3https://lord.porn/media/thumbs/0/86/icon.png?v=20260805c/media/thumbs/0/86/icon.png?v=20260... https://lord.porn/media/thumbs/0/86/icon.png?v=20260805c — 200 — 1.6 KiB — 182 ms — h3https://lord.porn/media/thumbs/0/87/icon.png?v=20260805c/media/thumbs/0/87/icon.png?v=20260... https://lord.porn/media/thumbs/0/87/icon.png?v=20260805c — 200 — 9.8 KiB — 332 ms — h3https://lord.porn/media/thumbs/0/88/icon.png?v=20260805c/media/thumbs/0/88/icon.png?v=20260... https://lord.porn/media/thumbs/0/88/icon.png?v=20260805c — 200 — 5.2 KiB — 92 ms — h3https://lord.porn/media/thumbs/0/89/icon.png?v=20260805c/media/thumbs/0/89/icon.png?v=20260... https://lord.porn/media/thumbs/0/89/icon.png?v=20260805c — 200 — 5.0 KiB — 298 ms — h3https://lord.porn/media/thumbs/0/90/icon.png?v=20260805c/media/thumbs/0/90/icon.png?v=20260... https://lord.porn/media/thumbs/0/90/icon.png?v=20260805c — 200 — 7.7 KiB — 299 ms — h3https://lord.porn/media/thumbs/0/111/icon.png?v=20260805c/media/thumbs/0/111/icon.png?v=2026... https://lord.porn/media/thumbs/0/111/icon.png?v=20260805c — 200 — 5.3 KiB — 299 ms — h3https://lord.porn/media/thumbs/0/112/icon.png?v=20260805c/media/thumbs/0/112/icon.png?v=2026... https://lord.porn/media/thumbs/0/112/icon.png?v=20260805c — 200 — 7.7 KiB — 153 ms — h3https://lord.porn/media/thumbs/0/113/icon.png?v=20260805c/media/thumbs/0/113/icon.png?v=2026... https://lord.porn/media/thumbs/0/113/icon.png?v=20260805c — 200 — 9.7 KiB — 336 ms — h3https://lord.porn/media/thumbs/0/114/icon.png?v=20260805c/media/thumbs/0/114/icon.png?v=2026... https://lord.porn/media/thumbs/0/114/icon.png?v=20260805c — 200 — 3.4 KiB — 331 ms — h3https://lord.porn/media/thumbs/0/91/icon.png?v=20260805c/media/thumbs/0/91/icon.png?v=20260... https://lord.porn/media/thumbs/0/91/icon.png?v=20260805c — 200 — 8.9 KiB — 297 ms — h3https://lord.porn/media/thumbs/0/92/icon.png?v=20260805c/media/thumbs/0/92/icon.png?v=20260... https://lord.porn/media/thumbs/0/92/icon.png?v=20260805c — 200 — 5.8 KiB — 297 ms — h3https://lord.porn/media/thumbs/0/93/icon.png?v=20260805c/media/thumbs/0/93/icon.png?v=20260... https://lord.porn/media/thumbs/0/93/icon.png?v=20260805c — 200 — 2.2 KiB — 331 ms — h3https://lord.porn/media/thumbs/0/115/icon.png?v=20260805c/media/thumbs/0/115/icon.png?v=2026... https://lord.porn/media/thumbs/0/115/icon.png?v=20260805c — 200 — 2.4 KiB — 317 ms — h3https://lord.porn/media/thumbs/0/116/icon.png?v=20260805c/media/thumbs/0/116/icon.png?v=2026... https://lord.porn/media/thumbs/0/116/icon.png?v=20260805c — 200 — 6.0 KiB — 204 ms — h3https://lord.porn/media/thumbs/0/117/icon.png?v=20260805c/media/thumbs/0/117/icon.png?v=2026... https://lord.porn/media/thumbs/0/117/icon.png?v=20260805c — 200 — 5.6 KiB — 317 ms — h3https://lord.porn/media/thumbs/0/118/icon.png?v=20260805c/media/thumbs/0/118/icon.png?v=2026... https://lord.porn/media/thumbs/0/118/icon.png?v=20260805c — 200 — 2.2 KiB — 316 ms — h3https://lord.porn/media/thumbs/0/94/icon.png?v=20260805c/media/thumbs/0/94/icon.png?v=20260... https://lord.porn/media/thumbs/0/94/icon.png?v=20260805c — 200 — 2.4 KiB — 173 ms — h3https://lord.porn/media/thumbs/0/95/icon.png?v=20260805c/media/thumbs/0/95/icon.png?v=20260... https://lord.porn/media/thumbs/0/95/icon.png?v=20260805c — 200 — 5.6 KiB — 251 ms — h3https://lord.porn/media/thumbs/0/96/icon.png?v=20260805c/media/thumbs/0/96/icon.png?v=20260... https://lord.porn/media/thumbs/0/96/icon.png?v=20260805c — 200 — 8.2 KiB — 331 ms — h3https://lord.porn/media/thumbs/0/97/icon.png?v=20260805c/media/thumbs/0/97/icon.png?v=20260... https://lord.porn/media/thumbs/0/97/icon.png?v=20260805c — 200 — 6.0 KiB — 334 ms — h3https://lord.porn/media/thumbs/0/119/icon.png?v=20260805c/media/thumbs/0/119/icon.png?v=2026... https://lord.porn/media/thumbs/0/119/icon.png?v=20260805c — 200 — 3.3 KiB — 296 ms — h3https://lord.porn/media/thumbs/0/120/icon.png?v=20260805c/media/thumbs/0/120/icon.png?v=2026... https://lord.porn/media/thumbs/0/120/icon.png?v=20260805c — 200 — 9.0 KiB — 334 ms — h3https://lord.porn/media/thumbs/0/121/icon.png?v=20260805c/media/thumbs/0/121/icon.png?v=2026... https://lord.porn/media/thumbs/0/121/icon.png?v=20260805c — 200 — 9.4 KiB — 327 ms — h3https://lord.porn/media/thumbs/0/122/icon.png?v=20260805c/media/thumbs/0/122/icon.png?v=2026... https://lord.porn/media/thumbs/0/122/icon.png?v=20260805c — 200 — 6.1 KiB — 314 ms — h3https://lord.porn/media/thumbs/0/123/icon.png?v=20260805c/media/thumbs/0/123/icon.png?v=2026... https://lord.porn/media/thumbs/0/123/icon.png?v=20260805c — 200 — 5.1 KiB — 326 ms — h3https://lord.porn/media/thumbs/0/124/icon.png?v=20260805c/media/thumbs/0/124/icon.png?v=2026... https://lord.porn/media/thumbs/0/124/icon.png?v=20260805c — 200 — 6.0 KiB — 170 ms — h3https://lord.porn/media/thumbs/0/125/icon.png?v=20260805c/media/thumbs/0/125/icon.png?v=2026... https://lord.porn/media/thumbs/0/125/icon.png?v=20260805c — 200 — 2.9 KiB — 313 ms — h3https://lord.porn/media/thumbs/0/126/icon.png?v=20260805c/media/thumbs/0/126/icon.png?v=2026... https://lord.porn/media/thumbs/0/126/icon.png?v=20260805c — 200 — 4.4 KiB — 327 ms — h3https://lord.porn/media/thumbs/0/127/icon.png?v=20260805c/media/thumbs/0/127/icon.png?v=2026... https://lord.porn/media/thumbs/0/127/icon.png?v=20260805c — 200 — 4.7 KiB — 334 ms — h3https://lord.porn/media/thumbs/0/128/icon.png?v=20260805c/media/thumbs/0/128/icon.png?v=2026... https://lord.porn/media/thumbs/0/128/icon.png?v=20260805c — 200 — 4.7 KiB — 335 ms — h3https://lord.porn/media/thumbs/0/129/icon.png?v=20260805c/media/thumbs/0/129/icon.png?v=2026... https://lord.porn/media/thumbs/0/129/icon.png?v=20260805c — 200 — 5.2 KiB — 168 ms — h3https://lord.porn/media/thumbs/0/130/icon.png?v=20260805c/media/thumbs/0/130/icon.png?v=2026... https://lord.porn/media/thumbs/0/130/icon.png?v=20260805c — 200 — 4.4 KiB — 334 ms — h3https://lord.porn/media/thumbs/0/131/icon.png?v=20260805c/media/thumbs/0/131/icon.png?v=2026... https://lord.porn/media/thumbs/0/131/icon.png?v=20260805c — 200 — 3.7 KiB — 335 ms — h3https://lord.porn/media/thumbs/0/132/icon.png?v=20260805c/media/thumbs/0/132/icon.png?v=2026... https://lord.porn/media/thumbs/0/132/icon.png?v=20260805c — 200 — 1.7 KiB — 141 ms — h3https://lord.porn/media/thumbs/0/133/icon.png?v=20260805c/media/thumbs/0/133/icon.png?v=2026... https://lord.porn/media/thumbs/0/133/icon.png?v=20260805c — 200 — 2.1 KiB — 335 ms — h3https://lord.porn/media/thumbs/0/134/icon.png?v=20260805c/media/thumbs/0/134/icon.png?v=2026... https://lord.porn/media/thumbs/0/134/icon.png?v=20260805c — 200 — 2.3 KiB — 335 ms — h3https://www.google-analytics.com/analytics.jswww.google-analytics.com/analytics.... https://www.google-analytics.com/analytics.js — 200 — 20.9 KiB — 34 ms — h2https://lord.porn/templates/toplist/css/print.css/templates/toplist/css/print.css https://lord.porn/templates/toplist/css/print.css — 200 — 824 B — 139 ms — h3https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQk6YvM.woff2fonts.gstatic.com/s/robotocondensed... https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQk6YvM.woff2 — 200 — 45.0 KiB — 53 ms — h3https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBHMdazQ.woff2fonts.gstatic.com/s/roboto/v51/KFO7... https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBHMdazQ.woff2 — 200 — 36.7 KiB — 52 ms — h3https://lord.porn/templates/toplist/fonts/fontawesome/fontawesome-webfont.woff2?v=4.4.0/templates/toplist/fonts/fontawesom... https://lord.porn/templates/toplist/fonts/fontawesome/fontawesome-webfont.woff2?v=4.4.0 — 200 — 63.6 KiB — 222 ms — h3https://c.statcounter.com/t.php?sc_project=13340616&u1=0348E40122FC49EDB0558D14C6CA0604&java=1&security=91fc0fe7&sc_snum=1&sess=cdc9e8&p=0&pv=11&dm=moto%20g%20power%20(2022)&rcat=d&rdom=d&rdomg=new&bb=1&jg=new&rr=1.1.1.1.1.1.1.1.1&sc_bot=0&resolution=412&h=823&camefrom=&u=https%3A//lord.porn/&t=Best%20Porn%20Sites%20Directory%20-%20Lord.Porn&invisible=1&sc_rum_e_s=456&sc_rum_e_e=624&sc_rum_f_s=0&sc_rum_f_e=451&get_config=truec.statcounter.com/t.php?sc_project=... https://c.statcounter.com/t.php?sc_project=13340616&u1=0348E40122FC49EDB0558D14C6CA0604&java=1&security=91fc0fe7&sc_snum=1&sess=cdc9e8&p=0&pv=11&dm=moto%20g%20power%20(2022)&rcat=d&rdom=d&rdomg=new&bb=1&jg=new&rr=1.1.1.1.1.1.1.1.1&sc_bot=0&resolution=412&h=823&camefrom=&u=https%3A//lord.porn/&t=Best%20Porn%20Sites%20Directory%20-%20Lord.Porn&invisible=1&sc_rum_e_s=456&sc_rum_e_e=624&sc_rum_f_s=0&sc_rum_f_e=451&get_config=true — 200 — 615 B — 109 ms — h3https://www.google-analytics.com/j/collect?v=1&_v=j102&a=1780738266&t=pageview&_s=1&dl=https%3A%2F%2Flord.porn%2F&ul=en-us&dt=Best%20Porn%20Sites%20Directory%20-%20Lord.Porn&sr=412x823&vp=412x823&_u=IEBAAEABAAAAACAAI~&jid=1278035817&gjid=1897863969&cid=1273218604.1787012171&tid=UA-132032402-1&_gid=1490270888.1787012171&_r=1&_slc=1&z=1088798814www.google-analytics.com/j/collect?... https://www.google-analytics.com/j/collect?v=1&_v=j102&a=1780738266&t=pageview&_s=1&dl=https%3A%2F%2Flord.porn%2F&ul=en-us&dt=Best%20Porn%20Sites%20Directory%20-%20Lord.Porn&sr=412x823&vp=412x823&_u=IEBAAEABAAAAACAAI~&jid=1278035817&gjid=1897863969&cid=1273218604.1787012171&tid=UA-132032402-1&_gid=1490270888.1787012171&_r=1&_slc=1&z=1088798814 — 200 — 461 B — 67 ms — h2https://www.googletagmanager.com/gtag/js?id=G-9CYY34S519&cx=c&_slc=1www.googletagmanager.com/gtag/js?id... https://www.googletagmanager.com/gtag/js?id=G-9CYY34S519&cx=c&_slc=1 — 200 — 154.0 KiB — 110 ms — h2https://www.google-analytics.com/g/collect?v=2&tid=G-9CYY34S519&gtm=45je68e1v9111881384za20g&_p=1787012171076&gcd=13l3l3l3l2l1&npa=0&dma=0&_eu=ABAI&are=1&cid=1273218604.1787012171&frm=0&ngs=1&pscdl=noapi&rcb=11&sr=412x823&uaa=&uab=64&uafvl=Not-A.Brand%3B24.0.0.0%7CChromium%3B146.0.7680.164&uam=moto%20g%20power%20(2022)&uamb=1&uap=Android&uapv=11.0&uaw=0&ul=en-us&_s=1&tag_exp=115938466~115938469~118897920~118897930~119367802~119367810~120385423&dl=https%3A%2F%2Flord.porn%2F&dt=Best%20Porn%20Sites%20Directory%20-%20Lord.Porn&sid=1787012171&sct=1&seg=0&en=page_view&_fv=1&_ss=1&_ee=1&tfd=994www.google-analytics.com/g/collect?... https://www.google-analytics.com/g/collect?v=2&tid=G-9CYY34S519&gtm=45je68e1v9111881384za20g&_p=1787012171076&gcd=13l3l3l3l2l1&npa=0&dma=0&_eu=ABAI&are=1&cid=1273218604.1787012171&frm=0&ngs=1&pscdl=noapi&rcb=11&sr=412x823&uaa=&uab=64&uafvl=Not-A.Brand%3B24.0.0.0%7CChromium%3B146.0.7680.164&uam=moto%20g%20power%20(2022)&uamb=1&uap=Android&uapv=11.0&uaw=0&ul=en-us&_s=1&tag_exp=115938466~115938469~118897920~118897930~119367802~119367810~120385423&dl=https%3A%2F%2Flord.porn%2F&dt=Best%20Porn%20Sites%20Directory%20-%20Lord.Porn&sid=1787012171&sct=1&seg=0&en=page_view&_fv=1&_ss=1&_ee=1&tfd=994 — 204 — 20 B — 26 ms — h3https://lord.porn/favicon.png/favicon.png https://lord.porn/favicon.png — 200 — 919 B — 14 ms — h3
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
50% of JavaScript execution is third-party
First-party Third-party 1102ms · 226KB · €12/mo
www.statcounter.com
Other
Costly
Execution 417ms
Transfer 17 KB
Monthly Cost €5/mo
Google Tag Manager
Tag Manager
Costly
Execution 305ms
Transfer 154 KB
Unused 45%
Monthly Cost €3/mo
Google Analytics
Analytics
Costly
Execution 234ms
Transfer 21 KB
Monthly Cost €3/mo
ajax.googleapis.com
Other
Optional
Execution 146ms
Transfer 33 KB
Monthly Cost €2/mo

These scripts may cost more than they're worth

  • www.statcounter.com adds 417ms and costs ~€5/month
  • Google Tag Manager adds 305ms and costs ~€3/month
  • Google Analytics adds 234ms and costs ~€3/month

50% of JavaScript execution time comes from third-party scripts.

Why this matters

Third-party scripts (analytics, ads, social, A/B testing) often dominate execution time — every one is a perf-and-privacy tax.

Learn more

Each third-party script is a black box: you don't control when it loads, what it executes, or how much it grows. They often account for a major share of total blocking time on average sites (HTTP Archive's Web Almanac documents the trend). Audit which ones you actually need, defer the rest, and use facade patterns (lite-youtube, lite-vimeo) for embedded media.

Source: web.dev / HTTP Archive Web Almanac

www.statcounter.com takes 417ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.

Why this matters

This script has high main-thread execution time — optimize hot paths or defer.

Source: web.dev

Google Tag Manager takes 305ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.

Why this matters

This script has high main-thread execution time — optimize hot paths or defer.

Source: web.dev

Google Analytics takes 234ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.

Why this matters

This script has high main-thread execution time — optimize hot paths or defer.

Source: web.dev

How third-party costs are calculated

Image Optimization
75 images, 343 KB total, 305 KB wasted
INFO

Image Optimization Audit

Total Images

75

Total Size

343 KB

Oversized

73

Wasted

305 KB

75 missing dimensions 61 missing lazy loading
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback