Skip to content
https://ratemyscene.com

Performance

· 25 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
91
GRADE
A
FIX
2
REVIEW
5
PASS
16
INFO
2

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

83
Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
92
Accessibility Measures how accessible the page is for users with disabilities. Checks color contrast, ARIA labels, and semantic HTML.
100
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.

2.75 s

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

3.85 s

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

102 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.

2.77 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.

5.32 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
25
16 PASS 5 REVIEW 2 FIX
D
JS Execution Cost
Action
2153ms total JS execution
FIX
2153ms total JS execution
Warning::
https://ratemyscene.com/: 882ms CPU time
Warning::
https://ratemyscene.com/_next/static/chunks/19tzvv...: 618ms CPU time
Warning::
Unattributable: 556ms CPU time
Info::
https://ratemyscene.com/_next/static/chunks/3uffv3...: 97ms CPU time

Main Thread Breakdown

Script Evaluation 34% Other 33% Style & Layout 13% Rendering 8% Script Parsing & Compilation 6% Parse HTML & CSS 5%
ScriptTotalScriptingParse/CompileParty
https://ratemyscene.com/882ms48ms58ms1st
https://ratemyscene.com/_next/static/chunks/19tzvvdmjuk-1.js618ms585ms26ms1st
Unattributable556ms29ms0ms1st
https://ratemyscene.com/_next/static/chunks/3uffv3gbundnd.js97ms70ms16ms1st
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: private, no-cache, no-store, max-age=0, must-revalidate
Info::
No ETag or Last-Modified header
Conditional requests (304 Not Modified) are not possible without validators.
Cache-Control

private, no-cache, no-store, max-age=0, must-revalidate

DirectiveValueMeaning
privateOnly browser cache, not CDN/proxy
no-cacheCache but always revalidate first
no-storeNever cache this response
max-age0Cache for 0 seconds
must-revalidateMust recheck with server after expiry
B
Third-Party Impact
42% third-party, 0 ms blocking
REVIEW
42% third-party, 0 ms blocking
Info::
Third-party code accounts for 42% of page weight (372.4 KiB of 896.4 KiB)
Info::
Third-party blocking time is low (0 ms)
58%
42%
First-party Third-party
B
Resource Hints
6 hints, 0 missing preconnects
REVIEW
6 hints, 0 missing preconnects
Warning::
2 font preload(s) missing `crossorigin` -- font will be downloaded twice
Fonts are always fetched as crossorigin=anonymous; a preload without the attribute creates a different cache key, so the browser refetches when the actual font request happens. Sample: /_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2, /_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2. Add `crossorigin` (or `crossorigin="anonymous"`) to each preload.
Info::
1 dns-prefetch redundant with preconnect on same origin
preconnect already does the DNS lookup; adding dns-prefetch to the same origin is at best a no-op. Sample: https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev. Remove the redundant dns-prefetch entries.
Info::
1 URL(s) appear in multiple hints
The same href shouldn't appear in multiple hint rels -- one wins, the others are wasted markup and may confuse cache behavior. Sample: https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev (dns-prefetch+preconnect).
Info::
Page uses 6 resource hint(s)

Current Resource Hints

preconnect
1
preload
4
dns-prefetch
1
prefetch

6 resource hints configured

Fonts are always fetched as crossorigin=anonymous; a preload without the attribute creates a different cache key, so the browser refetches when the actual font request happens. Sample: /_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2, /_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2. Add `crossorigin` (or `crossorigin="anonymous"`) to each preload.

Why this matters

Performance issues directly impact user engagement and conversion rates.

preconnect already does the DNS lookup; adding dns-prefetch to the same origin is at best a no-op. Sample: https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev. Remove the redundant dns-prefetch entries.

Why this matters

Performance issues directly impact user engagement and conversion rates.

The same href shouldn't appear in multiple hint rels -- one wins, the others are wasted markup and may confuse cache behavior. Sample: https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev (dns-prefetch+preconnect).

Why this matters

Performance issues directly impact user engagement and conversion rates.

B
Compression Algorithm
Main response uses gzip; brotli would be ~20% smaller
REVIEW
Main response uses gzip; brotli would be ~20% smaller
Info::
Main HTML response uses gzip (brotli would be ~20% smaller)
All current browsers support brotli. Most CDNs (Cloudflare, Fastly, AWS CloudFront, Vercel, Netlify) can switch from gzip to brotli with a single config flag. Origin servers (nginx, Apache) need a brotli module compiled in -- nginx-brotli or Apache mod_brotli.
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.
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW

Green Hosting

No green hosting detected

A
Page Weight Budget
896 KB transferred, 42 requests
PASS
896 KB transferred, 42 requests
Info::
Page weighs 1.7 MB (896 KB transferred)
Info::
42 HTTP requests
Info::
Estimated 0.18 g CO2 per page load
896 KB / 2.4 MB budget
896 KB transferred
42 requests
0.18 g CO2 per page load
Images 573.3 KiB 64%
JavaScript 172.0 KiB 19%
HTML 65.7 KiB 7%
Fonts 51.4 KiB 6%
CSS 29.0 KiB 3%
Other 4.4 KiB 0%
Other 573 B 0%
Other 0 B 0%
0 2.4 MB 4.9 MB
Under budget
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+
Image Optimization
16 images, 0 KB saveable
PASS
16 images, 0 KB saveable
Info::
All images are well-optimized
16 images 573 KB
0 oversized -0 KB
0 legacy format
0 missing dimensions CLS risk
A+
Font Loading
2 fonts (51 KB)
PASS
2 fonts (51 KB)
Info::
2 font(s) use font-display: swap (FOUT risk but functional)

Web fonts

2

51 KB total

Render-blocking

0

of 2

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 FCP 2.7 s LCP 3.8 shttps://ratemyscene.com/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2797e433ab948586e-s.p.0r... https://ratemyscene.com/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2 — 22.7 KiB — 302 ms — font-display: swaphttps://ratemyscene.com/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2caa3a2e1cccd8315-s.p.0w... https://ratemyscene.com/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2 — 28.7 KiB — 422 ms — font-display: swap
797e433ab948586e-s.p.0r... woff2 swap
Size 23 KB
Load time 302 ms
Start 527 ms
Risk FOUT — text flashes from fallback to web font
caa3a2e1cccd8315-s.p.0w... woff2 swap
Size 29 KB
Load time 422 ms
Start 531 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+
JS Bundles
11 scripts, 28 KB unused
PASS
11 scripts, 28 KB unused
Warning::
https://ratemyscene.com/_next/static/chunks/19tzvv...: 28 KB unused (40%)
Consider code splitting or tree shaking to reduce unused code.
Info::
Total unused JavaScript: 28 KB
28 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://ratemyscene.com/_next/static/chunks/19tzvvdmjuk-1.js69 KB28 KB (40%)1st
https://analytics.ratemyscene.com/script.js2 KB3rd
https://ratemyscene.com/_next/static/chunks/2iho8jepmwwua.js2 KB1st
https://ratemyscene.com/_next/static/chunks/29apvbdt3lgnr.js9 KB1st
https://ratemyscene.com/_next/static/chunks/3uffv3gbundnd.js37 KB1st
https://ratemyscene.com/_next/static/chunks/27jktro2p5rq9.js9 KB1st
https://ratemyscene.com/_next/static/chunks/turbopack-2ghh648aegm68.js4 KB1st
https://ratemyscene.com/_next/static/chunks/1867uhxhqh89h.js11 KB1st
https://ratemyscene.com/_next/static/chunks/14mrh2-p_w84d.js13 KB1st
https://ratemyscene.com/_next/static/chunks/1aau8okiep24-.js8 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

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+
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+
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: private, no-cache, no-store, max-age=0, 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
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
42 resources · 896 KB · 28 KB savings available
PASS
42 resources · 896 KB · 28 KB savings available
Info::
Within 1MB page-weight target
Got: 896 KB
Warning::
9 third-party resources (42% of weight)
42 resources · 896.4 KiB · 9 third-party Within 1MB page-weight target
Image 64% · 573.8 KiB
JavaScript 19% · 172.0 KiB
Document 7% · 65.7 KiB
Font 6% · 51.4 KiB
CSS 3% · 29.0 KiB
Other 0% · 4.4 KiB

~27.9 KiB of savings available

Remove unused JavaScript: 27.9 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
JavaScript Blocking
1 JS blocking issue(s) detected
PASS
1 JS blocking issue(s) detected
Warning::
1 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+
CSS Performance Depth
No CSS performance depth issues detected
PASS
No CSS performance depth issues detected
Info::
No CSS performance depth issues detected
Network Waterfall
42 requests over 2237ms
INFO
0 ms 1.0 s 2.0 s 3.0 s 4.0 s FCP 2.7 s LCP 3.8 shttps://ratemyscene.com// https://ratemyscene.com/ — 200 — 65.7 KiB — 825 ms — h2https://ratemyscene.com/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2/_next/static/media/797e433ab948586... https://ratemyscene.com/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2 — 200 — 22.7 KiB — 302 ms — h2https://ratemyscene.com/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2/_next/static/media/caa3a2e1cccd831... https://ratemyscene.com/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2 — 200 — 28.7 KiB — 422 ms — h2https://ratemyscene.com/_next/static/chunks/233p45nuh4m5b.css/_next/static/chunks/233p45nuh4m5b.... https://ratemyscene.com/_next/static/chunks/233p45nuh4m5b.css — 200 — 1.0 KiB — 426 ms — h2https://ratemyscene.com/_next/static/chunks/09lel-7wuqwdg.css/_next/static/chunks/09lel-7wuqwdg.... https://ratemyscene.com/_next/static/chunks/09lel-7wuqwdg.css — 200 — 28.0 KiB — 463 ms — h2https://analytics.ratemyscene.com/script.jsanalytics.ratemyscene.com/script.js https://analytics.ratemyscene.com/script.js — 200 — 1.8 KiB — 530 ms — h2https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Faziani-reagan-foxx-is-a-milf-masterpiece-501d60ab-a05eca033abe9421.jpg&w=1080&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Faziani-reagan-foxx-is-a-milf-masterpiece-501d60ab-a05eca033abe9421.jpg&w=1080&q=75 — 200 — 56.2 KiB — 601 ms — h2https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpassionsonly-bisexual-milfs-on-vacation-seduce-hot-lifeguard-6aa3f4f0-fc9f28c4ec31746f.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpassionsonly-bisexual-milfs-on-vacation-seduce-hot-lifeguard-6aa3f4f0-fc9f28c4ec31746f.jpg&w=384&q=75 — 200 — 11.5 KiB — 593 ms — h2https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fsislovesme-fucking-in-the-backseat-while-shes-not-watching-6a80f335-6e1b7073a86a3480.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fsislovesme-fucking-in-the-backseat-while-shes-not-watching-6a80f335-6e1b7073a86a3480.jpg&w=384&q=75 — 200 — 18.2 KiB — 585 ms — h2https://ratemyscene.com/_next/static/chunks/2iho8jepmwwua.js/_next/static/chunks/2iho8jepmwwua.... https://ratemyscene.com/_next/static/chunks/2iho8jepmwwua.js — 200 — 2.4 KiB — 429 ms — h2https://ratemyscene.com/_next/static/chunks/29apvbdt3lgnr.js/_next/static/chunks/29apvbdt3lgnr.... https://ratemyscene.com/_next/static/chunks/29apvbdt3lgnr.js — 200 — 8.7 KiB — 429 ms — h2https://ratemyscene.com/_next/static/chunks/19tzvvdmjuk-1.js/_next/static/chunks/19tzvvdmjuk-1.... https://ratemyscene.com/_next/static/chunks/19tzvvdmjuk-1.js — 200 — 69.1 KiB — 593 ms — h2https://ratemyscene.com/_next/static/chunks/3uffv3gbundnd.js/_next/static/chunks/3uffv3gbundnd.... https://ratemyscene.com/_next/static/chunks/3uffv3gbundnd.js — 200 — 36.6 KiB — 580 ms — h2https://ratemyscene.com/_next/static/chunks/27jktro2p5rq9.js/_next/static/chunks/27jktro2p5rq9.... https://ratemyscene.com/_next/static/chunks/27jktro2p5rq9.js — 200 — 9.1 KiB — 555 ms — h2https://ratemyscene.com/_next/static/chunks/turbopack-2ghh648aegm68.js/_next/static/chunks/turbopack-2ghh... https://ratemyscene.com/_next/static/chunks/turbopack-2ghh648aegm68.js — 200 — 4.1 KiB — 557 ms — h2https://ratemyscene.com/_next/static/chunks/1867uhxhqh89h.js/_next/static/chunks/1867uhxhqh89h.... https://ratemyscene.com/_next/static/chunks/1867uhxhqh89h.js — 200 — 10.6 KiB — 437 ms — h2https://ratemyscene.com/_next/static/chunks/14mrh2-p_w84d.js/_next/static/chunks/14mrh2-p_w84d.... https://ratemyscene.com/_next/static/chunks/14mrh2-p_w84d.js — 200 — 12.6 KiB — 437 ms — h2https://ratemyscene.com/_next/static/chunks/1aau8okiep24-.js/_next/static/chunks/1aau8okiep24-.... https://ratemyscene.com/_next/static/chunks/1aau8okiep24-.js — 200 — 8.5 KiB — 549 ms — h2https://ratemyscene.com/_next/static/chunks/274iu21xkrln6.js/_next/static/chunks/274iu21xkrln6.... https://ratemyscene.com/_next/static/chunks/274iu21xkrln6.js — 200 — 8.4 KiB — 550 ms — h2https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/pornstarplatinum-big-dick-hunk-justice-gives-to-brunette-jayden-james-all-his-lo-f21fcb5359209475-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/pornstarplatinum-big-dick-hunk-justice-gives-to-brunette-jayden-james-all-his-lo-f21fcb5359209475-640.webp — 200 — 27.5 KiB — 396 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/christianclay-my-wife-threatened-to-fuck-five-black-guys-so-id-stay-home-and-i-e-f6fa25adf7b709e2-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/christianclay-my-wife-threatened-to-fuck-five-black-guys-so-id-stay-home-and-i-e-f6fa25adf7b709e2-640.webp — 200 — 35.3 KiB — 375 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/myfirstsexteacher-sexy-professor-reagan-foxx-will-grade-rion-on-how-well-he-fuck-81197d438b424f65-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/myfirstsexteacher-sexy-professor-reagan-foxx-will-grade-rion-on-how-well-he-fuck-81197d438b424f65-640.webp — 200 — 61.7 KiB — 421 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/brazzersexxtra-best-of-brazzers-anal-extravaganza-07f5ecb1-6d8426f9020675e8-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/brazzersexxtra-best-of-brazzers-anal-extravaganza-07f5ecb1-6d8426f9020675e8-640.webp — 200 — 45.6 KiB — 423 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/vixencompilations-prime-13f1b684-755d231209af00cc-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/vixencompilations-prime-13f1b684-755d231209af00cc-640.webp — 200 — 99.5 KiB — 395 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/seducedbyacougar-brandi-love-shows-the-pool-cleaner-how-appreciative-she-is-for--f703faa351d51c93-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/seducedbyacougar-brandi-love-shows-the-pool-cleaner-how-appreciative-she-is-for--f703faa351d51c93-640.webp — 200 — 100.4 KiB — 426 ms — http/1.1https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Floveherboobs-joi-boob-tease-with-reagan-foxx-6d737b93-69c9da0bb057db8d.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Floveherboobs-joi-boob-tease-with-reagan-foxx-6d737b93-69c9da0bb057db8d.jpg&w=384&q=75 — 200 — 20.8 KiB — 455 ms — h3https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fopenfamily-sexy-reagan-foxx-shows-her-son-n-law-the-benefits-of-an-open-family-4-6a62ad97027ea0d5.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fopenfamily-sexy-reagan-foxx-shows-her-son-n-law-the-benefits-of-an-open-family-4-6a62ad97027ea0d5.jpg&w=384&q=75 — 200 — 23.0 KiB — 355 ms — h3https://ratemyscene.com/icon.svg?icon.28bo5st90f9a8.svg/icon.svg?icon.28bo5st90f9a8.svg https://ratemyscene.com/icon.svg?icon.28bo5st90f9a8.svg — 200 — 573 B — 167 ms — h3https://analytics.ratemyscene.com/api/sendanalytics.ratemyscene.com/api/send https://analytics.ratemyscene.com/api/send — 204 — 0 B — 327 ms — h3https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpornstarplatinum-slim-hottie-brooke-johnson-rides-sexy-ariella-ferreras-big-stra-c3f025a828282b18.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpornstarplatinum-slim-hottie-brooke-johnson-rides-sexy-ariella-ferreras-big-stra-c3f025a828282b18.jpg&w=384&q=75 — 200 — 10.1 KiB — 284 ms — h3
0 ms 1.0 s 2.0 s 3.0 s 4.0 s FCP 2.7 s LCP 3.8 shttps://ratemyscene.com// https://ratemyscene.com/ — 200 — 65.7 KiB — 825 ms — h2https://ratemyscene.com/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2/_next/static/media/797e433ab948586... https://ratemyscene.com/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2 — 200 — 22.7 KiB — 302 ms — h2https://ratemyscene.com/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2/_next/static/media/caa3a2e1cccd831... https://ratemyscene.com/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2 — 200 — 28.7 KiB — 422 ms — h2https://ratemyscene.com/_next/static/chunks/233p45nuh4m5b.css/_next/static/chunks/233p45nuh4m5b.... https://ratemyscene.com/_next/static/chunks/233p45nuh4m5b.css — 200 — 1.0 KiB — 426 ms — h2https://ratemyscene.com/_next/static/chunks/09lel-7wuqwdg.css/_next/static/chunks/09lel-7wuqwdg.... https://ratemyscene.com/_next/static/chunks/09lel-7wuqwdg.css — 200 — 28.0 KiB — 463 ms — h2https://analytics.ratemyscene.com/script.jsanalytics.ratemyscene.com/script.js https://analytics.ratemyscene.com/script.js — 200 — 1.8 KiB — 530 ms — h2https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Faziani-reagan-foxx-is-a-milf-masterpiece-501d60ab-a05eca033abe9421.jpg&w=1080&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Faziani-reagan-foxx-is-a-milf-masterpiece-501d60ab-a05eca033abe9421.jpg&w=1080&q=75 — 200 — 56.2 KiB — 601 ms — h2https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpassionsonly-bisexual-milfs-on-vacation-seduce-hot-lifeguard-6aa3f4f0-fc9f28c4ec31746f.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpassionsonly-bisexual-milfs-on-vacation-seduce-hot-lifeguard-6aa3f4f0-fc9f28c4ec31746f.jpg&w=384&q=75 — 200 — 11.5 KiB — 593 ms — h2https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fsislovesme-fucking-in-the-backseat-while-shes-not-watching-6a80f335-6e1b7073a86a3480.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fsislovesme-fucking-in-the-backseat-while-shes-not-watching-6a80f335-6e1b7073a86a3480.jpg&w=384&q=75 — 200 — 18.2 KiB — 585 ms — h2https://ratemyscene.com/_next/static/chunks/2iho8jepmwwua.js/_next/static/chunks/2iho8jepmwwua.... https://ratemyscene.com/_next/static/chunks/2iho8jepmwwua.js — 200 — 2.4 KiB — 429 ms — h2https://ratemyscene.com/_next/static/chunks/29apvbdt3lgnr.js/_next/static/chunks/29apvbdt3lgnr.... https://ratemyscene.com/_next/static/chunks/29apvbdt3lgnr.js — 200 — 8.7 KiB — 429 ms — h2https://ratemyscene.com/_next/static/chunks/19tzvvdmjuk-1.js/_next/static/chunks/19tzvvdmjuk-1.... https://ratemyscene.com/_next/static/chunks/19tzvvdmjuk-1.js — 200 — 69.1 KiB — 593 ms — h2https://ratemyscene.com/_next/static/chunks/3uffv3gbundnd.js/_next/static/chunks/3uffv3gbundnd.... https://ratemyscene.com/_next/static/chunks/3uffv3gbundnd.js — 200 — 36.6 KiB — 580 ms — h2https://ratemyscene.com/_next/static/chunks/27jktro2p5rq9.js/_next/static/chunks/27jktro2p5rq9.... https://ratemyscene.com/_next/static/chunks/27jktro2p5rq9.js — 200 — 9.1 KiB — 555 ms — h2https://ratemyscene.com/_next/static/chunks/turbopack-2ghh648aegm68.js/_next/static/chunks/turbopack-2ghh... https://ratemyscene.com/_next/static/chunks/turbopack-2ghh648aegm68.js — 200 — 4.1 KiB — 557 ms — h2https://ratemyscene.com/_next/static/chunks/1867uhxhqh89h.js/_next/static/chunks/1867uhxhqh89h.... https://ratemyscene.com/_next/static/chunks/1867uhxhqh89h.js — 200 — 10.6 KiB — 437 ms — h2https://ratemyscene.com/_next/static/chunks/14mrh2-p_w84d.js/_next/static/chunks/14mrh2-p_w84d.... https://ratemyscene.com/_next/static/chunks/14mrh2-p_w84d.js — 200 — 12.6 KiB — 437 ms — h2https://ratemyscene.com/_next/static/chunks/1aau8okiep24-.js/_next/static/chunks/1aau8okiep24-.... https://ratemyscene.com/_next/static/chunks/1aau8okiep24-.js — 200 — 8.5 KiB — 549 ms — h2https://ratemyscene.com/_next/static/chunks/274iu21xkrln6.js/_next/static/chunks/274iu21xkrln6.... https://ratemyscene.com/_next/static/chunks/274iu21xkrln6.js — 200 — 8.4 KiB — 550 ms — h2https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/pornstarplatinum-big-dick-hunk-justice-gives-to-brunette-jayden-james-all-his-lo-f21fcb5359209475-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/pornstarplatinum-big-dick-hunk-justice-gives-to-brunette-jayden-james-all-his-lo-f21fcb5359209475-640.webp — 200 — 27.5 KiB — 396 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/christianclay-my-wife-threatened-to-fuck-five-black-guys-so-id-stay-home-and-i-e-f6fa25adf7b709e2-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/christianclay-my-wife-threatened-to-fuck-five-black-guys-so-id-stay-home-and-i-e-f6fa25adf7b709e2-640.webp — 200 — 35.3 KiB — 375 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/myfirstsexteacher-sexy-professor-reagan-foxx-will-grade-rion-on-how-well-he-fuck-81197d438b424f65-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/myfirstsexteacher-sexy-professor-reagan-foxx-will-grade-rion-on-how-well-he-fuck-81197d438b424f65-640.webp — 200 — 61.7 KiB — 421 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/brazzersexxtra-best-of-brazzers-anal-extravaganza-07f5ecb1-6d8426f9020675e8-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/brazzersexxtra-best-of-brazzers-anal-extravaganza-07f5ecb1-6d8426f9020675e8-640.webp — 200 — 45.6 KiB — 423 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/vixencompilations-prime-13f1b684-755d231209af00cc-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/vixencompilations-prime-13f1b684-755d231209af00cc-640.webp — 200 — 99.5 KiB — 395 ms — http/1.1https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/seducedbyacougar-brandi-love-shows-the-pool-cleaner-how-appreciative-she-is-for--f703faa351d51c93-640.webppub-8ac7b8e40d104e4c9fce09f91afb824... https://pub-8ac7b8e40d104e4c9fce09f91afb8244.r2.dev/scenes/seducedbyacougar-brandi-love-shows-the-pool-cleaner-how-appreciative-she-is-for--f703faa351d51c93-640.webp — 200 — 100.4 KiB — 426 ms — http/1.1https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Floveherboobs-joi-boob-tease-with-reagan-foxx-6d737b93-69c9da0bb057db8d.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Floveherboobs-joi-boob-tease-with-reagan-foxx-6d737b93-69c9da0bb057db8d.jpg&w=384&q=75 — 200 — 20.8 KiB — 455 ms — h3https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fopenfamily-sexy-reagan-foxx-shows-her-son-n-law-the-benefits-of-an-open-family-4-6a62ad97027ea0d5.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fopenfamily-sexy-reagan-foxx-shows-her-son-n-law-the-benefits-of-an-open-family-4-6a62ad97027ea0d5.jpg&w=384&q=75 — 200 — 23.0 KiB — 355 ms — h3https://ratemyscene.com/icon.svg?icon.28bo5st90f9a8.svg/icon.svg?icon.28bo5st90f9a8.svg https://ratemyscene.com/icon.svg?icon.28bo5st90f9a8.svg — 200 — 573 B — 167 ms — h3https://analytics.ratemyscene.com/api/sendanalytics.ratemyscene.com/api/send https://analytics.ratemyscene.com/api/send — 204 — 0 B — 327 ms — h3https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpornstarplatinum-slim-hottie-brooke-johnson-rides-sexy-ariella-ferreras-big-stra-c3f025a828282b18.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpornstarplatinum-slim-hottie-brooke-johnson-rides-sexy-ariella-ferreras-big-stra-c3f025a828282b18.jpg&w=384&q=75 — 200 — 10.1 KiB — 284 ms — h3https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fdirtcheapbigtits-mature-diamond-foxxx-fucking-in-the-desk-with-her-big-ass-004ea-9c50219aee761ce5.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fdirtcheapbigtits-mature-diamond-foxxx-fucking-in-the-desk-with-her-big-ass-004ea-9c50219aee761ce5.jpg&w=384&q=75 — 200 — 18.9 KiB — 386 ms — h3https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpsepornstarexperience-mia-malkova-jiggles-her-juicy-ass-and-rides-your-hard-cock-ca21526ef0d6aa94.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fpsepornstarexperience-mia-malkova-jiggles-her-juicy-ass-and-rides-your-hard-cock-ca21526ef0d6aa94.jpg&w=384&q=75 — 200 — 23.1 KiB — 339 ms — h3https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fscotthancock-dee-williams-triple-feature-3-deepthroat-blowjob-and-cum-swallows-h-5bb368ed9fb9df58.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fscotthancock-dee-williams-triple-feature-3-deepthroat-blowjob-and-cum-swallows-h-5bb368ed9fb9df58.jpg&w=384&q=75 — 200 — 15.4 KiB — 654 ms — h3https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fkeiranlee-ultimate-cumshot-compilation-leaving-faces-dripping-cum-b3ba04ca-77defc6e00ec2b0a.jpg&w=384&q=75/_next/image?url=%2Fapi%2Fmedia%2Fs... https://ratemyscene.com/_next/image?url=%2Fapi%2Fmedia%2Fscenes%2Fkeiranlee-ultimate-cumshot-compilation-leaving-faces-dripping-cum-b3ba04ca-77defc6e00ec2b0a.jpg&w=384&q=75 — 200 — 6.1 KiB — 340 ms — h3https://analytics.ratemyscene.com/api/sendanalytics.ratemyscene.com/api/send https://analytics.ratemyscene.com/api/send — 200 — 695 B — 209 ms — h3https://ratemyscene.com/top-rated?_rsc=5CB68i4pnAekjehf/top-rated?_rsc=5CB68i4pnAekjehf https://ratemyscene.com/top-rated?_rsc=5CB68i4pnAekjehf — 200 — 176 B — 218 ms — h3https://ratemyscene.com/register?_rsc=5CB68i4pnAekjehf/register?_rsc=5CB68i4pnAekjehf https://ratemyscene.com/register?_rsc=5CB68i4pnAekjehf — 200 — 176 B — 212 ms — h3https://ratemyscene.com/login?_rsc=5CB68i4pnAekjehf/login?_rsc=5CB68i4pnAekjehf https://ratemyscene.com/login?_rsc=5CB68i4pnAekjehf — 200 — 176 B — 216 ms — h3https://ratemyscene.com/?_rsc=tXyZJ52UQVBCVsD3/?_rsc=tXyZJ52UQVBCVsD3 https://ratemyscene.com/?_rsc=tXyZJ52UQVBCVsD3 — 200 — 1.2 KiB — 169 ms — h3https://ratemyscene.com/register?_rsc=tXyZJ52UQVBCVsD3/register?_rsc=tXyZJ52UQVBCVsD3 https://ratemyscene.com/register?_rsc=tXyZJ52UQVBCVsD3 — 200 — 176 B — 180 ms — h3https://ratemyscene.com/login?_rsc=tXyZJ52UQVBCVsD3/login?_rsc=tXyZJ52UQVBCVsD3 https://ratemyscene.com/login?_rsc=tXyZJ52UQVBCVsD3 — 200 — 644 B — 181 ms — h3https://ratemyscene.com/top-rated?_rsc=tXyZJ52UQVBCVsD3/top-rated?_rsc=tXyZJ52UQVBCVsD3 https://ratemyscene.com/top-rated?_rsc=tXyZJ52UQVBCVsD3 — 200 — 1.2 KiB — 175 ms — h3
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Image Optimization
40 images, 69 KB total, 0 KB wasted
INFO

Image Optimization Audit

Total Images

40

Total Size

69 KB

40 missing dimensions 3 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